diff options
author | Bill Nottingham <notting@redhat.com> | 2008-10-14 16:15:57 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2008-10-14 16:15:57 -0400 |
commit | 60798049b5988c556d123b1acbdeee3ef16dd223 (patch) | |
tree | 3198e03a3d99ed734422d8fc8b3cc87ab4f780f3 /lang.sh | |
parent | eec8a2a09859cc70aeb64d10db3f9c34ae66bc08 (diff) | |
download | initscripts-60798049b5988c556d123b1acbdeee3ef16dd223.tar initscripts-60798049b5988c556d123b1acbdeee3ef16dd223.tar.gz initscripts-60798049b5988c556d123b1acbdeee3ef16dd223.tar.bz2 initscripts-60798049b5988c556d123b1acbdeee3ef16dd223.tar.xz initscripts-60798049b5988c556d123b1acbdeee3ef16dd223.zip |
Override Arabic, Persian, and Hebrew on the console as well. (<alsadi@ojuba.org>)
Even though we have font coverage, the bidi aspect makes it pretty much
illegible.
Diffstat (limited to 'lang.sh')
-rwxr-xr-x | lang.sh | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -55,6 +55,9 @@ if [ "$sourced" = 1 ]; then ko*) LANG=en_US.UTF-8 ;; si*) LANG=en_US.UTF-8 ;; zh*) LANG=en_US.UTF-8 ;; + ar*) LANG=en_US.UTF-8 ;; + fa*) LANG=en_US.UTF-8 ;; + he*) LANG=en_US.UTF-8 ;; en_IN*) ;; *_IN*) LANG=en_US.UTF-8 ;; esac @@ -69,6 +72,9 @@ if [ "$sourced" = 1 ]; then ko*) LANG=en_US ;; si*) LANG=en_US ;; zh*) LANG=en_US ;; + ar*) LANG=en_US ;; + fa*) LANG=en_US ;; + he*) LANG=en_US ;; en_IN*) ;; *_IN*) LANG=en_US ;; esac |