summaryrefslogtreecommitdiff
path: root/src/tools/dcpomatic_editor.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-08-09 02:04:42 +0200
committerCarl Hetherington <cth@carlh.net>2024-09-03 17:02:24 +0200
commita28d6f64de8577dcdc2de20ac69d54289122c241 (patch)
treee562a52c75c038eafee2660cd3a97c29ce4a8277 /src/tools/dcpomatic_editor.cc
parent5527bdb269e355ca95aa91fe3907bfef0ef17ff4 (diff)
Fix missing i18n markup.
Diffstat (limited to 'src/tools/dcpomatic_editor.cc')
-rw-r--r--src/tools/dcpomatic_editor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_editor.cc b/src/tools/dcpomatic_editor.cc
index 960d658ee..07e720a71 100644
--- a/src/tools/dcpomatic_editor.cc
+++ b/src/tools/dcpomatic_editor.cc
@@ -221,7 +221,7 @@ public:
add_label_to_sizer(sizer, this, _("Reels"), true, wxGBPosition(r, 0));
_reels = new EditableList<shared_ptr<dcp::Reel>, ReelEditor>(
this,
- { EditableListColumn("Name", 600, true) },
+ { EditableListColumn(_("Name"), 600, true) },
[this]() { return _cpl->reels(); },
[this](vector<shared_ptr<dcp::Reel>> reels) {
_cpl->set(reels);