[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Untranslatable strings.
From: |
John Darrington |
Subject: |
Untranslatable strings. |
Date: |
Sat, 21 Oct 2006 22:01:06 +0800 |
User-agent: |
Mutt/1.5.4i |
From src/data/variable.c :
/* Returns an adjective describing the given variable TYPE,
suitable for use in phrases like "numeric variable". */
const char *
var_type_adj (enum var_type type)
{
return type == NUMERIC ? _("numeric") : _("string");
}
/* Returns a noun describing a value of the given variable TYPE,
suitable for use in phrases like "a number". */
const char *
var_type_noun (enum var_type type)
{
return type == NUMERIC ? _("number") : _("string");
}
These aren't a good idea from an internationalisation point of view.
In many languages adjectives need to be declined dependeding on the
context of the sentence. I understand languages like Russian have
similar problems with nouns. Even in English, these will have
problems if the word should appear as the first word of a sentence.
J'
--
PGP Public key ID: 1024D/2DE827B3
fingerprint = 8797 A26D 0854 2EAB 0285 A290 8A67 719C 2DE8 27B3
See http://pgp.mit.edu or any PGP keyserver for public key.
pgpzH1tF_gRRW.pgp
Description: PGP signature
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- Untranslatable strings.,
John Darrington <=