@sapui5/sap.ui.richtexteditor 1.140.0 → 1.141.1
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/package.json +1 -1
- package/src/sap/ui/richtexteditor/.library +1 -1
- package/src/sap/ui/richtexteditor/RTESplitButton.js +1 -1
- package/src/sap/ui/richtexteditor/RichTextEditor.js +49 -5
- package/src/sap/ui/richtexteditor/RichTextEditorFontFamily.js +78 -0
- package/src/sap/ui/richtexteditor/ToolbarWrapper.js +56 -64
- package/src/sap/ui/richtexteditor/js/styles/RichTextEditor.css +0 -3
- package/src/sap/ui/richtexteditor/library.js +56 -38
- package/src/sap/ui/richtexteditor/messagebundle.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_ar.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_bg.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_ca.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_cnr.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_cs.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_cy.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_da.properties +4 -1
- package/src/sap/ui/richtexteditor/messagebundle_de.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_el.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_en.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_en_GB.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_en_US_saprigi.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_es.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_es_MX.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_et.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_fi.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_fr.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_fr_CA.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_hi.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_hr.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_hu.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_id.properties +4 -1
- package/src/sap/ui/richtexteditor/messagebundle_it.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_iw.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_ja.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_kk.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_ko.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_lt.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_lv.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_mk.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_ms.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_nl.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_no.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_pl.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_pt.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_pt_PT.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_ro.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_ru.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_sh.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_sk.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_sl.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_sr.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_sv.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_th.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_tr.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_uk.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_vi.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_zh_CN.properties +3 -0
- package/src/sap/ui/richtexteditor/messagebundle_zh_TW.properties +3 -0
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<vendor>SAP SE</vendor>
|
|
6
6
|
<copyright>SAPUI5
|
|
7
7
|
* (c) Copyright 2025 SAP SE. All rights reserved.</copyright>
|
|
8
|
-
<version>1.
|
|
8
|
+
<version>1.141.1</version>
|
|
9
9
|
|
|
10
10
|
<documentation>A rich text editor (RTE) control. Requires installation of an additional rich text editor library.</documentation>
|
|
11
11
|
|
|
@@ -372,11 +372,18 @@ sap.ui.define([
|
|
|
372
372
|
/**
|
|
373
373
|
* Custom buttons are meant to extend the <code>RichTextEditor</code>'s custom toolbar.
|
|
374
374
|
* Though type is set to sap.ui.Control, only sap.m.Button is allowed.
|
|
375
|
-
* <b>Note:</b> customButtons are available only when the customToolbar is enabled and all the requirements are fulfilled.
|
|
375
|
+
* <b>Note:</b> customButtons are available only when the <code>customToolbar</code> is enabled and all the requirements are fulfilled.
|
|
376
376
|
*
|
|
377
377
|
* @since 1.48
|
|
378
378
|
*/
|
|
379
|
-
customButtons: {type: "sap.ui.core.Control", multiple: true, singularName: "customButton", defaultValue: null}
|
|
379
|
+
customButtons: {type: "sap.ui.core.Control", multiple: true, singularName: "customButton", defaultValue: null},
|
|
380
|
+
/**
|
|
381
|
+
* Custom font families that can be used in the <code>RichTextEditor</code>.
|
|
382
|
+
* <b>Note:</b> Custom fonts are available only when the <code>customToolbar</code> is enabled.
|
|
383
|
+
*
|
|
384
|
+
* @since 1.141
|
|
385
|
+
*/
|
|
386
|
+
customFonts: {type: "sap.ui.richtexteditor.RichTextEditorFontFamily", multiple: true, singularName: "customFont", defaultValue: null}
|
|
380
387
|
},
|
|
381
388
|
associations: {
|
|
382
389
|
/**
|
|
@@ -412,6 +419,9 @@ sap.ui.define([
|
|
|
412
419
|
*/
|
|
413
420
|
RichTextEditor.EDITORTYPE_TINYMCE5 = library.EditorType.TinyMCE5;
|
|
414
421
|
|
|
422
|
+
/**
|
|
423
|
+
* @deprecated As of version 1.141.0
|
|
424
|
+
*/
|
|
415
425
|
RichTextEditor.EDITORTYPE_TINYMCE6 = library.EditorType.TinyMCE6;
|
|
416
426
|
|
|
417
427
|
RichTextEditor.EDITORTYPE_TINYMCE7 = library.EditorType.TinyMCE7;
|
|
@@ -448,6 +458,9 @@ sap.ui.define([
|
|
|
448
458
|
"powerpaste"
|
|
449
459
|
];
|
|
450
460
|
|
|
461
|
+
/**
|
|
462
|
+
* @deprecated As of version 1.141.0
|
|
463
|
+
*/
|
|
451
464
|
RichTextEditor.DEFAULT_PLUGINS_TINYMCE6 = [
|
|
452
465
|
"emoticons",
|
|
453
466
|
"directionality",
|
|
@@ -1305,11 +1318,14 @@ sap.ui.define([
|
|
|
1305
1318
|
* @deprecated As of version 1.120
|
|
1306
1319
|
*/
|
|
1307
1320
|
if (oEditorMapping[sEditorType] === "TinyMCE5") {
|
|
1308
|
-
Log.error("TinyMCE version 5 is used as editor type. TinyMCE 5 is deprecated and will be removed from the code entirely
|
|
1321
|
+
Log.error("TinyMCE version 5 is used as editor type. TinyMCE 5 is deprecated and will be removed from the code entirely at the beginning of 2026. The latest version will be automatically loaded instead.");
|
|
1309
1322
|
}
|
|
1310
1323
|
|
|
1324
|
+
/**
|
|
1325
|
+
* @deprecated As of version 1.141.0
|
|
1326
|
+
*/
|
|
1311
1327
|
if (oEditorMapping[sEditorType] === "TinyMCE6") {
|
|
1312
|
-
Log.
|
|
1328
|
+
Log.error("TinyMCE version 6 is used as editor type. TinyMCE 6 is deprecated as of version 1.141.0 and will be removed from the code entirely in near future.");
|
|
1313
1329
|
}
|
|
1314
1330
|
|
|
1315
1331
|
this.initTinyMCE();
|
|
@@ -1932,7 +1948,6 @@ sap.ui.define([
|
|
|
1932
1948
|
toolbar_items_size: 'small',
|
|
1933
1949
|
toolbar: aButtonRows,
|
|
1934
1950
|
toolbar_mode: "sliding",
|
|
1935
|
-
content_css: [sap.ui.require.toUrl("sap/ui/richtexteditor/js/styles/RichTextEditor.css")],
|
|
1936
1951
|
statusbar: false, // disables display of the status bar at the bottom of the editor
|
|
1937
1952
|
image_advtab: true, // Adds an "Advanced" tab to the image dialog allowing you to add custom styles, spacing and borders to images
|
|
1938
1953
|
readonly: !this.getEditable(),
|
|
@@ -1943,6 +1958,7 @@ sap.ui.define([
|
|
|
1943
1958
|
sandbox_iframes: true, // default for v.7, remove after upgrade
|
|
1944
1959
|
init_instance_callback: function(oEditor) {
|
|
1945
1960
|
this._oEditor = oEditor;
|
|
1961
|
+
this._insertCustomFonts();
|
|
1946
1962
|
fnOnInit();
|
|
1947
1963
|
}.bind(this)
|
|
1948
1964
|
};
|
|
@@ -1961,6 +1977,34 @@ sap.ui.define([
|
|
|
1961
1977
|
return oConfig;
|
|
1962
1978
|
};
|
|
1963
1979
|
|
|
1980
|
+
RichTextEditor.prototype._insertCustomFonts = function() {
|
|
1981
|
+
const doc = this._oEditor?.getDoc();
|
|
1982
|
+
|
|
1983
|
+
if (!doc) {
|
|
1984
|
+
return;
|
|
1985
|
+
}
|
|
1986
|
+
|
|
1987
|
+
const head = doc.getElementsByTagName("head")[0];
|
|
1988
|
+
const style = doc.getElementById("custom-fonts") || doc.createElement("style");
|
|
1989
|
+
style?.setAttribute("id", "custom-fonts");
|
|
1990
|
+
|
|
1991
|
+
const fontImports = this.getCustomFonts().map((oFont) => {
|
|
1992
|
+
return `@import url('${oFont.getUrl()}');`;
|
|
1993
|
+
}).join("\n");
|
|
1994
|
+
|
|
1995
|
+
const currentFonts = style?.textContent || "";
|
|
1996
|
+
|
|
1997
|
+
if (currentFonts === fontImports) {
|
|
1998
|
+
return;
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
style.textContent = fontImports;
|
|
2002
|
+
|
|
2003
|
+
if (head && style) {
|
|
2004
|
+
head.appendChild(style);
|
|
2005
|
+
}
|
|
2006
|
+
};
|
|
2007
|
+
|
|
1964
2008
|
|
|
1965
2009
|
/**
|
|
1966
2010
|
* Map languages that are incorrectly assigned or fallback if languages do not work
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* SAPUI5
|
|
3
|
+
* (c) Copyright 2025 SAP SE. All rights reserved.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
// Provides control sap.ui.richtexteditor.RichTextEditorFontFamily.
|
|
7
|
+
sap.ui.define([
|
|
8
|
+
"sap/ui/core/Element",
|
|
9
|
+
"sap/base/Log",
|
|
10
|
+
"./library"
|
|
11
|
+
], function(Element, Log, library) {
|
|
12
|
+
"use strict";
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Constructor for a new <code>RichTextEditorFontFamily</code>.
|
|
16
|
+
*
|
|
17
|
+
* @param {string} [sId] id for the new control, generated automatically if no id is given
|
|
18
|
+
* @param {object} [mSettings] initial settings for the new control
|
|
19
|
+
*
|
|
20
|
+
* @class
|
|
21
|
+
* Represents a font family option for <code>RichTextEditor</code>.
|
|
22
|
+
* @extends sap.ui.core.Element
|
|
23
|
+
*
|
|
24
|
+
* @author SAP SE
|
|
25
|
+
* @version 1.141.1
|
|
26
|
+
*
|
|
27
|
+
* @public
|
|
28
|
+
* @alias sap.ui.richtexteditor.RichTextEditorFontFamily
|
|
29
|
+
*/
|
|
30
|
+
var RichTextEditorFontFamily = Element.extend("sap.ui.richtexteditor.RichTextEditorFontFamily", /** @lends sap.ui.richtexteditor.RichTextEditorFontFamily.prototype */ {
|
|
31
|
+
metadata : {
|
|
32
|
+
library : "sap.ui.richtexteditor",
|
|
33
|
+
properties : {
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Used to identify the font in the editor.
|
|
37
|
+
* Names should be unique and descriptive.
|
|
38
|
+
*/
|
|
39
|
+
name : {type : "string", group : "Misc", defaultValue : null},
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* The text displayed in the font family dropdown.
|
|
43
|
+
*/
|
|
44
|
+
text : {type : "string", group : "Misc", defaultValue : null},
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* The value of the font family.
|
|
48
|
+
* CSS font-family value that will be applied to the text.
|
|
49
|
+
*/
|
|
50
|
+
value : {type : "string", group : "Misc", defaultValue : null},
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Used to load the font.
|
|
54
|
+
* The URL should point to a CSS file that defines the font-face.
|
|
55
|
+
*/
|
|
56
|
+
url : {type: "sap.ui.core.URI", group : "Data", defaultValue : null}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
RichTextEditorFontFamily.prototype.validateProperty = function(sPropertyName, oValue) {
|
|
62
|
+
if (sPropertyName === "url") {
|
|
63
|
+
var sUrl = Element.prototype.validateProperty.call(this, sPropertyName, oValue);
|
|
64
|
+
|
|
65
|
+
// Stronger validation to prevent CSS injection
|
|
66
|
+
if (sUrl && /[<>()'"\\]|\/\*|\*\/|javascript:|data:/i.test(sUrl)) {
|
|
67
|
+
Log.Error("RichTextEditorFontFamily: URL contains potentially dangerous characters: " + sUrl, this);
|
|
68
|
+
return "";
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
return sUrl;
|
|
72
|
+
}
|
|
73
|
+
return Element.prototype.validateProperty.call(this, sPropertyName, oValue);
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
return RichTextEditorFontFamily;
|
|
77
|
+
|
|
78
|
+
});
|
|
@@ -39,6 +39,11 @@ sap.ui.define([
|
|
|
39
39
|
ButtonsToCommandsMap = library.ButtonsToCommandsMap,
|
|
40
40
|
ButtonType = mLibrary.ButtonType;
|
|
41
41
|
|
|
42
|
+
const SYSTEM_FONT_CHROME = "-apple-system,system-ui,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif";
|
|
43
|
+
// Safari and FF return BlinkMacSystemFont, Chrome returns system-ui
|
|
44
|
+
const SYSTEM_FONT_LEGACY = "-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif";
|
|
45
|
+
const SYSTEM_FONT_KEY = "custom-font-family";
|
|
46
|
+
|
|
42
47
|
/**
|
|
43
48
|
* Constructor for a new RichTextEditor's Custom Toolbar.
|
|
44
49
|
*
|
|
@@ -401,35 +406,6 @@ sap.ui.define([
|
|
|
401
406
|
}
|
|
402
407
|
}
|
|
403
408
|
},
|
|
404
|
-
_syncTextFontFamily = function (oEditor, oFontFamilyCommand, oControl) {
|
|
405
|
-
var sFontName, sCommandValue, sText, sItemId,
|
|
406
|
-
sFontNameCommandValue = oEditor.getDoc().queryCommandValue("FontName");
|
|
407
|
-
|
|
408
|
-
// Enhanced mergetag font family detection
|
|
409
|
-
if (that._oPreservedMergetagSelection) {
|
|
410
|
-
var oPreservedComputedStyle = oEditor.getDoc().defaultView.getComputedStyle(that._oPreservedMergetagSelection);
|
|
411
|
-
sFontNameCommandValue = oPreservedComputedStyle.fontFamily || sFontNameCommandValue;
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
// Synchronize the selected item of the Font Family Select with the applied font family style
|
|
415
|
-
for (sFontName in oFontFamilyCommand) {
|
|
416
|
-
if (!oFontFamilyCommand.hasOwnProperty(sFontName)) {
|
|
417
|
-
continue;
|
|
418
|
-
}
|
|
419
|
-
sItemId = oControl.getId() + sFontName;
|
|
420
|
-
|
|
421
|
-
sCommandValue = oFontFamilyCommand[sFontName].commandValue.match(/\w+/g).join("").toLowerCase();
|
|
422
|
-
sFontNameCommandValue = sFontNameCommandValue && sFontNameCommandValue.match(/\w+/g)?.join("").toLowerCase();
|
|
423
|
-
sText = oFontFamilyCommand[sFontName].text.match(/\w+/g).join("").toLowerCase();
|
|
424
|
-
|
|
425
|
-
// the selected item should be changed, only when the new one is different
|
|
426
|
-
if ((oControl.getSelectedItemId() !== sItemId) &&
|
|
427
|
-
(sCommandValue === sFontNameCommandValue || sFontNameCommandValue === sText)) {
|
|
428
|
-
oControl.setSelectedItemId(sItemId);
|
|
429
|
-
break;
|
|
430
|
-
}
|
|
431
|
-
}
|
|
432
|
-
},
|
|
433
409
|
_syncImage = function (oEditor, oControl) {
|
|
434
410
|
var oSelection = oEditor.selection.getNode(),
|
|
435
411
|
bImage = oSelection && oSelection.tagName.toLowerCase() === "img" ||
|
|
@@ -466,9 +442,32 @@ sap.ui.define([
|
|
|
466
442
|
case "TextAlign":
|
|
467
443
|
_syncTextAlign(oEditorCommand, oFormatter, oControl);
|
|
468
444
|
break;
|
|
469
|
-
case "FontFamily":
|
|
470
|
-
|
|
445
|
+
case "FontFamily": {
|
|
446
|
+
let sFontName = oNativeEditor.queryCommandValue("FontName");
|
|
447
|
+
const bSystemFont = sFontName.includes(SYSTEM_FONT_CHROME) || sFontName.includes(SYSTEM_FONT_LEGACY);
|
|
448
|
+
|
|
449
|
+
// Enhanced mergetag font family detection
|
|
450
|
+
if (that._oPreservedMergetagSelection) {
|
|
451
|
+
var oPreservedComputedStyle = oNativeEditor.getDoc().defaultView.getComputedStyle(that._oPreservedMergetagSelection);
|
|
452
|
+
sFontName = oPreservedComputedStyle.fontFamily || sFontName;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
if (bSystemFont) {
|
|
456
|
+
oControl.setSelectedKey(SYSTEM_FONT_KEY);
|
|
457
|
+
oControl.getSelectedItem()?.setText(oResourceBundle.getText("FONT_FAMILY_DEFAULT_TEXT"));
|
|
458
|
+
break;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
const bExistingFont = oControl.getItems().find((oItem) => oItem.getKey() === sFontName);
|
|
462
|
+
|
|
463
|
+
if (bExistingFont) {
|
|
464
|
+
oControl.setSelectedKey(sFontName);
|
|
465
|
+
} else {
|
|
466
|
+
oControl.setSelectedKey(SYSTEM_FONT_KEY);
|
|
467
|
+
oControl.getSelectedItem()?.setText(sFontName);
|
|
468
|
+
}
|
|
471
469
|
break;
|
|
470
|
+
}
|
|
472
471
|
case "FormatBlock":
|
|
473
472
|
_syncTextFormatBlock(oNativeEditor, oEditorCommand, oControl);
|
|
474
473
|
break;
|
|
@@ -598,37 +597,25 @@ sap.ui.define([
|
|
|
598
597
|
* @private
|
|
599
598
|
*/
|
|
600
599
|
ToolbarWrapper.prototype._createFontStyleSelectItems = function () {
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
text: oFontFamilies[sFontStyle].text
|
|
609
|
-
};
|
|
610
|
-
|
|
611
|
-
aItems.push(new Item(oItem));
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
return aItems;
|
|
615
|
-
};
|
|
616
|
-
|
|
617
|
-
/**
|
|
618
|
-
* Helper function for finding the command value of a given font style command
|
|
619
|
-
*
|
|
620
|
-
* @param {string} [sItemText] Font Family
|
|
621
|
-
* @returns {string} The command value of the given font style
|
|
622
|
-
* @private
|
|
623
|
-
*/
|
|
624
|
-
ToolbarWrapper.prototype._getFontStyleCommand = function (sItemText) {
|
|
625
|
-
var oFontFamilies = EditorCommands["FontFamily"];
|
|
600
|
+
const aFontFamilies = EditorCommands["FontFamily"];
|
|
601
|
+
const aCustomFonts = this.getEditor().getCustomFonts();
|
|
602
|
+
const cleanFontString = (fontKey) => {
|
|
603
|
+
return fontKey
|
|
604
|
+
.replace(/['"]/g, "")
|
|
605
|
+
.replace(/,\s+/g, ",");
|
|
606
|
+
};
|
|
626
607
|
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
608
|
+
return [...aFontFamilies.map((oFontFamily) => {
|
|
609
|
+
return new Item({
|
|
610
|
+
text: oFontFamily.text,
|
|
611
|
+
key: oFontFamily.value
|
|
612
|
+
});
|
|
613
|
+
}), ...aCustomFonts.map((oFont) => {
|
|
614
|
+
return new Item({
|
|
615
|
+
text: oFont.getText(),
|
|
616
|
+
key: cleanFontString(oFont.getValue())
|
|
617
|
+
});
|
|
618
|
+
})];
|
|
632
619
|
};
|
|
633
620
|
|
|
634
621
|
/**
|
|
@@ -1619,8 +1606,13 @@ sap.ui.define([
|
|
|
1619
1606
|
this._helper.createSelect({
|
|
1620
1607
|
id: this._getId("FontFamily"),
|
|
1621
1608
|
ariaLabelledBy: oInvisibleTextFontFamily,
|
|
1622
|
-
|
|
1623
|
-
|
|
1609
|
+
items: [
|
|
1610
|
+
...this._createFontStyleSelectItems(),
|
|
1611
|
+
new Item({
|
|
1612
|
+
key: "custom-font-family",
|
|
1613
|
+
enabled: false
|
|
1614
|
+
})
|
|
1615
|
+
],
|
|
1624
1616
|
change: function (oEvent) {
|
|
1625
1617
|
that._preserveMergetagSelection();
|
|
1626
1618
|
var oItem;
|
|
@@ -1628,7 +1620,7 @@ sap.ui.define([
|
|
|
1628
1620
|
if (oRTE) {
|
|
1629
1621
|
oItem = oEvent.getSource().getSelectedItem();
|
|
1630
1622
|
that._restoreMergetagSelection();
|
|
1631
|
-
oRTE.getNativeApi().execCommand('FontName', false,
|
|
1623
|
+
oRTE.getNativeApi().execCommand('FontName', false, oItem.getKey());
|
|
1632
1624
|
} else {
|
|
1633
1625
|
Log.warning("Cannot execute native command: " + 'FontName');
|
|
1634
1626
|
}
|
|
@@ -37,7 +37,7 @@ sap.ui.define([
|
|
|
37
37
|
"sap.ui.richtexteditor.RTESplitButton"
|
|
38
38
|
],
|
|
39
39
|
elements: [],
|
|
40
|
-
version: "1.
|
|
40
|
+
version: "1.141.1"
|
|
41
41
|
});
|
|
42
42
|
|
|
43
43
|
/**
|
|
@@ -74,7 +74,8 @@ sap.ui.define([
|
|
|
74
74
|
|
|
75
75
|
/**
|
|
76
76
|
* Uses TinyMCE version 6 as editor
|
|
77
|
-
*
|
|
77
|
+
* TinyMCE 6 is no longer supported, therefore using it is on your own risk.
|
|
78
|
+
* @deprecated As of version 1.141
|
|
78
79
|
*/
|
|
79
80
|
TinyMCE6: "TinyMCE6",
|
|
80
81
|
|
|
@@ -221,76 +222,93 @@ sap.ui.define([
|
|
|
221
222
|
},
|
|
222
223
|
bundleKey: "TEXTALIGN_BUTTON_TOOLTIP"
|
|
223
224
|
},
|
|
224
|
-
FontFamily:
|
|
225
|
-
|
|
225
|
+
FontFamily: [
|
|
226
|
+
{
|
|
226
227
|
text: "Andale Mono",
|
|
227
|
-
|
|
228
|
+
name: "AndaleMono",
|
|
229
|
+
value: "andale mono,monospace"
|
|
228
230
|
},
|
|
229
|
-
|
|
231
|
+
{
|
|
230
232
|
text: "Arial",
|
|
231
|
-
|
|
233
|
+
name: "Arial",
|
|
234
|
+
value: "arial,helvetica,sans-serif"
|
|
232
235
|
},
|
|
233
|
-
|
|
236
|
+
{
|
|
234
237
|
text: "Arial Black",
|
|
235
|
-
|
|
238
|
+
name: "ArialBlack",
|
|
239
|
+
value: "arial black,sans-serif"
|
|
236
240
|
},
|
|
237
|
-
|
|
241
|
+
{
|
|
238
242
|
text: "Book Antiqua",
|
|
239
|
-
|
|
243
|
+
name: "BookAntiqua",
|
|
244
|
+
value: "book antiqua,palatino,serif"
|
|
240
245
|
},
|
|
241
|
-
|
|
246
|
+
{
|
|
242
247
|
text: "Comic Sans MS",
|
|
243
|
-
|
|
248
|
+
name: "ComicSansMS",
|
|
249
|
+
value: "comic sans ms,sans-serif"
|
|
244
250
|
},
|
|
245
|
-
|
|
251
|
+
{
|
|
246
252
|
text: "Courier New",
|
|
247
|
-
|
|
253
|
+
name: "CourierNew",
|
|
254
|
+
value: "courier new,couriret,monospace"
|
|
248
255
|
},
|
|
249
|
-
|
|
256
|
+
{
|
|
250
257
|
text: "Georgia",
|
|
251
|
-
|
|
258
|
+
name: "Georgia",
|
|
259
|
+
value: "georgia,palatino,serif"
|
|
252
260
|
},
|
|
253
|
-
|
|
261
|
+
{
|
|
254
262
|
text: "Helvetica",
|
|
255
|
-
|
|
263
|
+
name: "Helvetica",
|
|
264
|
+
value: "helvetica,arial,sans-serif"
|
|
256
265
|
},
|
|
257
|
-
|
|
266
|
+
{
|
|
258
267
|
text: "Impact",
|
|
259
|
-
|
|
268
|
+
name: "Impact",
|
|
269
|
+
value: "impact,sans-serif"
|
|
260
270
|
},
|
|
261
|
-
|
|
271
|
+
{
|
|
262
272
|
text: "Symbol",
|
|
263
|
-
|
|
273
|
+
name: "Symbol",
|
|
274
|
+
value: "symbol"
|
|
264
275
|
},
|
|
265
|
-
|
|
276
|
+
{
|
|
266
277
|
text: "Tahoma",
|
|
267
|
-
|
|
278
|
+
name: "Tahoma",
|
|
279
|
+
value: "tahoma,arial,helvetica,sans-serif"
|
|
268
280
|
},
|
|
269
|
-
|
|
281
|
+
{
|
|
270
282
|
text: "Terminal",
|
|
271
|
-
|
|
283
|
+
name: "Terminal",
|
|
284
|
+
value: "terminal,monaco,monospace"
|
|
272
285
|
},
|
|
273
|
-
|
|
286
|
+
{
|
|
274
287
|
text: "Times New Roman",
|
|
275
|
-
|
|
288
|
+
name: "TimesNewRoman",
|
|
289
|
+
value: "times new roman,times,sans-serif"
|
|
276
290
|
},
|
|
277
|
-
|
|
291
|
+
{
|
|
278
292
|
text: "Trebuchet MS",
|
|
279
|
-
|
|
293
|
+
name: "TrebuchetMS",
|
|
294
|
+
value: "trebuchet ms,geneva,sans-serif"
|
|
280
295
|
},
|
|
281
|
-
|
|
296
|
+
{
|
|
282
297
|
text: "Verdana",
|
|
283
|
-
|
|
298
|
+
name: "Verdana",
|
|
299
|
+
value: "verdana,geneva,sans-serif"
|
|
284
300
|
},
|
|
285
|
-
|
|
301
|
+
{
|
|
286
302
|
text: "Webdings",
|
|
287
|
-
|
|
303
|
+
name: "Webdings",
|
|
304
|
+
value: "webdings"
|
|
288
305
|
},
|
|
289
|
-
|
|
306
|
+
{
|
|
290
307
|
text: "Wingdings",
|
|
291
|
-
|
|
308
|
+
name: "Wingdings",
|
|
309
|
+
value: "wingdings,zapf dingbats"
|
|
292
310
|
}
|
|
293
|
-
|
|
311
|
+
],
|
|
294
312
|
FontSize: [8, 10, 12, 14, 18, 24, 36],
|
|
295
313
|
TextColor: {
|
|
296
314
|
icon: "text-color",
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Insert table
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Font Family
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Default
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Font Size
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=\u0625\u062F\u0631\u0627\u062C \u062C\u062F\u0648\u0644
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=\u0645\u062C\u0645\u0648\u0639\u0629 \u0627\u0644\u062E\u0637\u0648\u0637
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=\u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=\u062D\u062C\u0645 \u0627\u0644\u062E\u0637
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=\u0412\u043C\u044A\u043A\u0432\u0430\u043D\u0435 \u043D\u04
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=\u0421\u0435\u043C\u0435\u0439\u0441\u0442\u0432\u043E \u0448\u0440\u0438\u0444\u0442\u043E\u0432\u0435
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=\u041F\u043E \u043F\u043E\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043D\u0435
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=\u0420\u0430\u0437\u043C\u0435\u0440 \u043D\u0430 \u0448\u0440\u0438\u0444\u0442
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Inserir taula
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Fam\u00EDlia del tipus de lletra
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Predeterminada
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Mida del tipus de lletra
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Unesi tabelu
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Porodica fontova
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Standardno
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Veli\u010Dina fonta
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Vlo\u017Eit tabulku
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Sada font\u016F
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Standardn\u00ED
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Velikost fontu
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Mewnosod Tabl
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Teulu Ffont
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Diofyn
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Maint Ffont
|
|
100
103
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
#XACT: Text for the aria-roledescription attribute of the custom toolbar wrapper
|
|
6
|
-
CUSTOM_TOOLBAR_ARIA_ROLEDESCRIPTION=Rich Text-
|
|
6
|
+
CUSTOM_TOOLBAR_ARIA_ROLEDESCRIPTION=Rich Text-formateringsvalgmuligheder
|
|
7
7
|
|
|
8
8
|
#XACT: Text for the aria-label attribute of the Rich Text Editor wrapper element
|
|
9
9
|
RTE_ARIA_LABEL=Rich Text-editor
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Indf\u00F8j tabel
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Fontfamilie
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Standard
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Skriftst\u00F8rrelse
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Tabelle einf\u00FCgen
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Schriftschnitt
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Standard
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Schriftgr\u00F6\u00DFe
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03A0\u03
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=\u039F\u03B9\u03BA\u03BF\u03B3\u03AD\u03BD\u03B5\u03B9\u03B1 \u0393\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u0393\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Insert Table
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Font Family
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Default
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Font Size
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Insert Table
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Font Family
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Default
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Font Size
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=\u206A\u206A\u206A\u200C\u200C\u200C\u200B\u200B\u200C\u200
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=\u206A\u206A\u206A\u200C\u200B\u200C\u200D\u200C\u200C\u200C\u200D\u200D\u200D\u200C\u200C\u200C\u200B\u200D\u200C\u200C\u200B\u200D\u200C\u200D\u200D\u200C\u200C\u200C\u200B\u200B\u200B\u200D\u200B\u200D\u200C\u200C\u200D\u200C\u200B\u200D\u200B\u200C\u200D\u200D\u206AFont Family\u206A\u206A
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=\u206A\u206A\u206A\u200C\u200B\u200B\u200D\u200B\u200C\u200B\u200B\u200D\u200C\u200D\u200D\u200C\u200D\u200B\u200B\u200C\u200B\u200B\u200B\u200C\u200B\u200D\u200D\u200D\u200D\u200C\u200D\u200C\u200D\u200B\u200B\u200C\u200C\u200C\u200B\u200B\u200C\u200D\u200D\u200B\u206ADefault\u206A\u206A
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=\u206A\u206A\u206A\u200D\u200C\u200C\u200B\u200C\u200C\u200D\u200C\u200C\u200D\u200C\u200B\u200D\u200D\u200B\u200B\u200C\u200D\u200B\u200B\u200C\u200B\u200D\u200B\u200C\u200D\u200D\u200C\u200D\u200D\u200C\u200D\u200D\u200B\u200C\u200C\u200C\u200D\u200C\u206AFont Size\u206A\u206A
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Insertar tabla
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Familia de tipo de letra
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Predeterminada
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Estilo de tipo de letra
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Insertar tabla
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Familia de fuentes
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Predeterminado
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Tama\u00F1o de fuente
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Lisa tabel
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Fondipere
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Vaikev\u00E4\u00E4rtus
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Fondi suurus
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Lis\u00E4\u00E4 taulukko
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Fonttiperhe
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Oletus
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Kirjasinkoko
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Ins\u00E9rer une table
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Police
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Par d\u00E9faut
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Taille de la police
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Ins\u00E9rer un tableau
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Famille de polices
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Valeur par d\u00E9faut
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Taille de police
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=\u0924\u093E\u0932\u093F\u0915\u093E \u0938\u092E\u094D\u09
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=\u092B\u093C\u0949\u0928\u094D\u091F \u092A\u0930\u093F\u0935\u093E\u0930
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=\u0921\u093F\u095E\u0949\u0932\u094D\u091F
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=\u092B\u093C\u0949\u0928\u094D\u091F \u0906\u0915\u093E\u0930
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Umetni tabelu
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Obitelj fontova
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Preddefinirano
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Veli\u010Dina fonta
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=T\u00E1bla besz\u00FAr\u00E1sa
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Bet\u0171csal\u00E1d
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Alap\u00E9rtelmezett
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Bet\u0171m\u00E9ret
|
|
100
103
|
|
|
@@ -66,7 +66,7 @@ PASTE_BUTTON_TOOLTIP=Tempel
|
|
|
66
66
|
UNDO_BUTTON_TOOLTIP=Batalkan
|
|
67
67
|
|
|
68
68
|
#XTOL: Tooltip for redo button
|
|
69
|
-
REDO_BUTTON_TOOLTIP=
|
|
69
|
+
REDO_BUTTON_TOOLTIP=Ulangi
|
|
70
70
|
|
|
71
71
|
#XTOL: Tooltip for link button
|
|
72
72
|
LINK_BUTTON_TOOLTIP=Sisipkan/Edit Tautan
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Sisipkan Tabel
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Kelompok Font
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Default
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Ukuran Font
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Inserisci tabella
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Famiglia di font
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Predefinito
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Dimensione del font
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=\u05D4\u05D5\u05E1\u05E3 \u05D8\u05D1\u05DC\u05D4
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=\u05DE\u05E9\u05E4\u05D7\u05EA \u05D2\u05D5\u05E4\u05E0\u05D9\u05DD
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=\u05D1\u05E8\u05D9\u05E8\u05EA \u05DE\u05D7\u05D3\u05DC
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=\u05D2\u05D5\u05D3\u05DC \u05D2\u05D5\u05E4\u05DF
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=\u30C6\u30FC\u30D6\u30EB\u633F\u5165
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=\u30D5\u30A9\u30F3\u30C8\u30D5\u30A1\u30DF\u30EA
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=\u30C7\u30D5\u30A9\u30EB\u30C8
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=\u30D5\u30A9\u30F3\u30C8\u30B5\u30A4\u30BA
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=\u041A\u0435\u0441\u0442\u0435 \u0435\u043D\u0433\u0456\u04
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=\u049A\u0430\u0440\u0456\u043F\u0442\u0435\u0440 \u0442\u043E\u0431\u044B
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=\u04D8\u0434\u0435\u043F\u043A\u0456
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=\u049A\u0430\u0440\u0456\u043F \u04E9\u043B\u0448\u0435\u043C\u0456
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=\uD14C\uC774\uBE14 \uC0BD\uC785
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=\uAE00\uAF34 \uD328\uBC00\uB9AC
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=\uAE30\uBCF8\uAC12
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=\uAE00\uAF34 \uD06C\uAE30
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=\u012Eterpti lentel\u0119
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=\u0160rift\u0173 grup\u0117
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Numatytoji
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=\u0160rifto dydis
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Ievietot tabulu
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Fontu saime
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Noklus\u0113jums
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Fonta lielums
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=\u0412\u043C\u0435\u0442\u043D\u0438 \u0442\u0430\u0431\u04
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=\u0421\u0435\u043C\u0435\u0458\u0441\u0442\u0432\u043E \u043D\u0430 \u0444\u043E\u043D\u0442\u043E\u0432\u0438
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u043E
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=\u0413\u043E\u043B\u0435\u043C\u0438\u043D\u0430 \u043D\u0430 \u0444\u043E\u043D\u0442
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Masukkan Jadual
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Keluarga Fon
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Lalai
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Saiz Fon
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Tabel invoegen
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Fontfamilie
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Standaard
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Lettergrootte
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Sett inn tabell
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Skriftgruppe
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Standard
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Skriftst\u00F8rrelse
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Wstawianie tabeli
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Rodzaj czcionki
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Warto\u015B\u0107 domy\u015Blna
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Rozmiar czcionki
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Inserir tabela
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Fam\u00EDlia de fontes
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Padr\u00E3o
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Tamanho da fonte
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Inserir tabela
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Fam\u00EDlia de tipos de letra
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Predefinido
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Tamanho de tipo de letra
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Inserare tabel
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Familie de fonturi
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Implicit
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=M\u0103rime font
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u0442\u04
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=\u0421\u0442\u0438\u043B\u044C \u0448\u0440\u0438\u0444\u0442\u0430
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=\u041F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=\u0420\u0430\u0437\u043C\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Unesi tabelu
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Porodica fontova
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Standardno
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Veli\u010Dina fonta
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Vlo\u017Ei\u0165 tabu\u013Eku
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Skupina p\u00EDsiem
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=\u0160tandardn\u00E9
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Ve\u013Ekos\u0165 fontu
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Vstavljanje tabele
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Dru\u017Eina pisav
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Privzeto
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Velikost pisave
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=\u0423\u043D\u0435\u0441\u0438 \u0442\u0430\u0431\u0435\u04
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=\u041F\u043E\u0440\u043E\u0434\u0438\u0446\u0430 \u0444\u043E\u043D\u0442\u043E\u0432\u0430
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0434\u043D\u043E
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=\u0412\u0435\u043B\u0438\u0447\u0438\u043D\u0430 \u0444\u043E\u043D\u0442\u0430
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Infoga tabell
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Teckensnittsfamilj
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Standard
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Teckenstorlek
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=\u0E41\u0E17\u0E23\u0E01\u0E15\u0E32\u0E23\u0E32\u0E07
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=\u0E41\u0E1F\u0E21\u0E34\u0E25\u0E35\u0E48\u0E41\u0E1A\u0E1A\u0E2D\u0E31\u0E01\u0E29\u0E23
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=\u0E04\u0E48\u0E32\u0E15\u0E31\u0E49\u0E07\u0E15\u0E49\u0E19
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=\u0E02\u0E19\u0E32\u0E14\u0E41\u0E1A\u0E1A\u0E2D\u0E31\u0E01\u0E29\u0E23
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Tablo ekle
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Yaz\u0131 tipi grubu
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=Varsay\u0131lan
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=Yaz\u0131 tipi boyutu
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0442\u04
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=\u0421\u0456\u043C\u0435\u0439\u0441\u0442\u0432\u043E \u0448\u0440\u0438\u0444\u0442\u0456\u0432
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=\u0423\u0441\u0442\u0430\u043B\u0435\u043D\u0435
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=\u0420\u043E\u0437\u043C\u0456\u0440 \u0448\u0440\u0438\u0444\u0442\u0443
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=Che\u0300n ba\u0309ng
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=Ho\u0323 ph\u00F4ng ch\u01B0\u0303
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=M\u0103\u0323c \u0111i\u0323nh
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=C\u01A1\u0303 ph\u00F4ng
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=\u63D2\u5165\u8868
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=\u5B57\u4F53\u65CF
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=\u7F3A\u7701
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=\u5B57\u4F53\u5927\u5C0F
|
|
100
103
|
|
|
@@ -95,6 +95,9 @@ TABLE_BUTTON_TOOLTIP=\u63D2\u5165\u8868\u683C
|
|
|
95
95
|
#XTOL: Description for font family select
|
|
96
96
|
FONT_FAMILY_TEXT=\u5B57\u578B\u96C6
|
|
97
97
|
|
|
98
|
+
#XTOL: Description for font family select default item
|
|
99
|
+
FONT_FAMILY_DEFAULT_TEXT=\u9810\u8A2D
|
|
100
|
+
|
|
98
101
|
#XTOL: Description for font size select
|
|
99
102
|
FONT_SIZE_TEXT=\u5B57\u578B\u5927\u5C0F
|
|
100
103
|
|