Hot fix: add missing 'name' and 'args' to Intl.plural in daysAgo

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-07-23 15:52:00 +07:00
committed by Dat H. Pham
parent b33f5c4f91
commit 945697a257
2 changed files with 13 additions and 1 deletions
+11 -1
View File
@@ -1,5 +1,5 @@
{
"@@last_modified": "2025-07-08T10:52:37.280039",
"@@last_modified": "2025-07-23T15:51:45.812311",
"initializing_data": "Initializing data...",
"@initializing_data": {
"type": "text",
@@ -4591,5 +4591,15 @@
"type": "text",
"placeholders_order": [],
"placeholders": {}
},
"daysAgo": "{days,plural, =0{}=1{ (1 day ago)}other{ ({days} days ago)}}",
"@daysAgo": {
"type": "text",
"placeholders_order": [
"days"
],
"placeholders": {
"days": {}
}
}
}
@@ -4844,6 +4844,8 @@ class AppLocalizations {
zero: '',
one: ' (1 day ago)',
other: ' ($days days ago)',
name: 'daysAgo',
args: [days],
);
}
}