vote up 0 vote down star

In our localization system we often manage strings of the form "Hello {0}" or "You have {0} items remaining". In translating these strings to Arabic we discovered that browsers would not allow entering the variable "{0}" portion in a field except at the beginning (or end, right-to-left) of the string.

I have read that with RTL languages, you generally must use complete strings, but I'm not clear why the browsers (or operating system) would disallow entry.

What is standard practice here? Any guidance much appreciated!

flag
How are you performing the replacement of the "{0}" part of the string? String manipulation should be independent of the browser locale as long as you are using unicode. It's only when it's presented on screen that things like RTL will come into play. – ferdley Nov 5 at 0:15
Simple String.Format (C# on the 2.0 CLR). No problems with the interpolation, but we can't get the browser to allow us to put a {0} in the Arabic text on the form fields. – Thomas H Nov 5 at 0:29

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.