Ordered output of JSON Files

Issue #1 new
Martin Heß created an issue

At the moment the output of the JSON files generated by the Tool are not in alphabetical order.

current:

{
    "date.month_long.9": "",
    "word.scan": "",
    "navigation.tracker": "",
    "more.appInfo.appNameLabel": "Name",
    "word.end": "",
    "moreNavigation.settings": "",
    "navigation.more": "",
    "date.month_long.8": "",
    "more.appInfo.ownerText": ""
}

expected:

{
    "date.month_long.8": "",
    "date.month_long.9": "",
    "more.appInfo.appNameLabel": "Name",
    "more.appInfo.ownerText": "",
    "moreNavigation.settings": "",
    "navigation.more": "",
    "navigation.tracker": "",
    "word.end": "",
    "word.scan": ""
}

a little bit harder to achieve but of course wonderful would be that the sorting function is intelligent, so that numerical order is:

0 - 1 - 2 - .... - 8 - 9 - 10 - 11

and not:

0 - 1 - 10 - 11 - 2 - ... - 8 - 9

Comments (1)

  1. Log in to comment