[PE] Add translation for table styles
This commit is contained in:
parent
9ec74a4cd6
commit
6b9922e54f
|
@ -687,11 +687,20 @@ define([
|
|||
} else {
|
||||
var arr = [];
|
||||
_.each(Templates, function(template){
|
||||
var tip = template.asc_getDisplayName();
|
||||
if (template.asc_getType()==0) {
|
||||
['No Style', 'No Grid', 'Table Grid', 'Themed Style', 'Light Style', 'Medium Style', 'Dark Style', 'Accent'].forEach(function(item){
|
||||
var str = 'txtTable_' + item.replace(' ', '');
|
||||
if (self[str])
|
||||
tip = tip.replace(new RegExp(item, 'g'), self[str]);
|
||||
});
|
||||
|
||||
}
|
||||
arr.push({
|
||||
imageUrl: template.asc_getImage(),
|
||||
id : Common.UI.getId(),
|
||||
templateId: template.asc_getId(),
|
||||
tip : template.asc_getDisplayName()
|
||||
tip : tip
|
||||
});
|
||||
});
|
||||
self.cmbTableTemplate.menuPicker.store.reset(arr);
|
||||
|
@ -790,7 +799,15 @@ define([
|
|||
textHeight: 'Height',
|
||||
textWidth: 'Width',
|
||||
textDistributeRows: 'Distribute rows',
|
||||
textDistributeCols: 'Distribute columns'
|
||||
textDistributeCols: 'Distribute columns',
|
||||
txtTable_NoStyle: 'No Style',
|
||||
txtTable_NoGrid: 'No Grid',
|
||||
txtTable_TableGrid: 'Table Grid',
|
||||
txtTable_ThemedStyle: 'Themed Style',
|
||||
txtTable_LightStyle: 'Light Style',
|
||||
txtTable_MediumStyle: 'Medium Style',
|
||||
txtTable_DarkStyle: 'Dark Style',
|
||||
txtTable_Accent: 'Accent'
|
||||
|
||||
}, PE.Views.TableSettings || {}));
|
||||
}, PE.Views.TableSettings || {}));
|
||||
});
|
|
@ -1605,6 +1605,14 @@
|
|||
"PE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced Settings",
|
||||
"PE.Views.TableSettingsAdvanced.textTop": "Top",
|
||||
"PE.Views.TableSettingsAdvanced.textWidthSpaces": "Margins",
|
||||
"PE.Views.TableSettings.txtTable_NoStyle": "No Style",
|
||||
"PE.Views.TableSettings.txtTable_NoGrid": "No Grid",
|
||||
"PE.Views.TableSettings.txtTable_TableGrid": "Table Grid",
|
||||
"PE.Views.TableSettings.txtTable_ThemedStyle": "Themed Style",
|
||||
"PE.Views.TableSettings.txtTable_LightStyle": "Light Style",
|
||||
"PE.Views.TableSettings.txtTable_MediumStyle": "Medium Style",
|
||||
"PE.Views.TableSettings.txtTable_DarkStyle": "Dark Style",
|
||||
"PE.Views.TableSettings.txtTable_Accent": "Accent",
|
||||
"PE.Views.TextArtSettings.strBackground": "Background color",
|
||||
"PE.Views.TextArtSettings.strColor": "Color",
|
||||
"PE.Views.TextArtSettings.strFill": "Fill",
|
||||
|
|
|
@ -1590,6 +1590,14 @@
|
|||
"PE.Views.TableSettings.tipRight": "Задать только внешнюю правую границу",
|
||||
"PE.Views.TableSettings.tipTop": "Задать только внешнюю верхнюю границу",
|
||||
"PE.Views.TableSettings.txtNoBorders": "Без границ",
|
||||
"PE.Views.TableSettings.txtTable_NoStyle": "Нет стиля",
|
||||
"PE.Views.TableSettings.txtTable_NoGrid": "нет сетки",
|
||||
"PE.Views.TableSettings.txtTable_TableGrid": "сетка таблицы",
|
||||
"PE.Views.TableSettings.txtTable_ThemedStyle": "Стиль из темы",
|
||||
"PE.Views.TableSettings.txtTable_LightStyle": "Светлый стиль",
|
||||
"PE.Views.TableSettings.txtTable_MediumStyle": "Средний стиль",
|
||||
"PE.Views.TableSettings.txtTable_DarkStyle": "Темный стиль",
|
||||
"PE.Views.TableSettings.txtTable_Accent": "акцент",
|
||||
"PE.Views.TableSettingsAdvanced.textAlt": "Альтернативный текст",
|
||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Описание",
|
||||
"PE.Views.TableSettingsAdvanced.textAltTip": "Альтернативное текстовое представление информации о визуальном объекте, которое будет зачитываться для людей с нарушениями зрения или когнитивными нарушениями, чтобы помочь им лучше понять, какую информацию содержит изображение, автофигура, диаграмма или таблица.",
|
||||
|
|
Loading…
Reference in a new issue