fix: title, desc, spaces and placeholders

This commit is contained in:
ShareVB 2024-09-13 09:28:31 +02:00
parent f0af67ef03
commit a50bfd5130
3 changed files with 8 additions and 11 deletions

View file

@ -1,11 +1,10 @@
import { Search } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.smart-text-replacer.title'),
name: 'Smart Text Replacer and Linebreaker',
path: '/smart-text-replacer',
description: translate('tools.smart-text-replacer.description'),
description: 'Search and replace a word on single or multiple occurrences just like windows notepad search and replace. Also allows to manage linebreaking and text splitting',
keywords: ['smart', 'text-replacer', 'linebreak', 'remove', 'add', 'split', 'search', 'replace'],
component: () => import('./smart-text-replacer.vue'),
icon: Search,