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

Commit 7dfad7b

Browse files
authored
Merge pull request #180 from OrchidLiu/master
修复自动排版配置弹窗中无法设置文字两端对齐的问题
2 parents 86f70db + 3a3e815 commit 7dfad7b

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

_src/ui/autotypesetpicker.js

+6
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,12 @@
7272
(opt["textAlign"] && opt["textAlign"] == "right" ? "checked" : "") +
7373
">" +
7474
me.getLang("justifyright") +
75+
'<input type="radio" name="' +
76+
textAlignInputName +
77+
'" value="justify" ' +
78+
(opt["textAlign"] && opt["textAlign"] == "justify" ? "checked" : "") +
79+
">" +
80+
me.getLang("justifyjustify") +
7581
"</td>" +
7682
"</tr>" +
7783
"<tr>" +

i18n/en/en.js

+1
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ UE.I18N['en'] = {
206206
'justifyleft':'Justify Left',
207207
'justifyright':'Justify Right',
208208
'justifycenter':'Justify Center',
209+
'justifyjustify':'Default',
209210
'justify':'Default',
210211
'clear':'Clear',
211212
'anchorMsg':'Anchor',

i18n/ja-jp/ja-jp.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ UE.I18N['ja-jp'] = {
200200
'justifyleft':'左揃え',
201201
'justifyright':'右揃え',
202202
'justifycenter':'中央揃え',
203+
'justifyjustify':'両端揃え',
203204
'justify':'デフォルト',
204205
'clear':'クリア',
205206
'anchorMsg':'アンカー',
@@ -556,7 +557,7 @@ UE.I18N['ja-jp'] = {
556557
'lang_input_target':'新しいウィンドウで開きますか:'
557558
},
558559
'validLink':'リンクを選択する場合のみ、有効',
559-
'httpPrompt':'ご入力いただいたハイパーリンクにはhttpなどのプロトコル名が含まれておらず、デフォルトはhttp://を追加します'
560+
'httpPrompt':'ご入力いただいたハイパーリンクにはhttpなどのプロトコル名が含まれておらず、デフォルトはhttp://を追加します'
560561
},
561562
'map':{
562563
'static':{

i18n/zh-cn/zh-cn.js

+1
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,7 @@ UE.I18N['zh-cn'] = {
205205
'justifyleft':'左对齐',
206206
'justifyright':'右对齐',
207207
'justifycenter':'居中',
208+
'justifyjustify':'两端对齐',
208209
'justify':'默认',
209210
'clear':'清除',
210211
'anchorMsg':'锚点',

0 commit comments

Comments
 (0)