This project is a simple tool that transforms the key-value pairs in a JSON file for multilingual resources from the structure "key": "value"
to "key": "key"
. This can be useful in specific scenarios during multilingual resource management.
- Converts all values in a JSON file to their corresponding keys.
- Simplifies multilingual resource management.
- Easy to use.
{
"label.a": "this is a",
"label.b": "this is b"
}
{
"label.a": "label.a",
"label.b": "label.b"
}