diff --git a/modules/core/src/main/resources/static/wdScrollTab/js/TabPanel_i18n.js b/modules/core/src/main/resources/static/wdScrollTab/js/TabPanel_i18n.js
index 0771a572..3797591c 100644
--- a/modules/core/src/main/resources/static/wdScrollTab/js/TabPanel_i18n.js
+++ b/modules/core/src/main/resources/static/wdScrollTab/js/TabPanel_i18n.js
@@ -3,21 +3,23 @@
window.TabPanel = window.TabPanel || {};
if (window.lang == 'en'){
TabPanel.i18n = $.extend({}, TabPanel.i18n, {
- closeTab: 'Close',
- refreshTab: 'Refresh',
- closeOther: 'Close Other',
- closeLeft: 'Close Left',
- closeRight: 'Close Right',
- detachTab: 'Detach Tab'
+ closeTab: ' Close',
+ refreshTab: ' Refresh',
+ closeOther: ' Close Other',
+ closeLeft: ' Close Left',
+ closeRight: ' Close Right',
+ closeAll: ' Close All',
+ detachTab: ' Detach Tab'
});
} else if (window.lang == 'ja_JP'){
TabPanel.i18n = $.extend({}, TabPanel.i18n, {
- closeTab: '閉じる',
- refreshTab: '更新',
- closeOther: '他を閉じる',
- closeLeft: '左側を閉じる',
- closeRight: '右側を閉じる',
- detachTab: '新しい窓が'
+ closeTab: ' 閉じる',
+ refreshTab: ' 更新',
+ closeOther: ' 他を閉じる',
+ closeLeft: ' 左側を閉じる',
+ closeRight: ' 右側を閉じる',
+ closeAll: ' 閉じる全体',
+ detachTab: ' 新しい窓が'
});
}