[PE] Fixed text style button localization
This commit is contained in:
parent
f091e99eff
commit
8499e4d47b
|
@ -12,10 +12,10 @@
|
||||||
<li><div class="item-content buttons">
|
<li><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>
|
||||||
<a id="font-strikethrough" class="button" style="text-decoration: line-through">S</a>
|
<a id="font-strikethrough" class="button" style="text-decoration: line-through"><%= scope.textСharacterStrikethrough %></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div></li>
|
</div></li>
|
||||||
|
|
|
@ -238,7 +238,11 @@ define([
|
||||||
textLineSpacing: 'Line Spacing',
|
textLineSpacing: 'Line Spacing',
|
||||||
textBullets: 'Bullets',
|
textBullets: 'Bullets',
|
||||||
textNone: 'None',
|
textNone: 'None',
|
||||||
textNumbers: 'Numbers'
|
textNumbers: 'Numbers',
|
||||||
|
textСharacterBold: 'B',
|
||||||
|
textСharacterItalic: 'I',
|
||||||
|
textСharacterUnderline: 'U',
|
||||||
|
textСharacterStrikethrough: 'S'
|
||||||
}
|
}
|
||||||
})(), PE.Views.EditText || {}))
|
})(), PE.Views.EditText || {}))
|
||||||
});
|
});
|
|
@ -426,6 +426,10 @@
|
||||||
"PE.Views.EditText.textSmallCaps": "Малые прописные",
|
"PE.Views.EditText.textSmallCaps": "Малые прописные",
|
||||||
"PE.Views.EditText.textStrikethrough": "Зачеркнутый",
|
"PE.Views.EditText.textStrikethrough": "Зачеркнутый",
|
||||||
"PE.Views.EditText.textSubscript": "Подстрочные",
|
"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.textCase": "С учетом регистра",
|
||||||
"PE.Views.Search.textDone": "Готово",
|
"PE.Views.Search.textDone": "Готово",
|
||||||
"PE.Views.Search.textFind": "Поиск",
|
"PE.Views.Search.textFind": "Поиск",
|
||||||
|
|
Loading…
Reference in a new issue