mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-23 22:16:16 +01:00
2.14.3
svn path=/trunk/; revision=5802
This commit is contained in:
parent
62df696da1
commit
1c6dffc356
@ -1,5 +1,7 @@
|
||||
2007-11-07 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.14.3 ===
|
||||
|
||||
* NEWS: Updates
|
||||
|
||||
2007-11-06 Matthias Clasen <mclasen@redhat.com>
|
||||
|
4
INSTALL
4
INSTALL
@ -1,8 +1,8 @@
|
||||
Simple install procedure
|
||||
========================
|
||||
|
||||
% gzip -cd glib-2.14.2.tar.gz | tar xvf - # unpack the sources
|
||||
% cd glib-2.14.2 # change to the toplevel directory
|
||||
% gzip -cd glib-2.14.3.tar.gz | tar xvf - # unpack the sources
|
||||
% cd glib-2.14.3 # change to the toplevel directory
|
||||
% ./configure # run the `configure' script
|
||||
% make # build GLIB
|
||||
|
||||
|
2
README
2
README
@ -1,7 +1,7 @@
|
||||
General Information
|
||||
===================
|
||||
|
||||
This is GLib version 2.14.2. GLib is the low-level core
|
||||
This is GLib version 2.14.3. GLib is the low-level core
|
||||
library that forms the basis for projects such as GTK+ and GNOME. It
|
||||
provides data structure handling for C, portability wrappers, and
|
||||
interfaces for such runtime functionality as an event loop, threads,
|
||||
|
@ -1,3 +1,7 @@
|
||||
2007-11-07 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.14.3 ===
|
||||
|
||||
2007-11-05 Mathias Hasselmann <mathias@openismus.com>
|
||||
|
||||
* docs/reference/gobject/tut_gtype.xml: Use correct naming conventions
|
||||
|
@ -729,9 +729,6 @@ you would use %G_IO_IN | %G_IO_HUP | %G_IO_ERR, and for writing you would use
|
||||
|
||||
</para>
|
||||
|
||||
@fd:
|
||||
@fd:
|
||||
@events:
|
||||
@revents:
|
||||
|
||||
<!-- ##### STRUCT GSource ##### -->
|
||||
|
@ -232,11 +232,13 @@ than to write one yourself using g_enum_register_static().
|
||||
</para>
|
||||
|
||||
@name: A nul-terminated string used as the name of the new type.
|
||||
@_static_values:
|
||||
@Returns: The new type identifier.
|
||||
<!-- # Unused Parameters # -->
|
||||
@const_static_values: An array of #GEnumValue structs for the possible
|
||||
enumeration values. The array is terminated by a struct with all
|
||||
members being 0. GObject keeps a reference to the data, so it cannot
|
||||
be stack-allocated.
|
||||
@Returns: The new type identifier.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_flags_register_static ##### -->
|
||||
@ -250,10 +252,12 @@ than to write one yourself using g_flags_register_static().
|
||||
</para>
|
||||
|
||||
@name: A nul-terminated string used as the name of the new type.
|
||||
@_static_values:
|
||||
@Returns: The new type identifier.
|
||||
<!-- # Unused Parameters # -->
|
||||
@const_static_values: An array of #GFlagsValue structs for the possible
|
||||
flags values. The array is terminated by a struct with all members being 0.
|
||||
GObject keeps a reference to the data, so it cannot be stack-allocated.
|
||||
@Returns: The new type identifier.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_enum_complete_type_info ##### -->
|
||||
@ -282,6 +286,8 @@ my_enum_complete_type_info (GTypePlugin *plugin,
|
||||
|
||||
@g_enum_type: the type identifier of the type being completed
|
||||
@info: the #GTypeInfo struct to be filled in
|
||||
@_values:
|
||||
<!-- # Unused Parameters # -->
|
||||
@const_values: An array of #GEnumValue structs for the possible
|
||||
enumeration values. The array is terminated by a struct with all
|
||||
members being 0.
|
||||
@ -296,6 +302,8 @@ g_enumeration_complete_type_info() above.
|
||||
|
||||
@g_flags_type: the type identifier of the type being completed
|
||||
@info: the #GTypeInfo struct to be filled in
|
||||
@_values:
|
||||
<!-- # Unused Parameters # -->
|
||||
@const_values: An array of #GFlagsValue structs for the possible
|
||||
enumeration values. The array is terminated by a struct with all
|
||||
members being 0.
|
||||
|
@ -149,12 +149,6 @@ can be configured.
|
||||
parameter is guaranteed to remain valid and
|
||||
unmodified for the lifetime of the parameter.
|
||||
Since 2.8
|
||||
@G_PARAM_PRIVATE: Old name for the %G_PARAM_STATIC_NAME flag.
|
||||
Deprecated since 2.8.
|
||||
@G_PARAM_STATIC_NICK: the string used as nick when constructing the
|
||||
parameter is guaranteed to remain valid and
|
||||
unmodified for the lifetime of the parameter.
|
||||
Since 2.8
|
||||
@G_PARAM_STATIC_BLURB: the string used as blurb when constructing the
|
||||
parameter is guaranteed to remain valid and
|
||||
unmodified for the lifetime of the parameter.
|
||||
|
@ -164,11 +164,13 @@ not be unloaded.
|
||||
|
||||
@module: a #GTypeModule
|
||||
@name: name for the type
|
||||
@_static_values:
|
||||
@Returns: the new or existing type ID
|
||||
@Since: 2.6
|
||||
<!-- # Unused Parameters # -->
|
||||
@const_static_values: an array of #GEnumValue structs for the possible
|
||||
enumeration values. The array is terminated by a struct with all
|
||||
members being 0.
|
||||
@Returns: the new or existing type ID
|
||||
@Since: 2.6
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_type_module_register_flags ##### -->
|
||||
@ -185,11 +187,13 @@ not be unloaded.
|
||||
|
||||
@module: a #GTypeModule
|
||||
@name: name for the type
|
||||
@_static_values:
|
||||
@Returns: the new or existing type ID
|
||||
@Since: 2.6
|
||||
<!-- # Unused Parameters # -->
|
||||
@const_static_values: an array of #GFlagsValue structs for the possible
|
||||
flags values. The array is terminated by a struct with all
|
||||
members being 0.
|
||||
@Returns: the new or existing type ID
|
||||
@Since: 2.6
|
||||
|
||||
|
||||
<!-- ##### MACRO G_DEFINE_DYNAMIC_TYPE ##### -->
|
||||
|
@ -49,6 +49,7 @@ libpcre_la_SOURCES = \
|
||||
pcre.h \
|
||||
pcre_internal.h \
|
||||
ucp.h \
|
||||
ucpinternal.h \
|
||||
$(libpcre_headers)
|
||||
|
||||
libpcre_la_LIBADD = $(DEP_LIBS)
|
||||
|
@ -1,3 +1,7 @@
|
||||
2007-11-07 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.14.3 ===
|
||||
|
||||
2007-10-16 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.14.2 ===
|
||||
|
@ -1,3 +1,7 @@
|
||||
2007-11-07 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.14.3 ===
|
||||
|
||||
2007-10-16 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.14.2 ===
|
||||
|
@ -1,3 +1,7 @@
|
||||
2007-11-07 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.14.3 ===
|
||||
|
||||
2007-10-16 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.14.2 ===
|
||||
|
@ -1,3 +1,7 @@
|
||||
2007-11-07 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.14.3 ===
|
||||
|
||||
2007-10-29 Priit Laes <plaes@svn.gnome.org>
|
||||
|
||||
* et.po: Translation updated by Priit Laes.
|
||||
|
2
po/am.po
2
po/am.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2003-01-16 08:39+EDT\n"
|
||||
"Last-Translator: Ge'ez Frontier Foundation <locales@geez.org>\n"
|
||||
"Language-Team: Amharic <locales@geez.org>\n"
|
||||
|
2
po/as.po
2
po/as.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: as\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-07-25 15:21+0530\n"
|
||||
"Last-Translator: Amitakhya Phukan <amitakhya@svn.gnome.org>\n"
|
||||
"Language-Team: Assamese\n"
|
||||
|
2
po/az.po
2
po/az.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD.az\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2004-02-02 12:12+0200\n"
|
||||
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
|
||||
"Language-Team: Azerbaijani Turkish <gnome@azitt.com>\n"
|
||||
|
2
po/be.po
2
po/be.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2005-11-16 11:21+0200\n"
|
||||
"Last-Translator: Vital Khilko <vk@altlinux.ru>\n"
|
||||
"Language-Team: Belarusian <i18n@mova.org>\n"
|
||||
|
411
po/be@latin.po
411
po/be@latin.po
File diff suppressed because it is too large
Load Diff
2
po/bg.po
2
po/bg.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib trunk\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-08-26 21:13+0300\n"
|
||||
"Last-Translator: Alexander Shopov <ash@contact.bg>\n"
|
||||
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
|
||||
|
2
po/bn.po
2
po/bn.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 0.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2006-08-31 21:21+0600\n"
|
||||
"Last-Translator: Khandakar Mujahidul Islam <suzan@bengalinux.org>\n"
|
||||
"Language-Team: Bengali <gnome-translation@bengalinux.org>\n"
|
||||
|
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-07-10 12:49+0530\n"
|
||||
"Last-Translator: Runa Bhattacharjee <runabh@gmail.com>\n"
|
||||
"Language-Team: Bengali (India) <en@li.org>\n"
|
||||
|
2
po/bs.po
2
po/bs.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.glib-2-4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2004-05-17 01:30+0000\n"
|
||||
"Last-Translator: Kenan Hadžiavdić <kenanh@frisurf.no>\n"
|
||||
"Language-Team: Bosnian <lokal@lugbih.org>\n"
|
||||
|
2
po/ca.po
2
po/ca.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.8\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-08-26 23:50+0200\n"
|
||||
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
|
||||
"Language-Team: Catalan <tradgnome@softcatala.org>\n"
|
||||
|
2
po/cs.po
2
po/cs.po
@ -14,7 +14,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: cs\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-01-05 13:34+0100\n"
|
||||
"Last-Translator: Jakub Friedl <jfriedl@suse.cz>\n"
|
||||
"Language-Team: Czech <gnome-cs-list@gnome.org>\n"
|
||||
|
2
po/cy.po
2
po/cy.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2006-06-29 19:38+0100\n"
|
||||
"Last-Translator: Rhys Jones <rhys@sucs.org>\n"
|
||||
"Language-Team: Welsh <gnome-cy@pengwyn.linux.org.uk>\n"
|
||||
|
2
po/da.po
2
po/da.po
@ -15,7 +15,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-08-30 19:00+0200\n"
|
||||
"Last-Translator: Ask Hjorth Larsen <asklarsen@gmail.com>\n"
|
||||
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
|
||||
|
2
po/de.po
2
po/de.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-08-14 14:28+0200\n"
|
||||
"Last-Translator: Hendrik Richter <hendrikr@gnome.org>\n"
|
||||
"Language-Team: German <gnome-de@gnome.org>\n"
|
||||
|
2
po/dz.po
2
po/dz.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD.dz\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2006-08-09 10:23+0530\n"
|
||||
"Last-Translator: Mindu Dorji\n"
|
||||
"Language-Team: DZONGKHA <pgeyleg@dit.gov.bt>\n"
|
||||
|
2
po/el.po
2
po/el.po
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: el\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2006-02-20 12:47+0200\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: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2005-08-27 16:20-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: GLIB\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-09-14 07:13-0000\n"
|
||||
"Last-Translator: David Lodge <dave@cirt.net>\n"
|
||||
"Language-Team: \n"
|
||||
|
2
po/eo.po
2
po/eo.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.3.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2003-07-01 15:10-0500\n"
|
||||
"Last-Translator: Charles Voelger <cvoelger@dweasel.com>\n"
|
||||
"Language-Team: Esperanto <LL@li.org>\n"
|
||||
|
2
po/es.po
2
po/es.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD.es\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-08-10 14:52+0200\n"
|
||||
"Last-Translator: Jorge González <jorgegonz@svn.gnome.org>\n"
|
||||
"Language-Team: Spanish <traductores@es.gnome.org>\n"
|
||||
|
2
po/eu.po
2
po/eu.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: eu\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-09-16 15:56+0200\n"
|
||||
"Last-Translator: Iñaki Larrañaga Murgoitio <dooteo@zundan.com>\n"
|
||||
"Language-Team: Basque <itzulpena@euskalgnu.org>\n"
|
||||
|
2
po/fa.po
2
po/fa.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2006-09-04 18:36+0330\n"
|
||||
"Last-Translator: Roozbeh Pournader <roozbeh@farsiweb.info>\n"
|
||||
"Language-Team: Persian\n"
|
||||
|
2
po/fi.po
2
po/fi.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2006-08-09 15:58+0300\n"
|
||||
"Last-Translator: Ilkka Tuohela <hile@iki.fi>\n"
|
||||
"Language-Team: Finnish <gnome-fi-laatu@lists.sourceforge.net>\n"
|
||||
|
2
po/fr.po
2
po/fr.po
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.12.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-09-03 12:07+0200\n"
|
||||
"Last-Translator: Stéphane Raimbault <stephane.raimbault@gmail.com>\n"
|
||||
"Language-Team: GNOME French Team <gnomefr@traduc.org>\n"
|
||||
|
2
po/gl.po
2
po/gl.po
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gl\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-05-19 17:21+0200\n"
|
||||
"Last-Translator: Ignacio Casal Quinteiro <icq@cvs.gnome.org>\n"
|
||||
"Language-Team: Galego <proxecto@trasno.net>\n"
|
||||
|
2
po/gu.po
2
po/gu.po
@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD.gu\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-08-10 14:14+0530\n"
|
||||
"Last-Translator: Ankit Patel <ankit@redhat.com>\n"
|
||||
"Language-Team: Gujarati <fedora-trans-gu@redhat.com>\n"
|
||||
|
2
po/he.po
2
po/he.po
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD.he\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2006-04-27 18:48+0300\n"
|
||||
"Last-Translator: Yair Hershkovitz <yairhr@gmail.com>\n"
|
||||
"Language-Team: Hebrew <he@li.org>\n"
|
||||
|
2
po/hi.po
2
po/hi.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD.hi\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2006-06-20 14:14+0530\n"
|
||||
"Last-Translator: Rajesh Ranjan <rranjan@redhat.com>\n"
|
||||
"Language-Team: Hindi <fedora-trans-hi@redhat.com>\n"
|
||||
|
2
po/hr.po
2
po/hr.po
@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2004-03-13 13:03+CET\n"
|
||||
"Last-Translator: auto\n"
|
||||
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
|
||||
|
2
po/hu.po
2
po/hu.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-09-14 09:28+0200\n"
|
||||
"Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
|
||||
"Language-Team: Hungarian <gnome@gnome.hu>\n"
|
||||
|
2
po/hy.po
2
po/hy.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2006-03-03 16:24+0000\n"
|
||||
"Last-Translator: Norayr Chilingaryan <norik@freenet.am>\n"
|
||||
"Language-Team: Armenian <norik@freenet.am>\n"
|
||||
|
2
po/id.po
2
po/id.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2005-08-30 22:41+0300\n"
|
||||
"Last-Translator: Mohammad DAMT <mdamt@bisnisweb.com>\n"
|
||||
"Language-Team: Indonesia <sukarelawan@gnome.linux.or.id>\n"
|
||||
|
2
po/is.po
2
po/is.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2003-08-18 18:05+0000\n"
|
||||
"Last-Translator: Richard Allen <ra@ra.is>\n"
|
||||
"Language-Team: is <is@li.org>\n"
|
||||
|
2
po/it.po
2
po/it.po
@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.12.x\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-09-10 18:03+0200\n"
|
||||
"Last-Translator: Luca Ferretti <elle.uca@libero.it>\n"
|
||||
"Language-Team: Italian <tp@lists.linux.it>\n"
|
||||
|
2
po/ja.po
2
po/ja.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib trunk\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-09-16 20:57+0900\n"
|
||||
"Last-Translator: Takeshi AIHANA <takeshi.aihana@gmail.com>\n"
|
||||
"Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n"
|
||||
|
2
po/ka.po
2
po/ka.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ka\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-09-14 12:15+0200\n"
|
||||
"Last-Translator: Vladimer Sichinava ვლადიმერ სიჭინავა <vsichi@gnome.org>\n"
|
||||
"Language-Team: Georgian <http://mail.gnome.org/mailman/listinfo/gnome-ge-"
|
||||
|
2
po/kn.po
2
po/kn.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-08-31 12:40+0530\n"
|
||||
"Last-Translator: Shankar Prasad <svenkate@redhat.com>\n"
|
||||
"Language-Team: Kannada <en@li.org>\n"
|
||||
|
2
po/ko.po
2
po/ko.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-09-29 20:10+0900\n"
|
||||
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
|
||||
"Language-Team: GNOME Korea <gnome-kr-hackers@lists.kldp.net>\n"
|
||||
|
2
po/ku.po
2
po/ku.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.glib-2-8\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2006-04-20 17:33+0000\n"
|
||||
"Last-Translator: Erdal Ronahi <erdal.ronahi@gmail.com>\n"
|
||||
"Language-Team: Kurdish <gnu-ku-wergerandin@lists.sourceforge.net>\n"
|
||||
|
2
po/lt.po
2
po/lt.po
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: lt\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-08-13 18:04+0300\n"
|
||||
"Last-Translator: Žygimantas Beručka <zygis@gnome.org>\n"
|
||||
"Language-Team: Lithuanian <gnome-lt@lists.akl.lt>\n"
|
||||
|
2
po/lv.po
2
po/lv.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2002-12-19 01:04+0200\n"
|
||||
"Last-Translator: Artis Trops <hornet@navigator.lv>\n"
|
||||
"Language-Team: Latvian <ll10nt@os.lv>\n"
|
||||
|
2
po/mg.po
2
po/mg.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GLIB VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-03-03 19:00+0300\n"
|
||||
"Last-Translator: Fanomezana Rajaonarisoa <fano@isvtec.com>\n"
|
||||
"Language-Team: MALAGASY <i18n-malagasy-gnome@gna.org>\n"
|
||||
|
2
po/mk.po
2
po/mk.po
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD.mk\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-08-12 03:17+0200\n"
|
||||
"Last-Translator: Jovan Naumovski <jovan@lugola.net>\n"
|
||||
"Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"
|
||||
|
2
po/ml.po
2
po/ml.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD.ml\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-08-03 12:11+0530\n"
|
||||
"Last-Translator: Ani Peter <apeter@redhat.com>\n"
|
||||
"Language-Team: Malayalam <en@li.org>\n"
|
||||
|
2
po/mn.po
2
po/mn.po
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2005-05-30 01:07-0800\n"
|
||||
"Last-Translator: Бадрал <badral@openmn.org>\n"
|
||||
"Language-Team: Mongolian <openmn-translation@lists.sf.net>\n"
|
||||
|
2
po/ms.po
2
po/ms.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2004-02-03 02:11+0730\n"
|
||||
"Last-Translator: Hasbullah Bin Pit <sebol@my-penguin.org>\n"
|
||||
"Language-Team: Projek Gabai <gabai-penyumbang@lists.sourceforge.org>\n"
|
||||
|
2
po/nb.po
2
po/nb.po
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.13.x\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-08-09 11:07+0200\n"
|
||||
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
|
||||
"Language-Team: Norwegian bokmal <i18n-nb@lister.ping.uio.no>\n"
|
||||
|
2
po/ne.po
2
po/ne.po
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.glib-2-10.ne\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2006-04-27 00:00+0545\n"
|
||||
"Last-Translator: Shyam Krishna Bal <shyamkrishna_bal@yahoo.com>\n"
|
||||
"Language-Team: Nepali <info@mpp.org.np>\n"
|
||||
|
2
po/nl.po
2
po/nl.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib (HEAD)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-09-05 15:17+0200\n"
|
||||
"Last-Translator: Tino Meinen <a.t.meinen@chello.nl>\n"
|
||||
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
|
||||
|
2
po/nn.po
2
po/nn.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: nn\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2006-09-02 14:30+0200\n"
|
||||
"Last-Translator: Åsmund Skjæveland <aasmunds@fys.uio.no>\n"
|
||||
"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"
|
||||
|
2
po/oc.po
2
po/oc.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.12.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-08-20 23:57+0200\n"
|
||||
"Last-Translator: Yannig MARCHEGAY (Kokoyaya) <yannig@marchegay.org>\n"
|
||||
"Language-Team: Occitan (post 1500) <ubuntu-l10n-oci@lists.ubuntu.com>\n"
|
||||
|
2
po/or.po
2
po/or.po
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD.or\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-06-11 18:17+0530\n"
|
||||
"Last-Translator: Subhransu Behera <arya_subhransu@yahoo.co.in>\n"
|
||||
"Language-Team: Oriya <oriya-group@lists.sarovar.org>\n"
|
||||
|
2
po/pa.po
2
po/pa.po
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-09-06 06:42+0530\n"
|
||||
"Last-Translator: ASB <aalam@users.sf.net>\n"
|
||||
"Language-Team: Punjabi <punjabi-l10n@lists.sf.net>\n"
|
||||
|
2
po/pl.po
2
po/pl.po
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD.pl\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-09-14 17:12+0200\n"
|
||||
"Last-Translator: wadim dziedzic <wdziedzi@aviary.pl>\n"
|
||||
"Language-Team: Polish <translators@gnomepl.org>\n"
|
||||
|
2
po/pt.po
2
po/pt.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 2.20\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-08-19 23:40+0000\n"
|
||||
"Last-Translator: Duarte Loreto <happyguy_pt@hotmail.com>\n"
|
||||
"Language-Team: Portuguese <gnome_pt@yahoogroups.com>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-08-24 10:25-0300\n"
|
||||
"Last-Translator: Vladimir Melo <vladimirmelo@foresightlinux.org>\n"
|
||||
"Language-Team: Brazilian Portuguese <gnome-l10n-br@listas.cipsga.org.br>\n"
|
||||
|
2
po/ro.po
2
po/ro.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-09-11 22:57+0300\n"
|
||||
"Last-Translator: Mişu Moldovan <dumol@gnome.ro>\n"
|
||||
"Language-Team: Română <gnomero-list@lists.sourceforge.net>\n"
|
||||
|
2
po/ru.po
2
po/ru.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib trunk\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2006-02-01 18:37+0200\n"
|
||||
"Last-Translator: Nickolay V. Shmyrev <nshmyrev@yandex.ru>\n"
|
||||
"Language-Team: Russian <gnome-cyr@gnome.org>\n"
|
||||
|
2
po/rw.po
2
po/rw.po
@ -15,7 +15,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.12\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2005-03-28 19:34-0700\n"
|
||||
"Last-Translator: Steve Murphy <murf@e-tools.com>\n"
|
||||
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
|
||||
|
2
po/sk.po
2
po/sk.po
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2005-10-16 19:30+0200\n"
|
||||
"Last-Translator: Marcel Telka <marcel@telka.sk>\n"
|
||||
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
|
||||
|
2
po/sq.po
2
po/sq.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-09-12 12:47+0200\n"
|
||||
"Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n"
|
||||
"Language-Team: albanian <gnome-albanian-perkthyesit@lists.sourceforge.net>\n"
|
||||
|
2
po/sr.po
2
po/sr.po
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 2.8\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-09-06 21:11+0100\n"
|
||||
"Last-Translator: Горан Ракић <grakic@devbase.net>\n"
|
||||
"Language-Team: Serbian (sr) <gnom@prevod.org>\n"
|
||||
|
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 2.8\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-09-06 21:11+0100\n"
|
||||
"Last-Translator: Goran Rakić <grakic@devbase.net>\n"
|
||||
"Language-Team: Serbian (sr) <gnom@prevod.org>\n"
|
||||
|
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 2.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2004-04-29 01:11+0200\n"
|
||||
"Last-Translator: Bojan Suzic <bojans@teol.net>\n"
|
||||
"Language-Team: Serbian (sr) <serbiagnome-lista@nongnu.org>\n"
|
||||
|
2
po/sv.po
2
po/sv.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-08-11 12:22+0100\n"
|
||||
"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
|
||||
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
|
||||
|
2
po/ta.po
2
po/ta.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-08-13 09:47+0530\n"
|
||||
"Last-Translator: Dr.T.Vasudevan <agnihot3@gmail.com>\n"
|
||||
"Language-Team: TAMIL <ubuntu-l10n-tam@lists.ubuntu.com>\n"
|
||||
|
2
po/te.po
2
po/te.po
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GLIB\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2004-12-13 20:16+0100\n"
|
||||
"Last-Translator: రమణ సాయి <rmn_sai@yahoo.com>\n"
|
||||
"Language-Team: Free Software Foundation, Andhra Pradesh <fsfap@gnu.org.in>\n"
|
||||
|
2
po/th.po
2
po/th.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.14.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-08-10 15:21+0700\n"
|
||||
"Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n"
|
||||
"Language-Team: Thai <thai-l10n@googlegroups.com>\n"
|
||||
|
2
po/tl.po
2
po/tl.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2005-12-01 17:31+0800\n"
|
||||
"Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n"
|
||||
"Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n"
|
||||
|
2
po/tr.po
2
po/tr.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-08-03 20:03+0300\n"
|
||||
"Last-Translator: Baris Cicek <baris@teamforce.name.tr>\n"
|
||||
"Language-Team: Turkish <gnome-turk@gnome.org>\n"
|
||||
|
2
po/tt.po
2
po/tt.po
@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: libgnome\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2005-11-09 13:19+0300\n"
|
||||
"Last-Translator: Albert Fazlí <tatarish.l10n@gmail.com>\n"
|
||||
"Language-Team: Tatarish <tatarish.l10n@gmail.com>\n"
|
||||
|
2
po/uk.po
2
po/uk.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-09-07 11:56+0300\n"
|
||||
"Last-Translator: Maxim Dziumanenko <dziumanenko@gmail.com>\n"
|
||||
"Language-Team: Ukrainian <uk@li.org>\n"
|
||||
|
2
po/vi.po
2
po/vi.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib GNOME TRUNK\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-09-03 22:50+0930\n"
|
||||
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
|
||||
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n"
|
||||
|
2
po/wa.po
2
po/wa.po
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2004-05-03 14:40+0200\n"
|
||||
"Last-Translator: Pablo Saratxaga <pablo@walon.org>\n"
|
||||
"Language-Team: Walloon <linux-wa@walon.org>\n"
|
||||
|
2
po/xh.po
2
po/xh.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2005-02-08 12:31+0200\n"
|
||||
"Last-Translator: Canonical Ltd <translations@canonical.com>\n"
|
||||
"Language-Team: Xhosa <xh-translate@ubuntu.com>\n"
|
||||
|
2
po/yi.po
2
po/yi.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 1.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2003-03-19\n"
|
||||
"Last-Translator: Raphael Finkel <raphael@cs.uky.edu>\n"
|
||||
"Language-Team: Yiddish <raphael@cs.uky.edu>\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-08-23 16:55+0700\n"
|
||||
"Last-Translator: yetist <yetist@gmail.com>\n"
|
||||
"Language-Team: zh_CN <i18n-translation@lists.linux.net.cn>\n"
|
||||
|
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.12.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-02-28 02:10+0800\n"
|
||||
"Last-Translator: Woodman Tuen <wmtuen@gmail.com>\n"
|
||||
"Language-Team: Chinese (Hong Kong) <community@linuxhall.org>\n"
|
||||
|
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.12.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2007-10-16 02:15-0400\n"
|
||||
"POT-Creation-Date: 2007-11-07 00:25-0500\n"
|
||||
"PO-Revision-Date: 2007-02-27 09:08+0800\n"
|
||||
"Last-Translator: Woodman Tuen <wmtuen@gmail.com>\n"
|
||||
"Language-Team: Chinese (Taiwan) <community@linuxhall.org>\n"
|
||||
|
Loading…
Reference in New Issue
Block a user