From d332f13ad01dcaafe4fcff55cd18d097c83eba00 Mon Sep 17 00:00:00 2001 From: matograine <matograine@zaclys.net> Date: Fri, 29 Apr 2022 19:00:43 +0200 Subject: [PATCH] add two missing strings in EN/strings.js --- i18n/EN/strings.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/i18n/EN/strings.js b/i18n/EN/strings.js index 3c9bc02..e77c09a 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` -- GitLab