[DE] Fixed text style button localization

This commit is contained in:
Alexander Yuzhin 2019-03-12 13:41:16 +03:00
parent 17f1126348
commit 0b69912592
3 changed files with 13 additions and 5 deletions

View file

@ -16,10 +16,10 @@
<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>

View file

@ -248,7 +248,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'
}
})(), DE.Views.EditText || {}))
});

View file

@ -352,6 +352,10 @@
"DE.Views.EditText.textLineSpacing": "Междустрочный интервал",
"DE.Views.EditText.textNone": "Нет",
"DE.Views.EditText.textNumbers": "Нумерация",
"DE.Views.EditText.textСharacterBold": "Ж",
"DE.Views.EditText.textСharacterItalic": "К",
"DE.Views.EditText.textСharacterUnderline": "Ч",
"DE.Views.EditText.textСharacterStrikethrough": "Т",
"DE.Views.EditText.textSize": "Размер",
"DE.Views.EditText.textSmallCaps": "Малые прописные",
"DE.Views.EditText.textStrikethrough": "Зачеркнутый",