##// 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 (Translations are optional)
1 (Translations are optional)
2
2
3 #if gettext no-outer-repo
3 #if gettext no-outer-repo
4
4
5 Test that translations are compiled and installed correctly.
5 Test that translations are compiled and installed correctly.
6
6
7 Default encoding in tests is "ascii" and the translation is encoded
7 Default encoding in tests is "ascii" and the translation is encoded
8 using the "replace" error handler:
8 using the "replace" error handler:
9
9
10 $ LANGUAGE=pt_BR hg tip
10 $ LANGUAGE=pt_BR hg tip
11 abortado: n?o foi encontrado um reposit?rio em '$TESTTMP' (.hg n?o encontrado)!
11 abortado: n?o foi encontrado um reposit?rio em '$TESTTMP' (.hg n?o encontrado)!
12 [255]
12 [255]
13
13
14 Using a more accommodating encoding:
14 Using a more accommodating encoding:
15
15
16 $ HGENCODING=UTF-8 LANGUAGE=pt_BR hg tip
16 $ HGENCODING=UTF-8 LANGUAGE=pt_BR hg tip
17 abortado: n\xc3\xa3o foi encontrado um reposit\xc3\xb3rio em '$TESTTMP' (.hg n\xc3\xa3o encontrado)! (esc)
17 abortado: n\xc3\xa3o foi encontrado um reposit\xc3\xb3rio em '$TESTTMP' (.hg n\xc3\xa3o encontrado)! (esc)
18 [255]
18 [255]
19
19
20 Different encoding:
20 Different encoding:
21
21
22 $ HGENCODING=Latin-1 LANGUAGE=pt_BR hg tip
22 $ HGENCODING=Latin-1 LANGUAGE=pt_BR hg tip
23 abortado: n\xe3o foi encontrado um reposit\xf3rio em '$TESTTMP' (.hg n\xe3o encontrado)! (esc)
23 abortado: n\xe3o foi encontrado um reposit\xf3rio em '$TESTTMP' (.hg n\xe3o encontrado)! (esc)
24 [255]
24 [255]
25
25
26 #endif
26 #endif
27
27
28 #if gettext
28 #if gettext
29
29
30 Test keyword search in translated help text:
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 Themen:
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 #endif
42 #endif
42
43
43 Check Mercurial specific translation problems in each *.po files, and
44 Check Mercurial specific translation problems in each *.po files, and
44 tool itself by doctest
45 tool itself by doctest
45
46
46 $ cd "$TESTDIR"/../i18n
47 $ cd "$TESTDIR"/../i18n
47 $ python check-translation.py *.po
48 $ python check-translation.py *.po
48 $ python check-translation.py --doctest
49 $ python check-translation.py --doctest
49 $ cd $TESTTMP
50 $ cd $TESTTMP
General Comments 0
You need to be logged in to leave comments. Login now