Explorar el Código

Wrap translation

Denis K hace 8 años
padre
commit
1b0eb76ad3
Se han modificado 1 ficheros con 9 adiciones y 2 borrados
  1. 9 2
      jet/static/jet/js/src/layout-updaters/changeform-tabs.js

+ 9 - 2
jet/static/jet/js/src/layout-updaters/changeform-tabs.js

@@ -5,13 +5,20 @@ var ChangeFormTabsUpdater = function($changeform) {
 };
 
 ChangeFormTabsUpdater.prototype = {
+    t: function(s) {
+        if (window.django == undefined) {
+            return s;
+        }
+        return django.gettext(s);
+    },
     findTabs: function($modules, $inlines) {
+        var self = this;
         var tabs = [];
 
         $modules.each(function(i) {
             var $module = $(this);
             var $header = $module.find('> h2').first();
-            var title = $header.length != 0 ? $header.html() : 'General';
+            var title = $header.length != 0 ? $header.html() : self.t('General');
             var className = 'module_' + i;
 
             $module.addClass(className);
@@ -26,7 +33,7 @@ ChangeFormTabsUpdater.prototype = {
         $inlines.each(function(i) {
             var $inline = $(this);
             var $header = $inline.find('> h2, .tabular.inline-related > .module > h2').first();
-            var title = $header.length != 0 ? $header.html() : 'Tab';
+            var title = $header.length != 0 ? $header.html() : self.t('Tab');
             var className = 'inline_' + i;
 
             $inline.addClass(className);