summaryrefslogtreecommitdiffstats
path: root/m_property.c
diff options
context:
space:
mode:
Diffstat (limited to 'm_property.c')
-rw-r--r--m_property.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/m_property.c b/m_property.c
index 72d2491a87..b296aa1b87 100644
--- a/m_property.c
+++ b/m_property.c
@@ -250,7 +250,8 @@ int m_property_flag_ro(const m_option_t* prop,int action,
switch(action) {
case M_PROPERTY_PRINT:
if(!arg) return 0;
- *(char**)arg = strdup((var > prop->min) ? _("enabled") : _("disabled"));
+ *(char**)arg = strdup((var > prop->min) ?
+ mp_gtext("enabled") : mp_gtext("disabled"));
return 1;
}
return m_property_int_ro(prop,action,arg,var);