From ecbdedfc6948d6c08c18ce935b02406139310e7f Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Sun, 6 Mar 2016 01:11:45 +0100 Subject: [PATCH] Refs #26319 -- Added test for English variant in javascript_catalog --- .../locale/en_GB/LC_MESSAGES/djangojs.mo | Bin 0 -> 454 bytes .../locale/en_GB/LC_MESSAGES/djangojs.po | 20 ++++++++++++++++++ tests/view_tests/tests/test_i18n.py | 8 +++++++ 3 files changed, 28 insertions(+) create mode 100644 tests/view_tests/locale/en_GB/LC_MESSAGES/djangojs.mo create mode 100644 tests/view_tests/locale/en_GB/LC_MESSAGES/djangojs.po diff --git a/tests/view_tests/locale/en_GB/LC_MESSAGES/djangojs.mo b/tests/view_tests/locale/en_GB/LC_MESSAGES/djangojs.mo new file mode 100644 index 0000000000000000000000000000000000000000..37761f0f9a7ddccbd58c24e8f6e23562bd8306a7 GIT binary patch literal 454 zcmZvY(N4lJ6o#kKn_YTswD)?jMHgWrVZtDb8_Y4dFIycm*e+c$`XIi7kL9y?W(?f; zr(b%~{O9yFAN8pvZZv< zx1%8P_m5&NY7dn(LgF1C6^1q9-CR{0UdlU?t+}p+xnHDX=mS>^Cmzl~-S-7OL ODvfRJK6U&5ul@j(VtI=I literal 0 HcmV?d00001 diff --git a/tests/view_tests/locale/en_GB/LC_MESSAGES/djangojs.po b/tests/view_tests/locale/en_GB/LC_MESSAGES/djangojs.po new file mode 100644 index 0000000000..36c821109a --- /dev/null +++ b/tests/view_tests/locale/en_GB/LC_MESSAGES/djangojs.po @@ -0,0 +1,20 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-09-15 19:15+0200\n" +"PO-Revision-Date: 2010-05-12 12:41-0300\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "this color is to be translated" +msgstr "this colour is to be translated" diff --git a/tests/view_tests/tests/test_i18n.py b/tests/view_tests/tests/test_i18n.py index 0e87856228..ae39f34421 100644 --- a/tests/view_tests/tests/test_i18n.py +++ b/tests/view_tests/tests/test_i18n.py @@ -166,6 +166,14 @@ class JsI18NTests(SimpleTestCase): self.assertContains(response, 'il faut le traduire') self.assertNotContains(response, "Untranslated string") + def test_i18n_english_variant(self): + with override('en-gb'): + response = self.client.get('/jsi18n/') + self.assertIn( + '"this color is to be translated": "this colour is to be translated"', + response.context['catalog_str'] + ) + def test_i18n_language_non_english_default(self): """ Check if the Javascript i18n view returns an empty language catalog