ja.js 3.8 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. * Japanese language.
  8. */
  9. /**#@+
  10. @type String
  11. @example
  12. */
  13. /**
  14. * Contains the dictionary of language entries.
  15. * @namespace
  16. */
  17. CKEDITOR.lang[ 'ja' ] = {
  18. // ARIA description.
  19. editor: 'リッチテキストエディタ',
  20. editorPanel: 'リッチテキストエディタパネル',
  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: '1行テキスト',
  37. textarea: 'テキストエリア',
  38. hiddenField: '不可視フィールド',
  39. button: 'ボタン',
  40. select: '選択フィールド',
  41. imageButton: '画像ボタン',
  42. notSet: '<なし>',
  43. id: 'Id',
  44. name: 'Name属性',
  45. langDir: '文字表記の方向',
  46. langDirLtr: '左から右 (LTR)',
  47. langDirRtl: '右から左 (RTL)',
  48. langCode: '言語コード',
  49. longDescr: 'longdesc属性(長文説明)',
  50. cssClass: 'スタイルシートクラス',
  51. advisoryTitle: 'Title属性',
  52. cssStyle: 'スタイルシート',
  53. ok: '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,or pc)',
  91. // Put the voice-only part of the label in the span.
  92. unavailable: '%1<span class="cke_accessibility">, 利用不可能</span>'
  93. }
  94. };