http://qa.mandrakesoft.com/show_bug.cgi?id=5185
[EMAIL PROTECTED] changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From [EMAIL PROTECTED] 2003-02-09 15:46 -------
try hitting the arabic letter for "yes" (it is U0646).
I will redo all the arabic locales in order to also add "yY" for the yesexpr;
and "Nn" for the noexpr.
To see what the problem is, you can issue the command:
locale -c yesexpr noexpr
it shows what are the letters recognizable as a postive (respectively negative)
answer to a yes/no question.
$ LC_ALL=ar locale -c yesexpr noexpr
LC_MESSAGES
^[ن].*
LC_MESSAGES
^[ل].*
As you can see, the arabic locales only define arabic letters for those.
Imho the yY and nN should always be used, unless impossible. I'll report the
bug to the glibc mantainers.
(it is fixed in the upcoming locales locales-2.3.2-5mdk)
Thanks
--
Configure bugmail: http://qa.mandrakesoft.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
------- Reminder: -------
assigned_to: [EMAIL PROTECTED]
status: RESOLVED
creation_date:
description:
rm -i (or just rm since rm -i is an alias for rm by default in Mandrake) will not work
due to
certain environmental variables related to Arabic. If /etc/sysconfig/i18n contains
LC_ALL=ar_SA.UTF-8, LC_ALL=ar, LC_MESSAGES=ar, ... or we export these variables
manually, the rm -i command and other commands will be disabled!!
[EMAIL PROTECTED] munzir]$ export LC_ALL=ar_SA.UTF-8
[EMAIL PROTECTED] munzir]$ touch arabeyes
[EMAIL PROTECTED] munzir]$ ls -l arabeyes
-rw-r--r-- 1 munzir munzir 0 May 6 13:48 arabeyes
[EMAIL PROTECTED] munzir]$ \rm -i arabeyes
rm: remove regular empty file `arabeyes'? y
[EMAIL PROTECTED] munzir]$ ls -l arabeyes
-rw-r--r-- 1 munzir munzir 0 May 6 13:48 arabeyes
[EMAIL PROTECTED] munzir]$ \rm arabeyes
[EMAIL PROTECTED] munzir]$ ls -l arabeyes
ls: arabeyes: No such file or directory