From: Owen Taylor Date: Fri, 8 Mar 2002 16:34:21 +0000 (+0000) Subject: ======== Released 2.0.0 ======== X-Git-Tag: GLIB_2_0_0^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4065bdd345719bc31876fc124766b6b8ad5a0f57;p=platform%2Fupstream%2Fglib.git ======== Released 2.0.0 ======== Fri Mar 8 10:58:28 2002 Owen Taylor * ======== Released 2.0.0 ======== --- diff --git a/ChangeLog b/ChangeLog index 33fe570..6b44d8a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Fri Mar 8 10:58:28 2002 Owen Taylor + + * ======== Released 2.0.0 ======== + Fri Mar 8 10:20:46 2002 Owen Taylor * NEWS: Final updates for 2.0.0 diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 33fe570..6b44d8a 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,7 @@ +Fri Mar 8 10:58:28 2002 Owen Taylor + + * ======== Released 2.0.0 ======== + Fri Mar 8 10:20:46 2002 Owen Taylor * NEWS: Final updates for 2.0.0 diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 33fe570..6b44d8a 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,7 @@ +Fri Mar 8 10:58:28 2002 Owen Taylor + + * ======== Released 2.0.0 ======== + Fri Mar 8 10:20:46 2002 Owen Taylor * NEWS: Final updates for 2.0.0 diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 33fe570..6b44d8a 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,7 @@ +Fri Mar 8 10:58:28 2002 Owen Taylor + + * ======== Released 2.0.0 ======== + Fri Mar 8 10:20:46 2002 Owen Taylor * NEWS: Final updates for 2.0.0 diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 33fe570..6b44d8a 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,7 @@ +Fri Mar 8 10:58:28 2002 Owen Taylor + + * ======== Released 2.0.0 ======== + Fri Mar 8 10:20:46 2002 Owen Taylor * NEWS: Final updates for 2.0.0 diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 33fe570..6b44d8a 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,7 @@ +Fri Mar 8 10:58:28 2002 Owen Taylor + + * ======== Released 2.0.0 ======== + Fri Mar 8 10:20:46 2002 Owen Taylor * NEWS: Final updates for 2.0.0 diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 33fe570..6b44d8a 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,7 @@ +Fri Mar 8 10:58:28 2002 Owen Taylor + + * ======== Released 2.0.0 ======== + Fri Mar 8 10:20:46 2002 Owen Taylor * NEWS: Final updates for 2.0.0 diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 33fe570..6b44d8a 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,7 @@ +Fri Mar 8 10:58:28 2002 Owen Taylor + + * ======== Released 2.0.0 ======== + Fri Mar 8 10:20:46 2002 Owen Taylor * NEWS: Final updates for 2.0.0 diff --git a/INSTALL b/INSTALL index 07240c0..b9da09b 100644 --- a/INSTALL +++ b/INSTALL @@ -13,13 +13,23 @@ Simple install procedure Requirements ============ +GLib-2.0 requires pkg-config, which is tool for tracking the +compilation flags needed for libraries. (For each library, a small .pc +text file is installed in a standard location that contains the +compilation flags needed for that library along with version number +information.) Information about pkg-config can be found at: + + http://www.freedesktop.org/software/pkgconfig/ + +GNU make (http://www.gnu.org/software/make) is also recommended. + In order to implement conversions between character sets, GLib requires an implementation of the standard iconv() routine. Most modern systems will have a suitable implementation, however many older systems lack an iconv() implementation. On such systems, you must install the libiconv library. This can be found at: - http://clisp.cons.org/~haible/packages-libiconv.html + http://www.gnu.org/software/libiconv/ If your system has an iconv implementation but you want to use libiconv instead, you can pass the --with-libiconv option to @@ -30,6 +40,13 @@ search path (for instance, in /usr/local/), but don't enable it, you will get an error while compiling GTK+ because the iconv.h that libiconv installs hides the system iconv. +Finally, for message catalog handling, GTK+ requires an implementation +of gettext(). If your system doesn't provide this functionality, +you should use the libintl library from the GNU gettext package, +available from: + + http://www.gnu.org/software/gettext/ + The Nitty-Gritty ================ @@ -104,14 +121,18 @@ use of these flags is not tested. One particular detail to note, is that the architecture-dependent include file glibconfig.h is installed in: - $exec_pref/lib/glib/include/ + $exec_prefix/lib/glib/include/ if you have a version in $prefix/include, this is out of date and should be deleted. -A shell script glib-config is created during the configure -process, and installed in the bin/ directory -($exec_prefix/bin). This is used to determine the location of glib -when building applications. If you move glib after installation, -it will be necessary to edit this file. +.pc files for the various libraries are installed in +$exec_prefix/lib/pkgconfig to provide information when compiling +other packages that depend on GTK+. If you set PKG_CONFIG_PATH +so that it points to this directory, then you can get the +correct include flags and library flags for compiling a GLib +application with: + + pkg-config --cflags glib-2.0 + pkg-config --libs glib-2.0 diff --git a/README b/README index c602e6e..5116c89 100644 --- a/README +++ b/README @@ -1,21 +1,11 @@ - *** IMPORTANT *** - -This is a development version of GLib. You should be using a stable -version, which is available at ftp://ftp.gtk.org/pub/gtk/v1.2/. This -version is meant for developers of GLib only: - - * You should not base stable software on this version of GLib. - * GNOME developers should use a stable version of GLib. - -*** You should be using GLib 1.2 instead. *** - - General Information =================== -This is GLib version 2.0.0. GLib is a library which includes support -routines for C such as lists, trees, hashes, memory allocation, and -many other things. +This is GLib version 2.0.0. 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, +dynamic loading, and an object system. The official ftp site is: ftp://ftp.gtk.org/pub/gtk @@ -34,6 +24,23 @@ Installation See the file 'INSTALL' +Notes about GLib-2.0.0 +====================== + +* On systems without the libintl from GNU gettext() or a recent version + of the GNU C library, the encoding of translated error messages will be + incorrect (they should be in UTF-8). A workaround for this is to install + GNU gettext and use that libintl. This is expected to be fixed in GLib-2.0.1. + Application programmers should not call g_locale_to_utf8() on these + strings. + +* Similarly, the GLib error logging functions such as g_print(), g_warning(), + g_error(), currently do not convert the strings they are passed from + UTF-8 to the encoding of the locale, or check that the strings they + are passed are valid UTF-8. They should, despite this, be assumed to take + UTF-8 arguments. + + How to report bugs ================== diff --git a/po/az.po b/po/az.po index fdbbf23..d2fd4e9 100644 --- a/po/az.po +++ b/po/az.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 1.3.9\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2001-12-24 20:11GMT+0200\n" "Last-Translator: Vasif Ä°smayıloğlu MD \n" "Language-Team: Azerbaijani Turkic \n" diff --git a/po/ca.po b/po/ca.po index ca7bdb9..7bc7c88 100644 --- a/po/ca.po +++ b/po/ca.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 1.3.9\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2001-10-05 19:45+0200\n" "Last-Translator: Softcatalà \n" "Language-Team: Catalan \n" diff --git a/po/de.po b/po/de.po index 52dd592..9141110 100644 --- a/po/de.po +++ b/po/de.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 1.3.15\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2002-02-28 01:13+0100\n" "Last-Translator: Christian Meyer \n" "Language-Team: German \n" diff --git a/po/el.po b/po/el.po index 2892e5e..4886b02 100644 --- a/po/el.po +++ b/po/el.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 1.0\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2002-02-20 14:33+0000\n" "Last-Translator: Simos Xenitellis \n" "Language-Team: Greek \n" diff --git a/po/es.po b/po/es.po index d15a5fb..6127f9b 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 1.3\n" -"POT-Creation-Date: 2002-03-04 14:40-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2002-03-06 01:31-0300\n" "Last-Translator: German Poo Caaman~o \n" "Language-Team: Spanish \n" @@ -18,8 +18,7 @@ msgstr "" #: glib/gconvert.c:390 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" -msgstr "" -"Conversión desde el conjunto de caracteres `%s'·a·`%s'·no soportada" +msgstr "Conversión desde el conjunto de caracteres `%s'·a·`%s'·no soportada" #: glib/gconvert.c:394 #, c-format @@ -187,15 +186,15 @@ msgstr "Error·en la línea·%d:·%s" msgid "" "Empty entity '&;' seen; valid entities are: & " < > '" msgstr "" -"La entidad '&;' está vacía; las entidades válidas " -"son:·&·"·<·>·'" +"La entidad '&;' está vacía; las entidades válidas son:·&·"·<·>" +"·'" #: glib/gmarkup.c:392 #, c-format msgid "" "Character '%s' is not valid at the start of an entity name; the & character " -"begins an entity; if this ampersand isn't supposed to be an entity, escape it " -"as &" +"begins an entity; if this ampersand isn't supposed to be an entity, escape " +"it as &" msgstr "" "El caracter '%s'·no es válido al inicio del nombre de la entidad; el " "carácter & inicia una entidad: si el signo \"&\" no se debiera que ser una " @@ -226,9 +225,8 @@ msgid "" "Failed to parse '%s', which should have been a digit inside a character " "reference (ê for example) - perhaps the digit is too large" msgstr "" -"Falló al analizar '%s',·que debería tener un dígito dentro de un " -"carácter de referencia·( por ejemplo ê·)·-·tal vez el dígito es " -"demasiado grande" +"Falló al analizar '%s',·que debería tener un dígito dentro de un carácter de " +"referencia·( por ejemplo ê·)·-·tal vez el dígito es demasiado grande" #: glib/gmarkup.c:553 #, c-format @@ -248,8 +246,8 @@ msgid "" "as &" msgstr "" "El caracter de referencia no termina con punto y coma; probablemente utilizó " -"un carácter \"&\" sin pretender iniciar una entidad - " -"utilice·el·carácter·\"&\"·como·&" +"un carácter \"&\" sin pretender iniciar una entidad - utilice·el·carácter·\"&" +"\"·como·&" #: glib/gmarkup.c:837 glib/gmarkup.c:865 glib/gmarkup.c:896 msgid "Invalid UTF-8 encoded text" @@ -274,8 +272,8 @@ msgid "" "Odd character '%s', expected a '>' character to end the start tag of element " "'%s'" msgstr "" -"Caracter impropio '%s', se esperaba un caracter '>' para terminar la etiqueta " -"del elemento '%s'" +"Caracter impropio '%s', se esperaba un caracter '>' para terminar la " +"etiqueta del elemento '%s'" #: glib/gmarkup.c:1120 #, c-format @@ -292,9 +290,9 @@ msgid "" "element '%s', or optionally an attribute; perhaps you used an invalid " "character in an attribute name" msgstr "" -"Caracter impropio '%s',·se esperaba un caracter '>'·o·'/'·para finalizar " -"el inicio de la etiqueta del elemento '%s' u opcionalmente un atributo;·tal " -"vez utilizó un caracter que no es válido en un nombre de atributo" +"Caracter impropio '%s',·se esperaba un caracter '>'·o·'/'·para finalizar el " +"inicio de la etiqueta del elemento '%s' u opcionalmente un atributo;·tal vez " +"utilizó un caracter que no es válido en un nombre de atributo" #: glib/gmarkup.c:1244 #, c-format @@ -311,8 +309,8 @@ msgid "" "'%s' is not a valid character following the characters '" +"Document ended unexpectedly, expected to see a close angle bracket ending " +"the tag <%s/>" msgstr "" "El documento finalizó inesperadamente, se esperada un caracter '>' " "finalizando la etiqueta <%s/>" #: glib/gmarkup.c:1610 msgid "Document ended unexpectedly inside an element name" -msgstr "" -"El documento finalizó inesperadamente dentro del nombre de un elemento" +msgstr "El documento finalizó inesperadamente dentro del nombre de un elemento" #: glib/gmarkup.c:1615 msgid "Document ended unexpectedly inside an attribute name" @@ -381,8 +378,8 @@ msgid "" "Document ended unexpectedly after the equals sign following an attribute " "name; no attribute value" msgstr "" -"El documento finalizó inesperadamente después de los signos igual que " -"siguen el nombre de atributo; sin valor de atributo" +"El documento finalizó inesperadamente después de los signos igual que siguen " +"el nombre de atributo; sin valor de atributo" #: glib/gmarkup.c:1633 msgid "Document ended unexpectedly while inside an attribute value" @@ -517,4 +514,3 @@ msgstr "La secuencia en la conversión de entrada no es válida" #: glib/gutf8.c:1341 glib/gutf8.c:1437 msgid "Character out of range for UTF-16" msgstr "El caracter se encuentra fuera de los márgenes para UTF 16" - diff --git a/po/eu.po b/po/eu.po index 649a8de..d69083e 100644 --- a/po/eu.po +++ b/po/eu.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 1.3.9\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2001-07-06 14:23+0200\n" "Last-Translator: Joseba Bidaurrazaga van Dierdonck \n" "Language-Team: euskare \n" diff --git a/po/fr.po b/po/fr.po index e44c53d..fdf25c9 100644 --- a/po/fr.po +++ b/po/fr.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 1.3.15\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2002-02-26 23:07+0100\n" "Last-Translator: Christophe Merlet (RedFox) \n" "Language-Team: GNOME French Team \n" diff --git a/po/gl.po b/po/gl.po index 7d90547..4336074 100644 --- a/po/gl.po +++ b/po/gl.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2001-12-19 21:39+0100\n" "Last-Translator: Manuel A. Fernández Montecelo \n" "Language-Team: Galician \n" diff --git a/po/ja.po b/po/ja.po index aed86c9..c5ecec5 100644 --- a/po/ja.po +++ b/po/ja.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 1.3.x\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2002-02-27 01:35+0900\n" "Last-Translator: Takayuki KUSANO \n" "Language-Team: Japanese \n" diff --git a/po/ko.po b/po/ko.po index b16eb73..3f53af4 100644 --- a/po/ko.po +++ b/po/ko.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: $PACKAGE $VERSION, no-define\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2002-03-02 04:43+0900\n" "Last-Translator: Changwoo Ryu \n" "Language-Team: Korean \n" diff --git a/po/nl.po b/po/nl.po index 9fb631a..32c1db4 100644 --- a/po/nl.po +++ b/po/nl.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib (HEAD)\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2001-11-23 13:07+0100\n" "Last-Translator: Dirk-Jan C. Binnema \n" "Language-Team: Dutch \n" diff --git a/po/nn.po b/po/nn.po index a2135d3..0eb4186 100644 --- a/po/nn.po +++ b/po/nn.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib/2.0\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2002-01-31 20:07+0100\n" "Last-Translator: Roy-Magne Mo \n" "Language-Team: nynorsk \n" diff --git a/po/no.po b/po/no.po index 3634aac..a481350 100644 --- a/po/no.po +++ b/po/no.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 1.3.3\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2002-03-03 08:38+0100\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" diff --git a/po/pl.po b/po/pl.po index 721d2ba..3ca5fb7 100644 --- a/po/pl.po +++ b/po/pl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2002-02-28 16:49+0100\n" "Last-Translator: GNOME PL Team \n" "Language-Team: Polish \n" diff --git a/po/pt.po b/po/pt.po index 72479d3..55298e9 100644 --- a/po/pt.po +++ b/po/pt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: 2.0\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2002-03-04 23:48+0000\n" "Last-Translator: Duarte Loreto \n" "Language-Team: Portuguese \n" diff --git a/po/ro.po b/po/ro.po index 3134d9b..4933b54 100644 --- a/po/ro.po +++ b/po/ro.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 1.3.10\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2001-10-22 09:35-0400\n" "Last-Translator: Marius Andreiana \n" "Language-Team: Română \n" diff --git a/po/ru.po b/po/ru.po index 384aa6c..f192e74 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2002-02-25 14:38+03:00\n" "Last-Translator: Valek Filippov \n" "Language-Team: Russian \n" diff --git a/po/sk.po b/po/sk.po index 369aeff..019cbdf 100644 --- a/po/sk.po +++ b/po/sk.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 1.3.8\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2002-02-27 14:53+0100\n" "Last-Translator: Stanislav Višňovský \n" "Language-Team: Slovak \n" diff --git a/po/sl.po b/po/sl.po index 118437f..2b0e82e 100644 --- a/po/sl.po +++ b/po/sl.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" -"POT-Creation-Date: 2002-02-28 23:38+0100\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2001-02-16 12:30+0200\n" "Last-Translator: Andraz Tori \n" "Language-Team: Slovenian \n" @@ -61,6 +61,7 @@ msgid "The URI '%s' is invalid" msgstr "URI '%s' je neveljaven" #: glib/gconvert.c:1632 +#, c-format msgid "The hostname of the URI '%s' is invalid" msgstr "Ime gostitelja URIja '%s' ni veljavno" @@ -385,6 +386,7 @@ msgid "Unmatched quotation mark in command line or other shell-quoted text" msgstr "V ukazni vrstici ali v citiranem besedilu manjka končni narekovaj" #: glib/gshell.c:529 +#, c-format msgid "Text ended just after a '\\' character. (The text was '%s')" msgstr "Besedilo končano takoj po znaku '\\'. (Besedilo je bilo '%s')" diff --git a/po/sv.po b/po/sv.po index ba4c518..019fcaa 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2002-02-26 10:54+0100\n" "Last-Translator: Christian Rose \n" "Language-Team: Swedish \n" diff --git a/po/ta.po b/po/ta.po index d7d80c2..4b5ab41 100644 --- a/po/ta.po +++ b/po/ta.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 1.5\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2001-09-28 18:43-0500\n" "Last-Translator: Dinesh Nadarajah \n" "Language-Team: Tamil \n" diff --git a/po/tr.po b/po/tr.po index c43e9a4..2ed58c9 100644 --- a/po/tr.po +++ b/po/tr.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 1.3.2\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2001-02-05 20:28+0200\n" "Last-Translator: Kemal Yýlmaz \n" "Language-Team: GNOME Turk \n" diff --git a/po/uk.po b/po/uk.po index 85d0182..787dfcf 100644 --- a/po/uk.po +++ b/po/uk.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 1.3.2\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2001-01-22 11:23+0200\n" "Last-Translator: Yuri Syrota \n" "Language-Team: Ukrainian \n" diff --git a/po/zh_CN.po b/po/zh_CN.po index 310cb68..6c8c6f8 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2002-02-17 17:56+0800\n" "Last-Translator: He Qiangqiang \n" "Language-Team: zh_CN \n" diff --git a/po/zh_TW.po b/po/zh_TW.po index 6172be7..0480aca 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 1.3.13\n" -"POT-Creation-Date: 2002-03-03 21:13-0500\n" +"POT-Creation-Date: 2002-03-08 10:58-0500\n" "PO-Revision-Date: 2002-02-07 08:25+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Traditional Chinese \n"