[Christian Perrier] > case "$LANGUAGE" in > ja|ko|ko_KR|el|zh|zh_CN|zh_TW|bg|ar|he|uk|uk_UA) > # Japanese, Korean, Greek, Chinese, Bulgarian, Arabic, Hebrew, > # Ukrainian > apt-install jfbterm || true > apt-install unifont || true > ;; > ru) > # Russian > apt-install console-cyrillic || true > apt-install console-terminus || true > ;; > tr) > # Turkish > apt-install console-terminus || true > ;; > ar|he|fa) > # RTL languages (Arabic, Hebrew, Farsi) > apt-install libfribidi0 || true > ;; > *) > ;; > esac
If $LANGUAGE is 'ar' or 'he', the first block (installing jfbterm and unifont) will match, and not the block below (installing libfribidi0). -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

