diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2020-05-31 23:45:14 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-31 23:45:14 +0200 |
| commit | 19e32dc686e40f5e7ec1653f4a05aaa75cb17d80 (patch) | |
| tree | 5b2e8e02a72f044f48406883c6a43e1b0125a882 /searx/webapp.py | |
| parent | da02e0b8d89fb664786e7bb8f1050fad0c86db6a (diff) | |
| parent | a3e15a3df6f5502c58f82f18e09d80a2fdf7a957 (diff) | |
Merge pull request #1978 from kvch/fix-rtl-in-oscar
Fix Farsi language in Oscar && adjust tables with RTL
Diffstat (limited to 'searx/webapp.py')
| -rwxr-xr-x | searx/webapp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index 8c3531069..f3f5f21b8 100755 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -144,7 +144,7 @@ if not searx_debug \ babel = Babel(app) -rtl_locales = ['ar', 'arc', 'bcc', 'bqi', 'ckb', 'dv', 'fa', 'glk', 'he', +rtl_locales = ['ar', 'arc', 'bcc', 'bqi', 'ckb', 'dv', 'fa', 'fa_IR', 'glk', 'he', 'ku', 'mzn', 'pnb', 'ps', 'sd', 'ug', 'ur', 'yi'] # used when translating category names |