[vlc-devel] commit: Do not translate "" ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sat Jan 23 19:34:20 CET 2010
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Jan 23 20:33:35 2010 +0200| [10d0f724bc1ad48ed2b7729c612af01c4073b569] | committer: Rémi Denis-Courmont
Do not translate ""
That would return the PO file metadatas.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=10d0f724bc1ad48ed2b7729c612af01c4073b569
---
src/libvlc.c | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/libvlc.c b/src/libvlc.c
index c677df9..34926ae 100644
--- a/src/libvlc.c
+++ b/src/libvlc.c
@@ -1385,14 +1385,14 @@ static void print_help_section( module_config_t *p_item, bool b_color, bool b_de
if( b_color )
{
utf8_fprintf( stdout, RED" %s:\n"GRAY, _( p_item->psz_text ) );
- if( b_description && p_item->psz_longtext )
+ if( b_description && p_item->psz_longtext && *p_item->psz_longtext )
utf8_fprintf( stdout, MAGENTA" %s\n"GRAY,
_( p_item->psz_longtext ) );
}
else
{
utf8_fprintf( stdout, " %s:\n", _( p_item->psz_text ) );
- if( b_description && p_item->psz_longtext )
+ if( b_description && p_item->psz_longtext && *p_item->psz_longtext )
utf8_fprintf( stdout, " %s\n", _( p_item->psz_longtext ) );
}
}
@@ -1583,7 +1583,8 @@ static void Usage( libvlc_int_t *p_this, char const *psz_search )
utf8_fprintf( stdout, "\n %s\n",
_( p_item->psz_text ) );
}
- if( b_description && p_item->psz_longtext )
+ if( b_description && p_item->psz_longtext
+ && *p_item->psz_longtext )
{
if( b_color )
utf8_fprintf( stdout, CYAN " %s\n" GRAY,
@@ -1825,7 +1826,8 @@ static void Usage( libvlc_int_t *p_this, char const *psz_search )
}
}
- if( b_description_hack && p_item->psz_longtext )
+ if( b_description_hack && p_item->psz_longtext
+ && *p_item->psz_longtext )
{
sprintf( psz_buffer, "%s%s", _( p_item->psz_longtext ),
psz_suf );
More information about the vlc-devel
mailing list