Files
umami/lang
Mike Cao 05c7196bc6 Merge pull request #1734 from kiprasmel/lt-lang-upd-1
update lt-LT lang + create README how to update translations
2023-01-13 17:38:12 -08:00
..
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-11-03 21:18:23 +03:30
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-11-09 09:42:02 +01:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2023-01-06 05:10:37 +02:00
2022-09-06 03:04:53 +00:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-10-27 19:01:36 +02:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2023-01-12 18:31:01 +11:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-08-08 01:26:20 -07:00
2022-09-06 13:41:52 +08:00
2022-08-30 05:00:56 +08:00

how to update

  1. find missing keys:
MINE=<your-lang>.json
BASE=en-US.json

jq 'keys' < $BASE > base
jq 'keys' < $MINE > mine

diff -c2 base mine
# will print missing keys.
# add them to $MINE
  1. for each key, search in your editor where it is used, and additionally visit the live demo website, to better understand the usage context.

  2. translate. though, if you don't fully understand the context of how a translation is used, note this in the PR review.