You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.3 KiB
53 lines
1.3 KiB
3 years ago
|
/**
|
||
|
* Chinese translation for bootstrap-wysihtml5
|
||
|
*/
|
||
|
(function($){
|
||
|
$.fn.wysihtml5.locale["zh-CN"] = {
|
||
|
font_styles: {
|
||
|
normal: "正文",
|
||
|
h1: "标题 1",
|
||
|
h2: "标题 2",
|
||
|
h3: "标题 3",
|
||
|
h4: "标题 4",
|
||
|
h5: "标题 5",
|
||
|
h6: "标题 6"
|
||
|
},
|
||
|
emphasis: {
|
||
|
bold: "粗体",
|
||
|
italic: "斜体",
|
||
|
underline: "下划线"
|
||
|
},
|
||
|
lists: {
|
||
|
unordered: "项目符号",
|
||
|
ordered: "编号",
|
||
|
outdent: "减少缩进",
|
||
|
indent: "增加缩进"
|
||
|
},
|
||
|
link: {
|
||
|
insert: "插入链接",
|
||
|
cancel: "取消",
|
||
|
target: "在新窗口中打开链接"
|
||
|
},
|
||
|
image: {
|
||
|
insert: "插入图片",
|
||
|
cancel: "取消"
|
||
|
},
|
||
|
html: {
|
||
|
edit: "HTML代码"
|
||
|
},
|
||
|
colours: {
|
||
|
black: "黑色",
|
||
|
silver: "银色",
|
||
|
gray: "灰色",
|
||
|
maroon: "赤红色",
|
||
|
red: "红色",
|
||
|
purple: "紫色",
|
||
|
green: "绿色",
|
||
|
olive: "橄榄色",
|
||
|
navy: "深蓝色",
|
||
|
blue: "蓝色",
|
||
|
orange: "橙色"
|
||
|
}
|
||
|
};
|
||
|
}(jQuery));
|