1
vote
2answers
36 views
Explain the Need for Mutexes in Locales, Please
Reading the question Why doesn’t C++ STL support atoi(const string& ) like functions?, I encountered a comment which warned that GCC (at least) has a bug that can slow down mul …
1
vote
1answer
15 views
How does gettext handle dynamic content?
In php (or maybe gettext in general), what does gettext do when it sees a variable to dynamic content?
I have 2 cases in mind.
1) Let's say I have <?=$user1?> poked John &l …
0
votes
3answers
23 views
Enhancing an ASCII protcol with multilingual fields
I am enhancing a piece of software that implements a simple ASCII based protocol.
The protocol is simple... here is an example of what the messages look a little bit like (not the …
4
votes
1answer
40 views
What Is a Good Introduction and Tutorial on Internationalization and Localization?
My company uses an internally developed package to support internationalization/localization. However, it was developed some twenty years ago, and the libraries are restricted to o …
1
vote
3answers
45 views
+100
How to embed links in localized text.
Problem:
I am internationalizing an ASP.Net MVC application, but sentences with linked text have given me pause. Take the following as an example:
English: "Please login to con …
2
votes
0answers
15 views
How does Vistalizer work
How does Vistalizer manage to override the language limit in Windows Vista Home edition. Which api's does it use to allow installation of Multiple language packages.
2
votes
3answers
40 views
PHP: Tips on having different languages
We're taking our site international, .fr, .mx and soon some others.
I was thinking of creating language files like english.inc.php that would have basically a big array of every s …
4
votes
6answers
172 views
Python: Split unicode string on word boundaries
I need to take a string, and shorten it to 140 characters.
Currently I am doing:
if len(tweet) > 140:
tweet = re.sub(r"\s+", " ", tweet) #normalize space
footer = "… " …
0
votes
0answers
20 views
Do Input Builder attributes in MVC Contrib support localization?
With Data Annotations for example, besides decorating members like this:
[Required(
ErrorMessage = "You must enter your first name."
)]
public int FirstName { get; set; }
I …
0
votes
1answer
46 views
i18n of Flex Alert.show(..) buttons
I have to change the "Yes" and "No" buttons in an Alert.show(..), to another language (Dutch, for instance).
Is there a (easy) way to do that?
I forgot to mention - I have a -loca …
1
vote
1answer
31 views
Internationalization on database level
Could anyone point me to some patterns addressing internationalization on the database level tasks?
The simplest way would be to add a text column for every language for every te …
0
votes
3answers
54 views
Having difficulty with character encoding on website.
I have a website that allows users from around the world to submit profiles. Somewhere between storing/retrieving/displaying the characters, they are not rendering correctly. I'm …
0
votes
1answer
13 views
Collate information missing when converting a MySQL table from Latin1 to UTF8
I'm converting an existing table such as this:
CREATE TABLE `example`(`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`column1` char(32) COLLATE latin1_gene …
0
votes
3answers
43 views
Send emails with international accent and special characters
I am sending a newsletter via PHP mail() in Spanish, they have accents and special characters (which I'm going to try to paste here: á, í, é, ñ ...).
For the HTML version of the e …
0
votes
1answer
14 views
Localization of HTML used in ASP.net
Hello ,
I have a asp.net application, which used html templates to generate content and sends this in the email. The code to read the html file is as-
private string LoadHtml(st …
