Use "blocked" instead of "blacklisted", for consistency with the buttons and terminology in the UI

This commit is contained in:
CalDescent
2021-12-10 11:34:10 +00:00
parent 0464245218
commit e481a5926a
16 changed files with 43 additions and 41 deletions

View File

@@ -180,9 +180,9 @@ INCORRECT_NONCE = incorrect PoW nonce
INVALID_TIMESTAMP_SIGNATURE = invalid timestamp signature
ADDRESS_IN_BLACKLIST = this address is in your blacklist
ADDRESS_BLOCKED = this address is blocked
NAME_IN_BLACKLIST = this name is in your blacklist
NAME_BLOCKED = this name is blocked
ADDRESS_ABOVE_RATE_LIMIT = address reached specified rate limit

View File

@@ -180,9 +180,9 @@ TRANSACTION_UNKNOWN = tuntematon transaktio
TX_GROUP_ID_MISMATCH = transaktion ryhmä-ID:n vastaavuusvirhe
ADDRESS_IN_BLACKLIST = this address is in your blacklist
ADDRESS_BLOCKED = this address is blocked
NAME_IN_BLACKLIST = this name is in your blacklist
NAME_BLOCKED = this name is blocked
ADDRESS_ABOVE_RATE_LIMIT = address reached specified rate limit

View File

@@ -182,9 +182,9 @@ INCORRECT_NONCE = helytelen Proof-of-Work Nonce
INVALID_TIMESTAMP_SIGNATURE = érvénytelen időbélyeg aláírás
ADDRESS_IN_BLACKLIST = ez a fiókcím a fekete listádon van
ADDRESS_BLOCKED = this address is blocked
NAME_IN_BLACKLIST = this name is in your blacklist
NAME_BLOCKED = this name is blocked
ADDRESS_ABOVE_RATE_LIMIT = ez a cím elérte a megengedett mérték korlátot

View File

@@ -182,9 +182,9 @@ TRANSACTION_UNKNOWN = transazione sconosciuta
TX_GROUP_ID_MISMATCH = identificazione di gruppo della transazione non corrisponde
ADDRESS_IN_BLACKLIST = this address is in your blacklist
ADDRESS_BLOCKED = this address is blocked
NAME_IN_BLACKLIST = this name is in your blacklist
NAME_BLOCKED = this name is blocked
ADDRESS_ABOVE_RATE_LIMIT = address reached specified rate limit

View File

@@ -180,9 +180,9 @@ TRANSACTION_UNKNOWN = transactie onbekend
TX_GROUP_ID_MISMATCH = groep-ID van transactie matcht niet
ADDRESS_IN_BLACKLIST = this address is in your blacklist
ADDRESS_BLOCKED = this address is blocked
NAME_IN_BLACKLIST = this name is in your blacklist
NAME_BLOCKED = this name is blocked
ADDRESS_ABOVE_RATE_LIMIT = address reached specified rate limit

View File

@@ -174,7 +174,9 @@ TRANSACTION_UNKNOWN = неизвестная транзакция
TX_GROUP_ID_MISMATCH = не соответствие идентификатора группы c хэш транзации
ADDRESS_IN_BLACKLIST = this address is in your blacklist
ADDRESS_BLOCKED = this address is blocked
NAME_BLOCKED = this name is blocked
ADDRESS_ABOVE_RATE_LIMIT = address reached specified rate limit
@@ -182,4 +184,4 @@ DUPLICATE_MESSAGE = address sent duplicate message
INVALID_TIMESTAMP_SIGNATURE = Invalid timestamp signature
INVALID_BUT_OK = Invalid but OK
INVALID_BUT_OK = Invalid but OK

View File

@@ -62,8 +62,8 @@
textStatus = "Unsupported request";
document.getElementById("status").style.color = "red";
}
else if (json.status == "BLACKLISTED") {
textStatus = name + " is blacklisted so content cannot be served";
else if (json.status == "BLOCKED") {
textStatus = name + " is blocked so content cannot be served";
retryInterval = 5000;
document.getElementById("status").style.color = "red";
}