diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000000..625daa5ca6 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,2 @@ +patreon: zen_browser +ko_fi: zen_browser diff --git a/supported-languages b/supported-languages index 4c54ea020f..2e69973a5f 100644 --- a/supported-languages +++ b/supported-languages @@ -32,4 +32,4 @@ tr uk vi zh-CN -zh-TW \ No newline at end of file +zh-TW diff --git a/update-supported-languages.sh b/update-supported-languages.sh index ae27a816c8..d57d5deda9 100644 --- a/update-supported-languages.sh +++ b/update-supported-languages.sh @@ -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