summaryrefslogtreecommitdiff
path: root/src/wx/timing_panel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-06-21 14:52:30 +0100
committerCarl Hetherington <cth@carlh.net>2014-06-21 14:52:30 +0100
commitdd2685423e9a2800a9ea6821c361a6b851ff759e (patch)
treea180a7bbc61ec90ec1bb97fac3b3781a50d80ac3 /src/wx/timing_panel.cc
parent7dd06cc89e018bfec3cbe802495bf7dee137a71f (diff)
Some missing i18n markup. Add S_ macro to allow contextual translations. Add updates to de_DE from Carsten Kurz. Merge pot files.
Diffstat (limited to 'src/wx/timing_panel.cc')
-rw-r--r--src/wx/timing_panel.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wx/timing_panel.cc b/src/wx/timing_panel.cc
index 6d9bf4539..5d21d0a02 100644
--- a/src/wx/timing_panel.cc
+++ b/src/wx/timing_panel.cc
@@ -31,7 +31,8 @@ using boost::dynamic_pointer_cast;
using boost::lexical_cast;
TimingPanel::TimingPanel (FilmEditor* e)
- : FilmEditorPanel (e, _("Timing"))
+ /* horrid hack for apparent lack of context support with wxWidgets i18n code */
+ : FilmEditorPanel (e, S_("Timing|Timing"))
{
wxFlexGridSizer* grid = new wxFlexGridSizer (2, 4, 4);
_sizer->Add (grid, 0, wxALL, 8);