mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-26 01:19:33 +02:00
feat: add internationalization support
This commit is contained in:
@@ -2,14 +2,17 @@ import { defineTool } from '@tools/defineTool';
|
||||
import { lazy } from 'react';
|
||||
|
||||
export const tool = defineTool('json', {
|
||||
name: 'Convert TSV to JSON',
|
||||
name: 'TSV to JSON',
|
||||
path: 'tsv-to-json',
|
||||
icon: 'material-symbols:tsv-rounded',
|
||||
icon: 'material-symbols:code',
|
||||
description:
|
||||
'Convert TSV files to JSON format with customizable options for delimiters, quotes, and output formatting. Support for headers, comments, and dynamic type conversion.',
|
||||
shortDescription: 'Convert TSV data to JSON format.',
|
||||
longDescription:
|
||||
'This tool allows you to convert TSV (Tab-Separated Values) files into JSON format. You can customize the conversion process by specifying delimiters, quote characters, and whether to use headers. It also supports dynamic type conversion for values, handling comments, and skipping empty lines. The output can be formatted with indentation or minified as needed.',
|
||||
keywords: ['tsv', 'json', 'convert', 'transform', 'parse'],
|
||||
component: lazy(() => import('./index'))
|
||||
'Convert TSV (Tab-Separated Values) data to JSON format. Transform tabular data into structured JSON objects.',
|
||||
shortDescription: 'Convert TSV to JSON format',
|
||||
keywords: ['tsv', 'json', 'convert', 'tabular'],
|
||||
component: lazy(() => import('./index')),
|
||||
i18n: {
|
||||
name: 'json.tsvToJson.name',
|
||||
description: 'json.tsvToJson.description',
|
||||
shortDescription: 'json.tsvToJson.shortDescription'
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user