From: Matthias Clasen Date: Fri, 24 Feb 2006 17:17:35 +0000 (+0000) Subject: 2.10.0 X-Git-Tag: GLIB_2_10_0^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2f4f39095fd924bd34dd0147ef7be6499abfacd1;p=platform%2Fupstream%2Fglib.git 2.10.0 --- diff --git a/ChangeLog b/ChangeLog index 39add94..c7207bf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2006-02-24 Matthias Clasen + * === Released 2.10.0 === + * README.in: Mention the slice allocator and GInitiallyUnowned. * NEWS: Updates diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 39add94..c7207bf 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,5 +1,7 @@ 2006-02-24 Matthias Clasen + * === Released 2.10.0 === + * README.in: Mention the slice allocator and GInitiallyUnowned. * NEWS: Updates diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 39add94..c7207bf 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,5 +1,7 @@ 2006-02-24 Matthias Clasen + * === Released 2.10.0 === + * README.in: Mention the slice allocator and GInitiallyUnowned. * NEWS: Updates diff --git a/INSTALL b/INSTALL index f2b9ae5..b8a8d70 100644 --- a/INSTALL +++ b/INSTALL @@ -1,8 +1,8 @@ Simple install procedure ======================== - % gzip -cd glib-2.9.6.tar.gz | tar xvf - # unpack the sources - % cd glib-2.9.6 # change to the toplevel directory + % gzip -cd glib-2.10.0.tar.gz | tar xvf - # unpack the sources + % cd glib-2.10.0 # change to the toplevel directory % ./configure # run the `configure' script % make # build GLIB diff --git a/NEWS b/NEWS index af22098..841f687 100644 --- a/NEWS +++ b/NEWS @@ -10,6 +10,8 @@ Overview of Changes from GLib 2.9.6 to GLib 2.10.0 332435 g_utf8_strlen returns wrong value if a maximum number of bytes to check is specified [Matthias Clasen] + 331367 gslice requires more POSIX-like semantics for + GPrivate destructors [Tor Lillqvist] * Documentation improvements [Matthias, Kang Jeong-Hee, Tor Lillqvist, Stefan Kost] diff --git a/README b/README index 6642417..5240ade 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ General Information =================== -This is GLib version 2.9.6. GLib is the low-level core +This is GLib version 2.10.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, @@ -45,6 +45,18 @@ Notes about GLib 2.10 'make check' will also fail on systems where the C compiler does not support ELF visibility attributes. +* The GMemChunk API has been deprecated in favour of a new 'slice + allocator'. See the g_slice documentation for more details. + +* A new type, GInitiallyUnowned, has been introduced, which is + intended to serve as a common implementation of the 'floating reference' + concept that is e.g. used by GtkObject. Note that changing the + inheritance hierarchy of a type can cause problems for language + bindings and other code which needs to work closely with the type + system. Therefore, switching to GInitiallyUnowned should be done + carefully. g_object_compat_control() has been added to GLib 2.8.5 + to help with the transition. + Notes about GLib 2.6.0 ====================== diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index d4e1516..64941db 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,7 @@ +2006-02-24 Matthias Clasen + + * === Released 2.10.0 === + 2006-02-22 Stefan Kost * gobject/tmpl/gtype.sgml: diff --git a/docs/reference/glib/tmpl/iochannels.sgml b/docs/reference/glib/tmpl/iochannels.sgml index 4f54c52..3fe9ea8 100644 --- a/docs/reference/glib/tmpl/iochannels.sgml +++ b/docs/reference/glib/tmpl/iochannels.sgml @@ -106,6 +106,18 @@ assumes that it is the file descriptor you mean. @Returns: a new #GIOChannel. + + +Returns the file descriptor of the #GIOChannel. + + +On Windows this function returns the file descriptor or socket of the #GIOChannel. + + +@channel: a #GIOChannel, created with g_io_channel_unix_new(). +@Returns: the file descriptor of the #GIOChannel. + + Creates a new #GIOChannel given a file descriptor on Windows. This works for @@ -153,8 +165,10 @@ socket in non-blocking mode. This is a side-effect of the implementation and unavoidable. -@fd: a Winsock socket. +@socket: @Returns: a new #GIOChannel. + +@fd: a Winsock socket. @@ -170,18 +184,6 @@ Windows messages for the window in question. @Returns: a new #GIOChannel. - - -Returns the file descriptor of the #GIOChannel. - - -On Windows this function returns the file descriptor or socket of the #GIOChannel. - - -@channel: a #GIOChannel, created with g_io_channel_unix_new(). -@Returns: the file descriptor of the #GIOChannel. - - Initializes a #GIOChannel struct. This is called by each of the above functions diff --git a/docs/reference/glib/tmpl/messages.sgml b/docs/reference/glib/tmpl/messages.sgml index fc1a7dd..fffa680 100644 --- a/docs/reference/glib/tmpl/messages.sgml +++ b/docs/reference/glib/tmpl/messages.sgml @@ -127,6 +127,8 @@ A convenience function/macro to log a normal message. @...: +@...: + @...: @@ -148,6 +150,8 @@ A convenience function/macro to log a warning message. @...: +@...: + @...: @@ -173,6 +177,8 @@ example. @...: +@...: + @...: @@ -199,6 +205,8 @@ assertion failure. @...: +@...: + @...: @@ -217,6 +225,8 @@ A convenience function/macro to log a debug message. @...: +@...: + @...: @Since: 2.6 @...: diff --git a/docs/reference/gobject/tmpl/gtype.sgml b/docs/reference/gobject/tmpl/gtype.sgml index a2cb496..1341084 100644 --- a/docs/reference/gobject/tmpl/gtype.sgml +++ b/docs/reference/gobject/tmpl/gtype.sgml @@ -240,6 +240,9 @@ A structure that provides information to the type system which is used specifically for managing interface types. +@interface_init: +@interface_finalize: +@interface_data: diff --git a/gmodule/ChangeLog b/gmodule/ChangeLog index 7dbb19b..057c6ab 100644 --- a/gmodule/ChangeLog +++ b/gmodule/ChangeLog @@ -1,3 +1,7 @@ +2006-02-24 Matthias Clasen + + * === Released 2.10.0 === + 2006-02-10 Matthias Clasen * === Released 2.9.6 === diff --git a/gobject/ChangeLog b/gobject/ChangeLog index 991c448..710f5f2 100644 --- a/gobject/ChangeLog +++ b/gobject/ChangeLog @@ -1,3 +1,7 @@ +2006-02-24 Matthias Clasen + + * === Released 2.10.0 === + 2006-02-10 Matthias Clasen * === Released 2.9.6 === diff --git a/gthread/ChangeLog b/gthread/ChangeLog index b0a7d6d..846a154 100644 --- a/gthread/ChangeLog +++ b/gthread/ChangeLog @@ -1,3 +1,7 @@ +2006-02-24 Matthias Clasen + + * === Released 2.10.0 === + 2006-02-20 Tor Lillqvist * gthread-win32.c (g_thread_exit_win32_impl): Make the diff --git a/po/ChangeLog b/po/ChangeLog index 87523e1..3bb2195 100644 --- a/po/ChangeLog +++ b/po/ChangeLog @@ -1,3 +1,7 @@ +2006-02-24 Matthias Clasen + + * === Released 2.10.0 === + 2006-02-23 Clytie Siddall * ka.po: Added Georgian translation by Gia Shervashidze . diff --git a/po/am.po b/po/am.po index 3238e1c..1ee6c17 100644 --- a/po/am.po +++ b/po/am.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2003-01-16 08:39+EDT\n" "Last-Translator: Ge'ez Frontier Foundation \n" "Language-Team: Amharic \n" diff --git a/po/ar.po b/po/ar.po index bc43260..2c70959 100644 --- a/po/ar.po +++ b/po/ar.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2003-12-19 01:22+0100\n" "Last-Translator: Arafat Medini \n" "Language-Team: Arabic \n" diff --git a/po/az.po b/po/az.po index db12e53..437dc34 100644 --- a/po/az.po +++ b/po/az.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD.az\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2004-02-02 12:12+0200\n" "Last-Translator: Mətin Əmirov \n" "Language-Team: Azerbaijani Turkish \n" diff --git a/po/be.po b/po/be.po index c95aeda..6ad0eb8 100644 --- a/po/be.po +++ b/po/be.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-11-16 11:21+0200\n" "Last-Translator: Vital Khilko \n" "Language-Team: Belarusian \n" diff --git a/po/bg.po b/po/bg.po index 743c8a4..4c02ba7 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-09 18:39+0200\n" "Last-Translator: Alexander Shopov \n" "Language-Team: Bulgarian \n" diff --git a/po/bn.po b/po/bn.po index 4a89e45..35fa997 100644 --- a/po/bn.po +++ b/po/bn.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-10-03 00:24+0600\n" "Last-Translator: Mahay Alam Khan \n" "Language-Team: Bengali \n" diff --git a/po/bs.po b/po/bs.po index 626c9b4..e51bf47 100644 --- a/po/bs.po +++ b/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: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2004-05-17 01:30+0000\n" "Last-Translator: Kenan Hadžiavdić \n" "Language-Team: Bosnian \n" diff --git a/po/ca.po b/po/ca.po index 5096861..6cc93fd 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-07 12:52+0100\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" diff --git a/po/cs.po b/po/cs.po index c94ee83..64239d5 100644 --- a/po/cs.po +++ b/po/cs.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: glib VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-02-07 21:14+0100\n" "Last-Translator: Lukas Novotny \n" "Language-Team: Czech \n" diff --git a/po/cy.po b/po/cy.po index 8640c14..d1f6873 100644 --- a/po/cy.po +++ b/po/cy.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-02-04 21:23+0000\n" "Last-Translator: Rhys Jones \n" "Language-Team: Welsh \n" diff --git a/po/da.po b/po/da.po index 29cc201..f2e524d 100644 --- a/po/da.po +++ b/po/da.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-18 18:41+0100\n" "Last-Translator: Martin Willemoes Hansen \n" "Language-Team: Danish \n" diff --git a/po/de.po b/po/de.po index 104df1d..cea0b12 100644 --- a/po/de.po +++ b/po/de.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: glib HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-16 16:45+0100\n" "Last-Translator: Hendrik Richter \n" "Language-Team: German \n" diff --git a/po/el.po b/po/el.po index 419e802..71d4464 100644 --- a/po/el.po +++ b/po/el.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-20 12:44+0200\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-02-20 12:47+0200\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" @@ -22,225 +22,234 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.1\n" -#: ../glib/gconvert.c:408 ../glib/gconvert.c:486 ../glib/giochannel.c:1150 +#: glib/gconvert.c:408 glib/gconvert.c:486 glib/giochannel.c:1150 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "Η μετατροπή από την ομάδα χαρακτήρων %s' σε '%s' δεν υποστηρίζεται" -#: ../glib/gconvert.c:412 ../glib/gconvert.c:490 +#: glib/gconvert.c:412 glib/gconvert.c:490 #, c-format msgid "Could not open converter from '%s' to '%s'" msgstr "Δεν ήταν δυνατό το άνοιγμα μετατροπέα από '%s' σε %s'" -#: ../glib/gconvert.c:606 ../glib/gconvert.c:995 ../glib/giochannel.c:1322 -#: ../glib/giochannel.c:1364 ../glib/giochannel.c:2206 ../glib/gutf8.c:943 -#: ../glib/gutf8.c:1392 +#: glib/gconvert.c:606 glib/gconvert.c:995 glib/giochannel.c:1322 +#: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943 +#: glib/gutf8.c:1392 +#, c-format msgid "Invalid byte sequence in conversion input" msgstr "Μή έγκυρη σειρά στην είσοδο μετατροπής" # gconf/gconftool.c:1181 -#: ../glib/gconvert.c:612 ../glib/gconvert.c:922 ../glib/giochannel.c:1329 -#: ../glib/giochannel.c:2218 +#: glib/gconvert.c:612 glib/gconvert.c:922 glib/giochannel.c:1329 +#: glib/giochannel.c:2218 #, c-format msgid "Error during conversion: %s" msgstr "Σφάλμα κατά τη μετατροπή: %s" -#: ../glib/gconvert.c:647 ../glib/gutf8.c:939 ../glib/gutf8.c:1143 -#: ../glib/gutf8.c:1284 ../glib/gutf8.c:1388 +#: glib/gconvert.c:647 glib/gutf8.c:939 glib/gutf8.c:1143 glib/gutf8.c:1284 +#: glib/gutf8.c:1388 +#, c-format msgid "Partial character sequence at end of input" msgstr "Ημιτελής σειρά χαρακτήρα στο τέλος της εισόδου" -#: ../glib/gconvert.c:897 +#: glib/gconvert.c:897 #, c-format msgid "Cannot convert fallback '%s' to codeset '%s'" msgstr "Αδυναμία μετατροπής fallback '%s' σε codeset '%s'" -#: ../glib/gconvert.c:1706 +#: glib/gconvert.c:1706 #, c-format msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" -msgstr "Το URI '%s' δεν είναι ένα απόλυτο URI με την χρήση του σχήματος αρχείου" +msgstr "" +"Το URI '%s' δεν είναι ένα απόλυτο URI με την χρήση του σχήματος αρχείου" -#: ../glib/gconvert.c:1716 +#: glib/gconvert.c:1716 #, c-format msgid "The local file URI '%s' may not include a '#'" msgstr "Το URI τοπικού αρχείου '%s' μπορεί να μην περιέχει ένα '#'" -#: ../glib/gconvert.c:1733 +#: glib/gconvert.c:1733 #, c-format msgid "The URI '%s' is invalid" msgstr "Το URI '%s' δεν είναι έγκυρο" -#: ../glib/gconvert.c:1745 +#: glib/gconvert.c:1745 #, c-format msgid "The hostname of the URI '%s' is invalid" msgstr "Το όνομα συστήματος του URI '%s' δεν είναι έγκυρο" -#: ../glib/gconvert.c:1761 +#: glib/gconvert.c:1761 #, c-format msgid "The URI '%s' contains invalidly escaped characters" msgstr "Το URI '%s' περιέχει χαρακτήρες μή έγκυρα escaped " -#: ../glib/gconvert.c:1855 +#: glib/gconvert.c:1855 #, c-format msgid "The pathname '%s' is not an absolute path" msgstr "Η όνομα διαδρομής '%s' δεν είναι μια απόλυτη διαδρομή" -#: ../glib/gconvert.c:1865 +#: glib/gconvert.c:1865 +#, c-format msgid "Invalid hostname" msgstr "Ακατάλληλο όνομα συστήματος" # -#: ../glib/gdir.c:121 ../glib/gdir.c:141 +#: glib/gdir.c:121 glib/gdir.c:141 #, c-format msgid "Error opening directory '%s': %s" msgstr "Σφάλμα ανοίγματος καταλόγου '%s': %s" # -#: ../glib/gfileutils.c:576 ../glib/gfileutils.c:649 +#: glib/gfileutils.c:576 glib/gfileutils.c:649 #, c-format msgid "Could not allocate %lu bytes to read file \"%s\"" msgstr "Αδύνατη η διάθεση %lu bytes στην ανάγνωση αρχείου \"%s\"" # -#: ../glib/gfileutils.c:591 +#: glib/gfileutils.c:591 #, c-format msgid "Error reading file '%s': %s" msgstr "Σφάλμα ανάγνωσης αρχείου '%s': %s" # gconf/gconf-internals.c:2416 -#: ../glib/gfileutils.c:673 +#: glib/gfileutils.c:673 #, c-format msgid "Failed to read from file '%s': %s" msgstr "Αποτυχία ανάγνωσης από το αρχείο '%s': %s" # gconf/gconf-internals.c:2416 -#: ../glib/gfileutils.c:724 ../glib/gfileutils.c:811 +#: glib/gfileutils.c:724 glib/gfileutils.c:811 #, c-format msgid "Failed to open file '%s': %s" msgstr "Αποτυχία ανοίγματος αρχείου `%s': %s" # gconf/gconfd.c:1701 -#: ../glib/gfileutils.c:741 ../glib/gmappedfile.c:133 +#: glib/gfileutils.c:741 glib/gmappedfile.c:133 #, c-format msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgstr "Αποτυχία λήψης ιδιοτήτων του αρχείου '%s': fstat() απέτυχε: %s" # gconf/gconf-internals.c:2416 -#: ../glib/gfileutils.c:775 +#: glib/gfileutils.c:775 #, c-format msgid "Failed to open file '%s': fdopen() failed: %s" msgstr "Αδυναμία ανοίγματος αρχείου '%s': fdopen() απέτυχε: %s" # gconf/gconf-internals.c:2416 -#: ../glib/gfileutils.c:909 +#: glib/gfileutils.c:909 #, c-format msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgstr "Αδυναμία μετονομασίας αρχείου%s' σε '%s': g_rename() failed: %s" # gconf/gconf-internals.c:2416 -#: ../glib/gfileutils.c:950 ../glib/gfileutils.c:1415 +#: glib/gfileutils.c:950 glib/gfileutils.c:1415 #, c-format msgid "Failed to create file '%s': %s" msgstr "Αποτυχία δημιουργίας αρχείου '%s': %s" # gconf/gconf-internals.c:2416 -#: ../glib/gfileutils.c:964 +#: glib/gfileutils.c:964 #, c-format msgid "Failed to open file '%s' for writing: fdopen() failed: %s" msgstr "Αδυναμία ανοίγματος αρχείου '%s' για εγγραφή: fdopen() απέτυχε: %s" # gconf/gconf-internals.c:2416 -#: ../glib/gfileutils.c:989 +#: glib/gfileutils.c:989 #, c-format msgid "Failed to write file '%s': fwrite() failed: %s" msgstr "Αδυναμία εγγραφής αρχείου '%s': fwrite() failed: %s" # gconf/gconf-internals.c:2416 -#: ../glib/gfileutils.c:1008 +#: glib/gfileutils.c:1008 #, c-format msgid "Failed to close file '%s': fclose() failed: %s" msgstr "Αδυναμία κλεισίματος αρχείου '%s': fclose() απέτυχε: %s" -#: ../glib/gfileutils.c:1126 +#: glib/gfileutils.c:1126 #, c-format msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgstr "" "Δεν είναι δυνατή η απομάκρυνση του υπάρχοντος αρχείου '%s': g_unlink() " "απέτυχε: %s" -#: ../glib/gfileutils.c:1376 +#: glib/gfileutils.c:1376 #, c-format msgid "Template '%s' invalid, should not contain a '%s'" msgstr "Το πρότυπο '%s' δεν είναι έγκυρο, θα πρέπει να περιέχει ένα '%s'" -#: ../glib/gfileutils.c:1390 +#: glib/gfileutils.c:1390 #, c-format msgid "Template '%s' doesn't end with XXXXXX" msgstr "Το πρότυπο '%s' δεν τελειώνει με XXXXXX" # gconf/gconf-internals.c:2416 -#: ../glib/gfileutils.c:1865 +#: glib/gfileutils.c:1865 #, c-format msgid "Failed to read the symbolic link '%s': %s" msgstr "Αποτυχία ανάγνωσης συμβολικού δεσμού '%s': %s" -#: ../glib/gfileutils.c:1886 +#: glib/gfileutils.c:1886 +#, c-format msgid "Symbolic links not supported" msgstr "Οι συμβολικοί δεσμοί δεν υποστηρίζονται" -#: ../glib/giochannel.c:1154 +#: glib/giochannel.c:1154 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "Δεν ήταν δυνατό το άνοιγμα μετατροπέα από `%s' σε `%s': %s" -#: ../glib/giochannel.c:1499 +#: glib/giochannel.c:1499 +#, c-format msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "Δεν είναι δυνατή η raw ανάγνωση σε g_io_channel_read_line_string" -#: ../glib/giochannel.c:1546 ../glib/giochannel.c:1803 -#: ../glib/giochannel.c:1889 +#: glib/giochannel.c:1546 glib/giochannel.c:1803 glib/giochannel.c:1889 +#, c-format msgid "Leftover unconverted data in read buffer" msgstr "Εναπομείναντα δεδομένα που δεν έχουν μετατραπεί στο read buffer" -#: ../glib/giochannel.c:1626 ../glib/giochannel.c:1703 +#: glib/giochannel.c:1626 glib/giochannel.c:1703 +#, c-format msgid "Channel terminates in a partial character" msgstr "Το κανάλι τερματίζει σε ημιτελή χαρακτήρα" -#: ../glib/giochannel.c:1689 +#: glib/giochannel.c:1689 +#, c-format msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Δεν είναι δυνατή η raw ανάγνωση σε g_io_channel_read_to_end" # gconf/gconf-internals.c:2416 -#: ../glib/gmappedfile.c:116 +#: glib/gmappedfile.c:116 #, c-format msgid "Failed to open file '%s': open() failed: %s" msgstr "Αδυναμία ανοίγματος αρχείου '%s': open() απέτυχε: %s" # gconf/gconf-internals.c:2416 -#: ../glib/gmappedfile.c:193 +#: glib/gmappedfile.c:193 #, c-format msgid "Failed to map file '%s': mmap() failed: %s" msgstr "Αδυναμία χαρτογράφησης αρχείου '%s': mmap() απέτυχε: %s" # gconf/gconfd.c:1676 -#: ../glib/gmarkup.c:232 +#: glib/gmarkup.c:232 #, c-format msgid "Error on line %d char %d: %s" msgstr "Σφάλμα στη γραμμή %d χαρακτήρας %d: %s" # -#: ../glib/gmarkup.c:330 +#: glib/gmarkup.c:330 #, c-format msgid "Error on line %d: %s" msgstr "Σφάλμα στη γραμμή %d: %s" -#: ../glib/gmarkup.c:434 -msgid "Empty entity '&;' seen; valid entities are: & " < > '" +#: glib/gmarkup.c:434 +msgid "" +"Empty entity '&;' seen; valid entities are: & " < > '" msgstr "" "Κενή καταχώρηση '&;' , έγκυρες οντότητες είναι: & " < > " "' " -#: ../glib/gmarkup.c:444 +#: glib/gmarkup.c:444 #, c-format msgid "" "Character '%s' is not valid at the start of an entity name; the & character " @@ -251,17 +260,17 @@ msgstr "" "χαρακτήρας & ξεκινά μια οντότητα, αν αυτό το συμπλεκτικό σύμβολο σεν " "υποτίθεται να είναι οντότητα, escape it as &" -#: ../glib/gmarkup.c:478 +#: glib/gmarkup.c:478 #, c-format msgid "Character '%s' is not valid inside an entity name" msgstr "Ο χαρακτήρας '%s' δεν είναι έγκυρος μέσα σε όνομα ύπαρξης." -#: ../glib/gmarkup.c:515 +#: glib/gmarkup.c:515 #, c-format msgid "Entity name '%s' is not known" msgstr "Το όνομα οντότητας '%s' δεν είναι γνωστή" -#: ../glib/gmarkup.c:526 +#: glib/gmarkup.c:526 msgid "" "Entity did not end with a semicolon; most likely you used an ampersand " "character without intending to start an entity - escape ampersand as &" @@ -270,7 +279,7 @@ msgstr "" "συμπλεκτικό χαρακτήρα χωρίς να θέλατε να ξεκινήσετε μια οντότητα - διαφυγή " "συμπλεκτικού χαρακτήρα ώς &" -#: ../glib/gmarkup.c:579 +#: glib/gmarkup.c:579 #, c-format msgid "" "Failed to parse '%-.*s', which should have been a digit inside a character " @@ -280,16 +289,16 @@ msgstr "" "στην αναφορά χαρακτήρα (ê για παράδειγμα) - ίσως το ψηφίο να είναι πολύ " "μεγάλο" -#: ../glib/gmarkup.c:604 +#: glib/gmarkup.c:604 #, c-format msgid "Character reference '%-.*s' does not encode a permitted character" msgstr "Η αναφορά χαρακτήρα'%-.*s' δεν κωδικοποιεί έναν επιτρεπόμενο χαρακτήρα" -#: ../glib/gmarkup.c:619 +#: glib/gmarkup.c:619 msgid "Empty character reference; should include a digit such as dž" msgstr "Κενή αναφορά χαρακτήρα; πρέπει να περιέχει ένα ψηφίο όπως dž" -#: ../glib/gmarkup.c:629 +#: glib/gmarkup.c:629 msgid "" "Character reference did not end with a semicolon; most likely you used an " "ampersand character without intending to start an entity - escape ampersand " @@ -299,23 +308,23 @@ msgstr "" "έναν συμπλεκτικό χαρακτήρα χωρίς να θέλατε να ξεκινήσετε μια οντότητα - " "διαφυγή συμπλεκτικού χαρακτήρα ώς &" -#: ../glib/gmarkup.c:715 +#: glib/gmarkup.c:715 msgid "Unfinished entity reference" msgstr "Ημιτελής αναφορά οντότητας" -#: ../glib/gmarkup.c:721 +#: glib/gmarkup.c:721 msgid "Unfinished character reference" msgstr "Ημιτελής αναφορά χαρακτήρα" -#: ../glib/gmarkup.c:964 ../glib/gmarkup.c:992 ../glib/gmarkup.c:1023 +#: glib/gmarkup.c:964 glib/gmarkup.c:992 glib/gmarkup.c:1023 msgid "Invalid UTF-8 encoded text" msgstr "Μή έγκυρα κωδικοποιημένο κείμενο UTF-8 " -#: ../glib/gmarkup.c:1059 +#: glib/gmarkup.c:1059 msgid "Document must begin with an element (e.g. )" msgstr "Το έγγραφο πρέπει να ξεκινάει με στοιχείο (π.χ. )" -#: ../glib/gmarkup.c:1099 +#: glib/gmarkup.c:1099 #, c-format msgid "" "'%s' is not a valid character following a '<' character; it may not begin an " @@ -324,7 +333,7 @@ msgstr "" "Το '%s' δεν είναι έγκυρος χαρακτήρας όταν ακολουθείται από ένα χαρακτήρα " "'<' ." -#: ../glib/gmarkup.c:1163 +#: glib/gmarkup.c:1163 #, c-format msgid "" "Odd character '%s', expected a '>' character to end the start tag of element " @@ -333,14 +342,15 @@ msgstr "" "Περίεργος χαρακτήρας '%s', αναμενόταν ένας χαρακτήρας '>' στο τέλος της " "ετικέτας έναρξης του στοιχείου '%s'" -#: ../glib/gmarkup.c:1252 +#: glib/gmarkup.c:1252 #, c-format -msgid "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" +msgid "" +"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" msgstr "" "Περίεργος χαρακτήρας '%s', αναμενόταν ένα '=' μετά το όνομα γνωρίσματος '%" "s' του στοιχείου '%s'" -#: ../glib/gmarkup.c:1294 +#: glib/gmarkup.c:1294 #, c-format msgid "" "Odd character '%s', expected a '>' or '/' character to end the start tag of " @@ -351,7 +361,7 @@ msgstr "" "της ετικέτας έναρξης του στοιχείου '%s'. ή ένα γνώρισμα, πιθανόν να " "χρησιμοποιήσατε ένα μή έγκυρο χαρακτήρα σε ένα όνομα γνωρίσματος" -#: ../glib/gmarkup.c:1383 +#: glib/gmarkup.c:1383 #, c-format msgid "" "Odd character '%s', expected an open quote mark after the equals sign when " @@ -360,7 +370,7 @@ msgstr "" "Περίεργος χαρακτήρας '%s', αναμενόταν ένα ανοικτό εισαγωγικό μετα το " "σημείο ίσον κατά την απόδοση τιμής για το γνώρισμα '%s' του στοιχείου '%s'" -#: ../glib/gmarkup.c:1528 +#: glib/gmarkup.c:1528 #, c-format msgid "" "'%s' is not a valid character following the characters ''" -#: ../glib/gmarkup.c:1579 +#: glib/gmarkup.c:1579 #, c-format msgid "Element '%s' was closed, no element is currently open" msgstr "Το στοιχείο '%s' έκλεισε, κανένα στοιχείο δεν είναι ανοικτό" -#: ../glib/gmarkup.c:1588 +#: glib/gmarkup.c:1588 #, c-format msgid "Element '%s' was closed, but the currently open element is '%s'" msgstr "Το στοιχείο '%s' έκλεισε, αλλά το τρέχον ανοικτό στοιχείο είναι '%s' " -#: ../glib/gmarkup.c:1735 +#: glib/gmarkup.c:1735 msgid "Document was empty or contained only whitespace" msgstr "Το έγγραφο ήταν κενό (ή περιέχει μόνο λευκό κενό)" -#: ../glib/gmarkup.c:1749 +#: glib/gmarkup.c:1749 msgid "Document ended unexpectedly just after an open angle bracket '<'" msgstr "" "Το έγγραφο τερματίστηκε απρόσμενα αμέσως μετά από μια ανοικτή γωνιακή " "παρένθεση '<'" -#: ../glib/gmarkup.c:1757 ../glib/gmarkup.c:1801 +#: glib/gmarkup.c:1757 glib/gmarkup.c:1801 #, c-format msgid "" "Document ended unexpectedly with elements still open - '%s' was the last " @@ -407,7 +417,7 @@ msgstr "" "Το έγγραφο τερματίστηκε απρόσμενα με στοιχεία ακόμα ανοικτά - '%s' ήταν το " "τελευταίο στοιχείο που ανοίχθηκε" -#: ../glib/gmarkup.c:1765 +#: glib/gmarkup.c:1765 #, c-format msgid "" "Document ended unexpectedly, expected to see a close angle bracket ending " @@ -416,19 +426,19 @@ msgstr "" "Το έγγραφο τερματίστηκε απρόσμενα, αναμενόταν μια παρένθεση κλεισίματος στο " "τέλος του tag <%s/>" -#: ../glib/gmarkup.c:1771 +#: glib/gmarkup.c:1771 msgid "Document ended unexpectedly inside an element name" msgstr "Το έγγραφο τερματίστηκε απρόσμενα μέσα σε όνομα στοιχείου" -#: ../glib/gmarkup.c:1776 +#: glib/gmarkup.c:1776 msgid "Document ended unexpectedly inside an attribute name" msgstr "Το έγγραφο τερματίστηκε απρόσμενα μέσα σε όνομα γνωρίσματος" -#: ../glib/gmarkup.c:1781 +#: glib/gmarkup.c:1781 msgid "Document ended unexpectedly inside an element-opening tag." msgstr "Το έγγραφο τερματίστηκε απρόσμενα μέσα σε tag ανοίγματος στοιχείου." -#: ../glib/gmarkup.c:1787 +#: glib/gmarkup.c:1787 msgid "" "Document ended unexpectedly after the equals sign following an attribute " "name; no attribute value" @@ -436,53 +446,58 @@ msgstr "" "Το έγγραφο τερματίστηκε απρόσμενα λόγω του ότι μετά του σημείου ίσον " "ακολουθεί ένα όνομα γνωρίσματος; δεν υπάρχει τιμή γνωρίσματος" -#: ../glib/gmarkup.c:1794 +#: glib/gmarkup.c:1794 msgid "Document ended unexpectedly while inside an attribute value" msgstr "Το έγγραφο τερματίστηκε απρόσμενα μέσα σε τιμή γνωρίσματος" -#: ../glib/gmarkup.c:1809 +#: glib/gmarkup.c:1809 #, c-format msgid "Document ended unexpectedly inside the close tag for element '%s'" -msgstr "Το έγγραφο τερματίστηκε απρόσμενα μέσα σε tag κλεισίματος για στοιχείο '%s'" +msgstr "" +"Το έγγραφο τερματίστηκε απρόσμενα μέσα σε tag κλεισίματος για στοιχείο '%s'" -#: ../glib/gmarkup.c:1815 +#: glib/gmarkup.c:1815 msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "Το έγγραφο τερματίστηκε απρόσμενα μέσα σε σχόλιο ή εντολή σε διεργασία" # gconf/gconf-internals.c:1577 -#: ../glib/gshell.c:73 +#: glib/gshell.c:73 +#, c-format msgid "Quoted text doesn't begin with a quotation mark" msgstr "Το παρατιθέμενο αλφαριθμητικό δεν αρχίζει με εισαγωγικό σημείο" -#: ../glib/gshell.c:163 +#: glib/gshell.c:163 +#, c-format msgid "Unmatched quotation mark in command line or other shell-quoted text" msgstr "" "Αταίριαστο ερωτηματικό στη γραμμή εντολών ή άλλο κείμενο που παρατίθεται από " "κέλυφος" -#: ../glib/gshell.c:541 +#: glib/gshell.c:541 #, c-format msgid "Text ended just after a '\\' character. (The text was '%s')" msgstr "" "Το κείμενο τερματίστηκε αμέσως μετά από χαρακτήρα '\\' (Το κείμενο ήταν '%" "s')" -#: ../glib/gshell.c:548 +#: glib/gshell.c:548 #, c-format msgid "Text ended before matching quote was found for %c. (The text was '%s')" msgstr "" "Το κείμενο τερματίστηκε πριν να βρεθεί ταιριαστή παράθεση για %c. (Το " "κείμενο ήταν '%s')" -#: ../glib/gshell.c:560 +#: glib/gshell.c:560 +#, c-format msgid "Text was empty (or contained only whitespace)" msgstr "Το κείμενο ήταν κενό (ή περιέχει μόνο λευκό κενό)" -#: ../glib/gspawn-win32.c:276 +#: glib/gspawn-win32.c:276 +#, c-format msgid "Failed to read data from child process" msgstr "Αποτυχία ανάγνωσης δεδομένων από θυγατρική διεργασία" -#: ../glib/gspawn-win32.c:291 ../glib/gspawn.c:1364 +#: glib/gspawn-win32.c:291 glib/gspawn.c:1364 #, c-format msgid "Failed to create pipe for communicating with child process (%s)" msgstr "" @@ -490,53 +505,51 @@ msgstr "" "s)" # gconf/gconftool.c:881 -#: ../glib/gspawn-win32.c:329 ../glib/gspawn.c:1028 +#: glib/gspawn-win32.c:329 glib/gspawn.c:1028 #, c-format msgid "Failed to read from child pipe (%s)" msgstr "Αποτυχία ανάγνωσης από θυγατρική σωλήνωση (%s)" -#: ../glib/gspawn-win32.c:355 ../glib/gspawn.c:1233 +#: glib/gspawn-win32.c:355 glib/gspawn.c:1233 #, c-format msgid "Failed to change to directory '%s' (%s)" msgstr "Αποτυχία αλλαγής καταλόγου '%s' (%s)" -#: ../glib/gspawn-win32.c:361 ../glib/gspawn-win32.c:581 +#: glib/gspawn-win32.c:361 glib/gspawn-win32.c:581 #, c-format msgid "Failed to execute child process (%s)" msgstr "Αποτυχία εκτέλεσης θυγατρικής διεργασίας (%s)" -#: ../glib/gspawn-win32.c:471 ../glib/gspawn-win32.c:527 +#: glib/gspawn-win32.c:471 glib/gspawn-win32.c:527 #, c-format msgid "Invalid program name: %s" msgstr "Ακατάλληλο όνομα προγράμματος: %s" -#: ../glib/gspawn-win32.c:481 ../glib/gspawn-win32.c:537 -#: ../glib/gspawn-win32.c:780 ../glib/gspawn-win32.c:835 -#: ../glib/gspawn-win32.c:1370 +#: glib/gspawn-win32.c:481 glib/gspawn-win32.c:537 glib/gspawn-win32.c:780 +#: glib/gspawn-win32.c:835 glib/gspawn-win32.c:1370 #, c-format msgid "Invalid string in argument vector at %d: %s" msgstr "Μη έγκυρο όρισμα για %d: %s" -#: ../glib/gspawn-win32.c:492 ../glib/gspawn-win32.c:548 -#: ../glib/gspawn-win32.c:794 ../glib/gspawn-win32.c:848 -#: ../glib/gspawn-win32.c:1403 +#: glib/gspawn-win32.c:492 glib/gspawn-win32.c:548 glib/gspawn-win32.c:794 +#: glib/gspawn-win32.c:848 glib/gspawn-win32.c:1403 #, c-format msgid "Invalid string in environment: %s" msgstr "Μή έγκυρη σειρά στο περιβάλλον: %s" # -#: ../glib/gspawn-win32.c:776 ../glib/gspawn-win32.c:831 -#: ../glib/gspawn-win32.c:1351 +#: glib/gspawn-win32.c:776 glib/gspawn-win32.c:831 glib/gspawn-win32.c:1351 #, c-format msgid "Invalid working directory: %s" msgstr "Μη έγκυρος κατάλογος εργασίας: %s" -#: ../glib/gspawn-win32.c:890 +#: glib/gspawn-win32.c:890 #, c-format msgid "Failed to execute helper program (%s)" msgstr "Αποτυχία εκτέλεσης βοηθητικού προγράμματος(%s)" -#: ../glib/gspawn-win32.c:1090 +#: glib/gspawn-win32.c:1090 +#, c-format msgid "" "Unexpected error in g_io_channel_win32_poll() reading data from a child " "process" @@ -545,169 +558,178 @@ msgstr "" "θυγατρική διεργασία" # gconf/gconf-internals.c:2416 -#: ../glib/gspawn.c:168 +#: glib/gspawn.c:168 #, c-format msgid "Failed to read data from child process (%s)" msgstr "Αποτυχία ανάγνωσης δεδομένων από θυγατρική διεργασία (%s)" -#: ../glib/gspawn.c:300 +#: glib/gspawn.c:300 #, c-format msgid "Unexpected error in select() reading data from a child process (%s)" msgstr "" "Απρόσμενο σφάλμα στο select() ανάγνωσης δεδομένων από θυγατρική διεργασία (%" "s)" -#: ../glib/gspawn.c:383 +#: glib/gspawn.c:383 #, c-format msgid "Unexpected error in waitpid() (%s)" msgstr "Μη αναμενόμενο σφάλμα στη waitpid() (%s)" # gconf/gconf-internals.c:2416 -#: ../glib/gspawn.c:1093 +#: glib/gspawn.c:1093 #, c-format msgid "Failed to fork (%s)" msgstr "Αποτυχία δικράνωσης (%s)" # gconf/gconf-internals.c:2416 -#: ../glib/gspawn.c:1243 +#: glib/gspawn.c:1243 #, c-format msgid "Failed to execute child process \"%s\" (%s)" msgstr "Αποτυχία εκτέλεσης θυγατρικής διεργασίας \"%s\" (%s)" -#: ../glib/gspawn.c:1253 +#: glib/gspawn.c:1253 #, c-format msgid "Failed to redirect output or input of child process (%s)" -msgstr "Αποτυχία προώθησης αποτελέσματος ή εισόδου της θυγατρικής διεργασίας (%s)" +msgstr "" +"Αποτυχία προώθησης αποτελέσματος ή εισόδου της θυγατρικής διεργασίας (%s)" -#: ../glib/gspawn.c:1262 +#: glib/gspawn.c:1262 #, c-format msgid "Failed to fork child process (%s)" msgstr "Αποτυχία δικράνωσης θυγατρικής διεργασίάς (%s)" -#: ../glib/gspawn.c:1270 +#: glib/gspawn.c:1270 #, c-format msgid "Unknown error executing child process \"%s\"" msgstr "Άγνωστο σφάλμα κατά την εκτέλεση της θυγατρικής διεργασίας \"%s\"" -#: ../glib/gspawn.c:1292 +#: glib/gspawn.c:1292 #, c-format msgid "Failed to read enough data from child pid pipe (%s)" msgstr "Αποτυχία ανάγνωσης επαρκών δεδομένων από θυγατρική σωλήνωση pid (%s)" -#: ../glib/gutf8.c:1017 +#: glib/gutf8.c:1017 +#, c-format msgid "Character out of range for UTF-8" msgstr "Ο χαρακτήρας είναι έξω από την εμβέλεια για UTF-8" -#: ../glib/gutf8.c:1111 ../glib/gutf8.c:1120 ../glib/gutf8.c:1252 -#: ../glib/gutf8.c:1261 ../glib/gutf8.c:1402 ../glib/gutf8.c:1498 +#: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 glib/gutf8.c:1261 +#: glib/gutf8.c:1402 glib/gutf8.c:1498 +#, c-format msgid "Invalid sequence in conversion input" msgstr "Μή έγκυρη σειρά στην είσοδο μεταροπής" -#: ../glib/gutf8.c:1413 ../glib/gutf8.c:1509 +#: glib/gutf8.c:1413 glib/gutf8.c:1509 +#, c-format msgid "Character out of range for UTF-16" msgstr "Ο χαρακτήρας είναι έξω από την εμβέλεια για UTF-16" -#: ../glib/goption.c:468 +#: glib/goption.c:468 msgid "Usage:" msgstr "Χρήση:" -#: ../glib/goption.c:468 +#: glib/goption.c:468 msgid "[OPTION...]" msgstr "[ΕΠΙΛΟΓΗ...]" -#: ../glib/goption.c:556 +#: glib/goption.c:556 msgid "Help Options:" msgstr "Επιλογές βοήθειας:" -#: ../glib/goption.c:557 +#: glib/goption.c:557 msgid "Show help options" msgstr "Εμφάνιση επιλογών βοήθειας" -#: ../glib/goption.c:562 +#: glib/goption.c:562 msgid "Show all help options" msgstr "Εμφάνιση όλων των επιλογών βοήθειας" -#: ../glib/goption.c:612 +#: glib/goption.c:612 msgid "Application Options:" msgstr "Επιλογές εφαρμογής:" -#: ../glib/goption.c:653 +#: glib/goption.c:653 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Αδυναμία ανάλυσης integer value '%s' για %s" -#: ../glib/goption.c:663 +#: glib/goption.c:663 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Integer value '%s' για %s είναι εκτός εύρους" # gconf/gconftool.c:1181 -#: ../glib/goption.c:926 +#: glib/goption.c:926 #, c-format msgid "Error parsing option %s" msgstr "Σφάλμα επιλογής ανάλυσης %s" -#: ../glib/goption.c:959 ../glib/goption.c:1070 +#: glib/goption.c:959 glib/goption.c:1070 #, c-format msgid "Missing argument for %s" msgstr "Λείπει όρισμα για %s" -#: ../glib/goption.c:1474 +#: glib/goption.c:1474 #, c-format msgid "Unknown option %s" msgstr "Άγνωστη επιλογή %s" -#: ../glib/gkeyfile.c:339 +#: glib/gkeyfile.c:339 +#, c-format msgid "Valid key file could not be found in data dirs" msgstr "Δεν μπορεί να βρεθεί έγκυρο key file στους καταλόγους δεδομένων" -#: ../glib/gkeyfile.c:374 +#: glib/gkeyfile.c:374 +#, c-format msgid "Not a regular file" msgstr "Δεν είναι κανονικό αρχείο" -#: ../glib/gkeyfile.c:382 +#: glib/gkeyfile.c:382 +#, c-format msgid "File is empty" msgstr "Το αρχείο είναι κενό" -#: ../glib/gkeyfile.c:697 +#: glib/gkeyfile.c:697 #, c-format -msgid "Key file contains line '%s' which is not a key-value pair, group, or comment" +msgid "" +"Key file contains line '%s' which is not a key-value pair, group, or comment" msgstr "" "Το Key file περιέχει την γραμμή '%s' που δεν είναι key-value pair, group, ή " "comment" -#: ../glib/gkeyfile.c:765 +#: glib/gkeyfile.c:765 +#, c-format msgid "Key file does not start with a group" msgstr "Το Key file δεν ξεκινάει με μια ομάδα" -#: ../glib/gkeyfile.c:808 +#: glib/gkeyfile.c:808 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Το Key file περιέχει μη υποστηριζόμενη κωδικοποίηση '%s'" -#: ../glib/gkeyfile.c:1017 ../glib/gkeyfile.c:1176 ../glib/gkeyfile.c:2177 -#: ../glib/gkeyfile.c:2242 ../glib/gkeyfile.c:2361 ../glib/gkeyfile.c:2497 -#: ../glib/gkeyfile.c:2649 ../glib/gkeyfile.c:2823 ../glib/gkeyfile.c:2880 +#: glib/gkeyfile.c:1017 glib/gkeyfile.c:1176 glib/gkeyfile.c:2177 +#: glib/gkeyfile.c:2242 glib/gkeyfile.c:2361 glib/gkeyfile.c:2497 +#: glib/gkeyfile.c:2649 glib/gkeyfile.c:2823 glib/gkeyfile.c:2880 #, c-format msgid "Key file does not have group '%s'" msgstr "Το Key file δεν έχει ομάδα '%s'" -#: ../glib/gkeyfile.c:1188 +#: glib/gkeyfile.c:1188 #, c-format msgid "Key file does not have key '%s'" msgstr "Το Key file δεν έχει κλειδί'%s'" -#: ../glib/gkeyfile.c:1289 ../glib/gkeyfile.c:1398 +#: glib/gkeyfile.c:1289 glib/gkeyfile.c:1398 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "Το Key file περιέχει ένα κλειδί '%s' με τιμή '%s' που δεν είναι UTF-8" -#: ../glib/gkeyfile.c:1307 ../glib/gkeyfile.c:1416 ../glib/gkeyfile.c:1788 +#: glib/gkeyfile.c:1307 glib/gkeyfile.c:1416 glib/gkeyfile.c:1788 #, c-format msgid "Key file contains key '%s' which has value that cannot be interpreted." msgstr "Το Key file περιέχει key '%s' που η τιμή του δεν μπορεί να ερμηνευθεί." -#: ../glib/gkeyfile.c:2004 +#: glib/gkeyfile.c:2004 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has value that cannot be " @@ -716,32 +738,32 @@ msgstr "" "Το Key file περιέχει key '%s' στην ομάδα '%s' που η τιμή του δεν μπορεί να " "ερμηνευθεί." -#: ../glib/gkeyfile.c:2192 ../glib/gkeyfile.c:2376 ../glib/gkeyfile.c:2891 +#: glib/gkeyfile.c:2192 glib/gkeyfile.c:2376 glib/gkeyfile.c:2891 #, c-format msgid "Key file does not have key '%s' in group '%s'" msgstr "Το Key file δεν έχει key '%s' στην ομάδα '%s'" -#: ../glib/gkeyfile.c:3067 +#: glib/gkeyfile.c:3067 +#, c-format msgid "Key file contains escape character at end of line" msgstr "Το Key file περιέχει escape character στο τέλος της γραμμής" -#: ../glib/gkeyfile.c:3089 +#: glib/gkeyfile.c:3089 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "To Key file περιέχει χαρακτήρες μή έγκυρα escaped '%s'" -#: ../glib/gkeyfile.c:3230 +#: glib/gkeyfile.c:3230 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Η τιμή '%s' δεν μπορεί να ερμηνευθεί ως ένας αριθμός." -#: ../glib/gkeyfile.c:3240 +#: glib/gkeyfile.c:3240 #, c-format msgid "Integer value '%s' out of range" msgstr "Integer value '%s' είναι εκτός εύρους" -#: ../glib/gkeyfile.c:3270 +#: glib/gkeyfile.c:3270 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Η τιμή '%s' δεν μπορεί να ερμηνευθεί ως boolean." - diff --git a/po/en_CA.po b/po/en_CA.po index ae3e7cc..919b5a6 100644 --- a/po/en_CA.po +++ b/po/en_CA.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-08-27 16:20-0400\n" "Last-Translator: Adam Weinberger \n" "Language-Team: Canadian English \n" diff --git a/po/en_GB.po b/po/en_GB.po index bf0b8f2..baceb8a 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: GLIB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-04-19 20:16+0100\n" "Last-Translator: David Lodge \n" "Language-Team: \n" diff --git a/po/eo.po b/po/eo.po index 9e46449..91d11f7 100644 --- a/po/eo.po +++ b/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: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2003-07-01 15:10-0500\n" "Last-Translator: Charles Voelger \n" "Language-Team: Esperanto \n" diff --git a/po/es.po b/po/es.po index 6231464..645a7d6 100644 --- a/po/es.po +++ b/po/es.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: gnome-control-center\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-07 01:34+0100\n" "Last-Translator: Francisco Javier F. Serrador \n" "Language-Team: Spanish \n" diff --git a/po/et.po b/po/et.po index 62b71c6..57b5cb6 100644 --- a/po/et.po +++ b/po/et.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Glib HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-20 14:11+0200\n" "Last-Translator: Ivar Smolin \n" "Language-Team: Estonian \n" diff --git a/po/eu.po b/po/eu.po index de88130..7422bd0 100644 --- a/po/eu.po +++ b/po/eu.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: eu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-21 15:20+0100\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-02-21 15:21+0100\n" "Last-Translator: Iñaki Larrañaga \n" "Language-Team: Basque \n" @@ -20,210 +20,219 @@ msgstr "" "Plural-Forms: Plural-Forms: nplurals=2; plural=(n != 1);\n" "\n" -#: ../glib/gconvert.c:408 ../glib/gconvert.c:486 ../glib/giochannel.c:1150 +#: glib/gconvert.c:408 glib/gconvert.c:486 glib/giochannel.c:1150 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "'%s' karaktere-multzoa '%s' bihurtzea ez da onartzen" -#: ../glib/gconvert.c:412 ../glib/gconvert.c:490 +#: glib/gconvert.c:412 glib/gconvert.c:490 #, c-format msgid "Could not open converter from '%s' to '%s'" msgstr "Ezin izan da '%s'(e)tik %s(e)rako bihurtzailea ireki" -#: ../glib/gconvert.c:606 ../glib/gconvert.c:995 ../glib/giochannel.c:1322 -#: ../glib/giochannel.c:1364 ../glib/giochannel.c:2206 ../glib/gutf8.c:943 -#: ../glib/gutf8.c:1392 +#: glib/gconvert.c:606 glib/gconvert.c:995 glib/giochannel.c:1322 +#: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943 +#: glib/gutf8.c:1392 +#, c-format msgid "Invalid byte sequence in conversion input" msgstr "Byten sekuentzia baliogabea bihurketa-sarreran" -#: ../glib/gconvert.c:612 ../glib/gconvert.c:922 ../glib/giochannel.c:1329 -#: ../glib/giochannel.c:2218 +#: glib/gconvert.c:612 glib/gconvert.c:922 glib/giochannel.c:1329 +#: glib/giochannel.c:2218 #, c-format msgid "Error during conversion: %s" msgstr "Errorea bihurtzean: %s" -#: ../glib/gconvert.c:647 ../glib/gutf8.c:939 ../glib/gutf8.c:1143 -#: ../glib/gutf8.c:1284 ../glib/gutf8.c:1388 +#: glib/gconvert.c:647 glib/gutf8.c:939 glib/gutf8.c:1143 glib/gutf8.c:1284 +#: glib/gutf8.c:1388 +#, c-format msgid "Partial character sequence at end of input" msgstr "Karaktere-sekuentzia partziala sarreraren amaieran" -#: ../glib/gconvert.c:897 +#: glib/gconvert.c:897 #, c-format msgid "Cannot convert fallback '%s' to codeset '%s'" msgstr "Ezin da '%s' atzerapena '%s' kode-multzo bihurtu" -#: ../glib/gconvert.c:1706 +#: glib/gconvert.c:1706 #, c-format msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" msgstr "'%s' URIa ez da \"fitxategi\"-eskema erabiltzen duen URI absolutua " -#: ../glib/gconvert.c:1716 +#: glib/gconvert.c:1716 #, c-format msgid "The local file URI '%s' may not include a '#'" msgstr "Baliteke '%s' URI fitxategi lokalak '#' ez edukitzea" -#: ../glib/gconvert.c:1733 +#: glib/gconvert.c:1733 #, c-format msgid "The URI '%s' is invalid" msgstr "'%s' URI baliogabea da" -#: ../glib/gconvert.c:1745 +#: glib/gconvert.c:1745 #, c-format msgid "The hostname of the URI '%s' is invalid" msgstr "'%s' URIaren ostalari-izena baliogabea da" -#: ../glib/gconvert.c:1761 +#: glib/gconvert.c:1761 #, c-format msgid "The URI '%s' contains invalidly escaped characters" msgstr "'%s' URIak ihes-karaktere baliogabeak ditu" -#: ../glib/gconvert.c:1855 +#: glib/gconvert.c:1855 #, c-format msgid "The pathname '%s' is not an absolute path" msgstr "'%s' bide-izena ez da bide-izen absolutua" # -#: ../glib/gconvert.c:1865 +#: glib/gconvert.c:1865 +#, c-format msgid "Invalid hostname" msgstr "Ostalari-izen baliogabea" -#: ../glib/gdir.c:121 ../glib/gdir.c:141 +#: glib/gdir.c:121 glib/gdir.c:141 #, c-format msgid "Error opening directory '%s': %s" msgstr "Errorea '%s' direktorioa irekitzean: %s " -#: ../glib/gfileutils.c:576 ../glib/gfileutils.c:649 +#: glib/gfileutils.c:576 glib/gfileutils.c:649 #, c-format msgid "Could not allocate %lu bytes to read file \"%s\"" msgstr "Ezin izan dira %lu byte esleitu \"%s\" fitxategia irakurtzeko" -#: ../glib/gfileutils.c:591 +#: glib/gfileutils.c:591 #, c-format msgid "Error reading file '%s': %s" msgstr "Errorea '%s' fitxategia irakurtzean: %s " -#: ../glib/gfileutils.c:673 +#: glib/gfileutils.c:673 #, c-format msgid "Failed to read from file '%s': %s" msgstr "Ezin izan da '%s' fitxategitik irakurri: %s " -#: ../glib/gfileutils.c:724 ../glib/gfileutils.c:811 +#: glib/gfileutils.c:724 glib/gfileutils.c:811 #, c-format msgid "Failed to open file '%s': %s" msgstr "Ezin izan da '%s' fitxategia ireki: %s " -#: ../glib/gfileutils.c:741 ../glib/gmappedfile.c:133 +#: glib/gfileutils.c:741 glib/gmappedfile.c:133 #, c-format msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgstr "" "Ezin izan dira '%s' fitxategiko atributuak lortu: fstat()-(e)k huts egin du: " "%s" -#: ../glib/gfileutils.c:775 +#: glib/gfileutils.c:775 #, c-format msgid "Failed to open file '%s': fdopen() failed: %s" msgstr "Ezin izan da '%s' fitxategia ireki: fdopen()-(e)k huts egin du: %s" -#: ../glib/gfileutils.c:909 +#: glib/gfileutils.c:909 #, c-format msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgstr "" "Ezin izan da '%s' fitxategia '%s' gisa berrizendatu: g_rename()k huts egin " "du: %s" -#: ../glib/gfileutils.c:950 ../glib/gfileutils.c:1415 +#: glib/gfileutils.c:950 glib/gfileutils.c:1415 #, c-format msgid "Failed to create file '%s': %s" msgstr "Ezin izan da '%s' fitxategia sortu: %s " -#: ../glib/gfileutils.c:964 +#: glib/gfileutils.c:964 #, c-format msgid "Failed to open file '%s' for writing: fdopen() failed: %s" -msgstr "Ezin izan da '%s' fitxategia idazteko ireki: fdopen()-(e)k huts egin du: %s" +msgstr "" +"Ezin izan da '%s' fitxategia idazteko ireki: fdopen()-(e)k huts egin du: %s" -#: ../glib/gfileutils.c:989 +#: glib/gfileutils.c:989 #, c-format msgid "Failed to write file '%s': fwrite() failed: %s" msgstr "Ezin izan da '%s' fitxategia idatzi: fwrite()-k huts egin du: %s" -#: ../glib/gfileutils.c:1008 +#: glib/gfileutils.c:1008 #, c-format msgid "Failed to close file '%s': fclose() failed: %s" msgstr "Ezin izan da '%s' fitxategia itxi: fclose()-k huts egin du: %s" -#: ../glib/gfileutils.c:1126 +#: glib/gfileutils.c:1126 #, c-format msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgstr "'%s' fitxategia ezin izan da kendu: g_unlik()ek huts egin du: %s" -#: ../glib/gfileutils.c:1376 +#: glib/gfileutils.c:1376 #, c-format msgid "Template '%s' invalid, should not contain a '%s'" msgstr "'%s' txantiloia baliogabea da, ez luke '%s' eduki behar" -#: ../glib/gfileutils.c:1390 +#: glib/gfileutils.c:1390 #, c-format msgid "Template '%s' doesn't end with XXXXXX" msgstr "'%s' txantiloia ez da honela bukatzen: XXXXXX" -#: ../glib/gfileutils.c:1865 +#: glib/gfileutils.c:1865 #, c-format msgid "Failed to read the symbolic link '%s': %s" msgstr "Ezin izan da '%s' esteka sinbolikorik irakurri: %s" -#: ../glib/gfileutils.c:1886 +#: glib/gfileutils.c:1886 +#, c-format msgid "Symbolic links not supported" msgstr "Esteka sinbolikoak ez dira onartzen" -#: ../glib/giochannel.c:1154 +#: glib/giochannel.c:1154 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "Ezin izan da `%s'(e)tik `%s'(e)rako bihurtzailea ireki: %s" -#: ../glib/giochannel.c:1499 +#: glib/giochannel.c:1499 +#, c-format msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "Ezin dira datu gordinak irakurri g_io_channel_read_line_string-en" -#: ../glib/giochannel.c:1546 ../glib/giochannel.c:1803 -#: ../glib/giochannel.c:1889 +#: glib/giochannel.c:1546 glib/giochannel.c:1803 glib/giochannel.c:1889 +#, c-format msgid "Leftover unconverted data in read buffer" msgstr "Irakurketa-bufferrean geratu diren bihurtu gabeko datuak" -#: ../glib/giochannel.c:1626 ../glib/giochannel.c:1703 +#: glib/giochannel.c:1626 glib/giochannel.c:1703 +#, c-format msgid "Channel terminates in a partial character" msgstr "Kanala karaktere partzial batean bukatzen da" -#: ../glib/giochannel.c:1689 +#: glib/giochannel.c:1689 +#, c-format msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Ezin dira datu gordinak irakurri g_io_channel_read_to_end-etik" -#: ../glib/gmappedfile.c:116 +#: glib/gmappedfile.c:116 #, c-format msgid "Failed to open file '%s': open() failed: %s" msgstr "Ezin izan da '%s' fitxategia ireki: open()-ek huts egin du: %s" -#: ../glib/gmappedfile.c:193 +#: glib/gmappedfile.c:193 #, c-format msgid "Failed to map file '%s': mmap() failed: %s" msgstr "Ezin izan da '%s' fitxategi-mapa ireki: mmap()-ek huts egin du: %s" -#: ../glib/gmarkup.c:232 +#: glib/gmarkup.c:232 #, c-format msgid "Error on line %d char %d: %s" msgstr "Errorea %d lerroko %d karakterean: %s " -#: ../glib/gmarkup.c:330 +#: glib/gmarkup.c:330 #, c-format msgid "Error on line %d: %s" msgstr "Errorea %d lerroan: %s " -#: ../glib/gmarkup.c:434 -msgid "Empty entity '&;' seen; valid entities are: & " < > '" +#: glib/gmarkup.c:434 +msgid "" +"Empty entity '&;' seen; valid entities are: & " < > '" msgstr "" "'&;' entitatea hutsik dago; baliozko entitateak hauek dira: & " " "< > '" -#: ../glib/gmarkup.c:444 +#: glib/gmarkup.c:444 #, c-format msgid "" "Character '%s' is not valid at the start of an entity name; the & character " @@ -234,17 +243,17 @@ msgstr "" "entitate bat hasten du; & ikurrak entitatea izan behar ez badu, izenda " "ezazu &" -#: ../glib/gmarkup.c:478 +#: glib/gmarkup.c:478 #, c-format msgid "Character '%s' is not valid inside an entity name" msgstr "'%s' karakterea ezin da erabili entitate-izenen barruan" -#: ../glib/gmarkup.c:515 +#: glib/gmarkup.c:515 #, c-format msgid "Entity name '%s' is not known" msgstr "'%s' entitate-izena ezezaguna da" -#: ../glib/gmarkup.c:526 +#: glib/gmarkup.c:526 msgid "" "Entity did not end with a semicolon; most likely you used an ampersand " "character without intending to start an entity - escape ampersand as &" @@ -252,7 +261,7 @@ msgstr "" "Entitatea ez da puntu eta komaz bukatzen; normalean & ikurra erabiltzen da " "entitatea hasteko asmorik gabe; izendatu & karakterea & gisa;" -#: ../glib/gmarkup.c:579 +#: glib/gmarkup.c:579 #, c-format msgid "" "Failed to parse '%-.*s', which should have been a digit inside a character " @@ -261,16 +270,18 @@ msgstr "" "Ezin izan da '%-.*s' analizatu, digitu bat izan behar zuen karaktere-" "erreferentzia baten barruan (ê adibidez); agian digitua handiegia da" -#: ../glib/gmarkup.c:604 +#: glib/gmarkup.c:604 #, c-format msgid "Character reference '%-.*s' does not encode a permitted character" -msgstr "'%-.*s' karaktere-erreferentziak ez du baimendutako karaktere bat kodetzen" +msgstr "" +"'%-.*s' karaktere-erreferentziak ez du baimendutako karaktere bat kodetzen" -#: ../glib/gmarkup.c:619 +#: glib/gmarkup.c:619 msgid "Empty character reference; should include a digit such as dž" -msgstr "Karaktere-erreferentzia hutsa, digitu bat eduki beharko luke; adibidez dž" +msgstr "" +"Karaktere-erreferentzia hutsa, digitu bat eduki beharko luke; adibidez dž" -#: ../glib/gmarkup.c:629 +#: glib/gmarkup.c:629 msgid "" "Character reference did not end with a semicolon; most likely you used an " "ampersand character without intending to start an entity - escape ampersand " @@ -280,23 +291,23 @@ msgstr "" "erabiliko zenuen entitatea hasteko asmorik gabe. Izendatu & karakterea & " "gisa;" -#: ../glib/gmarkup.c:715 +#: glib/gmarkup.c:715 msgid "Unfinished entity reference" msgstr "Amaitu gabeko entitate-erreferentzia" -#: ../glib/gmarkup.c:721 +#: glib/gmarkup.c:721 msgid "Unfinished character reference" msgstr "Amaitu gabeko karaktere-erreferentzia" -#: ../glib/gmarkup.c:964 ../glib/gmarkup.c:992 ../glib/gmarkup.c:1023 +#: glib/gmarkup.c:964 glib/gmarkup.c:992 glib/gmarkup.c:1023 msgid "Invalid UTF-8 encoded text" msgstr "UTF-8 gisa kodetutako testu baliogabea" -#: ../glib/gmarkup.c:1059 +#: glib/gmarkup.c:1059 msgid "Document must begin with an element (e.g. )" msgstr "Dokumentuak elementu batez hasi behar du (adibidez, )" -#: ../glib/gmarkup.c:1099 +#: glib/gmarkup.c:1099 #, c-format msgid "" "'%s' is not a valid character following a '<' character; it may not begin an " @@ -305,7 +316,7 @@ msgstr "" "'%s' ez da karaktere balioduna '<' karakterearen atzetik; baliteke elementu " "baten izena ez hastea" -#: ../glib/gmarkup.c:1163 +#: glib/gmarkup.c:1163 #, c-format msgid "" "Odd character '%s', expected a '>' character to end the start tag of element " @@ -314,14 +325,15 @@ msgstr "" "'%s' karaktere bitxia, '>' karakterea espero zen '%s' elementuaren hasiera-" "etiketa amaitzeko" -#: ../glib/gmarkup.c:1252 +#: glib/gmarkup.c:1252 #, c-format -msgid "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" +msgid "" +"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" msgstr "" "'%s' karaktere bitxia, '=' espero zen '$2%s' elementuaren '$1%s' " "atributuaren ondoren" -#: ../glib/gmarkup.c:1294 +#: glib/gmarkup.c:1294 #, c-format msgid "" "Odd character '%s', expected a '>' or '/' character to end the start tag of " @@ -332,7 +344,7 @@ msgstr "" "hasiera-etiketa bukatzeko, edo bestela atributu bat. Agian karaktere " "baliogabea erabili duzu atributu-izen batean" -#: ../glib/gmarkup.c:1383 +#: glib/gmarkup.c:1383 #, c-format msgid "" "Odd character '%s', expected an open quote mark after the equals sign when " @@ -341,7 +353,7 @@ msgstr "" "'%s' karaktere bitxia, komatxo irekia espero zen berdin ikurraren ondoren " "'$2%s' elementuaren '$1%s' atributuari balioa ematean" -#: ../glib/gmarkup.c:1528 +#: glib/gmarkup.c:1528 #, c-format msgid "" "'%s' is not a valid character following the characters '' da" -#: ../glib/gmarkup.c:1579 +#: glib/gmarkup.c:1579 #, c-format msgid "Element '%s' was closed, no element is currently open" msgstr "'%s' elementua itxi egin da, unean ez dago elementurik irekita" -#: ../glib/gmarkup.c:1588 +#: glib/gmarkup.c:1588 #, c-format msgid "Element '%s' was closed, but the currently open element is '%s'" msgstr "'%s' elementua itxi egin da, baina unean '%s' elementua dago irekita" -#: ../glib/gmarkup.c:1735 +#: glib/gmarkup.c:1735 msgid "Document was empty or contained only whitespace" msgstr "Dokumentua hutsik dago edo zuriuneak bakarrik ditu" -#: ../glib/gmarkup.c:1749 +#: glib/gmarkup.c:1749 msgid "Document ended unexpectedly just after an open angle bracket '<'" msgstr "Dokumentua ustekabean itxi da angelu-parentesi ireki baten ondoren '<'" -#: ../glib/gmarkup.c:1757 ../glib/gmarkup.c:1801 +#: glib/gmarkup.c:1757 glib/gmarkup.c:1801 #, c-format msgid "" "Document ended unexpectedly with elements still open - '%s' was the last " @@ -386,7 +398,7 @@ msgstr "" "Dokumentua ustekabean amaitu da oraindik irekita zeuden elementuekin. '%s' " "irekitako azken elementua da" -#: ../glib/gmarkup.c:1765 +#: glib/gmarkup.c:1765 #, c-format msgid "" "Document ended unexpectedly, expected to see a close angle bracket ending " @@ -395,19 +407,20 @@ msgstr "" "Dokumentua ustekabean amaitu da, angelu-parentesi itxia ikustea espero nuen " "<%s/> etiketa amaitzen" -#: ../glib/gmarkup.c:1771 +#: glib/gmarkup.c:1771 msgid "Document ended unexpectedly inside an element name" msgstr "Dokumentua ustekabean amaitu da elementu-izen baten barruan" -#: ../glib/gmarkup.c:1776 +#: glib/gmarkup.c:1776 msgid "Document ended unexpectedly inside an attribute name" msgstr "Dokumentua ustekabean amaitu da atributu-izen baten barruan" -#: ../glib/gmarkup.c:1781 +#: glib/gmarkup.c:1781 msgid "Document ended unexpectedly inside an element-opening tag." -msgstr "Dokumentua ustekabean amaitu da elementua irekitzeko etiketa baten barruan." +msgstr "" +"Dokumentua ustekabean amaitu da elementua irekitzeko etiketa baten barruan." -#: ../glib/gmarkup.c:1787 +#: glib/gmarkup.c:1787 msgid "" "Document ended unexpectedly after the equals sign following an attribute " "name; no attribute value" @@ -415,102 +428,106 @@ msgstr "" "Dokumentua ustekabean amaitu da atributu-izen baten ondorengo berdin " "ikurraren atzetik; ez dago atributu-baliorik" -#: ../glib/gmarkup.c:1794 +#: glib/gmarkup.c:1794 msgid "Document ended unexpectedly while inside an attribute value" msgstr "Dokumentua ustekabean amaitu da atributu-balio baten barruan" -#: ../glib/gmarkup.c:1809 +#: glib/gmarkup.c:1809 #, c-format msgid "Document ended unexpectedly inside the close tag for element '%s'" -msgstr "Dokumentua ustekabean amaitu da '%s' elementuaren itxiera-etiketaren barruan" +msgstr "" +"Dokumentua ustekabean amaitu da '%s' elementuaren itxiera-etiketaren barruan" -#: ../glib/gmarkup.c:1815 +#: glib/gmarkup.c:1815 msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "" "Dokumentua ustekabean amaitu da iruzkin baten barruan edo prozesatzen ari " "zen instrukzio baten barruan" -#: ../glib/gshell.c:73 +#: glib/gshell.c:73 +#, c-format msgid "Quoted text doesn't begin with a quotation mark" msgstr "Komatxo arteko testua ez da komatxoekin hasten" -#: ../glib/gshell.c:163 +#: glib/gshell.c:163 +#, c-format msgid "Unmatched quotation mark in command line or other shell-quoted text" msgstr "" "Bat ez datozen komatxoak daude komando-lerroan edo shell-ak aipatutako beste " "testu batean" -#: ../glib/gshell.c:541 +#: glib/gshell.c:541 #, c-format msgid "Text ended just after a '\\' character. (The text was '%s')" msgstr "Testua '\\' karakterearen atzetik amaitu da (testua '%s' zen)" -#: ../glib/gshell.c:548 +#: glib/gshell.c:548 #, c-format msgid "Text ended before matching quote was found for %c. (The text was '%s')" -msgstr "Testua %c(r)en komatxoak aurkitu baino lehen amaitu da (testua '%s' zen)" +msgstr "" +"Testua %c(r)en komatxoak aurkitu baino lehen amaitu da (testua '%s' zen)" -#: ../glib/gshell.c:560 +#: glib/gshell.c:560 +#, c-format msgid "Text was empty (or contained only whitespace)" msgstr "Testua hutsik dago (edo zuriuneak bakarrik ditu)" -#: ../glib/gspawn-win32.c:276 +#: glib/gspawn-win32.c:276 +#, c-format msgid "Failed to read data from child process" msgstr "Ezin izan da daturik irakurri prozesu umetik" -#: ../glib/gspawn-win32.c:291 ../glib/gspawn.c:1364 +#: glib/gspawn-win32.c:291 glib/gspawn.c:1364 #, c-format msgid "Failed to create pipe for communicating with child process (%s)" msgstr "Ezin izan da kanalizazioa sortu prozesu umearekin komunikatzeko (%s) " -#: ../glib/gspawn-win32.c:329 ../glib/gspawn.c:1028 +#: glib/gspawn-win32.c:329 glib/gspawn.c:1028 #, c-format msgid "Failed to read from child pipe (%s)" msgstr "Ezin izan da kanalizazio umetik irakurri (%s) " -#: ../glib/gspawn-win32.c:355 ../glib/gspawn.c:1233 +#: glib/gspawn-win32.c:355 glib/gspawn.c:1233 #, c-format msgid "Failed to change to directory '%s' (%s)" msgstr "Ezin izan da `%s' direktoriora aldatu (%s) " -#: ../glib/gspawn-win32.c:361 ../glib/gspawn-win32.c:581 +#: glib/gspawn-win32.c:361 glib/gspawn-win32.c:581 #, c-format msgid "Failed to execute child process (%s)" msgstr "Ezin izan da prozesu umea exekutatu (%s) " # -#: ../glib/gspawn-win32.c:471 ../glib/gspawn-win32.c:527 +#: glib/gspawn-win32.c:471 glib/gspawn-win32.c:527 #, c-format msgid "Invalid program name: %s" msgstr "Programaren izen baliogabea: %s" -#: ../glib/gspawn-win32.c:481 ../glib/gspawn-win32.c:537 -#: ../glib/gspawn-win32.c:780 ../glib/gspawn-win32.c:835 -#: ../glib/gspawn-win32.c:1370 +#: glib/gspawn-win32.c:481 glib/gspawn-win32.c:537 glib/gspawn-win32.c:780 +#: glib/gspawn-win32.c:835 glib/gspawn-win32.c:1370 #, c-format msgid "Invalid string in argument vector at %d: %s" msgstr "Kate baliogabea %d(e)ko bektorearen argumentuan: %s" -#: ../glib/gspawn-win32.c:492 ../glib/gspawn-win32.c:548 -#: ../glib/gspawn-win32.c:794 ../glib/gspawn-win32.c:848 -#: ../glib/gspawn-win32.c:1403 +#: glib/gspawn-win32.c:492 glib/gspawn-win32.c:548 glib/gspawn-win32.c:794 +#: glib/gspawn-win32.c:848 glib/gspawn-win32.c:1403 #, c-format msgid "Invalid string in environment: %s" msgstr "Kate baliogabea ingurunean: %s" -#: ../glib/gspawn-win32.c:776 ../glib/gspawn-win32.c:831 -#: ../glib/gspawn-win32.c:1351 +#: glib/gspawn-win32.c:776 glib/gspawn-win32.c:831 glib/gspawn-win32.c:1351 #, c-format msgid "Invalid working directory: %s" msgstr "Laneko direktorio baliogabea: %s " # -#: ../glib/gspawn-win32.c:890 +#: glib/gspawn-win32.c:890 #, c-format msgid "Failed to execute helper program (%s)" msgstr "Ezin izan da laguntza-programa exekutatu (%s)" -#: ../glib/gspawn-win32.c:1090 +#: glib/gspawn-win32.c:1090 +#, c-format msgid "" "Unexpected error in g_io_channel_win32_poll() reading data from a child " "process" @@ -518,166 +535,174 @@ msgstr "" "Ustekabeko errorea gertatu da g_io_channel_win32_poll()-en prozesu umetik " "datuak irakurtzean" -#: ../glib/gspawn.c:168 +#: glib/gspawn.c:168 #, c-format msgid "Failed to read data from child process (%s)" msgstr "Ezin izan da daturik irakurri prozesu umetik (%s) " -#: ../glib/gspawn.c:300 +#: glib/gspawn.c:300 #, c-format msgid "Unexpected error in select() reading data from a child process (%s)" msgstr "Ustekabeko errorea select()-en, datuak prozesu umetik irakurtzen (%s) " -#: ../glib/gspawn.c:383 +#: glib/gspawn.c:383 #, c-format msgid "Unexpected error in waitpid() (%s)" msgstr "Ustekabeko errorea waitpid()-en (%s)" -#: ../glib/gspawn.c:1093 +#: glib/gspawn.c:1093 #, c-format msgid "Failed to fork (%s)" msgstr "Ezin da sardetu (%s) " -#: ../glib/gspawn.c:1243 +#: glib/gspawn.c:1243 #, c-format msgid "Failed to execute child process \"%s\" (%s)" msgstr "Ezin izan da \"%s\" prozesu umea exekutatu (%s) " -#: ../glib/gspawn.c:1253 +#: glib/gspawn.c:1253 #, c-format msgid "Failed to redirect output or input of child process (%s)" msgstr "Ezin izan da prozesu umearen irteera edo sarrera birbideratu (%s) " -#: ../glib/gspawn.c:1262 +#: glib/gspawn.c:1262 #, c-format msgid "Failed to fork child process (%s)" msgstr "Ezin izan da prozesu umea sardetu (%s)" -#: ../glib/gspawn.c:1270 +#: glib/gspawn.c:1270 #, c-format msgid "Unknown error executing child process \"%s\"" msgstr "Errore ezezaguna \"%s\" prozesu umea exekutatzean" -#: ../glib/gspawn.c:1292 +#: glib/gspawn.c:1292 #, c-format msgid "Failed to read enough data from child pid pipe (%s)" msgstr "Ezin izan da nahikoa datu irakurri pid kanalizazio umetik (%s) " -#: ../glib/gutf8.c:1017 +#: glib/gutf8.c:1017 +#, c-format msgid "Character out of range for UTF-8" msgstr "Karakterea honako barrutitik kanpo UTF-8 formaturako" -#: ../glib/gutf8.c:1111 ../glib/gutf8.c:1120 ../glib/gutf8.c:1252 -#: ../glib/gutf8.c:1261 ../glib/gutf8.c:1402 ../glib/gutf8.c:1498 +#: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 glib/gutf8.c:1261 +#: glib/gutf8.c:1402 glib/gutf8.c:1498 +#, c-format msgid "Invalid sequence in conversion input" msgstr "Sekuentzia baliogabea bihurketa-sarreran" -#: ../glib/gutf8.c:1413 ../glib/gutf8.c:1509 +#: glib/gutf8.c:1413 glib/gutf8.c:1509 +#, c-format msgid "Character out of range for UTF-16" msgstr "Karakterea honako barrutitik kanpo UTF-16 formaturako" -#: ../glib/goption.c:468 +#: glib/goption.c:468 msgid "Usage:" msgstr "Erabilera:" -#: ../glib/goption.c:468 +#: glib/goption.c:468 msgid "[OPTION...]" msgstr "[AUKERA...]" -#: ../glib/goption.c:556 +#: glib/goption.c:556 msgid "Help Options:" msgstr "Laguntzako aukerak:" -#: ../glib/goption.c:557 +#: glib/goption.c:557 msgid "Show help options" msgstr "Erakutsi laguntzako aukerak" -#: ../glib/goption.c:562 +#: glib/goption.c:562 msgid "Show all help options" msgstr "Erakutsi laguntzako aukera guztiak" -#: ../glib/goption.c:612 +#: glib/goption.c:612 msgid "Application Options:" msgstr "Aplikazio-aukerak:" -#: ../glib/goption.c:653 +#: glib/goption.c:653 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Ezin da '%2$s'(r)en '%1$s' osoko balioa analizatu" -#: ../glib/goption.c:663 +#: glib/goption.c:663 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "%2$s(r)en '%1$s' osoko balioa barrutitik kanpo" -#: ../glib/goption.c:926 +#: glib/goption.c:926 #, c-format msgid "Error parsing option %s" msgstr "Errorea %s aukera analizatzean" -#: ../glib/goption.c:959 ../glib/goption.c:1070 +#: glib/goption.c:959 glib/goption.c:1070 #, c-format msgid "Missing argument for %s" msgstr "%s(e)ko argumentua falta da" -#: ../glib/goption.c:1474 +#: glib/goption.c:1474 #, c-format msgid "Unknown option %s" msgstr "%s aukera ezezaguna" -#: ../glib/gkeyfile.c:339 +#: glib/gkeyfile.c:339 +#, c-format msgid "Valid key file could not be found in data dirs" msgstr "Ezin izan da balioko gakoa datuen direktorioan aurkitu" -#: ../glib/gkeyfile.c:374 +#: glib/gkeyfile.c:374 +#, c-format msgid "Not a regular file" msgstr "Ez da fitxategi arrunta" -#: ../glib/gkeyfile.c:382 +#: glib/gkeyfile.c:382 +#, c-format msgid "File is empty" msgstr "Fitxategia hutsik dago" -#: ../glib/gkeyfile.c:697 +#: glib/gkeyfile.c:697 #, c-format -msgid "Key file contains line '%s' which is not a key-value pair, group, or comment" +msgid "" +"Key file contains line '%s' which is not a key-value pair, group, or comment" msgstr "" "Gako-fitxategiak '%s' lerroa du, gako-balioa bikotea, taldea edo iruzkinik " "ez daukalarik" -#: ../glib/gkeyfile.c:765 +#: glib/gkeyfile.c:765 +#, c-format msgid "Key file does not start with a group" msgstr "Gako-fitxategiak ez da talde batekin hasten" -#: ../glib/gkeyfile.c:808 +#: glib/gkeyfile.c:808 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Gako-fitxategiak onartzen ez den '%s' kodeketa du" -#: ../glib/gkeyfile.c:1017 ../glib/gkeyfile.c:1176 ../glib/gkeyfile.c:2177 -#: ../glib/gkeyfile.c:2242 ../glib/gkeyfile.c:2361 ../glib/gkeyfile.c:2497 -#: ../glib/gkeyfile.c:2649 ../glib/gkeyfile.c:2823 ../glib/gkeyfile.c:2880 +#: glib/gkeyfile.c:1017 glib/gkeyfile.c:1176 glib/gkeyfile.c:2177 +#: glib/gkeyfile.c:2242 glib/gkeyfile.c:2361 glib/gkeyfile.c:2497 +#: glib/gkeyfile.c:2649 glib/gkeyfile.c:2823 glib/gkeyfile.c:2880 #, c-format msgid "Key file does not have group '%s'" msgstr "Gako-fitxategiak ez dauka '%s' taldea" -#: ../glib/gkeyfile.c:1188 +#: glib/gkeyfile.c:1188 #, c-format msgid "Key file does not have key '%s'" msgstr "Gako-fitxategiak ez dauka '%s' gakoa" -#: ../glib/gkeyfile.c:1289 ../glib/gkeyfile.c:1398 +#: glib/gkeyfile.c:1289 glib/gkeyfile.c:1398 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "Gako-fitxategiak '%s' gakoa dauka (%s balioduna) baina ez da UTF-8" -#: ../glib/gkeyfile.c:1307 ../glib/gkeyfile.c:1416 ../glib/gkeyfile.c:1788 +#: glib/gkeyfile.c:1307 glib/gkeyfile.c:1416 glib/gkeyfile.c:1788 #, c-format msgid "Key file contains key '%s' which has value that cannot be interpreted." msgstr "" "Gako-fitxategiak '%s' gakoa dauka, baina dagokion balioa ezin da " "interpretatu." -#: ../glib/gkeyfile.c:2004 +#: glib/gkeyfile.c:2004 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has value that cannot be " @@ -686,32 +711,32 @@ msgstr "" "Gako-fitxategiak '%s' gakoa dauka ('%s taldean), baina dagokion balioa ezin " "da interpretatu." -#: ../glib/gkeyfile.c:2192 ../glib/gkeyfile.c:2376 ../glib/gkeyfile.c:2891 +#: glib/gkeyfile.c:2192 glib/gkeyfile.c:2376 glib/gkeyfile.c:2891 #, c-format msgid "Key file does not have key '%s' in group '%s'" msgstr "Gako-fitxategiak ez dauka '%s' gakoa ('%s' taldean)" -#: ../glib/gkeyfile.c:3067 +#: glib/gkeyfile.c:3067 +#, c-format msgid "Key file contains escape character at end of line" msgstr "Gako-fitxategiak ihes-karakterea dauka lerro amaieran" -#: ../glib/gkeyfile.c:3089 +#: glib/gkeyfile.c:3089 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Gako-fitxategiak '%s' ihes-sekuentzia baliogabea dauka" -#: ../glib/gkeyfile.c:3230 +#: glib/gkeyfile.c:3230 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "'%s' balioa ezin da zenbaki gisa interpretatu" -#: ../glib/gkeyfile.c:3240 +#: glib/gkeyfile.c:3240 #, c-format msgid "Integer value '%s' out of range" msgstr "'%s' osoko balioa barrutitik kanpo" -#: ../glib/gkeyfile.c:3270 +#: glib/gkeyfile.c:3270 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "'%s' balioa ezin da bolear gisa interpretatu" - diff --git a/po/fa.po b/po/fa.po index 97f5436..994bf50 100644 --- a/po/fa.po +++ b/po/fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-03-13 11:36+0330\n" "Last-Translator: Hamed Malek \n" "Language-Team: Persian \n" diff --git a/po/fi.po b/po/fi.po index 5f97ad6..78c66bc 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-12-26 11:04+0200\n" "Last-Translator: Ilkka Tuohela \n" "Language-Team: Finnish \n" diff --git a/po/fr.po b/po/fr.po index dc6c6a0..48f56ad 100644 --- a/po/fr.po +++ b/po/fr.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.8.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-12-19 19:30+0100\n" "Last-Translator: Christophe Merlet (RedFox) \n" "Language-Team: GNOME French Team \n" diff --git a/po/ga.po b/po/ga.po index df88e3e..0ef83fa 100644 --- a/po/ga.po +++ b/po/ga.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib HEAD \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2004-03-08 21:28+0000\n" "Last-Translator: Alastair McKinstry \n" "Language-Team: Irish \n" diff --git a/po/gl.po b/po/gl.po index b40d3d7..3bbc4d3 100644 --- a/po/gl.po +++ b/po/gl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-12-18 13:15+0100\n" "Last-Translator: Ignacio Casal Quinteiro \n" "Language-Team: Galego\n" diff --git a/po/gu.po b/po/gu.po index 9f427eb..509fb60 100644 --- a/po/gu.po +++ b/po/gu.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD.gu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-09 10:34+0530\n" "Last-Translator: Ankit Patel \n" "Language-Team: Gujarati \n" diff --git a/po/he.po b/po/he.po index 9f2f64e..a8bb509 100644 --- a/po/he.po +++ b/po/he.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD.he\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2004-03-25 23:13+0000\n" "Last-Translator: Gil Osher \n" "Language-Team: Hebrew \n" diff --git a/po/hi.po b/po/hi.po index 69b24b0..54f9a9a 100644 --- a/po/hi.po +++ b/po/hi.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD.hi\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-06-14 10:55+0530\n" "Last-Translator: Rajesh Ranjan \n" "Language-Team: Hindi \n" diff --git a/po/hr.po b/po/hr.po index 39ef140..500262a 100644 --- a/po/hr.po +++ b/po/hr.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2004-03-13 13:03+CET\n" "Last-Translator: auto\n" "Language-Team: Croatian \n" diff --git a/po/hu.po b/po/hu.po index 028890a..8482537 100644 --- a/po/hu.po +++ b/po/hu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-07-12 17:37+0200\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" diff --git a/po/id.po b/po/id.po index 979f47e..b8f42eb 100644 --- a/po/id.po +++ b/po/id.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-08-30 22:41+0300\n" "Last-Translator: Mohammad DAMT \n" "Language-Team: Indonesia \n" diff --git a/po/is.po b/po/is.po index 3413cbf..2824989 100644 --- a/po/is.po +++ b/po/is.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2003-08-18 18:05+0000\n" "Last-Translator: Richard Allen \n" "Language-Team: is \n" diff --git a/po/it.po b/po/it.po index 8d9706b..1ee399e 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.10.x\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-02-08 14:10+0100\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" diff --git a/po/ja.po b/po/ja.po index 8a0bf61..5f7988f 100644 --- a/po/ja.po +++ b/po/ja.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: glib HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-09 19:58+0900\n" "Last-Translator: Takeshi AIHANA \n" "Language-Team: Japanese \n" diff --git a/po/ko.po b/po/ko.po index 620c5a4..7c31077 100644 --- a/po/ko.po +++ b/po/ko.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.9.6.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-28 03:35+0900\n" "Last-Translator: Changwoo Ryu \n" "Language-Team: GNOME Korea \n" diff --git a/po/ku.po b/po/ku.po index 4a4997c..0641bfe 100644 --- a/po/ku.po +++ b/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: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-09-17 20:30+0200\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: Kurdish \n" diff --git a/po/lt.po b/po/lt.po index 825f02d..b7b1041 100644 --- a/po/lt.po +++ b/po/lt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-07-17 21:26+0300\n" "Last-Translator: Žygimantas Beručka \n" "Language-Team: Lithuanian \n" diff --git a/po/lv.po b/po/lv.po index 7dd12b1..cf92d0d 100644 --- a/po/lv.po +++ b/po/lv.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2002-12-19 01:04+0200\n" "Last-Translator: Artis Trops \n" "Language-Team: Latvian \n" diff --git a/po/mk.po b/po/mk.po index b9ebbd8..a743623 100644 --- a/po/mk.po +++ b/po/mk.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD.mk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-08-28 17:08+0200\n" "Last-Translator: Arangel Angov \n" "Language-Team: Macedonian \n" diff --git a/po/ml.po b/po/ml.po index 90ac0db..5307ec8 100644 --- a/po/ml.po +++ b/po/ml.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version:glib.glib-2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2003-07-05 10:29+0530\n" "Last-Translator: FSF-India \n" "Language-Team: Malayalam \n" diff --git a/po/mn.po b/po/mn.po index c2a8772..7dfcc74 100644 --- a/po/mn.po +++ b/po/mn.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-05-30 01:07-0800\n" "Last-Translator: Бадрал \n" "Language-Team: Mongolian \n" diff --git a/po/ms.po b/po/ms.po index 4e3b072..85dea70 100644 --- a/po/ms.po +++ b/po/ms.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: glib HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2004-02-03 02:11+0730\n" "Last-Translator: Hasbullah Bin Pit \n" "Language-Team: Projek Gabai \n" diff --git a/po/nb.po b/po/nb.po index f5a4608..b1f3c70 100644 --- a/po/nb.po +++ b/po/nb.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.9.x\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-02 00:32+0100\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian Bokmal \n" diff --git a/po/ne.po b/po/ne.po index f02649d..b6454eb 100644 --- a/po/ne.po +++ b/po/ne.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-05-20 11:50+0545\n" "Last-Translator: Jyotshna Shrestha \n" "Language-Team: Nepali \n" diff --git a/po/nl.po b/po/nl.po index 3543ea2..d8c6434 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib (HEAD)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-07 14:26+0100\n" "Last-Translator: Tino Meinen \n" "Language-Team: Dutch \n" diff --git a/po/nn.po b/po/nn.po index 7f76471..6855200 100644 --- a/po/nn.po +++ b/po/nn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: nn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2004-09-06 21:31+0000\n" "Last-Translator: Åsmund Skjæveland \n" "Language-Team: Norwegian Nynorsk \n" diff --git a/po/no.po b/po/no.po index f5a4608..b1f3c70 100644 --- a/po/no.po +++ b/po/no.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.9.x\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-02 00:32+0100\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian Bokmal \n" diff --git a/po/or.po b/po/or.po index 10034df..83aa1e0 100644 --- a/po/or.po +++ b/po/or.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.glib-2-4.HEAD.or\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2004-09-05 21:30+0530\n" "Last-Translator: Subhransu Behera \n" "Language-Team: Oriya \n" diff --git a/po/pa.po b/po/pa.po index 6828599..e3108eb 100644 --- a/po/pa.po +++ b/po/pa.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-07-08 09:52+0530\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" diff --git a/po/pl.po b/po/pl.po index 37298c6..b31eea6 100644 --- a/po/pl.po +++ b/po/pl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2003-01-02 01:22+0100\n" "Last-Translator: GNOME PL Team \n" "Language-Team: Polish \n" diff --git a/po/pt.po b/po/pt.po index 4aebf63..d8b25fe 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 2.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-28 12:50+0000\n" "Last-Translator: Duarte Loreto \n" "Language-Team: Portuguese \n" diff --git a/po/pt_BR.po b/po/pt_BR.po index 1f78c69..687f8ec 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-08-31 14:02-0300\n" "Last-Translator: Gustavo Noronha Silva \n" "Language-Team: Brazilian Portuguese \n" diff --git a/po/ro.po b/po/ro.po index 535ea55..df4a508 100644 --- a/po/ro.po +++ b/po/ro.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-08-14 20:38+0300\n" "Last-Translator: Mişu Moldovan \n" "Language-Team: Română \n" diff --git a/po/ru.po b/po/ru.po index a4c0bbc..9675d55 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-02-01 18:37+0200\n" "Last-Translator: Leonid Kanter \n" "Language-Team: Russian \n" diff --git a/po/rw.po b/po/rw.po index 415c2f5..e22463d 100644 --- a/po/rw.po +++ b/po/rw.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.12\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-03-28 19:34-0700\n" "Last-Translator: Steve Murphy \n" "Language-Team: Kinyarwanda \n" diff --git a/po/sk.po b/po/sk.po index 570f724..42db5df 100644 --- a/po/sk.po +++ b/po/sk.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-10-16 19:30+0200\n" "Last-Translator: Marcel Telka \n" "Language-Team: Slovak \n" diff --git a/po/sl.po b/po/sl.po index 2954a6a..bbb282d 100644 --- a/po/sl.po +++ b/po/sl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2001-02-16 12:30+0200\n" "Last-Translator: Andraz Tori \n" "Language-Team: Slovenian \n" diff --git a/po/sq.po b/po/sq.po index 37d944b..9bf5486 100644 --- a/po/sq.po +++ b/po/sq.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: glib HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-30 10:58+0100\n" "Last-Translator: Laurent Dhima \n" "Language-Team: Albanian \n" diff --git a/po/sr.po b/po/sr.po index 3d86802..afaf470 100644 --- a/po/sr.po +++ b/po/sr.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: 2.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-31 23:39+0100\n" "Last-Translator: Слободан Д. Средојевић \n" "Language-Team: Serbian (sr) \n" diff --git a/po/sr@Latn.po b/po/sr@Latn.po index a93658d..31cf60f 100644 --- a/po/sr@Latn.po +++ b/po/sr@Latn.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: 2.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-31 23:39+0100\n" "Last-Translator: Slobodan D. Sredojević \n" "Language-Team: Serbian (sr) \n" diff --git a/po/sr@ije.po b/po/sr@ije.po index 85a5e5e..1a26d08 100644 --- a/po/sr@ije.po +++ b/po/sr@ije.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: 2.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2004-04-29 01:11+0200\n" "Last-Translator: Bojan Suzic \n" "Language-Team: Serbian (sr) \n" diff --git a/po/sv.po b/po/sv.po index 9e799e0..e810640 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-09-25 12:04+0200\n" "Last-Translator: Christian Rose \n" "Language-Team: Swedish \n" diff --git a/po/ta.po b/po/ta.po index 8dac649..339fcb2 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2004-02-16 20:30-0600\n" "Last-Translator: Dinesh Nadarajah \n" "Language-Team: Tamil \n" diff --git a/po/te.po b/po/te.po index f4a77fb..8fdaeb5 100644 --- a/po/te.po +++ b/po/te.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: GLIB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2004-12-13 20:16+0100\n" "Last-Translator: రమణ సాయి \n" "Language-Team: Free Software Foundation, Andhra Pradesh \n" diff --git a/po/th.po b/po/th.po index 997e793..924c626 100644 --- a/po/th.po +++ b/po/th.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.7.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-07 15:11+0700\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \n" diff --git a/po/tl.po b/po/tl.po index 2ab9150..300dccb 100644 --- a/po/tl.po +++ b/po/tl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-12-01 17:31+0800\n" "Last-Translator: Eric Pareja \n" "Language-Team: Tagalog \n" diff --git a/po/tr.po b/po/tr.po index 88ed554..00b3573 100644 --- a/po/tr.po +++ b/po/tr.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-07-24 23:57+0300\n" "Last-Translator: Onur Can CAKMAK \n" "Language-Team: Turkish \n" diff --git a/po/tt.po b/po/tt.po index 395eb07..35911a7 100644 --- a/po/tt.po +++ b/po/tt.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: libgnome\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-11-09 13:19+0300\n" "Last-Translator: Albert Fazlí \n" "Language-Team: Tatarish \n" diff --git a/po/uk.po b/po/uk.po index 0026dad..263c4fc 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-02-16 11:56--500\n" "Last-Translator: Maxim Dziumanenko \n" "Language-Team: Ukrainian \n" diff --git a/po/vi.po b/po/vi.po index 6d26d6e..a9272e7 100644 --- a/po/vi.po +++ b/po/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.9.2 Gnome HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-07 22:32+1030\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" diff --git a/po/wa.po b/po/wa.po index 7482df2..41a707d 100644 --- a/po/wa.po +++ b/po/wa.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2004-05-03 14:40+0200\n" "Last-Translator: Pablo Saratxaga \n" "Language-Team: Walloon \n" diff --git a/po/xh.po b/po/xh.po index 334b068..68b9cde 100644 --- a/po/xh.po +++ b/po/xh.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2005-02-08 12:31+0200\n" "Last-Translator: Canonical Ltd \n" "Language-Team: Xhosa \n" diff --git a/po/yi.po b/po/yi.po index 9248d9f..1afffaf 100644 --- a/po/yi.po +++ b/po/yi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2003-03-19\n" "Last-Translator: Raphael Finkel \n" "Language-Team: Yiddish \n" diff --git a/po/zh_CN.po b/po/zh_CN.po index e5290fd..adfb926 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-21 22:25+0800\n" "Last-Translator: He Qiangqiang \n" "Language-Team: zh_CN \n" diff --git a/po/zh_HK.po b/po/zh_HK.po index 304095a..df95eae 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.9.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-04 10:22+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (Hong Kong) \n" diff --git a/po/zh_TW.po b/po/zh_TW.po index 3fd3567..417f106 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.9.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-02-10 15:36-0500\n" +"POT-Creation-Date: 2006-02-24 09:55-0500\n" "PO-Revision-Date: 2006-01-04 10:19+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (Taiwan) \n"