Skip to content
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.

Commit

Permalink
Merge pull request #180 from OrchidLiu/master
Browse files Browse the repository at this point in the history
修复自动排版配置弹窗中无法设置文字两端对齐的问题
  • Loading branch information
zuohuadong authored Apr 30, 2020
2 parents 86f70db + 3a3e815 commit 7dfad7b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
6 changes: 6 additions & 0 deletions _src/ui/autotypesetpicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@
(opt["textAlign"] && opt["textAlign"] == "right" ? "checked" : "") +
">" +
me.getLang("justifyright") +
'<input type="radio" name="' +
textAlignInputName +
'" value="justify" ' +
(opt["textAlign"] && opt["textAlign"] == "justify" ? "checked" : "") +
">" +
me.getLang("justifyjustify") +
"</td>" +
"</tr>" +
"<tr>" +
Expand Down
1 change: 1 addition & 0 deletions i18n/en/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ UE.I18N['en'] = {
'justifyleft':'Justify Left',
'justifyright':'Justify Right',
'justifycenter':'Justify Center',
'justifyjustify':'Default',
'justify':'Default',
'clear':'Clear',
'anchorMsg':'Anchor',
Expand Down
3 changes: 2 additions & 1 deletion i18n/ja-jp/ja-jp.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ UE.I18N['ja-jp'] = {
'justifyleft':'左揃え',
'justifyright':'右揃え',
'justifycenter':'中央揃え',
'justifyjustify':'両端揃え',
'justify':'デフォルト',
'clear':'クリア',
'anchorMsg':'アンカー',
Expand Down Expand Up @@ -556,7 +557,7 @@ UE.I18N['ja-jp'] = {
'lang_input_target':'新しいウィンドウで開きますか:'
},
'validLink':'リンクを選択する場合のみ、有効',
'httpPrompt':'ご入力いただいたハイパーリンクにはhttpなどのプロトコル名が含まれておらず、デフォルトはhttp://を追加します'
'httpPrompt':'ご入力いただいたハイパーリンクにはhttpなどのプロトコル名が含まれておらず、デフォルトはhttp://を追加します'
},
'map':{
'static':{
Expand Down
1 change: 1 addition & 0 deletions i18n/zh-cn/zh-cn.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ UE.I18N['zh-cn'] = {
'justifyleft':'左对齐',
'justifyright':'右对齐',
'justifycenter':'居中',
'justifyjustify':'两端对齐',
'justify':'默认',
'clear':'清除',
'anchorMsg':'锚点',
Expand Down

0 comments on commit 7dfad7b

Please sign in to comment.