No se puede mostrar: el archivo está marcado como binario.
svn:mime-type = application/octet-stream
No se puede mostrar: el archivo está marcado como binario.
svn:mime-type = application/octet-stream
|
|
|
18 | 18 | |
19 | 19 | #: media/js/translate.js:1 |
20 | 20 | msgid "this is to be translated" |
21 | | msgstr "esto tiene que ser traducido" |
22 | | Sin fin-de-línea al final del archivo |
| 21 | msgstr "esto tiene que ser traducido" |
| 22 | |
| 23 | #: media/js/translate.js:2 |
| 24 | msgid "message not in default language catalog" |
| 25 | msgstr "message translated that should not exists in english" |
| 26 | Sin fin-de-línea al final del archivo |
No se puede mostrar: el archivo está marcado como binario.
svn:mime-type = application/octet-stream
|
|
|
10 | 10 | class I18NTests(TestCase): |
11 | 11 | """ Tests django views in django/views/i18n.py """ |
12 | 12 | |
| 13 | def setUp(self): |
| 14 | self.old_language_code = settings.LANGUAGE_CODE |
| 15 | settings.LANGUAGE_CODE = 'es' # set this to test bug #3594 |
| 16 | |
| 17 | def tearDown(self): |
| 18 | settings.LANGUAGE_CODE = self.old_language_code |
| 19 | |
13 | 20 | def test_setlang(self): |
14 | 21 | """The set_language view can be used to change the session language""" |
15 | 22 | for lang_code, lang_name in settings.LANGUAGES: |
… |
… |
|
28 | 35 | # in response content must to be a line like that: |
29 | 36 | # catalog['this is to be translated'] = 'same_that_trans_txt' |
30 | 37 | self.assertContains(response, trans_txt, 1) |
| 38 | |
| 39 | # Test for bug #3594 |
| 40 | activate('en') |
| 41 | response = self.client.get('/views/jsi18n/') |
| 42 | self.assertNotContains(response, 'message translated that should not exists in english') |
| 43 | Sin fin-de-línea al final del archivo |