diff options
Diffstat (limited to 'src/tools/jwt-parser/index.ts')
-rw-r--r-- | src/tools/jwt-parser/index.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tools/jwt-parser/index.ts b/src/tools/jwt-parser/index.ts index 7249ace..939b4b3 100644 --- a/src/tools/jwt-parser/index.ts +++ b/src/tools/jwt-parser/index.ts @@ -1,10 +1,11 @@ import { Key } from '@vicons/tabler'; import { defineTool } from '../tool'; +import { translate } from '@/plugins/i18n.plugin'; export const tool = defineTool({ - name: 'JWT parser', + name: translate('tools.jwt-parser.title'), path: '/jwt-parser', - description: 'Parse and decode your JSON Web Token (jwt) and display its content.', + description: translate('tools.jwt-parser.description'), keywords: [ 'jwt', 'parser', |