biesbjerg / ngx-translate-extract

Extract translatable (using ngx-translate) strings and save as a JSON or Gettext pot file
MIT License
524 stars 196 forks source link

How can you sort by only adding new line at the bottom #265

Open vgolea opened 1 year ago

vgolea commented 1 year ago

From this:

{
  "YouTube channel ID": "YouTube channel ID",
  "YouTube link": "YouTube link",
  "ZIP Code": "ZIP Code",
  "ZIP Code is required": "ZIP Code is required"
}

To this:

{
  "YouTube channel ID": "YouTube channel ID",
  "ZIP Code": "ZIP Code",
  "ZIP Code is required": "ZIP Code is required",

  "YouTube link": "YouTube link",  <- New key
}