2020-05-23 09:51:17 +00:00
|
|
|
using treasurechest;
|
|
|
|
|
|
|
|
namespace treasurechestCLI {
|
|
|
|
namespace translations {
|
|
|
|
|
|
|
|
internal class Spanish {
|
|
|
|
|
|
|
|
internal static void load(Strings stringInst){
|
|
|
|
stringInst.WELCOME = treasurechest.Version.NAME + " - Protege tu valiosa información";
|
|
|
|
stringInst.HELP_TEXT = "Ejecuta help para más opciones";
|
|
|
|
stringInst.EXIT = "Salir de la aplicación";
|
|
|
|
stringInst.MAIN_MENU_ENCRYPT = "Encriptar";
|
|
|
|
stringInst.MAIN_MENU_DECRYPT = "Desencriptar";
|
2020-05-28 22:14:45 +00:00
|
|
|
stringInst.MAIN_MENU_KEYRING = "Gestionar contactos";
|
2020-05-23 09:51:17 +00:00
|
|
|
stringInst.INVALID_OPTION = "Opción inválida";
|
|
|
|
stringInst.MAIN_MENU_SELECT_INTEGER = "Ingrese un número entero desde el menú";
|
|
|
|
stringInst.RETURN_TO_PREVIOUS_MENU = "Menú anterior";
|
|
|
|
stringInst.ENCRYPT_MENU_ENCRYPT_MESSAGE = "Cifrar texto";
|
|
|
|
stringInst.ENCRYPT_MENU_ENCRYPT_FILE = "Cifrar archivo";
|
2020-05-28 22:14:45 +00:00
|
|
|
stringInst.ENCRYPT_MENU_USE_PASSPHRASE = "Use mnemotécnico";
|
2020-05-23 09:51:17 +00:00
|
|
|
stringInst.ENCRYPT_MENU_USE_PUBKEY = "Usar clave pública";
|
|
|
|
stringInst.ENTER_MESSAGE_UNTIL_DONE = "Ingrese su mensaje y termine con -q en una nueva línea.";
|
2020-05-24 08:40:51 +00:00
|
|
|
stringInst.PASSPHRASE = "Frase de contraseña";
|
2020-05-23 09:51:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|