aloha-vue 1.0.95 → 1.0.96
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/package.json +1 -0
- package/docs/src/components/TheMenu/TheMenu.js +8 -0
- package/docs/src/router/index.js +5 -0
- package/docs/src/views/PageForm/PageForm.js +8 -0
- package/docs/src/views/PageTinyMce/PageTinyMce.js +14 -0
- package/docs/src/views/PageTinyMce/PageTinyMce.pug +11 -0
- package/docs/src/views/PageTinyMce/PageTinyMce.vue +2 -0
- package/docs/webpack.config.js +12 -0
- package/package.json +2 -1
- package/src/styles/components/ui/ATinymce.scss +5 -0
- package/src/styles/components/ui/ui.scss +1 -0
- package/src/ui/AErrors/AErrorsElement.js +12 -4
- package/src/ui/ATinymce/ATinymce.js +205 -0
- package/src/ui/ATinymce/compositionAPI/ATinymceAPI.js +106 -0
- package/src/ui/ATinymce/langs/de.js +413 -0
- package/src/ui/AUiComponents.js +2 -0
- package/src/utils/utilsDOM.js +10 -0
package/docs/package.json
CHANGED
package/docs/src/router/index.js
CHANGED
|
@@ -119,6 +119,11 @@ const ROUTES = [
|
|
|
119
119
|
name: "PageDatepicker",
|
|
120
120
|
component: () => import(/* webpackChunkName: "PageDatepicker" */ "../views/PageDatepicker/PageDatepicker.vue"),
|
|
121
121
|
},
|
|
122
|
+
{
|
|
123
|
+
path: "/tinymce",
|
|
124
|
+
name: "PageTinyMce",
|
|
125
|
+
component: () => import(/* webpackChunkName: "PageTinyMce" */ "../views/PageTinyMce/PageTinyMce.vue"),
|
|
126
|
+
},
|
|
122
127
|
{
|
|
123
128
|
// If the routing configuration '*' reports an error, replace it with '/: catchAll(. *)'
|
|
124
129
|
// caught Error: Catch all routes ("*") must now be defined using a param with a custom regexp
|
|
@@ -54,6 +54,13 @@ export default {
|
|
|
54
54
|
computed: {
|
|
55
55
|
data() {
|
|
56
56
|
return [
|
|
57
|
+
{
|
|
58
|
+
type: "tinymce",
|
|
59
|
+
label: "Aloha tiny",
|
|
60
|
+
id: "aloha_tiny",
|
|
61
|
+
classColumn: "a_column_8",
|
|
62
|
+
required: true,
|
|
63
|
+
},
|
|
57
64
|
{
|
|
58
65
|
type: "text",
|
|
59
66
|
label: "Aloha 1",
|
|
@@ -259,6 +266,7 @@ export default {
|
|
|
259
266
|
validate() {
|
|
260
267
|
const TEXT_INVALID = "Example invalid text";
|
|
261
268
|
this.errors = {
|
|
269
|
+
aloha_tiny: [TEXT_INVALID],
|
|
262
270
|
aloha1: [TEXT_INVALID, TEXT_INVALID],
|
|
263
271
|
aloha2: [TEXT_INVALID],
|
|
264
272
|
aloha3: [TEXT_INVALID],
|
package/docs/webpack.config.js
CHANGED
|
@@ -78,6 +78,18 @@ function getRules(mode) {
|
|
|
78
78
|
},
|
|
79
79
|
},
|
|
80
80
|
],
|
|
81
|
+
exclude: [
|
|
82
|
+
/tinymce\/skins\/content\/default\/content\.css$/,
|
|
83
|
+
/tinymce\/skins\/ui\/oxide\/content\.css$/,
|
|
84
|
+
],
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
test: /tinymce\/skins\/ui\/oxide\/content\.css$/i,
|
|
88
|
+
use: ["css-loader"],
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
test: /tinymce\/skins\/content\/default\/content\.css$/i,
|
|
92
|
+
use: ["css-loader"],
|
|
81
93
|
},
|
|
82
94
|
{
|
|
83
95
|
test: /\.(png|jpg)$/,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aloha-vue",
|
|
3
3
|
"description": "Project aloha",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.96",
|
|
5
5
|
"author": "Ilia Brykin",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build-icons": "node scriptsNode/iconsSvgToJs.js bootstrap3 && node scriptsNode/iconsSvgToJs.js bootstrap-1-9-1"
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"fecha": "^4.2.3",
|
|
14
14
|
"lodash-es": "^4.17.21",
|
|
15
15
|
"tiny-emitter": "2.1.0",
|
|
16
|
+
"tinymce": "6.2.0",
|
|
16
17
|
"vue": "3.2.37"
|
|
17
18
|
},
|
|
18
19
|
"devDependencies": {
|
|
@@ -6,6 +6,12 @@ import {
|
|
|
6
6
|
} from "vue";
|
|
7
7
|
|
|
8
8
|
import AKeysCode from "../../const/AKeysCode";
|
|
9
|
+
import {
|
|
10
|
+
setFocusToTinymce
|
|
11
|
+
} from "../ATinymce/compositionAPI/ATinymceAPI";
|
|
12
|
+
import {
|
|
13
|
+
scrollToElement,
|
|
14
|
+
} from "../../utils/utilsDOM";
|
|
9
15
|
import {
|
|
10
16
|
get,
|
|
11
17
|
isArray,
|
|
@@ -106,10 +112,12 @@ export default {
|
|
|
106
112
|
if (size(idStr) > 0) {
|
|
107
113
|
const ELEMENT = document.getElementById(idStr);
|
|
108
114
|
if (ELEMENT) {
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
115
|
+
if (ELEMENT.tagName === "TEXTAREA" &&
|
|
116
|
+
ELEMENT.classList.contains("a_textarea_tinymce")) {
|
|
117
|
+
setFocusToTinymce({ id: idStr });
|
|
118
|
+
scrollToElement({ element: ELEMENT.parentNode });
|
|
119
|
+
return;
|
|
120
|
+
}
|
|
113
121
|
ELEMENT.focus();
|
|
114
122
|
}
|
|
115
123
|
}
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
import {
|
|
2
|
+
h, onMounted,
|
|
3
|
+
ref,
|
|
4
|
+
toRef,
|
|
5
|
+
} from "vue";
|
|
6
|
+
|
|
7
|
+
import AErrorsText from "../AErrorsText/AErrorsText";
|
|
8
|
+
import ALabel from "../ALabel/ALabel";
|
|
9
|
+
|
|
10
|
+
import UiMixinProps from "../mixins/UiMixinProps";
|
|
11
|
+
|
|
12
|
+
import ATinymceAPI from "./compositionAPI/ATinymceAPI";
|
|
13
|
+
import UiAPI from "../compositionApi/UiAPI";
|
|
14
|
+
import UiStyleHideAPI from "../compositionApi/UiStyleHideAPI";
|
|
15
|
+
|
|
16
|
+
export default {
|
|
17
|
+
name: "ATinymce",
|
|
18
|
+
mixins: [
|
|
19
|
+
UiMixinProps,
|
|
20
|
+
],
|
|
21
|
+
props: {
|
|
22
|
+
branding: {
|
|
23
|
+
type: Boolean,
|
|
24
|
+
required: false,
|
|
25
|
+
default: false,
|
|
26
|
+
},
|
|
27
|
+
contentLangs: {
|
|
28
|
+
type: Array,
|
|
29
|
+
required: false,
|
|
30
|
+
default: () => [
|
|
31
|
+
{ title: "English", code: "en" },
|
|
32
|
+
{ title: "Spanish", code: "es" },
|
|
33
|
+
{ title: "French", code: "fr" },
|
|
34
|
+
{ title: "Deutsch", code: "de" },
|
|
35
|
+
{ title: "Portuguese", code: "pt" },
|
|
36
|
+
{ title: "Chinese", code: "zh" },
|
|
37
|
+
],
|
|
38
|
+
},
|
|
39
|
+
languageDefault: {
|
|
40
|
+
type: String,
|
|
41
|
+
required: false,
|
|
42
|
+
default: "de",
|
|
43
|
+
},
|
|
44
|
+
maxlength: {
|
|
45
|
+
type: [String, Number],
|
|
46
|
+
required: false,
|
|
47
|
+
},
|
|
48
|
+
promotion: {
|
|
49
|
+
type: Boolean,
|
|
50
|
+
required: false,
|
|
51
|
+
default: false,
|
|
52
|
+
},
|
|
53
|
+
rows: {
|
|
54
|
+
type: [String, Number],
|
|
55
|
+
required: false,
|
|
56
|
+
},
|
|
57
|
+
toolbar: {
|
|
58
|
+
type: [String, Object, Array],
|
|
59
|
+
required: false,
|
|
60
|
+
default: () => ([
|
|
61
|
+
{ name: "Formatierung", items: ["bold", "italic", "underline"] },
|
|
62
|
+
{ name: "Ausrichtung", items: ["alignleft", "aligncenter", "alignright", "alignjustify"] },
|
|
63
|
+
{ name: "Liste", items: ["bullist", "numlist"] },
|
|
64
|
+
{ name: "Einrücken", items: ["indent", "outdent"] },
|
|
65
|
+
{ name: "Historie", items: ["undo", "redo"] },
|
|
66
|
+
{ name: "Sprache", items: ["language"] },
|
|
67
|
+
{ name: "Link", items: ["link", "unlink"] },
|
|
68
|
+
{ name: "Hilfe", items: ["help"] },
|
|
69
|
+
]),
|
|
70
|
+
},
|
|
71
|
+
menu: {
|
|
72
|
+
type: Object,
|
|
73
|
+
required: false,
|
|
74
|
+
default: undefined,
|
|
75
|
+
},
|
|
76
|
+
menubar: {
|
|
77
|
+
type: [String, Boolean],
|
|
78
|
+
required: false,
|
|
79
|
+
default: false,
|
|
80
|
+
},
|
|
81
|
+
plugins: {
|
|
82
|
+
type: String,
|
|
83
|
+
required: false,
|
|
84
|
+
default: "advlist code emoticons link lists table help",
|
|
85
|
+
},
|
|
86
|
+
type: {
|
|
87
|
+
type: String,
|
|
88
|
+
required: false,
|
|
89
|
+
default: "tinymce",
|
|
90
|
+
},
|
|
91
|
+
},
|
|
92
|
+
setup(props, context) {
|
|
93
|
+
const {
|
|
94
|
+
componentStyleHide,
|
|
95
|
+
} = UiStyleHideAPI(props);
|
|
96
|
+
|
|
97
|
+
const {
|
|
98
|
+
ariaDescribedbyLocal,
|
|
99
|
+
changeModel,
|
|
100
|
+
errorsId,
|
|
101
|
+
helpTextId,
|
|
102
|
+
htmlIdLocal,
|
|
103
|
+
isErrors,
|
|
104
|
+
isModel,
|
|
105
|
+
onBlur,
|
|
106
|
+
onFocus,
|
|
107
|
+
} = UiAPI(props, context);
|
|
108
|
+
|
|
109
|
+
const {
|
|
110
|
+
clickLabel,
|
|
111
|
+
render,
|
|
112
|
+
} = ATinymceAPI(props, context, {
|
|
113
|
+
changeModel,
|
|
114
|
+
htmlIdLocal,
|
|
115
|
+
});
|
|
116
|
+
|
|
117
|
+
const textareaRef = ref(undefined);
|
|
118
|
+
|
|
119
|
+
const disabled = toRef(props, "disabled");
|
|
120
|
+
const onInput = $event => {
|
|
121
|
+
if (disabled.value) {
|
|
122
|
+
return;
|
|
123
|
+
}
|
|
124
|
+
const value = $event.target.value;
|
|
125
|
+
changeModel({
|
|
126
|
+
model: value,
|
|
127
|
+
});
|
|
128
|
+
};
|
|
129
|
+
|
|
130
|
+
onMounted(() => {
|
|
131
|
+
render();
|
|
132
|
+
});
|
|
133
|
+
|
|
134
|
+
return {
|
|
135
|
+
componentStyleHide,
|
|
136
|
+
|
|
137
|
+
ariaDescribedbyLocal,
|
|
138
|
+
changeModel,
|
|
139
|
+
errorsId,
|
|
140
|
+
helpTextId,
|
|
141
|
+
htmlIdLocal,
|
|
142
|
+
isErrors,
|
|
143
|
+
isModel,
|
|
144
|
+
onBlur,
|
|
145
|
+
onFocus,
|
|
146
|
+
|
|
147
|
+
clickLabel,
|
|
148
|
+
onInput,
|
|
149
|
+
textareaRef,
|
|
150
|
+
render,
|
|
151
|
+
};
|
|
152
|
+
},
|
|
153
|
+
render() {
|
|
154
|
+
return this.isRender && h("div", {
|
|
155
|
+
style: this.componentStyleHide,
|
|
156
|
+
}, [
|
|
157
|
+
h("div", {
|
|
158
|
+
class: ["a_form_element__parent", {
|
|
159
|
+
a_form_element__parent_not_empty: this.isModel,
|
|
160
|
+
}],
|
|
161
|
+
}, [
|
|
162
|
+
this.label && h(ALabel, {
|
|
163
|
+
id: this.htmlIdLocal,
|
|
164
|
+
label: this.label,
|
|
165
|
+
labelClass: this.labelClass,
|
|
166
|
+
required: this.required,
|
|
167
|
+
clickLabel: this.clickLabel,
|
|
168
|
+
}),
|
|
169
|
+
h("div", {
|
|
170
|
+
class: ["a_form_element", {
|
|
171
|
+
a_form_control_invalid: this.isErrors,
|
|
172
|
+
}],
|
|
173
|
+
}, [
|
|
174
|
+
h("textarea", {
|
|
175
|
+
ref: "textareaRef",
|
|
176
|
+
id: this.htmlIdLocal,
|
|
177
|
+
value: this.modelValue,
|
|
178
|
+
class: [
|
|
179
|
+
"a_form_control a_textarea a_textarea_tinymce",
|
|
180
|
+
this.inputClass,
|
|
181
|
+
],
|
|
182
|
+
disabled: this.disabled,
|
|
183
|
+
ariaRequired: this.required,
|
|
184
|
+
ariaInvalid: this.isErrors,
|
|
185
|
+
"aria-describedby": this.ariaDescribedbyLocal,
|
|
186
|
+
maxlength: this.maxlength,
|
|
187
|
+
...this.inputAttributes,
|
|
188
|
+
onInput: this.onInput,
|
|
189
|
+
onFocus: this.onFocus,
|
|
190
|
+
onBlur: this.onBlur,
|
|
191
|
+
}),
|
|
192
|
+
]),
|
|
193
|
+
this.helpText && h("div", {
|
|
194
|
+
id: this.helpTextId,
|
|
195
|
+
class: "a_form_element__help_text",
|
|
196
|
+
innerHTML: this.helpText,
|
|
197
|
+
}),
|
|
198
|
+
this.isErrors && h(AErrorsText, {
|
|
199
|
+
id: this.errorsId,
|
|
200
|
+
errors: this.errors,
|
|
201
|
+
}),
|
|
202
|
+
]),
|
|
203
|
+
]);
|
|
204
|
+
},
|
|
205
|
+
};
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import {
|
|
2
|
+
computed,
|
|
3
|
+
onBeforeUnmount,
|
|
4
|
+
toRef,
|
|
5
|
+
watch,
|
|
6
|
+
} from "vue";
|
|
7
|
+
|
|
8
|
+
/* Import TinyMCE */
|
|
9
|
+
import tinymce from "tinymce";
|
|
10
|
+
|
|
11
|
+
/* Default icons are required. After that, import custom icons if applicable */
|
|
12
|
+
import "tinymce/icons/default";
|
|
13
|
+
|
|
14
|
+
/* Required TinyMCE components */
|
|
15
|
+
import "tinymce/themes/silver";
|
|
16
|
+
import "tinymce/models/dom";
|
|
17
|
+
|
|
18
|
+
/* Import a skin (can be a custom skin instead of the default) */
|
|
19
|
+
import "tinymce/skins/ui/oxide/skin.css";
|
|
20
|
+
|
|
21
|
+
/* Import plugins */
|
|
22
|
+
import "tinymce/plugins/advlist";
|
|
23
|
+
import "tinymce/plugins/code";
|
|
24
|
+
import "tinymce/plugins/emoticons";
|
|
25
|
+
import "tinymce/plugins/emoticons/js/emojis";
|
|
26
|
+
import "tinymce/plugins/help";
|
|
27
|
+
import "tinymce/plugins/link";
|
|
28
|
+
import "tinymce/plugins/lists";
|
|
29
|
+
import "tinymce/plugins/table";
|
|
30
|
+
|
|
31
|
+
/* content UI CSS is required */
|
|
32
|
+
import contentUiSkinCss from "tinymce/skins/ui/oxide/content.css";
|
|
33
|
+
|
|
34
|
+
/* The default content CSS can be changed or replaced with appropriate CSS for the editor content. */
|
|
35
|
+
import contentCss from "tinymce/skins/content/default/content.css";
|
|
36
|
+
|
|
37
|
+
/* lang */
|
|
38
|
+
import "../langs/de";
|
|
39
|
+
// import "tinymce/langs/de_DE";
|
|
40
|
+
|
|
41
|
+
export default function ATinymceAPI(props, context, {
|
|
42
|
+
changeModel = () => {},
|
|
43
|
+
htmlIdLocal = computed(() => ""),
|
|
44
|
+
}) {
|
|
45
|
+
const branding = toRef(props, "branding");
|
|
46
|
+
const contentLangs = toRef(props, "contentLangs");
|
|
47
|
+
const disabled = toRef(props, "disabled");
|
|
48
|
+
const languageDefault = toRef(props, "languageDefault");
|
|
49
|
+
const menu = toRef(props, "menu");
|
|
50
|
+
const menubar = toRef(props, "menubar");
|
|
51
|
+
const plugins = toRef(props, "plugins");
|
|
52
|
+
const promotion = toRef(props, "promotion");
|
|
53
|
+
const toolbar = toRef(props, "toolbar");
|
|
54
|
+
|
|
55
|
+
let vueEditor = null;
|
|
56
|
+
|
|
57
|
+
const render = () => {
|
|
58
|
+
tinymce.init({
|
|
59
|
+
selector: `#${ htmlIdLocal.value }`,
|
|
60
|
+
plugins: plugins.value,
|
|
61
|
+
toolbar: toolbar.value,
|
|
62
|
+
skin: false,
|
|
63
|
+
content_css: false,
|
|
64
|
+
content_style: `${ contentUiSkinCss.toString() }\n${ contentCss.toString() }`,
|
|
65
|
+
branding: branding.value,
|
|
66
|
+
promotion: promotion.value,
|
|
67
|
+
language: languageDefault.value,
|
|
68
|
+
content_langs: contentLangs.value,
|
|
69
|
+
menu: menu.value,
|
|
70
|
+
menubar: menubar.value,
|
|
71
|
+
readonly: !!disabled.value,
|
|
72
|
+
setup: editor => {
|
|
73
|
+
vueEditor = editor;
|
|
74
|
+
editor.on("change input undo redo", () => {
|
|
75
|
+
changeModel({ model: editor.getContent({ format: "html" }) });
|
|
76
|
+
});
|
|
77
|
+
},
|
|
78
|
+
});
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
const clickLabel = () => {
|
|
82
|
+
setFocusToTinymce({ id: htmlIdLocal.value });
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
watch(disabled, newValue => {
|
|
86
|
+
if (newValue === true) {
|
|
87
|
+
tinymce.get(htmlIdLocal.value).mode.set("readonly");
|
|
88
|
+
} else {
|
|
89
|
+
tinymce.get(htmlIdLocal.value).mode.set("design");
|
|
90
|
+
}
|
|
91
|
+
});
|
|
92
|
+
|
|
93
|
+
onBeforeUnmount(() => {
|
|
94
|
+
tinymce.remove(vueEditor);
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
return {
|
|
98
|
+
clickLabel,
|
|
99
|
+
render,
|
|
100
|
+
};
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
export function setFocusToTinymce({ id }) {
|
|
105
|
+
tinymce.execCommand("mceFocus", false, id);
|
|
106
|
+
}
|
|
@@ -0,0 +1,413 @@
|
|
|
1
|
+
/* !
|
|
2
|
+
* TinyMCE Language Pack
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2022 Ephox Corporation DBA Tiny Technologies, Inc.
|
|
5
|
+
* Licensed under the Tiny commercial license. See https://www.tiny.cloud/legal/
|
|
6
|
+
*/
|
|
7
|
+
// eslint-disable-next-line no-undef
|
|
8
|
+
tinymce.addI18n("de", {
|
|
9
|
+
Redo: "Wiederholen",
|
|
10
|
+
Undo: "R\xfcckg\xe4ngig machen",
|
|
11
|
+
Cut: "Ausschneiden",
|
|
12
|
+
Copy: "Kopieren",
|
|
13
|
+
Paste: "Einf\xfcgen",
|
|
14
|
+
"Select all": "Alles ausw\xe4hlen",
|
|
15
|
+
"New document": "Neues Dokument",
|
|
16
|
+
Ok: "Ok",
|
|
17
|
+
Cancel: "Abbrechen",
|
|
18
|
+
"Visual aids": "Visuelle Hilfen",
|
|
19
|
+
Bold: "Fett",
|
|
20
|
+
Italic: "Kursiv",
|
|
21
|
+
Underline: "Unterstrichen",
|
|
22
|
+
Strikethrough: "Durchgestrichen",
|
|
23
|
+
Superscript: "Hochgestellt",
|
|
24
|
+
Subscript: "Tiefgestellt",
|
|
25
|
+
"Clear formatting": "Formatierung entfernen",
|
|
26
|
+
Remove: "Entfernen",
|
|
27
|
+
"Align left": "Linksb\xfcndig ausrichten",
|
|
28
|
+
"Align center": "Zentrieren",
|
|
29
|
+
"Align right": "Rechtsb\xfcndig ausrichten",
|
|
30
|
+
"No alignment": "Keine Ausrichtung",
|
|
31
|
+
Justify: "Blocksatz",
|
|
32
|
+
"Bullet list": "Aufz\xe4hlung",
|
|
33
|
+
"Numbered list": "Nummerierte Liste",
|
|
34
|
+
"Decrease indent": "Einzug verkleinern",
|
|
35
|
+
"Increase indent": "Einzug vergr\xf6\xdfern",
|
|
36
|
+
Close: "Schlie\xdfen",
|
|
37
|
+
Formats: "Formate",
|
|
38
|
+
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.": "Ihr Browser unterst\xfctzt leider keinen direkten Zugriff auf die Zwischenablage. Bitte benutzen Sie die Tastenkombinationen Strg+X/C/V.",
|
|
39
|
+
Headings: "\xdcberschriften",
|
|
40
|
+
"Heading 1": "\xdcberschrift 1",
|
|
41
|
+
"Heading 2": "\xdcberschrift 2",
|
|
42
|
+
"Heading 3": "\xdcberschrift 3",
|
|
43
|
+
"Heading 4": "\xdcberschrift 4",
|
|
44
|
+
"Heading 5": "\xdcberschrift 5",
|
|
45
|
+
"Heading 6": "\xdcberschrift 6",
|
|
46
|
+
Preformatted: "Vorformatiert",
|
|
47
|
+
Div: "Div",
|
|
48
|
+
Pre: "Pre",
|
|
49
|
+
Code: "Code",
|
|
50
|
+
Paragraph: "Absatz",
|
|
51
|
+
Blockquote: "Blockzitat",
|
|
52
|
+
Inline: "Zeichenformate",
|
|
53
|
+
Blocks: "Bl\xf6cke",
|
|
54
|
+
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Einf\xfcgen ist nun im unformatierten Textmodus. Inhalte werden ab jetzt als unformatierter Text eingef\xfcgt, bis Sie diese Einstellung wieder deaktivieren.",
|
|
55
|
+
Fonts: "Schriftarten",
|
|
56
|
+
"Font sizes": "Schriftgr\xf6\xdfen",
|
|
57
|
+
Class: "Klasse",
|
|
58
|
+
"Browse for an image": "Bild...",
|
|
59
|
+
OR: "ODER",
|
|
60
|
+
"Drop an image here": "Bild hier ablegen",
|
|
61
|
+
Upload: "Hochladen",
|
|
62
|
+
"Uploading image": "Bild wird hochgeladen",
|
|
63
|
+
Block: "Blocksatz",
|
|
64
|
+
Align: "Ausrichtung",
|
|
65
|
+
Default: "Standard",
|
|
66
|
+
Circle: "Kreis",
|
|
67
|
+
Disc: "Scheibe",
|
|
68
|
+
Square: "Rechteck",
|
|
69
|
+
"Lower Alpha": "Lateinisches Alphabet in Kleinbuchstaben",
|
|
70
|
+
"Lower Greek": "Griechische Kleinbuchstaben",
|
|
71
|
+
"Lower Roman": "Kleiner r\xf6mischer Buchstabe",
|
|
72
|
+
"Upper Alpha": "Lateinisches Alphabet in Gro\xdfbuchstaben",
|
|
73
|
+
"Upper Roman": "Gro\xdfer r\xf6mischer Buchstabe",
|
|
74
|
+
"Anchor...": "Textmarke",
|
|
75
|
+
Anchor: "Anker",
|
|
76
|
+
Name: "Name",
|
|
77
|
+
ID: "ID",
|
|
78
|
+
"ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Die ID muss mit einem Buchstaben beginnen gefolgt von Buchstaben, Zahlen, Bindestrichen, Punkten, Doppelpunkten oder Unterstrichen.",
|
|
79
|
+
"You have unsaved changes are you sure you want to navigate away?": "Die \xc4nderungen wurden noch nicht gespeichert. Sind Sie sicher, dass Sie diese Seite verlassen wollen?",
|
|
80
|
+
"Restore last draft": "Letzten Entwurf wiederherstellen",
|
|
81
|
+
"Special character...": "Sonderzeichen...",
|
|
82
|
+
"Special Character": "Sonderzeichen",
|
|
83
|
+
"Source code": "Quellcode",
|
|
84
|
+
"Insert/Edit code sample": "Codebeispiel einf\xfcgen/bearbeiten",
|
|
85
|
+
Language: "Sprache",
|
|
86
|
+
"Code sample...": "Codebeispiel...",
|
|
87
|
+
"Left to right": "Von links nach rechts",
|
|
88
|
+
"Right to left": "Von rechts nach links",
|
|
89
|
+
Title: "Titel",
|
|
90
|
+
Fullscreen: "Vollbild",
|
|
91
|
+
Action: "Aktion",
|
|
92
|
+
Shortcut: "Tastenkombination",
|
|
93
|
+
Help: "Hilfe",
|
|
94
|
+
Address: "Adresse",
|
|
95
|
+
"Focus to menubar": "Fokus auf Men\xfcleiste",
|
|
96
|
+
"Focus to toolbar": "Fokus auf Symbolleiste",
|
|
97
|
+
"Focus to element path": "Fokus auf Elementpfad",
|
|
98
|
+
"Focus to contextual toolbar": "Fokus auf kontextbezogene Symbolleiste",
|
|
99
|
+
"Insert link (if link plugin activated)": "Link einf\xfcgen (wenn Link-Plugin aktiviert ist)",
|
|
100
|
+
"Save (if save plugin activated)": "Speichern (wenn Save-Plugin aktiviert ist)",
|
|
101
|
+
"Find (if searchreplace plugin activated)": "Suchen (wenn Suchen/Ersetzen-Plugin aktiviert ist)",
|
|
102
|
+
"Plugins installed ({0}):": "Installierte Plugins ({0}):",
|
|
103
|
+
"Premium plugins:": "Premium-Plugins:",
|
|
104
|
+
"Learn more...": "Erfahren Sie mehr dazu...",
|
|
105
|
+
"You are using {0}": "Sie verwenden {0}",
|
|
106
|
+
Plugins: "Plugins",
|
|
107
|
+
"Handy Shortcuts": "Praktische Tastenkombinationen",
|
|
108
|
+
"Horizontal line": "Horizontale Linie",
|
|
109
|
+
"Insert/edit image": "Bild einf\xfcgen/bearbeiten",
|
|
110
|
+
"Alternative description": "Alternative Beschreibung",
|
|
111
|
+
Accessibility: "Barrierefreiheit",
|
|
112
|
+
"Image is decorative": "Bild ist dekorativ",
|
|
113
|
+
Source: "Quelle",
|
|
114
|
+
Dimensions: "Abmessungen",
|
|
115
|
+
"Constrain proportions": "Seitenverh\xe4ltnis beibehalten",
|
|
116
|
+
General: "Allgemein",
|
|
117
|
+
Advanced: "Erweitert",
|
|
118
|
+
Style: "Formatvorlage",
|
|
119
|
+
"Vertical space": "Vertikaler Raum",
|
|
120
|
+
"Horizontal space": "Horizontaler Raum",
|
|
121
|
+
Border: "Rahmen",
|
|
122
|
+
"Insert image": "Bild einf\xfcgen",
|
|
123
|
+
"Image...": "Bild...",
|
|
124
|
+
"Image list": "Bildliste",
|
|
125
|
+
Resize: "Skalieren",
|
|
126
|
+
"Insert date/time": "Datum/Uhrzeit einf\xfcgen",
|
|
127
|
+
"Date/time": "Datum/Uhrzeit",
|
|
128
|
+
"Insert/edit link": "Link einf\xfcgen/bearbeiten",
|
|
129
|
+
"Text to display": "Anzuzeigender Text",
|
|
130
|
+
Url: "URL",
|
|
131
|
+
"Open link in...": "Link \xf6ffnen in...",
|
|
132
|
+
"Current window": "Aktuelles Fenster",
|
|
133
|
+
None: "Keine",
|
|
134
|
+
"New window": "Neues Fenster",
|
|
135
|
+
"Open link": "Link \xf6ffnen",
|
|
136
|
+
"Remove link": "Link entfernen",
|
|
137
|
+
Anchors: "Anker",
|
|
138
|
+
"Link...": "Link...",
|
|
139
|
+
"Paste or type a link": "Link einf\xfcgen oder eingeben",
|
|
140
|
+
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Diese URL scheint eine E-Mail-Adresse zu sein. M\xf6chten Sie das dazu ben\xf6tigte mailto: voranstellen?",
|
|
141
|
+
"The URL you entered seems to be an external link. Do you want to add the required http:// prefix?": "Diese URL scheint ein externer Link zu sein. M\xf6chten Sie das dazu ben\xf6tigte http:// voranstellen?",
|
|
142
|
+
"The URL you entered seems to be an external link. Do you want to add the required https:// prefix?": "Die eingegebene URL scheint ein externer Link zu sein. Soll das fehlende https:// davor erg\xe4nzt werden?",
|
|
143
|
+
"Link list": "Linkliste",
|
|
144
|
+
"Insert video": "Video einf\xfcgen",
|
|
145
|
+
"Insert/edit video": "Video einf\xfcgen/bearbeiten",
|
|
146
|
+
"Insert/edit media": "Medien einf\xfcgen/bearbeiten",
|
|
147
|
+
"Alternative source": "Alternative Quelle",
|
|
148
|
+
"Alternative source URL": "URL der alternativen Quelle",
|
|
149
|
+
"Media poster (Image URL)": "Medienposter (Bild-URL)",
|
|
150
|
+
"Paste your embed code below:": "F\xfcgen Sie Ihren Einbettungscode unten ein:",
|
|
151
|
+
Embed: "Einbettung",
|
|
152
|
+
"Media...": "Medien...",
|
|
153
|
+
"Nonbreaking space": "Gesch\xfctztes Leerzeichen",
|
|
154
|
+
"Page break": "Seitenumbruch",
|
|
155
|
+
"Paste as text": "Als Text einf\xfcgen",
|
|
156
|
+
Preview: "Vorschau",
|
|
157
|
+
Print: "Drucken",
|
|
158
|
+
"Print...": "Drucken...",
|
|
159
|
+
Save: "Speichern",
|
|
160
|
+
Find: "Suchen",
|
|
161
|
+
"Replace with": "Ersetzen durch",
|
|
162
|
+
Replace: "Ersetzen",
|
|
163
|
+
"Replace all": "Alle ersetzen",
|
|
164
|
+
Previous: "Vorherige",
|
|
165
|
+
Next: "N\xe4chste",
|
|
166
|
+
"Find and Replace": "Suchen und Ersetzen",
|
|
167
|
+
"Find and replace...": "Suchen und ersetzen...",
|
|
168
|
+
"Could not find the specified string.": "Die angegebene Zeichenfolge wurde nicht gefunden.",
|
|
169
|
+
"Match case": "Gro\xdf-/Kleinschreibung beachten",
|
|
170
|
+
"Find whole words only": "Nur ganze W\xf6rter suchen",
|
|
171
|
+
"Find in selection": "In Auswahl suchen",
|
|
172
|
+
"Insert table": "Tabelle einf\xfcgen",
|
|
173
|
+
"Table properties": "Tabelleneigenschaften",
|
|
174
|
+
"Delete table": "Tabelle l\xf6schen",
|
|
175
|
+
Cell: "Zelle",
|
|
176
|
+
Row: "Zeile",
|
|
177
|
+
Column: "Spalte",
|
|
178
|
+
"Cell properties": "Zelleigenschaften",
|
|
179
|
+
"Merge cells": "Zellen verbinden",
|
|
180
|
+
"Split cell": "Zelle aufteilen",
|
|
181
|
+
"Insert row before": "Neue Zeile davor einf\xfcgen",
|
|
182
|
+
"Insert row after": "Neue Zeile danach einf\xfcgen",
|
|
183
|
+
"Delete row": "Zeile l\xf6schen",
|
|
184
|
+
"Row properties": "Zeileneigenschaften",
|
|
185
|
+
"Cut row": "Zeile ausschneiden",
|
|
186
|
+
"Cut column": "Spalte ausschneiden",
|
|
187
|
+
"Copy row": "Zeile kopieren",
|
|
188
|
+
"Copy column": "Spalte kopieren",
|
|
189
|
+
"Paste row before": "Zeile davor einf\xfcgen",
|
|
190
|
+
"Paste column before": "Spalte davor einf\xfcgen",
|
|
191
|
+
"Paste row after": "Zeile danach einf\xfcgen",
|
|
192
|
+
"Paste column after": "Spalte danach einf\xfcgen",
|
|
193
|
+
"Insert column before": "Neue Spalte davor einf\xfcgen",
|
|
194
|
+
"Insert column after": "Neue Spalte danach einf\xfcgen",
|
|
195
|
+
"Delete column": "Spalte l\xf6schen",
|
|
196
|
+
Cols: "Spalten",
|
|
197
|
+
Rows: "Zeilen",
|
|
198
|
+
Width: "Breite",
|
|
199
|
+
Height: "H\xf6he",
|
|
200
|
+
"Cell spacing": "Zellenabstand",
|
|
201
|
+
"Cell padding": "Zelleninnenabstand",
|
|
202
|
+
"Row clipboard actions": "Zeilen-Zwischenablage-Aktionen",
|
|
203
|
+
"Column clipboard actions": "Spalten-Zwischenablage-Aktionen",
|
|
204
|
+
"Table styles": "Tabellenstil",
|
|
205
|
+
"Cell styles": "Zellstil",
|
|
206
|
+
"Column header": "Spaltenkopf",
|
|
207
|
+
"Row header": "Zeilenkopf",
|
|
208
|
+
"Table caption": "Tabellenbeschriftung",
|
|
209
|
+
Caption: "Beschriftung",
|
|
210
|
+
"Show caption": "Beschriftung anzeigen",
|
|
211
|
+
Left: "Links",
|
|
212
|
+
Center: "Zentriert",
|
|
213
|
+
Right: "Rechts",
|
|
214
|
+
"Cell type": "Zelltyp",
|
|
215
|
+
Scope: "Bereich",
|
|
216
|
+
Alignment: "Ausrichtung",
|
|
217
|
+
"Horizontal align": "Horizontal ausrichten",
|
|
218
|
+
"Vertical align": "Vertikal ausrichten",
|
|
219
|
+
Top: "Oben",
|
|
220
|
+
Middle: "Mitte",
|
|
221
|
+
Bottom: "Unten",
|
|
222
|
+
"Header cell": "Kopfzelle",
|
|
223
|
+
"Row group": "Zeilengruppe",
|
|
224
|
+
"Column group": "Spaltengruppe",
|
|
225
|
+
"Row type": "Zeilentyp",
|
|
226
|
+
Header: "Kopfzeile",
|
|
227
|
+
Body: "Inhalt",
|
|
228
|
+
Footer: "Fu\xdfzeile",
|
|
229
|
+
"Border color": "Rahmenfarbe",
|
|
230
|
+
Solid: "Durchgezogen",
|
|
231
|
+
Dotted: "Gepunktet",
|
|
232
|
+
Dashed: "Gestrichelt",
|
|
233
|
+
Double: "Doppelt",
|
|
234
|
+
Groove: "Gekantet",
|
|
235
|
+
Ridge: "Eingeritzt",
|
|
236
|
+
Inset: "Eingelassen",
|
|
237
|
+
Outset: "Hervorstehend",
|
|
238
|
+
Hidden: "Unsichtbar",
|
|
239
|
+
"Insert template...": "Vorlage einf\xfcgen...",
|
|
240
|
+
Templates: "Vorlagen",
|
|
241
|
+
Template: "Vorlage",
|
|
242
|
+
"Insert Template": "Vorlage einf\xfcgen",
|
|
243
|
+
"Text color": "Textfarbe",
|
|
244
|
+
"Background color": "Hintergrundfarbe",
|
|
245
|
+
"Custom...": "Benutzerdefiniert...",
|
|
246
|
+
"Custom color": "Benutzerdefinierte Farbe",
|
|
247
|
+
"No color": "Keine Farbe",
|
|
248
|
+
"Remove color": "Farbauswahl aufheben",
|
|
249
|
+
"Show blocks": "Bl\xf6cke anzeigen",
|
|
250
|
+
"Show invisible characters": "Unsichtbare Zeichen anzeigen",
|
|
251
|
+
"Word count": "Anzahl der W\xf6rter",
|
|
252
|
+
Count: "Anzahl",
|
|
253
|
+
Document: "Dokument",
|
|
254
|
+
Selection: "Auswahl",
|
|
255
|
+
Words: "W\xf6rter",
|
|
256
|
+
"Words: {0}": "Wortzahl: {0}",
|
|
257
|
+
"{0} words": "{0} W\xf6rter",
|
|
258
|
+
File: "Datei",
|
|
259
|
+
Edit: "Bearbeiten",
|
|
260
|
+
Insert: "Einf\xfcgen",
|
|
261
|
+
View: "Ansicht",
|
|
262
|
+
Format: "Format",
|
|
263
|
+
Table: "Tabelle",
|
|
264
|
+
Tools: "Werkzeuge",
|
|
265
|
+
"Powered by {0}": "Betrieben von {0}",
|
|
266
|
+
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich-Text-Bereich. Dr\xfccken Sie Alt+F9 f\xfcr das Men\xfc. Dr\xfccken Sie Alt+F10 f\xfcr die Symbolleiste. Dr\xfccken Sie Alt+0 f\xfcr Hilfe.",
|
|
267
|
+
"Image title": "Bildtitel",
|
|
268
|
+
"Border width": "Rahmenbreite",
|
|
269
|
+
"Border style": "Rahmenstil",
|
|
270
|
+
Error: "Fehler",
|
|
271
|
+
Warn: "Warnung",
|
|
272
|
+
Valid: "G\xfcltig",
|
|
273
|
+
"To open the popup, press Shift+Enter": "Dr\xfccken Sie Umschalt+Eingabe, um das Popup-Fenster zu \xf6ffnen.",
|
|
274
|
+
"Rich Text Area": "Rich-Text-Area",
|
|
275
|
+
"Rich Text Area. Press ALT-0 for help.": "Rich-Text-Bereich. Dr\xfccken Sie Alt+0 f\xfcr Hilfe.",
|
|
276
|
+
"System Font": "Betriebssystemschriftart",
|
|
277
|
+
"Failed to upload image: {0}": "Bild konnte nicht hochgeladen werden: {0}",
|
|
278
|
+
"Failed to load plugin: {0} from url {1}": "Plugin konnte nicht geladen werden: {0} von URL {1}",
|
|
279
|
+
"Failed to load plugin url: {0}": "Plugin-URL konnte nicht geladen werden: {0}",
|
|
280
|
+
"Failed to initialize plugin: {0}": "Plugin konnte nicht initialisiert werden: {0}",
|
|
281
|
+
example: "Beispiel",
|
|
282
|
+
Search: "Suchen",
|
|
283
|
+
All: "Alle",
|
|
284
|
+
Currency: "W\xe4hrung",
|
|
285
|
+
Text: "Text",
|
|
286
|
+
Quotations: "Anf\xfchrungszeichen",
|
|
287
|
+
Mathematical: "Mathematisch",
|
|
288
|
+
"Extended Latin": "Erweitertes Latein",
|
|
289
|
+
Symbols: "Symbole",
|
|
290
|
+
Arrows: "Pfeile",
|
|
291
|
+
"User Defined": "Benutzerdefiniert",
|
|
292
|
+
"dollar sign": "Dollarzeichen",
|
|
293
|
+
"currency sign": "W\xe4hrungssymbol",
|
|
294
|
+
"euro-currency sign": "Eurozeichen",
|
|
295
|
+
"colon sign": "Doppelpunkt",
|
|
296
|
+
"cruzeiro sign": "Cruzeirozeichen",
|
|
297
|
+
"french franc sign": "Franczeichen",
|
|
298
|
+
"lira sign": "Lirezeichen",
|
|
299
|
+
"mill sign": "Millzeichen",
|
|
300
|
+
"naira sign": "Nairazeichen",
|
|
301
|
+
"peseta sign": "Pesetazeichen",
|
|
302
|
+
"rupee sign": "Rupiezeichen",
|
|
303
|
+
"won sign": "Wonzeichen",
|
|
304
|
+
"new sheqel sign": "Schekelzeichen",
|
|
305
|
+
"dong sign": "Dongzeichen",
|
|
306
|
+
"kip sign": "Kipzeichen",
|
|
307
|
+
"tugrik sign": "Tugrikzeichen",
|
|
308
|
+
"drachma sign": "Drachmezeichen",
|
|
309
|
+
"german penny symbol": "Pfennigzeichen",
|
|
310
|
+
"peso sign": "Pesozeichen",
|
|
311
|
+
"guarani sign": "Guaranizeichen",
|
|
312
|
+
"austral sign": "Australzeichen",
|
|
313
|
+
"hryvnia sign": "Hrywnjazeichen",
|
|
314
|
+
"cedi sign": "Cedizeichen",
|
|
315
|
+
"livre tournois sign": "Livrezeichen",
|
|
316
|
+
"spesmilo sign": "Spesmilozeichen",
|
|
317
|
+
"tenge sign": "Tengezeichen",
|
|
318
|
+
"indian rupee sign": "Indisches Rupiezeichen",
|
|
319
|
+
"turkish lira sign": "T\xfcrkisches Lirazeichen",
|
|
320
|
+
"nordic mark sign": "Zeichen nordische Mark",
|
|
321
|
+
"manat sign": "Manatzeichen",
|
|
322
|
+
"ruble sign": "Rubelzeichen",
|
|
323
|
+
"yen character": "Yenzeichen",
|
|
324
|
+
"yuan character": "Yuanzeichen",
|
|
325
|
+
"yuan character, in hong kong and taiwan": "Yuanzeichen in Hongkong und Taiwan",
|
|
326
|
+
"yen/yuan character variant one": "Yen-/Yuanzeichen Variante 1",
|
|
327
|
+
Emojis: "Emojis",
|
|
328
|
+
"Emojis...": "Emojis...",
|
|
329
|
+
"Loading emojis...": "Lade Emojis...",
|
|
330
|
+
"Could not load emojis": "Emojis konnten nicht geladen werden",
|
|
331
|
+
People: "Menschen",
|
|
332
|
+
"Animals and Nature": "Tiere und Natur",
|
|
333
|
+
"Food and Drink": "Essen und Trinken",
|
|
334
|
+
Activity: "Aktivit\xe4t",
|
|
335
|
+
"Travel and Places": "Reisen und Orte",
|
|
336
|
+
Objects: "Objekte",
|
|
337
|
+
Flags: "Flaggen",
|
|
338
|
+
Characters: "Zeichen",
|
|
339
|
+
"Characters (no spaces)": "Zeichen (ohne Leerzeichen)",
|
|
340
|
+
"{0} characters": "{0}\xa0Zeichen",
|
|
341
|
+
"Error: Form submit field collision.": "Fehler: Kollision der Formularbest\xe4tigungsfelder.",
|
|
342
|
+
"Error: No form element found.": "Fehler: Kein Formularelement gefunden.",
|
|
343
|
+
"Color swatch": "Farbpalette",
|
|
344
|
+
"Color Picker": "Farbwahl",
|
|
345
|
+
"Invalid hex color code: {0}": "Ung\xfcltiger Hexadezimal-Farbwert: {0}",
|
|
346
|
+
"Invalid input": "Ung\xfcltige Eingabe",
|
|
347
|
+
R: "R",
|
|
348
|
+
"Red component": "Rotanteil",
|
|
349
|
+
G: "G",
|
|
350
|
+
"Green component": "Gr\xfcnanteil",
|
|
351
|
+
B: "B",
|
|
352
|
+
"Blue component": "Blauanteil",
|
|
353
|
+
"#": "#",
|
|
354
|
+
"Hex color code": "Hexadezimal-Farbwert",
|
|
355
|
+
"Range 0 to 255": "Spanne 0 bis 255",
|
|
356
|
+
Turquoise: "T\xfcrkis",
|
|
357
|
+
Green: "Gr\xfcn",
|
|
358
|
+
Blue: "Blau",
|
|
359
|
+
Purple: "Violett",
|
|
360
|
+
"Navy Blue": "Marineblau",
|
|
361
|
+
"Dark Turquoise": "Dunkelt\xfcrkis",
|
|
362
|
+
"Dark Green": "Dunkelgr\xfcn",
|
|
363
|
+
"Medium Blue": "Mittleres Blau",
|
|
364
|
+
"Medium Purple": "Mittelviolett",
|
|
365
|
+
"Midnight Blue": "Mitternachtsblau",
|
|
366
|
+
Yellow: "Gelb",
|
|
367
|
+
Orange: "Orange",
|
|
368
|
+
Red: "Rot",
|
|
369
|
+
"Light Gray": "Hellgrau",
|
|
370
|
+
Gray: "Grau",
|
|
371
|
+
"Dark Yellow": "Dunkelgelb",
|
|
372
|
+
"Dark Orange": "Dunkelorange",
|
|
373
|
+
"Dark Red": "Dunkelrot",
|
|
374
|
+
"Medium Gray": "Mittelgrau",
|
|
375
|
+
"Dark Gray": "Dunkelgrau",
|
|
376
|
+
"Light Green": "Hellgr\xfcn",
|
|
377
|
+
"Light Yellow": "Hellgelb",
|
|
378
|
+
"Light Red": "Hellrot",
|
|
379
|
+
"Light Purple": "Helllila",
|
|
380
|
+
"Light Blue": "Hellblau",
|
|
381
|
+
"Dark Purple": "Dunkellila",
|
|
382
|
+
"Dark Blue": "Dunkelblau",
|
|
383
|
+
Black: "Schwarz",
|
|
384
|
+
White: "Wei\xdf",
|
|
385
|
+
"Switch to or from fullscreen mode": "Vollbildmodus umschalten",
|
|
386
|
+
"Open help dialog": "Hilfe-Dialog \xf6ffnen",
|
|
387
|
+
history: "Historie",
|
|
388
|
+
styles: "Stile",
|
|
389
|
+
formatting: "Formatierung",
|
|
390
|
+
alignment: "Ausrichtung",
|
|
391
|
+
indentation: "Einr\xfcckungen",
|
|
392
|
+
Font: "Schriftart",
|
|
393
|
+
Size: "Schriftgr\xf6\xdfe",
|
|
394
|
+
"More...": "Mehr...",
|
|
395
|
+
"Select...": "Auswahl...",
|
|
396
|
+
Preferences: "Einstellungen",
|
|
397
|
+
Yes: "Ja",
|
|
398
|
+
No: "Nein",
|
|
399
|
+
"Keyboard Navigation": "Tastaturnavigation",
|
|
400
|
+
Version: "Version",
|
|
401
|
+
"Code view": "Code Ansicht",
|
|
402
|
+
"Open popup menu for split buttons": "\xd6ffne Popup Menge um Buttons zu trennen",
|
|
403
|
+
"List Properties": "Liste Eigenschaften",
|
|
404
|
+
"List properties...": "Liste Eigenschaften",
|
|
405
|
+
"Start list at number": "Beginne Liste mit Nummer",
|
|
406
|
+
"Line height": "Liniendicke",
|
|
407
|
+
"Dropped file type is not supported": "Hereingezogener Dateityp wird nicht unterst\xfctzt",
|
|
408
|
+
"Loading...": "Wird geladen...",
|
|
409
|
+
"ImageProxy HTTP error: Rejected request": "Image Proxy HTTP Fehler: Abgewiesene Anfrage",
|
|
410
|
+
"ImageProxy HTTP error: Could not find Image Proxy": "Image Proxy HTTP Fehler: Kann Image Proxy nicht finden",
|
|
411
|
+
"ImageProxy HTTP error: Incorrect Image Proxy URL": "Image Proxy HTTP Fehler: Falsche Image Proxy URL",
|
|
412
|
+
"ImageProxy HTTP error: Unknown ImageProxy error": "Image Proxy HTTP Fehler: Unbekannter Image Proxy Fehler"
|
|
413
|
+
});
|
package/src/ui/AUiComponents.js
CHANGED
|
@@ -8,6 +8,7 @@ import ASelect from "./ASelect/ASelect";
|
|
|
8
8
|
import ASwitch from "./ASwitch/ASwitch";
|
|
9
9
|
import ATemplate from "./ATemplate/ATemplate";
|
|
10
10
|
import ATextarea from "./ATextarea/ATextarea";
|
|
11
|
+
import ATinymce from "./ATinymce/ATinymce";
|
|
11
12
|
|
|
12
13
|
export default {
|
|
13
14
|
checkbox: ACheckbox,
|
|
@@ -27,4 +28,5 @@ export default {
|
|
|
27
28
|
template: ATemplate,
|
|
28
29
|
text: AInput,
|
|
29
30
|
textarea: ATextarea,
|
|
31
|
+
tinymce: ATinymce,
|
|
30
32
|
};
|