Fix cannot copy & paste base64 image as inline image in composer web

This commit is contained in:
dab246
2024-08-19 19:53:01 +07:00
committed by Dat H. Pham
parent a5a8d42763
commit b27eaed659
10 changed files with 138 additions and 29 deletions
@@ -4159,13 +4159,13 @@ class AppLocalizations {
}
String get emptySpamFolderFailed {
return Intl.message(''
return Intl.message(
'Empty spam folder failed',
name: 'emptySpamFolderFailed');
}
String get markAsSpamFailed {
return Intl.message(''
return Intl.message(
'Mark as spam failed',
name: 'markAsSpamFailed');
}
@@ -4176,4 +4176,10 @@ class AppLocalizations {
name: 'canNotUploadFileToSignature'
);
}
String get thisImageCannotBePastedIntoTheEditor {
return Intl.message(
'This image cannot be pasted into the editor.',
name: 'thisImageCannotBePastedIntoTheEditor');
}
}