Tagged Questions

14
votes
11answers
406 views

Implementing internationalization (language strings) in a PHP application

I want to build a CMS that can handle fetching locale strings to support internationalization. I plan on storing the strings in a database, and then placing a key/value cache like memcache in between ...
10
votes
1answer
411 views

Where can I find a specific set of collation rules for equality comparison of strings?

We all know that using String's equals() method for equality comparison will fail miserably. Instead, one should use Collator, like this: // we need to detect User Interface locale somehow Locale ...
2
votes
1answer
76 views

Are ICU resource bundles meant for message translation resources

I understand the localization part of ICU - date, time and currency formats, collation, etc. When it comes to message translation, I see people stating that ICU does not provide functionality for ...
2
votes
1answer
153 views

ICU add custom character set detection

Does somebody know how ICU Charset Detector's data is built. And is it difficult to add additional languages? For example, I saw in the bug tracker that a ticket for the detection of Thai is opened ...
2
votes
3answers
378 views

ICU Unicode Normal vs Fullwidth

I am somewhat new to unicode and unicode strings. I'm trying to determine the difference between "fullwidth" symbol and a normal one. Take these two for example: Normal: ...
2
votes
4answers
188 views

Does ICU handle the collation of a list of strings of varying languages?

My application may have strings comprised of different alphabets / languages in a single list. I can't seem to find any information on what the correct method for sorting these should be or any ...
2
votes
3answers
1k views

How can I transliterate chinese text to pinyin on iPhone?

The localization saga continues... So I'm trying to support collation of chinese text in my iPhone app, and after talking to a native chinese speaker, I think I understand how the chinese do it... ...
1
vote
1answer
69 views

In ICU, is it possible to use custom plural rules instead of CLDR rules

So I want to use a different plural rule than what is in the CLDR. I'm using ICU through PHP intl extension, and say I have something like this: $msg = new MessageFormatter('ar', ...
1
vote
1answer
969 views

UnicodeString to char* (UTF-8)

I am using the ICU library in C++ on OS X. All of my strings are UnicodeStrings, but I need to use system calls like fopen, fread and so forth. These functions take const char* or char* as arguments. ...
0
votes
3answers
127 views

UnicodeString w/ String Literals vs Hex Values

Is there any conceivable reason why I would see different results using unicode string literals versus the actual hex value for the UChar. UnicodeString s1(0x0040); // @ sign UnicodeString ...
0
votes
1answer
111 views

ICU Resource bundle best practices

I was wondering about what the best practice is for writing, and mostly maintaining, an ICU resourcebundle. More specifically the best way to handle recurring strings. For instance, say you have ...