I am working on a UI5 project, and I use i18n in my controller,
like this:
MessageBox.error(Utils.i18n("JOB_DELETE_FAILED_MSG", sName), {
details: "Some error message"
});
and in my i18n file:
JOB_DELETE_FAILED_MSG=Couldn't delete job "{0}". Please contact your system administrator.
but the message displayed in the message box becomes:
Couldnt delete job "{0}". Please contact your system administrator.
the binding seems not working.
But when I delete the '
in "couldn't" in the i18n file, the binding worked again
Couldnt delete job "job1". Please contact your system administrator.
Could you please tell me what is the problem here?