TF-2237 Add sending text

(cherry picked from commit ff1d0d73bc2eea6619328ee07609f3a9c2ffc055)
This commit is contained in:
hieubt
2023-10-25 00:09:35 +07:00
committed by Dat H. Pham
parent 1d11365d66
commit d26f86c844
2 changed files with 13 additions and 0 deletions
+6
View File
@@ -3319,5 +3319,11 @@
"folderName": {},
"reason": {}
}
},
"sending": "Sending",
"@sending": {
"type": "text",
"placeholders_order": [],
"placeholders": {}
}
}
@@ -3421,4 +3421,11 @@ class AppLocalizations {
args: [folderName, reason]
);
}
String get sending {
return Intl.message(
'Sending',
name: 'sending',
);
}
}