@sapui5/sap.suite.ui.commons 1.116.0 → 1.117.0
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 +1 -1
- 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/CloudFilePicker.js +30 -9
- 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/ProcessFlow.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_ca.properties +4 -4
- package/src/sap/suite/ui/commons/messagebundle_de.properties +1 -1
- package/src/sap/suite/ui/commons/messagebundle_es.properties +2 -2
- package/src/sap/suite/ui/commons/messagebundle_es_MX.properties +3 -3
- package/src/sap/suite/ui/commons/messagebundle_fr_CA.properties +4 -4
- package/src/sap/suite/ui/commons/messagebundle_hi.properties +3 -3
- package/src/sap/suite/ui/commons/messagebundle_it.properties +8 -8
- 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 +1 -1
- package/src/sap/suite/ui/commons/taccount/TAccountPanel.js +1 -1
package/package.json
CHANGED
|
@@ -111,7 +111,7 @@ sap.ui.define([
|
|
|
111
111
|
* @class
|
|
112
112
|
* @public
|
|
113
113
|
* @internal
|
|
114
|
-
* @version 1.
|
|
114
|
+
* @version 1.117.0
|
|
115
115
|
*/
|
|
116
116
|
var CloudFilePicker = Dialog.extend("sap.suite.ui.commons.CloudFilePicker", {
|
|
117
117
|
metadata: {
|
|
@@ -199,6 +199,13 @@ sap.ui.define([
|
|
|
199
199
|
type: "sap.suite.ui.commons.FilePickerType",
|
|
200
200
|
group: "Data",
|
|
201
201
|
defaultValue: "Export"
|
|
202
|
+
},
|
|
203
|
+
/**
|
|
204
|
+
* Specifies the MIME type of the file during Export
|
|
205
|
+
*/
|
|
206
|
+
MIMEType: {
|
|
207
|
+
type: "string",
|
|
208
|
+
group: "Data"
|
|
202
209
|
}
|
|
203
210
|
},
|
|
204
211
|
events: {
|
|
@@ -722,7 +729,7 @@ sap.ui.define([
|
|
|
722
729
|
var sFileShareKey = this.oSelectControl.getSelectedKey();
|
|
723
730
|
var sSearchText = oEvent.target.value;
|
|
724
731
|
var sDocumentType = "folder";
|
|
725
|
-
this._checkForDuplicateFileAndFolder(sSearchText, sFileShareKey, sDocumentType)
|
|
732
|
+
this._checkForDuplicateFileAndFolder(sSearchText, sFileShareKey, sDocumentType, "")
|
|
726
733
|
.then(function (oSuccess) {
|
|
727
734
|
this.setBusy(false);
|
|
728
735
|
if (oSuccess.value.length) {
|
|
@@ -768,10 +775,10 @@ sap.ui.define([
|
|
|
768
775
|
});
|
|
769
776
|
};
|
|
770
777
|
|
|
771
|
-
CloudFilePicker.prototype._checkForDuplicateFileAndFolder = function (sSearchText, sFileShareKey, sDocumentType) {
|
|
778
|
+
CloudFilePicker.prototype._checkForDuplicateFileAndFolder = function (sSearchText, sFileShareKey, sDocumentType, sContentType) {
|
|
772
779
|
var sFileShareItem = this.aVisibleLinks[this.aVisibleLinks.length - 1].fileShareItemId;
|
|
773
780
|
var sPath = "/FileShareItems(FileShare='" + sFileShareKey + "',FileShareItem='" + sFileShareItem + "')/_Query";
|
|
774
|
-
var oContextBinding = this.getModel().bindContext(sPath, "", {"$filter":"FileShareItemName eq \'" + sSearchText + "\'and FileShareItemKind eq \'" + sDocumentType + "\'"});
|
|
781
|
+
var oContextBinding = this.getModel().bindContext(sPath, "", {"$filter": "FileShareItemName eq \'" + sSearchText + "\'and FileShareItemKind eq \'" + sDocumentType + "\'and FileShareItemContentType eq \'" + sContentType + "\'"});
|
|
775
782
|
return oContextBinding.requestObject();
|
|
776
783
|
};
|
|
777
784
|
|
|
@@ -797,7 +804,7 @@ sap.ui.define([
|
|
|
797
804
|
var oNewFolderContext = oBinding.create({
|
|
798
805
|
FileShareItemName: sFolderName,
|
|
799
806
|
FileShareItemKind: 'folder'
|
|
800
|
-
},
|
|
807
|
+
}, false, false, false);
|
|
801
808
|
|
|
802
809
|
// handle success/failure of POST request triggered for a #create on this binding
|
|
803
810
|
var fnCreateCompleted = function(oEvent) {
|
|
@@ -961,20 +968,34 @@ sap.ui.define([
|
|
|
961
968
|
enabled: false,
|
|
962
969
|
press: function () {
|
|
963
970
|
this.setBusy(true);
|
|
964
|
-
var
|
|
965
|
-
|
|
971
|
+
var sCurrentItemInputName = this.oFileNameControl.getValue();
|
|
972
|
+
//Appending MIME type only for Excel as it is not necessary for Google Sheets
|
|
973
|
+
if (this.getMIMEType() && this.getMIMEType() === ".xlsx" && sCurrentItemInputName.indexOf(".xlsx") < 0) {
|
|
974
|
+
sCurrentItemInputName = sCurrentItemInputName + this.getMIMEType();
|
|
975
|
+
}
|
|
976
|
+
if ((this.getFilePickerMode() === FilePickerModes.FileOnly) || sCurrentItemInputName) {
|
|
966
977
|
if (this.getEnableDuplicateCheck()) {
|
|
967
978
|
var sDocumentType = "document";
|
|
968
|
-
|
|
979
|
+
var oFileMIMETypes = {
|
|
980
|
+
".xlsx": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
|
981
|
+
".gsheet": "application/vnd.google-apps.spreadsheet"
|
|
982
|
+
};
|
|
983
|
+
var sCurrentFileMIMEType = oFileMIMETypes[this.getMIMEType()];
|
|
984
|
+
this._checkForDuplicateFileAndFolder(sCurrentItemInputName, this.oSelectControl.getSelectedKey(), sDocumentType, sCurrentFileMIMEType ? sCurrentFileMIMEType : '')
|
|
969
985
|
.then(function (oSuccess) {
|
|
970
986
|
this.setBusy(false);
|
|
971
987
|
if (oSuccess.value.length) {
|
|
972
|
-
this._showOverwriteMessage(
|
|
988
|
+
this._showOverwriteMessage(sCurrentItemInputName);
|
|
973
989
|
} else {
|
|
990
|
+
this.oFileNameControl.setValue(sCurrentItemInputName);
|
|
974
991
|
this._closeDialog();
|
|
975
992
|
}
|
|
993
|
+
}.bind(this))
|
|
994
|
+
.catch(function (oError) {
|
|
995
|
+
this._closeDialog();
|
|
976
996
|
}.bind(this));
|
|
977
997
|
} else {
|
|
998
|
+
this.oFileNameControl.setValue(sCurrentItemInputName);
|
|
978
999
|
this._closeDialog();
|
|
979
1000
|
}
|
|
980
1001
|
}
|
|
@@ -1263,7 +1263,7 @@ sap.ui.define([
|
|
|
1263
1263
|
* @public
|
|
1264
1264
|
*/
|
|
1265
1265
|
ProcessFlow.prototype.destroyLanes = function () {
|
|
1266
|
-
this.removeAllAggregation("lanes");
|
|
1266
|
+
//this.removeAllAggregation("lanes");
|
|
1267
1267
|
for (var i = 0; i < this._internalLanes.length; i++) {
|
|
1268
1268
|
this._internalLanes[i].destroy();
|
|
1269
1269
|
}
|
|
@@ -185,7 +185,7 @@
|
|
|
185
185
|
"sap.suite.ui.commons.TargetFilterMeasureColumn",
|
|
186
186
|
"sap.suite.ui.commons.AriaProperties"
|
|
187
187
|
],
|
|
188
|
-
version: "1.
|
|
188
|
+
version: "1.117.0",
|
|
189
189
|
extensions: {
|
|
190
190
|
flChangeHandlers: {
|
|
191
191
|
"sap.suite.ui.commons.Timeline": "sap/suite/ui/commons/flexibility/Timeline"
|
|
@@ -133,7 +133,7 @@ TIMELINE_REPLIES=Respondre
|
|
|
133
133
|
TIMELINE_LIKE=M'agrada
|
|
134
134
|
TIMELINE_OK=D'acord
|
|
135
135
|
TIMELINE_ADD_POST=Afegir contribuci\u00F3 de SAP Jam
|
|
136
|
-
TIMELINE_SHOW_MORE=
|
|
136
|
+
TIMELINE_SHOW_MORE=Mostrar m\u00E9s
|
|
137
137
|
TIMELINE_TEXT_SHOW_MORE=m\u00E9s
|
|
138
138
|
TIMELINE_TEXT_SHOW_LESS=menys
|
|
139
139
|
PF_ERROR_INPUT_DATA=Error en carregar les dades
|
|
@@ -193,11 +193,11 @@ PF_CONNECTIONLABEL=Etiqueta de connexi\u00F3
|
|
|
193
193
|
NUMERICCONTENT_DEVIATION_UP=Ascendent
|
|
194
194
|
NUMERICCONTENT_DEVIATION_DOWN=Descendent
|
|
195
195
|
|
|
196
|
-
CHARTCONTAINER_VIEWBY=
|
|
196
|
+
CHARTCONTAINER_VIEWBY=Visualitzar per
|
|
197
197
|
CHARTCONTAINER_LEGEND=Llegenda
|
|
198
198
|
CHARTCONTAINER_PERSONALIZE=Personalitzar
|
|
199
|
-
CHARTCONTAINER_FULLSCREEN=
|
|
200
|
-
CHARTCONTAINER_FULLSCREEN_CLOSE=
|
|
199
|
+
CHARTCONTAINER_FULLSCREEN=Obrir pantalla completa
|
|
200
|
+
CHARTCONTAINER_FULLSCREEN_CLOSE=Tancar pantalla completa
|
|
201
201
|
CHARTCONTAINER_OPTIONS=Opcions
|
|
202
202
|
CHARTCONTAINER_CLOSE=Tancar
|
|
203
203
|
CHARTCONTAINER_ZOOMIN=Ampliar
|
|
@@ -477,7 +477,7 @@ CFP_DATA_LOADING_TEXT=Daten werden geladen...
|
|
|
477
477
|
CFP_BUTTON_OK=OK
|
|
478
478
|
|
|
479
479
|
COLLABORATION_MSTEAMS_SHARE=Microsoft Teams
|
|
480
|
-
COLLABORATION_MSTEAMS_CHAT=
|
|
480
|
+
COLLABORATION_MSTEAMS_CHAT=Per Chat
|
|
481
481
|
COLLABORATION_MSTEAMS_TAB=Als Registerkarte
|
|
482
482
|
COLLABORATION_MSTEAMS_CARD=Als Karte
|
|
483
483
|
COLLABORATION_MSTEAMS_TAB_SINGLE=Registerkarte in Microsoft Teams
|
|
@@ -133,7 +133,7 @@ TIMELINE_REPLIES=Respuestas
|
|
|
133
133
|
TIMELINE_LIKE=Me gusta
|
|
134
134
|
TIMELINE_OK=OK
|
|
135
135
|
TIMELINE_ADD_POST=A\u00F1adir publicaci\u00F3n de SAP Jam
|
|
136
|
-
TIMELINE_SHOW_MORE=
|
|
136
|
+
TIMELINE_SHOW_MORE=Visualizar m\u00E1s
|
|
137
137
|
TIMELINE_TEXT_SHOW_MORE=m\u00E1s
|
|
138
138
|
TIMELINE_TEXT_SHOW_LESS=menos
|
|
139
139
|
PF_ERROR_INPUT_DATA=Error al cargar los datos
|
|
@@ -193,7 +193,7 @@ PF_CONNECTIONLABEL=Etiqueta de conexi\u00F3n
|
|
|
193
193
|
NUMERICCONTENT_DEVIATION_UP=Ascendente
|
|
194
194
|
NUMERICCONTENT_DEVIATION_DOWN=Descendente
|
|
195
195
|
|
|
196
|
-
CHARTCONTAINER_VIEWBY=
|
|
196
|
+
CHARTCONTAINER_VIEWBY=Visualizar por
|
|
197
197
|
CHARTCONTAINER_LEGEND=Leyenda
|
|
198
198
|
CHARTCONTAINER_PERSONALIZE=Personalizaci\u00F3n
|
|
199
199
|
CHARTCONTAINER_FULLSCREEN=Abrir pantalla completa
|
|
@@ -196,8 +196,8 @@ NUMERICCONTENT_DEVIATION_DOWN=Descendente
|
|
|
196
196
|
CHARTCONTAINER_VIEWBY=Ver por
|
|
197
197
|
CHARTCONTAINER_LEGEND=Leyenda
|
|
198
198
|
CHARTCONTAINER_PERSONALIZE=Personalizar
|
|
199
|
-
CHARTCONTAINER_FULLSCREEN=Abrir
|
|
200
|
-
CHARTCONTAINER_FULLSCREEN_CLOSE=Cerrar
|
|
199
|
+
CHARTCONTAINER_FULLSCREEN=Abrir pantalla completa
|
|
200
|
+
CHARTCONTAINER_FULLSCREEN_CLOSE=Cerrar pantalla completa
|
|
201
201
|
CHARTCONTAINER_OPTIONS=Opciones
|
|
202
202
|
CHARTCONTAINER_CLOSE=Cerrar
|
|
203
203
|
CHARTCONTAINER_ZOOMIN=Acercar
|
|
@@ -214,7 +214,7 @@ TARGETFILTER_ENTRIES_TEXT=Entradas
|
|
|
214
214
|
TARGETFILTER_OTHERS_TEXT=Otros
|
|
215
215
|
TARGETFILTER_MORE_TEXT=m\u00E1s
|
|
216
216
|
TARGETFILTER_BUTTON_SELECT=Selec.
|
|
217
|
-
TARGETFILTER_BUTTON_DESELECT=
|
|
217
|
+
TARGETFILTER_BUTTON_DESELECT=Desmarcar
|
|
218
218
|
TARGETFILTER_BUTTON_CANCEL=Cancelar
|
|
219
219
|
|
|
220
220
|
VNB_ARIA_LABEL={0} Cantidad {1}
|
|
@@ -126,14 +126,14 @@ TIMELINE_ALL=Tous
|
|
|
126
126
|
TIMELINE_FILTER_CANCEL=Annuler
|
|
127
127
|
TIMELINE_FILTER_INFO_BY=Filtr\u00E9 par\: {0}
|
|
128
128
|
TIMELINE_CLEAR_ICN_TOOLTIP=R\u00E9initialiser les filtres
|
|
129
|
-
TIMELINE_MORE=Afficher
|
|
129
|
+
TIMELINE_MORE=Afficher plus
|
|
130
130
|
TIMELINE_ADD=Ajouter
|
|
131
131
|
TIMELINE_REPLY=R\u00E9pondre
|
|
132
132
|
TIMELINE_REPLIES=R\u00E9ponses
|
|
133
133
|
TIMELINE_LIKE=J'aime
|
|
134
134
|
TIMELINE_OK=OK
|
|
135
135
|
TIMELINE_ADD_POST=Ajouter une publication SAP Jam
|
|
136
|
-
TIMELINE_SHOW_MORE=Afficher
|
|
136
|
+
TIMELINE_SHOW_MORE=Afficher plus
|
|
137
137
|
TIMELINE_TEXT_SHOW_MORE=plus
|
|
138
138
|
TIMELINE_TEXT_SHOW_LESS=moins
|
|
139
139
|
PF_ERROR_INPUT_DATA=Erreur lors du chargement des donn\u00E9es
|
|
@@ -197,7 +197,7 @@ CHARTCONTAINER_VIEWBY=Afficher par
|
|
|
197
197
|
CHARTCONTAINER_LEGEND=L\u00E9gende
|
|
198
198
|
CHARTCONTAINER_PERSONALIZE=Personnaliser
|
|
199
199
|
CHARTCONTAINER_FULLSCREEN=Plein \u00E9cran
|
|
200
|
-
CHARTCONTAINER_FULLSCREEN_CLOSE=
|
|
200
|
+
CHARTCONTAINER_FULLSCREEN_CLOSE=Quitter le plein \u00E9cran
|
|
201
201
|
CHARTCONTAINER_OPTIONS=Options
|
|
202
202
|
CHARTCONTAINER_CLOSE=Fermer
|
|
203
203
|
CHARTCONTAINER_ZOOMIN=Zoom avant
|
|
@@ -214,7 +214,7 @@ TARGETFILTER_ENTRIES_TEXT=Entr\u00E9es
|
|
|
214
214
|
TARGETFILTER_OTHERS_TEXT=Autres
|
|
215
215
|
TARGETFILTER_MORE_TEXT=plus
|
|
216
216
|
TARGETFILTER_BUTTON_SELECT=S\u00E9lect.
|
|
217
|
-
TARGETFILTER_BUTTON_DESELECT=D\u00E9s\
|
|
217
|
+
TARGETFILTER_BUTTON_DESELECT=D\u00E9s\u00E9lectionner
|
|
218
218
|
TARGETFILTER_BUTTON_CANCEL=Annuler
|
|
219
219
|
|
|
220
220
|
VNB_ARIA_LABEL={0} quantit\u00E9 {1}
|
|
@@ -45,7 +45,7 @@ NOTETAKERCARD_BUTTON_SAVE_TEXT=\u0938\u0939\u0947\u091C\u0947\u0902
|
|
|
45
45
|
NOTETAKERCARD_BUTTON_SAVE_TOOLTIP=\u0928\u094B\u091F \u0938\u0939\u0947\u091C\u0947\u0902
|
|
46
46
|
NOTETAKERCARD_CONFIRMATION_CANCEL_EDIT_MESSAGE=\u0938\u0939\u0947\u091C\u093E \u0928 \u0917\u092F\u093E \u0921\u0947\u091F\u093E \u0916\u094B \u091C\u093E\u090F\u0917\u093E. \u0915\u094D\u092F\u093E \u0906\u092A \u091C\u093E\u0930\u0940 \u0930\u0916\u0928\u093E \u091A\u093E\u0939\u0924\u0947 \u0939\u0948?
|
|
47
47
|
NOTETAKERCARD_CONFIRMATION_CANCEL_EDIT_TITLE=\u0938\u0939\u0947\u091C\u093E \u0928 \u0917\u092F\u093E \u0921\u0947\u091F\u093E
|
|
48
|
-
NOTETAKER_FILTER_TITLE=\
|
|
48
|
+
NOTETAKER_FILTER_TITLE=\u0907\u0938\u0915\u0947\u0905\u0928\u0941\u0938\u093E\u0930 \u092B\u093C\u093F\u0932\u094D\u091F\u0930
|
|
49
49
|
NOTETAKER_BUTTON_HOME_TOOLTIP=\u091C\u094B\u0921\u093C\u0947 \u0928\u094B\u091F \u0915\u093E\u0930\u094D\u0921 \u092A\u094D\u0930\u0926\u0930\u094D\u0936\u093F\u0924 \u0915\u0930\u0947\u0902
|
|
50
50
|
NOTETAKER_BUTTON_FILTER_TAG_TOOLTIP=\u091F\u0948\u0917 \u0926\u094D\u0935\u093E\u0930\u093E \u092B\u093C\u093F\u0932\u094D\u091F\u0930 \u0928\u094B\u091F \u0915\u094B \u091A\u0942\u0928\u0947\u0902
|
|
51
51
|
NOTETAKER_BUTTON_FILTER_THUMB_UP_TOOLTIP=\u0938\u0915\u093E\u0930\u093E\u0924\u094D\u092E\u0915 \u091C\u093E\u0928\u0915\u093E\u0930\u0940 \u0936\u093E\u092E\u093F\u0932 \u0915\u0930\u0928\u0947 \u0935\u093E\u0932\u0940 \u0928\u094B\u091F \u092A\u094D\u0930\u0926\u0930\u094D\u0936\u093F\u0924 \u0915\u0930\u0947\u0902
|
|
@@ -193,7 +193,7 @@ PF_CONNECTIONLABEL=\u0915\u0928\u0947\u0915\u094D\u0936\u0928 \u0932\u0947\u092C
|
|
|
193
193
|
NUMERICCONTENT_DEVIATION_UP=\u092C\u095D\u0924\u0947 \u0915\u094D\u0930\u092E \u092E\u0947\u0902
|
|
194
194
|
NUMERICCONTENT_DEVIATION_DOWN=\u0918\u091F\u0924\u0947 \u0915\u094D\u0930\u092E \u092E\u0947\u0902
|
|
195
195
|
|
|
196
|
-
CHARTCONTAINER_VIEWBY=\
|
|
196
|
+
CHARTCONTAINER_VIEWBY=\u0907\u0938\u0915\u0947 \u0905\u0928\u0941\u0938\u093E\u0930 \u0926\u0947\u0916\u0947\u0902
|
|
197
197
|
CHARTCONTAINER_LEGEND=\u0932\u0947\u091C\u0947\u0902\u0921
|
|
198
198
|
CHARTCONTAINER_PERSONALIZE=\u0928\u093F\u091C\u0940\u0915\u0943\u0924 \u0915\u0930\u0947\u0902
|
|
199
199
|
CHARTCONTAINER_FULLSCREEN=\u092A\u0942\u0930\u094D\u0923 \u0938\u094D\u0915\u094D\u0930\u0940\u0928 \u0916\u094B\u0932\u0947\u0902
|
|
@@ -214,7 +214,7 @@ TARGETFILTER_ENTRIES_TEXT=\u092A\u094D\u0930\u0935\u093F\u0937\u094D\u091F\u093F
|
|
|
214
214
|
TARGETFILTER_OTHERS_TEXT=\u0905\u0928\u094D\u092F
|
|
215
215
|
TARGETFILTER_MORE_TEXT=\u0905\u0927\u093F\u0915
|
|
216
216
|
TARGETFILTER_BUTTON_SELECT=\u091A\u092F\u0928
|
|
217
|
-
TARGETFILTER_BUTTON_DESELECT=\u091A\u092F\u0928 \
|
|
217
|
+
TARGETFILTER_BUTTON_DESELECT=\ \u091A\u092F\u0928 \u0930\u0926\u094D\u0926 \u0915\u0930\u0947\u0902
|
|
218
218
|
TARGETFILTER_BUTTON_CANCEL=\u0930\u0926\u094D\u0926
|
|
219
219
|
|
|
220
220
|
VNB_ARIA_LABEL={0} \u092E\u093E\u0924\u094D\u0930\u093E {1}
|
|
@@ -126,14 +126,14 @@ TIMELINE_ALL=Tutto
|
|
|
126
126
|
TIMELINE_FILTER_CANCEL=Annulla
|
|
127
127
|
TIMELINE_FILTER_INFO_BY=Filtra per\: {0}
|
|
128
128
|
TIMELINE_CLEAR_ICN_TOOLTIP=Resetta filtri
|
|
129
|
-
TIMELINE_MORE=
|
|
129
|
+
TIMELINE_MORE=Mostra di pi\u00F9
|
|
130
130
|
TIMELINE_ADD=Aggiungi
|
|
131
131
|
TIMELINE_REPLY=Rispondi
|
|
132
132
|
TIMELINE_REPLIES=Risposte
|
|
133
133
|
TIMELINE_LIKE=Mi piace
|
|
134
134
|
TIMELINE_OK=OK
|
|
135
135
|
TIMELINE_ADD_POST=Aggiungi post SAP Jam
|
|
136
|
-
TIMELINE_SHOW_MORE=
|
|
136
|
+
TIMELINE_SHOW_MORE=Mostra di pi\u00F9
|
|
137
137
|
TIMELINE_TEXT_SHOW_MORE=di pi\u00F9
|
|
138
138
|
TIMELINE_TEXT_SHOW_LESS=Meno
|
|
139
139
|
PF_ERROR_INPUT_DATA=Errore nel caricamento dei dati
|
|
@@ -148,7 +148,7 @@ TIMELINE_MONTH=Mese
|
|
|
148
148
|
TIMELINE_QUARTER=Trimestre
|
|
149
149
|
TIMELINE_YEAR=Anno
|
|
150
150
|
TIMELINE_GROUP_BY_PERIOD=Periodo
|
|
151
|
-
TIMELINE_FILTER_TIME=
|
|
151
|
+
TIMELINE_FILTER_TIME=Filtra per data/ora
|
|
152
152
|
TIMELINE_FILTER_SUBMIT=Applica
|
|
153
153
|
TIMELINE_SORT=Classif.
|
|
154
154
|
TIMELINE_SORT_ASCENDING=Classifica in ordine crescente
|
|
@@ -193,11 +193,11 @@ PF_CONNECTIONLABEL=Etichetta di collegamento
|
|
|
193
193
|
NUMERICCONTENT_DEVIATION_UP=In ordine crescente
|
|
194
194
|
NUMERICCONTENT_DEVIATION_DOWN=In ordine decrescente
|
|
195
195
|
|
|
196
|
-
CHARTCONTAINER_VIEWBY=
|
|
196
|
+
CHARTCONTAINER_VIEWBY=Visualizza per
|
|
197
197
|
CHARTCONTAINER_LEGEND=Legenda
|
|
198
|
-
CHARTCONTAINER_PERSONALIZE=
|
|
199
|
-
CHARTCONTAINER_FULLSCREEN=Apri
|
|
200
|
-
CHARTCONTAINER_FULLSCREEN_CLOSE=
|
|
198
|
+
CHARTCONTAINER_PERSONALIZE=Personalizza
|
|
199
|
+
CHARTCONTAINER_FULLSCREEN=Apri immagine a tutto schermo
|
|
200
|
+
CHARTCONTAINER_FULLSCREEN_CLOSE=Chiudi immagine a tutto schermo
|
|
201
201
|
CHARTCONTAINER_OPTIONS=Opzioni
|
|
202
202
|
CHARTCONTAINER_CLOSE=Chiudi
|
|
203
203
|
CHARTCONTAINER_ZOOMIN=Ingrandisci
|
|
@@ -214,7 +214,7 @@ TARGETFILTER_ENTRIES_TEXT=Inserimenti
|
|
|
214
214
|
TARGETFILTER_OTHERS_TEXT=Altro
|
|
215
215
|
TARGETFILTER_MORE_TEXT=di pi\u00F9
|
|
216
216
|
TARGETFILTER_BUTTON_SELECT=Sel.
|
|
217
|
-
TARGETFILTER_BUTTON_DESELECT=
|
|
217
|
+
TARGETFILTER_BUTTON_DESELECT=Deseleziona
|
|
218
218
|
TARGETFILTER_BUTTON_CANCEL=Annulla
|
|
219
219
|
|
|
220
220
|
VNB_ARIA_LABEL={0} Quantit\u00E0 {1}
|