e263b63ced
- 修复 LiveClock.tsx CopyButton size 属性类型错误 (small → sm) - 修复 ToolCard.tsx 紫色 RGB 值拼写错误 (147,51,2 purple → 147,51,232) - 替换 4 处硬编码中文为 i18n 调用 (StorageCleaner, JsonTools) - MarkdownToHtml 预览链接色改为 CSS 变量以支持暗黑模式 - 移除 Base64Converter 中已被 Base64ConverterSection 替代的死代码 (FileMode.tsx, ImageMode.tsx 及其测试文件) - 更新 README.md 移除对已删除文件的引用 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
43 lines
1.6 KiB
JSON
43 lines
1.6 KiB
JSON
{
|
|
"formatTitle": "JSON Formatter",
|
|
"formatSubtitle": "Beautify and format JSON data",
|
|
"inputPlaceholder": "Enter JSON to format...",
|
|
"formatButton": "Format",
|
|
"clearButton": "Clear",
|
|
"sortKeys": "Sort Keys",
|
|
"sortKeysTooltip": "Sort JSON object keys in alphabetical order",
|
|
"indentSize": "Indent",
|
|
"indentSpaces": "{{count}} spaces",
|
|
"outputLabel": "Formatted Result",
|
|
"copySuccess": "Copied",
|
|
"copyFail": "Copy failed",
|
|
"noContent": "Nothing to copy",
|
|
"invalidJson": "Invalid JSON format",
|
|
"emptyHint": "Enter JSON and click Format",
|
|
"fixErrorHint": "Fix the JSON syntax errors above to enable live formatting",
|
|
"originalSize": "Original size",
|
|
"formattedSize": "Formatted size",
|
|
"diffMode": "Diff",
|
|
"formatMode": "Format",
|
|
"yamlMode": "YAML",
|
|
"tomlMode": "TOML",
|
|
"minifyMode": "Minify",
|
|
"yamlTitle": "JSON to YAML",
|
|
"yamlSubtitle": "Convert JSON data to YAML format",
|
|
"yamlModeInputPlaceholder": "Enter JSON to convert...",
|
|
"yamlModeOutputLabel": "YAML Result",
|
|
"yamlModeEmptyHint": "Enter JSON and click Convert",
|
|
"convertButton": "Convert",
|
|
"tomlTitle": "JSON to TOML",
|
|
"tomlSubtitle": "Convert JSON data to TOML format",
|
|
"tomlModeInputPlaceholder": "Enter JSON to convert...",
|
|
"tomlModeOutputLabel": "TOML Result",
|
|
"tomlModeEmptyHint": "Enter JSON and click Convert",
|
|
"minifyTitle": "JSON Minifier",
|
|
"minifySubtitle": "Compress JSON into a compact single-line format",
|
|
"minifyModeInputPlaceholder": "Enter JSON to minify...",
|
|
"minifyModeOutputLabel": "Minified Result",
|
|
"minifyModeEmptyHint": "Enter JSON and click Minify",
|
|
"minifyButton": "Minify"
|
|
}
|