2.8.2
This commit is contained in:
parent
5e5aa14370
commit
1255e7fabd
10
ChangeLog
10
ChangeLog
@ -1,5 +1,15 @@
|
||||
2005-08-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.2 ===
|
||||
|
||||
* gtk/gtkclipboard.c (request_image_received_func): Use the correct
|
||||
callback for image/gif, and also try image/bmp. (#314086, Mark
|
||||
Wielaard)
|
||||
|
||||
* gtk/gtkfilesystemunix.c (gtk_file_system_unix_volume_render_icon):
|
||||
Use gnome-dev-harddisk for volumes, not gnome-fs-blockdev. (#314382,
|
||||
Sebastien Bacher)
|
||||
|
||||
* NEWS: Updates
|
||||
|
||||
* gtk/gtksettings.c (gtk_settings_get_for_screen): Make sure font
|
||||
|
@ -1,5 +1,15 @@
|
||||
2005-08-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.2 ===
|
||||
|
||||
* gtk/gtkclipboard.c (request_image_received_func): Use the correct
|
||||
callback for image/gif, and also try image/bmp. (#314086, Mark
|
||||
Wielaard)
|
||||
|
||||
* gtk/gtkfilesystemunix.c (gtk_file_system_unix_volume_render_icon):
|
||||
Use gnome-dev-harddisk for volumes, not gnome-fs-blockdev. (#314382,
|
||||
Sebastien Bacher)
|
||||
|
||||
* NEWS: Updates
|
||||
|
||||
* gtk/gtksettings.c (gtk_settings_get_for_screen): Make sure font
|
||||
|
@ -1,5 +1,15 @@
|
||||
2005-08-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.2 ===
|
||||
|
||||
* gtk/gtkclipboard.c (request_image_received_func): Use the correct
|
||||
callback for image/gif, and also try image/bmp. (#314086, Mark
|
||||
Wielaard)
|
||||
|
||||
* gtk/gtkfilesystemunix.c (gtk_file_system_unix_volume_render_icon):
|
||||
Use gnome-dev-harddisk for volumes, not gnome-fs-blockdev. (#314382,
|
||||
Sebastien Bacher)
|
||||
|
||||
* NEWS: Updates
|
||||
|
||||
* gtk/gtksettings.c (gtk_settings_get_for_screen): Make sure font
|
||||
|
4
INSTALL
4
INSTALL
@ -18,8 +18,8 @@ GTK+ requires the following packages:
|
||||
Simple install procedure
|
||||
========================
|
||||
|
||||
% gzip -cd gtk+-2.8.1.tar.gz | tar xvf - # unpack the sources
|
||||
% cd gtk+-2.8.1 # change to the toplevel directory
|
||||
% gzip -cd gtk+-2.8.2.tar.gz | tar xvf - # unpack the sources
|
||||
% cd gtk+-2.8.2 # change to the toplevel directory
|
||||
% ./configure # run the `configure' script
|
||||
% make # build GTK
|
||||
[ Become root if necessary ]
|
||||
|
2
README
2
README
@ -1,7 +1,7 @@
|
||||
General Information
|
||||
===================
|
||||
|
||||
This is GTK+ version 2.8.1. GTK+ is a multi-platform toolkit for
|
||||
This is GTK+ version 2.8.2. GTK+ is a multi-platform toolkit for
|
||||
creating graphical user interfaces. Offering a complete set of widgets,
|
||||
GTK+ is suitable for projects ranging from small one-off projects to
|
||||
complete application suites.
|
||||
|
@ -1,5 +1,7 @@
|
||||
2005-08-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.2 ===
|
||||
|
||||
* === Released 2.8.1 ===
|
||||
|
||||
2005-08-13 Matthias Clasen <mclasen@redhat.com>
|
||||
|
@ -1,5 +1,7 @@
|
||||
2005-08-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.2 ===
|
||||
|
||||
* === Released 2.8.1 ===
|
||||
|
||||
2005-08-23 Matthias Clasen <mclasen@redhat.com>
|
||||
|
@ -1,5 +1,7 @@
|
||||
2005-08-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.2 ===
|
||||
|
||||
* === Released 2.8.1 ===
|
||||
|
||||
2005-08-18 Matthias Clasen <mclasen@redhat.com>
|
||||
|
@ -1004,6 +1004,7 @@ request_image_received_func (GtkClipboard *clipboard,
|
||||
{
|
||||
/* If we asked for image/png and didn't get it, try image/jpeg;
|
||||
* if we asked for image/jpeg and didn't get it, try image/gif;
|
||||
* if we asked for image/gif and didn't get it, try image/bmp;
|
||||
* If we asked for anything else and didn't get it, give up.
|
||||
*/
|
||||
if (selection_data->target == gdk_atom_intern ("image/png", FALSE))
|
||||
@ -1017,7 +1018,14 @@ request_image_received_func (GtkClipboard *clipboard,
|
||||
{
|
||||
gtk_clipboard_request_contents (clipboard,
|
||||
gdk_atom_intern ("image/gif", FALSE),
|
||||
request_text_received_func, info);
|
||||
request_image_received_func, info);
|
||||
return;
|
||||
}
|
||||
else if (selection_data->target == gdk_atom_intern ("image/gif", FALSE))
|
||||
{
|
||||
gtk_clipboard_request_contents (clipboard,
|
||||
gdk_atom_intern ("image/bmp", FALSE),
|
||||
request_image_received_func, info);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@ -808,7 +808,7 @@ gtk_file_system_unix_volume_render_icon (GtkFileSystem *file_system,
|
||||
{
|
||||
GdkPixbuf *pixbuf;
|
||||
|
||||
pixbuf = get_cached_icon (widget, "gnome-fs-blockdev", pixel_size);
|
||||
pixbuf = get_cached_icon (widget, "gnome-dev-harddisk", pixel_size);
|
||||
if (pixbuf)
|
||||
return pixbuf;
|
||||
|
||||
|
@ -1,5 +1,7 @@
|
||||
2005-08-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.2 ===
|
||||
|
||||
* === Released 2.8.1 ===
|
||||
|
||||
2005-08-13 Matthias Clasen <mclasen@redhat.com>
|
||||
|
@ -1,5 +1,7 @@
|
||||
2005-08-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.2 ===
|
||||
|
||||
* === Released 2.8.1 ===
|
||||
|
||||
2005-08-13 Matthias Clasen <mclasen@redhat.com>
|
||||
|
@ -1,5 +1,7 @@
|
||||
2005-08-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.2 ===
|
||||
|
||||
* === Released 2.8.1 ===
|
||||
|
||||
2005-08-15 Maxim Dziumanenko <mvd@mylinux.ua>
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties 2.6-branch\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-03-30 17:02+0200\n"
|
||||
"Last-Translator: Zuza Software Foundation <info@translate.org.za>\n"
|
||||
"Language-Team: Afrikaans <translate-discuss-af@lists.sourceforge.net>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2003-01-14 11:02+EDT\n"
|
||||
"Last-Translator: Ge'ez Frontier Foundation <locales@geez.org>\n"
|
||||
"Language-Team: Amharic <locales@geez.org>\n"
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-03-17 08:30+0100\n"
|
||||
"Last-Translator: Arafat Medini <lumina@silverpen.de>\n"
|
||||
"Language-Team: Arabic <doc@arabeyes.org>\n"
|
||||
|
@ -32,7 +32,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-03-07 18:05+0200\n"
|
||||
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
|
||||
"Language-Team: Azerbaijani Turkish <translation-team-az@lists.sourceforge."
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties gtk-2-4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-09-27 15:41+0330\n"
|
||||
"Last-Translator: Amir Hedayaty <amir@bamdad.org>\n"
|
||||
"Language-Team: Iranian Azerbaijani <az-ir@lists.sharif.edu>\n"
|
||||
|
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2003-03-31 07:40+0300\n"
|
||||
"Last-Translator: Ales Nyakhaychyk <nab@mail.by>\n"
|
||||
"Language-Team: Belarusian <i18n@mova.org>\n"
|
||||
|
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Gtk+-properties 2.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-07-25 09:43+0300\n"
|
||||
"Last-Translator: Vladimir Petkov <vpetkov@i-space.org>\n"
|
||||
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+.gtk-2-2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-03-18 10:45+0600\n"
|
||||
"Last-Translator: Progga <progga@BengaLinux.Org>\n"
|
||||
"Language-Team: Bangla <gnome-translation@BengaLinux.Org>\n"
|
||||
|
@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 2.3.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-01-15 16:03+0100\n"
|
||||
"Last-Translator: Thierry Vignaud <tvignaud@mandrakesoft.com>\n"
|
||||
"Language-Team: br <LL@li.org>\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.gtk-2-4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-07-19 00:47+0200\n"
|
||||
"Last-Translator: Kenan Hadžiavdić <kenan@bgnett.no>\n"
|
||||
"Language-Team: Bosnian <lokal@linux.org.ba>\n"
|
||||
|
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.3.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-04-11 02:41+0200\n"
|
||||
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
|
||||
"Language-Team: Catalan <tradgnome@softcatala.org>\n"
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-07-23 18:29+0200\n"
|
||||
"Last-Translator: Miloslav Trmac <bukm@centrum.cz>\n"
|
||||
"Language-Team: Czech <cs@li.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-08-09 22:45+0100\n"
|
||||
"Last-Translator: Rhys Jones <rhys@sucs.org>\n"
|
||||
"Language-Team: Cymraeg <gnome-cy@pengwyn.linux.org.uk>\n"
|
||||
|
@ -35,7 +35,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-06-20 21:32+0200\n"
|
||||
"Last-Translator: Martin Willemoes Hansen <mwh@sysrq.dk>\n"
|
||||
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
|
||||
|
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GTK+ HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-07-26 22:19+0200\n"
|
||||
"Last-Translator: Hendrik Brandt <heb@gnome-de.org>\n"
|
||||
"Language-Team: German <gnome-de@gnome.org>\n"
|
||||
|
@ -26,7 +26,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: el\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-08-12 18:14+0300\n"
|
||||
"Last-Translator: Kostas Papadimas <pkst@gnome.org>\n"
|
||||
"Language-Team: Greek <team@gnome.gr>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-07-22 22:53-0400\n"
|
||||
"Last-Translator: Adam Weinberger <adamw@gnome.org>\n"
|
||||
"Language-Team: Canadian English <adamw@gnome.org>\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 1.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-04-07 21:34-0400\n"
|
||||
"Last-Translator: David Lodge <dave@cirt.net>\n"
|
||||
"Language-Team: \n"
|
||||
|
@ -14,7 +14,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GTK-2.7\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-07-24 18:47+0200\n"
|
||||
"Last-Translator: Francisco Javier F. Serrador <serrador@gnome.org>\n"
|
||||
"Language-Team: <traductores@es.gnome.org>\n"
|
||||
|
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-07-27 10:12+0300\n"
|
||||
"Last-Translator: Ivar Smolin <okul@linux.ee> \n"
|
||||
"Language-Team: Estonian <gnome-et@linux.ee>\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: eu\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-04-13 20:22+0200\n"
|
||||
"Last-Translator: Hizkuntza Politikarako Sailburuordetza <hizkpol@ej-gv.es>\n"
|
||||
"Language-Team: <itzulpena@euskalgnu.org>\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.3.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-01-03 17:49+0330\n"
|
||||
"Last-Translator: Roozbeh Pournader <roozbeh@sharif.edu>\n"
|
||||
"Language-Team: Persian <farsi@lists.sharif.edu>\n"
|
||||
|
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-07-28 19:34+0300\n"
|
||||
"Last-Translator: Ilkka Tuohela <hile@iki.fi>\n"
|
||||
"Language-Team: Finnish <gnome-fi-laatu@lists.sourceforge.net>\n"
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+_properties 2.3.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-02-24 19:01+0100\n"
|
||||
"Last-Translator: Christophe Merlet (RedFox) <redfox@redfoxcenter.org>\n"
|
||||
"Language-Team: GNOME French Team <gnomefr@traduc.org>\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-01-14 07:18+0000\n"
|
||||
"Last-Translator: Alastair McKinstry <mckinstry@computer.org\n"
|
||||
"Language-Team: Gaeilge <gaeilge-gnulinux@lists.sourceforge.net>\n"
|
||||
|
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 1.3.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2000-08-10 23:10+0200\n"
|
||||
"Last-Translator: Jesus Bravo Alvarez <jba@pobox.com>\n"
|
||||
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
|
||||
|
@ -92,7 +92,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD.gu\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-07-27 12:16+0530\n"
|
||||
"Last-Translator: Ankit Patel <ankit644@yahoo.com>\n"
|
||||
"Language-Team: Gujarati <indianoss-gujarati@lists.sourceforge.net>\n"
|
||||
|
@ -19,7 +19,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+.HEAD.he\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2002-12-07 10:05+0200\n"
|
||||
"Last-Translator: Gil 'Dolfin' Osher <dolfin@rpg.org.il>\n"
|
||||
"Language-Team: Hebrew <he@li.org>\n"
|
||||
|
@ -523,7 +523,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD.hi\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-07-07 15:07+0530\n"
|
||||
"Last-Translator: Rajesh Ranjan <rranjan@redhat.com>\n"
|
||||
"Language-Team: Hindi <fedora-trans-hi@redhat.com>\n"
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties 0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-03-24 05:39+CET\n"
|
||||
"Last-Translator: Robert Sedak <robert.sedak@sk.tel.hr>\n"
|
||||
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
|
||||
|
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD.hu\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-08-14 10:09+0200\n"
|
||||
"Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
|
||||
"Language-Team: Hungarian <gnome@gnome.hu>\n"
|
||||
|
@ -49,7 +49,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+.HEAD.hy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-07-19 17:50+0500\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: <en@li.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 1.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2000-10-27 02:02+0100\n"
|
||||
"Last-Translator: Robert Brady <rwb197@zepler.org>\n"
|
||||
"Language-Team: Interlingua\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-08-07 23:38+0300\n"
|
||||
"Last-Translator: Mohammad DAMT <mdamt@bisnisweb.com>\n"
|
||||
"Language-Team: Indonesia <sukarelawan@gnome.linux.or.id>\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk 2.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2003-07-22 16:05+0000\n"
|
||||
"Last-Translator: Richard Allen <ra@ra.is>\n"
|
||||
"Language-Team: is <is@li.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-03-02 22:17+0100\n"
|
||||
"Last-Translator: Alessio Dessi <alessiodessi@tiscali.it>\n"
|
||||
"Language-Team: Italian <tp@lists.linux.it>\n"
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-07-31 22:04+0900\n"
|
||||
"Last-Translator: Takeshi AIHANA <aihana@gnome.gr.jp>\n"
|
||||
"Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n"
|
||||
|
@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properrties 2.3.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-03-04 01:54+0900\n"
|
||||
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
|
||||
"Language-Team: GNOME Korea <gnome-kr-hackers@lists.kldp.net>\n"
|
||||
|
@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2003-05-28 17:57+0000\n"
|
||||
"Last-Translator: Mathieu van Woerkom <mathieu.brabants.org>\n"
|
||||
"Language-Team: Limburgish <li.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-01-06 19:45+0200\n"
|
||||
"Last-Translator: Žygimantas Beručka <uid0@akl.lt>\n"
|
||||
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
|
||||
|
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2002-12-19 16:10+0200\n"
|
||||
"Last-Translator: Artis Trops <hornet@navigator.lv>\n"
|
||||
"Language-Team: Latvian <ll10nt@os.lv>\n"
|
||||
|
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-02-06 21:52+1300\n"
|
||||
"Last-Translator: John C Barstow <jbowtie@amathaine.com>\n"
|
||||
"Language-Team: Maori <maori@nzlinux.org.nz>\n"
|
||||
|
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mk\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-08-11 21:07+0200\n"
|
||||
"Last-Translator: Арангел Ангов <ufo@linux.net.mk>\n"
|
||||
"Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version:gtk+.gtk-2-2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2003-07-05 10:29+0530\n"
|
||||
"Last-Translator: FSF-India <locale@gnu.org.in>\n"
|
||||
"Language-Team: Malayalam <locale@gnu.org.in>\n"
|
||||
|
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-03-09 12:13+0100\n"
|
||||
"Last-Translator: Sanlig Badral <badral@openmn.org>\n"
|
||||
"Language-Team: Mongolian <openmn-core@lists.sf.net>\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+.mr\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-03-13 14:59+0530\n"
|
||||
"Last-Translator: Jitendra Shah <jitendras@vsnl.com>\n"
|
||||
"Language-Team: Marathi <www.indictrans.org>\n"
|
||||
|
@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Gtk+ 1.3.x\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-01-20 00:57+0730\n"
|
||||
"Last-Translator: Hasbullah Bin Pit <sebol@ikhlas.com>\n"
|
||||
"Language-Team: Projek Gabai <gabai-penyumbang@list.sourceforge.net>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: nb\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-08-12 13:40+0200\n"
|
||||
"Last-Translator: Terance Edward Sola <terance@lyse.net>\n"
|
||||
"Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\n"
|
||||
|
@ -4,7 +4,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-05-15 15:47+0545\n"
|
||||
"Last-Translator: Ganesh Ghimire <gghimire@gmail.com>\n"
|
||||
"Language-Team: Nepali <info@mpp.org.np>\n"
|
||||
|
@ -19,7 +19,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-07-22 01:23+0200\n"
|
||||
"Last-Translator: Tino Meinen <a.t.meinen@chello.nl>\n"
|
||||
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
|
||||
|
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: nn\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-01-03 23:53+0100\n"
|
||||
"Last-Translator: Åsmund Skjæveland <aasmunds@fys.uio.no>\n"
|
||||
"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: nb\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-08-12 13:40+0200\n"
|
||||
"Last-Translator: Terance Edward Sola <terance@lyse.net>\n"
|
||||
"Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties 2.8-branch\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-11-30 15:02+0200\n"
|
||||
"Last-Translator: Zuza Software Foundation <info@translate.org.za>\n"
|
||||
"Language-Team: Northern Sotho <translate-discuss-nso@lists.sourceforge.net>\n"
|
||||
|
@ -126,7 +126,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-08-22 18:18+0530\n"
|
||||
"Last-Translator: Amanpreet Singh Brar <amanpreetalam@yahoo.com>\n"
|
||||
"Language-Team: Punjabi <fedora-trans-pa@redhat.com>\n"
|
||||
|
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2003-11-14 17:38+0100\n"
|
||||
"Last-Translator: Gnome PL Team <translators@gnomepl.org>\n"
|
||||
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 2.12\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-07-23 15:25+0000\n"
|
||||
"Last-Translator: Duarte Loreto <happyguy_pt@hotmail.com>\n"
|
||||
"Language-Team: Portuguese <gnome_pt@yahoogroups.com>\n"
|
||||
|
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.gtk-2-6.pt_BR\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-03-30 19:32-0300\n"
|
||||
"Last-Translator: Afonso Celso Medina <medina@maua.br>\n"
|
||||
"Language-Team: Português/Brasil <gnome-l10n-br@listas.cipsga.org.br>\n"
|
||||
|
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-08-14 22:12+0300\n"
|
||||
"Last-Translator: Mişu Moldovan <dumol@gnome.ro>\n"
|
||||
"Language-Team: Română <gnomero-list@lists.sourceforge.net>\n"
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-12-17 19:22+0200\n"
|
||||
"Last-Translator: Leonid Kanter <leon@asplinux.ru>\n"
|
||||
"Language-Team: <gnome-cyr@gnome.org>\n"
|
||||
|
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 317\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-11-17 21:21-0700\n"
|
||||
"Last-Translator: Steve Murphy <murf@e-tools.com>\n"
|
||||
"Language-Team: Kinyarwanda <en@li.org>\n"
|
||||
|
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-08-05 22:54+0200\n"
|
||||
"Last-Translator: Marcel Telka <marcel@telka.sk>\n"
|
||||
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
|
||||
|
@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GTK+ 1.4.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2002-02-26 00:23+0100\n"
|
||||
"Last-Translator: Andraž Tori <andraz.tori1@guest.arnes.si>\n"
|
||||
"Language-Team: slovenian <sl@li.org>\n"
|
||||
|
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD.sq\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-07-28 11:09+0200\n"
|
||||
"Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n"
|
||||
"Language-Team: Albanian <gnome-albanian-perkthyesit@lists.sourceforge.net>\n"
|
||||
|
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-07-09 12:08+0200\n"
|
||||
"Last-Translator: Данило Шеган <danilo@gnome.org>\n"
|
||||
"Language-Team: Serbian (sr) <gnom@prevod.org>\n"
|
||||
|
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-07-09 12:08+0200\n"
|
||||
"Last-Translator: Danilo Šegan <danilo@gnome.org>\n"
|
||||
"Language-Team: Serbian (sr) <gnom@prevod.org>\n"
|
||||
|
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-03-09 05:28+0100\n"
|
||||
"Last-Translator: Bojan Suzic <bojans@teol.net>\n"
|
||||
"Language-Team: Serbian (sr) <serbiangnome-lista@nongnu.org>\n"
|
||||
|
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-12-18 15:10+0100\n"
|
||||
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
|
||||
"Language-Team: Swedish <sv@li.org>\n"
|
||||
|
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Tamil Gtk 2.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-02-21 18:21-0600\n"
|
||||
"Last-Translator: Dinesh Nadarajah <dinesh_list@sbcglobal.net>\n"
|
||||
"Language-Team: Tamil <tamilinix@yahoogroups.com>\n"
|
||||
|
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.8\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-08-04 22:50+0530\n"
|
||||
"Last-Translator: Sunil Mohan Adapa <sunil@atc.tcs.co.in>\n"
|
||||
"Language-Team: Swecha <indlinux-telugu@lists.sourceforge.net>\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-02-16 21:19-0600\n"
|
||||
"Last-Translator: Paisa Seeluangsawat <paisa@users.sf.net>\n"
|
||||
"Language-Team: Thai <L10n@opentle.net>\n"
|
||||
|
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-05-25 17:46+0330\n"
|
||||
"Last-Translator: Gurban Mühemmet Tewekgeli <gmtavakkoli@yahoo.com>\n"
|
||||
"Language-Team: Turkmen <kakilikgroup@yahoo.com>\n"
|
||||
|
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-04-09 17:26+0300\n"
|
||||
"Last-Translator: Baris Cicek <baris@teamforce.name.tr>\n"
|
||||
"Language-Team: Turkish <gnome-turk@gnome.org>\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.4.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-08-15 18:33+0200\n"
|
||||
"Last-Translator: Maxim Dziumanenko <mvd@mylinux.ua>\n"
|
||||
"Language-Team: Ukrainian <uk@li.org>\n"
|
||||
|
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+.gtk-2-4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-07-19 18:54+0200\n"
|
||||
"Last-Translator: Mashrab Kuvatov <kmashrab@uni-bremen.de>\n"
|
||||
"Language-Team: Uzbek <kmashrab@uni-bremen.de>\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk20\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2003-09-06 00:29+0200\n"
|
||||
"Last-Translator: Mashrab Kuvatov <kmashrab@uni-bremen.de>\n"
|
||||
"Language-Team: Uzbek <uz-li@yahoogroups.com>\n"
|
||||
|
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Gtk+ VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2003-01-08 20:42+0700\n"
|
||||
"Last-Translator: pclouds <pclouds@gmx.net>\n"
|
||||
"Language-Team: GnomeVN\n"
|
||||
|
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk20 1.3.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-05-03 14:21+0200\n"
|
||||
"Last-Translator: Pablo Saratxaga <pablo@walon.org>\n"
|
||||
"Language-Team: Walloon <linux-wa@walon.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-02-08 08:59+0200\n"
|
||||
"Last-Translator: Canonical Ltd <translations@canonical.com>\n"
|
||||
"Language-Team: Xhosa <xh-translate@ubuntu.com>\n"
|
||||
|
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 1.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2003-02-11\n"
|
||||
"Last-Translator: Raphael Finkel <raphael@cs.uky.edu>\n"
|
||||
"Language-Team: None <>\n"
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-07-23 15:01+0800\n"
|
||||
"Last-Translator: Funda Wang <fundawang@linux.net.cn>\n"
|
||||
"Language-Team: zh_CN <i18n-translation@lists.linux.net.cn>\n"
|
||||
|
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties 2.6.9\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:39-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2005-06-17 20:04+0800\n"
|
||||
"Last-Translator: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>\n"
|
||||
"Language-Team: Chinese/Traditional <community@linuxhall.org>\n"
|
||||
|
@ -1,5 +1,7 @@
|
||||
2005-08-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.2 ===
|
||||
|
||||
* === Released 2.8.1 ===
|
||||
|
||||
2005-08-23 Gabor Kelemen <kelemeng@gnome.hu>
|
||||
|
2
po/af.po
2
po/af.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.6-branch\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:38-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-03-30 17:02+0200\n"
|
||||
"Last-Translator: Zuza Software Foundation <info@translate.org.za>\n"
|
||||
"Language-Team: Afrikaans <translate-discuss-af@lists.sourceforge.net>\n"
|
||||
|
2
po/am.po
2
po/am.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:38-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2003-01-14 11:02+EDT\n"
|
||||
"Last-Translator: Ge'ez Frontier Foundation <locales@geez.org>\n"
|
||||
"Language-Team: Amharic <locales@geez.org>\n"
|
||||
|
2
po/ar.po
2
po/ar.po
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:38-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-08-30 19:23+0300\n"
|
||||
"Last-Translator: Ayman Hourieh <aymanh@gmail.com>\n"
|
||||
"Language-Team: Arabic <support@arabeyes.org>\n"
|
||||
|
2
po/az.po
2
po/az.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:38-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-04-17 22:41+0300\n"
|
||||
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
|
||||
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ gtk-2-4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 01:38-0400\n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"PO-Revision-Date: 2004-09-27 14:58+0330\n"
|
||||
"Last-Translator: Amir Hedayaty <amir@bamdad.org>\n"
|
||||
"Language-Team: Iranian Azerbaijani <az-ir@lists.sharif.edu>\n"
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user