Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.
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
2 changes: 1 addition & 1 deletion supported-languages
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,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