mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
ecc4e0b889
Signed-off-by: Kipras Melnikovas <kipras@kipras.org>
523 B
523 B
how to update
- 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
-
for each key, search in your editor where it is used, and additionally visit the live demo website, to better understand the usage context.
-
translate. though, if you don't fully understand the context of how a translation is used, note this in the PR review.