From 4e7a8183d9774ffdc8465c15d2173b00a4e9cc27 Mon Sep 17 00:00:00 2001 From: Mantas Date: Mon, 12 Oct 2020 23:53:02 +0300 Subject: [PATCH] Add Lithuanian translation --- _locales/lt/messages.json | 154 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 154 insertions(+) create mode 100644 _locales/lt/messages.json diff --git a/_locales/lt/messages.json b/_locales/lt/messages.json new file mode 100644 index 0000000..ede83fe --- /dev/null +++ b/_locales/lt/messages.json @@ -0,0 +1,154 @@ +{ + "extName": { + "message": "d3coder", + "description": "Name of the extension" + }, + "extDescription": { + "message": "Užkodavimo/dekodavimo plėtinys įvairių tipų kodavimui, pvz.: base64, rot13 ar unix laiko žymos konvertavimas", + "description": "Short description of the extension" + }, + "settings": { + "message": "nustatymai", + "description": "Title of the settings dialog for the extension" + }, + "message_type": { + "message": "Pranšimo tipas", + "description": "How the converted text will be displayed" + }, + "type_alert": { + "message": "Naudojant alert()", + "description": "Setting that enables the messages to be displayed in an alert box" + }, + "type_console": { + "message": "Spausdinti į konsolę", + "description": "Setting that enables the messages to be displayed in the JS console" + }, + "type_html": { + "message": "HTML elementas pridedamas i tinklapio pabaigą", + "description": "Setting that enables the messages to be displayed in a HTML element inserted into the page" + }, + "type_inplace": { + "message": "Naudokite pasirinkimą ir pakeiskite tekstą vietoje", + "description": "Setting that enables the messages to be displayed as replacement of the original text" + }, + "copy_results_to_clipboard": { + "message": "Nukopijuokite rezultatus į iškarpinę po konvertavimo (atminkite, kad tai gali perrašyti jūsų iškarpinės duomenis, todėl naudokite atsargiai!)", + "description": "Label of the checkbox that enables clipboard-copy post-conversion in the settings" + }, + "activate_functions": { + "message": "Aktyvuoti Funkcijas", + "description": "Title of the part of the settings that (in)activates de/encoding functions" + }, + "activate_functions_description": { + "message": "Galite įjungti ir išjungti įvairias funkcijas konteksto meniu.", + "description": "Description for the part of the settings that (in)activates de/encoding functions" + }, + "function_rot13": { + "message": "ROT13", + "description": "Function name for ROT13" + }, + "function_timestamp": { + "message": "Laiko žymos konvertavimas", + "description": "Function name for UNIX Timestamp conversion" + }, + "function_bin2hex": { + "message": "bin2hex", + "description": "Function name for bin2txt" + }, + "function_bin2txt": { + "message": "bin2txt", + "description": "Function name for ASCII to Hex" + }, + "function_ascii2hex": { + "message": "ASCII į Hex", + "description": "Function name for Hex to ASCII" + }, + "function_hex2ascii": { + "message": "Hex į ASCII", + "description": "Function name for HTML entity decode" + }, + "function_html_entity_decode": { + "message": "HTML objekto dekodavimas", + "description": "Function name for HTML entities" + }, + "function_html_entities": { + "message": "HTML objektai", + "description": "Function name for URI encode" + }, + "function_uri_encode": { + "message": "URI užkodavimas", + "description": "Function name for URI decode" + }, + "function_uri_decode": { + "message": "URI dekodavimas", + "description": "Function name for HTML special chars encode" + }, + "function_htmlspecialchars": { + "message": "HTML specialiųjų simbolių užkodavimas", + "description": "Function name for HTML special chars decode" + }, + "function_htmlspecialchars_decode": { + "message": "HTML specialiųjų simbolių dekodavimas", + "description": "Function name for MD5" + }, + "function_md5": { + "message": "MD5", + "description": "Function name for SHA1" + }, + "function_sha1": { + "message": "SHA1", + "description": "Function name for CRC32" + }, + "function_crc32": { + "message": "CRC32", + "description": "Function name for Quoted printable decode" + }, + "function_quoted_printable_decode": { + "message": "Cituoto spausdinamo dekodavimas", + "description": "Function name for Quoted printable encode" + }, + "function_quoted_printable_encode": { + "message": "Cituoto spausdinamo užkodavimas", + "description": "Function name for Escapeshellarg" + }, + "function_escapeshellarg": { + "message": "Escapeshellarg", + "description": "Function name for Base64 encode" + }, + "function_base64_encode": { + "message": "Base64 užkodavimas", + "description": "Function name for Base64 decode" + }, + "function_base64_decode": { + "message": "Base64 dekodavimas", + "description": "Function name for Unserialize" + }, + "function_unserialize": { + "message": "Atserializavimas", + "description": "Function name for L33T Decode" + }, + "function_leet_decode": { + "message": "L33T dekodavimas", + "description": "Function name for L33T Encode" + }, + "function_leet_encode": { + "message": "L33T užkodavimas", + "description": "Function name for Reverse Text" + }, + "function_reverse_text": { + "message": "Atvirkštinis tekstas", + "description": "Function name for Reverse Text" + }, + "message_copied_to_clipboard": { + "message": "Pranešimas nukopijuotas į iškarpinę!", + "description": "message when text was successfully copied to the clipboard" + }, + "copy_last_conversion_to_clipboard": { + "message": "Nukopijuoti paskutinį konvertavima į iškarpinę", + "description": "" + }, + "options_saved": { + "message": "Nustatymai išsaugoti.", + "description": "Success message when the user settings where successfully saved" + } +} \ No newline at end of file