Skip to content

Commit 2046667

Browse files
PIG208gnprice
authored andcommitted
i18n: Consistently use "…" rather than "..."
We generally prefer the ellipsis character … in user-facing strings. Signed-off-by: Zixuan James Li <[email protected]>
1 parent a3e2169 commit 2046667

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

assets/l10n/app_en.arb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@
239239
"@composeBoxTopicHintText": {
240240
"description": "Hint text for topic input widget in compose box."
241241
},
242-
"composeBoxUploadingFilename": "Uploading {filename}...",
242+
"composeBoxUploadingFilename": "Uploading {filename}",
243243
"@composeBoxUploadingFilename": {
244244
"description": "Placeholder in compose box showing the specified file is currently uploading.",
245245
"placeholders": {
@@ -432,7 +432,7 @@
432432
"num": {"type": "int", "example": "4"}
433433
}
434434
},
435-
"markAsReadInProgress": "Marking messages as read...",
435+
"markAsReadInProgress": "Marking messages as read",
436436
"@markAsReadInProgress": {
437437
"description": "Progress message when marking messages as read."
438438
},
@@ -447,7 +447,7 @@
447447
"num": {"type": "int", "example": "4"}
448448
}
449449
},
450-
"markAsUnreadInProgress": "Marking messages as unread...",
450+
"markAsUnreadInProgress": "Marking messages as unread",
451451
"@markAsUnreadInProgress": {
452452
"description": "Progress message when marking messages as unread."
453453
},

test/widgets/compose_box_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ void main() {
294294
check(errorDialogs).isEmpty();
295295

296296
check(composeBoxController.contentController.text)
297-
.equals('see image: [Uploading image.jpg...]()\n\n');
297+
.equals('see image: [Uploading image.jpg]()\n\n');
298298
// (the request is checked more thoroughly in API tests)
299299
check(connection.lastRequest!).isA<http.MultipartRequest>()
300300
..method.equals('POST')
@@ -350,7 +350,7 @@ void main() {
350350
check(errorDialogs).isEmpty();
351351

352352
check(composeBoxController.contentController.text)
353-
.equals('see image: [Uploading image.jpg...]()\n\n');
353+
.equals('see image: [Uploading image.jpg]()\n\n');
354354
// (the request is checked more thoroughly in API tests)
355355
check(connection.lastRequest!).isA<http.MultipartRequest>()
356356
..method.equals('POST')

0 commit comments

Comments
 (0)