I have a SAPUI5
application that uses sap.ui.comp.smarttable.SmartTable
.
I loaded needed libraries based on other question here.
But even by adding dependencies in the manifest.json
file like the following:
"dependencies": {
"minUI5Version": "1.58.0",
"libs": {
"sap.collaboration": {
"minVersion": "1.58",
"lazy": true
},
"sap.m": {
"minVersion": "1.58"
},
"sap.ui.comp": {
"minVersion": "1.58"
},
"sap.ui.core": {
"minVersion": "1.58"
},
"sap.ui.unified": {
"minVersion": "1.58"
},
"sap.ui.table": {
"minVersion": "1.58"
},
"sap.ushell": {
"minVersion": "1.58"
}
}
},
But it tries to load some translation files which are not exist in the WEBIDE
SAPUI5 resources.
So I see a list of errors like what are highlighted in the following picture.
Now the question is, how can I resolve these error messages?
It does not cause my app to stop but I prefer to have no error when I want to present my app for the customer.