From e306174952d42e1cd6cc5efc50ae6bb0410501bc Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Tue, 7 Jul 2009 01:15:02 +0300 Subject: Translation system changes part 2: replace macros by strings Replace all MSGTR_ macros in the source by the corresponding English string. --- m_property.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'm_property.c') diff --git a/m_property.c b/m_property.c index ecf656f191..97f1340905 100644 --- a/m_property.c +++ b/m_property.c @@ -181,7 +181,7 @@ void m_properties_print_help_list(const m_option_t* list) { char min[50],max[50]; int i,count = 0; - mp_tmsg(MSGT_CFGPARSER, MSGL_INFO, MSGTR_PropertyListHeader); + mp_tmsg(MSGT_CFGPARSER, MSGL_INFO, "\n Name Type Min Max\n\n"); for(i = 0 ; list[i].name ; i++) { const m_option_t* opt = &list[i]; if(opt->flags & M_OPT_MIN) @@ -199,7 +199,7 @@ void m_properties_print_help_list(const m_option_t* list) { max); count++; } - mp_tmsg(MSGT_CFGPARSER, MSGL_INFO, MSGTR_TotalProperties, count); + mp_tmsg(MSGT_CFGPARSER, MSGL_INFO, "\nTotal: %d properties\n", count); } // Some generic property implementations @@ -250,7 +250,7 @@ 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) ? _(MSGTR_Enabled) : _(MSGTR_Disabled)); + *(char**)arg = strdup((var > prop->min) ? _("enabled") : _("disabled")); return 1; } return m_property_int_ro(prop,action,arg,var); -- cgit v1.2.3