summaryrefslogtreecommitdiff
path: root/ui/qt/export_dissection_dialog.cpp
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2012-10-24 15:51:50 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2012-10-24 15:51:50 +0000
commit936082acb529b4e73b4d8d4f9fb8e13fb569efc1 (patch)
tree59ea356fd43e533166bcce0a2161950f97087eac /ui/qt/export_dissection_dialog.cpp
parent4438309f5eb607f746da7970b81f0406120df96d (diff)
downloadwireshark-936082acb529b4e73b4d8d4f9fb8e13fb569efc1.tar.gz
Make new text translatable for Qtshark * export_dissection_dialog.cpp * file_set_dialog.ui * export_object_dialog.cpp * capture_file_dialog.cpp
svn path=/trunk/; revision=45761
Diffstat (limited to 'ui/qt/export_dissection_dialog.cpp')
-rw-r--r--ui/qt/export_dissection_dialog.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/ui/qt/export_dissection_dialog.cpp b/ui/qt/export_dissection_dialog.cpp
index c39700b983..3ce5943226 100644
--- a/ui/qt/export_dissection_dialog.cpp
+++ b/ui/qt/export_dissection_dialog.cpp
@@ -63,15 +63,15 @@ ExportDissectionDialog::ExportDissectionDialog(QWidget *parent, capture_file *ca
setWindowTitle(tr("Wireshark: Export Packet Dissections"));
setAcceptMode(QFileDialog::AcceptSave);
- setLabelText(FileType, "Export as:");
+ setLabelText(FileType, tr("Export as:"));
// export_type_map_keys() sorts alphabetically. We don't want that.
name_filters
- << "Plain text (*.txt)"
- << "Comma Separated Values - summary (*.csv)"
- << "PSML - summary (*.psml, *.xml)"
- << "PDML - details (*.pdml, *.xml)"
- << "C Arrays - bytes (*.c, *.h)";
+ << tr("Plain text (*.txt)")
+ << tr("Comma Separated Values - summary (*.csv)")
+ << tr("PSML - summary (*.psml, *.xml)")
+ << tr("PDML - details (*.pdml, *.xml)")
+ << tr("C Arrays - bytes (*.c, *.h)");
export_type_map_[name_filters[0]] = export_type_text;
export_type_map_[name_filters[1]] = export_type_csv;
export_type_map_[name_filters[2]] = export_type_psml;