[SSE] Fixed text style button localization
This commit is contained in:
parent
0038b71370
commit
f091e99eff
|
@ -16,9 +16,9 @@
|
||||||
<div class="item-content buttons">
|
<div class="item-content buttons">
|
||||||
<div class="item-inner">
|
<div class="item-inner">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<a id="font-bold" class="button"><b>B</b></a>
|
<a id="font-bold" class="button"><b><%= scope.textСharacterBold %></b></a>
|
||||||
<a id="font-italic" class="button"><i>I</i></a>
|
<a id="font-italic" class="button"><i><%= scope.textСharacterItalic %></i></a>
|
||||||
<a id="font-underline" class="button" style="text-decoration: underline;">U</a>
|
<a id="font-underline" class="button" style="text-decoration: underline;"><%= scope.textСharacterUnderline %></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -16,9 +16,9 @@
|
||||||
<div class="item-content buttons">
|
<div class="item-content buttons">
|
||||||
<div class="item-inner">
|
<div class="item-inner">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<a id="font-bold" class="button"><b>B</b></a>
|
<a id="font-bold" class="button"><b><%= scope.textСharacterBold %></b></a>
|
||||||
<a id="font-italic" class="button"><i>I</i></a>
|
<a id="font-italic" class="button"><i><%= scope.textСharacterItalic %></i></a>
|
||||||
<a id="font-underline" class="button" style="text-decoration: underline;">U</a>
|
<a id="font-underline" class="button" style="text-decoration: underline;"><%= scope.textСharacterUnderline %></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -293,7 +293,10 @@ define([
|
||||||
textEuro: 'Euro',
|
textEuro: 'Euro',
|
||||||
textPound: 'Pound',
|
textPound: 'Pound',
|
||||||
textRouble: 'Rouble',
|
textRouble: 'Rouble',
|
||||||
textYen: 'Yen'
|
textYen: 'Yen',
|
||||||
|
textСharacterBold: 'B',
|
||||||
|
textСharacterItalic: 'I',
|
||||||
|
textСharacterUnderline: 'U'
|
||||||
}
|
}
|
||||||
})(), SSE.Views.EditCell || {}))
|
})(), SSE.Views.EditCell || {}))
|
||||||
});
|
});
|
||||||
|
|
|
@ -177,7 +177,10 @@ define([
|
||||||
textFonts: 'Fonts',
|
textFonts: 'Fonts',
|
||||||
textTextColor: 'Text Color',
|
textTextColor: 'Text Color',
|
||||||
textFillColor: 'Fill Color',
|
textFillColor: 'Fill Color',
|
||||||
textSize: 'Size'
|
textSize: 'Size',
|
||||||
|
textСharacterBold: 'B',
|
||||||
|
textСharacterItalic: 'I',
|
||||||
|
textСharacterUnderline: 'U'
|
||||||
}
|
}
|
||||||
})(), SSE.Views.EditText || {}))
|
})(), SSE.Views.EditText || {}))
|
||||||
});
|
});
|
|
@ -375,6 +375,9 @@
|
||||||
"SSE.Views.EditCell.textTopBorder": "Верхняя граница",
|
"SSE.Views.EditCell.textTopBorder": "Верхняя граница",
|
||||||
"SSE.Views.EditCell.textWrapText": "Перенос текста",
|
"SSE.Views.EditCell.textWrapText": "Перенос текста",
|
||||||
"SSE.Views.EditCell.textYen": "Иена",
|
"SSE.Views.EditCell.textYen": "Иена",
|
||||||
|
"SSE.Views.EditCell.textСharacterBold": "Ж",
|
||||||
|
"SSE.Views.EditCell.textСharacterItalic": "К",
|
||||||
|
"SSE.Views.EditCell.textСharacterUnderline": "Ч",
|
||||||
"SSE.Views.EditChart.textAuto": "Авто",
|
"SSE.Views.EditChart.textAuto": "Авто",
|
||||||
"SSE.Views.EditChart.textAxisCrosses": "Пересечение с осью",
|
"SSE.Views.EditChart.textAxisCrosses": "Пересечение с осью",
|
||||||
"SSE.Views.EditChart.textAxisOptions": "Параметры оси",
|
"SSE.Views.EditChart.textAxisOptions": "Параметры оси",
|
||||||
|
@ -473,6 +476,9 @@
|
||||||
"SSE.Views.EditText.textFonts": "Шрифты",
|
"SSE.Views.EditText.textFonts": "Шрифты",
|
||||||
"SSE.Views.EditText.textSize": "Размер",
|
"SSE.Views.EditText.textSize": "Размер",
|
||||||
"SSE.Views.EditText.textTextColor": "Цвет текста",
|
"SSE.Views.EditText.textTextColor": "Цвет текста",
|
||||||
|
"SSE.Views.EditText.textСharacterBold": "Ж",
|
||||||
|
"SSE.Views.EditText.textСharacterItalic": "К",
|
||||||
|
"SSE.Views.EditText.textСharacterUnderline": "Ч",
|
||||||
"SSE.Views.Search.textDone": "Готово",
|
"SSE.Views.Search.textDone": "Готово",
|
||||||
"SSE.Views.Search.textFind": "Поиск",
|
"SSE.Views.Search.textFind": "Поиск",
|
||||||
"SSE.Views.Search.textFindAndReplace": "Поиск и замена",
|
"SSE.Views.Search.textFindAndReplace": "Поиск и замена",
|
||||||
|
|
Loading…
Reference in a new issue