]> git.immae.eu Git - perso/Immae/Projets/packagist/piedsjaloux-ckeditor-component.git/blame - sources/lang/ja.js
Add oembed
[perso/Immae/Projets/packagist/piedsjaloux-ckeditor-component.git] / sources / lang / ja.js
CommitLineData
3332bebe 1/**
317f8f8f 2 * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3332bebe
IB
3 * For licensing, see LICENSE.md or http://ckeditor.com/license
4 */
5
6/**
7 * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
8 * Japanese language.
9 */
10
11/**#@+
12 @type String
13 @example
14*/
15
16/**
17 * Contains the dictionary of language entries.
18 * @namespace
19 */
20CKEDITOR.lang[ 'ja' ] = {
21 // ARIA description.
22 editor: 'リッチテキストエディタ',
23 editorPanel: 'リッチテキストエディタパネル',
24
25 // Common messages and labels.
26 common: {
27 // Screenreader titles. Please note that screenreaders are not always capable
28 // of reading non-English words. So be careful while translating it.
29 editorHelp: 'ヘルプは ALT 0 を押してください',
30
31 browseServer: 'サーバブラウザ',
32 url: 'URL',
33 protocol: 'プロトコル',
34 upload: 'アップロード',
35 uploadSubmit: 'サーバーに送信',
36 image: 'イメージ',
37 flash: 'Flash',
38 form: 'フォーム',
39 checkbox: 'チェックボックス',
40 radio: 'ラジオボタン',
41 textField: '1行テキスト',
42 textarea: 'テキストエリア',
43 hiddenField: '不可視フィールド',
44 button: 'ボタン',
45 select: '選択フィールド',
46 imageButton: '画像ボタン',
47 notSet: '<なし>',
48 id: 'Id',
49 name: 'Name属性',
50 langDir: '文字表記の方向',
51 langDirLtr: '左から右 (LTR)',
52 langDirRtl: '右から左 (RTL)',
53 langCode: '言語コード',
54 longDescr: 'longdesc属性(長文説明)',
55 cssClass: 'スタイルシートクラス',
56 advisoryTitle: 'Title属性',
57 cssStyle: 'スタイルシート',
58 ok: 'OK',
59 cancel: 'キャンセル',
60 close: '閉じる',
61 preview: 'プレビュー',
62 resize: 'ドラッグしてリサイズ',
63 generalTab: '全般',
64 advancedTab: '高度な設定',
317f8f8f 65 validateNumberFailed: '値が数値ではありません',
3332bebe
IB
66 confirmNewPage: '変更内容を保存せず、 新しいページを開いてもよろしいでしょうか?',
67 confirmCancel: 'オプション設定を変更しました。ダイアログを閉じてもよろしいでしょうか?',
68 options: 'オプション',
69 target: 'ターゲット',
70 targetNew: '新しいウインドウ (_blank)',
71 targetTop: '最上部ウィンドウ (_top)',
72 targetSelf: '同じウィンドウ (_self)',
73 targetParent: '親ウィンドウ (_parent)',
74 langDirLTR: '左から右 (LTR)',
75 langDirRTL: '右から左 (RTL)',
76 styles: 'スタイル',
77 cssClasses: 'スタイルシートクラス',
78 width: '幅',
79 height: '高さ',
80 align: '行揃え',
81 alignLeft: '左',
82 alignRight: '右',
83 alignCenter: '中央',
84 alignJustify: '両端揃え',
85 alignTop: '上',
86 alignMiddle: '中央',
87 alignBottom: '下',
88 alignNone: 'なし',
317f8f8f 89 invalidValue: '不正な値です。',
3332bebe
IB
90 invalidHeight: '高さは数値で入力してください。',
91 invalidWidth: '幅は数値で入力してください。',
92 invalidCssLength: '入力された "%1" 項目の値は、CSSの大きさ(px, %, in, cm, mm, em, ex, pt, または pc)が正しいものである/ないに関わらず、正の値である必要があります。',
93 invalidHtmlLength: '入力された "%1" 項目の値は、HTMLの大きさ(px または %)が正しいものである/ないに関わらず、正の値である必要があります。',
94 invalidInlineStyle: '入力されたインラインスタイルの値は、"名前 : 値" のフォーマットのセットで、複数の場合はセミコロンで区切られている形式である必要があります。',
95 cssLengthTooltip: 'ピクセル数もしくはCSSにセットできる数値を入力してください。(px,%,in,cm,mm,em,ex,pt,or pc)',
96
97 // Put the voice-only part of the label in the span.
317f8f8f
IB
98 unavailable: '%1<span class="cke_accessibility">, 利用不可能</span>',
99
100 // Keyboard keys translations used for creating shortcuts descriptions in tooltips, context menus and ARIA labels.
101 keyboard: {
102 8: 'Backspace',
103 13: 'Enter',
104 16: 'Shift',
105 17: 'Ctrl',
106 18: 'Alt',
107 32: 'Space',
108 35: 'End',
109 36: 'Home',
110 46: 'Delete',
111 224: 'Command'
112 },
113
114 // Prepended to ARIA labels with shortcuts.
115 keyboardShortcut: 'キーボードショートカット'
3332bebe
IB
116 }
117};