1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-14 09:03:54 +01:00

Replace various calls to _ with XO

This commit is contained in:
Paul Licameli
2020-05-22 14:46:50 -04:00
parent 9c196860db
commit 37c0c15f12
4 changed files with 12 additions and 10 deletions

View File

@@ -357,7 +357,7 @@ namespace
shiftDown;
tip =
_("Click and drag to move center selection frequency.");
XO("Click and drag to move center selection frequency.");
#endif

View File

@@ -28,10 +28,10 @@ Paul Licameli split from TrackPanel.cpp
#if defined(__WXMAC__)
/* i18n-hint: Command names a modifier key on Macintosh keyboards */
#define CTRL_CLICK _("Command+Click")
#define CTRL_CLICK XO("Command+Click")
#else
/* i18n-hint: Ctrl names a modifier key on Windows or Linux keyboards */
#define CTRL_CLICK _("Ctrl+Click")
#define CTRL_CLICK XO("Ctrl+Click")
#endif
namespace {