Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
a5f6cbce
Kaydet (Commit)
a5f6cbce
authored
Nis 30, 2014
tarafından
Doug Beck
Kaydeden (comit)
Claude Paroz
Nis 30, 2014
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Refactored DjangoTranslation class
Also fixes #18192 and #21055.
üst
7c54f8cc
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
0 deletions
+25
-0
AUTHORS
AUTHORS
+1
-0
trans_real.py
django/utils/translation/trans_real.py
+0
-0
tests.py
tests/i18n/tests.py
+24
-0
No files found.
AUTHORS
Dosyayı görüntüle @
a5f6cbce
...
...
@@ -104,6 +104,7 @@ answer newbie questions, and generally made Django that much better:
Batman
Oliver Beattie <oliver@obeattie.com>
Brian Beck <http://blog.brianbeck.com/>
Doug Beck <doug@douglasbeck.com>
Shannon -jj Behrens <http://jjinux.blogspot.com/>
Esdras Beleza <linux@esdrasbeleza.com>
Božidar Benko <bbenko@gmail.com>
...
...
django/utils/translation/trans_real.py
Dosyayı görüntüle @
a5f6cbce
This diff is collapsed.
Click to expand it.
tests/i18n/tests.py
Dosyayı görüntüle @
a5f6cbce
...
...
@@ -4,6 +4,7 @@ from __future__ import unicode_literals
from
contextlib
import
contextmanager
import
datetime
import
decimal
import
gettext
as
gettext_module
from
importlib
import
import_module
import
os
import
pickle
...
...
@@ -1338,3 +1339,26 @@ class CountrySpecificLanguageTests(TestCase):
r
.
META
=
{
'HTTP_ACCEPT_LANGUAGE'
:
'pt-pt,en-US;q=0.8,en;q=0.6,ru;q=0.4'
}
lang
=
get_language_from_request
(
r
)
self
.
assertEqual
(
'pt-br'
,
lang
)
class
TranslationFilesMissing
(
TestCase
):
def
setUp
(
self
):
super
(
TranslationFilesMissing
,
self
)
.
setUp
()
self
.
gettext_find_builtin
=
gettext_module
.
find
def
tearDown
(
self
):
gettext_module
.
find
=
self
.
gettext_find_builtin
super
(
TranslationFilesMissing
,
self
)
.
tearDown
()
def
patchGettextFind
(
self
):
gettext_module
.
find
=
lambda
*
args
,
**
kw
:
None
def
test_failure_finding_default_mo_files
(
self
):
'''
Ensure IOError is raised if the default language is unparseable.
Refs: #18192
'''
self
.
patchGettextFind
()
trans_real
.
_translations
=
{}
self
.
assertRaises
(
IOError
,
activate
,
'en'
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment