diff options
Diffstat (limited to 'src/tools/http-status-codes/index.ts')
-rw-r--r-- | src/tools/http-status-codes/index.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tools/http-status-codes/index.ts b/src/tools/http-status-codes/index.ts index 43afae8..b313894 100644 --- a/src/tools/http-status-codes/index.ts +++ b/src/tools/http-status-codes/index.ts @@ -2,11 +2,12 @@ import { HttpRound } from '@vicons/material'; import { defineTool } from '../tool'; import { codesByCategories } from './http-status-codes.constants'; +import { translate } from '@/plugins/i18n.plugin'; export const tool = defineTool({ - name: 'HTTP status codes', + name: translate('tools.http-status-codes.title'), path: '/http-status-codes', - description: 'The list of all HTTP status codes their name and their meaning.', + description: translate('tools.http-status-codes.description'), keywords: [ 'http', 'status', |