diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-08-09 02:04:42 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-09-03 17:02:24 +0200 |
| commit | a28d6f64de8577dcdc2de20ac69d54289122c241 (patch) | |
| tree | e562a52c75c038eafee2660cd3a97c29ce4a8277 /src/tools/dcpomatic_server.cc | |
| parent | 5527bdb269e355ca95aa91fe3907bfef0ef17ff4 (diff) | |
Fix missing i18n markup.
Diffstat (limited to 'src/tools/dcpomatic_server.cc')
| -rw-r--r-- | src/tools/dcpomatic_server.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/dcpomatic_server.cc b/src/tools/dcpomatic_server.cc index ef232a2a2..3a3894dae 100644 --- a/src/tools/dcpomatic_server.cc +++ b/src/tools/dcpomatic_server.cc @@ -238,8 +238,8 @@ public: wxMenu* CreatePopupMenu () override { auto menu = new wxMenu; - menu->Append (ID_status, std_to_wx ("Status...")); - menu->Append (ID_quit, std_to_wx ("Quit")); + menu->Append(ID_status, _("Status...")); + menu->Append(ID_quit, _("Quit")); return menu; } @@ -257,7 +257,7 @@ public: icon.CopyFromBitmap (bitmap); #endif - SetIcon (icon, std_to_wx ("DCP-o-matic Encode Server")); + SetIcon(icon, _("DCP-o-matic Encode Server")); } private: |
