From aebdb2b5677fdee4429b1d08b365c28f4899fbd0 Mon Sep 17 00:00:00 2001 From: thinkgem Date: Mon, 22 Nov 2021 20:22:03 +0800 Subject: [PATCH] =?UTF-8?q?Tab=E9=A1=B5=E7=AD=BE=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E5=85=B3=E9=97=AD=E5=85=A8=E9=83=A8=E5=8A=9F=E8=83=BD=EF=BC=9B?= =?UTF-8?q?Tab=E5=A2=9E=E5=8A=A0=E5=9B=BE=E6=A0=87=EF=BC=9B=E5=AD=97?= =?UTF-8?q?=E4=BD=93=E5=9D=87=E8=B0=83=E6=95=B4=E4=B8=BA14=E5=8F=B7?= =?UTF-8?q?=EF=BC=9B=E4=BE=A7=E8=BE=B9=E6=A0=8F=E9=80=89=E9=A1=B9=E7=A8=8D?= =?UTF-8?q?=E5=BE=AE=E9=AB=98=E4=B8=80=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../static/wdScrollTab/js/TabPanel_i18n.js | 26 ++++++++++--------- 1 file changed, 14 insertions(+), 12 deletions(-) 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: ' 新しい窓が' }); }