mirror of
				https://github.com/django/django.git
				synced 2025-10-30 17:16:10 +00:00 
			
		
		
		
	Fixed #5853 -- Added handling for a missing 'en' PO file in translation support
(this file being missing is essentially harmless). Thanks, miracle2k. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6739 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -120,8 +120,12 @@ def javascript_catalog(request, domain='djangojs', packages=None): | ||||
|         p = __import__(package, {}, {}, ['']) | ||||
|         path = os.path.join(os.path.dirname(p.__file__), 'locale') | ||||
|         paths.append(path) | ||||
|         catalog = gettext_module.translation(domain, path, ['en']) | ||||
|         t.update(catalog._catalog) | ||||
|         try: | ||||
|             catalog = gettext_module.translation(domain, path, ['en']) | ||||
|             t.update(catalog._catalog) | ||||
|         except IOError: | ||||
|             # 'en' catalog was missing. This is harmless. | ||||
|             pass | ||||
|     # next load the settings.LANGUAGE_CODE translations if it isn't english | ||||
|     if default_locale != 'en': | ||||
|         for path in paths: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user