blob: 2be1490dc581096582380d7d36a6e5b1f2fd4ff0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
Kexi Translation Issues
-----------------------
Many things can be found here: http://i18n.kde.org/translation-howto/index.html
Additional guidelines:
#1. Let's not use "Do you really want" question. Use "Do you want" question instead.
#2. Try do not overuse html formatting tags like <qt> in translated strings is you
do not need to. Eg. rather use
"<qt>" + i18n("Connection error: <b>%</b>") + "</qt>"
instead of
i18n("<qt>Connection error: <b>%</b></qt>");
#3. Use " instead of ' , ie.:
i18n("Object \"%1\" not found.") --GOOD
instead of :
i18n("Object '%1' not found.") --BAD
Also, do not use <b> tags around "" ie.
i18n("Object <b>\"%1\"</b> not found.") --BAD
--
js@iidea.pl, july 2004
|