aboutsummaryrefslogtreecommitdiff
path: root/src/tools/wifi-qr-code-generator/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/wifi-qr-code-generator/index.ts')
-rw-r--r--src/tools/wifi-qr-code-generator/index.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/wifi-qr-code-generator/index.ts b/src/tools/wifi-qr-code-generator/index.ts
index ad0135c..b59b95d 100644
--- a/src/tools/wifi-qr-code-generator/index.ts
+++ b/src/tools/wifi-qr-code-generator/index.ts
@@ -1,11 +1,11 @@
import { Qrcode } from '@vicons/tabler';
import { defineTool } from '../tool';
+import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
- name: 'WiFi QR Code generator',
+ name: translate('tools.wifi-qrcode-generator.title'),
path: '/wifi-qrcode-generator',
- description:
- 'Generate and download QR-codes for quick connections to WiFi networks.',
+ description: translate('tools.wifi-qrcode-generator.description'),
keywords: ['qr', 'code', 'generator', 'square', 'color', 'link', 'low', 'medium', 'quartile', 'high', 'transparent', 'wifi'],
component: () => import('./wifi-qr-code-generator.vue'),
icon: Qrcode,