aboutsummaryrefslogtreecommitdiff
path: root/src/tools/html-entities/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/html-entities/index.ts')
-rw-r--r--src/tools/html-entities/index.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tools/html-entities/index.ts b/src/tools/html-entities/index.ts
index 4907dc6..e292f08 100644
--- a/src/tools/html-entities/index.ts
+++ b/src/tools/html-entities/index.ts
@@ -1,10 +1,11 @@
import { Code } from '@vicons/tabler';
import { defineTool } from '../tool';
+import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
- name: 'Escape html entities',
+ name: translate('tools.html-entities.title'),
path: '/html-entities',
- description: 'Escape or unescape html entities (replace <,>, &, " and \' to their html version)',
+ description: translate('tools.html-entities.description'),
keywords: ['html', 'entities', 'escape', 'unescape', 'special', 'characters', 'tags'],
component: () => import('./html-entities.vue'),
icon: Code,