zh.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /**
  2. * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or http://ckeditor.com/license
  4. */
  5. /**
  6. * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
  7. * Chinese Traditional language.
  8. */
  9. /**#@+
  10. @type String
  11. @example
  12. */
  13. /**
  14. * Contains the dictionary of language entries.
  15. * @namespace
  16. */
  17. CKEDITOR.lang[ 'zh' ] = {
  18. // ARIA description.
  19. editor: 'RTF 編輯器',
  20. editorPanel: 'RTF 編輯器面板',
  21. // Common messages and labels.
  22. common: {
  23. // Screenreader titles. Please note that screenreaders are not always capable
  24. // of reading non-English words. So be careful while translating it.
  25. editorHelp: '按下 ALT 0 取得說明。',
  26. browseServer: '瀏覽伺服器',
  27. url: 'URL',
  28. protocol: '通訊協定',
  29. upload: '上傳',
  30. uploadSubmit: '傳送至伺服器',
  31. image: '圖像',
  32. flash: 'Flash',
  33. form: '表格',
  34. checkbox: '核取方塊',
  35. radio: '選項按鈕',
  36. textField: '文字欄位',
  37. textarea: '文字區域',
  38. hiddenField: '隱藏欄位',
  39. button: '按鈕',
  40. select: '選取欄位',
  41. imageButton: '影像按鈕',
  42. notSet: '<未設定>',
  43. id: 'ID',
  44. name: '名稱',
  45. langDir: '語言方向',
  46. langDirLtr: '由左至右 (LTR)',
  47. langDirRtl: '由右至左 (RTL)',
  48. langCode: '語言代碼',
  49. longDescr: '完整描述 URL',
  50. cssClass: '樣式表類別',
  51. advisoryTitle: '標題',
  52. cssStyle: '樣式',
  53. ok: '確定',
  54. cancel: '取消',
  55. close: '關閉',
  56. preview: '預覽',
  57. resize: '調整大小',
  58. generalTab: '一般',
  59. advancedTab: '進階',
  60. validateNumberFailed: '此值不是數值。',
  61. confirmNewPage: '現存的修改尚未儲存,要開新檔案?',
  62. confirmCancel: '部份選項尚未儲存,要關閉對話框?',
  63. options: '選項',
  64. target: '目標',
  65. targetNew: '開新視窗 (_blank)',
  66. targetTop: '最上層視窗 (_top)',
  67. targetSelf: '相同視窗 (_self)',
  68. targetParent: '父視窗 (_parent)',
  69. langDirLTR: '由左至右 (LTR)',
  70. langDirRTL: '由右至左 (RTL)',
  71. styles: '樣式',
  72. cssClasses: '樣式表類別',
  73. width: '寬度',
  74. height: '高度',
  75. align: '對齊方式',
  76. alignLeft: '靠左對齊',
  77. alignRight: '靠右對齊',
  78. alignCenter: '置中對齊',
  79. alignJustify: '左右對齊',
  80. alignTop: '頂端',
  81. alignMiddle: '中間對齊',
  82. alignBottom: '底端',
  83. alignNone: '無',
  84. invalidValue : '無效值。',
  85. invalidHeight: '高度必須為數字。',
  86. invalidWidth: '寬度必須為數字。',
  87. invalidCssLength: '「%1」的值應為正數,並可包含有效的 CSS 單位 (px, %, in, cm, mm, em, ex, pt, 或 pc)。',
  88. invalidHtmlLength: '「%1」的值應為正數,並可包含有效的 HTML 單位 (px 或 %)。',
  89. invalidInlineStyle: '行內樣式的值應包含一個以上的變數值組,其格式如「名稱:值」,並以分號區隔之。',
  90. cssLengthTooltip: '請輸入數值,單位是像素或有效的 CSS 單位 (px, %, in, cm, mm, em, ex, pt, 或 pc)。',
  91. // Put the voice-only part of the label in the span.
  92. unavailable: '%1<span class="cke_accessibility">,無法使用</span>'
  93. }
  94. };