1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 17:30:17 +01:00

Fix format of tooltip text for toolbar buttons in RTL languages...

... No translatable strings were added, two were removed
This commit is contained in:
Paul Licameli
2017-09-11 21:11:42 -04:00
parent 954a974422
commit 731a2ac40c
6 changed files with 37 additions and 25 deletions

View File

@@ -298,12 +298,3 @@ wxString Internat::StripAccelerators(const wxString &s)
}
return result;
}
wxString Internat::Parenthesize(const wxString &str)
{
/* i18n-hint: An opening parenthesis, in some languages a right parenthesis */
auto open = _("(");
/* i18n-hint: A closing parenthesis, in some languages a left parenthesis */
auto close = _(")");
return open + str + close;
}