35 lines
1.5 KiB
TypeScript
35 lines
1.5 KiB
TypeScript
export const encodingConverterEn = {
|
|
title: 'Encoding Converter',
|
|
description: 'Base64/URL/Unicode/HTML Entity/HTML Escape 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_entity_desc: 'Convert text to HTML hexadecimal entities or HTML hexadecimal entities to text',
|
|
html_escape_desc: 'Escape or unescape 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_entity: 'Invalid HTML entity encoded string',
|
|
invalid_html_escape: 'Invalid HTML escaped string',
|
|
copy_failed: 'Copy failed:',
|
|
clipboard_error: 'Failed to copy to clipboard'
|
|
};
|
|
|
|
export default encodingConverterEn;
|