3
votes
2answers
36 views
How are the new unicode domains going to be handled by email regexes?
Since
In October 2009, the Internet
Corporation for Assigned Names and
Numbers (ICANN) approved the creation
of country code top-level domains
(ccTLDs) in the Internet …
1
vote
3answers
47 views
Efficient way to store content translations?
Suppose you have a few, quite large (100k+) objects in available and can provide this data (e.g. name) in 20+ languages. What is an efficient way to store/handle this data in a SQL …
2
votes
3answers
42 views
Handling international currency input in Ruby on Rails
I have an application that handles currency inputs. However, if you're in the US, you might enter a number as 12,345.67; in France, it might be 12.345,67.
Is there an easy way, in …
1
vote
3answers
75 views
Globalization in c#
Hi, Can somebody explain to me what is the use of globalization in c#?
Is it used for conversion purposes? I mean I want to convert any English word into selected language.
So …
0
votes
1answer
35 views
How do I tell why Django is ignoring the Accept-Language header?
I have a Django app (on Google App Engine) that I wish to internationalize.
settings.py:
USE_I18N = True
LANGUAGE_CODE = 'en'
# Restrict supported languages (and JS media genera …
0
votes
1answer
25 views
CakePHP i18n, translate behavior, unknown column error when using find() with conditions
I am trying to get the translate behaviour working, i deleted the translated comlumns from the original table and now I am getting errors when performing the following query:
$men …
2
votes
2answers
45 views
Whether to use “SET NAMES”
In reading "High performance MySQL" from O'Reilly I've stumbled upon the following
Another common garbage query is SET
NAMES UTF8, which is the wrong way to
do things anywa …
1
vote
2answers
25 views
Gettext, not displaying
I'm trying to load my .mo translations using the following code, but it doesn't work. I have the php gettext ext. enabled in my phpinfo() and all the required locales are installed …
1
vote
1answer
28 views
Django: How to detect if translation is activated?
django.utils.translation.get_language() returns default locale if translation is not activated. Is there a way to find out whether the translation is activated (via translation.act …
2
votes
2answers
45 views
i18n with gettext but without the locale hassle?
I am looking for a standards-compliant way to store multi-language content for a Web Application. Until now, I have employed my own "translate()" functions that read data from a fi …
0
votes
1answer
35 views
Localizing Application (main) Menu?
I'm porting a UNIX application which uses the Qt framework (Qt, not QuickTime) to Mac/Cocoa. Life is good, generally. Qt has a Cocoa implementation, so with some Objective-C++, I'v …
2
votes
7answers
171 views
Why do Perl string operations on Unicode characters add garbage to the string?
A quick question for a change.
Perl:
$string =~ s/[áàâã]/a/gi; #This line always prepends an "a"
$string =~ s/[éèêë]/e/gi;
$string =~ s/[úùûü]/u/gi;
This Regex should convert " …
2
votes
2answers
34 views
Software Translation Services cost - ballpark idea
Hi,
I was wondering if anybody could give me ballpark figures for translating resx files. Let's say I have 10 Resx files with each about 10K words. What would be the cost to trans …
0
votes
1answer
16 views
PHP Gettext problems (like non-thread-safe?)
I want to start using gettext to handle my translations on web projects (PHP 5). Since it is a widely used standard with a good reputation it seems to be the best choice.
However, …
1
vote
4answers
52 views
Java Internationalization
I have a Java string that I'm having trouble manipulating. I have a String, s, that has a value of 丞 (a Chinese character I chose at random, I don't speak Chinese). If I call
…
