annotate gui/ui/gtk/about.c @ 33963:335de7e0f6ed

Add the MPlayer title string to the about box. Additionally, indent URL less, put first names before surnames, add my name and revise some translation strings.
author ib
date Fri, 02 Sep 2011 09:58:55 +0000
parents d9b805602aa1
children a650895d50a5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26458
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
1 /*
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
2 * This file is part of MPlayer.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
3 *
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
4 * MPlayer is free software; you can redistribute it and/or modify
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
5 * it under the terms of the GNU General Public License as published by
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
6 * the Free Software Foundation; either version 2 of the License, or
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
7 * (at your option) any later version.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
8 *
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
9 * MPlayer is distributed in the hope that it will be useful,
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
12 * GNU General Public License for more details.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
13 *
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
14 * You should have received a copy of the GNU General Public License along
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
17 */
b0a7b35b78d2 Add standard GPL header to individual files.
diego
parents: 26382
diff changeset
18
26203
0d255d03016f #include config.h before all other headers.
diego
parents: 25601
diff changeset
19 #include "config.h"
26365
10dfbc523184 Add gui/ prefix to some #include paths so that compilation from the
diego
parents: 26203
diff changeset
20 #include "gui/app.h"
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
21 #include "help_mp.h"
33963
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
22 #include "version.h"
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
23
33570
f4a32f67fee7 Rename some pixmaps.
ib
parents: 33557
diff changeset
24 #include "gui/ui/pixmaps/emblem.xpm"
33557
71ec25d1da10 Fix compilation after r33644.
ib
parents: 33556
diff changeset
25 #include "gui/ui/widgets.h"
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
26 #include "about.h"
33572
d9b805602aa1 Rename some gtk files.
ib
parents: 33570
diff changeset
27 #include "tools.h"
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
28
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
29 GtkWidget * About = NULL;
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
30
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
31 void ShowAboutBox( void )
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
32 {
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
33 if ( About ) gtkActive( About );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
34 else About=create_About();
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
35 gtk_widget_show( About );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
36 }
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
37
30535
016e5fc1dead GUI: Mark functions that are not used outside their files as static.
diego
parents: 29263
diff changeset
38 static void abWidgetDestroy( GtkWidget * widget, GtkWidget ** widget_pointer )
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
39 { WidgetDestroy( NULL,&About ); }
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
40
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
41 GtkWidget * create_About( void )
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
42 {
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
43 GtkWidget * vbox;
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
44 GtkWidget * pixmap1;
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
45 GtkWidget * scrolledwindow1;
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
46 GtkWidget * AboutText;
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
47 GtkWidget * Ok;
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
48
27343
5fe6a8adf569 Rename two GUI-related preprocessor directives:
diego
parents: 26458
diff changeset
49 #ifdef CONFIG_GTK2
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
50 GtkTextBuffer * AboutTextBuffer;
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
51 GtkTextIter iter;
27343
5fe6a8adf569 Rename two GUI-related preprocessor directives:
diego
parents: 26458
diff changeset
52 #endif /* CONFIG_GTK2 */
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
53
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
54 GtkStyle * pixmapstyle;
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
55 GdkPixmap * pixmapwid;
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
56 GdkBitmap * mask;
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
57
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
58 GtkAccelGroup * accel_group;
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
59
33963
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
60 char title[128];
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
61
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
62 accel_group=gtk_accel_group_new();
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
63
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
64 About=gtk_window_new( GTK_WINDOW_TOPLEVEL );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
65 gtk_widget_set_name( About,MSGTR_About );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
66 gtk_object_set_data( GTK_OBJECT( About ),MSGTR_About,About );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
67 gtk_widget_set_usize( About,340,415 );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
68 gtk_window_set_title( GTK_WINDOW( About ),MSGTR_About );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
69 gtk_window_set_position( GTK_WINDOW( About ),GTK_WIN_POS_CENTER );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
70 gtk_window_set_policy( GTK_WINDOW( About ),TRUE,FALSE,FALSE );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
71 gtk_window_set_wmclass( GTK_WINDOW( About ),"About","MPlayer" );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
72
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
73 gtk_widget_realize( About );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
74 gtkAddIcon( About );
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27343
diff changeset
75
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
76 vbox=AddVBox( AddDialogFrame( About ),0 );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
77
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
78 pixmapstyle=gtk_widget_get_style( About );
33570
f4a32f67fee7 Rename some pixmaps.
ib
parents: 33557
diff changeset
79 pixmapwid=gdk_pixmap_colormap_create_from_xpm_d( About->window,gdk_colormap_get_system(),&mask,&pixmapstyle->bg[GTK_STATE_NORMAL],(gchar **) emblem_xpm );
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
80 pixmap1=gtk_pixmap_new( pixmapwid,mask );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
81
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
82 gtk_widget_set_name( pixmap1,"pixmap1" );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
83 gtk_widget_show( pixmap1 );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
84 gtk_box_pack_start( GTK_BOX( vbox ),pixmap1,FALSE,FALSE,0 );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
85 gtk_widget_set_usize( pixmap1,-2,174 );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
86
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
87 AddHSeparator( vbox );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
88
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
89 scrolledwindow1=gtk_scrolled_window_new( NULL,NULL );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
90 gtk_widget_set_name( scrolledwindow1,"scrolledwindow1" );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
91 gtk_widget_show( scrolledwindow1 );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
92 gtk_box_pack_start( GTK_BOX( vbox ),scrolledwindow1,TRUE,TRUE,0 );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
93 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW( scrolledwindow1 ),GTK_POLICY_AUTOMATIC,GTK_POLICY_AUTOMATIC );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
94
27343
5fe6a8adf569 Rename two GUI-related preprocessor directives:
diego
parents: 26458
diff changeset
95 #ifdef CONFIG_GTK2
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
96 AboutText = gtk_text_view_new();
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
97 gtk_text_view_set_editable(GTK_TEXT_VIEW(AboutText), FALSE);
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
98 gtk_text_view_set_cursor_visible(GTK_TEXT_VIEW(AboutText), FALSE);
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
99 AboutTextBuffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (AboutText));
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27343
diff changeset
100 gtk_text_buffer_get_iter_at_offset (AboutTextBuffer, &iter, 0);
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27343
diff changeset
101 #else
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
102 AboutText=gtk_text_new( NULL,NULL );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
103 gtk_text_set_editable(GTK_TEXT(AboutText), FALSE);
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
104 #endif
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
105 gtk_widget_set_name( AboutText,"AboutText" );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
106 gtk_widget_show( AboutText );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
107 gtk_container_add( GTK_CONTAINER( scrolledwindow1 ),AboutText );
33963
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
108 snprintf(title, sizeof(title), MP_TITLE, "MPlayer");
27343
5fe6a8adf569 Rename two GUI-related preprocessor directives:
diego
parents: 26458
diff changeset
109 #ifdef CONFIG_GTK2
33963
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
110 gtk_text_buffer_insert (AboutTextBuffer, &iter, title, -1);
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27343
diff changeset
111 gtk_text_buffer_insert (AboutTextBuffer, &iter,
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27343
diff changeset
112 #else
33963
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
113 gtk_text_insert( GTK_TEXT( AboutText ),NULL,NULL,NULL, title, -1 );
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
114 gtk_text_insert( GTK_TEXT( AboutText ),NULL,NULL,NULL,
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
115 #endif
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27343
diff changeset
116 "\n"
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27343
diff changeset
117 MSGTR_ABOUT_UHU
33963
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
118 " (http://www.uhulinux.hu/)\n"
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27343
diff changeset
119 "\n"
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27343
diff changeset
120 MSGTR_ABOUT_Contributors
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
121 "\n"
33963
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
122 " * Andreas Ackermann\n"
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
123 " * adland\n"
33963
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
124 " * Eric Anholt\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
125 " * Folke Ashberg\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
126 " * Dénes Balatoni\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
127 " * Zsolt Barat\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
128 " * Luca Barbato\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
129 " * Dmitry Baryshkov\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
130 " * Bertrand Baudet\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
131 " * Alban Bedel\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
132 " * Michael Behrisch\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
133 " * Luchezar Belev\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
134 " * Gábor Bérczi\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
135 " * Szabolcs Berecz\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
136 " * Alex Beregszászi\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
137 " * Tilmann Bitterberg\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
138 " * Diego Biurrun\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
139 " * Marcsu Blomenkamp\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
140 " * Ingo Brückl\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
141 " * Andrew Buehler\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
142 " * Eviv Bulgroz\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
143 " * Felix Bünemann\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
144 " * Moritz Bunkus\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
145 " * Dan Villiom Podlaski Christiansen\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
146 " * Jeff Clagg\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
147 " * compn\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
148 " * Marcus Comstedt\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
149 " * Kees Cook\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
150 " * Stephen Davies\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
151 " * Piero Di Vita\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
152 " * Tobias Diedrich\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
153 " * Florian Dietrich\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
154 " * Jeroen Dobbelaere\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
155 " * Reimar Döffinger\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
156 " * Romain Dolbeau\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
157 " * Ismail Dönmez\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
158 " * Robert Edele\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
159 " * Christoph Egger\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
160 " * Paul Wilhelm Elsinghorst\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
161 " * Bernd Ernesti\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
162 " * Salvatore Falco\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
163 " * Johannes Feigl\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
164 " * D Richard III Felker\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
165 " * Tim Ferguson\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
166 " * Ross Finlayson\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
167 " * Daniele Forghieri\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
168 " * Kilian A. Foth\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
169 " * Fabian Franz\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
170 " * Martin Gansser\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
171 " * Árpád Gereöffy\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
172 " * Matteo Giani\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
173 " * Sven Goethel\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
174 " * German Gomez Garcia\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
175 " * Alexander Gottwald\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
176 " * Michael Graffam\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
177 " * Andriy N. Gritsenko\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
178 " * Rémi Guyomarch\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
179 " * Jürgen Hammelmann\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
180 " * Christopher R. Hertel\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
181 " * Andreas Hess\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
182 " * Corey Hickey\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
183 " * Zoltán Hidvégi\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
184 " * Jens Hoffmann\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
185 " * David Holm\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
186 " * Bohdan Horst\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
187 " * Hampa Hug\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
188 " * Tomas Hurka\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
189 " * Sidik Isani\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
190 " * Panagiotis Issaris\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
191 " * Aurelien Jacobs\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
192 " * Reza Jelveh\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
193 " * Jonas Jermann\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
194 " * Anders Johansson\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
195 " * Nicholas Kain\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
196 " * Filip Kalinski\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
197 " * Ivan Kalvachev\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
198 " * Wojtek Kaniewski\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
199 " * Kim Minh Kaplan\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
200 " * Samuli Kärkkäinen\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
201 " * Jürgen Keil\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
202 " * Robert Kesterson\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
203 " * Attila Kinali\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
204 " * Gregory Kovriga\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
205 " * David Kühling\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
206 " * Fredrik Kuivinen\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
207 " * Nick Kurshev\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
208 " * Brian Kuschak\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
209 " * Vladimir Kushnir\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
210 " * Dave Lambley\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
211 " * Gyula László\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
212 " * Nicolas Le Gaillart\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
213 " * Gábor Lénárt\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
214 " * Colin Leroy\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
215 " * Oskar Liljeblad\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
216 " * Sam Lin\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
217 " * Pierre Lombard\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
218 " * Puk Madick\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
219 " * Jindrich Makovicka\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
220 " * Rudolf Marek\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
221 " * László Megyer\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
222 " * Mike Melanson\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
223 " * Arwed von Merkatz\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
224 " * Loren Merritt\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
225 " * Dominik Mierzejewski\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
226 " * Mihail Milushev\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
227 " * Nehal Mistry\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
228 " * András Mohari\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
229 " * Steven Mueller\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
230 " * Alexander Neundorf\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
231 " * Michael Niedermayer\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
232 " * Fredrik Noring\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
233 " * Christian Ohm\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
234 " * Joey Parrish\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
235 " * Dariusz Pietrzak\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
236 " * Nicolas Plourde\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
237 " * Lennart Poettering\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
238 " * Guillaume Poirier\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
239 " * Zoltán Ponekker\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
240 " * Ivo van Poorten\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
241 " * Lu Ran\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
242 " * Uwe Reder\n"
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
243 " * rgselk\n"
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
244 " * Rune Petersen\n"
33963
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
245 " * Ville Saari\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
246 " * Nico Sabbi\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
247 " * Björn Sandell\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
248 " * Tilman Sauerbeck\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
249 " * Frank Scherthan\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
250 " * Florian Schneider\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
251 " * Oliver Schoenbrunner\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
252 " * Oded Shimon\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
253 " * Peter Simon\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
254 " * Rik Snel\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
255 " * Sascha Sommer\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
256 " * Alexander Strasser\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
257 " * Kamil Strzelecki\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
258 " * Jiri Svoboda\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
259 " * Robert Swain\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
260 " * Ville Syrjälä\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
261 " * Gabor Szecsi\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
262 " * Jason Tackaberry\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
263 " * Howell Tam\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
264 " * Adam Tlalka\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
265 " * Gianluigi Tiesi\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
266 " * Roberto Togni\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
267 " * Salvador Eduardo Tropea\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
268 " * Miklós Vajna\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
269 " * Reynaldo H. Verdejo Pinochet\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
270 " * Per Wigren\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
271 " * Derek J Witt\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
272 " * Alan Young\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
273 " * Artur Zaprzala\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
274 " * Mark Zealey\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
275 " * Matan Ziv-Av\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
276 " * Márk Vicián Zoltán\n"
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27343
diff changeset
277 "\n"
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27343
diff changeset
278 MSGTR_ABOUT_Codecs_libs_contributions
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
279 "\n"
33963
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
280 " * Fabrice Bellard\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
281 " * Vivien Chappelier\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
282 " * Michael Hipp\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
283 " * Aaron Holtzman\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
284 " * Jake Janovetz\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
285 " * Zdenek Kabelac\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
286 " * Eugene Kuznetsov\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
287 " * Michel Lespinasse\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
288 " * Mark Podlipec\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
289 " * Damien Vincent\n"
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
290 "\n"
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27343
diff changeset
291 MSGTR_ABOUT_Translations
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
292 "\n"
33963
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
293 " * Marcin Biernat\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
294 " * Marc Fargas\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
295 " * Jiri Heryan\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
296 " * Marek Jarycki\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
297 " * Leszek Kaplita\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
298 " * Sebastian Krämer\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
299 " * Juan Martin López\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
300 " * Piotr Michniewski\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
301 " * Jakub Misiorny\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
302 " * Gábor Mizda\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
303 " * Maciej Paszta\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
304 " * Łukasz Proszek\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
305 " * Wacław Schiller\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
306 " * Andoni Zubimendi\n"
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
307 "\n"
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27343
diff changeset
308 MSGTR_ABOUT_Skins
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27343
diff changeset
309 "\n"
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
310 " * Azrael\n"
33963
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
311 " * Viktor Bekesi\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
312 " * Ingo Brückl\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
313 " * Andrew Carpenter\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
314 " * Charles Foucault\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
315 " * Attila Gyimesi\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
316 " * Alban Hertroys\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
317 " * Balint Kiss\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
318 " * Andre Kuehne\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
319 " * Rüdiger Kuhlmann\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
320 " * Dan Naumov\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
321 " * Ryan Northam\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
322 " * Juan Pablo Oyarzun Arroyo\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
323 " * DongCheon Park\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
324 " * Jurgen Pehrson\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
325 " * Nikola Pizurica\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
326 " * Oliwier Ptak\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
327 " * Pasquale Riccio\n"
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
328 " * Burt.S.\n"
33963
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
329 " * Jesper Schultz\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
330 " * Marcin Szumiela\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
331 " * Massimo Tisi\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
332 " * Jiri jun. Tyr\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
333 " * Ognian Vasilev\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
334 " * Imre Veres\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
335 " * Radic Vesko\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
336 " * Balasz Vigvary\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
337 " * Andrew Weber\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
338 " * Gary Jr. Whitmore\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
339 " * Franciszek Wilamowski\n"
335de7e0f6ed Add the MPlayer title string to the about box.
ib
parents: 33572
diff changeset
340 " * Michael Zeising", -1 );
23077
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
341
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
342 AddHSeparator( vbox );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
343 Ok=AddButton( MSGTR_Ok,AddHButtonBox( vbox ) );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
344
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
345 gtk_signal_connect( GTK_OBJECT( About ),"destroy",GTK_SIGNAL_FUNC( WidgetDestroy ),&About );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
346 gtk_signal_connect_object( GTK_OBJECT( Ok ),"clicked",GTK_SIGNAL_FUNC( abWidgetDestroy ),NULL );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
347
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
348 gtk_widget_add_accelerator( Ok,"clicked",accel_group,GDK_Escape,0,GTK_ACCEL_VISIBLE );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
349 gtk_widget_add_accelerator( Ok,"clicked",accel_group,GDK_Return,0,GTK_ACCEL_VISIBLE );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
350 gtk_window_add_accel_group( GTK_WINDOW( About ),accel_group );
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
351
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
352 return About;
17bf4f4b0715 Gui --> gui
diego
parents:
diff changeset
353 }