mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-16 11:38:02 +02:00
Fixed problem with tabs not being translated
This commit is contained in:
@ -13,6 +13,7 @@
|
||||
"use strict";
|
||||
|
||||
/*egw:uses
|
||||
jsapi.egw;
|
||||
jquery.jquery;
|
||||
et2_widget;
|
||||
*/
|
||||
@ -56,7 +57,7 @@ var et2_tabbox = et2_DOMWidget.extend({
|
||||
if (nodeName == "tab")
|
||||
{
|
||||
tabData.push({
|
||||
"label": et2_readAttrWithDefault(node, "label", "Tab"),
|
||||
"label": egw.lang(et2_readAttrWithDefault(node, "label", "Tab")),
|
||||
"widget": null,
|
||||
"contentDiv": null,
|
||||
"flagDiv": null
|
||||
|
@ -13,7 +13,7 @@
|
||||
"use strict";
|
||||
|
||||
/*egw:uses
|
||||
jsapi/egw;
|
||||
jsapi.egw;
|
||||
et2_xml;
|
||||
et2_common;
|
||||
et2_inheritance;
|
||||
|
Reference in New Issue
Block a user