diff options
Diffstat (limited to 'src/tools/json-to-toml/index.ts')
-rw-r--r-- | src/tools/json-to-toml/index.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tools/json-to-toml/index.ts b/src/tools/json-to-toml/index.ts index 13e45ea..da42c18 100644 --- a/src/tools/json-to-toml/index.ts +++ b/src/tools/json-to-toml/index.ts @@ -1,10 +1,11 @@ import { Braces } from '@vicons/tabler'; import { defineTool } from '../tool'; +import { translate } from '@/plugins/i18n.plugin'; export const tool = defineTool({ - name: 'JSON to TOML', + name: translate('tools.json-to-toml.title'), path: '/json-to-toml', - description: 'Parse and convert JSON to TOML.', + description: translate('tools.json-to-toml.description'), keywords: ['json', 'parse', 'toml', 'convert', 'transform'], component: () => import('./json-to-toml.vue'), icon: Braces, |