aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-05-13 20:23:35 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-05-13 20:23:35 +0000
commit91c482d3d62086e490dced562e5b30c3cfa7f987 (patch)
tree6a2cd9020de2a594864eb376aaff6309f8f83a51 /ui/qt
parentb990a8242d1e9ac0cf329b1e2706f47da801216d (diff)
Add Some missing text to translate
svn path=/trunk/; revision=49270
Diffstat (limited to 'ui/qt')
-rw-r--r--ui/qt/font_color_preferences_frame.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/qt/font_color_preferences_frame.cpp b/ui/qt/font_color_preferences_frame.cpp
index 007d23408a..eab7568d76 100644
--- a/ui/qt/font_color_preferences_frame.cpp
+++ b/ui/qt/font_color_preferences_frame.cpp
@@ -31,7 +31,7 @@
#include <epan/prefs-int.h>
-static const char *font_pangrams_[] = {
+static const char *font_pangrams_[] = { //TODO : Fix translate
"Example GIF query packets have jumbo window sizes",
"Lazy badgers move unique waxy jellyfish packets"
};
@@ -167,7 +167,7 @@ void FontColorPreferencesFrame::changeColor(pref_t *pref)
void FontColorPreferencesFrame::on_fontPushButton_clicked()
{
bool ok;
- QFont new_font = QFontDialog::getFont(&ok, cur_font_, this, "Wireshark: Font");
+ QFont new_font = QFontDialog::getFont(&ok, cur_font_, this, tr("Wireshark: Font"));
if (ok) {
g_free(pref_qt_gui_font_name_->stashed_val.string);
pref_qt_gui_font_name_->stashed_val.string = g_strdup(new_font.toString().toUtf8().constData());