vue-editify 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/examples/App.vue +5668 -5669
- package/examples/main.js +4 -4
- package/lib/editify.es.js +167 -192
- package/lib/editify.umd.js +1 -1
- package/lib/style.css +1 -1
- package/package.json +37 -37
- package/src/Editify.vue +1188 -1178
- package/src/components/Menu.vue +1623 -1623
- package/src/components/Toolbar.vue +1214 -1214
- package/src/components/base/Button.vue +450 -450
- package/src/components/base/Checkbox.vue +196 -196
- package/src/components/base/Icon.vue +31 -31
- package/src/components/base/Layer.vue +712 -712
- package/src/components/base/Tooltip.vue +82 -82
- package/src/components/base/Triangle.vue +159 -159
- package/src/components/common/Colors.vue +138 -138
- package/src/components/common/InsertImage.vue +316 -316
- package/src/components/common/InsertLink.vue +136 -136
- package/src/components/common/InsertTable.vue +157 -157
- package/src/components/common/InsertVideo.vue +316 -316
- package/src/core/function.js +1044 -1044
- package/src/core/rule.js +239 -239
- package/src/core/tool.js +1056 -1051
- package/src/css/base.less +30 -30
- package/src/css/hljs.less +54 -54
- package/src/hljs/index.js +62 -62
- package/src/icon/iconfont.css +219 -219
- package/src/index.js +24 -24
- package/src/locale/en_US.js +86 -86
- package/src/locale/index.js +14 -14
- package/src/locale/zh_CN.js +86 -86
package/src/locale/zh_CN.js
CHANGED
@@ -1,86 +1,86 @@
|
|
1
|
-
export default {
|
2
|
-
textWrapUp: '向上换行',
|
3
|
-
textWrapDown: '向下换行',
|
4
|
-
insertRowTop: '向前插入行',
|
5
|
-
insertRowBottom: '向后插入行',
|
6
|
-
insertColumnLeft: '向前插入列',
|
7
|
-
insertColumnRight: '向后插入列',
|
8
|
-
deleteRow: '删除行',
|
9
|
-
deleteColumn: '删除列',
|
10
|
-
deleteTable: '删除表格',
|
11
|
-
selectLanguages: '选择语言',
|
12
|
-
autoRecognize: '自动识别',
|
13
|
-
linkAddress: '链接地址',
|
14
|
-
newWindowOpen: '新窗口打开',
|
15
|
-
removeLink: '移除链接',
|
16
|
-
viewLink: '查看链接',
|
17
|
-
linkUrlEnterPlaceholder: '请输入链接地址',
|
18
|
-
linkTextEnterPlaceholder: '请输入链接文本',
|
19
|
-
width30: '30%宽度',
|
20
|
-
width50: '50%宽度',
|
21
|
-
width100: '100%宽度',
|
22
|
-
deleteImage: '删除图片',
|
23
|
-
autoplay: '自动播放',
|
24
|
-
disabledAutoplay: '关闭自动播放',
|
25
|
-
loop: '循环播放',
|
26
|
-
disabledLoop: '关闭循环播放',
|
27
|
-
muted: '静音',
|
28
|
-
unmuted: '播放声音',
|
29
|
-
controls: '播放控制',
|
30
|
-
deleteVideo: '删除视频',
|
31
|
-
heading: '标题',
|
32
|
-
bold: '粗体',
|
33
|
-
h1: '一级标题',
|
34
|
-
h2: '二级标题',
|
35
|
-
h3: '三级标题',
|
36
|
-
h4: '四级标题',
|
37
|
-
h5: '五级标题',
|
38
|
-
h6: '六级标题',
|
39
|
-
text: '正文',
|
40
|
-
italic: '斜体',
|
41
|
-
orderList: '有序列表',
|
42
|
-
unorderList: '无序列表',
|
43
|
-
strikethrough: '删除线',
|
44
|
-
underline: '下划线',
|
45
|
-
code: '行内代码',
|
46
|
-
superscript: '上标',
|
47
|
-
subscript: '下标',
|
48
|
-
fontSize: '字号',
|
49
|
-
fontFamily: '字体',
|
50
|
-
defaultFontFamily: '默认字体',
|
51
|
-
foreColor: '前景色',
|
52
|
-
defaultColor: '默认颜色',
|
53
|
-
backColor: '背景色',
|
54
|
-
formatClear: '清除格式',
|
55
|
-
defaultSize: '默认字号',
|
56
|
-
totalWordCount: '总字数:',
|
57
|
-
align: '对齐方式',
|
58
|
-
undo: '撤销',
|
59
|
-
redo: '重做',
|
60
|
-
quote: '引用',
|
61
|
-
lineHeight: '行高',
|
62
|
-
indent: '缩进',
|
63
|
-
insertLink: '插入链接',
|
64
|
-
insertImage: '插入图片',
|
65
|
-
remoteImage: '网络图片',
|
66
|
-
uploadImage: '上传图片',
|
67
|
-
imageUrlPlaceholder: '请输入图片地址',
|
68
|
-
insert: '插入',
|
69
|
-
insertVideo: '插入视频',
|
70
|
-
remoteVideo: '网络视频',
|
71
|
-
uploadVideo: '上传视频',
|
72
|
-
videoUrlPlaceholder: '请输入视频地址',
|
73
|
-
insertTable: '插入表格',
|
74
|
-
inserCodeBlock: '插入代码块',
|
75
|
-
sourceView: '代码视图',
|
76
|
-
task: '待办',
|
77
|
-
indentIncrease: '增加缩进',
|
78
|
-
indentDecrease: '减少缩进',
|
79
|
-
alignLeft: '左对齐',
|
80
|
-
alignCenter: '居中对齐',
|
81
|
-
alignRight: '右对齐',
|
82
|
-
alignJustify: '两端对齐',
|
83
|
-
defaultLineHeight: '默认行高',
|
84
|
-
auto: '自适应',
|
85
|
-
fullScreen: '全屏'
|
86
|
-
}
|
1
|
+
export default {
|
2
|
+
textWrapUp: '向上换行',
|
3
|
+
textWrapDown: '向下换行',
|
4
|
+
insertRowTop: '向前插入行',
|
5
|
+
insertRowBottom: '向后插入行',
|
6
|
+
insertColumnLeft: '向前插入列',
|
7
|
+
insertColumnRight: '向后插入列',
|
8
|
+
deleteRow: '删除行',
|
9
|
+
deleteColumn: '删除列',
|
10
|
+
deleteTable: '删除表格',
|
11
|
+
selectLanguages: '选择语言',
|
12
|
+
autoRecognize: '自动识别',
|
13
|
+
linkAddress: '链接地址',
|
14
|
+
newWindowOpen: '新窗口打开',
|
15
|
+
removeLink: '移除链接',
|
16
|
+
viewLink: '查看链接',
|
17
|
+
linkUrlEnterPlaceholder: '请输入链接地址',
|
18
|
+
linkTextEnterPlaceholder: '请输入链接文本',
|
19
|
+
width30: '30%宽度',
|
20
|
+
width50: '50%宽度',
|
21
|
+
width100: '100%宽度',
|
22
|
+
deleteImage: '删除图片',
|
23
|
+
autoplay: '自动播放',
|
24
|
+
disabledAutoplay: '关闭自动播放',
|
25
|
+
loop: '循环播放',
|
26
|
+
disabledLoop: '关闭循环播放',
|
27
|
+
muted: '静音',
|
28
|
+
unmuted: '播放声音',
|
29
|
+
controls: '播放控制',
|
30
|
+
deleteVideo: '删除视频',
|
31
|
+
heading: '标题',
|
32
|
+
bold: '粗体',
|
33
|
+
h1: '一级标题',
|
34
|
+
h2: '二级标题',
|
35
|
+
h3: '三级标题',
|
36
|
+
h4: '四级标题',
|
37
|
+
h5: '五级标题',
|
38
|
+
h6: '六级标题',
|
39
|
+
text: '正文',
|
40
|
+
italic: '斜体',
|
41
|
+
orderList: '有序列表',
|
42
|
+
unorderList: '无序列表',
|
43
|
+
strikethrough: '删除线',
|
44
|
+
underline: '下划线',
|
45
|
+
code: '行内代码',
|
46
|
+
superscript: '上标',
|
47
|
+
subscript: '下标',
|
48
|
+
fontSize: '字号',
|
49
|
+
fontFamily: '字体',
|
50
|
+
defaultFontFamily: '默认字体',
|
51
|
+
foreColor: '前景色',
|
52
|
+
defaultColor: '默认颜色',
|
53
|
+
backColor: '背景色',
|
54
|
+
formatClear: '清除格式',
|
55
|
+
defaultSize: '默认字号',
|
56
|
+
totalWordCount: '总字数:',
|
57
|
+
align: '对齐方式',
|
58
|
+
undo: '撤销',
|
59
|
+
redo: '重做',
|
60
|
+
quote: '引用',
|
61
|
+
lineHeight: '行高',
|
62
|
+
indent: '缩进',
|
63
|
+
insertLink: '插入链接',
|
64
|
+
insertImage: '插入图片',
|
65
|
+
remoteImage: '网络图片',
|
66
|
+
uploadImage: '上传图片',
|
67
|
+
imageUrlPlaceholder: '请输入图片地址',
|
68
|
+
insert: '插入',
|
69
|
+
insertVideo: '插入视频',
|
70
|
+
remoteVideo: '网络视频',
|
71
|
+
uploadVideo: '上传视频',
|
72
|
+
videoUrlPlaceholder: '请输入视频地址',
|
73
|
+
insertTable: '插入表格',
|
74
|
+
inserCodeBlock: '插入代码块',
|
75
|
+
sourceView: '代码视图',
|
76
|
+
task: '待办',
|
77
|
+
indentIncrease: '增加缩进',
|
78
|
+
indentDecrease: '减少缩进',
|
79
|
+
alignLeft: '左对齐',
|
80
|
+
alignCenter: '居中对齐',
|
81
|
+
alignRight: '右对齐',
|
82
|
+
alignJustify: '两端对齐',
|
83
|
+
defaultLineHeight: '默认行高',
|
84
|
+
auto: '自适应',
|
85
|
+
fullScreen: '全屏'
|
86
|
+
}
|