mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
Indicate UTF8 literals - fixes glyph rendering with MSVC (2/2)
This commit is contained in:
parent
2c7f8eeb97
commit
c44b40afd7
17 changed files with 52 additions and 53 deletions
|
|
@ -145,7 +145,7 @@ InstrumentSelector::build_instrument_list()
|
|||
uint32_t n_outs = p->max_configurable_outputs ();
|
||||
if (n_outs > 2) {
|
||||
if (p->reconfigurable_io ()) {
|
||||
suffix = string_compose(_("\u2264 %1 outs"), n_outs);
|
||||
suffix = string_compose(_(u8"\u2264 %1 outs"), n_outs);
|
||||
} else {
|
||||
suffix = string_compose(_("%1 outs"), n_outs);
|
||||
}
|
||||
|
|
@ -155,7 +155,7 @@ InstrumentSelector::build_instrument_list()
|
|||
uint32_t n_outs = p->max_configurable_outputs ();
|
||||
if (n_outs > 2) {
|
||||
if (p->reconfigurable_io ()) {
|
||||
suffix = string_compose(_("\u2264 %1 outs"), n_outs);
|
||||
suffix = string_compose(_(u8"\u2264 %1 outs"), n_outs);
|
||||
} else {
|
||||
suffix = string_compose(_("%1 outs"), n_outs);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue