]> git.immae.eu Git - perso/Immae/Projets/packagist/connexionswing-ckeditor-component.git/blame - sources/lang/en.js
Upgrade to 4.5.7 and add some plugin
[perso/Immae/Projets/packagist/connexionswing-ckeditor-component.git] / sources / lang / en.js
CommitLineData
3b35bd27
IB
1/**
2 * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
7adcb81e
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 English
8 * language. This is the base file for all translations.
9 */
10
11/**#@+
12 @type String
13 @example
14*/
15
16/**
17 * Contains the dictionary of language entries.
18 * @namespace
19 */
20CKEDITOR.lang[ 'en' ] = {
21 // ARIA description.
22 editor: 'Rich Text Editor',
23 editorPanel: 'Rich Text Editor panel',
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: 'Press ALT 0 for help',
30
31 browseServer: 'Browse Server',
32 url: 'URL',
33 protocol: 'Protocol',
34 upload: 'Upload',
35 uploadSubmit: 'Send it to the Server',
36 image: 'Image',
37 flash: 'Flash',
38 form: 'Form',
39 checkbox: 'Checkbox',
40 radio: 'Radio Button',
41 textField: 'Text Field',
42 textarea: 'Textarea',
43 hiddenField: 'Hidden Field',
44 button: 'Button',
45 select: 'Selection Field',
46 imageButton: 'Image Button',
47 notSet: '<not set>',
48 id: 'Id',
49 name: 'Name',
50 langDir: 'Language Direction',
51 langDirLtr: 'Left to Right (LTR)',
52 langDirRtl: 'Right to Left (RTL)',
53 langCode: 'Language Code',
54 longDescr: 'Long Description URL',
55 cssClass: 'Stylesheet Classes',
56 advisoryTitle: 'Advisory Title',
57 cssStyle: 'Style',
58 ok: 'OK',
59 cancel: 'Cancel',
60 close: 'Close',
61 preview: 'Preview',
62 resize: 'Resize',
63 generalTab: 'General',
64 advancedTab: 'Advanced',
65 validateNumberFailed: 'This value is not a number.',
66 confirmNewPage: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',
67 confirmCancel: 'You have changed some options. Are you sure you want to close the dialog window?',
68 options: 'Options',
69 target: 'Target',
70 targetNew: 'New Window (_blank)',
71 targetTop: 'Topmost Window (_top)',
72 targetSelf: 'Same Window (_self)',
73 targetParent: 'Parent Window (_parent)',
74 langDirLTR: 'Left to Right (LTR)',
75 langDirRTL: 'Right to Left (RTL)',
76 styles: 'Style',
77 cssClasses: 'Stylesheet Classes',
78 width: 'Width',
79 height: 'Height',
80 align: 'Alignment',
81 alignLeft: 'Left',
82 alignRight: 'Right',
83 alignCenter: 'Center',
84 alignJustify: 'Justify',
85 alignTop: 'Top',
86 alignMiddle: 'Middle',
87 alignBottom: 'Bottom',
88 alignNone: 'None',
89 invalidValue : 'Invalid value.',
90 invalidHeight: 'Height must be a number.',
91 invalidWidth: 'Width must be a number.',
92 invalidCssLength: 'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',
93 invalidHtmlLength: 'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',
94 invalidInlineStyle: 'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',
95 cssLengthTooltip: 'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).',
96
97 // Put the voice-only part of the label in the span.
98 unavailable: '%1<span class="cke_accessibility">, unavailable</span>'
99 }
100};