This commit is contained in:
Matthias Clasen 2006-02-24 17:17:35 +00:00
parent da3fc6eed8
commit 2f4f39095f
89 changed files with 492 additions and 390 deletions

View File

@ -1,5 +1,7 @@
2006-02-24 Matthias Clasen <mclasen@redhat.com>
* === Released 2.10.0 ===
* README.in: Mention the slice allocator and GInitiallyUnowned.
* NEWS: Updates

View File

@ -1,5 +1,7 @@
2006-02-24 Matthias Clasen <mclasen@redhat.com>
* === Released 2.10.0 ===
* README.in: Mention the slice allocator and GInitiallyUnowned.
* NEWS: Updates

View File

@ -1,5 +1,7 @@
2006-02-24 Matthias Clasen <mclasen@redhat.com>
* === Released 2.10.0 ===
* README.in: Mention the slice allocator and GInitiallyUnowned.
* NEWS: Updates

View File

@ -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

2
NEWS
View File

@ -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]

14
README
View File

@ -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
======================

View File

@ -1,3 +1,7 @@
2006-02-24 Matthias Clasen <mclasen@redhat.com>
* === Released 2.10.0 ===
2006-02-22 Stefan Kost <ensonic@users.sf.net>
* gobject/tmpl/gtype.sgml:

View File

@ -106,6 +106,18 @@ assumes that it is the file descriptor you mean.
@Returns: a new #GIOChannel.
<!-- ##### FUNCTION g_io_channel_unix_get_fd ##### -->
<para>
Returns the file descriptor of the #GIOChannel.
</para>
<para>
On Windows this function returns the file descriptor or socket of the #GIOChannel.
</para>
@channel: a #GIOChannel, created with g_io_channel_unix_new().
@Returns: the file descriptor of the #GIOChannel.
<!-- ##### FUNCTION g_io_channel_win32_new_fd ##### -->
<para>
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.
</para>
@fd: a Winsock socket.
@socket:
@Returns: a new #GIOChannel.
<!-- # Unused Parameters # -->
@fd: a Winsock socket.
<!-- ##### FUNCTION g_io_channel_win32_new_messages ##### -->
@ -170,18 +184,6 @@ Windows messages for the window in question.
@Returns: a new #GIOChannel.
<!-- ##### FUNCTION g_io_channel_unix_get_fd ##### -->
<para>
Returns the file descriptor of the #GIOChannel.
</para>
<para>
On Windows this function returns the file descriptor or socket of the #GIOChannel.
</para>
@channel: a #GIOChannel, created with g_io_channel_unix_new().
@Returns: the file descriptor of the #GIOChannel.
<!-- ##### FUNCTION g_io_channel_init ##### -->
<para>
Initializes a #GIOChannel struct. This is called by each of the above functions

View File

@ -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
@...:

View File

@ -240,6 +240,9 @@ A structure that provides information to the type system which is
used specifically for managing interface types.
</para>
@interface_init:
@interface_finalize:
@interface_data:
<!-- ##### STRUCT GTypeValueTable ##### -->
<para>

View File

@ -1,3 +1,7 @@
2006-02-24 Matthias Clasen <mclasen@redhat.com>
* === Released 2.10.0 ===
2006-02-10 Matthias Clasen <mclasen@redhat.com>
* === Released 2.9.6 ===

View File

@ -1,3 +1,7 @@
2006-02-24 Matthias Clasen <mclasen@redhat.com>
* === Released 2.10.0 ===
2006-02-10 Matthias Clasen <mclasen@redhat.com>
* === Released 2.9.6 ===

View File

@ -1,3 +1,7 @@
2006-02-24 Matthias Clasen <mclasen@redhat.com>
* === Released 2.10.0 ===
2006-02-20 Tor Lillqvist <tml@novell.com>
* gthread-win32.c (g_thread_exit_win32_impl): Make the

View File

@ -1,3 +1,7 @@
2006-02-24 Matthias Clasen <mclasen@redhat.com>
* === Released 2.10.0 ===
2006-02-23 Clytie Siddall <clytie@riverland.net.au>
* ka.po: Added Georgian translation by Gia Shervashidze <giasher@telenet.ge>.

View File

@ -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 <locales@geez.org>\n"
"Language-Team: Amharic <locales@geez.org>\n"

View File

@ -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 <lumina@silverpen.de>\n"
"Language-Team: Arabic <doc@arabeyes.org>\n"

View File

@ -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 <metin@karegen.com>\n"
"Language-Team: Azerbaijani Turkish <gnome@azitt.com>\n"

View File

@ -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 <vk@altlinux.ru>\n"
"Language-Team: Belarusian <i18n@mova.org>\n"

View File

@ -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 <ash@contact.bg>\n"
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"

View File

@ -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 <makl10n@yahoo.com>\n"
"Language-Team: Bengali <gnome-translation@bengalinux.org>\n"

View File

@ -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ć <kenanh@frisurf.no>\n"
"Language-Team: Bosnian <lokal@lugbih.org>\n"

View File

@ -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 <jordi@sindominio.net>\n"
"Language-Team: Catalan <tradgnome@softcatala.org>\n"

View File

@ -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 <lukasnov@cvs.gnome.org>\n"
"Language-Team: Czech <cs@li.org>\n"

View File

@ -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 <rhys@sucs.org>\n"
"Language-Team: Welsh <gnome-cy@pengwyn.linux.org.uk>\n"

View File

@ -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 <mwh@sysrq.dk>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"

View File

@ -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 <hendi@gnome.org>\n"
"Language-Team: German <gnome-de@gnome.org>\n"

320
po/el.po
View File

@ -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 <pkst@gnome.org>\n"
"Language-Team: Greek <team@gnome.gr>\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: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:434
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Κενή καταχώρηση '&;' , έγκυρες οντότητες είναι: &amp; &quot; &lt; &gt; "
"&apos; "
#: ../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 &amp;"
#: ../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 &amp;"
@ -270,7 +279,7 @@ msgstr ""
"συμπλεκτικό χαρακτήρα χωρίς να θέλατε να ξεκινήσετε μια οντότητα - διαφυγή "
"συμπλεκτικού χαρακτήρα ώς &amp;"
#: ../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 ""
"στην αναφορά χαρακτήρα (&#234; για παράδειγμα) - ίσως το ψηφίο να είναι πολύ "
"μεγάλο"
#: ../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 &#454;"
msgstr "Κενή αναφορά χαρακτήρα; πρέπει να περιέχει ένα ψηφίο όπως &#454;"
#: ../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 ""
"έναν συμπλεκτικό χαρακτήρα χωρίς να θέλατε να ξεκινήσετε μια οντότητα - "
"διαφυγή συμπλεκτικού χαρακτήρα ώς &amp;"
#: ../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. <book>)"
msgstr "Το έγγραφο πρέπει να ξεκινάει με στοιχείο (π.χ. <book>)"
#: ../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 '</'; '%s' may not "
@ -369,7 +379,7 @@ msgstr ""
"Το '%s' δεν είναι έγκυρος χαρακτήρας ακολουθούμενος από χαρακτήρες </'; '%"
"s' μπορεί να μην αρχίζει όνομα στοιχείου"
#: ../glib/gmarkup.c:1568
#: glib/gmarkup.c:1568
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -378,27 +388,27 @@ msgstr ""
"Το '%s' δεν είναι ένας έγκυρος χαρακτήρας ακολουθούμενος από το όνομα "
"στοιχείου κλεισίματος '%s'; ο επιτρεπόμενος χαρακτήρας είναι '>'"
#: ../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."

View File

@ -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 <adamw@gnome.org>\n"
"Language-Team: Canadian English <adamw@gnome.org>\n"

View File

@ -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 <dave@cirt.net>\n"
"Language-Team: \n"

View File

@ -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 <cvoelger@dweasel.com>\n"
"Language-Team: Esperanto <LL@li.org>\n"

View File

@ -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 <serrador@cvs.gnome.org>\n"
"Language-Team: Spanish <traductores@es.gnome.org>\n"

View File

@ -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 <okul@linux.ee>\n"
"Language-Team: Estonian <gnome-et@linux.ee>\n"

329
po/eu.po
View File

@ -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 <dooteo@euskalgnu.org>\n"
"Language-Team: Basque <itzulpena@euskalgnu.org>\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: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:434
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"'&;' entitatea hutsik dago; baliozko entitateak hauek dira: &amp; &quot; "
"&lt; &gt; &apos;"
#: ../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 &amp;"
#: ../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 &amp;"
@ -252,7 +261,7 @@ msgstr ""
"Entitatea ez da puntu eta komaz bukatzen; normalean & ikurra erabiltzen da "
"entitatea hasteko asmorik gabe; izendatu & karakterea &amp; 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 (&#234; 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 &#454;"
msgstr "Karaktere-erreferentzia hutsa, digitu bat eduki beharko luke; adibidez &#454;"
msgstr ""
"Karaktere-erreferentzia hutsa, digitu bat eduki beharko luke; adibidez &#454;"
#: ../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 &amp; "
"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. <book>)"
msgstr "Dokumentuak elementu batez hasi behar du (adibidez, <book>)"
#: ../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 '</'; '%s' may not "
@ -350,7 +362,7 @@ msgstr ""
"'%s' ez da karaktere balioduna '</'; karaktereen atzetik; baliteke '%s'e(k) "
"elementu baten izena ez hastea"
#: ../glib/gmarkup.c:1568
#: glib/gmarkup.c:1568
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -359,25 +371,25 @@ msgstr ""
"'%s' karaktere baliogabea da '%s' itxiera-elementuaren izenaren atzetik; "
"baimendutako karakterea '>' 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"

View File

@ -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 <hamed@farsiweb.info>\n"
"Language-Team: Persian <farsi@lists.sharif.edu>\n"

View File

@ -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 <hile@iki.fi>\n"
"Language-Team: Finnish <gnome-fi-laatu@lists.sourceforge.net>\n"

View File

@ -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) <redfox@redfoxcenter.org>\n"
"Language-Team: GNOME French Team <gnomefr@traduc.org>\n"

View File

@ -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 <mckinstry@debian.org>\n"
"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"

View File

@ -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 <nacho.resa@gmail.com>\n"
"Language-Team: Galego\n"

View File

@ -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 <ankit644@yahoo.com>\n"
"Language-Team: Gujarati <indianoss-gujarati@lists.sourceforge.net>\n"

View File

@ -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 <dolfin@rpg.org.il>\n"
"Language-Team: Hebrew <he@li.org>\n"

View File

@ -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 <rranjan@redhat.com>\n"
"Language-Team: Hindi <fedora-trans-hi@redhat.com>\n"

View File

@ -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 <lokalizacija@linux.hr>\n"

View File

@ -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 <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome@gnome.hu>\n"

View File

@ -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 <mdamt@bisnisweb.com>\n"
"Language-Team: Indonesia <sukarelawan@gnome.linux.or.id>\n"

View File

@ -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 <ra@ra.is>\n"
"Language-Team: is <is@li.org>\n"

View File

@ -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 <elle.uca@libero.it>\n"
"Language-Team: Italian <tp@lists.linux.it>\n"

View File

@ -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 <aihana@gnome.gr.jp>\n"
"Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n"

View File

@ -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 <cwryu@debian.org>\n"
"Language-Team: GNOME Korea <gnome-kr-hackers@lists.kldp.net>\n"

View File

@ -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 <erdal.ronahi@gmail.com, pckurd@hotmail.com>\n"
"Language-Team: Kurdish <gnu-ku-wergerandin@lists.sourceforge.net>\n"

View File

@ -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 <uid0@akl.lt>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"

View File

@ -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 <hornet@navigator.lv>\n"
"Language-Team: Latvian <ll10nt@os.lv>\n"

View File

@ -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 <ufo@linux.net.mk>\n"
"Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"

View File

@ -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 <locale@gnu.org.in>\n"
"Language-Team: Malayalam <locale@gnu.org.in>\n"

View File

@ -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: Бадрал <badral@openmn.org>\n"
"Language-Team: Mongolian <openmn-translation@lists.sf.net>\n"

View File

@ -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 <sebol@my-penguin.org>\n"
"Language-Team: Projek Gabai <gabai-penyumbang@lists.sourceforge.org>\n"

View File

@ -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 <kmaraas@gnome.org>\n"
"Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\n"

View File

@ -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 <shresthajyo@hotmail.com>\n"
"Language-Team: Nepali <info@mpp.org.np>\n"

View File

@ -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 <a.t.meinen@chello.nl>\n"
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"

View File

@ -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 <aasmunds@fys.uio.no>\n"
"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"

View File

@ -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 <kmaraas@gnome.org>\n"
"Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\n"

View File

@ -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 <arya_subhransu@yahoo.co.in>\n"
"Language-Team: Oriya <oriya-group@lists.sarovar.org>\n"

View File

@ -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 <amanpreetalam@yahoo.com>\n"
"Language-Team: Punjabi <fedora-transa-pa@redhat.com>\n"

View File

@ -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 <translators@gnomepl.org>\n"
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"

View File

@ -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 <happyguy_pt@hotmail.com>\n"
"Language-Team: Portuguese <gnome_pt@yahoogroups.com>\n"

View File

@ -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 <kov@debian.org>\n"
"Language-Team: Brazilian Portuguese <gnome-l10n-br@listas.cipsga.org.br>\n"

View File

@ -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 <dumol@gnome.ro>\n"
"Language-Team: Română <gnomero-list@lists.sourceforge.net>\n"

View File

@ -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 <leon@asplinux.ru>\n"
"Language-Team: Russian <gnome-cyr@gnome.org>\n"

View File

@ -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 <murf@e-tools.com>\n"
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"

View File

@ -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 <marcel@telka.sk>\n"
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"

View File

@ -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 <andraz.tori1@guest.arnes.si>\n"
"Language-Team: Slovenian <sl@li.org>\n"

View File

@ -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 <laurenti@alblinux.net>\n"
"Language-Team: Albanian <gnome-albanian-perkthyesit@lists.sourceforge.net>\n"

View File

@ -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: Слободан Д. Средојевић <slobo@akrep.be>\n"
"Language-Team: Serbian (sr) <gnom@prevod.org>\n"

View File

@ -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ć <slobo@akrep.be>\n"
"Language-Team: Serbian (sr) <gnom@prevod.org>\n"

View File

@ -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 <bojans@teol.net>\n"
"Language-Team: Serbian (sr) <serbiagnome-lista@nongnu.org>\n"

View File

@ -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 <menthos@menthos.com>\n"
"Language-Team: Swedish <sv@li.org>\n"

View File

@ -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 <dinesh_list@sbcglobal.net>\n"
"Language-Team: Tamil <tamilinix@yahoogroups.com>\n"

View File

@ -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: రమణ సాయి <rmn_sai@yahoo.com>\n"
"Language-Team: Free Software Foundation, Andhra Pradesh <fsfap@gnu.org.in>\n"

View File

@ -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 <thep@linux.thai.net>\n"
"Language-Team: Thai <l10n@opentle.org>\n"

View File

@ -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 <xenos@upm.edu.ph>\n"
"Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n"

View File

@ -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 <onur@uzem.itu.edu.tr>\n"
"Language-Team: Turkish <gnome-turk@gnome.org>\n"

View File

@ -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í <tatarish.l10n@gmail.com>\n"
"Language-Team: Tatarish <tatarish.l10n@gmail.com>\n"

View File

@ -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 <mvd@mylinux.ua>\n"
"Language-Team: Ukrainian <uk@li.org>\n"

View File

@ -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 <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n"

View File

@ -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 <pablo@walon.org>\n"
"Language-Team: Walloon <linux-wa@walon.org>\n"

View File

@ -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 <translations@canonical.com>\n"
"Language-Team: Xhosa <xh-translate@ubuntu.com>\n"

View File

@ -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 <raphael@cs.uky.edu>\n"
"Language-Team: Yiddish <raphael@cs.uky.edu>\n"

View File

@ -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 <carton@263.net>\n"
"Language-Team: zh_CN <i18n-translation@lists.linux.net.cn>\n"

View File

@ -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 <abel@oaka.org>\n"
"Language-Team: Chinese (Hong Kong) <community@linuxhall.org>\n"

View File

@ -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 <abel@oaka.org>\n"
"Language-Team: Chinese (Taiwan) <community@linuxhall.org>\n"