summernote-vi-VN.js 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. (function($) {
  2. $.extend($.summernote.lang, {
  3. 'vi-VN': {
  4. font: {
  5. bold: 'In Đậm',
  6. italic: 'In Nghiêng',
  7. underline: 'Gạch dưới',
  8. clear: 'Bỏ định dạng',
  9. height: 'Chiều cao dòng',
  10. name: 'Phông chữ',
  11. strikethrough: 'Gạch ngang',
  12. subscript: 'Subscript',
  13. superscript: 'Superscript',
  14. size: 'Cỡ chữ',
  15. },
  16. image: {
  17. image: 'Hình ảnh',
  18. insert: 'Chèn',
  19. resizeFull: '100%',
  20. resizeHalf: '50%',
  21. resizeQuarter: '25%',
  22. floatLeft: 'Trôi về trái',
  23. floatRight: 'Trôi về phải',
  24. floatNone: 'Không trôi',
  25. shapeRounded: 'Shape: Rounded',
  26. shapeCircle: 'Shape: Circle',
  27. shapeThumbnail: 'Shape: Thumbnail',
  28. shapeNone: 'Shape: None',
  29. dragImageHere: 'Thả Ảnh ở vùng này',
  30. dropImage: 'Drop image or Text',
  31. selectFromFiles: 'Chọn từ File',
  32. maximumFileSize: 'Maximum file size',
  33. maximumFileSizeError: 'Maximum file size exceeded.',
  34. url: 'URL',
  35. remove: 'Xóa',
  36. original: 'Original',
  37. },
  38. video: {
  39. video: 'Video',
  40. videoLink: 'Link đến Video',
  41. insert: 'Chèn Video',
  42. url: 'URL',
  43. providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion và Youku)',
  44. },
  45. link: {
  46. link: 'Link',
  47. insert: 'Chèn Link',
  48. unlink: 'Gỡ Link',
  49. edit: 'Sửa',
  50. textToDisplay: 'Văn bản hiển thị',
  51. url: 'URL',
  52. openInNewWindow: 'Mở ở Cửa sổ mới',
  53. },
  54. table: {
  55. table: 'Bảng',
  56. addRowAbove: 'Add row above',
  57. addRowBelow: 'Add row below',
  58. addColLeft: 'Add column left',
  59. addColRight: 'Add column right',
  60. delRow: 'Delete row',
  61. delCol: 'Delete column',
  62. delTable: 'Delete table',
  63. },
  64. hr: {
  65. insert: 'Chèn',
  66. },
  67. style: {
  68. style: 'Kiểu chữ',
  69. p: 'Chữ thường',
  70. blockquote: 'Đoạn trích',
  71. pre: 'Mã Code',
  72. h1: 'H1',
  73. h2: 'H2',
  74. h3: 'H3',
  75. h4: 'H4',
  76. h5: 'H5',
  77. h6: 'H6',
  78. },
  79. lists: {
  80. unordered: 'Liệt kê danh sách',
  81. ordered: 'Liệt kê theo thứ tự',
  82. },
  83. options: {
  84. help: 'Trợ giúp',
  85. fullscreen: 'Toàn Màn hình',
  86. codeview: 'Xem Code',
  87. },
  88. paragraph: {
  89. paragraph: 'Canh lề',
  90. outdent: 'Dịch sang trái',
  91. indent: 'Dịch sang phải',
  92. left: 'Canh trái',
  93. center: 'Canh giữa',
  94. right: 'Canh phải',
  95. justify: 'Canh đều',
  96. },
  97. color: {
  98. recent: 'Màu chữ',
  99. more: 'Mở rộng',
  100. background: 'Màu nền',
  101. foreground: 'Màu chữ',
  102. transparent: 'trong suốt',
  103. setTransparent: 'Nền trong suốt',
  104. reset: 'Thiết lập lại',
  105. resetToDefault: 'Trở lại ban đầu',
  106. },
  107. shortcut: {
  108. shortcuts: 'Phím tắt',
  109. close: 'Đóng',
  110. textFormatting: 'Định dạng Văn bản',
  111. action: 'Hành động',
  112. paragraphFormatting: 'Định dạng',
  113. documentStyle: 'Kiểu văn bản',
  114. extraKeys: 'Extra keys',
  115. },
  116. help: {
  117. 'insertParagraph': 'Insert Paragraph',
  118. 'undo': 'Undoes the last command',
  119. 'redo': 'Redoes the last command',
  120. 'tab': 'Tab',
  121. 'untab': 'Untab',
  122. 'bold': 'Set a bold style',
  123. 'italic': 'Set a italic style',
  124. 'underline': 'Set a underline style',
  125. 'strikethrough': 'Set a strikethrough style',
  126. 'removeFormat': 'Clean a style',
  127. 'justifyLeft': 'Set left align',
  128. 'justifyCenter': 'Set center align',
  129. 'justifyRight': 'Set right align',
  130. 'justifyFull': 'Set full align',
  131. 'insertUnorderedList': 'Toggle unordered list',
  132. 'insertOrderedList': 'Toggle ordered list',
  133. 'outdent': 'Outdent on current paragraph',
  134. 'indent': 'Indent on current paragraph',
  135. 'formatPara': 'Change current block\'s format as a paragraph(P tag)',
  136. 'formatH1': 'Change current block\'s format as H1',
  137. 'formatH2': 'Change current block\'s format as H2',
  138. 'formatH3': 'Change current block\'s format as H3',
  139. 'formatH4': 'Change current block\'s format as H4',
  140. 'formatH5': 'Change current block\'s format as H5',
  141. 'formatH6': 'Change current block\'s format as H6',
  142. 'insertHorizontalRule': 'Insert horizontal rule',
  143. 'linkDialog.show': 'Show Link Dialog',
  144. },
  145. history: {
  146. undo: 'Lùi lại',
  147. redo: 'Làm lại',
  148. },
  149. specialChar: {
  150. specialChar: 'SPECIAL CHARACTERS',
  151. select: 'Select Special characters',
  152. },
  153. },
  154. });
  155. })(jQuery);