diff --git a/i18n/EN/strings.js b/i18n/EN/strings.js index 3c9bc02d561a0185a0c46d3192ab272017ac17ee..e77c09a07495bf3ef6ed691bf030665d2a771f0c 100644 --- a/i18n/EN/strings.js +++ b/i18n/EN/strings.js @@ -1,6 +1,8 @@ //---- Error and message strings for JS code const STRING_ERROR_TITLE_PUBKEY_NOT_PROVIDED = "ERROR: Title or public key are not given !"; + const Function_STRING_WARNING_SAME_PUBKEY = (creator_pubkey) => `BE CAREFUL! you entered the public key of viÄŸnette: ${creator_pubkey}. Is that what you want to do?` + const Function_STRING_ERROR_INVALID_PUBKEY = (pubkey) => `Public key ${pubkey} is not valid.`; const Function_STRING_ERROR_WRONG_CHECKSUM = (checksum, pubkey) => `The checksum ${checksum} does not match the public key ${pubkey}. Please double-check the public key.` const STRING_ERROR_BROWSER_NOT_SUPPORTED = "ERROR: Your browser is not supported." const Function_STRING_ERROR_PUBKEY_TOO_SHORT = (min_length) => `ERROR: The public key is less than ${min_length} characters long.\n`