aboutsummaryrefslogtreecommitdiff
path: root/sources/lang/de-ch.js
diff options
context:
space:
mode:
Diffstat (limited to 'sources/lang/de-ch.js')
-rw-r--r--sources/lang/de-ch.js25
1 files changed, 21 insertions, 4 deletions
diff --git a/sources/lang/de-ch.js b/sources/lang/de-ch.js
index 5322a81..8f9c196 100644
--- a/sources/lang/de-ch.js
+++ b/sources/lang/de-ch.js
@@ -1,10 +1,10 @@
1/** 1/**
2 * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 2 * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 * For licensing, see LICENSE.md or http://ckeditor.com/license 3 * For licensing, see LICENSE.md or http://ckeditor.com/license
4 */ 4 */
5 5
6/** 6/**
7* @fileOverview 7* @fileOverview
8*/ 8*/
9 9
10/**#@+ 10/**#@+
@@ -85,7 +85,7 @@ CKEDITOR.lang[ 'de-ch' ] = {
85 alignMiddle: 'Mitte', 85 alignMiddle: 'Mitte',
86 alignBottom: 'Unten', 86 alignBottom: 'Unten',
87 alignNone: 'Keine', 87 alignNone: 'Keine',
88 invalidValue : 'Ungültiger Wert.', 88 invalidValue: 'Ungültiger Wert.',
89 invalidHeight: 'Höhe muss eine Zahl sein.', 89 invalidHeight: 'Höhe muss eine Zahl sein.',
90 invalidWidth: 'Breite muss eine Zahl sein.', 90 invalidWidth: 'Breite muss eine Zahl sein.',
91 invalidCssLength: 'Wert spezifiziert für "%1" Feld muss ein positiver numerischer Wert sein mit oder ohne korrekte CSS Messeinheit (px, %, in, cm, mm, em, ex, pt oder pc).', 91 invalidCssLength: 'Wert spezifiziert für "%1" Feld muss ein positiver numerischer Wert sein mit oder ohne korrekte CSS Messeinheit (px, %, in, cm, mm, em, ex, pt oder pc).',
@@ -94,6 +94,23 @@ CKEDITOR.lang[ 'de-ch' ] = {
94 cssLengthTooltip: 'Gebe eine Zahl ein für ein Wert in pixels oder eine Zahl mit einer korrekten CSS Messeinheit (px, %, in, cm, mm, em, ex, pt oder pc).', 94 cssLengthTooltip: 'Gebe eine Zahl ein für ein Wert in pixels oder eine Zahl mit einer korrekten CSS Messeinheit (px, %, in, cm, mm, em, ex, pt oder pc).',
95 95
96 // Put the voice-only part of the label in the span. 96 // Put the voice-only part of the label in the span.
97 unavailable: '%1<span class="cke_accessibility">, nicht verfügbar</span>' 97 unavailable: '%1<span class="cke_accessibility">, nicht verfügbar</span>',
98
99 // Keyboard keys translations used for creating shortcuts descriptions in tooltips, context menus and ARIA labels.
100 keyboard: {
101 8: 'Rücktaste',
102 13: 'Eingabe',
103 16: 'Umschalt',
104 17: 'Strg',
105 18: 'Alt',
106 32: 'Space', // MISSING
107 35: 'Ende',
108 36: 'Pos1',
109 46: 'Entfernen',
110 224: 'Command' // MISSING
111 },
112
113 // Prepended to ARIA labels with shortcuts.
114 keyboardShortcut: 'Keyboard shortcut' // MISSING
98 } 115 }
99}; 116};