This commit is contained in:
star7th
2025-04-10 18:06:45 +08:00
commit 54650cd944
154 changed files with 29090 additions and 0 deletions
@@ -0,0 +1,33 @@
export const encodingConverterEn = {
title: 'Encoding Converter',
description: 'Base64/URL/Unicode encoding and decoding tool',
base64_desc: 'Encode text to Base64 string or decode Base64 string to text',
url_desc: 'Encode or decode special characters in URLs',
unicode_desc: 'Convert text to Unicode encoding or Unicode encoding to text',
html_desc: 'Encode or decode special characters in HTML',
encode: 'Encode',
decode: 'Decode',
load_example: 'Load Example',
clear_all: 'Clear All',
text_to_encode: 'Input Text',
text_to_decode: 'Input Encoded Text',
encoded_result: 'Encoded Result',
decoded_result: 'Decoded Result',
swap_operation: 'Swap Operation',
input_placeholder: 'Enter content to process...',
output_placeholder: 'Results will be displayed here...',
copy: 'Copy Result',
example_text: 'Hello, World!',
hello: 'Hello',
html_example: 'HTML Example & Special Characters',
general_error: 'An error occurred during conversion',
unsupported_type: 'Unsupported encoding type',
invalid_base64: 'Invalid Base64 encoded string',
invalid_url: 'Invalid URL encoded string',
invalid_unicode: 'Invalid Unicode encoded string',
invalid_html: 'Invalid HTML encoded string',
copy_failed: 'Copy failed:',
clipboard_error: 'Failed to copy to clipboard'
};
export default encodingConverterEn;