X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmisc%2Fconfiguration.c;h=d20e2d9dd94958df56d80b7a7474d2ca22899a51;hb=91879fc76ebbe0cee33f3fb2e1eff565d3636143;hp=83b4caa43653dda03bfa6c3e168aa2054da86e50;hpb=8b836ad7d36ad81c6d58e357b4aa767ffe525b6e;p=vlc diff --git a/src/misc/configuration.c b/src/misc/configuration.c index 83b4caa436..d20e2d9dd9 100644 --- a/src/misc/configuration.c +++ b/src/misc/configuration.c @@ -1171,7 +1171,7 @@ static int SaveConfigFile( vlc_object_t *p_this, const char *psz_module_name, fprintf( file, "[%s]", p_parser->psz_object_name ); if( p_parser->psz_longname ) - fprintf( file, " # %s\n\n", p_parser->psz_longname ); + utf8_fprintf( file, " # %s\n\n", p_parser->psz_longname ); else fprintf( file, "\n\n" ); @@ -1207,7 +1207,7 @@ static int SaveConfigFile( vlc_object_t *p_this, const char *psz_module_name, case CONFIG_ITEM_BOOL: case CONFIG_ITEM_INTEGER: if( p_item->psz_text ) - fprintf( file, "# %s (%s)\n", p_item->psz_text, + utf8_fprintf( file, "# %s (%s)\n", p_item->psz_text, (p_item->i_type == CONFIG_ITEM_BOOL) ? _("boolean") : _("integer") ); if( i_value == p_item->i_value_orig ) @@ -1219,7 +1219,7 @@ static int SaveConfigFile( vlc_object_t *p_this, const char *psz_module_name, case CONFIG_ITEM_KEY: if( p_item->psz_text ) - fprintf( file, "# %s (%s)\n", p_item->psz_text, + utf8_fprintf( file, "# %s (%s)\n", p_item->psz_text, _("key") ); if( i_value == p_item->i_value_orig ) fprintf( file, "#" ); @@ -1233,7 +1233,7 @@ static int SaveConfigFile( vlc_object_t *p_this, const char *psz_module_name, case CONFIG_ITEM_FLOAT: if( p_item->psz_text ) - fprintf( file, "# %s (%s)\n", p_item->psz_text, + utf8_fprintf( file, "# %s (%s)\n", p_item->psz_text, _("float") ); if( f_value == p_item->f_value_orig ) fprintf( file, "#" ); @@ -1244,7 +1244,7 @@ static int SaveConfigFile( vlc_object_t *p_this, const char *psz_module_name, default: if( p_item->psz_text ) - fprintf( file, "# %s (%s)\n", p_item->psz_text, + utf8_fprintf( file, "# %s (%s)\n", p_item->psz_text, _("string") ); if( (!psz_value && !p_item->psz_value_orig) || (psz_value && p_item->psz_value_orig &&