Sourceware Bugzilla – Attachment 10570 Details for
Bug 22387
Replace unicode sequences <Uxxxx> for characters inside the ASCII printable range
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Partial patch for opinions
22387a.patch (text/plain), 32.06 KB, created by
Claude Paroz
on 2017-11-02 14:15:41 UTC
(
hide
)
Description:
Partial patch for opinions
Filename:
MIME Type:
Creator:
Claude Paroz
Created:
2017-11-02 14:15:41 UTC
Size:
32.06 KB
patch
obsolete
>commit 46562b91378e2cc20bf2fda98b91b89d7ccc14a2 >Author: Claude Paroz <claude@2xlibre.net> >Date: Thu Nov 2 15:10:42 2017 +0100 > > Replaced unicode sequences in the ASCII printable range > > [BZ #22387] > * Improved readibility by replacing <Uxxxx> sequences in the ASCII printable > range by their ASCII character equivalents. > >diff --git a/localedata/locales/POSIX b/localedata/locales/POSIX >index 8c151c81f4..a8f7e35a07 100644 >--- a/localedata/locales/POSIX >+++ b/localedata/locales/POSIX >@@ -34,18 +34,11 @@ LC_CTYPE > % "print" is by default "alnum", "punct" and the <U0020> character > % "graph" is by default "alnum" and "punct" > % >-upper <U0041>;<U0042>;<U0043>;<U0044>;<U0045>;<U0046>;<U0047>;<U0048>;/ >- <U0049>;<U004A>;<U004B>;<U004C>;<U004D>;<U004E>;<U004F>;<U0050>;/ >- <U0051>;<U0052>;<U0053>;<U0054>;<U0055>;<U0056>;<U0057>;<U0058>;/ >- <U0059>;<U005A> >+upper A;B;C;D;E;F;G;H;I;J;K;L;M;N;O;P;Q;R;S;T;U;V;W;X;Y;Z > % >-lower <U0061>;<U0062>;<U0063>;<U0064>;<U0065>;<U0066>;<U0067>;<U0068>;/ >- <U0069>;<U006A>;<U006B>;<U006C>;<U006D>;<U006E>;<U006F>;<U0070>;/ >- <U0071>;<U0072>;<U0073>;<U0074>;<U0075>;<U0076>;<U0077>;<U0078>;/ >- <U0079>;<U007A> >+lower a;b;c;d;e;f;g;h;i;j;k;l;m;n;o;p;q;r;s;t;u;v;w;x;y;z > % >-digit <U0030>;<U0031>;<U0032>;<U0033>;<U0034>;/ >- <U0035>;<U0036>;<U0037>;<U0038>;<U0039> >+digit 0;1;2;3;4;5;6;7;8;9 > % > space <U0009>;<U000A>;<U000B>;<U000C>;/ > <U000D>;<U0020> >@@ -57,41 +50,19 @@ cntrl <U0007>;<U0008>;<U0009>;<U000A>;<U000B>;/ > <U0017>;<U0018>;<U0019>;<U001A>;<U001B>;<U001C>;<U001D>;<U001E>;/ > <U001F>;<U007F> > % >-punct <U0021>;<U0022>;<U0023>;/ >- <U0024>;<U0025>;<U0026>;<U0027>;/ >- <U0028>;<U0029>;<U002A>;/ >- <U002B>;<U002C>;<U002D>;<U002E>;<U002F>;/ >- <U003A>;<U003B>;<U003C>;<U003D>;/ >- <U003E>;<U003F>;<U0040>;/ >- <U005B>;<U005C>;<U005D>;/ >- <U005E>;<U005F>;<U0060>;/ >- <U007B>;<U007C>;<U007D>;<U007E> >+punct !;";#;$;%;&;';(;);*;+;,;-;.;<U002F>;:;;;<;=;>;?;@;[;\;];^;_;`;{;|;};~ > % >-xdigit <U0030>;<U0031>;<U0032>;<U0033>;<U0034>;<U0035>;<U0036>;<U0037>;/ >- <U0038>;<U0039>;<U0041>;<U0042>;<U0043>;<U0044>;<U0045>;<U0046>;/ >- <U0061>;<U0062>;<U0063>;<U0064>;<U0065>;<U0066> >+xdigit 0;1;2;3;4;5;6;7;8;9;A;B;C;D;E;F;a;b;c;d;e;f > % > blank <U0020>;<U0009> > % >-tolower (<U0041>,<U0061>);(<U0042>,<U0062>);(<U0043>,<U0063>);/ >- (<U0044>,<U0064>);(<U0045>,<U0065>);(<U0046>,<U0066>);/ >- (<U0047>,<U0067>);(<U0048>,<U0068>);(<U0049>,<U0069>);/ >- (<U004A>,<U006A>);(<U004B>,<U006B>);(<U004C>,<U006C>);/ >- (<U004D>,<U006D>);(<U004E>,<U006E>);(<U004F>,<U006F>);/ >- (<U0050>,<U0070>);(<U0051>,<U0071>);(<U0052>,<U0072>);/ >- (<U0053>,<U0073>);(<U0054>,<U0074>);(<U0055>,<U0075>);/ >- (<U0056>,<U0076>);(<U0057>,<U0077>);(<U0058>,<U0078>);/ >- (<U0059>,<U0079>);(<U005A>,<U007A>) >-% >-toupper (<U0061>,<U0041>);(<U0062>,<U0042>);(<U0063>,<U0043>);/ >- (<U0064>,<U0044>);(<U0065>,<U0045>);(<U0066>,<U0046>);/ >- (<U0067>,<U0047>);(<U0068>,<U0048>);(<U0069>,<U0049>);/ >- (<U006A>,<U004A>);(<U006B>,<U004B>);(<U006C>,<U004C>);/ >- (<U006D>,<U004D>);(<U006E>,<U004E>);(<U006F>,<U004F>);/ >- (<U0070>,<U0050>);(<U0071>,<U0051>);(<U0072>,<U0052>);/ >- (<U0073>,<U0053>);(<U0074>,<U0054>);(<U0075>,<U0055>);/ >- (<U0076>,<U0056>);(<U0077>,<U0057>);(<U0078>,<U0058>);/ >- (<U0079>,<U0059>);(<U007A>,<U005A>) >+tolower (A,a);(B,b);(C,c);(D,d);(E,e);(F,f);(G,g);(H,h);(I,i);(J,j);(K,k);/ >+ (L,l);(M,m);(N,n);(O,o);(P,p);(Q,q);(R,r);(S,s);(T,t);(U,u);(V,v);/ >+ (W,w);(X,x);(Y,y);(Z,z) >+% >+toupper (a,A);(b,B);(c,C);(d,D);(e,E);(f,F);(g,G);(h,H);(i,I);(j,J);(k,K);/ >+ (l,L);(m,M);(n,N);(o,O);(p,P);(q,Q);(r,R);(s,S);(t,T);(u,U);(v,V);/ >+ (w,W);(x,X);(y,Y);(z,Z) > END LC_CTYPE > > LC_COLLATE >@@ -131,100 +102,100 @@ order_start forward > <U001E> > <U001F> > <U0020> >-<U0021> >-<U0022> >-<U0023> >-<U0024> >-<U0025> >-<U0026> >-<U0027> >-<U0028> >-<U0029> >-<U002A> >-<U002B> >-<U002C> >-<U002D> >-<U002E> >-<U002F> >-<U0030> >-<U0031> >-<U0032> >-<U0033> >-<U0034> >-<U0035> >-<U0036> >-<U0037> >-<U0038> >-<U0039> >-<U003A> >-<U003B> >-<U003C> >-<U003D> >-<U003E> >-<U003F> >-<U0040> >-<U0041> >-<U0042> >-<U0043> >-<U0044> >-<U0045> >-<U0046> >-<U0047> >-<U0048> >-<U0049> >-<U004A> >-<U004B> >-<U004C> >-<U004D> >-<U004E> >-<U004F> >-<U0050> >-<U0051> >-<U0052> >-<U0053> >-<U0054> >-<U0055> >-<U0056> >-<U0057> >-<U0058> >-<U0059> >-<U005A> >-<U005B> >-<U005C> >-<U005D> >-<U005E> >-<U005F> >-<U0060> >-<U0061> >-<U0062> >-<U0063> >-<U0064> >-<U0065> >-<U0066> >-<U0067> >-<U0068> >-<U0069> >-<U006A> >-<U006B> >-<U006C> >-<U006D> >-<U006E> >-<U006F> >-<U0070> >-<U0071> >-<U0072> >-<U0073> >-<U0074> >-<U0075> >-<U0076> >-<U0077> >-<U0078> >-<U0079> >-<U007A> >-<U007B> >-<U007C> >-<U007D> >-<U007E> >+! >+" >+# >+$ >+% >+& >+' >+( >+) >+* >++ >+, >+- >+. >+/ >+0 >+1 >+2 >+3 >+4 >+5 >+6 >+7 >+8 >+9 >+: >+; >+< >+= >+> >+? >+@ >+A >+B >+C >+D >+E >+F >+G >+H >+I >+J >+K >+L >+M >+N >+O >+P >+Q >+R >+S >+T >+U >+V >+W >+X >+Y >+Z >+[ >+\ >+] >+^ >+_ >+` >+a >+b >+c >+d >+e >+f >+g >+h >+i >+j >+k >+l >+m >+n >+o >+p >+q >+r >+s >+t >+u >+v >+w >+x >+y >+z >+{ >+| >+} >+~ > <U007F> > UNDEFINED > order_end >@@ -237,7 +208,7 @@ LC_MONETARY > % > int_curr_symbol "" > currency_symbol "" >-mon_decimal_point "<U002E>" >+mon_decimal_point "." > mon_thousands_sep "" > mon_grouping -1 > positive_sign "" >@@ -257,7 +228,7 @@ LC_NUMERIC > % This is the POSIX Locale definition for > % the LC_NUMERIC category. > % >-decimal_point "<U002E>" >+decimal_point "." > thousands_sep "" > grouping -1 > % >@@ -268,74 +239,62 @@ LC_TIME > % the LC_TIME category. > % > % Abbreviated weekday names (%s) >-abday "<U0053><U0075><U006E>";"<U004D><U006F><U006E>";/ >- "<U0054><U0075><U0065>";"<U0057><U0065><U0064>";/ >- "<U0054><U0068><U0075>";"<U0046><U0072><U0069>";/ >- "<U0053><U0061><U0074>" >+abday "Sun";"Mon";"Tue";"Wed";"Thu";"Fri";"Sat" > % > % Full weekday names (%A) >-day "<U0053><U0075><U006E><U0064><U0061><U0079>";/ >- "<U004D><U006F><U006E><U0064><U0061><U0079>";/ >- "<U0054><U0075><U0065><U0073><U0064><U0061><U0079>";/ >- "<U0057><U0065><U0064><U006E><U0065><U0073><U0064><U0061><U0079>";/ >- "<U0054><U0068><U0075><U0072><U0073><U0064><U0061><U0079>";/ >- "<U0046><U0072><U0069><U0064><U0061><U0079>";/ >- "<U0053><U0061><U0074><U0075><U0072><U0064><U0061><U0079>" >+day "Sunday";/ >+ "Monday";/ >+ "Tuesday";/ >+ "Wednesday";/ >+ "Thursday";/ >+ "Friday";/ >+ "Saturday" > % > % Abbreviated month names (%b) >-abmon "<U004A><U0061><U006E>";"<U0046><U0065><U0062>";/ >- "<U004D><U0061><U0072>";"<U0041><U0070><U0072>";/ >- "<U004D><U0061><U0079>";"<U004A><U0075><U006E>";/ >- "<U004A><U0075><U006C>";"<U0041><U0075><U0067>";/ >- "<U0053><U0065><U0070>";"<U004F><U0063><U0074>";/ >- "<U004E><U006F><U0076>";"<U0044><U0065><U0063>" >+abmon "Jan";"Feb";"Mar";"Apr";"May";"Jun";"Jul";"Aug";"Sep";"Oct";"Nov";"Dec" > % > % Full month names (%B) >-mon "<U004A><U0061><U006E><U0075><U0061><U0072><U0079>";/ >- "<U0046><U0065><U0062><U0072><U0075><U0061><U0072><U0079>";/ >- "<U004D><U0061><U0072><U0063><U0068>";/ >- "<U0041><U0070><U0072><U0069><U006C>";/ >- "<U004D><U0061><U0079>";/ >- "<U004A><U0075><U006E><U0065>";/ >- "<U004A><U0075><U006C><U0079>";/ >- "<U0041><U0075><U0067><U0075><U0073><U0074>";/ >- "<U0053><U0065><U0070><U0074><U0065><U006D><U0062><U0065><U0072>";/ >- "<U004F><U0063><U0074><U006F><U0062><U0065><U0072>";/ >- "<U004E><U006F><U0076><U0065><U006D><U0062><U0065><U0072>";/ >- "<U0044><U0065><U0063><U0065><U006D><U0062><U0065><U0072>" >-% >-% Equivalent of AM/PM (%p) "AM"/"PM" >-am_pm "<U0041><U004D>";"<U0050><U004D>" >+mon "January";/ >+ "February";/ >+ "March";/ >+ "April";/ >+ "May";/ >+ "June";/ >+ "July";/ >+ "August";/ >+ "September";/ >+ "October";/ >+ "November";/ >+ "December" >+% >+% Equivalent of AM/PM (%p) >+am_pm "AM";"PM" > % > % Appropriate date and time representation (%c) >-% "%a %b %e %H:%M:%S %Y" >-d_t_fmt "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065>/ >-<U0020><U0025><U0048><U003A><U0025><U004D>/ >-<U003A><U0025><U0053><U0020><U0025><U0059>" >+d_t_fmt "%a %b %e %H:%M:%S %Y" > % >-% Appropriate date representation (%x) "%m/%d/%y" >-d_fmt "<U0025><U006D><U002F><U0025><U0064><U002F><U0025><U0079>" >+% Appropriate date representation (%x) >+d_fmt "%m/%d/%y" > % >-% Appropriate time representation (%X) "%H:%M:%S" >-t_fmt "<U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053>" >+% Appropriate time representation (%X) >+t_fmt "%H:%M:%S" > % >-% Appropriate 12 h time representation (%r) "%I:%M:%S %p" >-t_fmt_ampm "<U0025><U0049><U003A><U0025><U004D><U003A><U0025><U0053>/ >-<U0020><U0025><U0070>" >+% Appropriate 12 h time representation (%r) >+t_fmt_ampm "%I:%M:%S %p" > % >-% Appropriate date representation (date(1)) "%a %b %e %H:%M:%S %Z %Y" >-date_fmt "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065><U0020><U0025><U0048><U003A><U0025><U004D><U003A><U0025><U0053><U0020><U0025><U005A><U0020><U0025><U0059>" >+% Appropriate date representation (date(1)) >+date_fmt "%a %b %e %H:%M:%S %Z %Y" > END LC_TIME > > LC_MESSAGES > % This is the POSIX Locale definition for > % the LC_NUMERIC category. > % >-yesexpr "<U005E><U005B><U0079><U0059><U005D>" >+yesexpr "^[yY]" > % >-noexpr "<U005E><U005B><U006E><U004E><U005D>" >+noexpr "^[nN]" > % >-yesstr "<U0059><U0065><U0073>" >+yesstr "Yes" > % >-nostr "<U004E><U006F>" >+nostr "No" > END LC_MESSAGES >diff --git a/localedata/locales/aa_DJ b/localedata/locales/aa_DJ >index 9d9e6f030d..fcb9af8abc 100644 >--- a/localedata/locales/aa_DJ >+++ b/localedata/locales/aa_DJ >@@ -85,13 +85,13 @@ END LC_MEASUREMENT > > LC_MONETARY > % >-int_curr_symbol "<U0044><U004A><U0046><U0020>" >-currency_symbol "<U0046><U0064><U006A>" >-mon_decimal_point "<U002E>" >+int_curr_symbol "DJF " >+currency_symbol "Fdj" >+mon_decimal_point "." > mon_thousands_sep "<U202F>" > mon_grouping 3;3 > positive_sign "" >-negative_sign "<U002D>" >+negative_sign "-" > int_frac_digits 2 > frac_digits 2 > p_cs_precedes 1 >@@ -108,7 +108,7 @@ LC_NUMERIC > % > % This is the POSIX Locale definition for the LC_NUMERIC category. > % >-decimal_point "<U002E>" >+decimal_point "." > thousands_sep "" > grouping 0;0 > % >@@ -124,11 +124,10 @@ LC_TELEPHONE > % > % This is the ISO_IEC TR14652 Locale definition for the LC_TELEPHONE category. > % >-tel_dom_fmt "<U0025><U0061><U002D><U0025><U006C>" >-tel_int_fmt "<U002B><U0025><U0063><U0020><U0025><U0061><U0020><U0025>/ >-<U006C>" >-int_prefix "<U0032><U0035><U0033>" >-int_select "<U0030><U0030>" >+tel_dom_fmt "%a-%l" >+tel_int_fmt "+%c %a %l" >+int_prefix "253" >+int_select "00" > % > END LC_TELEPHONE > >@@ -143,22 +142,18 @@ LC_ADDRESS > % > % This is the ISO_IEC TR14652 Locale definition for the LC_ADDRESS category. > % >-postal_fmt "<U0025><U007A><U0025><U0063><U0025><U0054><U0025><U0073>/ >-<U0025><U0062><U0025><U0065><U0025><U0072>" >-country_name "<U0059><U0061><U0062><U0075><U0075><U0074><U0069>" >-country_post "<U0044><U004A><U0049>" >-country_ab2 "<U0044><U004A>" >-country_ab3 "<U0044><U004A><U0049>" >+postal_fmt "%z%c%T%s%b%e%r" >+country_name "Yabuuti" >+country_post "DJI" >+country_ab2 "DJ" >+country_ab3 "DJI" > country_num 262 >-country_car "<U0044><U004A><U0049>" >+country_car "DJI" > % country_isbn unknown, Need ISO 2108 >-lang_name "<U0051><U0061><U0066><U0061><U0072>" >-% aa >-lang_ab "<U0061><U0061>" >-% aar >-lang_term "<U0061><U0061><U0072>" >-% aar >-lang_lib "<U0061><U0061><U0072>" >+lang_name "Qafar" >+lang_ab "aa" >+lang_term "aar" >+lang_lib "aar" > % > END LC_ADDRESS > >@@ -172,12 +167,11 @@ LC_NAME > % > % This is the ISO_IEC TR14652 Locale definition for the LC_NAME category. > % >-name_fmt "<U0025><U0064><U0025><U0074><U0025><U0067><U0025><U0074>/ >-<U0025><U006D><U0025><U0074><U0025><U0066>" >+name_fmt "%d%t%g%t%m%t%f" > name_gen "" >-name_mr "<U0054><U006F><U006F><U0062><U006F><U006B><U006F><U0079><U0074><U0061>" >-name_mrs "<U0047><U0069><U0073><U0074><U0069>" >-name_miss "<U004D><U0061><U0071><U0061><U006E><U0078><U0061>" >+name_mr "Toobokoyta" >+name_mrs "Gisti" >+name_miss "Maqanxa" > name_ms "" > % > END LC_NAME >@@ -187,85 +181,55 @@ LC_TIME > % > % Abbreviated weekday names (%a) > % >-abday "<U0061><U0063><U0061>";/ >- "<U0065><U0074><U006C>";/ >- "<U0074><U0061><U006C>";/ >- "<U0061><U0072><U0062>";/ >- "<U006B><U0061><U006D>";/ >- "<U0067><U0075><U006D>";/ >- "<U0073><U0061><U0062>" >+abday "aca";"etl";"tal";"arb";"kam";"gum";"sab" > % > % Full weekday names (%A) > % >-day "<U0041><U0063><U0061><U0061><U0064><U0061>";/ >- "<U0045><U0074><U006C><U0065><U0065><U006E><U0069>";/ >- "<U0054><U0061><U006C><U0061><U0061><U0074><U0061>";/ >- "<U0041><U0072><U0062><U0061><U0071><U0061>";/ >- "<U004B><U0061><U006D><U0069><U0069><U0073><U0069>";/ >- "<U0047><U0075><U006D><U0071><U0061><U0074><U0061>";/ >- "<U0053><U0061><U0062><U0074><U0069>" >+day "Acaada";/ >+ "Etleeni";/ >+ "Talaata";/ >+ "Arbaqa";/ >+ "Kamiisi";/ >+ "Gumqata";/ >+ "Sabti" > % > % Abbreviated month names (%b) > % >-abmon "<U0071><U0075><U006E>";/ >- "<U006E><U0061><U0068>";/ >- "<U0063><U0069><U0067>";/ >- "<U0061><U0067><U0064>";/ >- "<U0063><U0061><U0078>";/ >- "<U0071><U0061><U0073>";/ >- "<U0071><U0061><U0064>";/ >- "<U006C><U0065><U0071>";/ >- "<U0077><U0061><U0079>";/ >- "<U0064><U0069><U0074>";/ >- "<U0078><U0069><U006D>";/ >- "<U006B><U0061><U0078>" >+abmon "qun";"nah";"cig";"agd";"cax";"qas";"qad";"leq";"way";"dit";"xim";"kax" > % > % Full month names (%B) > % >-mon "<U0051><U0075><U006E><U0078><U0061><U0020><U0047><U0061><U0072><U0061><U0062><U006C><U0075>";/ >- "<U004B><U0075><U0064><U006F>";/ >- "<U0043><U0069><U0067><U0067><U0069><U006C><U0074><U0061><U0020><U004B><U0075><U0064><U006F>";/ >- "<U0041><U0067><U0064><U0061><U0020><U0042><U0061><U0078><U0069><U0073><U0073><U006F>";/ >- "<U0043><U0061><U0078><U0061><U0068><U0020><U0041><U006C><U0073><U0061>";/ >- "<U0051><U0061><U0073><U0061><U0020><U0044><U0069><U0072><U0072><U0069>";/ >- "<U0051><U0061><U0064><U006F><U0020><U0044><U0069><U0072><U0072><U0069>";/ >- "<U004C><U0069><U0069><U0071><U0065><U006E>";/ >- "<U0057><U0061><U0079><U0073><U0075>";/ >- "<U0044><U0069><U0074><U0065><U006C><U0069>";/ >- "<U0058><U0069><U006D><U006F><U006C><U0069>";/ >- "<U004B><U0061><U0078><U0078><U0061><U0020><U0047><U0061><U0072><U0061><U0062><U006C><U0075>" >+mon "Qunxa Garablu";/ >+ "Kudo";/ >+ "Ciggilta Kudo";/ >+ "Agda Baxisso";/ >+ "Caxah Alsa";/ >+ "Qasa Dirri";/ >+ "Qado Dirri";/ >+ "Liiqen";/ >+ "Waysu";/ >+ "Diteli";/ >+ "Ximoli";/ >+ "Kaxxa Garablu" > % > % Equivalent of AM PM > % >-am_pm "<U0073><U0061><U0061><U006B><U0075>";/ >- "<U0063><U0061><U0072><U0072><U0061>" >+am_pm "saaku";"carra" > % > % Appropriate date representation (%x) >-% "%d.%m.%Y" >-% >-d_fmt "<U0025><U0064><U002E><U0025><U006D><U002E><U0025><U0059>" >+d_fmt "%d.%m.%Y" > % > % Appropriate time representation (%X) >-% "%H:%M:%S" >-% >-t_fmt "<U0025><U006C><U003A><U0025><U004D><U003A><U0025><U0053>" >+t_fmt "%l:%M:%S" > % > % Appropriate AM/PM time representation (%r) >-% "%X %p" >-% >-t_fmt_ampm "<U0025><U0058><U0020><U0025><U0070>" >+t_fmt_ampm "%X %p" > % > % Appropriate date and time representation (%c) >-% "%a %d %b %Y %r %Z >-% >-d_t_fmt "<U0025><U0061><U0020><U0025><U0064><U0020><U0025><U0062>/ >-<U0020><U0025><U0059><U0020><U0025><U0072><U0020><U0025><U005A>" >+d_t_fmt "%a %d %b %Y %r %Z" > % > % Appropriate date representation (date(1)) >-% "%a %b %e %r %Z %Y" >-% >-date_fmt "<U0025><U0061><U0020><U0025><U0062><U0020><U0025><U0065>/ >-<U0020><U0025><U0072><U0020><U0025><U005A><U0020><U0025><U0059>" >+date_fmt "%a %b %e %r %Z %Y" > % > week 7;19971130;1 > first_weekday 7 >diff --git a/localedata/locales/aa_ER b/localedata/locales/aa_ER >index 002c41d9a7..f303cfd3e1 100644 >--- a/localedata/locales/aa_ER >+++ b/localedata/locales/aa_ER >@@ -105,23 +105,18 @@ LC_ADDRESS > % > % This is the ISO_IEC TR14652 Locale definition for the LC_ADDRESS category. > % >-postal_fmt "<U0025><U007A><U0025><U0063><U0025><U0054><U0025><U0073>/ >-<U0025><U0062><U0025><U0065><U0025><U0072>" >-country_name "<U0045><U0072><U0065><U0074><U0072><U0069><U0061>" >-country_post "<U0045><U0052><U0049>" >-country_ab2 "<U0045><U0052>" >-country_ab3 "<U0045><U0052><U0049>" >+postal_fmt "%z%c%T%s%b%e%r" >+country_name "Eretria" >+country_post "ERI" >+country_ab2 "ER" >+country_ab3 "ERI" > country_num 232 >-% ER >-country_car "<U0045><U0052>" >+country_car "ER" > % country_isbn unknown, Need ISO 2108 >-lang_name "<U0051><U0061><U0066><U0061><U0072>" >-% aa >-lang_ab "<U0061><U0061>" >-% aar >-lang_term "<U0061><U0061><U0072>" >-% aar >-lang_lib "<U0061><U0061><U0072>" >+lang_name "Qafar" >+lang_ab "aa" >+lang_term "aar" >+lang_lib "aar" > % > END LC_ADDRESS > >@@ -135,12 +130,11 @@ LC_NAME > % > % This is the ISO_IEC TR14652 Locale definition for the LC_NAME category. > % >-name_fmt "<U0025><U0064><U0025><U0074><U0025><U0067><U0025><U0074>/ >-<U0025><U006D><U0025><U0074><U0025><U0066>" >+name_fmt "%d%t%g%t%m%t%f" > name_gen "" >-name_mr "<U0054><U006F><U006F><U0062><U006F><U006B><U006F><U0079><U0074><U0061>" >-name_mrs "<U0047><U0069><U0073><U0074><U0069>" >-name_miss "<U004D><U0061><U0071><U0061><U006E><U0078><U0061>" >+name_mr "Toobokoyta" >+name_mrs "Gisti" >+name_miss "Maqanxa" > name_ms "" > % > END LC_NAME >@@ -150,85 +144,66 @@ LC_TIME > % > % Abbreviated weekday names (%a) > % >-abday "<U0041><U0063><U0061>";/ >- "<U0045><U0074><U006C>";/ >- "<U0054><U0061><U006C>";/ >- "<U0041><U0072><U0062>";/ >- "<U004B><U0061><U006D>";/ >- "<U0047><U0075><U006D>";/ >- "<U0053><U0061><U0062>" >+abday "Aca";"Etl";"Tal";"Arb";"Kam";"Gum";"Sab" > % > % Full weekday names (%A) > % >-day "<U0041><U0063><U0061><U0061><U0064><U0061>";/ >- "<U0045><U0074><U006C><U0065><U0065><U006E><U0069>";/ >- "<U0054><U0061><U006C><U0061><U0061><U0074><U0061>";/ >- "<U0041><U0072><U0062><U0061><U0071><U0061>";/ >- "<U004B><U0061><U006D><U0069><U0069><U0073><U0069>";/ >- "<U0047><U0075><U006D><U0071><U0061><U0074><U0061>";/ >- "<U0053><U0061><U0062><U0074><U0069>" >+day "Acaada";/ >+ "Etleeni";/ >+ "Talaata";/ >+ "Arbaqa";/ >+ "Kamiisi";/ >+ "Gumqata";/ >+ "Sabti" > % > % Abbreviated month names (%b) > % >-abmon "<U0051><U0075><U006E>";/ >- "<U004E><U0061><U0068>";/ >- "<U0043><U0069><U0067>";/ >- "<U0041><U0067><U0064>";/ >- "<U0043><U0061><U0078>";/ >- "<U0051><U0061><U0073>";/ >- "<U0051><U0061><U0064>";/ >- "<U004C><U0065><U0071>";/ >- "<U0057><U0061><U0079>";/ >- "<U0044><U0069><U0074>";/ >- "<U0058><U0069><U006D>";/ >- "<U004B><U0061><U0078>" >+abmon "Qun";/ >+ "Nah";/ >+ "Cig";/ >+ "Agd";/ >+ "Cax";/ >+ "Qas";/ >+ "Qad";/ >+ "Leq";/ >+ "Way";/ >+ "Dit";/ >+ "Xim";/ >+ "Kax" > % > % Full month names (%B) > % >-mon "<U0051><U0075><U006E><U0078><U0061><U0020><U0047><U0061><U0072><U0061><U0062><U006C><U0075>";/ >- "<U004E><U0061><U0068><U0061><U0072><U0073><U0069><U0020><U004B><U0075><U0064><U006F>";/ >- "<U0043><U0069><U0067><U0067><U0069><U006C><U0074><U0061><U0020><U004B><U0075><U0064><U006F>";/ >- "<U0041><U0067><U0064><U0061><U0020><U0042><U0061><U0078><U0069><U0073><U0073><U006F>";/ >- "<U0043><U0061><U0078><U0061><U0068><U0020><U0041><U006C><U0073><U0061>";/ >- "<U0051><U0061><U0073><U0061><U0020><U0044><U0069><U0072><U0072><U0069>";/ >- "<U0051><U0061><U0064><U006F><U0020><U0044><U0069><U0072><U0072><U0069>";/ >- "<U004C><U0065><U0071><U0065><U0065><U006E><U0069>";/ >- "<U0057><U0061><U0079><U0073><U0075>";/ >- "<U0044><U0069><U0074><U0065><U006C><U0069>";/ >- "<U0058><U0069><U006D><U006F><U006C><U0069>";/ >- "<U004B><U0061><U0078><U0078><U0061><U0020><U0047><U0061><U0072><U0061><U0062><U006C><U0075>" >+mon "Qunxa Garablu";/ >+ "Naharsi Kudo";/ >+ "Ciggilta Kudo";/ >+ "Agda Baxisso";/ >+ "Caxah Alsa";/ >+ "Qasa Dirri";/ >+ "Qado Dirri";/ >+ "Leqeeni";/ >+ "Waysu";/ >+ "Diteli";/ >+ "Ximoli";/ >+ "Kaxxa Garablu" > % > % Equivalent of AM PM > % >-am_pm "<U0073><U0061><U0061><U006B><U0075>";/ >- "<U0063><U0061><U0072><U0072><U0061>" >+am_pm "saaku";"carra" > % > % Appropriate date representation (%x) >-% "%d/%m/%Y" >-% >-d_fmt "<U0025><U0064><U002F><U0025><U006D><U002F><U0025><U0059>" >+d_fmt "%d/%m/%Y" > % > % Appropriate time representation (%X) >-% "%l:%M:%S" >-% >-t_fmt "<U0025><U006C><U003A><U0025><U004D><U003A><U0025><U0053>" >+t_fmt "%l:%M:%S" > % > % Appropriate AM/PM time representation (%r) >-% "%X %p" >-% >-t_fmt_ampm "<U0025><U0058><U0020><U0025><U0070>" >+t_fmt_ampm "%X %p" > % > % Appropriate date and time representation (%c) >-% "%A, %B %e, %Y %r %Z >-% >-d_t_fmt "<U0025><U0041><U002C><U0020><U0025><U0042><U0020><U0025><U0065><U002C>/ >-<U0020><U0025><U0059><U0020><U0025><U0072><U0020><U0025><U005A>" >+d_t_fmt "%A, %B %e, %Y %r %Z" > % > % Appropriate date representation (date(1)) >-% "%A, %b %e, %r %Z %Y" >-% >-date_fmt "<U0025><U0041><U002C><U0020><U0025><U0042><U0020><U0025><U0065><U002C>/ >-<U0020><U0025><U0072><U0020><U0025><U005A><U0020><U0025><U0059>" >+date_fmt "%A, %B %e, %r %Z %Y" > % > week 7;19971130;1 > first_weekday 2 >diff --git a/localedata/locales/aa_ER@saaho b/localedata/locales/aa_ER@saaho >index 18946d52c2..4a56ddc9d5 100644 >--- a/localedata/locales/aa_ER@saaho >+++ b/localedata/locales/aa_ER@saaho >@@ -115,12 +115,11 @@ LC_NAME > % > % This is the ISO_IEC TR14652 Locale definition for the LC_NAME category. > % >-name_fmt "<U0025><U0064><U0025><U0074><U0025><U0067><U0025><U0074>/ >-<U0025><U006D><U0025><U0074><U0025><U0066>" >+name_fmt "%d%t%g%t%m%t%f" > name_gen "" >-name_mr "<U0053><U0061><U0071><U0061><U006C>" >-name_mrs "<U004E><U0075><U006D><U0061>" >-name_miss "<U0051><U0075><U006E><U0078><U0061><U0020><U0041><U0077><U006B><U0061>" >+name_mr "Saqal" >+name_mrs "Numa" >+name_miss "Qunxa Awka" > name_ms "" > % > END LC_NAME >@@ -130,85 +129,66 @@ LC_TIME > % > % Abbreviated weekday names (%a) > % >-abday "<U004E><U0061><U0062>";/ >- "<U0053><U0061><U006E>";/ >- "<U0053><U0061><U006C>";/ >- "<U0052><U0061><U0062>";/ >- "<U0043><U0061><U006D>";/ >- "<U004A><U0075><U006D>";/ >- "<U0051><U0075><U006E>" >+abday "Nab";"San";"Sal";"Rab";"Cam";"Jum";"Qun" > % > % Full weekday names (%A) > % >-day "<U004E><U0061><U0062><U0061><U0020><U0053><U0061><U006D><U0062><U0061><U0074>";/ >- "<U0053><U0061><U006E><U0069>";/ >- "<U0053><U0061><U006C><U0075><U0073>";/ >- "<U0052><U0061><U0062><U0075><U0071>";/ >- "<U0043><U0061><U006D><U0075><U0073>";/ >- "<U004A><U0075><U006D><U0071><U0061><U0074><U0061>";/ >- "<U0051><U0075><U006E><U0078><U0061><U0020><U0053><U0061><U006D><U0062><U0061><U0074>" >+day "Naba Sambat";/ >+ "Sani";/ >+ "Salus";/ >+ "Rabuq";/ >+ "Camus";/ >+ "Jumqata";/ >+ "Qunxa Sambat" > % > % Abbreviated month names (%b) > % >-abmon "<U0051><U0075><U006E>";/ >- "<U004E><U0061><U0068>";/ >- "<U0043><U0069><U0067>";/ >- "<U0041><U0067><U0064>";/ >- "<U0043><U0061><U0078>";/ >- "<U0051><U0061><U0073>";/ >- "<U0051><U0061><U0064>";/ >- "<U004C><U0065><U0071>";/ >- "<U0057><U0061><U0079>";/ >- "<U0044><U0069><U0074>";/ >- "<U0058><U0069><U006D>";/ >- "<U004B><U0061><U0078>" >+abmon "Qun";/ >+ "Nah";/ >+ "Cig";/ >+ "Agd";/ >+ "Cax";/ >+ "Qas";/ >+ "Qad";/ >+ "Leq";/ >+ "Way";/ >+ "Dit";/ >+ "Xim";/ >+ "Kax" > % > % Full month names (%B) > % >-mon "<U0051><U0075><U006E><U0078><U0061><U0020><U0047><U0061><U0072><U0061><U0062><U006C><U0075>";/ >- "<U004E><U0061><U0068><U0061><U0072><U0073><U0069><U0020><U004B><U0075><U0064><U006F>";/ >- "<U0043><U0069><U0067><U0067><U0069><U006C><U0074><U0061><U0020><U004B><U0075><U0064><U006F>";/ >- "<U0041><U0067><U0064><U0061><U0020><U0042><U0061><U0078><U0069><U0073><U0073><U006F>";/ >- "<U0043><U0061><U0078><U0061><U0068><U0020><U0041><U006C><U0073><U0061>";/ >- "<U0051><U0061><U0073><U0061><U0020><U0044><U0069><U0072><U0072><U0069>";/ >- "<U0051><U0061><U0064><U006F><U0020><U0044><U0069><U0072><U0072><U0069>";/ >- "<U004C><U0065><U0071><U0065><U0065><U006E><U0069>";/ >- "<U0057><U0061><U0079><U0073><U0075>";/ >- "<U0044><U0069><U0074><U0065><U006C><U0069>";/ >- "<U0058><U0069><U006D><U006F><U006C><U0069>";/ >- "<U004B><U0061><U0078><U0078><U0061><U0020><U0047><U0061><U0072><U0061><U0062><U006C><U0075>" >+mon "Qunxa Garablu";/ >+ "Naharsi Kudo";/ >+ "Ciggilta Kudo";/ >+ "Agda Baxisso";/ >+ "Caxah Alsa";/ >+ "Qasa Dirri";/ >+ "Qado Dirri";/ >+ "Leqeeni";/ >+ "Waysu";/ >+ "Diteli";/ >+ "Ximoli";/ >+ "Kaxxa Garablu" > % > % Equivalent of AM PM > % >-am_pm "<U0073><U0061><U0061><U006B><U0075>";/ >- "<U0063><U0061><U0072><U0072><U0061>" >+am_pm "saaku";"carra" > % > % Appropriate date representation (%x) >-% "%d/%m/%Y" >-% >-d_fmt "<U0025><U0064><U002F><U0025><U006D><U002F><U0025><U0059>" >+d_fmt "%d/%m/%Y" > % > % Appropriate time representation (%X) >-% "%l:%M:%S" >-% >-t_fmt "<U0025><U006C><U003A><U0025><U004D><U003A><U0025><U0053>" >+t_fmt "%l:%M:%S" > % > % Appropriate AM/PM time representation (%r) >-% "%X %p" >-% >-t_fmt_ampm "<U0025><U0058><U0020><U0025><U0070>" >+t_fmt_ampm "%X %p" > % > % Appropriate date and time representation (%c) >-% "%A, %B %e, %Y %r %Z >-% >-d_t_fmt "<U0025><U0041><U002C><U0020><U0025><U0042><U0020><U0025><U0065><U002C>/ >-<U0020><U0025><U0059><U0020><U0025><U0072><U0020><U0025><U005A>" >+d_t_fmt "%A, %B %e, %Y %r %Z" > % > % Appropriate date representation (date(1)) >-% "%A, %b %e, %r %Z %Y" >-% >-date_fmt "<U0025><U0041><U002C><U0020><U0025><U0042><U0020><U0025><U0065><U002C>/ >-<U0020><U0025><U0072><U0020><U0025><U005A><U0020><U0025><U0059>" >+date_fmt "%A, %B %e, %r %Z %Y" > % > week 7;19971130;1 > first_weekday 2 >diff --git a/localedata/locales/aa_ET b/localedata/locales/aa_ET >index 15e3442998..a6de1e6bd4 100644 >--- a/localedata/locales/aa_ET >+++ b/localedata/locales/aa_ET >@@ -105,24 +105,18 @@ LC_ADDRESS > % > % This is the ISO_IEC TR14652 Locale definition for the LC_ADDRESS category. > % >-postal_fmt "<U0025><U007A><U0025><U0063><U0025><U0054><U0025><U0073>/ >-<U0025><U0062><U0025><U0065><U0025><U0072>" >-country_name "<U004F><U0074><U006F><U0062><U0062><U0069><U0061>" >-country_post "<U0045><U0054><U0048>" >-country_ab2 "<U0045><U0054>" >-country_ab3 "<U0045><U0054><U0048>" >+postal_fmt "%z%c%T%s%b%e%r" >+country_name "Otobbia" >+country_post "ETH" >+country_ab2 "ET" >+country_ab3 "ETH" > country_num 231 % 210 found in at least one ISO 3166 doc >-% ETH >-country_car "<U0045><U0054><U0048>" >+country_car "ETH" > % country_isbn unknown, Need ISO 2108 >-lang_name "<U0051><U0061><U0066><U0061><U0072>" >-% aa >-lang_ab "<U0061><U0061>" >-% aar >-lang_term "<U0061><U0061><U0072>" >-% aar >-lang_lib "<U0061><U0061><U0072>" >-% >+lang_name "Qafar" >+lang_ab "aa" >+lang_term "aar" >+lang_lib "aar" > END LC_ADDRESS > > >@@ -138,12 +132,11 @@ LC_NAME > % > % This is the ISO_IEC TR14652 Locale definition for the LC_NAME category. > % >-name_fmt "<U0025><U0064><U0025><U0074><U0025><U0067><U0025><U0074>/ >-<U0025><U006D><U0025><U0074><U0025><U0066>" >+name_fmt "%d%t%g%t%m%t%f" > name_gen "" >-name_mr "<U0054><U006F><U006F><U0062><U006F><U006B><U006F><U0079><U0074><U0061>" >-name_mrs "<U0047><U0069><U0073><U0074><U0069>" >-name_miss "<U004D><U0061><U0071><U0061><U006E><U0078><U0061>" >+name_mr "Toobokoyta" >+name_mrs "Gisti" >+name_miss "Maqanxa" > name_ms "" > % > END LC_NAME >@@ -153,85 +146,66 @@ LC_TIME > % > % Abbreviated weekday names (%a) > % >-abday "<U0041><U0063><U0061>";/ >- "<U0045><U0074><U006C>";/ >- "<U0054><U0061><U006C>";/ >- "<U0041><U0072><U0062>";/ >- "<U004B><U0061><U006D>";/ >- "<U0047><U0075><U006D>";/ >- "<U0053><U0061><U0062>" >+abday "Aca";"Etl";"Tal";"Arb";"Kam";"Gum";"Sab" > % > % Full weekday names (%A) > % >-day "<U0041><U0063><U0061><U0061><U0064><U0061>";/ >- "<U0045><U0074><U006C><U0065><U0065><U006E><U0069>";/ >- "<U0054><U0061><U006C><U0061><U0061><U0074><U0061>";/ >- "<U0041><U0072><U0062><U0061><U0071><U0061>";/ >- "<U004B><U0061><U006D><U0069><U0069><U0073><U0069>";/ >- "<U0047><U0075><U006D><U0071><U0061><U0074><U0061>";/ >- "<U0053><U0061><U0062><U0074><U0069>" >+day "Acaada";/ >+ "Etleeni";/ >+ "Talaata";/ >+ "Arbaqa";/ >+ "Kamiisi";/ >+ "Gumqata";/ >+ "Sabti" > % > % Abbreviated month names (%b) > % >-abmon "<U0051><U0075><U006E>";/ >- "<U004B><U0075><U0064>";/ >- "<U0043><U0069><U0067>";/ >- "<U0041><U0067><U0064>";/ >- "<U0043><U0061><U0078>";/ >- "<U0051><U0061><U0073>";/ >- "<U0051><U0061><U0064>";/ >- "<U004C><U0065><U0071>";/ >- "<U0057><U0061><U0079>";/ >- "<U0044><U0069><U0074>";/ >- "<U0058><U0069><U006D>";/ >- "<U004B><U0061><U0078>" >+abmon "Qun";/ >+ "Kud";/ >+ "Cig";/ >+ "Agd";/ >+ "Cax";/ >+ "Qas";/ >+ "Qad";/ >+ "Leq";/ >+ "Way";/ >+ "Dit";/ >+ "Xim";/ >+ "Kax" > % > % Full month names (%B) > % >-mon "<U0051><U0075><U006E><U0078><U0061><U0020><U0047><U0061><U0072><U0061><U0062><U006C><U0075>";/ >- "<U004B><U0075><U0064><U006F>";/ >- "<U0043><U0069><U0067><U0067><U0069><U006C><U0074><U0061><U0020><U004B><U0075><U0064><U006F>";/ >- "<U0041><U0067><U0064><U0061><U0020><U0042><U0061><U0078><U0069><U0073><U0073><U006F>";/ >- "<U0043><U0061><U0078><U0061><U0068><U0020><U0041><U006C><U0073><U0061>";/ >- "<U0051><U0061><U0073><U0061><U0020><U0044><U0069><U0072><U0072><U0069>";/ >- "<U0051><U0061><U0064><U006F><U0020><U0044><U0069><U0072><U0072><U0069>";/ >- "<U004C><U0069><U0069><U0071><U0065><U006E>";/ >- "<U0057><U0061><U0079><U0073><U0075>";/ >- "<U0044><U0069><U0074><U0065><U006C><U0069>";/ >- "<U0058><U0069><U006D><U006F><U006C><U0069>";/ >- "<U004B><U0061><U0078><U0078><U0061><U0020><U0047><U0061><U0072><U0061><U0062><U006C><U0075>" >+mon "Qunxa Garablu";/ >+ "Kudo";/ >+ "Ciggilta Kudo";/ >+ "Agda Baxisso";/ >+ "Caxah Alsa";/ >+ "Qasa Dirri";/ >+ "Qado Dirri";/ >+ "Liiqen";/ >+ "Waysu";/ >+ "Diteli";/ >+ "Ximoli";/ >+ "Kaxxa Garablu" > % > % Equivalent of AM PM > % >-am_pm "<U0073><U0061><U0061><U006B><U0075>";/ >- "<U0063><U0061><U0072><U0072><U0061>" >+am_pm "saaku";"carra" > % > % Appropriate date representation (%x) >-% "%d/%m/%Y" >-% >-d_fmt "<U0025><U0064><U002F><U0025><U006D><U002F><U0025><U0059>" >+d_fmt "%d/%m/%Y" > % > % Appropriate time representation (%X) >-% "%l:%M:%S" >-% >-t_fmt "<U0025><U006C><U003A><U0025><U004D><U003A><U0025><U0053>" >+t_fmt "%l:%M:%S" > % > % Appropriate AM/PM time representation (%r) >-% "%X %p" >-% >-t_fmt_ampm "<U0025><U0058><U0020><U0025><U0070>" >+t_fmt_ampm "%X %p" > % > % Appropriate date and time representation (%c) >-% "%A, %B %e, %Y %r %Z >-% >-d_t_fmt "<U0025><U0041><U002C><U0020><U0025><U0042><U0020><U0025><U0065><U002C>/ >-<U0020><U0025><U0059><U0020><U0025><U0072><U0020><U0025><U005A>" >+d_t_fmt "%A, %B %e, %Y %r %Z" > % > % Appropriate date representation (date(1)) >-% "%A, %b %e, %r %Z %Y" >-% >-date_fmt "<U0025><U0041><U002C><U0020><U0025><U0042><U0020><U0025><U0065><U002C>/ >-<U0020><U0025><U0072><U0020><U0025><U005A><U0020><U0025><U0059>" >+date_fmt "%A, %B %e, %r %Z %Y" > % > week 7;19971130;1 > END LC_TIME
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 22387
:
10570
|
10577