@sapui5/sap.suite.ui.commons 1.84.14 → 1.84.16
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/suite/ui/commons/.library +1 -1
- package/src/sap/suite/ui/commons/AriaProperties.js +1 -1
- package/src/sap/suite/ui/commons/CalculationBuilder.js +7 -4
- package/src/sap/suite/ui/commons/CalculationBuilderExpression.js +1 -1
- package/src/sap/suite/ui/commons/CalculationBuilderFunction.js +1 -1
- package/src/sap/suite/ui/commons/CalculationBuilderGroup.js +1 -1
- package/src/sap/suite/ui/commons/CalculationBuilderItem.js +1 -1
- package/src/sap/suite/ui/commons/CalculationBuilderValidationResult.js +1 -1
- package/src/sap/suite/ui/commons/CalculationBuilderVariable.js +1 -1
- package/src/sap/suite/ui/commons/MicroProcessFlow.js +1 -1
- package/src/sap/suite/ui/commons/MicroProcessFlowItem.js +1 -1
- package/src/sap/suite/ui/commons/flexibility/changeHandler/PropertyChangeMapper.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/CropCustomShapeHistoryItem.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/CropEllipseHistoryItem.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/CropRectangleHistoryItem.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/CustomSizeItem.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/FilterHistoryItem.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/FlipHistoryItem.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/HistoryItem.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/ImageEditor.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/ImageEditorContainer.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/ImageEditorResponsiveContainer.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/ResizeHistoryItem.js +1 -1
- package/src/sap/suite/ui/commons/imageeditor/RotateHistoryItem.js +1 -1
- package/src/sap/suite/ui/commons/library.js +1 -1
- package/src/sap/suite/ui/commons/messagebundle_de.properties +7 -7
- package/src/sap/suite/ui/commons/messagebundle_it.properties +2 -2
- package/src/sap/suite/ui/commons/messagebundle_nl.properties +6 -6
- package/src/sap/suite/ui/commons/messagebundle_sv.properties +3 -3
- package/src/sap/suite/ui/commons/statusindicator/Circle.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/CustomShape.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/DiscreteThreshold.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/FillingOption.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/LibraryShape.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/Path.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/PropertyThreshold.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/Rectangle.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/Shape.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/ShapeGroup.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/SimpleShape.js +1 -1
- package/src/sap/suite/ui/commons/statusindicator/StatusIndicator.js +1 -1
- package/src/sap/suite/ui/commons/taccount/TAccount.js +1 -1
- package/src/sap/suite/ui/commons/taccount/TAccountGroup.js +1 -1
- package/src/sap/suite/ui/commons/taccount/TAccountItem.js +1 -1
- package/src/sap/suite/ui/commons/taccount/TAccountItemProperty.js +10 -5
- package/src/sap/suite/ui/commons/taccount/TAccountPanel.js +1 -1
package/package.json
CHANGED
|
@@ -125,7 +125,7 @@ sap.ui.define([
|
|
|
125
125
|
* @extends sap.ui.core.Control
|
|
126
126
|
*
|
|
127
127
|
* @author SAP SE
|
|
128
|
-
* @version 1.84.
|
|
128
|
+
* @version 1.84.16
|
|
129
129
|
* @since 1.56.0
|
|
130
130
|
*
|
|
131
131
|
* @constructor
|
|
@@ -887,9 +887,12 @@ sap.ui.define([
|
|
|
887
887
|
var oToggleButton = oEvent.getSource();
|
|
888
888
|
|
|
889
889
|
this._toggleFullScreen();
|
|
890
|
-
oToggleButton.
|
|
891
|
-
|
|
892
|
-
|
|
890
|
+
oToggleButton.setAggregation("tooltip",
|
|
891
|
+
this._bIsFullScreen
|
|
892
|
+
? oResourceBundle.getText("CALCULATION_BUILDER_EXIT_FULL_SCREEN_BUTTON")
|
|
893
|
+
: oResourceBundle.getText("CALCULATION_BUILDER_ENTER_FULL_SCREEN_BUTTON"),true);
|
|
894
|
+
oToggleButton.setProperty("icon", this._bIsFullScreen ? Icons.EXIT_FULL_SCREEN : Icons.FULL_SCREEN, true);
|
|
895
|
+
oToggleButton.focus();
|
|
893
896
|
}.bind(this)
|
|
894
897
|
}));
|
|
895
898
|
|
|
@@ -182,7 +182,7 @@ sap.ui.define([
|
|
|
182
182
|
"sap.suite.ui.commons.TargetFilterMeasureColumn",
|
|
183
183
|
"sap.suite.ui.commons.AriaProperties"
|
|
184
184
|
],
|
|
185
|
-
version: "1.84.
|
|
185
|
+
version: "1.84.16",
|
|
186
186
|
extensions: {
|
|
187
187
|
flChangeHandlers: {
|
|
188
188
|
"sap.suite.ui.commons.Timeline": "sap/suite/ui/commons/flexibility/Timeline"
|
|
@@ -78,7 +78,7 @@ NOTETAKERCARD_BUTTON_CLOSE_OVERLAY_TOOLTIP=Volltextsicht der Notiz schlie\u00DFe
|
|
|
78
78
|
NOTETAKERCARD_EDITFIELD_TITLE_TOOLTIP=Titel bearbeiten
|
|
79
79
|
|
|
80
80
|
THREEPANELTHINGVIEWER_BUTTON_MENU_TOOLTIP=Zeigt die Liste von Aktionen an
|
|
81
|
-
THINGCOLLECTION_BUTTON_REMOVE_TOOLTIP=L\u00F6scht
|
|
81
|
+
THINGCOLLECTION_BUTTON_REMOVE_TOOLTIP=L\u00F6scht ein Element aus der Sammlung
|
|
82
82
|
THINGCOLLECTION_BUTTON_PREVIOUS_TOOLTIP=Zur\u00FCck
|
|
83
83
|
THINGCOLLECTION_BUTTON_NEXT_TOOLTIP=Weiter
|
|
84
84
|
|
|
@@ -102,7 +102,7 @@ UNIFIEDTHINGINSPECTOR_FOOTER_BUTTON_OPENWITH=\u00D6ffnen mit
|
|
|
102
102
|
FACETOVERVIEW_NO_CONTENT_TEXT=Kein Inhalt vorhanden
|
|
103
103
|
UNIFIEDTHINGINSPECTOR_FOOTER_BUTTON_EMAIL_LINK=Link per E-Mail
|
|
104
104
|
UNIFIEDTHINGINSPECTOR_GENERAL_INFORMATION_HEADER_TEXT=Allgemeine Informationen
|
|
105
|
-
FACETOVERVIEW_NO_ITEMS_TEXT=Keine
|
|
105
|
+
FACETOVERVIEW_NO_ITEMS_TEXT=Keine Elemente verf\u00FCgbar
|
|
106
106
|
INFOTILE_CANNOT_LOAD_TILE=Kachel kann nicht geladen werden
|
|
107
107
|
INFOTILE_LOADING=L\u00E4dt
|
|
108
108
|
|
|
@@ -120,7 +120,7 @@ USHELL_FACTSHEET_ENTER_YOUR_FILTER=Filterwert hier eingeben
|
|
|
120
120
|
TIMELINE_TODAY=Heute
|
|
121
121
|
TIMELINE_YESTERDAY=Gestern
|
|
122
122
|
TIMELINE_AT=um
|
|
123
|
-
TIMELINE_NO_DATA=
|
|
123
|
+
TIMELINE_NO_DATA=Es sind zurzeit keine Elemente verf\u00FCgbar
|
|
124
124
|
TIMELINE_FILTER_BY=Filtern nach
|
|
125
125
|
TIMELINE_ALL=Alles
|
|
126
126
|
TIMELINE_FILTER_CANCEL=Abbrechen
|
|
@@ -235,7 +235,7 @@ NETWORK_GRAPH_ACCESSIBILITY_LABEL=Netzwerk-Graph
|
|
|
235
235
|
NETWORK_GRAPH_ACCESSIBILITY_CONTENT=Netzwerk-Graph-Inhalt
|
|
236
236
|
NETWORK_GRAPH_ACCESSIBILITY_LINE_LABEL=Zeile von {0} bis {1}
|
|
237
237
|
NETWORK_GRAPH_ACCESSIBILITY_ACTION_BUTTON=Aktionstaste
|
|
238
|
-
NETWORK_GRAPH_LINES=
|
|
238
|
+
NETWORK_GRAPH_LINES=Linien
|
|
239
239
|
NETWORK_GRAPH_NODES=Knoten
|
|
240
240
|
NETWORK_GRAPH_GROUPS=Gruppen
|
|
241
241
|
NETWORK_GRAPH_LEGEND=Legende
|
|
@@ -268,12 +268,12 @@ MICRO_PROCESS_FLOW_SUCCESS=Erfolg
|
|
|
268
268
|
MICRO_PROCESS_FLOW_WARNING=Warnung
|
|
269
269
|
MICRO_PROCESS_FLOW_ERROR=Fehler
|
|
270
270
|
MICRO_PROCESS_FLOW_INFORMATION=Information
|
|
271
|
-
MICRO_PROCESS_FLOW_ITEM=
|
|
271
|
+
MICRO_PROCESS_FLOW_ITEM=Element
|
|
272
272
|
|
|
273
273
|
|
|
274
274
|
CALCULATION_BUILDER_SEARCH_VARIABLE=Suchen...
|
|
275
275
|
CALCULATION_BUILDER_CONFIRM_BUTTON=OK
|
|
276
|
-
CALCULATION_BUILDER_CLOSE_BUTTON=
|
|
276
|
+
CALCULATION_BUILDER_CLOSE_BUTTON=Abbrechen
|
|
277
277
|
CALCULATION_BUILDER_DELETE_BUTTON=L\u00F6schen
|
|
278
278
|
CALCULATION_BUILDER_TOGGLE_EXPRESSION_BUTTON=Ausgabe des Ausdrucks \u00E4ndern
|
|
279
279
|
CALCULATION_BUILDER_EXPAND_ALL_BUTTON=Alle Variablen expandieren
|
|
@@ -345,7 +345,7 @@ TACCOUNT_TOTALBALANCE=Gesamtsaldo
|
|
|
345
345
|
TACCOUNT_TOTALDEBIT=Soll gesamt
|
|
346
346
|
TACCOUNT_TOTALCREDIT=Haben gesamt
|
|
347
347
|
TACCOUNT_OK=OK
|
|
348
|
-
TACCOUNT_CANCEL=
|
|
348
|
+
TACCOUNT_CANCEL=Abbrechen
|
|
349
349
|
TACCOUNT_SELECTED=Passender Eintrag vorhanden
|
|
350
350
|
TACCOUNT_COLLAPSE=Komprimieren
|
|
351
351
|
TACCOUNT_EXPAND=Expandieren
|
|
@@ -240,7 +240,7 @@ NETWORK_GRAPH_NODES=Nodi
|
|
|
240
240
|
NETWORK_GRAPH_GROUPS=Gruppi
|
|
241
241
|
NETWORK_GRAPH_LEGEND=Legenda
|
|
242
242
|
NETWORK_GRAPH_ZOOMTOFIT=Adatta alla finestra
|
|
243
|
-
NETWORK_GRAPH_ZOOMCTRL=
|
|
243
|
+
NETWORK_GRAPH_ZOOMCTRL=Tenere premuto il tasto CTRL e utilizzare la rotella del mouse per ingrandire o ridurre.
|
|
244
244
|
NETWORK_GRAPH_WRONGDATA=I dati del grafo network non sono consistenti; controlla la console per maggiori dettagli.
|
|
245
245
|
NETWORK_GRAPH_COLLAPSED=Compresso
|
|
246
246
|
NETWORK_GRAPH_NO_DATA=Nessun dato trovato.
|
|
@@ -314,7 +314,7 @@ CALCULATION_BUILDER_ADDITIONAL_OPERATOR=Operatori personalizzati
|
|
|
314
314
|
CALCULATION_BUILDER_OPERATORS_PAGE_TITLE=Selezionare un operatore
|
|
315
315
|
CALCULATION_BUILDER_LOGICAL_TITLE_SELECT=Operatori logici\:
|
|
316
316
|
CALCULATION_BUILDER_COMPARISON_TITLE_SELECT=Operatori di confronto\:
|
|
317
|
-
CALCULATION_BUILDER_OPERATORS_CATEGORY_DESCRIPTION=
|
|
317
|
+
CALCULATION_BUILDER_OPERATORS_CATEGORY_DESCRIPTION=Seleziona un operatore logico o di confronto
|
|
318
318
|
CALCULATION_BUILDER_OPERATORS_TITLE=Operatori
|
|
319
319
|
CALCULATION_BUILDER_COMPARISON_TITLE=Confronto
|
|
320
320
|
CALCULATION_BUILDER_LOGICAL_TITLE=Logico
|
|
@@ -55,8 +55,8 @@ NOTETAKER_BUTTON_FILTER_ALL_TOOLTIP=Alle filters wissen
|
|
|
55
55
|
NOTETAKER_BUTTON_FILTER_TAG_APPLY_TEXT=Filteren
|
|
56
56
|
NOTETAKER_BUTTON_FILTER_TAG_APPLY_TOOLTIP=Notities op geselecteerde tags filteren
|
|
57
57
|
NOTETAKERFEEDER_TOOLPOPUP_TITLE=Tags
|
|
58
|
-
NOTETAKERFEEDER_BUTTON_CANCEL_TAGS=
|
|
59
|
-
NOTETAKERFEEDER_BUTTON_CANCEL_TAGS_TOOLTIP=Tagselectie
|
|
58
|
+
NOTETAKERFEEDER_BUTTON_CANCEL_TAGS=Annuleren
|
|
59
|
+
NOTETAKERFEEDER_BUTTON_CANCEL_TAGS_TOOLTIP=Tagselectie annuleren
|
|
60
60
|
NOTETAKERFEEDER_BUTTON_ADD_TAGS=Toepassen
|
|
61
61
|
NOTETAKERFEEDER_BUTTON_ADD_TAGS_TOOLTIP=Geselecteerde tags toepassen op deze notitie
|
|
62
62
|
NOTETAKERFEEDER_BUTTON_ADD_TAGS_SELECTED_TOOLTIP=Geselecteerde tags
|
|
@@ -123,7 +123,7 @@ TIMELINE_AT=om
|
|
|
123
123
|
TIMELINE_NO_DATA=Geen posities beschikbaar
|
|
124
124
|
TIMELINE_FILTER_BY=Filteren op
|
|
125
125
|
TIMELINE_ALL=Alles
|
|
126
|
-
TIMELINE_FILTER_CANCEL=
|
|
126
|
+
TIMELINE_FILTER_CANCEL=Annuleren
|
|
127
127
|
TIMELINE_FILTER_INFO_BY=Gefilterd op\: {0}
|
|
128
128
|
TIMELINE_CLEAR_ICN_TOOLTIP=Filters wissen
|
|
129
129
|
TIMELINE_MORE=Meer weergeven
|
|
@@ -215,7 +215,7 @@ TARGETFILTER_OTHERS_TEXT=Overige
|
|
|
215
215
|
TARGETFILTER_MORE_TEXT=Meer
|
|
216
216
|
TARGETFILTER_BUTTON_SELECT=Select.
|
|
217
217
|
TARGETFILTER_BUTTON_DESELECT=Demarkeren
|
|
218
|
-
TARGETFILTER_BUTTON_CANCEL=
|
|
218
|
+
TARGETFILTER_BUTTON_CANCEL=Annuleren
|
|
219
219
|
|
|
220
220
|
VNB_ARIA_LABEL={0} Hoeveelheid {1}
|
|
221
221
|
|
|
@@ -273,7 +273,7 @@ MICRO_PROCESS_FLOW_ITEM=Positie
|
|
|
273
273
|
|
|
274
274
|
CALCULATION_BUILDER_SEARCH_VARIABLE=Zoeken...
|
|
275
275
|
CALCULATION_BUILDER_CONFIRM_BUTTON=OK
|
|
276
|
-
CALCULATION_BUILDER_CLOSE_BUTTON=
|
|
276
|
+
CALCULATION_BUILDER_CLOSE_BUTTON=Annuleren
|
|
277
277
|
CALCULATION_BUILDER_DELETE_BUTTON=Verwijderen
|
|
278
278
|
CALCULATION_BUILDER_TOGGLE_EXPRESSION_BUTTON=Uitdrukkingsuitvoer omschakelen
|
|
279
279
|
CALCULATION_BUILDER_EXPAND_ALL_BUTTON=Alle variabelen weergeven
|
|
@@ -345,7 +345,7 @@ TACCOUNT_TOTALBALANCE=Totaal saldo
|
|
|
345
345
|
TACCOUNT_TOTALDEBIT=Totaal debet
|
|
346
346
|
TACCOUNT_TOTALCREDIT=Totaal credit
|
|
347
347
|
TACCOUNT_OK=OK
|
|
348
|
-
TACCOUNT_CANCEL=
|
|
348
|
+
TACCOUNT_CANCEL=Annuleren
|
|
349
349
|
TACCOUNT_SELECTED=Overeenkomend gegeven binnen
|
|
350
350
|
TACCOUNT_COLLAPSE=Verbergen
|
|
351
351
|
TACCOUNT_EXPAND=Weergeven
|
|
@@ -334,9 +334,9 @@ CALCULATION_BUILDER_MINUS_ARIA_LABEL=Minus
|
|
|
334
334
|
CALCULATION_BUILDER_EXPAND_BUTTON_TITLE=Expandera variabel
|
|
335
335
|
CALCULATION_BUILDER_ERROR_TITLE=Fel
|
|
336
336
|
|
|
337
|
-
TACCOUNT_TITLE=
|
|
338
|
-
TACCOUNT_GROUP_TITLE=
|
|
339
|
-
TACCOUNT_ITEM=
|
|
337
|
+
TACCOUNT_TITLE=T-konto
|
|
338
|
+
TACCOUNT_GROUP_TITLE=T-kontogrupp
|
|
339
|
+
TACCOUNT_ITEM=T-kontoposition
|
|
340
340
|
TACCOUNT_DEBIT=Debet
|
|
341
341
|
TACCOUNT_CREDIT=Kredit
|
|
342
342
|
TACCOUNT_SELECTALL=Markera alla
|
|
@@ -17,7 +17,7 @@ sap.ui.define([
|
|
|
17
17
|
* @extends sap.ui.core.Control
|
|
18
18
|
*
|
|
19
19
|
* @author SAP SE
|
|
20
|
-
* @version 1.84.
|
|
20
|
+
* @version 1.84.16
|
|
21
21
|
* @since 1.58.0
|
|
22
22
|
*
|
|
23
23
|
* @constructor
|
|
@@ -64,11 +64,16 @@ sap.ui.define([
|
|
|
64
64
|
oRm.write(">");
|
|
65
65
|
|
|
66
66
|
if (sLabel && oProperty.getDisplayLabel()) {
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
oRm.write("<div class=\"sapSuiteUiCommonsAccountItemLabel\">");
|
|
68
|
+
oRm.text(sLabel);
|
|
69
|
+
oRm.write(":</div>");
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
oRm.write("<div class=\"sapSuiteUiCommonsAccountItemProperty\">");
|
|
73
|
+
oRm.text(sValue);
|
|
74
|
+
oRm.write("</div>");
|
|
69
75
|
|
|
70
|
-
|
|
71
|
-
oRm.write("</div>");
|
|
76
|
+
oRm.write("</div>");
|
|
72
77
|
}
|
|
73
78
|
});
|
|
74
79
|
|