mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-19 22:19:36 +02:00
Merge pull request #212
fix (string): correct keywords for url encoder and decoder features
This commit is contained in:
@@ -5,7 +5,16 @@ export const tool = defineTool('string', {
|
|||||||
path: 'url-decode-string',
|
path: 'url-decode-string',
|
||||||
icon: 'codicon:symbol-string',
|
icon: 'codicon:symbol-string',
|
||||||
|
|
||||||
keywords: ['uppercase'],
|
keywords: [
|
||||||
|
'url',
|
||||||
|
'decode',
|
||||||
|
'string',
|
||||||
|
'url decode',
|
||||||
|
'unescape',
|
||||||
|
'encoding',
|
||||||
|
'percent',
|
||||||
|
'decode url'
|
||||||
|
],
|
||||||
component: lazy(() => import('./index')),
|
component: lazy(() => import('./index')),
|
||||||
i18n: {
|
i18n: {
|
||||||
name: 'string:urlDecode.toolInfo.title',
|
name: 'string:urlDecode.toolInfo.title',
|
||||||
|
@@ -5,7 +5,7 @@ export const tool = defineTool('string', {
|
|||||||
path: 'url-encode-string',
|
path: 'url-encode-string',
|
||||||
icon: 'ic:baseline-percentage',
|
icon: 'ic:baseline-percentage',
|
||||||
|
|
||||||
keywords: ['uppercase'],
|
keywords: ['url', 'encode', 'string', 'url encode', 'encoding', 'percent'],
|
||||||
component: lazy(() => import('./index')),
|
component: lazy(() => import('./index')),
|
||||||
i18n: {
|
i18n: {
|
||||||
name: 'string:urlEncode.toolInfo.title',
|
name: 'string:urlEncode.toolInfo.title',
|
||||||
|
Reference in New Issue
Block a user