[PE] Fixed text style button localization

This commit is contained in:
Alexander Yuzhin 2019-03-12 14:05:26 +03:00
parent f091e99eff
commit 8499e4d47b
3 changed files with 13 additions and 5 deletions

View file

@ -12,10 +12,10 @@
<li><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-strikethrough" class="button" style="text-decoration: line-through">S</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>
<a id="font-strikethrough" class="button" style="text-decoration: line-through"><%= scope.textСharacterStrikethrough %></a>
</div>
</div>
</div></li>

View file

@ -238,7 +238,11 @@ define([
textLineSpacing: 'Line Spacing',
textBullets: 'Bullets',
textNone: 'None',
textNumbers: 'Numbers'
textNumbers: 'Numbers',
textСharacterBold: 'B',
textСharacterItalic: 'I',
textСharacterUnderline: 'U',
textСharacterStrikethrough: 'S'
}
})(), PE.Views.EditText || {}))
});

View file

@ -426,6 +426,10 @@
"PE.Views.EditText.textSmallCaps": "Малые прописные",
"PE.Views.EditText.textStrikethrough": "Зачеркнутый",
"PE.Views.EditText.textSubscript": "Подстрочные",
"PE.Views.EditText.textСharacterBold": "Ж",
"PE.Views.EditText.textСharacterItalic": "К",
"PE.Views.EditText.textСharacterUnderline": "Ч",
"PE.Views.EditText.textСharacterStrikethrough": "Т",
"PE.Views.Search.textCase": "С учетом регистра",
"PE.Views.Search.textDone": "Готово",
"PE.Views.Search.textFind": "Поиск",