aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/capture_file_dialog.cpp
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2018-05-09 09:08:02 +0200
committerStig Bjørlykke <stig@bjorlykke.org>2018-05-09 07:40:19 +0000
commita1f95b64581168e3fcf202c27985dc7e99a429a9 (patch)
tree8d87eb76379aa5398748c8e34d2a2f46b155151a /ui/qt/capture_file_dialog.cpp
parent612fb778f51b704745559345485f4ea44aa71aef (diff)
Qt: Add plural translations
Add plural translations in capture file dialog preview. Reworded text for "error after X records(s)" to use same format as similar messages. Change-Id: I7b2c8811a9c0c0f76587c5aad1a648a1b969f37a Reviewed-on: https://code.wireshark.org/review/27412 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
Diffstat (limited to 'ui/qt/capture_file_dialog.cpp')
-rw-r--r--ui/qt/capture_file_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/capture_file_dialog.cpp b/ui/qt/capture_file_dialog.cpp
index 852b2150a7..6e8569dacc 100644
--- a/ui/qt/capture_file_dialog.cpp
+++ b/ui/qt/capture_file_dialog.cpp
@@ -843,7 +843,7 @@ void CaptureFileDialog::preview(const QString & path)
if(status == PREVIEW_READ_ERROR) {
// XXX - give error details?
g_free(err_info);
- preview_size_.setText(tr("%1, error after %Ln record(s)", "", stats.records)
+ preview_size_.setText(tr("%1, error after %Ln data record(s)", "", stats.records)
.arg(size_str));
return;
}