123456789101112131415161718192021222324252627282930 |
- /**
- * Traditional Chinese translation for bootstrap-markdown
- * TheoKlein <theokleintw@gmail.com>
- */
- (function ($) {
- $.fn.markdown.messages.zh = {
- 'Bold': "粗體",
- 'Italic': "斜體",
- 'Heading': "標題",
- 'URL/Link': "超連結",
- 'Image': "圖片",
- 'List': "列表",
- 'Unordered List': "無序列表",
- 'Ordered List': "有序列表",
- 'Code': "程式碼",
- 'Quote': "引用",
- 'Preview': "預覽",
- 'strong text': "粗體",
- 'emphasized text': "強調",
- 'heading text': "標題",
- 'enter link description here': "輸入超連結說明",
- 'Insert Hyperlink': "超連結網址",
- 'enter image description here': "輸入圖片說明",
- 'Insert Image Hyperlink': "圖片網址",
- 'enter image title here': "輸入圖片標題",
- 'list text here': "在這裡輸入列表文字",
- 'code text here': "在這裡輸入程式碼",
- 'quote here': "在這裡輸入引用"
- };
- }(jQuery));
|