##// END OF EJS Templates
tests: update test-i18n.t to not depend on the pager extension...
Augie Fackler -
r30943:a0e4df5a default
parent child Browse files
Show More
@@ -1,49 +1,50 b''
1 1 (Translations are optional)
2 2
3 3 #if gettext no-outer-repo
4 4
5 5 Test that translations are compiled and installed correctly.
6 6
7 7 Default encoding in tests is "ascii" and the translation is encoded
8 8 using the "replace" error handler:
9 9
10 10 $ LANGUAGE=pt_BR hg tip
11 11 abortado: n?o foi encontrado um reposit?rio em '$TESTTMP' (.hg n?o encontrado)!
12 12 [255]
13 13
14 14 Using a more accommodating encoding:
15 15
16 16 $ HGENCODING=UTF-8 LANGUAGE=pt_BR hg tip
17 17 abortado: n\xc3\xa3o foi encontrado um reposit\xc3\xb3rio em '$TESTTMP' (.hg n\xc3\xa3o encontrado)! (esc)
18 18 [255]
19 19
20 20 Different encoding:
21 21
22 22 $ HGENCODING=Latin-1 LANGUAGE=pt_BR hg tip
23 23 abortado: n\xe3o foi encontrado um reposit\xf3rio em '$TESTTMP' (.hg n\xe3o encontrado)! (esc)
24 24 [255]
25 25
26 26 #endif
27 27
28 28 #if gettext
29 29
30 30 Test keyword search in translated help text:
31 31
32 $ HGENCODING=UTF-8 LANGUAGE=de hg help -k blättern
32 $ HGENCODING=UTF-8 LANGUAGE=de hg help -k Aktualisiert
33 33 Themen:
34 34
35 extensions Benutzung erweiterter Funktionen
35 subrepos Unterarchive
36 36
37 Erweiterungen:
37 Befehle:
38 38
39 pager Verwendet einen externen Pager zum Bl\xc3\xa4ttern in der Ausgabe von Befehlen (esc)
39 pull Ruft \xc3\x84nderungen von der angegebenen Quelle ab (esc)
40 update Aktualisiert das Arbeitsverzeichnis (oder wechselt die Version)
40 41
41 42 #endif
42 43
43 44 Check Mercurial specific translation problems in each *.po files, and
44 45 tool itself by doctest
45 46
46 47 $ cd "$TESTDIR"/../i18n
47 48 $ python check-translation.py *.po
48 49 $ python check-translation.py --doctest
49 50 $ cd $TESTTMP
General Comments 0
You need to be logged in to leave comments. Login now