aboutsummaryrefslogtreecommitdiff
path: root/src/tools/text-to-binary/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/text-to-binary/index.ts')
-rw-r--r--src/tools/text-to-binary/index.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tools/text-to-binary/index.ts b/src/tools/text-to-binary/index.ts
index 40ac93d..ce0f87e 100644
--- a/src/tools/text-to-binary/index.ts
+++ b/src/tools/text-to-binary/index.ts
@@ -1,10 +1,11 @@
import { Binary } from '@vicons/tabler';
import { defineTool } from '../tool';
+import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
- name: 'Text to ASCII binary',
+ name: translate('tools.text-to-binary.title'),
path: '/text-to-binary',
- description: 'Convert text to its ASCII binary representation and vice versa.',
+ description: translate('tools.text-to-binary.description'),
keywords: ['text', 'to', 'binary', 'converter', 'encode', 'decode', 'ascii'],
component: () => import('./text-to-binary.vue'),
icon: Binary,