TF-2346 Add text when can not compress image

(cherry picked from commit 97dddb194fe4d16e3995394a3552265892155b80)
This commit is contained in:
hieubt
2023-12-04 09:15:58 +07:00
committed by Dat H. Pham
parent 6b0a24c8af
commit 21ffd0f68f
2 changed files with 13 additions and 0 deletions
+6
View File
@@ -3527,5 +3527,11 @@
"placeholders": {
"senderName": {}
}
},
"cannotCompressInlineImage": "Cannot compress image",
"@cannotCompressInlineImage": {
"type": "text",
"placeholders_order": [],
"placeholders": {}
}
}
@@ -3660,4 +3660,11 @@ class AppLocalizations {
args: [senderName]
);
}
String get cannotCompressInlineImage {
return Intl.message(
'Cannot compress image',
name: 'cannotCompressInlineImage',
);
}
}