mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-19 14:09:31 +02:00
fix: add JSON comparison translations
This commit is contained in:
@@ -58,5 +58,10 @@
|
||||
"title": "What is JSON Validation?"
|
||||
},
|
||||
"validJson": "✅ Valid JSON"
|
||||
},
|
||||
"comparison": {
|
||||
"title": "Compare JSON",
|
||||
"description": "Compare two JSON objects to identify differences in structure and values.",
|
||||
"shortDescription": "Find differences between two JSON objects"
|
||||
}
|
||||
}
|
||||
|
@@ -76,5 +76,10 @@
|
||||
"strictMode": "सख्त मोड",
|
||||
"title": "JSON मान्य करें",
|
||||
"validationOptions": "मान्यता विकल्प"
|
||||
},
|
||||
"comparison": {
|
||||
"title": "JSON तुलना करें",
|
||||
"description": "दो JSON वस्तुओं की संरचना और मूल्यों में अंतर की पहचान करें।",
|
||||
"shortDescription": "दो JSON वस्तुओं के बीच अंतर ढूंढें"
|
||||
}
|
||||
}
|
||||
|
@@ -2,12 +2,14 @@ import { defineTool } from '@tools/defineTool';
|
||||
import { lazy } from 'react';
|
||||
|
||||
export const tool = defineTool('json', {
|
||||
name: 'Compare JSON',
|
||||
path: 'json-comparison',
|
||||
icon: 'fluent:branch-compare-24-regular',
|
||||
description:
|
||||
'Compare two JSON objects to identify differences in structure and values.',
|
||||
shortDescription: 'Find differences between two JSON objects',
|
||||
keywords: ['json', 'compare', 'diff', 'differences', 'match', 'validation'],
|
||||
component: lazy(() => import('./index'))
|
||||
component: lazy(() => import('./index')),
|
||||
|
||||
i18n: {
|
||||
name: 'json:comparison.title',
|
||||
description: 'json:comparison.description',
|
||||
shortDescription: 'json:comparison.shortDescription'
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user