From 2ef193e197f7b911c4ba83e46953a95b4f025545 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Tue, 27 Mar 2012 00:48:28 +0000 Subject: [PATCH] Remove pointless translatable strings that are never actually displayed Originally committed to SVN as r6607. --- aegisub/src/dialog_kara_timing_copy.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/aegisub/src/dialog_kara_timing_copy.cpp b/aegisub/src/dialog_kara_timing_copy.cpp index f7821136e..6c546aed7 100644 --- a/aegisub/src/dialog_kara_timing_copy.cpp +++ b/aegisub/src/dialog_kara_timing_copy.cpp @@ -658,10 +658,8 @@ DialogKanjiTimer::DialogKanjiTimer(agi::Context *c) Interpolate->SetValue(OPT_GET("Tool/Kanji Timer/Interpolation")->GetBool()); wxArrayString styles = subs->GetStyles(); - SourceStyle = new wxComboBox(this, -1, "", wxDefaultPosition, wxSize(160, -1), - styles, wxCB_READONLY, wxDefaultValidator, _("Source Style")); - DestStyle = new wxComboBox(this, -1, "", wxDefaultPosition, wxSize(160, -1), - styles, wxCB_READONLY, wxDefaultValidator, _("Dest Style")); + SourceStyle = new wxComboBox(this, -1, "", wxDefaultPosition, wxSize(160, -1), styles, wxCB_READONLY); + DestStyle = new wxComboBox(this, -1, "", wxDefaultPosition, wxSize(160, -1), styles, wxCB_READONLY); wxStaticText *ShortcutKeys = new wxStaticText(this,-1,_("When the destination textbox has focus, use the following keys:\n\nRight Arrow: Increase dest. selection length\nLeft Arrow: Decrease dest. selection length\nUp Arrow: Increase source selection length\nDown Arrow: Decrease source selection length\nEnter: Link, accept line when done\nBackspace: Unlink last"));