# HG changeset patch # User Stany HENRY # Date 1184783920 -7200 # Node ID 190a447e5229a83802beffb4079c0cbfdfee515c # Parent ef8c6b02bdf7865ec0a41207c4f0db4ac2238f46 "About" window is now translatable. diff -r ef8c6b02bdf7 -r 190a447e5229 src/alac/plugin.c --- a/src/alac/plugin.c Tue Jul 17 13:15:16 2007 +0900 +++ b/src/alac/plugin.c Wed Jul 18 20:38:40 2007 +0200 @@ -71,19 +71,19 @@ if (ext != NULL) ++ext; - return ext; + return ext; } static void alac_about(void) { static GtkWidget *aboutbox; - + if(aboutbox != NULL) return; - aboutbox = xmms_show_message("About Apple Lossless Audio Plugin", - "Copyright (c) 2006 Audacious team\n" - "Portions (c) 2005-2006 David Hammerton ", + aboutbox = xmms_show_message(_("About Apple Lossless Audio Plugin"), + _("Copyright (c) 2006 Audacious team\n" + "Portions (c) 2005-2006 David Hammerton "), _("Ok"), FALSE, NULL, NULL); g_signal_connect(G_OBJECT(aboutbox), "destroy", @@ -102,7 +102,7 @@ if (!input_stream) return FALSE; - + /* if qtmovie_read returns successfully, the stream is up to * the movie data, which can be used directly by the decoder */ if (!qtmovie_read(input_stream, &demux_res)) @@ -156,7 +156,7 @@ vfs_fclose(input_file); return NULL; } - + /* if qtmovie_read returns successfully, the stream is up to * the movie data, which can be used directly by the decoder */ if (!qtmovie_read(input_stream, &demux_res))