diff options
Diffstat (limited to 'src/tools/git-memo/index.ts')
-rw-r--r-- | src/tools/git-memo/index.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/git-memo/index.ts b/src/tools/git-memo/index.ts index c91ee81..f65ffe0 100644 --- a/src/tools/git-memo/index.ts +++ b/src/tools/git-memo/index.ts @@ -1,11 +1,11 @@ import { BrandGit } from '@vicons/tabler'; import { defineTool } from '../tool'; +import { translate } from '@/plugins/i18n.plugin'; export const tool = defineTool({ - name: 'Git cheatsheet', + name: translate('tools.git-memo.title'), path: '/git-memo', - description: - 'Git is a decentralized version management software. With this cheatsheet you will have a quick access to the most common git commands.', + description: translate('tools.git-memo.description'), keywords: ['git', 'push', 'force', 'pull', 'commit', 'amend', 'rebase', 'merge', 'reset', 'soft', 'hard', 'lease'], component: () => import('./git-memo.vue'), icon: BrandGit, |