[SSE] Fixed text style button localization

This commit is contained in:
Alexander Yuzhin 2019-03-12 13:58:15 +03:00
parent 0038b71370
commit f091e99eff
5 changed files with 20 additions and 8 deletions

View file

@ -16,9 +16,9 @@
<div class="item-content buttons">
<div class="item-inner">
<div class="row">
<a id="font-bold" class="button"><b>B</b></a>
<a id="font-italic" class="button"><i>I</i></a>
<a id="font-underline" class="button" style="text-decoration: underline;">U</a>
<a id="font-bold" class="button"><b><%= scope.textСharacterBold %></b></a>
<a id="font-italic" class="button"><i><%= scope.textСharacterItalic %></i></a>
<a id="font-underline" class="button" style="text-decoration: underline;"><%= scope.textСharacterUnderline %></a>
</div>
</div>
</div>

View file

@ -16,9 +16,9 @@
<div class="item-content buttons">
<div class="item-inner">
<div class="row">
<a id="font-bold" class="button"><b>B</b></a>
<a id="font-italic" class="button"><i>I</i></a>
<a id="font-underline" class="button" style="text-decoration: underline;">U</a>
<a id="font-bold" class="button"><b><%= scope.textСharacterBold %></b></a>
<a id="font-italic" class="button"><i><%= scope.textСharacterItalic %></i></a>
<a id="font-underline" class="button" style="text-decoration: underline;"><%= scope.textСharacterUnderline %></a>
</div>
</div>
</div>

View file

@ -293,7 +293,10 @@ define([
textEuro: 'Euro',
textPound: 'Pound',
textRouble: 'Rouble',
textYen: 'Yen'
textYen: 'Yen',
textСharacterBold: 'B',
textСharacterItalic: 'I',
textСharacterUnderline: 'U'
}
})(), SSE.Views.EditCell || {}))
});

View file

@ -177,7 +177,10 @@ define([
textFonts: 'Fonts',
textTextColor: 'Text Color',
textFillColor: 'Fill Color',
textSize: 'Size'
textSize: 'Size',
textСharacterBold: 'B',
textСharacterItalic: 'I',
textСharacterUnderline: 'U'
}
})(), SSE.Views.EditText || {}))
});

View file

@ -375,6 +375,9 @@
"SSE.Views.EditCell.textTopBorder": "Верхняя граница",
"SSE.Views.EditCell.textWrapText": "Перенос текста",
"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.textAxisCrosses": "Пересечение с осью",
"SSE.Views.EditChart.textAxisOptions": "Параметры оси",
@ -473,6 +476,9 @@
"SSE.Views.EditText.textFonts": "Шрифты",
"SSE.Views.EditText.textSize": "Размер",
"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.textFind": "Поиск",
"SSE.Views.Search.textFindAndReplace": "Поиск и замена",