mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
chore: add i18n to meta script
This commit is contained in:
@@ -174,7 +174,8 @@
|
||||
"toolInfo": {
|
||||
"title": "Text Replacer",
|
||||
"description": "Easily replace specific text in your content with this simple, browser-based tool. Just input your text, set the text you want to replace and the replacement value, and instantly get the updated version."
|
||||
}
|
||||
},
|
||||
"shortDescription": "Quickly replace text in your content"
|
||||
},
|
||||
"reverse": {
|
||||
"reversalOptions": "Reversal options",
|
||||
|
||||
@@ -3,6 +3,11 @@ import { lazy } from 'react';
|
||||
// import image from '@assets/text.png';
|
||||
|
||||
export const tool = defineTool('string', {
|
||||
i18n: {
|
||||
name: 'string:rot13.title',
|
||||
description: 'string:rot13.description',
|
||||
shortDescription: 'string:rot13.shortDescription'
|
||||
},
|
||||
name: 'Rot13',
|
||||
path: 'rot13',
|
||||
icon: 'hugeicons:encrypt',
|
||||
|
||||
@@ -3,6 +3,11 @@ import { lazy } from 'react';
|
||||
// import image from '@assets/text.png';
|
||||
|
||||
export const tool = defineTool('string', {
|
||||
i18n: {
|
||||
name: 'string:rotate.title',
|
||||
description: 'string:rotate.description',
|
||||
shortDescription: 'string:rotate.shortDescription'
|
||||
},
|
||||
name: 'Rotate',
|
||||
path: 'rotate',
|
||||
icon: 'carbon:rotate',
|
||||
|
||||
@@ -2,6 +2,11 @@ import { defineTool } from '@tools/defineTool';
|
||||
import { lazy } from 'react';
|
||||
|
||||
export const tool = defineTool('string', {
|
||||
i18n: {
|
||||
name: 'string:textReplacer.title',
|
||||
description: 'string:textReplacer.description',
|
||||
shortDescription: 'string:textReplacer.shortDescription'
|
||||
},
|
||||
name: 'Text Replacer',
|
||||
path: 'replacer',
|
||||
shortDescription: 'Quickly replace text in your content',
|
||||
|
||||
Reference in New Issue
Block a user