summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_canvas_events.cc
diff options
context:
space:
mode:
authornick_m <mainsbridge@gmail.com>2015-03-25 23:31:23 +1100
committernick_m <mainsbridge@gmail.com>2015-03-25 23:31:23 +1100
commit1580c6d635b269e931f45357cdd767bf04a62572 (patch)
treead3b540e015ce265f4925b65e7a796f5661181cf /gtk2_ardour/editor_canvas_events.cc
parentf851a0bf3a444876747e244f985f90d74c859fd7 (diff)
Fix some strings incorrectly marked for translation.
My apologies to translators.
Diffstat (limited to 'gtk2_ardour/editor_canvas_events.cc')
-rw-r--r--gtk2_ardour/editor_canvas_events.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/editor_canvas_events.cc b/gtk2_ardour/editor_canvas_events.cc
index 9b474870a3..157f6cfe2d 100644
--- a/gtk2_ardour/editor_canvas_events.cc
+++ b/gtk2_ardour/editor_canvas_events.cc
@@ -182,7 +182,7 @@ Editor::track_canvas_button_press_event (GdkEventButton *event)
{
_track_canvas->grab_focus();
if (!Keyboard::is_context_menu_event (event)) {
- begin_reversible_selection_op (_("Clear Selection Click (track canvas)"));
+ begin_reversible_selection_op (X_("Clear Selection Click (track canvas)"));
selection->clear ();
commit_reversible_selection_op();
}
@@ -1130,7 +1130,7 @@ Editor::canvas_drop_zone_event (GdkEvent* event)
switch (event->type) {
case GDK_BUTTON_RELEASE:
if (event->button.button == 1) {
- begin_reversible_selection_op (_("Nowhere Click"));
+ begin_reversible_selection_op (X_("Nowhere Click"));
selection->clear_objects ();
selection->clear_tracks ();
commit_reversible_selection_op ();