mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
i18n: Don't localize "" - that is a special gettext string
Address build warnings:
audio_clock.cc:911: warning: Empty msgid. It is reserved by GNU gettext:
gettext("") returns the header entry with
meta information, not the empty string.
audio_clock.cc:912: warning: Empty msgid. It is reserved by GNU gettext:
gettext("") returns the header entry with
meta information, not the empty string.
session_dialog.cc:604: warning: Empty msgid. It is reserved by GNU gettext:
gettext("") returns the header entry with
meta information, not the empty string.
session_dialog.cc:605: warning: Empty msgid. It is reserved by GNU gettext:
gettext("") returns the header entry with
meta information, not the empty string.
Use ("") instead of _("") to try to indicate syntactically that
localization markup intentionally has been left out.
This commit is contained in:
parent
f9f3f598c4
commit
a55ee74c4e
2 changed files with 4 additions and 4 deletions
|
|
@ -941,8 +941,8 @@ AudioClock::finish_set (Temporal::timepos_t const & when, bool btn_en)
|
|||
_right_btn.set_elements (ArdourButton::Text);
|
||||
_left_btn.set_alignment (0, .5);
|
||||
_right_btn.set_alignment (1, .5);
|
||||
set_tooltip (_left_btn, _(""));
|
||||
set_tooltip (_right_btn, _(""));
|
||||
set_tooltip (_left_btn, (""));
|
||||
set_tooltip (_right_btn, (""));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue