Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update supported languages #127

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
patreon: zen_browser
ko_fi: zen_browser
6 changes: 5 additions & 1 deletion supported-languages
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@ de
el
en-GB
es-ES
et
fa
fi
fr
ga-IE
hu
id
is
it
ja
ko
Expand All @@ -26,4 +30,4 @@ tr
uk
vi
zh-CN
zh-TW
zh-TW
4 changes: 2 additions & 2 deletions update-supported-languages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ echo -n > $LANGS_FILE

# Iterate the directories in the current path
for d in */; do
# ignore assets and .github directories
# Ignore assets and .github directories
if [ "$d" != "assets/" ] && [ "$d" != ".github/" ] && [ "$d" != "en-US/" ] && [ -d "$d" ]; then
# Get the directory name
lang=$(basename $d)
echo "Added $lang"
echo -n "$lang" >> $LANGS_FILE
# if the language is not the last one, add a new line
# If the language is not the last one, add a new line
if [ "$d" != "zh-TW/" ]; then
echo >> $LANGS_FILE
fi
Expand Down