mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-18 11:04:03 +01:00
feat: add internationalization support
This commit is contained in:
@@ -4,10 +4,15 @@ import { lazy } from 'react';
|
||||
export const tool = defineTool('string', {
|
||||
name: 'Uppercase',
|
||||
path: 'uppercase',
|
||||
icon: 'material-symbols-light:text-fields',
|
||||
icon: 'material-symbols-light:format-textdirection-l-to-r',
|
||||
description:
|
||||
"World's simplest browser-based utility for converting text to uppercase. Just input your text and it will be automatically converted to all capital letters. Perfect for creating headlines, emphasizing text, or standardizing text format. Supports various text formats and preserves special characters.",
|
||||
shortDescription: 'Convert text to uppercase letters',
|
||||
"World's simplest browser-based utility for converting text to uppercase. Input your text and instantly get all characters in uppercase. Perfect for formatting, shouting, or emphasizing text.",
|
||||
shortDescription: 'Convert text to uppercase',
|
||||
keywords: ['uppercase'],
|
||||
component: lazy(() => import('./index'))
|
||||
component: lazy(() => import('./index')),
|
||||
i18n: {
|
||||
name: 'string.uppercase.name',
|
||||
description: 'string.uppercase.description',
|
||||
shortDescription: 'string.uppercase.shortDescription'
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user