This commit is contained in:
Matthias Clasen
2006-06-20 15:09:06 +00:00
parent 0d31a526f9
commit 2107d8e3ed
90 changed files with 3677 additions and 3467 deletions

View File

@@ -1,3 +1,9 @@
2006-06-20 Matthias Clasen <mclasen@redhat.com>
* === Released 2.11.4 ===
* NEWS: Updates
2006-06-16 Matthias Clasen <mclasen@redhat.com> 2006-06-16 Matthias Clasen <mclasen@redhat.com>
* tests/file-test.c (test_mkstemp): Add tests. * tests/file-test.c (test_mkstemp): Add tests.

View File

@@ -1,3 +1,9 @@
2006-06-20 Matthias Clasen <mclasen@redhat.com>
* === Released 2.11.4 ===
* NEWS: Updates
2006-06-16 Matthias Clasen <mclasen@redhat.com> 2006-06-16 Matthias Clasen <mclasen@redhat.com>
* tests/file-test.c (test_mkstemp): Add tests. * tests/file-test.c (test_mkstemp): Add tests.

View File

@@ -1,8 +1,8 @@
Simple install procedure Simple install procedure
======================== ========================
% gzip -cd glib-2.11.3.tar.gz | tar xvf - # unpack the sources % gzip -cd glib-2.11.4.tar.gz | tar xvf - # unpack the sources
% cd glib-2.11.3 # change to the toplevel directory % cd glib-2.11.4 # change to the toplevel directory
% ./configure # run the `configure' script % ./configure # run the `configure' script
% make # build GLIB % make # build GLIB

15
NEWS
View File

@@ -1,3 +1,18 @@
Overview of Changes from GLib 2.11.3 to GLib 2.11.4
===================================================
* GBookmarkFile:
- g_bookmark_file_remove_item returns a boolean
* g_mkstemp accepts the XXXXXX in the middle of
the template
* Bugs fixed:
344868 g_key_file_to_data should separate groups
* Updated translations (de,es,fr,gu,hi,ko,th)
Overview of Changes from GLib 2.11.2 to GLib 2.11.3 Overview of Changes from GLib 2.11.2 to GLib 2.11.3
=================================================== ===================================================

2
README
View File

@@ -1,7 +1,7 @@
General Information General Information
=================== ===================
This is GLib version 2.11.3. GLib is the low-level core This is GLib version 2.11.4. GLib is the low-level core
library that forms the basis for projects such as GTK+ and GNOME. It library that forms the basis for projects such as GTK+ and GNOME. It
provides data structure handling for C, portability wrappers, and provides data structure handling for C, portability wrappers, and
interfaces for such runtime functionality as an event loop, threads, interfaces for such runtime functionality as an event loop, threads,

View File

@@ -1,3 +1,7 @@
2006-06-20 Matthias Clasen <mclasen@redhat.com>
* === Released 2.11.4 ===
2006-06-12 Matthias Clasen <mclasen@redhat.com> 2006-06-12 Matthias Clasen <mclasen@redhat.com>
* === Released 2.11.3 === * === Released 2.11.3 ===

View File

@@ -535,6 +535,7 @@ unknown encoding
@bookmark: @bookmark:
@uri: @uri:
@error: @error:
@Returns:
<!-- ##### FUNCTION g_bookmark_file_move_item ##### --> <!-- ##### FUNCTION g_bookmark_file_move_item ##### -->

View File

@@ -494,8 +494,6 @@ Flags which influence the parsing.
@key_file: @key_file:
@group_name: @group_name:
@key: @key:
@list:
@length:
<!-- ##### FUNCTION g_key_file_set_locale_string_list ##### --> <!-- ##### FUNCTION g_key_file_set_locale_string_list ##### -->
@@ -507,8 +505,6 @@ Flags which influence the parsing.
@group_name: @group_name:
@key: @key:
@locale: @locale:
@list:
@length:
<!-- ##### FUNCTION g_key_file_set_boolean_list ##### --> <!-- ##### FUNCTION g_key_file_set_boolean_list ##### -->

View File

@@ -124,6 +124,8 @@ A convenience function/macro to log a normal message.
@...: @...:
@...:
@...: @...:
@@ -142,6 +144,8 @@ A convenience function/macro to log a warning message.
@...: @...:
@...:
@...: @...:
@@ -164,6 +168,8 @@ example.
@...: @...:
@...:
@...: @...:
@@ -187,6 +193,8 @@ assertion failure.
@...: @...:
@...:
@...: @...:
@@ -205,6 +213,8 @@ A convenience function/macro to log a debug message.
@...: @...:
@...:
@...: @...:
@Since: 2.6 @Since: 2.6

View File

@@ -232,10 +232,12 @@ than to write one yourself using g_enum_register_static().
</para> </para>
@name: A nul-terminated string used as the name of the new type. @name: A nul-terminated string used as the name of the new type.
@_static_values:
@Returns: The new type identifier.
<!-- # Unused Parameters # -->
@const_static_values: An array of #GEnumValue structs for the possible @const_static_values: An array of #GEnumValue structs for the possible
enumeration values. The array is terminated by a struct with all enumeration values. The array is terminated by a struct with all
members being 0. members being 0.
@Returns: The new type identifier.
<!-- ##### FUNCTION g_flags_register_static ##### --> <!-- ##### FUNCTION g_flags_register_static ##### -->
@@ -249,9 +251,11 @@ than to write one yourself using g_flags_register_static().
</para> </para>
@name: A nul-terminated string used as the name of the new type. @name: A nul-terminated string used as the name of the new type.
@_static_values:
@Returns: The new type identifier.
<!-- # Unused Parameters # -->
@const_static_values: An array of #GFlagsValue structs for the possible @const_static_values: An array of #GFlagsValue structs for the possible
flags values. The array is terminated by a struct with all members being 0. flags values. The array is terminated by a struct with all members being 0.
@Returns: The new type identifier.
<!-- ##### FUNCTION g_enum_complete_type_info ##### --> <!-- ##### FUNCTION g_enum_complete_type_info ##### -->
@@ -280,6 +284,8 @@ my_enum_complete_type_info (GTypePlugin *plugin,
@g_enum_type: the type identifier of the type being completed @g_enum_type: the type identifier of the type being completed
@info: the #GTypeInfo struct to be filled in @info: the #GTypeInfo struct to be filled in
@_values:
<!-- # Unused Parameters # -->
@const_values: An array of #GEnumValue structs for the possible @const_values: An array of #GEnumValue structs for the possible
enumeration values. The array is terminated by a struct with all enumeration values. The array is terminated by a struct with all
members being 0. members being 0.
@@ -294,6 +300,8 @@ g_enumeration_complete_type_info() above.
@g_flags_type: the type identifier of the type being completed @g_flags_type: the type identifier of the type being completed
@info: the #GTypeInfo struct to be filled in @info: the #GTypeInfo struct to be filled in
@_values:
<!-- # Unused Parameters # -->
@const_values: An array of #GFlagsValue structs for the possible @const_values: An array of #GFlagsValue structs for the possible
enumeration values. The array is terminated by a struct with all enumeration values. The array is terminated by a struct with all
members being 0. members being 0.

View File

@@ -164,11 +164,13 @@ not be unloaded.
@module: a #GTypeModule @module: a #GTypeModule
@name: name for the type @name: name for the type
@_static_values:
@Returns: the new or existing type ID
@Since: 2.6
<!-- # Unused Parameters # -->
@const_static_values: an array of #GEnumValue structs for the possible @const_static_values: an array of #GEnumValue structs for the possible
enumeration values. The array is terminated by a struct with all enumeration values. The array is terminated by a struct with all
members being 0. members being 0.
@Returns: the new or existing type ID
@Since: 2.6
<!-- ##### FUNCTION g_type_module_register_flags ##### --> <!-- ##### FUNCTION g_type_module_register_flags ##### -->
@@ -185,10 +187,12 @@ not be unloaded.
@module: a #GTypeModule @module: a #GTypeModule
@name: name for the type @name: name for the type
@_static_values:
@Returns: the new or existing type ID
@Since: 2.6
<!-- # Unused Parameters # -->
@const_static_values: an array of #GFlagsValue structs for the possible @const_static_values: an array of #GFlagsValue structs for the possible
flags values. The array is terminated by a struct with all flags values. The array is terminated by a struct with all
members being 0. members being 0.
@Returns: the new or existing type ID
@Since: 2.6

View File

@@ -1,3 +1,7 @@
2006-06-20 Matthias Clasen <mclasen@redhat.com>
* === Released 2.11.4 ===
2006-06-12 Matthias Clasen <mclasen@redhat.com> 2006-06-12 Matthias Clasen <mclasen@redhat.com>
* === Released 2.11.3 === * === Released 2.11.3 ===

View File

@@ -1,3 +1,7 @@
2006-06-20 Matthias Clasen <mclasen@redhat.com>
* === Released 2.11.4 ===
2006-06-15 Federico Mena Quintero <federico@novell.com> 2006-06-15 Federico Mena Quintero <federico@novell.com>
* gtype.c (g_type_instance_get_private): Fix the error message so * gtype.c (g_type_instance_get_private): Fix the error message so

View File

@@ -1,3 +1,7 @@
2006-06-20 Matthias Clasen <mclasen@redhat.com>
* === Released 2.11.4 ===
2006-06-12 Matthias Clasen <mclasen@redhat.com> 2006-06-12 Matthias Clasen <mclasen@redhat.com>
* === Released 2.11.3 === * === Released 2.11.3 ===

View File

@@ -1,3 +1,7 @@
2006-06-20 Matthias Clasen <mclasen@redhat.com>
* === Released 2.11.4 ===
2006-06-20 Rajesh Ranjan <rajeshkajha@yahoo.com> 2006-06-20 Rajesh Ranjan <rajeshkajha@yahoo.com>
* hi.po: Updated Hindi Translation. * hi.po: Updated Hindi Translation.

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib VERSION\n" "Project-Id-Version: glib VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2003-01-16 08:39+EDT\n" "PO-Revision-Date: 2003-01-16 08:39+EDT\n"
"Last-Translator: Ge'ez Frontier Foundation <locales@geez.org>\n" "Last-Translator: Ge'ez Frontier Foundation <locales@geez.org>\n"
"Language-Team: Amharic <locales@geez.org>\n" "Language-Team: Amharic <locales@geez.org>\n"
@@ -50,35 +50,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -192,7 +192,7 @@ msgstr ""
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "" msgstr ""
@@ -217,22 +217,22 @@ msgstr ""
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "" msgstr ""
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "" msgstr ""
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "" msgstr ""
@@ -697,66 +697,66 @@ msgstr ""
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "" msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2003-12-19 01:22+0100\n" "PO-Revision-Date: 2003-12-19 01:22+0100\n"
"Last-Translator: Arafat Medini <lumina@silverpen.de>\n" "Last-Translator: Arafat Medini <lumina@silverpen.de>\n"
"Language-Team: Arabic <doc@arabeyes.org>\n" "Language-Team: Arabic <doc@arabeyes.org>\n"
@@ -50,35 +50,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -192,7 +192,7 @@ msgstr "فشل فتح الملف '%s': فشل fdopen(): %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "فشل فتح الملف '%s': فشل fdopen(): %s" msgstr "فشل فتح الملف '%s': فشل fdopen(): %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "فشل انشاء الملف '%s': %s" msgstr "فشل انشاء الملف '%s': %s"
@@ -217,22 +217,22 @@ msgstr "فشل فتح الملف '%s': فشل fdopen(): %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "القالب '%s' غير سليم, لا يجب أن يحتوي على '%s'" msgstr "القالب '%s' غير سليم, لا يجب أن يحتوي على '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "القالب '%s' لا ينتهي بـXXXXXX" msgstr "القالب '%s' لا ينتهي بـXXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "فشلت قراءة الوصلة الرمزية '%s': %s" msgstr "فشلت قراءة الوصلة الرمزية '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "الوصلات الرمزية غير مدعومة" msgstr "الوصلات الرمزية غير مدعومة"
@@ -716,66 +716,66 @@ msgstr ""
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, fuzzy, c-format #, fuzzy, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "الـURI '%s' يحتوي على حروف هربت بطريقة غير سليمة " msgstr "الـURI '%s' يحتوي على حروف هربت بطريقة غير سليمة "
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "" msgstr ""

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD.az\n" "Project-Id-Version: glib.HEAD.az\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2004-02-02 12:12+0200\n" "PO-Revision-Date: 2004-02-02 12:12+0200\n"
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n" "Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
"Language-Team: Azerbaijani Turkish <gnome@azitt.com>\n" "Language-Team: Azerbaijani Turkish <gnome@azitt.com>\n"
@@ -51,35 +51,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -193,7 +193,7 @@ msgstr "Fayl açma iflası '%s': fdopen() iflası: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Fayl açma iflası '%s': fdopen() iflası: %s" msgstr "Fayl açma iflası '%s': fdopen() iflası: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Fayl yaratma iflası '%s': %s" msgstr "Fayl yaratma iflası '%s': %s"
@@ -218,22 +218,22 @@ msgstr "Fayl açma iflası '%s': fdopen() iflası: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Nümunə '%s' hökmsüzdür, '%s' daxil etməməlidir" msgstr "Nümunə '%s' hökmsüzdür, '%s' daxil etməməlidir"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Şablon '%s' XXXXXX ilə qurtarmır" msgstr "Şablon '%s' XXXXXX ilə qurtarmır"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "'%s' simvolik körpüsü oxuna bilmədi: %s" msgstr "'%s' simvolik körpüsü oxuna bilmədi: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Simvolik körpülər dəstəklənmir" msgstr "Simvolik körpülər dəstəklənmir"
@@ -735,66 +735,66 @@ msgstr ""
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, fuzzy, c-format #, fuzzy, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "`%s'in URİ-si səhv qaçırılmış xarakterlər daxil edir" msgstr "`%s'in URİ-si səhv qaçırılmış xarakterlər daxil edir"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "" msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib HEAD\n" "Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2005-11-16 11:21+0200\n" "PO-Revision-Date: 2005-11-16 11:21+0200\n"
"Last-Translator: Vital Khilko <vk@altlinux.ru>\n" "Last-Translator: Vital Khilko <vk@altlinux.ru>\n"
"Language-Team: Belarusian <i18n@mova.org>\n" "Language-Team: Belarusian <i18n@mova.org>\n"
@@ -53,35 +53,35 @@ msgstr "Дапушчальны файл ключу не адшуканы ў ка
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -221,7 +221,7 @@ msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Збой зьмены назвы файлу \"%s\" на '%s': збой g_rename(): %s" msgstr "Збой зьмены назвы файлу \"%s\" на '%s': збой g_rename(): %s"
# glib/gfileutils.c:745 # glib/gfileutils.c:745
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Збой стварэньня файлу \"%s\": %s" msgstr "Збой стварэньня файлу \"%s\": %s"
@@ -250,24 +250,24 @@ msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Наяўны файл '%s' не можа быць выдалены: збой g_unlink(): %s" msgstr "Наяўны файл '%s' не можа быць выдалены: збой g_unlink(): %s"
# glib/gfileutils.c:712 # glib/gfileutils.c:712
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Шаблён \"%s\" недапушчальны, не павінны ўтрымліваць \"%s\"" msgstr "Шаблён \"%s\" недапушчальны, не павінны ўтрымліваць \"%s\""
# glib/gfileutils.c:724 # glib/gfileutils.c:724
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Шаблён \"%s\" канчацца не на XXXXXX" msgstr "Шаблён \"%s\" канчацца не на XXXXXX"
# glib/gfileutils.c:745 # glib/gfileutils.c:745
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Немагчыма прачытаць сымбалічную спасылку \"%s\": %s" msgstr "Немагчыма прачытаць сымбалічную спасылку \"%s\": %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Сымбалічныя спасылкі не падтрымліваюцца" msgstr "Сымбалічныя спасылкі не падтрымліваюцца"
@@ -842,32 +842,32 @@ msgstr "Файл ключу не пачынаецца з групы"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Файл ключу ўтрымлівае кадаваньне якое не падтрымліваецца '%s'" msgstr "Файл ключу ўтрымлівае кадаваньне якое не падтрымліваецца '%s'"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Файл ключу не мае групу '%s'" msgstr "Файл ключу не мае групу '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Файл ключу не мае ключ '%s'" msgstr "Файл ключу не мае ключ '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
"Файл ключу утрымлівае ключ '%s' са значэньнем '%s' які не закадаваны UTF-8" "Файл ключу утрымлівае ключ '%s' са значэньнем '%s' які не закадаваны UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Файл ключу утрымлівае ключ '%s' які мае значэньне што не можа быць " "Файл ключу утрымлівае ключ '%s' які мае значэньне што не можа быць "
"інтэрпрэтаванае." "інтэрпрэтаванае."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -876,38 +876,38 @@ msgstr ""
"Файл ключу утрымлівае ключ '%s' у групе '%s' які мае значэньне што не можа " "Файл ключу утрымлівае ключ '%s' у групе '%s' які мае значэньне што не можа "
"быць інтэрпрэтаванае." "быць інтэрпрэтаванае."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Файл ключу не мае ключ '%s' у групе '%s'" msgstr "Файл ключу не мае ключ '%s' у групе '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Файл ключу ўтрымлівае пасьлядоўнасьць завяршэньня ў канцы радку" msgstr "Файл ключу ўтрымлівае пасьлядоўнасьць завяршэньня ў канцы радку"
# glib/gconvert.c:1648 # glib/gconvert.c:1648
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Файл ключу утрымлівае недапушчальную пасьлядоўнасьць завяршэньня '%s'" msgstr "Файл ключу утрымлівае недапушчальную пасьлядоўнасьць завяршэньня '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Значэньне '%s' не можа быць інтэрпрэтаванае як лік." msgstr "Значэньне '%s' не можа быць інтэрпрэтаванае як лік."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Цэлае значэньне '%s' па-за межамі" msgstr "Цэлае значэньне '%s' па-за межамі"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Значэньне '%s' не можа быць інтэрпрэтаванае як лік." msgstr "Значэньне '%s' не можа быць інтэрпрэтаванае як лік."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Значэньне '%s' не можа быць інтэрпрэтаванае як булева." msgstr "Значэньне '%s' не можа быць інтэрпрэтаванае як булева."

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib HEAD\n" "Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-05-21 10:36+0300\n" "PO-Revision-Date: 2006-05-21 10:36+0300\n"
"Last-Translator: Alexander Shopov <ash@contact.bg>\n" "Last-Translator: Alexander Shopov <ash@contact.bg>\n"
"Language-Team: Bulgarian <dict@fsa-bg.org>\n" "Language-Team: Bulgarian <dict@fsa-bg.org>\n"
@@ -51,35 +51,35 @@ msgstr "Не може да се открие валиден файл с отме
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "Вече съществува отметка за адреса „%s“" msgstr "Вече съществува отметка за адреса „%s“"
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "Не е открита отметка за адреса „%s“" msgstr "Не е открита отметка за адреса „%s“"
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Не е указан типът MIME в отметката към адреса „%s“" msgstr "Не е указан типът MIME в отметката към адреса „%s“"
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Не е зададен флаг за лични данни за адреса „%s“" msgstr "Не е зададен флаг за лични данни за адреса „%s“"
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "Не са зададени групи в отметката за адреса „%s“" msgstr "Не са зададени групи в отметката за адреса „%s“"
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Никое приложение „%s“ не е регистрирало отметка за „%s“" msgstr "Никое приложение „%s“ не е регистрирало отметка за „%s“"
@@ -200,7 +200,7 @@ msgstr ""
"Неуспех при преименуване на файл „%s“ на „%s“: неуспешно изпълнение на " "Неуспех при преименуване на файл „%s“ на „%s“: неуспешно изпълнение на "
"g_rename(): %s" "g_rename(): %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Неуспех при създаване на файл „%s“: %s" msgstr "Неуспех при създаване на файл „%s“: %s"
@@ -230,22 +230,22 @@ msgstr ""
"Неуспех при изтриването на съществуващия файл „%s“: неуспешно изпълнение на " "Неуспех при изтриването на съществуващия файл „%s“: неуспешно изпълнение на "
"g_unlink(): %s" "g_unlink(): %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Шаблонът „%s“ е неправилен, не трябва да съдържа „%s“" msgstr "Шаблонът „%s“ е неправилен, не трябва да съдържа „%s“"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Шаблонът „%s“ не завършва с XXXXXX" msgstr "Шаблонът „%s“ не завършва с XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Неуспех при четене на символната връзка „%s“: %s" msgstr "Неуспех при четене на символната връзка „%s“: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Символни връзки не се поддържат" msgstr "Символни връзки не се поддържат"
@@ -760,31 +760,31 @@ msgstr "Ключовият файл не започва с група"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Ключовият файл съдържа неподдържаното кодиране „%s“" msgstr "Ключовият файл съдържа неподдържаното кодиране „%s“"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Ключовият файл не съдържа групата „%s“" msgstr "Ключовият файл не съдържа групата „%s“"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Ключовият файл не съдържа ключа „%s“" msgstr "Ключовият файл не съдържа ключа „%s“"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "Ключовият файл съдържа ключ „%s“ със стойност „%s“, която не е в UTF-8" msgstr "Ключовият файл съдържа ключ „%s“ със стойност „%s“, която не е в UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Ключовият файл съдържа ключа „%s“, чиято стойност не може да бъде " "Ключовият файл съдържа ключа „%s“, чиято стойност не може да бъде "
"анализирана." "анализирана."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -793,38 +793,38 @@ msgstr ""
"Ключовият файл съдържа ключа „%s“ в групата „%s“, чиято стойност не може да " "Ключовият файл съдържа ключа „%s“ в групата „%s“, чиято стойност не може да "
"бъде анализирана." "бъде анализирана."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Ключовият файл не съдържа ключа „%s“ в групата „%s“" msgstr "Ключовият файл не съдържа ключа „%s“ в групата „%s“"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Ключовият файл съдържа екранираща последователност в край на ред" msgstr "Ключовият файл съдържа екранираща последователност в край на ред"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Ключовият файл съдържа грешна екранираща последователност - „%s“" msgstr "Ключовият файл съдържа грешна екранираща последователност - „%s“"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Стойността „%s“ не може да се интерпретира като число." msgstr "Стойността „%s“ не може да се интерпретира като число."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Целочислената стойност „%s“ е извън интервала на допустими стойности" msgstr "Целочислената стойност „%s“ е извън интервала на допустими стойности"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "" msgstr ""
"Стойността „%s“ не може да се интерпретира като число с плаваща запетая." "Стойността „%s“ не може да се интерпретира като число с плаваща запетая."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Стойността „%s“ не може да се интерпретира като булева." msgstr "Стойността „%s“ не може да се интерпретира като булева."

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 0.1\n" "Project-Id-Version: glib 0.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2005-10-03 00:24+0600\n" "PO-Revision-Date: 2005-10-03 00:24+0600\n"
"Last-Translator: Mahay Alam Khan <makl10n@yahoo.com>\n" "Last-Translator: Mahay Alam Khan <makl10n@yahoo.com>\n"
"Language-Team: Bengali <gnome-translation@bengalinux.org>\n" "Language-Team: Bengali <gnome-translation@bengalinux.org>\n"
@@ -53,35 +53,35 @@ msgstr "বৈধ কী ফাইল ডাটা dirs পাওয়া যা
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -196,7 +196,7 @@ msgstr "ফাইল \"%s\" খুলতে ব্যর্থ: fdopen() ব্
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "'%s' ফাইলের নাম '%s' তে পরিবর্তন করা যায়নি: g_rename() failed: %s" msgstr "'%s' ফাইলের নাম '%s' তে পরিবর্তন করা যায়নি: g_rename() failed: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "ফাইল \"%s\" সৃষ্টি করতে ব্যর্থ: %s" msgstr "ফাইল \"%s\" সৃষ্টি করতে ব্যর্থ: %s"
@@ -221,22 +221,22 @@ msgstr "'%s' ফাইল বন্ধ করতে ব্যর্থ: fclose()
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "বিদ্যমান ফাইল '%s' অপসারিত করা যায়নি: g_unlink() ব্যর্থ: %s" msgstr "বিদ্যমান ফাইল '%s' অপসারিত করা যায়নি: g_unlink() ব্যর্থ: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "নমুনা '%s' সঠিক নয়, '%s' থাকা উচিত্‌ নয়" msgstr "নমুনা '%s' সঠিক নয়, '%s' থাকা উচিত্‌ নয়"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "নমুনা '%s' এর শেষে XXXXXX নাই" msgstr "নমুনা '%s' এর শেষে XXXXXX নাই"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "প্রতীকি লিংক '%s' পড়তে ব্যর্থ: %s" msgstr "প্রতীকি লিংক '%s' পড়তে ব্যর্থ: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "প্রতীকী লিঙ্ক সমর্থিত নয়" msgstr "প্রতীকী লিঙ্ক সমর্থিত নয়"
@@ -728,66 +728,66 @@ msgstr "কী ফাইল গ্রুপের সঙ্গে আরম্
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "কী ফাইল অসমর্থিত এনকোডিং '%s' ধারণ করছে" msgstr "কী ফাইল অসমর্থিত এনকোডিং '%s' ধারণ করছে"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "কী ফাইলের গ্রুপ '%s' নেই" msgstr "কী ফাইলের গ্রুপ '%s' নেই"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "কী ফাইলের কী '%s' নেই" msgstr "কী ফাইলের কী '%s' নেই"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "কী ফাইলে '%s' কী এর মান '%s', যা UTF-8 নয়" msgstr "কী ফাইলে '%s' কী এর মান '%s', যা UTF-8 নয়"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "কী ফাইল '%s' কী ধারণ করে যার মান ইন্টারপ্রেট করা যাবেনা।" msgstr "কী ফাইল '%s' কী ধারণ করে যার মান ইন্টারপ্রেট করা যাবেনা।"
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "কী ফাইল '%2$s' গ্রুপে '%1$s' কী ধারণ করছে যার মান ইন্টারপ্রেট করা যাবেনা।" msgstr "কী ফাইল '%2$s' গ্রুপে '%1$s' কী ধারণ করছে যার মান ইন্টারপ্রেট করা যাবেনা।"
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "কী ফাইলের '%2$s' গ্রুপ এ অন্তর্ভুক্ত '%1$s' কী টি নেই" msgstr "কী ফাইলের '%2$s' গ্রুপ এ অন্তর্ভুক্ত '%1$s' কী টি নেই"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "কী ফাইল লাইনের শেষে এস্কেপ অক্ষর ধারণ করছে" msgstr "কী ফাইল লাইনের শেষে এস্কেপ অক্ষর ধারণ করছে"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "কী ফাইলে অবৈধ এস্কেপ সিকোয়েন্স '%s' আছে" msgstr "কী ফাইলে অবৈধ এস্কেপ সিকোয়েন্স '%s' আছে"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "মান '%s' কে সংখ্যা হিসেবে ইন্টারপ্রেট করা যায় না।" msgstr "মান '%s' কে সংখ্যা হিসেবে ইন্টারপ্রেট করা যায় না।"
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "ইন্টিজার মান '%s' সীমার বাহিরে" msgstr "ইন্টিজার মান '%s' সীমার বাহিরে"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "মান '%s' কে সংখ্যা হিসেবে ইন্টারপ্রেট করা যায় না।" msgstr "মান '%s' কে সংখ্যা হিসেবে ইন্টারপ্রেট করা যায় না।"
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "মান '%s' কে বুলিয়ান হিসেবে ইন্টারপ্রেট করা যায় না।" msgstr "মান '%s' কে বুলিয়ান হিসেবে ইন্টারপ্রেট করা যায় না।"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.glib-2-4\n" "Project-Id-Version: glib.glib-2-4\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2004-05-17 01:30+0000\n" "PO-Revision-Date: 2004-05-17 01:30+0000\n"
"Last-Translator: Kenan Hadžiavdić <kenanh@frisurf.no>\n" "Last-Translator: Kenan Hadžiavdić <kenanh@frisurf.no>\n"
"Language-Team: Bosnian <lokal@lugbih.org>\n" "Language-Team: Bosnian <lokal@lugbih.org>\n"
@@ -50,35 +50,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -192,7 +192,7 @@ msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s" msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Neuspješno pravljenje datoteke '%s': %s" msgstr "Neuspješno pravljenje datoteke '%s': %s"
@@ -217,22 +217,22 @@ msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Nevažeći šablon '%s', ne bi trebao sadržavati '%s'" msgstr "Nevažeći šablon '%s', ne bi trebao sadržavati '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Šablon '%s' ne završava sa XXXXXX" msgstr "Šablon '%s' ne završava sa XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Neuspješno čitanje simboličkog linka '%s': %s" msgstr "Neuspješno čitanje simboličkog linka '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Simbolički linkovi nisu podržani" msgstr "Simbolički linkovi nisu podržani"
@@ -734,66 +734,66 @@ msgstr ""
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, fuzzy, c-format #, fuzzy, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "URI '%s' sadrži nevažeće escape znakove" msgstr "URI '%s' sadrži nevažeće escape znakove"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "" msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.8\n" "Project-Id-Version: glib 2.8\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-01-07 12:52+0100\n" "PO-Revision-Date: 2006-01-07 12:52+0100\n"
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n" "Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
"Language-Team: Catalan <tradgnome@softcatala.org>\n" "Language-Team: Catalan <tradgnome@softcatala.org>\n"
@@ -52,35 +52,35 @@ msgstr "No s'ha pogut trobar un fitxer de claus als directoris de dades"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -196,7 +196,7 @@ msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "" msgstr ""
"No s'ha pogut canviar el nom del fitxer «%s» a «%s»: g_rename() ha fallat: %s" "No s'ha pogut canviar el nom del fitxer «%s» a «%s»: g_rename() ha fallat: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "No s'ha pogut crear el fitxer «%s»: %s" msgstr "No s'ha pogut crear el fitxer «%s»: %s"
@@ -223,22 +223,22 @@ msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
"No s'ha pogut suprimir el fitxer existent «%s»: g_unlink() ha fallat: %s" "No s'ha pogut suprimir el fitxer existent «%s»: g_unlink() ha fallat: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "La plantilla «%s» no és vàlida, no pot contenir cap «%s»" msgstr "La plantilla «%s» no és vàlida, no pot contenir cap «%s»"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "La plantilla «%s» no acaba en XXXXXX" msgstr "La plantilla «%s» no acaba en XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "No s'ha pogut llegir l'enllaç simbòlic «%s»: %s" msgstr "No s'ha pogut llegir l'enllaç simbòlic «%s»: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "No es pot treballar amb enllaços simbòlics" msgstr "No es pot treballar amb enllaços simbòlics"
@@ -759,31 +759,31 @@ msgstr "El fitxer de claus no comença amb un grup"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "El fitxer de claus conté la codificació no implementada «%s»" msgstr "El fitxer de claus conté la codificació no implementada «%s»"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "El fitxer de claus no té el grup «%s»" msgstr "El fitxer de claus no té el grup «%s»"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "El fitxer de claus no té la clau «%s»" msgstr "El fitxer de claus no té la clau «%s»"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "El fitxer de claus conté la clau «%s» amb valor «%s» que no és UTF-8" msgstr "El fitxer de claus conté la clau «%s» amb valor «%s» que no és UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"El fitxer de claus conté la clau «%s» que té un valor que no es pot " "El fitxer de claus conté la clau «%s» que té un valor que no es pot "
"interpretar." "interpretar."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -792,37 +792,37 @@ msgstr ""
"El fitxer de claus conté la clau «%s» al grup «%s», que té un valor que no " "El fitxer de claus conté la clau «%s» al grup «%s», que té un valor que no "
"es pot interpretar." "es pot interpretar."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "El fitxer de claus no conté una clau «%s» al grup «%s»" msgstr "El fitxer de claus no conté una clau «%s» al grup «%s»"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "El fitxer de claus conté un caràcter d'escapada al final de línia" msgstr "El fitxer de claus conté un caràcter d'escapada al final de línia"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "El fitxer de claus conté el caràcter d'escapada invàlid «%s»" msgstr "El fitxer de claus conté el caràcter d'escapada invàlid «%s»"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "El valor «%s» no es pot interpretar com a un nombre." msgstr "El valor «%s» no es pot interpretar com a un nombre."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "El valor enter «%s» és fora del rang" msgstr "El valor enter «%s» és fora del rang"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "El valor «%s» no es pot interpretar com a un nombre." msgstr "El valor «%s» no es pot interpretar com a un nombre."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "El valor «%s» no es pot interpretar com un booleà." msgstr "El valor «%s» no es pot interpretar com un booleà."

View File

@@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib VERSION\n" "Project-Id-Version: glib VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-02-07 21:14+0100\n" "PO-Revision-Date: 2006-02-07 21:14+0100\n"
"Last-Translator: Lukas Novotny <lukasnov@cvs.gnome.org>\n" "Last-Translator: Lukas Novotny <lukasnov@cvs.gnome.org>\n"
"Language-Team: Czech <cs@li.org>\n" "Language-Team: Czech <cs@li.org>\n"
@@ -55,35 +55,35 @@ msgstr "V datových adresářích nelze najít platný soubor klíče"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -197,7 +197,7 @@ msgstr "Nemohu otevřít soubor '%s': fdopen() selhalo: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Nemohu přejmenovat soubor '%s' na '%s': g_rename() selhalo: %s" msgstr "Nemohu přejmenovat soubor '%s' na '%s': g_rename() selhalo: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Nemohu vytvořit soubor '%s': %s" msgstr "Nemohu vytvořit soubor '%s': %s"
@@ -222,22 +222,22 @@ msgstr "Nemohu zavřít soubor '%s': fclose() selhalo: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Existující soubor '%s' nelze odstranit: g_unlink() selhalo: %s" msgstr "Existující soubor '%s' nelze odstranit: g_unlink() selhalo: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Šablona '%s' je neplatná, neměla by obsahovat '%s'" msgstr "Šablona '%s' je neplatná, neměla by obsahovat '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Šablona '%s' nekončí XXXXXX" msgstr "Šablona '%s' nekončí XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Nemohu přečíst symbolický odkaz '%s': %s" msgstr "Nemohu přečíst symbolický odkaz '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Symbolické odkazy nejsou podporovány" msgstr "Symbolické odkazy nejsou podporovány"
@@ -738,31 +738,31 @@ msgstr "Soubor klíče nezačíná skupinou"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Soubor klíče obsahuje nepodporované kódování '%s'" msgstr "Soubor klíče obsahuje nepodporované kódování '%s'"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Soubor klíče nemá skupinu '%s'" msgstr "Soubor klíče nemá skupinu '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Soubor klíče nemá klíč '%s'" msgstr "Soubor klíče nemá klíč '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "Soubor klíče obsahuje klíč '%s' s hodnotou '%s', která není v UTF-8" msgstr "Soubor klíče obsahuje klíč '%s' s hodnotou '%s', která není v UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Soubor klíče obsahuje klíč '%s', který má hodnotu, kterou nelze " "Soubor klíče obsahuje klíč '%s', který má hodnotu, kterou nelze "
"interpretovat." "interpretovat."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -771,37 +771,37 @@ msgstr ""
"Soubor klíče obsahuje klíč '%s' ve skupině '%s', který má hodnotu, kterou " "Soubor klíče obsahuje klíč '%s' ve skupině '%s', který má hodnotu, kterou "
"nelze interpretovat." "nelze interpretovat."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Soubor klíče nemá klíč '%s' ve skupině '%s'" msgstr "Soubor klíče nemá klíč '%s' ve skupině '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Soubor klíče obsahuje znak escape na konci řádku" msgstr "Soubor klíče obsahuje znak escape na konci řádku"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Soubor klíče obsahuje neplatnou escape sekvenci '%s'" msgstr "Soubor klíče obsahuje neplatnou escape sekvenci '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Hodnotu '%s' nelze interpretovat jako číslo." msgstr "Hodnotu '%s' nelze interpretovat jako číslo."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Celočíselná hodnota '%s' mimo rozsah" msgstr "Celočíselná hodnota '%s' mimo rozsah"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Hodnotu '%s' nelze interpretovat jako číslo." msgstr "Hodnotu '%s' nelze interpretovat jako číslo."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Hodnotu '%s' nelze interpretovat jako booleovskou hodnotu." msgstr "Hodnotu '%s' nelze interpretovat jako booleovskou hodnotu."

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-02-04 21:23+0000\n" "PO-Revision-Date: 2006-02-04 21:23+0000\n"
"Last-Translator: Rhys Jones <rhys@sucs.org>\n" "Last-Translator: Rhys Jones <rhys@sucs.org>\n"
"Language-Team: Welsh <gnome-cy@pengwyn.linux.org.uk>\n" "Language-Team: Welsh <gnome-cy@pengwyn.linux.org.uk>\n"
@@ -51,35 +51,35 @@ msgstr "Ni ddarganfuwyd ffeil allwedd ddilys yn y cyfeiriaduron data"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -193,7 +193,7 @@ msgstr "Methwyd agor y ffeil '%s': methiant yn fdopen(): %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Methwyd ail-enwi'r ffeil'%s' i '%s': methodd g_rename(): %s" msgstr "Methwyd ail-enwi'r ffeil'%s' i '%s': methodd g_rename(): %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Methwyd creu'r ffeil '%s': %s" msgstr "Methwyd creu'r ffeil '%s': %s"
@@ -218,22 +218,22 @@ msgstr "Methwyd cau'r ffeil '%s': methodd fclose(): %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Methu tynnu'r ffeil '%s' oedd eisoes yn bodoli: methodd g_unlink(): %s" msgstr "Methu tynnu'r ffeil '%s' oedd eisoes yn bodoli: methodd g_unlink(): %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Mae'r patrymlun '%s' yn annilys: ni ddylai gynnwys '%s'" msgstr "Mae'r patrymlun '%s' yn annilys: ni ddylai gynnwys '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Nid yw'r patrymlun '%s' yn gorffen gyda XXXXXX" msgstr "Nid yw'r patrymlun '%s' yn gorffen gyda XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Methwyd darllen y cyswllt symbolaidd '%s': %s" msgstr "Methwyd darllen y cyswllt symbolaidd '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Ni chynhelir cysylltion symbolaidd" msgstr "Ni chynhelir cysylltion symbolaidd"
@@ -736,31 +736,31 @@ msgstr "Nid yw'r ffeil allwedd yn dechrau gyda grŵp"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Ffeil allwedd yn cynnwys yr amgodiad '%s', na gynhelir" msgstr "Ffeil allwedd yn cynnwys yr amgodiad '%s', na gynhelir"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Nid oes gan y ffeil allwedd y grŵp '%s'" msgstr "Nid oes gan y ffeil allwedd y grŵp '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Ffeil allwedd heb fod yn cynnwys yr allwedd '%s'" msgstr "Ffeil allwedd heb fod yn cynnwys yr allwedd '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
"Ffeil allwedd yn cynnwys yr allwedd '%s' gyda'r gwerth '%s' nad yw'n UTF-8" "Ffeil allwedd yn cynnwys yr allwedd '%s' gyda'r gwerth '%s' nad yw'n UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Ffeil allwedd yn cynnwys yr allwedd '%s' sydd â gwerth na ellir ei ddirnad." "Ffeil allwedd yn cynnwys yr allwedd '%s' sydd â gwerth na ellir ei ddirnad."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -769,37 +769,37 @@ msgstr ""
"Ffeil allwedd yn cynnwys yr allwedd '%s' yng ngrŵp '%s' sydd â gwerth na " "Ffeil allwedd yn cynnwys yr allwedd '%s' yng ngrŵp '%s' sydd â gwerth na "
"ellir ei ddirnad." "ellir ei ddirnad."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Ffeil allwedd heb fod ganddi'r allwedd '%s' yn y grŵp '%s'" msgstr "Ffeil allwedd heb fod ganddi'r allwedd '%s' yn y grŵp '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Ffeil allwedd yn cynnwys nod dianc ar ddiwedd llinell" msgstr "Ffeil allwedd yn cynnwys nod dianc ar ddiwedd llinell"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Ffeil allwedd yn cynnwys '%s', sy'n ddilyniant dianc annilys" msgstr "Ffeil allwedd yn cynnwys '%s', sy'n ddilyniant dianc annilys"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Ni ellir darllen y gwerth '%s' fel rhif." msgstr "Ni ellir darllen y gwerth '%s' fel rhif."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Gwerth cyfanrif '%s' y tu allan i'r ystod" msgstr "Gwerth cyfanrif '%s' y tu allan i'r ystod"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Ni ellir darllen y gwerth '%s' fel rhif." msgstr "Ni ellir darllen y gwerth '%s' fel rhif."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Ni ellir darllen '%s' fel gwerth Boole." msgstr "Ni ellir darllen '%s' fel gwerth Boole."

View File

@@ -14,7 +14,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-01-18 18:41+0100\n" "PO-Revision-Date: 2006-01-18 18:41+0100\n"
"Last-Translator: Martin Willemoes Hansen <mwh@sysrq.dk>\n" "Last-Translator: Martin Willemoes Hansen <mwh@sysrq.dk>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n" "Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
@@ -58,35 +58,35 @@ msgstr "Gyldig nøglefil blev ikke fundet i datakatalogerne"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -200,7 +200,7 @@ msgstr "Kunne ikke åbne filen \"%s\": fdopen() mislykkedes: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Kunne ikke omdøbe filen \"%s\" til \"%s\": g_rename() mislykkedes: %s" msgstr "Kunne ikke omdøbe filen \"%s\" til \"%s\": g_rename() mislykkedes: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Fejl under oprettelse af filen \"%s\": %s" msgstr "Fejl under oprettelse af filen \"%s\": %s"
@@ -226,22 +226,22 @@ msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
"Den eksisterende fil \"%s\" kunne ikke fjernes: g_unlink() mislykkedes: %s" "Den eksisterende fil \"%s\" kunne ikke fjernes: g_unlink() mislykkedes: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Skabelonen \"%s\" er ugyldig, må ikke indeholde en \"%s\"" msgstr "Skabelonen \"%s\" er ugyldig, må ikke indeholde en \"%s\""
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Skabelonen \"%s\" slutter ikke med XXXXXX" msgstr "Skabelonen \"%s\" slutter ikke med XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Kunne ikke læse den symbolske henvisning \"%s\": %s" msgstr "Kunne ikke læse den symbolske henvisning \"%s\": %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Symbolske henvisninger er ikke understøttet" msgstr "Symbolske henvisninger er ikke understøttet"
@@ -750,31 +750,31 @@ msgstr "Nøglefilen starter ikke med en gruppe"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Nøglefilen indeholder kodningen \"%s\" der ikke er understøttet" msgstr "Nøglefilen indeholder kodningen \"%s\" der ikke er understøttet"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Nøglefilen indeholder ikke gruppen \"%s\"" msgstr "Nøglefilen indeholder ikke gruppen \"%s\""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Nøglefilen indeholder ikke nøglen \"%s\"" msgstr "Nøglefilen indeholder ikke nøglen \"%s\""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
"Nøglefilen indeholder nøglen \"%s\" med værdien \"%s\" der ikke er UTF-8" "Nøglefilen indeholder nøglen \"%s\" med værdien \"%s\" der ikke er UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Nøglefilen indeholder nøglen \"%s\" som har en værdi der ikke kan fortolkes." "Nøglefilen indeholder nøglen \"%s\" som har en værdi der ikke kan fortolkes."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -783,37 +783,37 @@ msgstr ""
"Nøglefilen indeholder nøglen \"%s\" i gruppen \"%s\" som har en værdi der " "Nøglefilen indeholder nøglen \"%s\" i gruppen \"%s\" som har en værdi der "
"ikke kan fortolkes." "ikke kan fortolkes."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Nøglefilen har ikke nøglen \"%s\" i gruppen \"%s\"" msgstr "Nøglefilen har ikke nøglen \"%s\" i gruppen \"%s\""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Nøglefilen indeholder beskyttede tegn for enden af linjen" msgstr "Nøglefilen indeholder beskyttede tegn for enden af linjen"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Nøglefilen indeholder en ugyldig undvigesekvens \"%s\"" msgstr "Nøglefilen indeholder en ugyldig undvigesekvens \"%s\""
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Værdien \"%s\" kan ikke fortolkes som et nummer." msgstr "Værdien \"%s\" kan ikke fortolkes som et nummer."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Heltalsværdien \"%s\" er ikke i gyldigt interval" msgstr "Heltalsværdien \"%s\" er ikke i gyldigt interval"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Værdien \"%s\" kan ikke fortolkes som et nummer." msgstr "Værdien \"%s\" kan ikke fortolkes som et nummer."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Værdien \"%s\" kan ikke fortolkes som en sandhedsværdi." msgstr "Værdien \"%s\" kan ikke fortolkes som en sandhedsværdi."

362
po/de.po
View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib HEAD\n" "Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-19 12:06+0200\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-06-19 15:29+0200\n" "PO-Revision-Date: 2006-06-19 15:29+0200\n"
"Last-Translator: Hendrik Richter <hendrikr@gnome.org>\n" "Last-Translator: Hendrik Richter <hendrikr@gnome.org>\n"
"Language-Team: German <gnome-de@gnome.org>\n" "Language-Team: German <gnome-de@gnome.org>\n"
@@ -17,289 +17,297 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: ../glib/gbookmarkfile.c:716 ../glib/gbookmarkfile.c:793 #: glib/gbookmarkfile.c:716 glib/gbookmarkfile.c:793 glib/gbookmarkfile.c:872
#: ../glib/gbookmarkfile.c:872 ../glib/gbookmarkfile.c:919 #: glib/gbookmarkfile.c:919
#, c-format #, c-format
msgid "Unexpected attribute '%s' for element '%s'" msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Unerwartetes Attribut »%s« des Elements »%s«" msgstr "Unerwartetes Attribut »%s« des Elements »%s«"
#: ../glib/gbookmarkfile.c:727 ../glib/gbookmarkfile.c:804 #: glib/gbookmarkfile.c:727 glib/gbookmarkfile.c:804 glib/gbookmarkfile.c:814
#: ../glib/gbookmarkfile.c:814 ../glib/gbookmarkfile.c:930 #: glib/gbookmarkfile.c:930
#, c-format #, c-format
msgid "Attribute '%s' of element '%s' not found" msgid "Attribute '%s' of element '%s' not found"
msgstr "Attribut »%s« des Elements »%s« konnte nicht gefunden werden" msgstr "Attribut »%s« des Elements »%s« konnte nicht gefunden werden"
#: ../glib/gbookmarkfile.c:1103 ../glib/gbookmarkfile.c:1168 #: glib/gbookmarkfile.c:1103 glib/gbookmarkfile.c:1168
#: ../glib/gbookmarkfile.c:1232 ../glib/gbookmarkfile.c:1242 #: glib/gbookmarkfile.c:1232 glib/gbookmarkfile.c:1242
#, c-format #, c-format
msgid "Unexpected tag '%s', tag '%s' expected" msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Unerwarteter Tag »%s«; Tag »%s« wird erwartet" msgstr "Unerwarteter Tag »%s«; Tag »%s« wird erwartet"
#: ../glib/gbookmarkfile.c:1128 ../glib/gbookmarkfile.c:1142 #: glib/gbookmarkfile.c:1128 glib/gbookmarkfile.c:1142
#: ../glib/gbookmarkfile.c:1210 ../glib/gbookmarkfile.c:1262 #: glib/gbookmarkfile.c:1210 glib/gbookmarkfile.c:1262
#, c-format #, c-format
msgid "Unexpected tag '%s' inside '%s'" msgid "Unexpected tag '%s' inside '%s'"
msgstr "Unerwarteter Tag »%s« innerhalb von »%s«" msgstr "Unerwarteter Tag »%s« innerhalb von »%s«"
#: ../glib/gbookmarkfile.c:1792 #: glib/gbookmarkfile.c:1792
#, c-format
msgid "No valid bookmark file was be found in data dirs" msgid "No valid bookmark file was be found in data dirs"
msgstr "" msgstr ""
"Es wurde keine gültige Lesezeichendatei in den Datenverzeichnissen gefunden" "Es wurde keine gültige Lesezeichendatei in den Datenverzeichnissen gefunden"
#: ../glib/gbookmarkfile.c:1993 #: glib/gbookmarkfile.c:1993
#, c-format #, c-format
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "Es existiert bereits ein Lesezeichen für den URI »%s«" msgstr "Es existiert bereits ein Lesezeichen für den URI »%s«"
#: ../glib/gbookmarkfile.c:2039 ../glib/gbookmarkfile.c:2196 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: ../glib/gbookmarkfile.c:2281 ../glib/gbookmarkfile.c:2362 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: ../glib/gbookmarkfile.c:2447 ../glib/gbookmarkfile.c:2530 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: ../glib/gbookmarkfile.c:2608 ../glib/gbookmarkfile.c:2687 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: ../glib/gbookmarkfile.c:2729 ../glib/gbookmarkfile.c:2826 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: ../glib/gbookmarkfile.c:2949 ../glib/gbookmarkfile.c:3139 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: ../glib/gbookmarkfile.c:3215 ../glib/gbookmarkfile.c:3367 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: ../glib/gbookmarkfile.c:3432 ../glib/gbookmarkfile.c:3522 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: ../glib/gbookmarkfile.c:3649 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "Es konnte kein Lesezeichen für den URI »%s« gefunden werden." msgstr "Es konnte kein Lesezeichen für den URI »%s« gefunden werden."
#: ../glib/gbookmarkfile.c:2371 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Es ist kein MIME-Type im Lesezeichen für den URI »%s« definiert." msgstr "Es ist kein MIME-Type im Lesezeichen für den URI »%s« definiert."
#: ../glib/gbookmarkfile.c:2456 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
"Es konnte keine »privat«-Markierung für das Lesezeichen für die URI »%" "Es konnte keine »privat«-Markierung für das Lesezeichen für die URI »%"
"gefunden werden." "gefunden werden."
#: ../glib/gbookmarkfile.c:2835 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
"Es wurden keine Gruppen für das Lesezeichen für die URI »%s« festgeleg.t" "Es wurden keine Gruppen für das Lesezeichen für die URI »%s« festgeleg.t"
#: ../glib/gbookmarkfile.c:3233 ../glib/gbookmarkfile.c:3377 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
"Es wurde keine Anwendung namens »%s« gefunden, die ein Lesezeichen für »%" "Es wurde keine Anwendung namens »%s« gefunden, die ein Lesezeichen für »%"
"registriert hat." "registriert hat."
#: ../glib/gconvert.c:404 ../glib/gconvert.c:482 ../glib/giochannel.c:1150 #: glib/gconvert.c:404 glib/gconvert.c:482 glib/giochannel.c:1150
#, c-format #, c-format
msgid "Conversion from character set '%s' to '%s' is not supported" msgid "Conversion from character set '%s' to '%s' is not supported"
msgstr "Umwandlung von Zeichensatz »%s« in »%s« wird nicht unterstützt" msgstr "Umwandlung von Zeichensatz »%s« in »%s« wird nicht unterstützt"
#: ../glib/gconvert.c:408 ../glib/gconvert.c:486 #: glib/gconvert.c:408 glib/gconvert.c:486
#, c-format #, c-format
msgid "Could not open converter from '%s' to '%s'" msgid "Could not open converter from '%s' to '%s'"
msgstr "Konverter von »%s« in »%s« konnte nicht geöffnet werden" msgstr "Konverter von »%s« in »%s« konnte nicht geöffnet werden"
#: ../glib/gconvert.c:602 ../glib/gconvert.c:991 ../glib/giochannel.c:1322 #: glib/gconvert.c:602 glib/gconvert.c:991 glib/giochannel.c:1322
#: ../glib/giochannel.c:1364 ../glib/giochannel.c:2206 ../glib/gutf8.c:943 #: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943
#: ../glib/gutf8.c:1392 #: glib/gutf8.c:1392
#, c-format
msgid "Invalid byte sequence in conversion input" msgid "Invalid byte sequence in conversion input"
msgstr "Ungültige Bytefolge in Konvertierungseingabe" msgstr "Ungültige Bytefolge in Konvertierungseingabe"
#: ../glib/gconvert.c:608 ../glib/gconvert.c:918 ../glib/giochannel.c:1329 #: glib/gconvert.c:608 glib/gconvert.c:918 glib/giochannel.c:1329
#: ../glib/giochannel.c:2218 #: glib/giochannel.c:2218
#, c-format #, c-format
msgid "Error during conversion: %s" msgid "Error during conversion: %s"
msgstr "Fehler bei der Umwandlung: %s" msgstr "Fehler bei der Umwandlung: %s"
#: ../glib/gconvert.c:643 ../glib/gutf8.c:939 ../glib/gutf8.c:1143 #: glib/gconvert.c:643 glib/gutf8.c:939 glib/gutf8.c:1143 glib/gutf8.c:1284
#: ../glib/gutf8.c:1284 ../glib/gutf8.c:1388 #: glib/gutf8.c:1388
#, c-format
msgid "Partial character sequence at end of input" msgid "Partial character sequence at end of input"
msgstr "Bruchstückhafte Zeichenfolge am Eingabeende" msgstr "Bruchstückhafte Zeichenfolge am Eingabeende"
#: ../glib/gconvert.c:893 #: glib/gconvert.c:893
#, c-format #, c-format
msgid "Cannot convert fallback '%s' to codeset '%s'" msgid "Cannot convert fallback '%s' to codeset '%s'"
msgstr "Notnagel »%s« kann nicht in Kodierung »%s« umgewandelt werden" msgstr "Notnagel »%s« kann nicht in Kodierung »%s« umgewandelt werden"
#: ../glib/gconvert.c:1702 #: glib/gconvert.c:1702
#, c-format #, c-format
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
msgstr "Der URI »%s« ist kein absoluter URI, der das »file«-Schema verwendet" msgstr "Der URI »%s« ist kein absoluter URI, der das »file«-Schema verwendet"
#: ../glib/gconvert.c:1712 #: glib/gconvert.c:1712
#, c-format #, c-format
msgid "The local file URI '%s' may not include a '#'" msgid "The local file URI '%s' may not include a '#'"
msgstr "Der lokale URI »%s« darf kein »#« enthalten" msgstr "Der lokale URI »%s« darf kein »#« enthalten"
#: ../glib/gconvert.c:1729 #: glib/gconvert.c:1729
#, c-format #, c-format
msgid "The URI '%s' is invalid" msgid "The URI '%s' is invalid"
msgstr "Der URI »%s« ist ungültig" msgstr "Der URI »%s« ist ungültig"
#: ../glib/gconvert.c:1741 #: glib/gconvert.c:1741
#, c-format #, c-format
msgid "The hostname of the URI '%s' is invalid" msgid "The hostname of the URI '%s' is invalid"
msgstr "Der Rechnername der URI »%s« ist ungültig" msgstr "Der Rechnername der URI »%s« ist ungültig"
# CHECK # CHECK
#: ../glib/gconvert.c:1757 #: glib/gconvert.c:1757
#, c-format #, c-format
msgid "The URI '%s' contains invalidly escaped characters" msgid "The URI '%s' contains invalidly escaped characters"
msgstr "Der URI »%s« enthält ungültige Escape-Zeichen" msgstr "Der URI »%s« enthält ungültige Escape-Zeichen"
#: ../glib/gconvert.c:1852 #: glib/gconvert.c:1852
#, c-format #, c-format
msgid "The pathname '%s' is not an absolute path" msgid "The pathname '%s' is not an absolute path"
msgstr "Der Pfadname »%s« ist kein absoluter Pfad" msgstr "Der Pfadname »%s« ist kein absoluter Pfad"
#: ../glib/gconvert.c:1862 #: glib/gconvert.c:1862
#, c-format
msgid "Invalid hostname" msgid "Invalid hostname"
msgstr "Ungültiger Rechnername" msgstr "Ungültiger Rechnername"
#: ../glib/gdir.c:121 ../glib/gdir.c:141 #: glib/gdir.c:121 glib/gdir.c:141
#, c-format #, c-format
msgid "Error opening directory '%s': %s" msgid "Error opening directory '%s': %s"
msgstr "Fehler beim Öffnen des Verzeichnisses »%s«: %s" msgstr "Fehler beim Öffnen des Verzeichnisses »%s«: %s"
#: ../glib/gfileutils.c:572 ../glib/gfileutils.c:645 #: glib/gfileutils.c:572 glib/gfileutils.c:645
#, c-format #, c-format
msgid "Could not allocate %lu bytes to read file \"%s\"" msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "%lu byte konnten nicht alloziiert werden, um Datei »%s« zu lesen" msgstr "%lu byte konnten nicht alloziiert werden, um Datei »%s« zu lesen"
#: ../glib/gfileutils.c:587 #: glib/gfileutils.c:587
#, c-format #, c-format
msgid "Error reading file '%s': %s" msgid "Error reading file '%s': %s"
msgstr "Fehler beim Lesen der Datei »%s«: %s" msgstr "Fehler beim Lesen der Datei »%s«: %s"
#: ../glib/gfileutils.c:669 #: glib/gfileutils.c:669
#, c-format #, c-format
msgid "Failed to read from file '%s': %s" msgid "Failed to read from file '%s': %s"
msgstr "Es konnte nicht aus der Datei »%s« gelesen werden: %s" msgstr "Es konnte nicht aus der Datei »%s« gelesen werden: %s"
#: ../glib/gfileutils.c:720 ../glib/gfileutils.c:807 #: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format #, c-format
msgid "Failed to open file '%s': %s" msgid "Failed to open file '%s': %s"
msgstr "Datei »%s« konnte nicht geöffnet werden: %s" msgstr "Datei »%s« konnte nicht geöffnet werden: %s"
#: ../glib/gfileutils.c:737 ../glib/gmappedfile.c:133 #: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format #, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "" msgstr ""
"Attribute der Datei »%s« konnten nicht ermittelt werden: fstat() " "Attribute der Datei »%s« konnten nicht ermittelt werden: fstat() "
"fehlgeschlagen: %s" "fehlgeschlagen: %s"
#: ../glib/gfileutils.c:771 #: glib/gfileutils.c:771
#, c-format #, c-format
msgid "Failed to open file '%s': fdopen() failed: %s" msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Datei »%s« konnte nicht geöffnet werden: fdopen() fehlgeschlagen: %s" msgstr "Datei »%s« konnte nicht geöffnet werden: fdopen() fehlgeschlagen: %s"
#: ../glib/gfileutils.c:905 #: glib/gfileutils.c:905
#, c-format #, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "" msgstr ""
"Datei »%s« konnte nicht in »%s« umbenannt werden: g_rename() ist " "Datei »%s« konnte nicht in »%s« umbenannt werden: g_rename() ist "
"fehlgeschlagen: %s" "fehlgeschlagen: %s"
#: ../glib/gfileutils.c:946 ../glib/gfileutils.c:1404 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Datei »%s« konnte nicht angelegt werden: %s" msgstr "Datei »%s« konnte nicht angelegt werden: %s"
#: ../glib/gfileutils.c:960 #: glib/gfileutils.c:960
#, c-format #, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s" msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "" msgstr ""
"Datei »%s« konnte nicht im Schreibmodus geöffnet werden: fdopen() ist " "Datei »%s« konnte nicht im Schreibmodus geöffnet werden: fdopen() ist "
"fehlgeschlagen: %s" "fehlgeschlagen: %s"
#: ../glib/gfileutils.c:985 #: glib/gfileutils.c:985
#, c-format #, c-format
msgid "Failed to write file '%s': fwrite() failed: %s" msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "" msgstr ""
"Datei »%s« konnte nicht geschrieben werden: fwrite() ist fehlgeschlagen: %s" "Datei »%s« konnte nicht geschrieben werden: fwrite() ist fehlgeschlagen: %s"
#: ../glib/gfileutils.c:1004 #: glib/gfileutils.c:1004
#, c-format #, c-format
msgid "Failed to close file '%s': fclose() failed: %s" msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "" msgstr ""
"Datei »%s« konnte nicht geschlossen werden: fclose() ist fehlgeschlagen: %s" "Datei »%s« konnte nicht geschlossen werden: fclose() ist fehlgeschlagen: %s"
#: ../glib/gfileutils.c:1122 #: glib/gfileutils.c:1122
#, c-format #, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
"Die vorhandene Datei »%s« konnte nicht entfernt werden: g_unlink() ist " "Die vorhandene Datei »%s« konnte nicht entfernt werden: g_unlink() ist "
"fehlgeschlagen: %s" "fehlgeschlagen: %s"
#: ../glib/gfileutils.c:1366 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Vorlage »%s« ungültig, sollte kein »%s« enthalten" msgstr "Vorlage »%s« ungültig, sollte kein »%s« enthalten"
#: ../glib/gfileutils.c:1379 #: glib/gfileutils.c:1379
#, c-format #, c-format
msgid "Template '%s' doesn't contain XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Vorlage »%s« enthält nicht XXXXXX" msgstr "Vorlage »%s« enthält nicht XXXXXX"
#: ../glib/gfileutils.c:1854 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Die symbolische Verknüpfung »%s« konnte nicht gelesen werden: %s" msgstr "Die symbolische Verknüpfung »%s« konnte nicht gelesen werden: %s"
#: ../glib/gfileutils.c:1875 #: glib/gfileutils.c:1875
#, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Symbolische Verknüpfungen nicht unterstützt" msgstr "Symbolische Verknüpfungen nicht unterstützt"
#: ../glib/giochannel.c:1154 #: glib/giochannel.c:1154
#, c-format #, c-format
msgid "Could not open converter from '%s' to '%s': %s" msgid "Could not open converter from '%s' to '%s': %s"
msgstr "Konverter von »%s« in »%s« konnte nicht geöffnet werden: %s" msgstr "Konverter von »%s« in »%s« konnte nicht geöffnet werden: %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" msgid "Can't do a raw read in g_io_channel_read_line_string"
msgstr "Raw-read in g_io_channel_read_line_string nicht möglich" msgstr "Raw-read in g_io_channel_read_line_string nicht möglich"
#: ../glib/giochannel.c:1546 ../glib/giochannel.c:1803 #: glib/giochannel.c:1546 glib/giochannel.c:1803 glib/giochannel.c:1889
#: ../glib/giochannel.c:1889 #, c-format
msgid "Leftover unconverted data in read buffer" msgid "Leftover unconverted data in read buffer"
msgstr "Nicht konvertierte Daten befinden sich noch im Lesepuffer " msgstr "Nicht konvertierte Daten befinden sich noch im Lesepuffer "
#: ../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" msgid "Channel terminates in a partial character"
msgstr "Kanal endet mit einem Teilzeichen" msgstr "Kanal endet mit einem Teilzeichen"
#: ../glib/giochannel.c:1689 #: glib/giochannel.c:1689
#, c-format
msgid "Can't do a raw read in g_io_channel_read_to_end" msgid "Can't do a raw read in g_io_channel_read_to_end"
msgstr "Raw-read in g_io_channel_read_to_end nicht möglich" msgstr "Raw-read in g_io_channel_read_to_end nicht möglich"
#: ../glib/gmappedfile.c:116 #: glib/gmappedfile.c:116
#, c-format #, c-format
msgid "Failed to open file '%s': open() failed: %s" msgid "Failed to open file '%s': open() failed: %s"
msgstr "Datei »%s« konnte nicht geöffnet werden: open() ist fehlgeschlagen: %s" msgstr "Datei »%s« konnte nicht geöffnet werden: open() ist fehlgeschlagen: %s"
#: ../glib/gmappedfile.c:193 #: glib/gmappedfile.c:193
#, c-format #, c-format
msgid "Failed to map file '%s': mmap() failed: %s" msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Datei »%s« konnte nicht gemappt werden: mmap() ist fehlgeschlagen: %s" msgstr "Datei »%s« konnte nicht gemappt werden: mmap() ist fehlgeschlagen: %s"
#: ../glib/gmarkup.c:227 #: glib/gmarkup.c:227
#, c-format #, c-format
msgid "Error on line %d char %d: %s" msgid "Error on line %d char %d: %s"
msgstr "Fehler in Zeile %d, Zeichen %d: %s" msgstr "Fehler in Zeile %d, Zeichen %d: %s"
#: ../glib/gmarkup.c:325 #: glib/gmarkup.c:325
#, c-format #, c-format
msgid "Error on line %d: %s" msgid "Error on line %d: %s"
msgstr "Fehler in Zeile %d: %s" msgstr "Fehler in Zeile %d: %s"
#: ../glib/gmarkup.c:429 #: glib/gmarkup.c:429
msgid "" msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;" "Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "" msgstr ""
"Leere Entität »&;« gefunden; gültige Entitäten sind &amp; &quot; &lt; &gt; " "Leere Entität »&;« gefunden; gültige Entitäten sind &amp; &quot; &lt; &gt; "
"&apos;" "&apos;"
#: ../glib/gmarkup.c:439 #: glib/gmarkup.c:439
#, c-format #, c-format
msgid "" msgid ""
"Character '%s' is not valid at the start of an entity name; the & character " "Character '%s' is not valid at the start of an entity name; the & character "
@@ -310,18 +318,18 @@ msgstr ""
"beginnt mit dem Zeichen &; wenn das Et keine Entität sein soll, es als &amp; " "beginnt mit dem Zeichen &; wenn das Et keine Entität sein soll, es als &amp; "
"umschreiben" "umschreiben"
#: ../glib/gmarkup.c:473 #: glib/gmarkup.c:473
#, c-format #, c-format
msgid "Character '%s' is not valid inside an entity name" msgid "Character '%s' is not valid inside an entity name"
msgstr "Zeichen »%s« ist in einem Entitätsnamen ungültig" msgstr "Zeichen »%s« ist in einem Entitätsnamen ungültig"
#: ../glib/gmarkup.c:510 #: glib/gmarkup.c:510
#, c-format #, c-format
msgid "Entity name '%s' is not known" msgid "Entity name '%s' is not known"
msgstr "Entitätsname »%s« ist unbekannt" msgstr "Entitätsname »%s« ist unbekannt"
# CHECK # CHECK
#: ../glib/gmarkup.c:521 #: glib/gmarkup.c:521
msgid "" msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand " "Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;" "character without intending to start an entity - escape ampersand as &amp;"
@@ -330,7 +338,7 @@ msgstr ""
"benutzt, ohne eine Entity beginnen zu wollen - umschreiben Sie das Et als " "benutzt, ohne eine Entity beginnen zu wollen - umschreiben Sie das Et als "
"&amp;" "&amp;"
#: ../glib/gmarkup.c:574 #: glib/gmarkup.c:574
#, c-format #, c-format
msgid "" msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character " "Failed to parse '%-.*s', which should have been a digit inside a character "
@@ -339,16 +347,16 @@ msgstr ""
"»%-.*s«, was eine Zahl in einer Zeichenreferenz (wie &#234;) sein sollte, " "»%-.*s«, was eine Zahl in einer Zeichenreferenz (wie &#234;) sein sollte, "
"konnte nicht analysiert werden - vielleicht ist die Zahl zu groß" "konnte nicht analysiert werden - vielleicht ist die Zahl zu groß"
#: ../glib/gmarkup.c:599 #: glib/gmarkup.c:599
#, c-format #, c-format
msgid "Character reference '%-.*s' does not encode a permitted character" msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Zeichenreferenz »%-.*s« kodiert kein zulässiges Zeichen" msgstr "Zeichenreferenz »%-.*s« kodiert kein zulässiges Zeichen"
#: ../glib/gmarkup.c:614 #: glib/gmarkup.c:614
msgid "Empty character reference; should include a digit such as &#454;" msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Leere Zeichenangabe; sollte eine Zahl wie z.B. &#454; enthalten" msgstr "Leere Zeichenangabe; sollte eine Zahl wie z.B. &#454; enthalten"
#: ../glib/gmarkup.c:624 #: glib/gmarkup.c:624
msgid "" msgid ""
"Character reference did not end with a semicolon; most likely you used an " "Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand " "ampersand character without intending to start an entity - escape ampersand "
@@ -358,23 +366,23 @@ msgstr ""
"Et-Zeichen benutzt, ohne eine Entität beginnen zu wollen - umschreiben Sie " "Et-Zeichen benutzt, ohne eine Entität beginnen zu wollen - umschreiben Sie "
"das Et als &amp;" "das Et als &amp;"
#: ../glib/gmarkup.c:710 #: glib/gmarkup.c:710
msgid "Unfinished entity reference" msgid "Unfinished entity reference"
msgstr "Unvollendete Entitätsreferenz" msgstr "Unvollendete Entitätsreferenz"
#: ../glib/gmarkup.c:716 #: glib/gmarkup.c:716
msgid "Unfinished character reference" msgid "Unfinished character reference"
msgstr "Unvollendete Zeichenreferenz" msgstr "Unvollendete Zeichenreferenz"
#: ../glib/gmarkup.c:959 ../glib/gmarkup.c:987 ../glib/gmarkup.c:1018 #: glib/gmarkup.c:959 glib/gmarkup.c:987 glib/gmarkup.c:1018
msgid "Invalid UTF-8 encoded text" msgid "Invalid UTF-8 encoded text"
msgstr "Ungültiger UTF-8-kodierter Text" msgstr "Ungültiger UTF-8-kodierter Text"
#: ../glib/gmarkup.c:1054 #: glib/gmarkup.c:1054
msgid "Document must begin with an element (e.g. <book>)" msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokument muss mit einem Element beginnen (e.g. <book>)" msgstr "Dokument muss mit einem Element beginnen (e.g. <book>)"
#: ../glib/gmarkup.c:1094 #: glib/gmarkup.c:1094
#, c-format #, c-format
msgid "" msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an " "'%s' is not a valid character following a '<' character; it may not begin an "
@@ -383,7 +391,7 @@ msgstr ""
"»%s« ist kein gültiges Zeichen nach einem »<«-Zeichen; es darf keinen " "»%s« ist kein gültiges Zeichen nach einem »<«-Zeichen; es darf keinen "
"Elementnamen beginnen" "Elementnamen beginnen"
#: ../glib/gmarkup.c:1158 #: glib/gmarkup.c:1158
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected a '>' character to end the start tag of element " "Odd character '%s', expected a '>' character to end the start tag of element "
@@ -392,14 +400,14 @@ msgstr ""
"Seltsames Zeichen »%s«, »>« erwartet um Start-Tag des Elements »%s« " "Seltsames Zeichen »%s«, »>« erwartet um Start-Tag des Elements »%s« "
"abzuschließen" "abzuschließen"
#: ../glib/gmarkup.c:1247 #: glib/gmarkup.c:1247
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "" msgstr ""
"Seltsames Zeichen »%s«, »=« erwartet nach Attributname »%s« des Elements »%s«" "Seltsames Zeichen »%s«, »=« erwartet nach Attributname »%s« des Elements »%s«"
#: ../glib/gmarkup.c:1289 #: glib/gmarkup.c:1289
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of " "Odd character '%s', expected a '>' or '/' character to end the start tag of "
@@ -410,7 +418,7 @@ msgstr ""
"»/« erwartet, um das Start-Tag des Elements »%s« abzuschließen; vielleicht " "»/« erwartet, um das Start-Tag des Elements »%s« abzuschließen; vielleicht "
"haben Sie ein ungültiges Zeichen in einem Attributnamen benutzt" "haben Sie ein ungültiges Zeichen in einem Attributnamen benutzt"
#: ../glib/gmarkup.c:1378 #: glib/gmarkup.c:1378
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when " "Odd character '%s', expected an open quote mark after the equals sign when "
@@ -420,7 +428,7 @@ msgstr ""
"Elemente »%s« wurde ein Anführungszeichen nach dem Gleichheitszeichen " "Elemente »%s« wurde ein Anführungszeichen nach dem Gleichheitszeichen "
"erwartet" "erwartet"
#: ../glib/gmarkup.c:1523 #: glib/gmarkup.c:1523
#, c-format #, c-format
msgid "" msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not " "'%s' is not a valid character following the characters '</'; '%s' may not "
@@ -429,7 +437,7 @@ msgstr ""
"»%s« ist kein gültiges Zeichen, wenn es auf die Zeichen »</« folgt; »%s« " "»%s« ist kein gültiges Zeichen, wenn es auf die Zeichen »</« folgt; »%s« "
"darf keinen Elementnamen beginnen" "darf keinen Elementnamen beginnen"
#: ../glib/gmarkup.c:1563 #: glib/gmarkup.c:1563
#, c-format #, c-format
msgid "" msgid ""
"'%s' is not a valid character following the close element name '%s'; the " "'%s' is not a valid character following the close element name '%s'; the "
@@ -438,26 +446,26 @@ msgstr ""
"»%s« ist kein gültiges Zeichen, wenn es auf den schließenden Elementnamen »%" "»%s« ist kein gültiges Zeichen, wenn es auf den schließenden Elementnamen »%"
"s« folgt; das erlaubte Zeichen ist »>«" "s« folgt; das erlaubte Zeichen ist »>«"
#: ../glib/gmarkup.c:1574 #: glib/gmarkup.c:1574
#, c-format #, c-format
msgid "Element '%s' was closed, no element is currently open" msgid "Element '%s' was closed, no element is currently open"
msgstr "Element »%s« wurde geschlossen, kein Element ist derzeit offen" msgstr "Element »%s« wurde geschlossen, kein Element ist derzeit offen"
#: ../glib/gmarkup.c:1583 #: glib/gmarkup.c:1583
#, c-format #, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'" msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "" msgstr ""
"Element »%s« wurde geschlossen, aber das derzeit offene Element ist »%s«" "Element »%s« wurde geschlossen, aber das derzeit offene Element ist »%s«"
#: ../glib/gmarkup.c:1749 #: glib/gmarkup.c:1749
msgid "Document was empty or contained only whitespace" msgid "Document was empty or contained only whitespace"
msgstr "Dokument ist leer oder enthält nur Leerraum" msgstr "Dokument ist leer oder enthält nur Leerraum"
#: ../glib/gmarkup.c:1763 #: glib/gmarkup.c:1763
msgid "Document ended unexpectedly just after an open angle bracket '<'" msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokument endete unerwartet nach einer offenen spitzen Klammer »<«" msgstr "Dokument endete unerwartet nach einer offenen spitzen Klammer »<«"
#: ../glib/gmarkup.c:1771 ../glib/gmarkup.c:1815 #: glib/gmarkup.c:1771 glib/gmarkup.c:1815
#, c-format #, c-format
msgid "" msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last " "Document ended unexpectedly with elements still open - '%s' was the last "
@@ -466,7 +474,7 @@ msgstr ""
"Dokument endete unerwartet mit noch offenen Elementen - »%s« war das letzte " "Dokument endete unerwartet mit noch offenen Elementen - »%s« war das letzte "
"offene Element" "offene Element"
#: ../glib/gmarkup.c:1779 #: glib/gmarkup.c:1779
#, c-format #, c-format
msgid "" msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending " "Document ended unexpectedly, expected to see a close angle bracket ending "
@@ -475,19 +483,19 @@ msgstr ""
"Dokument endete unerwartet, es wurde eine spitze Klammer »>«, die das Tag <%" "Dokument endete unerwartet, es wurde eine spitze Klammer »>«, die das Tag <%"
"s/> schließt, erwartet" "s/> schließt, erwartet"
#: ../glib/gmarkup.c:1785 #: glib/gmarkup.c:1785
msgid "Document ended unexpectedly inside an element name" msgid "Document ended unexpectedly inside an element name"
msgstr "Dokument endete unerwartet innerhalb eines Elementnamens" msgstr "Dokument endete unerwartet innerhalb eines Elementnamens"
#: ../glib/gmarkup.c:1790 #: glib/gmarkup.c:1790
msgid "Document ended unexpectedly inside an attribute name" msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokument endete unerwartet innerhalb eines Attributnamens" msgstr "Dokument endete unerwartet innerhalb eines Attributnamens"
#: ../glib/gmarkup.c:1795 #: glib/gmarkup.c:1795
msgid "Document ended unexpectedly inside an element-opening tag." msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokument endete unerwartet innerhalb eines Element-öffnenden Tags." msgstr "Dokument endete unerwartet innerhalb eines Element-öffnenden Tags."
#: ../glib/gmarkup.c:1801 #: glib/gmarkup.c:1801
msgid "" msgid ""
"Document ended unexpectedly after the equals sign following an attribute " "Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value" "name; no attribute value"
@@ -495,106 +503,108 @@ msgstr ""
"Dokument endete unerwartet nach dem Gleichheitszeichen, das einem " "Dokument endete unerwartet nach dem Gleichheitszeichen, das einem "
"Attributnamen folgt; kein Attributwert" "Attributnamen folgt; kein Attributwert"
#: ../glib/gmarkup.c:1808 #: glib/gmarkup.c:1808
msgid "Document ended unexpectedly while inside an attribute value" msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokument endete unerwartet innerhalb eines Attributwertes" msgstr "Dokument endete unerwartet innerhalb eines Attributwertes"
#: ../glib/gmarkup.c:1823 #: glib/gmarkup.c:1823
#, c-format #, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'" msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "" msgstr ""
"Dokument endete unerwartet innerhalb eines schließenden Tags für das Element " "Dokument endete unerwartet innerhalb eines schließenden Tags für das Element "
"»%s«" "»%s«"
#: ../glib/gmarkup.c:1829 #: glib/gmarkup.c:1829
msgid "Document ended unexpectedly inside a comment or processing instruction" msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "" msgstr ""
"Dokument endete unerwartet innerhalb eines Kommentars oder " "Dokument endete unerwartet innerhalb eines Kommentars oder "
"Verarbeitungsanweisung" "Verarbeitungsanweisung"
#: ../glib/gshell.c:70 #: glib/gshell.c:70
#, c-format
msgid "Quoted text doesn't begin with a quotation mark" msgid "Quoted text doesn't begin with a quotation mark"
msgstr "Zitierter Text beginnt nicht mit einem Anführungszeichen" msgstr "Zitierter Text beginnt nicht mit einem Anführungszeichen"
#: ../glib/gshell.c:160 #: glib/gshell.c:160
#, c-format
msgid "Unmatched quotation mark in command line or other shell-quoted text" msgid "Unmatched quotation mark in command line or other shell-quoted text"
msgstr "" msgstr ""
"Unbalanciertes Anführungszeichen in Befehlszeile oder anderem Text in " "Unbalanciertes Anführungszeichen in Befehlszeile oder anderem Text in "
"Shellquotes" "Shellquotes"
#: ../glib/gshell.c:538 #: glib/gshell.c:538
#, c-format #, c-format
msgid "Text ended just after a '\\' character. (The text was '%s')" msgid "Text ended just after a '\\' character. (The text was '%s')"
msgstr "Text endete nach einem »\\«-Zeichen. (Der Text war »%s«)" msgstr "Text endete nach einem »\\«-Zeichen. (Der Text war »%s«)"
#: ../glib/gshell.c:545 #: glib/gshell.c:545
#, c-format #, c-format
msgid "Text ended before matching quote was found for %c. (The text was '%s')" msgid "Text ended before matching quote was found for %c. (The text was '%s')"
msgstr "" msgstr ""
"Text endete, bevor ein passendes Anführungszeichen für %c gefunden wurde. " "Text endete, bevor ein passendes Anführungszeichen für %c gefunden wurde. "
"(Der Text war »%s«)" "(Der Text war »%s«)"
#: ../glib/gshell.c:557 #: glib/gshell.c:557
#, c-format
msgid "Text was empty (or contained only whitespace)" msgid "Text was empty (or contained only whitespace)"
msgstr "Text war leer (oder enthielt nur Leerraum)" msgstr "Text war leer (oder enthielt nur Leerraum)"
#: ../glib/gspawn-win32.c:273 #: glib/gspawn-win32.c:273
#, c-format
msgid "Failed to read data from child process" msgid "Failed to read data from child process"
msgstr "Daten konnten nicht vom Kindprozess gelesen werden" msgstr "Daten konnten nicht vom Kindprozess gelesen werden"
#: ../glib/gspawn-win32.c:288 ../glib/gspawn.c:1361 #: glib/gspawn-win32.c:288 glib/gspawn.c:1361
#, c-format #, c-format
msgid "Failed to create pipe for communicating with child process (%s)" msgid "Failed to create pipe for communicating with child process (%s)"
msgstr "" msgstr ""
"Weiterleitung für Kommunikation mit Kindprozess (%s) konnte nicht erzeugt " "Weiterleitung für Kommunikation mit Kindprozess (%s) konnte nicht erzeugt "
"werden" "werden"
#: ../glib/gspawn-win32.c:326 ../glib/gspawn.c:1025 #: glib/gspawn-win32.c:326 glib/gspawn.c:1025
#, c-format #, c-format
msgid "Failed to read from child pipe (%s)" msgid "Failed to read from child pipe (%s)"
msgstr "Lesen aus Weiterleitung zum Kind (%s) fehlgeschlagen" msgstr "Lesen aus Weiterleitung zum Kind (%s) fehlgeschlagen"
#: ../glib/gspawn-win32.c:352 ../glib/gspawn.c:1230 #: glib/gspawn-win32.c:352 glib/gspawn.c:1230
#, c-format #, c-format
msgid "Failed to change to directory '%s' (%s)" msgid "Failed to change to directory '%s' (%s)"
msgstr "In Verzeichnis »%s« (%s) konnte nicht gewechselt werden" msgstr "In Verzeichnis »%s« (%s) konnte nicht gewechselt werden"
#: ../glib/gspawn-win32.c:358 ../glib/gspawn-win32.c:578 #: glib/gspawn-win32.c:358 glib/gspawn-win32.c:578
#, c-format #, c-format
msgid "Failed to execute child process (%s)" msgid "Failed to execute child process (%s)"
msgstr "Kindprozess konnte nicht ausgeführt werden (%s)" msgstr "Kindprozess konnte nicht ausgeführt werden (%s)"
#: ../glib/gspawn-win32.c:468 ../glib/gspawn-win32.c:524 #: glib/gspawn-win32.c:468 glib/gspawn-win32.c:524
#, c-format #, c-format
msgid "Invalid program name: %s" msgid "Invalid program name: %s"
msgstr "Ungültiger Programmname: %s" msgstr "Ungültiger Programmname: %s"
#: ../glib/gspawn-win32.c:478 ../glib/gspawn-win32.c:534 #: glib/gspawn-win32.c:478 glib/gspawn-win32.c:534 glib/gspawn-win32.c:777
#: ../glib/gspawn-win32.c:777 ../glib/gspawn-win32.c:832 #: glib/gspawn-win32.c:832 glib/gspawn-win32.c:1367
#: ../glib/gspawn-win32.c:1367
#, c-format #, c-format
msgid "Invalid string in argument vector at %d: %s" msgid "Invalid string in argument vector at %d: %s"
msgstr "Ungültige Zeichenkette im Argumentsvektor bei %d: %s" msgstr "Ungültige Zeichenkette im Argumentsvektor bei %d: %s"
#: ../glib/gspawn-win32.c:489 ../glib/gspawn-win32.c:545 #: glib/gspawn-win32.c:489 glib/gspawn-win32.c:545 glib/gspawn-win32.c:791
#: ../glib/gspawn-win32.c:791 ../glib/gspawn-win32.c:845 #: glib/gspawn-win32.c:845 glib/gspawn-win32.c:1400
#: ../glib/gspawn-win32.c:1400
#, c-format #, c-format
msgid "Invalid string in environment: %s" msgid "Invalid string in environment: %s"
msgstr "Ungültige Zeichenkette in der Umgebung: %s" msgstr "Ungültige Zeichenkette in der Umgebung: %s"
#: ../glib/gspawn-win32.c:773 ../glib/gspawn-win32.c:828 #: glib/gspawn-win32.c:773 glib/gspawn-win32.c:828 glib/gspawn-win32.c:1348
#: ../glib/gspawn-win32.c:1348
#, c-format #, c-format
msgid "Invalid working directory: %s" msgid "Invalid working directory: %s"
msgstr "Ungültiges Arbeitsverzeichnis: %s" msgstr "Ungültiges Arbeitsverzeichnis: %s"
#: ../glib/gspawn-win32.c:887 #: glib/gspawn-win32.c:887
#, c-format #, c-format
msgid "Failed to execute helper program (%s)" msgid "Failed to execute helper program (%s)"
msgstr "Hilfsprogramm (%s) konnte nicht ausgeführt werden" msgstr "Hilfsprogramm (%s) konnte nicht ausgeführt werden"
#: ../glib/gspawn-win32.c:1087 #: glib/gspawn-win32.c:1087
#, c-format
msgid "" msgid ""
"Unexpected error in g_io_channel_win32_poll() reading data from a child " "Unexpected error in g_io_channel_win32_poll() reading data from a child "
"process" "process"
@@ -602,142 +612,148 @@ msgstr ""
"Unerwarteter Fehler in g_io_channel_win32_poll() beim Lesen aus dem " "Unerwarteter Fehler in g_io_channel_win32_poll() beim Lesen aus dem "
"Kindprozess" "Kindprozess"
#: ../glib/gspawn.c:165 #: glib/gspawn.c:165
#, c-format #, c-format
msgid "Failed to read data from child process (%s)" msgid "Failed to read data from child process (%s)"
msgstr "Daten vom Kindprozess konnten nicht gelesen werden (%s)" msgstr "Daten vom Kindprozess konnten nicht gelesen werden (%s)"
#: ../glib/gspawn.c:297 #: glib/gspawn.c:297
#, c-format #, c-format
msgid "Unexpected error in select() reading data from a child process (%s)" msgid "Unexpected error in select() reading data from a child process (%s)"
msgstr "" msgstr ""
"Unerwarteter Fehler in select() beim Lesen von Daten eines Kindprozesses (%s)" "Unerwarteter Fehler in select() beim Lesen von Daten eines Kindprozesses (%s)"
#: ../glib/gspawn.c:380 #: glib/gspawn.c:380
#, c-format #, c-format
msgid "Unexpected error in waitpid() (%s)" msgid "Unexpected error in waitpid() (%s)"
msgstr "Unerwarteter Fehler in waitpid() (%s)" msgstr "Unerwarteter Fehler in waitpid() (%s)"
#: ../glib/gspawn.c:1090 #: glib/gspawn.c:1090
#, c-format #, c-format
msgid "Failed to fork (%s)" msgid "Failed to fork (%s)"
msgstr "Abspalten fehlgeschlagen (%s)" msgstr "Abspalten fehlgeschlagen (%s)"
#: ../glib/gspawn.c:1240 #: glib/gspawn.c:1240
#, c-format #, c-format
msgid "Failed to execute child process \"%s\" (%s)" msgid "Failed to execute child process \"%s\" (%s)"
msgstr "Kindprozess »%s« konnte nicht ausgeführt werden (%s)" msgstr "Kindprozess »%s« konnte nicht ausgeführt werden (%s)"
#: ../glib/gspawn.c:1250 #: glib/gspawn.c:1250
#, c-format #, c-format
msgid "Failed to redirect output or input of child process (%s)" msgid "Failed to redirect output or input of child process (%s)"
msgstr "" msgstr ""
"Umleiten der Ausgabe oder Eingabe des Kindprozesses (%s) fehlgeschlagen" "Umleiten der Ausgabe oder Eingabe des Kindprozesses (%s) fehlgeschlagen"
#: ../glib/gspawn.c:1259 #: glib/gspawn.c:1259
#, c-format #, c-format
msgid "Failed to fork child process (%s)" msgid "Failed to fork child process (%s)"
msgstr "Abspalten des Kindprozesses fehlgeschlagen (%s)" msgstr "Abspalten des Kindprozesses fehlgeschlagen (%s)"
#: ../glib/gspawn.c:1267 #: glib/gspawn.c:1267
#, c-format #, c-format
msgid "Unknown error executing child process \"%s\"" msgid "Unknown error executing child process \"%s\""
msgstr "Unbekannter Fehler beim Ausführen des Kindprozesses »%s«" msgstr "Unbekannter Fehler beim Ausführen des Kindprozesses »%s«"
#: ../glib/gspawn.c:1289 #: glib/gspawn.c:1289
#, c-format #, c-format
msgid "Failed to read enough data from child pid pipe (%s)" msgid "Failed to read enough data from child pid pipe (%s)"
msgstr "" msgstr ""
"Es konnten nicht genug Daten von Kind-Programmkennungsweiterleitung (%s) " "Es konnten nicht genug Daten von Kind-Programmkennungsweiterleitung (%s) "
"gelesen werden" "gelesen werden"
#: ../glib/gutf8.c:1017 #: glib/gutf8.c:1017
#, c-format
msgid "Character out of range for UTF-8" msgid "Character out of range for UTF-8"
msgstr "Zeichen außerhalb des Bereiches für UTF-8" msgstr "Zeichen außerhalb des Bereiches für UTF-8"
#: ../glib/gutf8.c:1111 ../glib/gutf8.c:1120 ../glib/gutf8.c:1252 #: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 glib/gutf8.c:1261
#: ../glib/gutf8.c:1261 ../glib/gutf8.c:1402 ../glib/gutf8.c:1498 #: glib/gutf8.c:1402 glib/gutf8.c:1498
#, c-format
msgid "Invalid sequence in conversion input" msgid "Invalid sequence in conversion input"
msgstr "Ungültige Folge in Umwandlungseingabe" msgstr "Ungültige Folge in Umwandlungseingabe"
#: ../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" msgid "Character out of range for UTF-16"
msgstr "Zeichen außerhalb des Bereiches für UTF-16" msgstr "Zeichen außerhalb des Bereiches für UTF-16"
#: ../glib/goption.c:495 #: glib/goption.c:495
msgid "Usage:" msgid "Usage:"
msgstr "Aufruf:" msgstr "Aufruf:"
#: ../glib/goption.c:495 #: glib/goption.c:495
msgid "[OPTION...]" msgid "[OPTION...]"
msgstr "[OPTION...]" msgstr "[OPTION...]"
#: ../glib/goption.c:586 #: glib/goption.c:586
msgid "Help Options:" msgid "Help Options:"
msgstr "Hilfeoptionen" msgstr "Hilfeoptionen"
#: ../glib/goption.c:587 #: glib/goption.c:587
msgid "Show help options" msgid "Show help options"
msgstr "Hilfeoptionen anzeigen" msgstr "Hilfeoptionen anzeigen"
#: ../glib/goption.c:592 #: glib/goption.c:592
msgid "Show all help options" msgid "Show all help options"
msgstr "Alle Hilfeoptionen anzeigen" msgstr "Alle Hilfeoptionen anzeigen"
#: ../glib/goption.c:642 #: glib/goption.c:642
msgid "Application Options:" msgid "Application Options:"
msgstr "Anwendungsoptionen" msgstr "Anwendungsoptionen"
#: ../glib/goption.c:686 ../glib/goption.c:756 #: glib/goption.c:686 glib/goption.c:756
#, c-format #, c-format
msgid "Cannot parse integer value '%s' for %s" msgid "Cannot parse integer value '%s' for %s"
msgstr "»%s« konnte nicht als ganzzahliger Wert für %s interpretiert werden." msgstr "»%s« konnte nicht als ganzzahliger Wert für %s interpretiert werden."
#: ../glib/goption.c:696 ../glib/goption.c:764 #: glib/goption.c:696 glib/goption.c:764
#, c-format #, c-format
msgid "Integer value '%s' for %s out of range" msgid "Integer value '%s' for %s out of range"
msgstr "Ganzzahliger Wert »%s« für %s ist außerhalb des Bereiches." msgstr "Ganzzahliger Wert »%s« für %s ist außerhalb des Bereiches."
#: ../glib/goption.c:721 #: glib/goption.c:721
#, c-format #, c-format
msgid "Cannot parse double value '%s' for %s" msgid "Cannot parse double value '%s' for %s"
msgstr "»%s« konnte nicht als »double«-Wert für %s interpretiert werden." msgstr "»%s« konnte nicht als »double«-Wert für %s interpretiert werden."
#: ../glib/goption.c:729 #: glib/goption.c:729
#, c-format #, c-format
msgid "Double value '%s' for %s out of range" msgid "Double value '%s' for %s out of range"
msgstr "»double«-Wert »%s« für %s ist außerhalb des Bereiches." msgstr "»double«-Wert »%s« für %s ist außerhalb des Bereiches."
#: ../glib/goption.c:1066 #: glib/goption.c:1066
#, c-format #, c-format
msgid "Error parsing option %s" msgid "Error parsing option %s"
msgstr "Fehler beim Analysieren der Option: %s" msgstr "Fehler beim Analysieren der Option: %s"
#: ../glib/goption.c:1097 ../glib/goption.c:1208 #: glib/goption.c:1097 glib/goption.c:1208
#, c-format #, c-format
msgid "Missing argument for %s" msgid "Missing argument for %s"
msgstr "Für %s wird ein Argument benötigt" msgstr "Für %s wird ein Argument benötigt"
#: ../glib/goption.c:1597 #: glib/goption.c:1597
#, c-format #, c-format
msgid "Unknown option %s" msgid "Unknown option %s"
msgstr "Unbekannte Option %s" msgstr "Unbekannte Option %s"
#: ../glib/gkeyfile.c:337 #: glib/gkeyfile.c:337
#, c-format
msgid "Valid key file could not be found in data dirs" msgid "Valid key file could not be found in data dirs"
msgstr "" msgstr ""
"Es wurde keine gültige Schlüsselwertedatei in den Datenverzeichnissen " "Es wurde keine gültige Schlüsselwertedatei in den Datenverzeichnissen "
"gefunden" "gefunden"
#: ../glib/gkeyfile.c:372 #: glib/gkeyfile.c:372
#, c-format
msgid "Not a regular file" msgid "Not a regular file"
msgstr "Keine reguläre Datei" msgstr "Keine reguläre Datei"
#: ../glib/gkeyfile.c:380 #: glib/gkeyfile.c:380
#, c-format
msgid "File is empty" msgid "File is empty"
msgstr "Datei ist leer" msgstr "Datei ist leer"
#: ../glib/gkeyfile.c:695 #: glib/gkeyfile.c:695
#, c-format #, c-format
msgid "" msgid ""
"Key file contains line '%s' which is not a key-value pair, group, or comment" "Key file contains line '%s' which is not a key-value pair, group, or comment"
@@ -745,42 +761,43 @@ msgstr ""
"Die Schlüsselwertedatei enthält die Zeile »%s«, welche kein zulässiges " "Die Schlüsselwertedatei enthält die Zeile »%s«, welche kein zulässiges "
"Schlüssel-Wert-Paar, keine Gruppe und kein Kommentar ist." "Schlüssel-Wert-Paar, keine Gruppe und kein Kommentar ist."
#: ../glib/gkeyfile.c:763 #: glib/gkeyfile.c:763
#, c-format
msgid "Key file does not start with a group" msgid "Key file does not start with a group"
msgstr "Die Schlüsselwertedatei beginnt nicht mit einer Gruppe" msgstr "Die Schlüsselwertedatei beginnt nicht mit einer Gruppe"
#: ../glib/gkeyfile.c:806 #: glib/gkeyfile.c:806
#, c-format #, c-format
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Die Schlüsselwertedatei enthält die nicht unterstützte Kodierung »%s«" msgstr "Die Schlüsselwertedatei enthält die nicht unterstützte Kodierung »%s«"
#: ../glib/gkeyfile.c:1014 ../glib/gkeyfile.c:1173 ../glib/gkeyfile.c:2386 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: ../glib/gkeyfile.c:2451 ../glib/gkeyfile.c:2570 ../glib/gkeyfile.c:2705 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: ../glib/gkeyfile.c:2858 ../glib/gkeyfile.c:3034 ../glib/gkeyfile.c:3091 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Die Schlüsselwertedatei enthält nicht die Gruppe »%s«" msgstr "Die Schlüsselwertedatei enthält nicht die Gruppe »%s«"
#: ../glib/gkeyfile.c:1185 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Die Schlüsselwertedatei enthält nicht den Schlüssel »%s«" msgstr "Die Schlüsselwertedatei enthält nicht den Schlüssel »%s«"
#: ../glib/gkeyfile.c:1286 ../glib/gkeyfile.c:1395 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
"Die Schlüsselwertedatei enthält den Schlüssel »%s« mit dem Wert »%s«, der " "Die Schlüsselwertedatei enthält den Schlüssel »%s« mit dem Wert »%s«, der "
"nicht in UTF-8 kodiert ist" "nicht in UTF-8 kodiert ist"
#: ../glib/gkeyfile.c:1304 ../glib/gkeyfile.c:1413 ../glib/gkeyfile.c:1785 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Die Schlüsselwertedatei enthält den Schlüssel »%s« mit einem Wert der nicht " "Die Schlüsselwertedatei enthält den Schlüssel »%s« mit einem Wert der nicht "
"interpretiert werden konnte." "interpretiert werden konnte."
#: ../glib/gkeyfile.c:2001 ../glib/gkeyfile.c:2214 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -789,37 +806,38 @@ msgstr ""
"Die Schlüsselwertedatei enthält den Schlüssel »%s« in der Gruppe »%s« mit " "Die Schlüsselwertedatei enthält den Schlüssel »%s« in der Gruppe »%s« mit "
"einem Wert der nicht interpretiert werden konnte." "einem Wert der nicht interpretiert werden konnte."
#: ../glib/gkeyfile.c:2401 ../glib/gkeyfile.c:2585 ../glib/gkeyfile.c:3102 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Die Schlüsselwertedatei hat keinen Schlüssel »%s« in der Gruppe »%s«" msgstr "Die Schlüsselwertedatei hat keinen Schlüssel »%s« in der Gruppe »%s«"
#: ../glib/gkeyfile.c:3275 #: glib/gkeyfile.c:3275
#, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Die Schlüsselwertedatei enthält ein Escape-Zeichen am Zeilenende" msgstr "Die Schlüsselwertedatei enthält ein Escape-Zeichen am Zeilenende"
# CHECK # CHECK
#: ../glib/gkeyfile.c:3297 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Die Schlüsselwertedatei enthält das ungültige Escape-Zeichen »%s«" msgstr "Die Schlüsselwertedatei enthält das ungültige Escape-Zeichen »%s«"
#: ../glib/gkeyfile.c:3438 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Der Wert »%s« konnte nicht als Zahl interpretiert werden." msgstr "Der Wert »%s« konnte nicht als Zahl interpretiert werden."
#: ../glib/gkeyfile.c:3448 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Ganzzahliger Wert »%s« ist außerhalb des Wertebereiches." msgstr "Ganzzahliger Wert »%s« ist außerhalb des Wertebereiches."
#: ../glib/gkeyfile.c:3476 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Der Wert »%s« konnte nicht als Gleitkommazahl interpretiert werden." msgstr "Der Wert »%s« konnte nicht als Gleitkommazahl interpretiert werden."
#: ../glib/gkeyfile.c:3496 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "" msgstr ""

View File

@@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: el\n" "Project-Id-Version: el\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-02-20 12:47+0200\n" "PO-Revision-Date: 2006-02-20 12:47+0200\n"
"Last-Translator: Kostas Papadimas <pkst@gnome.org>\n" "Last-Translator: Kostas Papadimas <pkst@gnome.org>\n"
"Language-Team: Greek <team@gnome.gr>\n" "Language-Team: Greek <team@gnome.gr>\n"
@@ -58,35 +58,35 @@ msgstr "Δεν μπορεί να βρεθεί έγκυρο key file στους
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -211,7 +211,7 @@ msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Αδυναμία μετονομασίας αρχείου%s' σε '%s': g_rename() failed: %s" msgstr "Αδυναμία μετονομασίας αρχείου%s' σε '%s': g_rename() failed: %s"
# gconf/gconf-internals.c:2416 # gconf/gconf-internals.c:2416
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Αποτυχία δημιουργίας αρχείου '%s': %s" msgstr "Αποτυχία δημιουργίας αρχείου '%s': %s"
@@ -241,23 +241,23 @@ msgstr ""
"Δεν είναι δυνατή η απομάκρυνση του υπάρχοντος αρχείου '%s': g_unlink() " "Δεν είναι δυνατή η απομάκρυνση του υπάρχοντος αρχείου '%s': g_unlink() "
"απέτυχε: %s" "απέτυχε: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Το πρότυπο '%s' δεν είναι έγκυρο, θα πρέπει να περιέχει ένα '%s'" msgstr "Το πρότυπο '%s' δεν είναι έγκυρο, θα πρέπει να περιέχει ένα '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Το πρότυπο '%s' δεν τελειώνει με XXXXXX" msgstr "Το πρότυπο '%s' δεν τελειώνει με XXXXXX"
# gconf/gconf-internals.c:2416 # gconf/gconf-internals.c:2416
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Αποτυχία ανάγνωσης συμβολικού δεσμού '%s': %s" msgstr "Αποτυχία ανάγνωσης συμβολικού δεσμού '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Οι συμβολικοί δεσμοί δεν υποστηρίζονται" msgstr "Οι συμβολικοί δεσμοί δεν υποστηρίζονται"
@@ -786,29 +786,29 @@ msgstr "Το Key file δεν ξεκινάει με μια ομάδα"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Το Key file περιέχει μη υποστηριζόμενη κωδικοποίηση '%s'" msgstr "Το Key file περιέχει μη υποστηριζόμενη κωδικοποίηση '%s'"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Το Key file δεν έχει ομάδα '%s'" msgstr "Το Key file δεν έχει ομάδα '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Το Key file δεν έχει κλειδί'%s'" msgstr "Το Key file δεν έχει κλειδί'%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "Το Key file περιέχει ένα κλειδί '%s' με τιμή '%s' που δεν είναι UTF-8" msgstr "Το Key file περιέχει ένα κλειδί '%s' με τιμή '%s' που δεν είναι UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "Το Key file περιέχει key '%s' που η τιμή του δεν μπορεί να ερμηνευθεί." msgstr "Το Key file περιέχει key '%s' που η τιμή του δεν μπορεί να ερμηνευθεί."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -817,37 +817,37 @@ msgstr ""
"Το Key file περιέχει key '%s' στην ομάδα '%s' που η τιμή του δεν μπορεί να " "Το Key file περιέχει key '%s' στην ομάδα '%s' που η τιμή του δεν μπορεί να "
"ερμηνευθεί." "ερμηνευθεί."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Το Key file δεν έχει key '%s' στην ομάδα '%s'" msgstr "Το Key file δεν έχει key '%s' στην ομάδα '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Το Key file περιέχει escape character στο τέλος της γραμμής" msgstr "Το Key file περιέχει escape character στο τέλος της γραμμής"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "To Key file περιέχει χαρακτήρες μή έγκυρα escaped '%s'" msgstr "To Key file περιέχει χαρακτήρες μή έγκυρα escaped '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Η τιμή '%s' δεν μπορεί να ερμηνευθεί ως ένας αριθμός." msgstr "Η τιμή '%s' δεν μπορεί να ερμηνευθεί ως ένας αριθμός."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Integer value '%s' είναι εκτός εύρους" msgstr "Integer value '%s' είναι εκτός εύρους"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Η τιμή '%s' δεν μπορεί να ερμηνευθεί ως ένας αριθμός." msgstr "Η τιμή '%s' δεν μπορεί να ερμηνευθεί ως ένας αριθμός."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Η τιμή '%s' δεν μπορεί να ερμηνευθεί ως boolean." msgstr "Η τιμή '%s' δεν μπορεί να ερμηνευθεί ως boolean."

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2005-08-27 16:20-0400\n" "PO-Revision-Date: 2005-08-27 16:20-0400\n"
"Last-Translator: Adam Weinberger <adamw@gnome.org>\n" "Last-Translator: Adam Weinberger <adamw@gnome.org>\n"
"Language-Team: Canadian English <adamw@gnome.org>\n" "Language-Team: Canadian English <adamw@gnome.org>\n"
@@ -51,35 +51,35 @@ msgstr "Valid key file could not be found in data dirs"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -193,7 +193,7 @@ msgstr "Failed to open file '%s': fdopen() failed: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgstr "Failed to rename file '%s' to '%s': g_rename() failed: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Failed to create file '%s': %s" msgstr "Failed to create file '%s': %s"
@@ -218,22 +218,22 @@ msgstr "Failed to close file '%s': fclose() failed: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Existing file '%s' could not be removed: g_unlink() failed: %s" msgstr "Existing file '%s' could not be removed: g_unlink() failed: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Template '%s' invalid, should not contain a '%s'" msgstr "Template '%s' invalid, should not contain a '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Template '%s' does not end with XXXXXX" msgstr "Template '%s' does not end with XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Failed to read the symbolic link '%s': %s" msgstr "Failed to read the symbolic link '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Symbolic links not supported" msgstr "Symbolic links not supported"
@@ -732,29 +732,29 @@ msgstr "Key file does not start with a group"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Key file contains unsupported encoding '%s'" msgstr "Key file contains unsupported encoding '%s'"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Key file does not have group '%s'" msgstr "Key file does not have group '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Key file does not have key '%s'" msgstr "Key file does not have key '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "Key file contains key '%s' with value '%s' which is not UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "Key file contains key '%s' which has value that cannot be interpreted." msgstr "Key file contains key '%s' which has value that cannot be interpreted."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -763,37 +763,37 @@ msgstr ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Key file does not have key '%s' in group '%s'" msgstr "Key file does not have key '%s' in group '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Key file contains escape character at end of line" msgstr "Key file contains escape character at end of line"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Key file contains invalid escape sequence '%s'" msgstr "Key file contains invalid escape sequence '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Value '%s' cannot be interpreted as a number." msgstr "Value '%s' cannot be interpreted as a number."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Integer value '%s' out of range" msgstr "Integer value '%s' out of range"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Value '%s' cannot be interpreted as a number." msgstr "Value '%s' cannot be interpreted as a number."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Value '%s' cannot be interpreted as a boolean." msgstr "Value '%s' cannot be interpreted as a boolean."

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: GLIB\n" "Project-Id-Version: GLIB\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-04-21 22:24-0000\n" "PO-Revision-Date: 2006-04-21 22:24-0000\n"
"Last-Translator: David Lodge <dave@cirt.net>\n" "Last-Translator: David Lodge <dave@cirt.net>\n"
"Language-Team: \n" "Language-Team: \n"
@@ -50,35 +50,35 @@ msgstr "Valid key file could not be found in data dirs"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -192,7 +192,7 @@ msgstr "Failed to open file '%s': fdopen() failed: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgstr "Failed to rename file '%s' to '%s': g_rename() failed: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Failed to create file '%s': %s" msgstr "Failed to create file '%s': %s"
@@ -217,22 +217,22 @@ msgstr "Failed to close file '%s': fclose() failed: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Existing file '%s' could not be removed: g_unlink() failed: %s" msgstr "Existing file '%s' could not be removed: g_unlink() failed: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Template '%s' invalid, should not contain a '%s'" msgstr "Template '%s' invalid, should not contain a '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Template '%s' doesn't end with XXXXXX" msgstr "Template '%s' doesn't end with XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Failed to read the symbolic link '%s': %s" msgstr "Failed to read the symbolic link '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Symbolic links not supported" msgstr "Symbolic links not supported"
@@ -731,29 +731,29 @@ msgstr "Key file does not start with a group"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Key file contains unsupported encoding '%s'" msgstr "Key file contains unsupported encoding '%s'"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Key file does not have group '%s'" msgstr "Key file does not have group '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Key file does not have key '%s'" msgstr "Key file does not have key '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "Key file contains key '%s' with value '%s' which is not UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "Key file contains key '%s' which has value that cannot be interpreted." msgstr "Key file contains key '%s' which has value that cannot be interpreted."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -762,37 +762,37 @@ msgstr ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Key file does not have key '%s' in group '%s'" msgstr "Key file does not have key '%s' in group '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Key file contains escape character at end of line" msgstr "Key file contains escape character at end of line"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Key file contains invalid escape sequence '%s'" msgstr "Key file contains invalid escape sequence '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Value '%s' cannot be interpreted as a number." msgstr "Value '%s' cannot be interpreted as a number."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Integer value '%s' out of range" msgstr "Integer value '%s' out of range"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Value '%s' cannot be interpreted as a number." msgstr "Value '%s' cannot be interpreted as a number."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Value '%s' cannot be interpreted as a boolean." msgstr "Value '%s' cannot be interpreted as a boolean."

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.3.0\n" "Project-Id-Version: glib 2.3.0\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2003-07-01 15:10-0500\n" "PO-Revision-Date: 2003-07-01 15:10-0500\n"
"Last-Translator: Charles Voelger <cvoelger@dweasel.com>\n" "Last-Translator: Charles Voelger <cvoelger@dweasel.com>\n"
"Language-Team: Esperanto <LL@li.org>\n" "Language-Team: Esperanto <LL@li.org>\n"
@@ -51,35 +51,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -193,7 +193,7 @@ msgstr "Malsukcesis malfermi dosieron '%s': fdopen() malsukcesis: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Malsukcesis malfermi dosieron '%s': fdopen() malsukcesis: %s" msgstr "Malsukcesis malfermi dosieron '%s': fdopen() malsukcesis: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Malsukcesis krei dosieron '%s': %s" msgstr "Malsukcesis krei dosieron '%s': %s"
@@ -218,22 +218,22 @@ msgstr "Malsukcesis malfermi dosieron '%s': fdopen() malsukcesis: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Ŝablono '%s' ne estas valida, ĝi devus ne enhavi '%s'" msgstr "Ŝablono '%s' ne estas valida, ĝi devus ne enhavi '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Ŝablono '%s' ne finiĝas je XXXXXX" msgstr "Ŝablono '%s' ne finiĝas je XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, fuzzy, c-format #, fuzzy, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Malsukcesis krei dosieron '%s': %s" msgstr "Malsukcesis krei dosieron '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "" msgstr ""
@@ -729,66 +729,66 @@ msgstr ""
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, fuzzy, c-format #, fuzzy, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "La URI '%s' enhavas nevalidajn eskapajn signojn" msgstr "La URI '%s' enhavas nevalidajn eskapajn signojn"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "" msgstr ""

424
po/es.po
View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: es\n" "Project-Id-Version: es\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-19 06:19+0200\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-06-19 06:52+0200\n" "PO-Revision-Date: 2006-06-19 06:52+0200\n"
"Last-Translator: Francisco Javier F. Serrador <serrador@cvs.gnome.org>\n" "Last-Translator: Francisco Javier F. Serrador <serrador@cvs.gnome.org>\n"
"Language-Team: Spanish <traductores@es.gnome.org>\n" "Language-Team: Spanish <traductores@es.gnome.org>\n"
@@ -19,275 +19,285 @@ msgstr ""
"X-Generator: KBabel 1.9.1\n" "X-Generator: KBabel 1.9.1\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ../glib/gbookmarkfile.c:716 ../glib/gbookmarkfile.c:793 #: glib/gbookmarkfile.c:716 glib/gbookmarkfile.c:793 glib/gbookmarkfile.c:872
#: ../glib/gbookmarkfile.c:872 ../glib/gbookmarkfile.c:919 #: glib/gbookmarkfile.c:919
#, c-format #, c-format
msgid "Unexpected attribute '%s' for element '%s'" msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Atributo inesperado «%s» para el elemento «%s»" msgstr "Atributo inesperado «%s» para el elemento «%s»"
#: ../glib/gbookmarkfile.c:727 ../glib/gbookmarkfile.c:804 #: glib/gbookmarkfile.c:727 glib/gbookmarkfile.c:804 glib/gbookmarkfile.c:814
#: ../glib/gbookmarkfile.c:814 ../glib/gbookmarkfile.c:930 #: glib/gbookmarkfile.c:930
#, c-format #, c-format
msgid "Attribute '%s' of element '%s' not found" msgid "Attribute '%s' of element '%s' not found"
msgstr "El atributo «%s» del elemento «%s» no se ha encontrado" msgstr "El atributo «%s» del elemento «%s» no se ha encontrado"
#: ../glib/gbookmarkfile.c:1103 ../glib/gbookmarkfile.c:1168 #: glib/gbookmarkfile.c:1103 glib/gbookmarkfile.c:1168
#: ../glib/gbookmarkfile.c:1232 ../glib/gbookmarkfile.c:1242 #: glib/gbookmarkfile.c:1232 glib/gbookmarkfile.c:1242
#, c-format #, c-format
msgid "Unexpected tag '%s', tag '%s' expected" msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Etiqueta «%s» inesperada, se esperaba la etiqueta «%s»" msgstr "Etiqueta «%s» inesperada, se esperaba la etiqueta «%s»"
#: ../glib/gbookmarkfile.c:1128 ../glib/gbookmarkfile.c:1142 #: glib/gbookmarkfile.c:1128 glib/gbookmarkfile.c:1142
#: ../glib/gbookmarkfile.c:1210 ../glib/gbookmarkfile.c:1262 #: glib/gbookmarkfile.c:1210 glib/gbookmarkfile.c:1262
#, c-format #, c-format
msgid "Unexpected tag '%s' inside '%s'" msgid "Unexpected tag '%s' inside '%s'"
msgstr "Etiqueta «%s» inesperada dentro de «%s»" msgstr "Etiqueta «%s» inesperada dentro de «%s»"
#: ../glib/gbookmarkfile.c:1792 #: glib/gbookmarkfile.c:1792
#, c-format
msgid "No valid bookmark file was be found in data dirs" msgid "No valid bookmark file was be found in data dirs"
msgstr "" msgstr ""
"No se pudo encontrar un archivo de marcadores válido en los directorios de " "No se pudo encontrar un archivo de marcadores válido en los directorios de "
"datos" "datos"
#: ../glib/gbookmarkfile.c:1993 #: glib/gbookmarkfile.c:1993
#, c-format #, c-format
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "Ya existe un marcador para el URI «%s»" msgstr "Ya existe un marcador para el URI «%s»"
#: ../glib/gbookmarkfile.c:2039 ../glib/gbookmarkfile.c:2196 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: ../glib/gbookmarkfile.c:2281 ../glib/gbookmarkfile.c:2362 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: ../glib/gbookmarkfile.c:2447 ../glib/gbookmarkfile.c:2530 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: ../glib/gbookmarkfile.c:2608 ../glib/gbookmarkfile.c:2687 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: ../glib/gbookmarkfile.c:2729 ../glib/gbookmarkfile.c:2826 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: ../glib/gbookmarkfile.c:2949 ../glib/gbookmarkfile.c:3139 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: ../glib/gbookmarkfile.c:3215 ../glib/gbookmarkfile.c:3367 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: ../glib/gbookmarkfile.c:3432 ../glib/gbookmarkfile.c:3522 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: ../glib/gbookmarkfile.c:3649 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "No se encontró un marcador para el URI «%s»" msgstr "No se encontró un marcador para el URI «%s»"
#: ../glib/gbookmarkfile.c:2371 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Ningún tipo MIME definido en el marcador para la URI «%s»" msgstr "Ningún tipo MIME definido en el marcador para la URI «%s»"
#: ../glib/gbookmarkfile.c:2456 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "No se ha definido ningún flag privado en el marcador para el URI «%s»" msgstr "No se ha definido ningún flag privado en el marcador para el URI «%s»"
#: ../glib/gbookmarkfile.c:2835 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "No se ha establecido ningún grupo en el marcador para el URI «%s»" msgstr "No se ha establecido ningún grupo en el marcador para el URI «%s»"
#: ../glib/gbookmarkfile.c:3233 ../glib/gbookmarkfile.c:3377 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Ninguna aplicación con nombre «%s» registró un marcador para «%s»" msgstr "Ninguna aplicación con nombre «%s» registró un marcador para «%s»"
#: ../glib/gconvert.c:404 ../glib/gconvert.c:482 ../glib/giochannel.c:1150 #: glib/gconvert.c:404 glib/gconvert.c:482 glib/giochannel.c:1150
#, c-format #, c-format
msgid "Conversion from character set '%s' to '%s' is not supported" msgid "Conversion from character set '%s' to '%s' is not supported"
msgstr "La conversión desde el conjunto de caracteres «%s» a «%s» no está soportada" msgstr ""
"La conversión desde el conjunto de caracteres «%s» a «%s» no está soportada"
#: ../glib/gconvert.c:408 ../glib/gconvert.c:486 #: glib/gconvert.c:408 glib/gconvert.c:486
#, c-format #, c-format
msgid "Could not open converter from '%s' to '%s'" msgid "Could not open converter from '%s' to '%s'"
msgstr "No se pudo abrir el conversor de «%s» a «%s»" msgstr "No se pudo abrir el conversor de «%s» a «%s»"
#: ../glib/gconvert.c:602 ../glib/gconvert.c:991 ../glib/giochannel.c:1322 #: glib/gconvert.c:602 glib/gconvert.c:991 glib/giochannel.c:1322
#: ../glib/giochannel.c:1364 ../glib/giochannel.c:2206 ../glib/gutf8.c:943 #: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943
#: ../glib/gutf8.c:1392 #: glib/gutf8.c:1392
#, c-format
msgid "Invalid byte sequence in conversion input" msgid "Invalid byte sequence in conversion input"
msgstr "Hay una secuencia de bytes no válida en la entrada de conversión" msgstr "Hay una secuencia de bytes no válida en la entrada de conversión"
#: ../glib/gconvert.c:608 ../glib/gconvert.c:918 ../glib/giochannel.c:1329 #: glib/gconvert.c:608 glib/gconvert.c:918 glib/giochannel.c:1329
#: ../glib/giochannel.c:2218 #: glib/giochannel.c:2218
#, c-format #, c-format
msgid "Error during conversion: %s" msgid "Error during conversion: %s"
msgstr "Falló durante la conversión: %s" msgstr "Falló durante la conversión: %s"
#: ../glib/gconvert.c:643 ../glib/gutf8.c:939 ../glib/gutf8.c:1143 #: glib/gconvert.c:643 glib/gutf8.c:939 glib/gutf8.c:1143 glib/gutf8.c:1284
#: ../glib/gutf8.c:1284 ../glib/gutf8.c:1388 #: glib/gutf8.c:1388
#, c-format
msgid "Partial character sequence at end of input" msgid "Partial character sequence at end of input"
msgstr "Hay una secuencia parcial de caracteres en el final de la entrada" msgstr "Hay una secuencia parcial de caracteres en el final de la entrada"
#: ../glib/gconvert.c:893 #: glib/gconvert.c:893
#, c-format #, c-format
msgid "Cannot convert fallback '%s' to codeset '%s'" msgid "Cannot convert fallback '%s' to codeset '%s'"
msgstr "No se puede convertir el fallback «%s» al conjunto de códigos «%s»" msgstr "No se puede convertir el fallback «%s» al conjunto de códigos «%s»"
#: ../glib/gconvert.c:1702 #: glib/gconvert.c:1702
#, c-format #, c-format
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
msgstr "El URI «%s» no es una URI absoluta utilizando el esquema «file»" msgstr "El URI «%s» no es una URI absoluta utilizando el esquema «file»"
#: ../glib/gconvert.c:1712 #: glib/gconvert.c:1712
#, c-format #, c-format
msgid "The local file URI '%s' may not include a '#'" msgid "The local file URI '%s' may not include a '#'"
msgstr "El archivo local en la URI «%s» no debe incluir un «#»" msgstr "El archivo local en la URI «%s» no debe incluir un «#»"
#: ../glib/gconvert.c:1729 #: glib/gconvert.c:1729
#, c-format #, c-format
msgid "The URI '%s' is invalid" msgid "The URI '%s' is invalid"
msgstr "El URI «%s» es inválida" msgstr "El URI «%s» es inválida"
#: ../glib/gconvert.c:1741 #: glib/gconvert.c:1741
#, c-format #, c-format
msgid "The hostname of the URI '%s' is invalid" msgid "The hostname of the URI '%s' is invalid"
msgstr "El nombre del host de la URI «%s» es inválido" msgstr "El nombre del host de la URI «%s» es inválido"
#: ../glib/gconvert.c:1757 #: glib/gconvert.c:1757
#, c-format #, c-format
msgid "The URI '%s' contains invalidly escaped characters" msgid "The URI '%s' contains invalidly escaped characters"
msgstr "El URI «%s» contiene caracteres de escape inválidos" msgstr "El URI «%s» contiene caracteres de escape inválidos"
#: ../glib/gconvert.c:1852 #: glib/gconvert.c:1852
#, c-format #, c-format
msgid "The pathname '%s' is not an absolute path" msgid "The pathname '%s' is not an absolute path"
msgstr "El nombre de la ruta «%s» no es una ruta absoluta" msgstr "El nombre de la ruta «%s» no es una ruta absoluta"
#: ../glib/gconvert.c:1862 #: glib/gconvert.c:1862
#, c-format
msgid "Invalid hostname" msgid "Invalid hostname"
msgstr "El nombre del host es inválido" msgstr "El nombre del host es inválido"
#: ../glib/gdir.c:121 ../glib/gdir.c:141 #: glib/gdir.c:121 glib/gdir.c:141
#, c-format #, c-format
msgid "Error opening directory '%s': %s" msgid "Error opening directory '%s': %s"
msgstr "Falló al abrir el directorio «%s»: %s" msgstr "Falló al abrir el directorio «%s»: %s"
#: ../glib/gfileutils.c:572 ../glib/gfileutils.c:645 #: glib/gfileutils.c:572 glib/gfileutils.c:645
#, c-format #, c-format
msgid "Could not allocate %lu bytes to read file \"%s\"" msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "No se pueden asignar %lu bytes para leer el archivo «%s»" msgstr "No se pueden asignar %lu bytes para leer el archivo «%s»"
#: ../glib/gfileutils.c:587 #: glib/gfileutils.c:587
#, c-format #, c-format
msgid "Error reading file '%s': %s" msgid "Error reading file '%s': %s"
msgstr "Falló al leer el archivo «%s»: %s" msgstr "Falló al leer el archivo «%s»: %s"
#: ../glib/gfileutils.c:669 #: glib/gfileutils.c:669
#, c-format #, c-format
msgid "Failed to read from file '%s': %s" msgid "Failed to read from file '%s': %s"
msgstr "Falló al leer del archivo «%s»: %s" msgstr "Falló al leer del archivo «%s»: %s"
#: ../glib/gfileutils.c:720 ../glib/gfileutils.c:807 #: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format #, c-format
msgid "Failed to open file '%s': %s" msgid "Failed to open file '%s': %s"
msgstr "Falló al abrir el archivo «%s»: %s" msgstr "Falló al abrir el archivo «%s»: %s"
#: ../glib/gfileutils.c:737 ../glib/gmappedfile.c:133 #: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format #, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "" msgstr "Falló al obtener los atributos del archivo «%s»: fstat() falló: %s"
"Falló al obtener los atributos del archivo «%s»: fstat() "
"falló: %s"
#: ../glib/gfileutils.c:771 #: glib/gfileutils.c:771
#, c-format #, c-format
msgid "Failed to open file '%s': fdopen() failed: %s" msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Falló al abrir el archivo «%s»: fdopen() falló: %s" msgstr "Falló al abrir el archivo «%s»: fdopen() falló: %s"
#: ../glib/gfileutils.c:905 #: glib/gfileutils.c:905
#, c-format #, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Falló al renombrar el archivo «%s» a «%s»: g_rename() falló: %s" msgstr "Falló al renombrar el archivo «%s» a «%s»: g_rename() falló: %s"
#: ../glib/gfileutils.c:946 ../glib/gfileutils.c:1404 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Falló al crear el archivo «%s»: %s" msgstr "Falló al crear el archivo «%s»: %s"
#: ../glib/gfileutils.c:960 #: glib/gfileutils.c:960
#, c-format #, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s" msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Falló al abrir el archivo «%s» para escritura: fdopen() falló: %s" msgstr "Falló al abrir el archivo «%s» para escritura: fdopen() falló: %s"
#: ../glib/gfileutils.c:985 #: glib/gfileutils.c:985
#, c-format #, c-format
msgid "Failed to write file '%s': fwrite() failed: %s" msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Falló al escribir el archivo «%s»: fwrite() falló: %s" msgstr "Falló al escribir el archivo «%s»: fwrite() falló: %s"
#: ../glib/gfileutils.c:1004 #: glib/gfileutils.c:1004
#, c-format #, c-format
msgid "Failed to close file '%s': fclose() failed: %s" msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Falló al cerrar el archivo «%s»: fclose() falló: %s" msgstr "Falló al cerrar el archivo «%s»: fclose() falló: %s"
#: ../glib/gfileutils.c:1122 #: glib/gfileutils.c:1122
#, c-format #, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "El archivo existente «%s» no se pudo eliminar: g_unlink() falló: %s" msgstr "El archivo existente «%s» no se pudo eliminar: g_unlink() falló: %s"
#: ../glib/gfileutils.c:1366 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "La plantilla «%s» es inválida, no debería contener un «%s»" msgstr "La plantilla «%s» es inválida, no debería contener un «%s»"
#: ../glib/gfileutils.c:1379 #: glib/gfileutils.c:1379
#, c-format #, c-format
msgid "Template '%s' doesn't contain XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "La plantilla «%s» no contiene XXXXXX" msgstr "La plantilla «%s» no contiene XXXXXX"
#: ../glib/gfileutils.c:1854 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Falló al leer el enlace simbólico «%s»: %s" msgstr "Falló al leer el enlace simbólico «%s»: %s"
#: ../glib/gfileutils.c:1875 #: glib/gfileutils.c:1875
#, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Enlaces simbólicos no soportados" msgstr "Enlaces simbólicos no soportados"
#: ../glib/giochannel.c:1154 #: glib/giochannel.c:1154
#, c-format #, c-format
msgid "Could not open converter from '%s' to '%s': %s" msgid "Could not open converter from '%s' to '%s': %s"
msgstr "No se pudo abrir el conversor de «%s» a «%s»: %s" msgstr "No se pudo abrir el conversor de «%s» a «%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" msgid "Can't do a raw read in g_io_channel_read_line_string"
msgstr "No se puede hacer una lectura en bruto (raw) en g_io_channel_read_line_string" msgstr ""
"No se puede hacer una lectura en bruto (raw) en g_io_channel_read_line_string"
#: ../glib/giochannel.c:1546 ../glib/giochannel.c:1803 #: glib/giochannel.c:1546 glib/giochannel.c:1803 glib/giochannel.c:1889
#: ../glib/giochannel.c:1889 #, c-format
msgid "Leftover unconverted data in read buffer" msgid "Leftover unconverted data in read buffer"
msgstr "Se han dejado datos no convertidos en el búfer de lectura" msgstr "Se han dejado datos no convertidos en el búfer de lectura"
#: ../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" msgid "Channel terminates in a partial character"
msgstr "El canal termina en un carácter parcial" msgstr "El canal termina en un carácter parcial"
#: ../glib/giochannel.c:1689 #: glib/giochannel.c:1689
#, c-format
msgid "Can't do a raw read in g_io_channel_read_to_end" msgid "Can't do a raw read in g_io_channel_read_to_end"
msgstr "No se puede hacer una lectura en bruto (raw) en g_io_channel_read_to_end" msgstr ""
"No se puede hacer una lectura en bruto (raw) en g_io_channel_read_to_end"
#: ../glib/gmappedfile.c:116 #: glib/gmappedfile.c:116
#, c-format #, c-format
msgid "Failed to open file '%s': open() failed: %s" msgid "Failed to open file '%s': open() failed: %s"
msgstr "Falló al abrir el archivo «%s»: open() falló: %s" msgstr "Falló al abrir el archivo «%s»: open() falló: %s"
#: ../glib/gmappedfile.c:193 #: glib/gmappedfile.c:193
#, c-format #, c-format
msgid "Failed to map file '%s': mmap() failed: %s" msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Falló al mapear el archivo «%s»: mmap() falló: %s" msgstr "Falló al mapear el archivo «%s»: mmap() falló: %s"
#: ../glib/gmarkup.c:227 #: glib/gmarkup.c:227
#, c-format #, c-format
msgid "Error on line %d char %d: %s" msgid "Error on line %d char %d: %s"
msgstr "Error en la línea %d, carácter %d: %s" msgstr "Error en la línea %d, carácter %d: %s"
#: ../glib/gmarkup.c:325 #: glib/gmarkup.c:325
#, c-format #, c-format
msgid "Error on line %d: %s" msgid "Error on line %d: %s"
msgstr "Error en la línea %d: %s" msgstr "Error en la línea %d: %s"
#: ../glib/gmarkup.c:429 #: glib/gmarkup.c:429
msgid "Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;" msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "" msgstr ""
"La entidad '&;' está vacía; las entidades válidas son: &amp; &quot; &lt; " "La entidad '&;' está vacía; las entidades válidas son: &amp; &quot; &lt; "
"&gt; &apos;" "&gt; &apos;"
#: ../glib/gmarkup.c:439 #: glib/gmarkup.c:439
#, c-format #, c-format
msgid "" msgid ""
"Character '%s' is not valid at the start of an entity name; the & character " "Character '%s' is not valid at the start of an entity name; the & character "
@@ -295,20 +305,20 @@ msgid ""
"it as &amp;" "it as &amp;"
msgstr "" msgstr ""
"El carácter «%s» no es válido al inicio del nombre de una entidad; el " "El carácter «%s» no es válido al inicio del nombre de una entidad; el "
"carácter «&» inicia una entidad; si el signo et ('&') no debiera ser una entidad, " "carácter «&» inicia una entidad; si el signo et ('&') no debiera ser una "
"escápela como &amp;" "entidad, escápela como &amp;"
#: ../glib/gmarkup.c:473 #: glib/gmarkup.c:473
#, c-format #, c-format
msgid "Character '%s' is not valid inside an entity name" msgid "Character '%s' is not valid inside an entity name"
msgstr "El carácter «%s» no es válido dentro del nombre de una entidad" msgstr "El carácter «%s» no es válido dentro del nombre de una entidad"
#: ../glib/gmarkup.c:510 #: glib/gmarkup.c:510
#, c-format #, c-format
msgid "Entity name '%s' is not known" msgid "Entity name '%s' is not known"
msgstr "El nombre de la entidad «%s» es desconocido" msgstr "El nombre de la entidad «%s» es desconocido"
#: ../glib/gmarkup.c:521 #: glib/gmarkup.c:521
msgid "" msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand " "Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;" "character without intending to start an entity - escape ampersand as &amp;"
@@ -317,28 +327,28 @@ msgstr ""
"\"&\" sin la intención de indicar una entidad, escape el signo \"&\" como " "\"&\" sin la intención de indicar una entidad, escape el signo \"&\" como "
"&amp;" "&amp;"
#: ../glib/gmarkup.c:574 #: glib/gmarkup.c:574
#, c-format #, c-format
msgid "" msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character " "Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (&#234; for example) - perhaps the digit is too large" "reference (&#234; for example) - perhaps the digit is too large"
msgstr "" msgstr ""
"Falló al analizar «%-.*s», el cual debería tener un dígito " "Falló al analizar «%-.*s», el cual debería tener un dígito dentro de un "
"dentro de un carácter de referencia( por ejemplo &#234;) - tal vez el dígito " "carácter de referencia( por ejemplo &#234;) - tal vez el dígito es demasiado "
"es demasiado grande" "grande"
#: ../glib/gmarkup.c:599 #: glib/gmarkup.c:599
#, c-format #, c-format
msgid "Character reference '%-.*s' does not encode a permitted character" msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "El carácter de referencia «%-.*s» no codifica un carácter permitido" msgstr "El carácter de referencia «%-.*s» no codifica un carácter permitido"
#: ../glib/gmarkup.c:614 #: glib/gmarkup.c:614
msgid "Empty character reference; should include a digit such as &#454;" msgid "Empty character reference; should include a digit such as &#454;"
msgstr "" msgstr ""
"El carácter de referencia está vacío; debería incluir un dígito tal como " "El carácter de referencia está vacío; debería incluir un dígito tal como "
"&#454;" "&#454;"
#: ../glib/gmarkup.c:624 #: glib/gmarkup.c:624
msgid "" msgid ""
"Character reference did not end with a semicolon; most likely you used an " "Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand " "ampersand character without intending to start an entity - escape ampersand "
@@ -348,23 +358,23 @@ msgstr ""
"un carácter «&» sin pretender iniciar una entidad, escape el carácter \"&\" " "un carácter «&» sin pretender iniciar una entidad, escape el carácter \"&\" "
"como &amp;" "como &amp;"
#: ../glib/gmarkup.c:710 #: glib/gmarkup.c:710
msgid "Unfinished entity reference" msgid "Unfinished entity reference"
msgstr "Referencia de entidad sin terminar" msgstr "Referencia de entidad sin terminar"
#: ../glib/gmarkup.c:716 #: glib/gmarkup.c:716
msgid "Unfinished character reference" msgid "Unfinished character reference"
msgstr "Referencia de carácter sin terminar" msgstr "Referencia de carácter sin terminar"
#: ../glib/gmarkup.c:959 ../glib/gmarkup.c:987 ../glib/gmarkup.c:1018 #: glib/gmarkup.c:959 glib/gmarkup.c:987 glib/gmarkup.c:1018
msgid "Invalid UTF-8 encoded text" msgid "Invalid UTF-8 encoded text"
msgstr "Texto codificado como UTF-8 inválido" msgstr "Texto codificado como UTF-8 inválido"
#: ../glib/gmarkup.c:1054 #: glib/gmarkup.c:1054
msgid "Document must begin with an element (e.g. <book>)" msgid "Document must begin with an element (e.g. <book>)"
msgstr "El documento debe comenzar con un elemento (por ejemplo: <book>)" msgstr "El documento debe comenzar con un elemento (por ejemplo: <book>)"
#: ../glib/gmarkup.c:1094 #: glib/gmarkup.c:1094
#, c-format #, c-format
msgid "" msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an " "'%s' is not a valid character following a '<' character; it may not begin an "
@@ -373,7 +383,7 @@ msgstr ""
"«%s» no es un carácter válido a continuación del carácter '<'; no debe " "«%s» no es un carácter válido a continuación del carácter '<'; no debe "
"iniciar un nombre de elemento" "iniciar un nombre de elemento"
#: ../glib/gmarkup.c:1158 #: glib/gmarkup.c:1158
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected a '>' character to end the start tag of element " "Odd character '%s', expected a '>' character to end the start tag of element "
@@ -382,14 +392,15 @@ msgstr ""
"Carácter «%s» impropio, se esperaba un carácter '>' para terminar la " "Carácter «%s» impropio, se esperaba un carácter '>' para terminar la "
"etiqueta de inicio del elemento «%s»" "etiqueta de inicio del elemento «%s»"
#: ../glib/gmarkup.c:1247 #: glib/gmarkup.c:1247
#, c-format #, 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 "" msgstr ""
"Carácter «%s» impropio, se esperaba el carácter '=' después del nombre de " "Carácter «%s» impropio, se esperaba el carácter '=' después del nombre de "
"atributo «%s» del elemento «%s»" "atributo «%s» del elemento «%s»"
#: ../glib/gmarkup.c:1289 #: glib/gmarkup.c:1289
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of " "Odd character '%s', expected a '>' or '/' character to end the start tag of "
@@ -400,7 +411,7 @@ msgstr ""
"etiqueta de inicio del elemento «%s» u opcionalmente un atributo; tal vez " "etiqueta de inicio del elemento «%s» u opcionalmente un atributo; tal vez "
"utilizó un carácter que no es válido en un nombre de atributo" "utilizó un carácter que no es válido en un nombre de atributo"
#: ../glib/gmarkup.c:1378 #: glib/gmarkup.c:1378
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when " "Odd character '%s', expected an open quote mark after the equals sign when "
@@ -409,7 +420,7 @@ msgstr ""
"Carácter «%s» impropio, se esperaba una marca de apertura de comillas " "Carácter «%s» impropio, se esperaba una marca de apertura de comillas "
"después del signo igual al darle valor al atributo «%s» del elemento «%s»" "después del signo igual al darle valor al atributo «%s» del elemento «%s»"
#: ../glib/gmarkup.c:1523 #: glib/gmarkup.c:1523
#, c-format #, c-format
msgid "" msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not " "'%s' is not a valid character following the characters '</'; '%s' may not "
@@ -418,7 +429,7 @@ msgstr ""
"«%s» no es un carácter válido a continuación de los caracteres '</'; «%s» " "«%s» no es un carácter válido a continuación de los caracteres '</'; «%s» "
"no debe iniciar un nombre de elemento" "no debe iniciar un nombre de elemento"
#: ../glib/gmarkup.c:1563 #: glib/gmarkup.c:1563
#, c-format #, c-format
msgid "" msgid ""
"'%s' is not a valid character following the close element name '%s'; the " "'%s' is not a valid character following the close element name '%s'; the "
@@ -427,27 +438,27 @@ msgstr ""
"«%s» no es un carácter válido a continuación del nombre del elemento de " "«%s» no es un carácter válido a continuación del nombre del elemento de "
"cierre «%s»; el carácter permitido es '>'" "cierre «%s»; el carácter permitido es '>'"
#: ../glib/gmarkup.c:1574 #: glib/gmarkup.c:1574
#, c-format #, c-format
msgid "Element '%s' was closed, no element is currently open" msgid "Element '%s' was closed, no element is currently open"
msgstr "El elemento «%s» fue cerrado, no existe ningún elemento abierto" msgstr "El elemento «%s» fue cerrado, no existe ningún elemento abierto"
#: ../glib/gmarkup.c:1583 #: glib/gmarkup.c:1583
#, c-format #, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'" msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "" msgstr ""
"El elemento «%s» fue cerrado, pero el elemento que está abierto actualmente " "El elemento «%s» fue cerrado, pero el elemento que está abierto actualmente "
"es «%s»" "es «%s»"
#: ../glib/gmarkup.c:1749 #: glib/gmarkup.c:1749
msgid "Document was empty or contained only whitespace" msgid "Document was empty or contained only whitespace"
msgstr "El documento estaba vacío o sólo contenía espacios en blanco" msgstr "El documento estaba vacío o sólo contenía espacios en blanco"
#: ../glib/gmarkup.c:1763 #: glib/gmarkup.c:1763
msgid "Document ended unexpectedly just after an open angle bracket '<'" msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "El documento termina inesperadamente justo después de un '<'" msgstr "El documento termina inesperadamente justo después de un '<'"
#: ../glib/gmarkup.c:1771 ../glib/gmarkup.c:1815 #: glib/gmarkup.c:1771 glib/gmarkup.c:1815
#, c-format #, c-format
msgid "" msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last " "Document ended unexpectedly with elements still open - '%s' was the last "
@@ -456,7 +467,7 @@ msgstr ""
"El documento termina inesperadamente con elementos todavía abiertos - «%s» " "El documento termina inesperadamente con elementos todavía abiertos - «%s» "
"fue el último elemento abierto" "fue el último elemento abierto"
#: ../glib/gmarkup.c:1779 #: glib/gmarkup.c:1779
#, c-format #, c-format
msgid "" msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending " "Document ended unexpectedly, expected to see a close angle bracket ending "
@@ -465,21 +476,21 @@ msgstr ""
"El documento termina inesperadamente, se esperaba un carácter '>' " "El documento termina inesperadamente, se esperaba un carácter '>' "
"finalizando la etiqueta <%s/>" "finalizando la etiqueta <%s/>"
#: ../glib/gmarkup.c:1785 #: glib/gmarkup.c:1785
msgid "Document ended unexpectedly inside an element name" msgid "Document ended unexpectedly inside an element name"
msgstr "El documento termina inesperadamente dentro de un nombre de elemento" msgstr "El documento termina inesperadamente dentro de un nombre de elemento"
#: ../glib/gmarkup.c:1790 #: glib/gmarkup.c:1790
msgid "Document ended unexpectedly inside an attribute name" msgid "Document ended unexpectedly inside an attribute name"
msgstr "El documento termina inesperadamente dentro de un nombre de atributo" msgstr "El documento termina inesperadamente dentro de un nombre de atributo"
#: ../glib/gmarkup.c:1795 #: glib/gmarkup.c:1795
msgid "Document ended unexpectedly inside an element-opening tag." msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "" msgstr ""
"El documento termina inesperadamente dentro de una etiqueta de apertura de " "El documento termina inesperadamente dentro de una etiqueta de apertura de "
"elemento." "elemento."
#: ../glib/gmarkup.c:1801 #: glib/gmarkup.c:1801
msgid "" msgid ""
"Document ended unexpectedly after the equals sign following an attribute " "Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value" "name; no attribute value"
@@ -487,322 +498,337 @@ msgstr ""
"El documento termina inesperadamente después de los signos igual que siguen " "El documento termina inesperadamente después de los signos igual que siguen "
"al nombre de atributo; sin valor de atributo" "al nombre de atributo; sin valor de atributo"
#: ../glib/gmarkup.c:1808 #: glib/gmarkup.c:1808
msgid "Document ended unexpectedly while inside an attribute value" msgid "Document ended unexpectedly while inside an attribute value"
msgstr "El documento termina inesperadamente dentro del valor de un atributo" msgstr "El documento termina inesperadamente dentro del valor de un atributo"
#: ../glib/gmarkup.c:1823 #: glib/gmarkup.c:1823
#, c-format #, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'" msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "" msgstr ""
"El documento termina inesperadamente dentro de la etiqueta de cierre del " "El documento termina inesperadamente dentro de la etiqueta de cierre del "
"elemento «%s»" "elemento «%s»"
#: ../glib/gmarkup.c:1829 #: glib/gmarkup.c:1829
msgid "Document ended unexpectedly inside a comment or processing instruction" msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "El documento termina inesperadamente dentro de un comentario o instrucción de proceso" msgstr ""
"El documento termina inesperadamente dentro de un comentario o instrucción "
"de proceso"
#: ../glib/gshell.c:70 #: glib/gshell.c:70
#, c-format
msgid "Quoted text doesn't begin with a quotation mark" msgid "Quoted text doesn't begin with a quotation mark"
msgstr "El texto entrecomillado no empieza por un signo de comilla" msgstr "El texto entrecomillado no empieza por un signo de comilla"
#: ../glib/gshell.c:160 #: glib/gshell.c:160
#, c-format
msgid "Unmatched quotation mark in command line or other shell-quoted text" msgid "Unmatched quotation mark in command line or other shell-quoted text"
msgstr "" msgstr ""
"Falta una comilla en la línea de comandos o en otro texto con comillas tipo " "Falta una comilla en la línea de comandos o en otro texto con comillas tipo "
"shell" "shell"
#: ../glib/gshell.c:538 #: glib/gshell.c:538
#, c-format #, c-format
msgid "Text ended just after a '\\' character. (The text was '%s')" msgid "Text ended just after a '\\' character. (The text was '%s')"
msgstr "El texto termina justo después de un carácter '\\'. (El texto era «%s»)" msgstr ""
"El texto termina justo después de un carácter '\\'. (El texto era «%s»)"
#: ../glib/gshell.c:545 #: glib/gshell.c:545
#, c-format #, c-format
msgid "Text ended before matching quote was found for %c. (The text was '%s')" msgid "Text ended before matching quote was found for %c. (The text was '%s')"
msgstr "" msgstr ""
"El texto terminó antes de que se encontrase la comilla correspondiente con %" "El texto terminó antes de que se encontrase la comilla correspondiente con %"
"c. (El texto era «%s»)" "c. (El texto era «%s»)"
#: ../glib/gshell.c:557 #: glib/gshell.c:557
#, c-format
msgid "Text was empty (or contained only whitespace)" msgid "Text was empty (or contained only whitespace)"
msgstr "El texto está vacío (o sólo contiene espacios en blanco)" msgstr "El texto está vacío (o sólo contiene espacios en blanco)"
#: ../glib/gspawn-win32.c:273 #: glib/gspawn-win32.c:273
#, c-format
msgid "Failed to read data from child process" msgid "Failed to read data from child process"
msgstr "Falló al leer los datos desde un proceso hijo" msgstr "Falló al leer los datos desde un proceso hijo"
#: ../glib/gspawn-win32.c:288 ../glib/gspawn.c:1361 #: glib/gspawn-win32.c:288 glib/gspawn.c:1361
#, c-format #, c-format
msgid "Failed to create pipe for communicating with child process (%s)" msgid "Failed to create pipe for communicating with child process (%s)"
msgstr "" msgstr ""
"Falló en la creación de un conducto (pipe) para comunicarse " "Falló en la creación de un conducto (pipe) para comunicarse con el proceso "
"con el proceso hijo (%s)" "hijo (%s)"
#: ../glib/gspawn-win32.c:326 ../glib/gspawn.c:1025 #: glib/gspawn-win32.c:326 glib/gspawn.c:1025
#, c-format #, c-format
msgid "Failed to read from child pipe (%s)" msgid "Failed to read from child pipe (%s)"
msgstr "Falló al leer desde el conducto hijo (%s)" msgstr "Falló al leer desde el conducto hijo (%s)"
#: ../glib/gspawn-win32.c:352 ../glib/gspawn.c:1230 #: glib/gspawn-win32.c:352 glib/gspawn.c:1230
#, c-format #, c-format
msgid "Failed to change to directory '%s' (%s)" msgid "Failed to change to directory '%s' (%s)"
msgstr "Falló al cambiar al directorio «%s» (%s)" msgstr "Falló al cambiar al directorio «%s» (%s)"
#: ../glib/gspawn-win32.c:358 ../glib/gspawn-win32.c:578 #: glib/gspawn-win32.c:358 glib/gspawn-win32.c:578
#, c-format #, c-format
msgid "Failed to execute child process (%s)" msgid "Failed to execute child process (%s)"
msgstr "Falló al ejecutar el proceso hijo (%s)" msgstr "Falló al ejecutar el proceso hijo (%s)"
#: ../glib/gspawn-win32.c:468 ../glib/gspawn-win32.c:524 #: glib/gspawn-win32.c:468 glib/gspawn-win32.c:524
#, c-format #, c-format
msgid "Invalid program name: %s" msgid "Invalid program name: %s"
msgstr "Nombre de programa inválido: %s" msgstr "Nombre de programa inválido: %s"
#: ../glib/gspawn-win32.c:478 ../glib/gspawn-win32.c:534 #: glib/gspawn-win32.c:478 glib/gspawn-win32.c:534 glib/gspawn-win32.c:777
#: ../glib/gspawn-win32.c:777 ../glib/gspawn-win32.c:832 #: glib/gspawn-win32.c:832 glib/gspawn-win32.c:1367
#: ../glib/gspawn-win32.c:1367
#, c-format #, c-format
msgid "Invalid string in argument vector at %d: %s" msgid "Invalid string in argument vector at %d: %s"
msgstr "Cadena inválida en el vector del argumento en %d: %s" msgstr "Cadena inválida en el vector del argumento en %d: %s"
#: ../glib/gspawn-win32.c:489 ../glib/gspawn-win32.c:545 #: glib/gspawn-win32.c:489 glib/gspawn-win32.c:545 glib/gspawn-win32.c:791
#: ../glib/gspawn-win32.c:791 ../glib/gspawn-win32.c:845 #: glib/gspawn-win32.c:845 glib/gspawn-win32.c:1400
#: ../glib/gspawn-win32.c:1400
#, c-format #, c-format
msgid "Invalid string in environment: %s" msgid "Invalid string in environment: %s"
msgstr "Cadena inválida en el entorno: %s" msgstr "Cadena inválida en el entorno: %s"
#: ../glib/gspawn-win32.c:773 ../glib/gspawn-win32.c:828 #: glib/gspawn-win32.c:773 glib/gspawn-win32.c:828 glib/gspawn-win32.c:1348
#: ../glib/gspawn-win32.c:1348
#, c-format #, c-format
msgid "Invalid working directory: %s" msgid "Invalid working directory: %s"
msgstr "Directorio de trabajo inválido: %s" msgstr "Directorio de trabajo inválido: %s"
#: ../glib/gspawn-win32.c:887 #: glib/gspawn-win32.c:887
#, c-format #, c-format
msgid "Failed to execute helper program (%s)" msgid "Failed to execute helper program (%s)"
msgstr "Falló al ejecutar el programa auxiliar (%s)" msgstr "Falló al ejecutar el programa auxiliar (%s)"
#: ../glib/gspawn-win32.c:1087 #: glib/gspawn-win32.c:1087
#, c-format
msgid "" msgid ""
"Unexpected error in g_io_channel_win32_poll() reading data from a child " "Unexpected error in g_io_channel_win32_poll() reading data from a child "
"process" "process"
msgstr "" msgstr ""
"Falló inesperado en g_io_channel_win32_poll() al leer datos " "Falló inesperado en g_io_channel_win32_poll() al leer datos desde un proceso "
"desde un proceso hijo" "hijo"
#: ../glib/gspawn.c:165 #: glib/gspawn.c:165
#, c-format #, c-format
msgid "Failed to read data from child process (%s)" msgid "Failed to read data from child process (%s)"
msgstr "Falló en la lectura de datos desde el proceso hijo (%s)" msgstr "Falló en la lectura de datos desde el proceso hijo (%s)"
#: ../glib/gspawn.c:297 #: glib/gspawn.c:297
#, c-format #, c-format
msgid "Unexpected error in select() reading data from a child process (%s)" msgid "Unexpected error in select() reading data from a child process (%s)"
msgstr "" msgstr "Falló inesperado en select() leyendo datos desde el proceso hijo (%s)"
"Falló inesperado en select() leyendo datos desde el proceso "
"hijo (%s)"
#: ../glib/gspawn.c:380 #: glib/gspawn.c:380
#, c-format #, c-format
msgid "Unexpected error in waitpid() (%s)" msgid "Unexpected error in waitpid() (%s)"
msgstr "Falló inesperado en waitpid() (%s)" msgstr "Falló inesperado en waitpid() (%s)"
#: ../glib/gspawn.c:1090 #: glib/gspawn.c:1090
#, c-format #, c-format
msgid "Failed to fork (%s)" msgid "Failed to fork (%s)"
msgstr "Falló al bifurcar (fork) (%s)" msgstr "Falló al bifurcar (fork) (%s)"
#: ../glib/gspawn.c:1240 #: glib/gspawn.c:1240
#, c-format #, c-format
msgid "Failed to execute child process \"%s\" (%s)" msgid "Failed to execute child process \"%s\" (%s)"
msgstr "Falló al ejecutar el proceso hijo «%s» (%s)" msgstr "Falló al ejecutar el proceso hijo «%s» (%s)"
#: ../glib/gspawn.c:1250 #: glib/gspawn.c:1250
#, c-format #, c-format
msgid "Failed to redirect output or input of child process (%s)" msgid "Failed to redirect output or input of child process (%s)"
msgstr "Falló al redirigir la salida o la entrada del proceso hijo (%s)" msgstr "Falló al redirigir la salida o la entrada del proceso hijo (%s)"
#: ../glib/gspawn.c:1259 #: glib/gspawn.c:1259
#, c-format #, c-format
msgid "Failed to fork child process (%s)" msgid "Failed to fork child process (%s)"
msgstr "Falló al bifurcar el proceso hijo (%s)" msgstr "Falló al bifurcar el proceso hijo (%s)"
#: ../glib/gspawn.c:1267 #: glib/gspawn.c:1267
#, c-format #, c-format
msgid "Unknown error executing child process \"%s\"" msgid "Unknown error executing child process \"%s\""
msgstr "Falló desconocido al ejecutar el proceso hijo «%s»" msgstr "Falló desconocido al ejecutar el proceso hijo «%s»"
#: ../glib/gspawn.c:1289 #: glib/gspawn.c:1289
#, c-format #, c-format
msgid "Failed to read enough data from child pid pipe (%s)" msgid "Failed to read enough data from child pid pipe (%s)"
msgstr "Falló al leer suficientes datos desde el conducto del pid hijo (%s)" msgstr "Falló al leer suficientes datos desde el conducto del pid hijo (%s)"
#: ../glib/gutf8.c:1017 #: glib/gutf8.c:1017
#, c-format
msgid "Character out of range for UTF-8" msgid "Character out of range for UTF-8"
msgstr "El carácter se sale del rango para UTF-8" msgstr "El carácter se sale del rango para UTF-8"
#: ../glib/gutf8.c:1111 ../glib/gutf8.c:1120 ../glib/gutf8.c:1252 #: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 glib/gutf8.c:1261
#: ../glib/gutf8.c:1261 ../glib/gutf8.c:1402 ../glib/gutf8.c:1498 #: glib/gutf8.c:1402 glib/gutf8.c:1498
#, c-format
msgid "Invalid sequence in conversion input" msgid "Invalid sequence in conversion input"
msgstr "Secuencia inválida en la entrada de conversión" msgstr "Secuencia inválida en la entrada de conversión"
#: ../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" msgid "Character out of range for UTF-16"
msgstr "El carácter se sale del rango para UTF-16" msgstr "El carácter se sale del rango para UTF-16"
#: ../glib/goption.c:495 #: glib/goption.c:495
msgid "Usage:" msgid "Usage:"
msgstr "Uso:" msgstr "Uso:"
#: ../glib/goption.c:495 #: glib/goption.c:495
msgid "[OPTION...]" msgid "[OPTION...]"
msgstr "[OPCIÓN…]" msgstr "[OPCIÓN…]"
#: ../glib/goption.c:586 #: glib/goption.c:586
msgid "Help Options:" msgid "Help Options:"
msgstr "Opciones de ayuda:" msgstr "Opciones de ayuda:"
#: ../glib/goption.c:587 #: glib/goption.c:587
msgid "Show help options" msgid "Show help options"
msgstr "Mostrar opciones de ayuda" msgstr "Mostrar opciones de ayuda"
#: ../glib/goption.c:592 #: glib/goption.c:592
msgid "Show all help options" msgid "Show all help options"
msgstr "Muestra todas las opciones de ayuda" msgstr "Muestra todas las opciones de ayuda"
#: ../glib/goption.c:642 #: glib/goption.c:642
msgid "Application Options:" msgid "Application Options:"
msgstr "Opciones de la aplicación:" msgstr "Opciones de la aplicación:"
#: ../glib/goption.c:686 ../glib/goption.c:756 #: glib/goption.c:686 glib/goption.c:756
#, c-format #, c-format
msgid "Cannot parse integer value '%s' for %s" msgid "Cannot parse integer value '%s' for %s"
msgstr "No se puede analizar el valor entero «%s» para %s" msgstr "No se puede analizar el valor entero «%s» para %s"
#: ../glib/goption.c:696 ../glib/goption.c:764 #: glib/goption.c:696 glib/goption.c:764
#, c-format #, c-format
msgid "Integer value '%s' for %s out of range" msgid "Integer value '%s' for %s out of range"
msgstr "El valor entero «%s» para %s está fuera de rango" msgstr "El valor entero «%s» para %s está fuera de rango"
#: ../glib/goption.c:721 #: glib/goption.c:721
#, c-format #, c-format
msgid "Cannot parse double value '%s' for %s" msgid "Cannot parse double value '%s' for %s"
msgstr "No se puede analizar el valor doble «%s» para %s" msgstr "No se puede analizar el valor doble «%s» para %s"
#: ../glib/goption.c:729 #: glib/goption.c:729
#, c-format #, c-format
msgid "Double value '%s' for %s out of range" msgid "Double value '%s' for %s out of range"
msgstr "El valor doble «%s» para %s está fuera de rango" msgstr "El valor doble «%s» para %s está fuera de rango"
#: ../glib/goption.c:1066 #: glib/goption.c:1066
#, c-format #, c-format
msgid "Error parsing option %s" msgid "Error parsing option %s"
msgstr "Error al analizar la opción: %s" msgstr "Error al analizar la opción: %s"
#: ../glib/goption.c:1097 ../glib/goption.c:1208 #: glib/goption.c:1097 glib/goption.c:1208
#, c-format #, c-format
msgid "Missing argument for %s" msgid "Missing argument for %s"
msgstr "Falta un argumento para %s" msgstr "Falta un argumento para %s"
#: ../glib/goption.c:1597 #: glib/goption.c:1597
#, c-format #, c-format
msgid "Unknown option %s" msgid "Unknown option %s"
msgstr "Opción desconocida %s" msgstr "Opción desconocida %s"
#: ../glib/gkeyfile.c:337 #: glib/gkeyfile.c:337
#, c-format
msgid "Valid key file could not be found in data dirs" msgid "Valid key file could not be found in data dirs"
msgstr "No se pudo encontrar la clave de archivo válida en los directorios de datos" msgstr ""
"No se pudo encontrar la clave de archivo válida en los directorios de datos"
#: ../glib/gkeyfile.c:372 #: glib/gkeyfile.c:372
#, c-format
msgid "Not a regular file" msgid "Not a regular file"
msgstr "No es un archivo regular" msgstr "No es un archivo regular"
#: ../glib/gkeyfile.c:380 #: glib/gkeyfile.c:380
#, c-format
msgid "File is empty" msgid "File is empty"
msgstr "El archivo está vacío" msgstr "El archivo está vacío"
#: ../glib/gkeyfile.c:695 #: glib/gkeyfile.c:695
#, c-format #, 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 "" msgstr ""
"El archivo de claves contiene la línea «%s» que no es un par valor-clave, grupo " "El archivo de claves contiene la línea «%s» que no es un par valor-clave, "
"o comentario" "grupo o comentario"
#: ../glib/gkeyfile.c:763 #: glib/gkeyfile.c:763
#, c-format
msgid "Key file does not start with a group" msgid "Key file does not start with a group"
msgstr "El archivo de claves no empieza por un grupo" msgstr "El archivo de claves no empieza por un grupo"
#: ../glib/gkeyfile.c:806 #: glib/gkeyfile.c:806
#, c-format #, c-format
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "El archivo de clavess contiene una codificación «%s» no soportada" msgstr "El archivo de clavess contiene una codificación «%s» no soportada"
#: ../glib/gkeyfile.c:1014 ../glib/gkeyfile.c:1173 ../glib/gkeyfile.c:2386 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: ../glib/gkeyfile.c:2451 ../glib/gkeyfile.c:2570 ../glib/gkeyfile.c:2705 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: ../glib/gkeyfile.c:2858 ../glib/gkeyfile.c:3034 ../glib/gkeyfile.c:3091 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "El archivo de claves no tiene el grupo «%s»" msgstr "El archivo de claves no tiene el grupo «%s»"
#: ../glib/gkeyfile.c:1185 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "El archivo de claves no tiene la clave «%s»" msgstr "El archivo de claves no tiene la clave «%s»"
#: ../glib/gkeyfile.c:1286 ../glib/gkeyfile.c:1395 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "El archivo de claves contiene la clave «%s» con el valor «%s» el cual no es UTF-8" msgstr ""
"El archivo de claves contiene la clave «%s» con el valor «%s» el cual no es "
"UTF-8"
#: ../glib/gkeyfile.c:1304 ../glib/gkeyfile.c:1413 ../glib/gkeyfile.c:1785 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"El archivo de claves contiene la clave «%s» que tiene un valor que no puede " "El archivo de claves contiene la clave «%s» que tiene un valor que no puede "
"interpretarse." "interpretarse."
#: ../glib/gkeyfile.c:2001 ../glib/gkeyfile.c:2214 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "" msgstr ""
"El archivo de claves contiene la clave «%s» en el grupo «%s» que tiene un valor " "El archivo de claves contiene la clave «%s» en el grupo «%s» que tiene un "
"que no puede interpretarse." "valor que no puede interpretarse."
#: ../glib/gkeyfile.c:2401 ../glib/gkeyfile.c:2585 ../glib/gkeyfile.c:3102 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "El archivo de claves no tiene la clave «%s» en el grupo «%s»" msgstr "El archivo de claves no tiene la clave «%s» en el grupo «%s»"
#: ../glib/gkeyfile.c:3275 #: glib/gkeyfile.c:3275
#, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "El archivo de claves contiene un carácter de escape al final de la línea" msgstr ""
"El archivo de claves contiene un carácter de escape al final de la línea"
#: ../glib/gkeyfile.c:3297 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "El archivo de claves contiene la secuencia de escape inválida «%s»" msgstr "El archivo de claves contiene la secuencia de escape inválida «%s»"
#: ../glib/gkeyfile.c:3438 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "El valor «%s» no puede interpretarse como un número." msgstr "El valor «%s» no puede interpretarse como un número."
#: ../glib/gkeyfile.c:3448 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "El valor entero «%s» está fuera de rango" msgstr "El valor entero «%s» está fuera de rango"
#: ../glib/gkeyfile.c:3476 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "El valor «%s» no puede interpretarse como un número de coma flotante." msgstr "El valor «%s» no puede interpretarse como un número de coma flotante."
#: ../glib/gkeyfile.c:3496 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "El valor «%s» no puede interpretarse como un booleano." msgstr "El valor «%s» no puede interpretarse como un booleano."

View File

@@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Glib HEAD\n" "Project-Id-Version: Glib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-04-07 10:09+0300\n" "PO-Revision-Date: 2006-04-07 10:09+0300\n"
"Last-Translator: Ivar Smolin <okul@linux.ee>\n" "Last-Translator: Ivar Smolin <okul@linux.ee>\n"
"Language-Team: Estonian <gnome-et@linux.ee>\n" "Language-Team: Estonian <gnome-et@linux.ee>\n"
@@ -57,35 +57,35 @@ msgstr "Sobivat võtmefaili ei leitud andmekataloogidest"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -199,7 +199,7 @@ msgstr "Tõrge faili '%s' avamisel: fdopen() nurjus: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Tõrge faili '%s' ümbernimetamisel nimega '%s': g_rename() nurjus: %s" msgstr "Tõrge faili '%s' ümbernimetamisel nimega '%s': g_rename() nurjus: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Tõrge faili '%s' loomisel: %s" msgstr "Tõrge faili '%s' loomisel: %s"
@@ -224,22 +224,22 @@ msgstr "Tõrge faili '%s' sulgemisel: fclose() nurjus: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Olemasolevat faili '%s' pole võimalik eemaldada: g_unlink() nurjus: %s" msgstr "Olemasolevat faili '%s' pole võimalik eemaldada: g_unlink() nurjus: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Mall '%s' vigane, ei tohiks sisaldada '%s'" msgstr "Mall '%s' vigane, ei tohiks sisaldada '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Mall '%s' ei lõppe XXXXXX-ga" msgstr "Mall '%s' ei lõppe XXXXXX-ga"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Tõrge nimeviite '%s' lugemisel: %s" msgstr "Tõrge nimeviite '%s' lugemisel: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Nimeviited ei ole toetatud" msgstr "Nimeviited ei ole toetatud"
@@ -737,30 +737,30 @@ msgstr "Võtmefail ei alga grupiga"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Võtmefail sisaldab toetamata kodeeringut '%s'" msgstr "Võtmefail sisaldab toetamata kodeeringut '%s'"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Võtmefail ei sisalda gruppi '%s'" msgstr "Võtmefail ei sisalda gruppi '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Võtmefail ei sisalda võtit '%s'" msgstr "Võtmefail ei sisalda võtit '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
"Võtmefail sisaldab võtit '%s', mille väärtus '%s' pole UTF-8 kodeeringus" "Võtmefail sisaldab võtit '%s', mille väärtus '%s' pole UTF-8 kodeeringus"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "Võtmefail sisaldab võtit '%s', mille väärtus pole võimalik kasutada." msgstr "Võtmefail sisaldab võtit '%s', mille väärtus pole võimalik kasutada."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -769,37 +769,37 @@ msgstr ""
"Võtmefail sisaldab võtit '%s' grupis '%s' aga selle väärtust pole võimalik " "Võtmefail sisaldab võtit '%s' grupis '%s' aga selle väärtust pole võimalik "
"kasutada" "kasutada"
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Võtmefail ei sisalda võtit '%s' grupis '%s'" msgstr "Võtmefail ei sisalda võtit '%s' grupis '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Võtmefail sisaldab rea lõpus paomärki" msgstr "Võtmefail sisaldab rea lõpus paomärki"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Võtmefail sisaldab vigast paojada '%s'" msgstr "Võtmefail sisaldab vigast paojada '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Väärtust '%s' pole võimalik numbrilise väärtusena kasutada." msgstr "Väärtust '%s' pole võimalik numbrilise väärtusena kasutada."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Täisarvu väärtus '%s' on väljaspool lubatud piire" msgstr "Täisarvu väärtus '%s' on väljaspool lubatud piire"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Väärtust '%s' pole võimalik numbrilise väärtusena kasutada." msgstr "Väärtust '%s' pole võimalik numbrilise väärtusena kasutada."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Väärtust '%s' pole võimalik tõeväärtusena kasutada." msgstr "Väärtust '%s' pole võimalik tõeväärtusena kasutada."

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: eu\n" "Project-Id-Version: eu\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-05-24 20:01+0000\n" "PO-Revision-Date: 2006-05-24 20:01+0000\n"
"Last-Translator: Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>\n" "Last-Translator: Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>\n"
"Language-Team: Basque <itzulpena@euskalgnu.org>\n" "Language-Team: Basque <itzulpena@euskalgnu.org>\n"
@@ -53,35 +53,35 @@ msgstr "Ezin izan da balioko laster-marka datuen direktorioan aurkitu"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "'%s' URIaren laster-marka badago lehenedik ere" msgstr "'%s' URIaren laster-marka badago lehenedik ere"
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "Ez da '%s' URIaren laster-markarik aurkitu" msgstr "Ez da '%s' URIaren laster-markarik aurkitu"
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Ez dago '%s' URIaren laster-markan MIME-motarik definituta" msgstr "Ez dago '%s' URIaren laster-markan MIME-motarik definituta"
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "'%s' URIaren laster-markan ez dago bandera pribaturik definituta" msgstr "'%s' URIaren laster-markan ez dago bandera pribaturik definituta"
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "'%s' URIaren laster-markan ez dago talderik ezarrita" msgstr "'%s' URIaren laster-markan ez dago talderik ezarrita"
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "'%s' izeneko aplikaziorik ez du erregistratu laster-markarik '%s'(e)n" msgstr "'%s' izeneko aplikaziorik ez du erregistratu laster-markarik '%s'(e)n"
@@ -200,7 +200,7 @@ msgstr ""
"Ezin izan da '%s' fitxategia '%s' gisa berrizendatu: g_rename()k huts egin " "Ezin izan da '%s' fitxategia '%s' gisa berrizendatu: g_rename()k huts egin "
"du: %s" "du: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Ezin izan da '%s' fitxategia sortu: %s " msgstr "Ezin izan da '%s' fitxategia sortu: %s "
@@ -226,22 +226,22 @@ msgstr "Ezin izan da '%s' fitxategia itxi: fclose()-k huts egin du: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" 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" msgstr "'%s' fitxategia ezin izan da kendu: g_unlik()ek huts egin du: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "'%s' txantiloia baliogabea da, ez luke '%s' eduki behar" msgstr "'%s' txantiloia baliogabea da, ez luke '%s' eduki behar"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "'%s' txantiloia ez da honela bukatzen: XXXXXX" msgstr "'%s' txantiloia ez da honela bukatzen: XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Ezin izan da '%s' esteka sinbolikorik irakurri: %s" msgstr "Ezin izan da '%s' esteka sinbolikorik irakurri: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Esteka sinbolikoak ez dira onartzen" msgstr "Esteka sinbolikoak ez dira onartzen"
@@ -754,31 +754,31 @@ msgstr "Gako-fitxategiak ez da talde batekin hasten"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Gako-fitxategiak onartzen ez den '%s' kodeketa du" msgstr "Gako-fitxategiak onartzen ez den '%s' kodeketa du"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Gako-fitxategiak ez dauka '%s' taldea" msgstr "Gako-fitxategiak ez dauka '%s' taldea"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Gako-fitxategiak ez dauka '%s' gakoa" msgstr "Gako-fitxategiak ez dauka '%s' gakoa"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" 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" msgstr "Gako-fitxategiak '%s' gakoa dauka (%s balioduna) baina ez da UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Gako-fitxategiak '%s' gakoa dauka, baina dagokion balioa ezin da " "Gako-fitxategiak '%s' gakoa dauka, baina dagokion balioa ezin da "
"interpretatu." "interpretatu."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -787,37 +787,37 @@ msgstr ""
"Gako-fitxategiak '%s' gakoa dauka ('%s taldean), baina dagokion balioa ezin " "Gako-fitxategiak '%s' gakoa dauka ('%s taldean), baina dagokion balioa ezin "
"da interpretatu." "da interpretatu."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Gako-fitxategiak ez dauka '%s' gakoa ('%s' taldean)" msgstr "Gako-fitxategiak ez dauka '%s' gakoa ('%s' taldean)"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Gako-fitxategiak ihes-karakterea dauka lerro amaieran" msgstr "Gako-fitxategiak ihes-karakterea dauka lerro amaieran"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Gako-fitxategiak '%s' ihes-sekuentzia baliogabea dauka" msgstr "Gako-fitxategiak '%s' ihes-sekuentzia baliogabea dauka"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "'%s' balioa ezin da zenbaki gisa interpretatu" msgstr "'%s' balioa ezin da zenbaki gisa interpretatu"
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "'%s' osoko balioa barrutitik kanpo" msgstr "'%s' osoko balioa barrutitik kanpo"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "'%s' balioa ezin da zenbaki mugikor gisa interpretatu." msgstr "'%s' balioa ezin da zenbaki mugikor gisa interpretatu."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "'%s' balioa ezin da bolear gisa interpretatu" msgstr "'%s' balioa ezin da bolear gisa interpretatu"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib HEAD\n" "Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2005-03-13 11:36+0330\n" "PO-Revision-Date: 2005-03-13 11:36+0330\n"
"Last-Translator: Hamed Malek <hamed@farsiweb.info>\n" "Last-Translator: Hamed Malek <hamed@farsiweb.info>\n"
"Language-Team: Persian <farsi@lists.sharif.edu>\n" "Language-Team: Persian <farsi@lists.sharif.edu>\n"
@@ -51,35 +51,35 @@ msgstr "پرونده‌ی کلید معتبر در شاخه‌های داده ی
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -194,7 +194,7 @@ msgstr "باز کردن پرونده‌ی «%s» شکست خورد: fdopen()
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "باز کردن پرونده‌ی «%s» شکست خورد: fdopen() شکست خورد: %s" msgstr "باز کردن پرونده‌ی «%s» شکست خورد: fdopen() شکست خورد: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "ایجاد پرونده‌ی '%s' شکست خورد: %s" msgstr "ایجاد پرونده‌ی '%s' شکست خورد: %s"
@@ -219,22 +219,22 @@ msgstr "باز کردن پرونده‌ی «%s» شکست خورد: fdopen()
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "قالب «%s» نامعتبر است، نباید «%s» داشته باشد" msgstr "قالب «%s» نامعتبر است، نباید «%s» داشته باشد"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "قالب '%s' به XXXXXX ختم نمی‌شود" msgstr "قالب '%s' به XXXXXX ختم نمی‌شود"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "خواندن پیوند نمادی «%s» شکست خورد: %s" msgstr "خواندن پیوند نمادی «%s» شکست خورد: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "پیوند‌های نمادی پشتیبانی نمی‌شوند" msgstr "پیوند‌های نمادی پشتیبانی نمی‌شوند"
@@ -734,29 +734,29 @@ msgstr "پرونده‌ی کلید با یک گروه آغاز نمی‌شود"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "پرونده‌ی کلید شامل کدگذاری پشتیبانی نشده‌ی «%s» است" msgstr "پرونده‌ی کلید شامل کدگذاری پشتیبانی نشده‌ی «%s» است"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "پرونده‌ی کلید گروه «%s» را ندارد" msgstr "پرونده‌ی کلید گروه «%s» را ندارد"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "پرونده‌ی کلید، کلید «%s» را ندارد" msgstr "پرونده‌ی کلید، کلید «%s» را ندارد"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "پرونده‌ی کلید حاوی کلید «%s» با مقدار «%s» است که UTF-8 نیست" msgstr "پرونده‌ی کلید حاوی کلید «%s» با مقدار «%s» است که UTF-8 نیست"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "پرونده‌ی کلید حاوی کلید «%s» است که مقداری دارد که قابل تفسیر نیست." msgstr "پرونده‌ی کلید حاوی کلید «%s» است که مقداری دارد که قابل تفسیر نیست."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -765,37 +765,37 @@ msgstr ""
"پرونده‌ی کلید حاوی کلید «%s» در گروه «%s» است که مقداری دارد که قابل تفسیر " "پرونده‌ی کلید حاوی کلید «%s» در گروه «%s» است که مقداری دارد که قابل تفسیر "
"نیست" "نیست"
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "پرونده‌ی کلید، کلید «%s» در گروه «%s» را ندارد" msgstr "پرونده‌ی کلید، کلید «%s» در گروه «%s» را ندارد"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "پرونده کلید شامل نویسه‌ی گریز در انتهای خط است" msgstr "پرونده کلید شامل نویسه‌ی گریز در انتهای خط است"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "پرونده‌ی کلید حاوی دنباله‌ی گریز نامعتبر «%s» است" msgstr "پرونده‌ی کلید حاوی دنباله‌ی گریز نامعتبر «%s» است"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "مقدار «%s» را نمی‌توان به عدد تفسیر کرد" msgstr "مقدار «%s» را نمی‌توان به عدد تفسیر کرد"
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, fuzzy, c-format #, fuzzy, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "مقدار صحیح «%s» برای %s خارج از محدوده است" msgstr "مقدار صحیح «%s» برای %s خارج از محدوده است"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "مقدار «%s» را نمی‌توان به عدد تفسیر کرد" msgstr "مقدار «%s» را نمی‌توان به عدد تفسیر کرد"
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "مقدار «%s» را نمی‌توان به بولی تفسیر کرد" msgstr "مقدار «%s» را نمی‌توان به بولی تفسیر کرد"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-06-06 03:19+0300\n" "PO-Revision-Date: 2006-06-06 03:19+0300\n"
"Last-Translator: Ilkka Tuohela <hile@iki.fi>\n" "Last-Translator: Ilkka Tuohela <hile@iki.fi>\n"
"Language-Team: Finnish <gnome-fi-laatu@lists.sourceforge.net>\n" "Language-Team: Finnish <gnome-fi-laatu@lists.sourceforge.net>\n"
@@ -50,35 +50,35 @@ msgstr "Kelvollista kirjanmerkkitiedostoa ei löytynyt datahakemistoista"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "URI:lle \"%s\" on jo olemassa kirjanmerkki" msgstr "URI:lle \"%s\" on jo olemassa kirjanmerkki"
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "URI:lle \"%s\" ei löydy kirjanmerkkiä" msgstr "URI:lle \"%s\" ei löydy kirjanmerkkiä"
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI:n \"%s\" kirjanmerkissä ei ole määritelty MIME-tyyppiä" msgstr "URI:n \"%s\" kirjanmerkissä ei ole määritelty MIME-tyyppiä"
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI:n \"%s\" kirjanmerkissä ei ole määritelty yksityisyyslippua" msgstr "URI:n \"%s\" kirjanmerkissä ei ole määritelty yksityisyyslippua"
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "URI:n \"%s\" kirjanmerkissä ei ole asetettu ryhmiä" msgstr "URI:n \"%s\" kirjanmerkissä ei ole asetettu ryhmiä"
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -196,7 +196,7 @@ msgstr ""
"Tiedoston \"%s\" uudelleen nimeäminen nimelle \"%s\" epäonnistui: g_rename() " "Tiedoston \"%s\" uudelleen nimeäminen nimelle \"%s\" epäonnistui: g_rename() "
"epäonnistui: %s" "epäonnistui: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Tiedoston \"%s\" luominen epäonnistui: %s" msgstr "Tiedoston \"%s\" luominen epäonnistui: %s"
@@ -224,22 +224,22 @@ msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
"Olemassaolevan tiedoston \"%s\" poisto epäonnistui: g_unlink epäonnistui: %s" "Olemassaolevan tiedoston \"%s\" poisto epäonnistui: g_unlink epäonnistui: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Malli \"%s\" on virheellinen, se ei saa sisältää merkkijonoa \"%s\"" msgstr "Malli \"%s\" on virheellinen, se ei saa sisältää merkkijonoa \"%s\""
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Malli \"%s\" ei pääty merkkijonoon XXXXXX" msgstr "Malli \"%s\" ei pääty merkkijonoon XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Symbolisen linkin \"%s\" lukeminen epäonnistui: %s" msgstr "Symbolisen linkin \"%s\" lukeminen epäonnistui: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Symbolisia linkkejä ei tueta" msgstr "Symbolisia linkkejä ei tueta"
@@ -750,31 +750,31 @@ msgstr "Avaintiedosto ei ala ryhmällä"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Avaintiedosto sisältää epäkelvon koodauksen \"%s\"" msgstr "Avaintiedosto sisältää epäkelvon koodauksen \"%s\""
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Avaintiedostossa ei ole ryhmää \"%s\"" msgstr "Avaintiedostossa ei ole ryhmää \"%s\""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Avaintiedostossa ei ole avainta \"%s\"" msgstr "Avaintiedostossa ei ole avainta \"%s\""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
"Avaintiedosto sisältää avaimen \"%s\" arvolla \"%s\", joka ei ole UTF-8 " "Avaintiedosto sisältää avaimen \"%s\" arvolla \"%s\", joka ei ole UTF-8 "
"merkkijono" "merkkijono"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "Avaintiedosto sisältää avaimen \"%s\", jonka arvoa ei voida tulkita." msgstr "Avaintiedosto sisältää avaimen \"%s\", jonka arvoa ei voida tulkita."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -783,37 +783,37 @@ msgstr ""
"Avaintiedosto sisältää avaimen \"%s\", jonka arvoa ei voida tulkita, " "Avaintiedosto sisältää avaimen \"%s\", jonka arvoa ei voida tulkita, "
"ryhmässä \"%s\"." "ryhmässä \"%s\"."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "AVaintiedostossa ei ole avainta \"%s\" ryhmässä \"%s\"" msgstr "AVaintiedostossa ei ole avainta \"%s\" ryhmässä \"%s\""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Avaintiedosto sisältää escape-jonon rivin lopussa" msgstr "Avaintiedosto sisältää escape-jonon rivin lopussa"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Avaintiedostossa on virheellinen escape-jono \"%s\"" msgstr "Avaintiedostossa on virheellinen escape-jono \"%s\""
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Arvoa \"%s\" ei voida tulkita numeroksi." msgstr "Arvoa \"%s\" ei voida tulkita numeroksi."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Kokonaisluku \"%s\" on sallitun alueen ulkopuolella" msgstr "Kokonaisluku \"%s\" on sallitun alueen ulkopuolella"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Arvoa \"%s\" ei voida tulkita liukuluvuksi." msgstr "Arvoa \"%s\" ei voida tulkita liukuluvuksi."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Arvoa \"%s\" ei voida turkita totuusarvoksi." msgstr "Arvoa \"%s\" ei voida turkita totuusarvoksi."

355
po/fr.po
View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.11.4\n" "Project-Id-Version: glib 2.11.4\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-19 11:52+0200\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-02-25 11:48+0100\n" "PO-Revision-Date: 2006-02-25 11:48+0100\n"
"Last-Translator: Christophe Merlet (RedFox) <redfox@redfoxcenter.org>\n" "Last-Translator: Christophe Merlet (RedFox) <redfox@redfoxcenter.org>\n"
"Language-Team: GNOME French Team <gnomefr@traduc.org>\n" "Language-Team: GNOME French Team <gnomefr@traduc.org>\n"
@@ -17,286 +17,293 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: ../glib/gbookmarkfile.c:716 ../glib/gbookmarkfile.c:793 #: glib/gbookmarkfile.c:716 glib/gbookmarkfile.c:793 glib/gbookmarkfile.c:872
#: ../glib/gbookmarkfile.c:872 ../glib/gbookmarkfile.c:919 #: glib/gbookmarkfile.c:919
#, fuzzy, c-format #, fuzzy, c-format
msgid "Unexpected attribute '%s' for element '%s'" msgid "Unexpected attribute '%s' for element '%s'"
msgstr "" msgstr ""
"Caractère bizarre « %s », attend un caractère « = » après le nom de " "Caractère bizarre « %s », attend un caractère « = » après le nom de "
"l'attribut « %s » de l'élément « %s »" "l'attribut « %s » de l'élément « %s »"
#: ../glib/gbookmarkfile.c:727 ../glib/gbookmarkfile.c:804 #: glib/gbookmarkfile.c:727 glib/gbookmarkfile.c:804 glib/gbookmarkfile.c:814
#: ../glib/gbookmarkfile.c:814 ../glib/gbookmarkfile.c:930 #: glib/gbookmarkfile.c:930
#, c-format #, c-format
msgid "Attribute '%s' of element '%s' not found" msgid "Attribute '%s' of element '%s' not found"
msgstr "" msgstr ""
#: ../glib/gbookmarkfile.c:1103 ../glib/gbookmarkfile.c:1168 #: glib/gbookmarkfile.c:1103 glib/gbookmarkfile.c:1168
#: ../glib/gbookmarkfile.c:1232 ../glib/gbookmarkfile.c:1242 #: glib/gbookmarkfile.c:1232 glib/gbookmarkfile.c:1242
#, c-format #, c-format
msgid "Unexpected tag '%s', tag '%s' expected" msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "" msgstr ""
#: ../glib/gbookmarkfile.c:1128 ../glib/gbookmarkfile.c:1142 #: glib/gbookmarkfile.c:1128 glib/gbookmarkfile.c:1142
#: ../glib/gbookmarkfile.c:1210 ../glib/gbookmarkfile.c:1262 #: glib/gbookmarkfile.c:1210 glib/gbookmarkfile.c:1262
#, c-format #, c-format
msgid "Unexpected tag '%s' inside '%s'" msgid "Unexpected tag '%s' inside '%s'"
msgstr "" msgstr ""
#: ../glib/gbookmarkfile.c:1792 #: glib/gbookmarkfile.c:1792
#, fuzzy #, fuzzy, c-format
msgid "No valid bookmark file was be found in data dirs" msgid "No valid bookmark file was be found in data dirs"
msgstr "Impossible de trouver un fichier clef valide dans dossiers de données" msgstr "Impossible de trouver un fichier clef valide dans dossiers de données"
#: ../glib/gbookmarkfile.c:1993 #: glib/gbookmarkfile.c:1993
#, c-format #, c-format
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: ../glib/gbookmarkfile.c:2039 ../glib/gbookmarkfile.c:2196 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: ../glib/gbookmarkfile.c:2281 ../glib/gbookmarkfile.c:2362 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: ../glib/gbookmarkfile.c:2447 ../glib/gbookmarkfile.c:2530 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: ../glib/gbookmarkfile.c:2608 ../glib/gbookmarkfile.c:2687 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: ../glib/gbookmarkfile.c:2729 ../glib/gbookmarkfile.c:2826 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: ../glib/gbookmarkfile.c:2949 ../glib/gbookmarkfile.c:3139 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: ../glib/gbookmarkfile.c:3215 ../glib/gbookmarkfile.c:3367 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: ../glib/gbookmarkfile.c:3432 ../glib/gbookmarkfile.c:3522 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: ../glib/gbookmarkfile.c:3649 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "Pas de signet trouvé pour l'URI « %s »" msgstr "Pas de signet trouvé pour l'URI « %s »"
#: ../glib/gbookmarkfile.c:2371 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Pas de type MIME défini dans le signet pour l'URI « %s »" msgstr "Pas de type MIME défini dans le signet pour l'URI « %s »"
#: ../glib/gbookmarkfile.c:2456 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: ../glib/gbookmarkfile.c:2835 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: ../glib/gbookmarkfile.c:3233 ../glib/gbookmarkfile.c:3377 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
#: ../glib/gconvert.c:404 ../glib/gconvert.c:482 ../glib/giochannel.c:1150 #: glib/gconvert.c:404 glib/gconvert.c:482 glib/giochannel.c:1150
#, c-format #, c-format
msgid "Conversion from character set '%s' to '%s' is not supported" msgid "Conversion from character set '%s' to '%s' is not supported"
msgstr "" msgstr ""
"La conversion du jeu de caractères « %s » vers « %s » n'est pas supporté" "La conversion du jeu de caractères « %s » vers « %s » n'est pas supporté"
#: ../glib/gconvert.c:408 ../glib/gconvert.c:486 #: glib/gconvert.c:408 glib/gconvert.c:486
#, c-format #, c-format
msgid "Could not open converter from '%s' to '%s'" msgid "Could not open converter from '%s' to '%s'"
msgstr "Impossible d'ouvrir le convertisseur de « %s » vers « %s »" msgstr "Impossible d'ouvrir le convertisseur de « %s » vers « %s »"
#: ../glib/gconvert.c:602 ../glib/gconvert.c:991 ../glib/giochannel.c:1322 #: glib/gconvert.c:602 glib/gconvert.c:991 glib/giochannel.c:1322
#: ../glib/giochannel.c:1364 ../glib/giochannel.c:2206 ../glib/gutf8.c:943 #: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943
#: ../glib/gutf8.c:1392 #: glib/gutf8.c:1392
#, c-format
msgid "Invalid byte sequence in conversion input" msgid "Invalid byte sequence in conversion input"
msgstr "Séquence d'octets non valide en entrée du convertisseur" msgstr "Séquence d'octets non valide en entrée du convertisseur"
#: ../glib/gconvert.c:608 ../glib/gconvert.c:918 ../glib/giochannel.c:1329 #: glib/gconvert.c:608 glib/gconvert.c:918 glib/giochannel.c:1329
#: ../glib/giochannel.c:2218 #: glib/giochannel.c:2218
#, c-format #, c-format
msgid "Error during conversion: %s" msgid "Error during conversion: %s"
msgstr "Erreur lors de la conversion : %s" msgstr "Erreur lors de la conversion : %s"
#: ../glib/gconvert.c:643 ../glib/gutf8.c:939 ../glib/gutf8.c:1143 #: glib/gconvert.c:643 glib/gutf8.c:939 glib/gutf8.c:1143 glib/gutf8.c:1284
#: ../glib/gutf8.c:1284 ../glib/gutf8.c:1388 #: glib/gutf8.c:1388
#, c-format
msgid "Partial character sequence at end of input" msgid "Partial character sequence at end of input"
msgstr "Séquence partielle de caractères à la fin de l'entrée" msgstr "Séquence partielle de caractères à la fin de l'entrée"
#: ../glib/gconvert.c:893 #: glib/gconvert.c:893
#, c-format #, c-format
msgid "Cannot convert fallback '%s' to codeset '%s'" msgid "Cannot convert fallback '%s' to codeset '%s'"
msgstr "Impossible de convertir le fallback « %s » vers le jeu de codes « %s »" msgstr "Impossible de convertir le fallback « %s » vers le jeu de codes « %s »"
#: ../glib/gconvert.c:1702 #: glib/gconvert.c:1702
#, c-format #, c-format
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
msgstr "" msgstr ""
"L'URI « %s » n'est pas une URI absolue utilisant le schéma de « fichier »" "L'URI « %s » n'est pas une URI absolue utilisant le schéma de « fichier »"
#: ../glib/gconvert.c:1712 #: glib/gconvert.c:1712
#, c-format #, c-format
msgid "The local file URI '%s' may not include a '#'" msgid "The local file URI '%s' may not include a '#'"
msgstr "L'URI de fichier local « %s » peut ne pas inclure un « # »" msgstr "L'URI de fichier local « %s » peut ne pas inclure un « # »"
#: ../glib/gconvert.c:1729 #: glib/gconvert.c:1729
#, c-format #, c-format
msgid "The URI '%s' is invalid" msgid "The URI '%s' is invalid"
msgstr "L'URI « %s » n'est pas valide" msgstr "L'URI « %s » n'est pas valide"
#: ../glib/gconvert.c:1741 #: glib/gconvert.c:1741
#, c-format #, c-format
msgid "The hostname of the URI '%s' is invalid" msgid "The hostname of the URI '%s' is invalid"
msgstr "Le nom d'hôte de l'URI « %s » n'est pas valide" msgstr "Le nom d'hôte de l'URI « %s » n'est pas valide"
#: ../glib/gconvert.c:1757 #: glib/gconvert.c:1757
#, c-format #, c-format
msgid "The URI '%s' contains invalidly escaped characters" msgid "The URI '%s' contains invalidly escaped characters"
msgstr "L'URI « %s » contient des caractères d'échappements non valides" msgstr "L'URI « %s » contient des caractères d'échappements non valides"
#: ../glib/gconvert.c:1852 #: glib/gconvert.c:1852
#, c-format #, c-format
msgid "The pathname '%s' is not an absolute path" msgid "The pathname '%s' is not an absolute path"
msgstr "Le chemin « %s » n'est pas un chemin absolu" msgstr "Le chemin « %s » n'est pas un chemin absolu"
#: ../glib/gconvert.c:1862 #: glib/gconvert.c:1862
#, c-format
msgid "Invalid hostname" msgid "Invalid hostname"
msgstr "Nom d'hôte non valide" msgstr "Nom d'hôte non valide"
#: ../glib/gdir.c:121 ../glib/gdir.c:141 #: glib/gdir.c:121 glib/gdir.c:141
#, c-format #, c-format
msgid "Error opening directory '%s': %s" msgid "Error opening directory '%s': %s"
msgstr "Erreur à l'ouverture du répertoire « %s » : %s" msgstr "Erreur à l'ouverture du répertoire « %s » : %s"
#: ../glib/gfileutils.c:572 ../glib/gfileutils.c:645 #: glib/gfileutils.c:572 glib/gfileutils.c:645
#, c-format #, c-format
msgid "Could not allocate %lu bytes to read file \"%s\"" msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Impossible d'allouer %lu octets pour lire le fichier « %s »" msgstr "Impossible d'allouer %lu octets pour lire le fichier « %s »"
#: ../glib/gfileutils.c:587 #: glib/gfileutils.c:587
#, c-format #, c-format
msgid "Error reading file '%s': %s" msgid "Error reading file '%s': %s"
msgstr "Erreur de lecture du fichier « %s » : %s" msgstr "Erreur de lecture du fichier « %s » : %s"
#: ../glib/gfileutils.c:669 #: glib/gfileutils.c:669
#, c-format #, c-format
msgid "Failed to read from file '%s': %s" msgid "Failed to read from file '%s': %s"
msgstr "La lecture depuis le fichier « %s » a échoué : %s" msgstr "La lecture depuis le fichier « %s » a échoué : %s"
#: ../glib/gfileutils.c:720 ../glib/gfileutils.c:807 #: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format #, c-format
msgid "Failed to open file '%s': %s" msgid "Failed to open file '%s': %s"
msgstr "L'ouverture du fichier « %s » a échoué : %s" msgstr "L'ouverture du fichier « %s » a échoué : %s"
#: ../glib/gfileutils.c:737 ../glib/gmappedfile.c:133 #: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format #, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "" msgstr ""
"L'obtention des attributs du fichier « %s » a échoué : fstat() a échoué : %s" "L'obtention des attributs du fichier « %s » a échoué : fstat() a échoué : %s"
#: ../glib/gfileutils.c:771 #: glib/gfileutils.c:771
#, c-format #, c-format
msgid "Failed to open file '%s': fdopen() failed: %s" msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "L'ouverture du fichier « %s » a échoué : fdopen() a échoué : %s" msgstr "L'ouverture du fichier « %s » a échoué : fdopen() a échoué : %s"
#: ../glib/gfileutils.c:905 #: glib/gfileutils.c:905
#, c-format #, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "" msgstr ""
"Le renommage du fichier « %s » vers « %s » a échoué : g_rename() a échoué : %" "Le renommage du fichier « %s » vers « %s » a échoué : g_rename() a échoué : %"
"s" "s"
#: ../glib/gfileutils.c:946 ../glib/gfileutils.c:1404 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "La création du fichier « %s » a échoué : %s" msgstr "La création du fichier « %s » a échoué : %s"
#: ../glib/gfileutils.c:960 #: glib/gfileutils.c:960
#, c-format #, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s" msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "" msgstr ""
"L'ouverture du fichier « %s » en écriture a échoué : fdopen() a échoué : %s" "L'ouverture du fichier « %s » en écriture a échoué : fdopen() a échoué : %s"
#: ../glib/gfileutils.c:985 #: glib/gfileutils.c:985
#, c-format #, c-format
msgid "Failed to write file '%s': fwrite() failed: %s" msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "" msgstr ""
"L'ouverture du fichier « %s » en écriture a échoué : fwrite() a échoué : %s" "L'ouverture du fichier « %s » en écriture a échoué : fwrite() a échoué : %s"
#: ../glib/gfileutils.c:1004 #: glib/gfileutils.c:1004
#, c-format #, c-format
msgid "Failed to close file '%s': fclose() failed: %s" msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "La fermeture du fichier « %s » a échoué : fclose() a échoué : %s" msgstr "La fermeture du fichier « %s » a échoué : fclose() a échoué : %s"
#: ../glib/gfileutils.c:1122 #: glib/gfileutils.c:1122
#, c-format #, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
"Le fichier existant « %s » ne peut pas être supprimé : g_unlink() a échoué : " "Le fichier existant « %s » ne peut pas être supprimé : g_unlink() a échoué : "
"%s" "%s"
#: ../glib/gfileutils.c:1366 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "" msgstr ""
"Le modèle « %s » n'est pas valide, il ne devrait pas contenir de « %s »" "Le modèle « %s » n'est pas valide, il ne devrait pas contenir de « %s »"
#: ../glib/gfileutils.c:1379 #: glib/gfileutils.c:1379
#, fuzzy, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Le modèle « %s » ne se termine pas par XXXXXX" msgstr "Le modèle « %s » ne se termine pas par XXXXXX"
#: ../glib/gfileutils.c:1854 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "La lecture du lien symbolique « %s » a échoué : %s" msgstr "La lecture du lien symbolique « %s » a échoué : %s"
#: ../glib/gfileutils.c:1875 #: glib/gfileutils.c:1875
#, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Liens symboliques non supportés" msgstr "Liens symboliques non supportés"
#: ../glib/giochannel.c:1154 #: glib/giochannel.c:1154
#, c-format #, c-format
msgid "Could not open converter from '%s' to '%s': %s" msgid "Could not open converter from '%s' to '%s': %s"
msgstr "Impossible d'ouvrir le convertisseur de « %s » vers « %s » : %s" msgstr "Impossible d'ouvrir le convertisseur de « %s » vers « %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" msgid "Can't do a raw read in g_io_channel_read_line_string"
msgstr "" msgstr ""
"Impossible de faire une lecture brute dans g_io_channel_read_line_string" "Impossible de faire une lecture brute dans g_io_channel_read_line_string"
#: ../glib/giochannel.c:1546 ../glib/giochannel.c:1803 #: glib/giochannel.c:1546 glib/giochannel.c:1803 glib/giochannel.c:1889
#: ../glib/giochannel.c:1889 #, c-format
msgid "Leftover unconverted data in read buffer" msgid "Leftover unconverted data in read buffer"
msgstr "Laisse de coté des données non converties dans le tampon de lecture" msgstr "Laisse de coté des données non converties dans le tampon de lecture"
#: ../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" msgid "Channel terminates in a partial character"
msgstr "La canal se termine avec un caractère partiel" msgstr "La canal se termine avec un caractère partiel"
#: ../glib/giochannel.c:1689 #: glib/giochannel.c:1689
#, c-format
msgid "Can't do a raw read in g_io_channel_read_to_end" msgid "Can't do a raw read in g_io_channel_read_to_end"
msgstr "Impossible de faire une lecture brut dans g_io_channel_read_to_end" msgstr "Impossible de faire une lecture brut dans g_io_channel_read_to_end"
#: ../glib/gmappedfile.c:116 #: glib/gmappedfile.c:116
#, c-format #, c-format
msgid "Failed to open file '%s': open() failed: %s" msgid "Failed to open file '%s': open() failed: %s"
msgstr "L'ouverture du fichier « %s » a échoué : open() a échoué : %s" msgstr "L'ouverture du fichier « %s » a échoué : open() a échoué : %s"
#: ../glib/gmappedfile.c:193 #: glib/gmappedfile.c:193
#, c-format #, c-format
msgid "Failed to map file '%s': mmap() failed: %s" msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Le mappage du fichier « %s » a échoué : mmap() a échoué : %s" msgstr "Le mappage du fichier « %s » a échoué : mmap() a échoué : %s"
#: ../glib/gmarkup.c:227 #: glib/gmarkup.c:227
#, c-format #, c-format
msgid "Error on line %d char %d: %s" msgid "Error on line %d char %d: %s"
msgstr "Erreur à la ligne %d caractère %d : %s" msgstr "Erreur à la ligne %d caractère %d : %s"
#: ../glib/gmarkup.c:325 #: glib/gmarkup.c:325
#, c-format #, c-format
msgid "Error on line %d: %s" msgid "Error on line %d: %s"
msgstr "Erreur à la ligne %d : %s" msgstr "Erreur à la ligne %d : %s"
#: ../glib/gmarkup.c:429 #: glib/gmarkup.c:429
msgid "" msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;" "Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "" msgstr ""
"Entité vide « &; » vue : les entités valides sont : &amp; &quot; &lt; &gt; " "Entité vide « &; » vue : les entités valides sont : &amp; &quot; &lt; &gt; "
"&apos;" "&apos;"
#: ../glib/gmarkup.c:439 #: glib/gmarkup.c:439
#, c-format #, c-format
msgid "" msgid ""
"Character '%s' is not valid at the start of an entity name; the & character " "Character '%s' is not valid at the start of an entity name; the & character "
@@ -307,17 +314,17 @@ msgstr ""
"caractère & commence une entité ; si l'esperluette n'est pas supposé être " "caractère & commence une entité ; si l'esperluette n'est pas supposé être "
"une entité, échappez le comme &amp;" "une entité, échappez le comme &amp;"
#: ../glib/gmarkup.c:473 #: glib/gmarkup.c:473
#, c-format #, c-format
msgid "Character '%s' is not valid inside an entity name" msgid "Character '%s' is not valid inside an entity name"
msgstr "Le caractère « %s » n'est pas valide a l'intérieur d'un nom d'entité" msgstr "Le caractère « %s » n'est pas valide a l'intérieur d'un nom d'entité"
#: ../glib/gmarkup.c:510 #: glib/gmarkup.c:510
#, c-format #, c-format
msgid "Entity name '%s' is not known" msgid "Entity name '%s' is not known"
msgstr "Le nom d'entité « %s » n'est pas connu" msgstr "Le nom d'entité « %s » n'est pas connu"
#: ../glib/gmarkup.c:521 #: glib/gmarkup.c:521
msgid "" msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand " "Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;" "character without intending to start an entity - escape ampersand as &amp;"
@@ -326,7 +333,7 @@ msgstr ""
"une esperluette sans l'avoir marqué comme entité - échappez l'esperluette " "une esperluette sans l'avoir marqué comme entité - échappez l'esperluette "
"comme &amp;" "comme &amp;"
#: ../glib/gmarkup.c:574 #: glib/gmarkup.c:574
#, c-format #, c-format
msgid "" msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character " "Failed to parse '%-.*s', which should have been a digit inside a character "
@@ -336,16 +343,16 @@ msgstr ""
"de la référence de caractère (&#234; par exemple) - peut-être que le nombre " "de la référence de caractère (&#234; par exemple) - peut-être que le nombre "
"est trop grand" "est trop grand"
#: ../glib/gmarkup.c:599 #: glib/gmarkup.c:599
#, c-format #, c-format
msgid "Character reference '%-.*s' does not encode a permitted character" msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "La référence de caractère « %-.*s » n'encode pas un caractère autorisé" msgstr "La référence de caractère « %-.*s » n'encode pas un caractère autorisé"
#: ../glib/gmarkup.c:614 #: glib/gmarkup.c:614
msgid "Empty character reference; should include a digit such as &#454;" msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Référence de caractère vide ; devrait inclure un nombre comme &#454;" msgstr "Référence de caractère vide ; devrait inclure un nombre comme &#454;"
#: ../glib/gmarkup.c:624 #: glib/gmarkup.c:624
msgid "" msgid ""
"Character reference did not end with a semicolon; most likely you used an " "Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand " "ampersand character without intending to start an entity - escape ampersand "
@@ -355,23 +362,23 @@ msgstr ""
"vraisemblablement utilisé une esperluette sans intention de commencer une " "vraisemblablement utilisé une esperluette sans intention de commencer une "
"entité - échappez l'esperluette comme &amp;" "entité - échappez l'esperluette comme &amp;"
#: ../glib/gmarkup.c:710 #: glib/gmarkup.c:710
msgid "Unfinished entity reference" msgid "Unfinished entity reference"
msgstr "Référence d'entité non terminée" msgstr "Référence d'entité non terminée"
#: ../glib/gmarkup.c:716 #: glib/gmarkup.c:716
msgid "Unfinished character reference" msgid "Unfinished character reference"
msgstr "Référence de caractère non terminée" msgstr "Référence de caractère non terminée"
#: ../glib/gmarkup.c:959 ../glib/gmarkup.c:987 ../glib/gmarkup.c:1018 #: glib/gmarkup.c:959 glib/gmarkup.c:987 glib/gmarkup.c:1018
msgid "Invalid UTF-8 encoded text" msgid "Invalid UTF-8 encoded text"
msgstr "Texte codé en UTF-8 non valide" msgstr "Texte codé en UTF-8 non valide"
#: ../glib/gmarkup.c:1054 #: glib/gmarkup.c:1054
msgid "Document must begin with an element (e.g. <book>)" msgid "Document must begin with an element (e.g. <book>)"
msgstr "Le document doit commencer avec un élément (pas ex. <book>)" msgstr "Le document doit commencer avec un élément (pas ex. <book>)"
#: ../glib/gmarkup.c:1094 #: glib/gmarkup.c:1094
#, c-format #, c-format
msgid "" msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an " "'%s' is not a valid character following a '<' character; it may not begin an "
@@ -380,7 +387,7 @@ msgstr ""
"« %s » n'est pas un caractère valide suivant le caractère « < » ; il ne " "« %s » n'est pas un caractère valide suivant le caractère « < » ; il ne "
"semble pas commencer un nom d'élément" "semble pas commencer un nom d'élément"
#: ../glib/gmarkup.c:1158 #: glib/gmarkup.c:1158
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected a '>' character to end the start tag of element " "Odd character '%s', expected a '>' character to end the start tag of element "
@@ -389,7 +396,7 @@ msgstr ""
"Caractère bizarre « %s », attend un caractère « > » pour finir la balise de " "Caractère bizarre « %s », attend un caractère « > » pour finir la balise de "
"début de l'élément « %s »" "début de l'élément « %s »"
#: ../glib/gmarkup.c:1247 #: glib/gmarkup.c:1247
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@@ -397,7 +404,7 @@ msgstr ""
"Caractère bizarre « %s », attend un caractère « = » après le nom de " "Caractère bizarre « %s », attend un caractère « = » après le nom de "
"l'attribut « %s » de l'élément « %s »" "l'attribut « %s » de l'élément « %s »"
#: ../glib/gmarkup.c:1289 #: glib/gmarkup.c:1289
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of " "Odd character '%s', expected a '>' or '/' character to end the start tag of "
@@ -408,7 +415,7 @@ msgstr ""
"balise de début de l'élément « %s », ou optionnellement un attribut ; peut-" "balise de début de l'élément « %s », ou optionnellement un attribut ; peut-"
"être que vous utilisez un caractère non valide dans un nom d'attribut" "être que vous utilisez un caractère non valide dans un nom d'attribut"
#: ../glib/gmarkup.c:1378 #: glib/gmarkup.c:1378
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when " "Odd character '%s', expected an open quote mark after the equals sign when "
@@ -417,7 +424,7 @@ msgstr ""
"Caractère bizarre « %s », attend un guillemet d'ouverture après le signe " "Caractère bizarre « %s », attend un guillemet d'ouverture après le signe "
"égal quand on donne une valeur pour l'attribut « %s » de l'élément « %s »" "égal quand on donne une valeur pour l'attribut « %s » de l'élément « %s »"
#: ../glib/gmarkup.c:1523 #: glib/gmarkup.c:1523
#, c-format #, c-format
msgid "" msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not " "'%s' is not a valid character following the characters '</'; '%s' may not "
@@ -426,7 +433,7 @@ msgstr ""
"« %s » n'est pas un caractère valide suivant les caractères « </ » ; « %s » " "« %s » n'est pas un caractère valide suivant les caractères « </ » ; « %s » "
"ne peut pas commencer un nom d'élément" "ne peut pas commencer un nom d'élément"
#: ../glib/gmarkup.c:1563 #: glib/gmarkup.c:1563
#, c-format #, c-format
msgid "" msgid ""
"'%s' is not a valid character following the close element name '%s'; the " "'%s' is not a valid character following the close element name '%s'; the "
@@ -435,26 +442,26 @@ msgstr ""
"« %s » n'est pas un caractère valide suivant le nom l'élément de fermeture " "« %s » n'est pas un caractère valide suivant le nom l'élément de fermeture "
"« %s » ; la caractère autorisé est « > »" "« %s » ; la caractère autorisé est « > »"
#: ../glib/gmarkup.c:1574 #: glib/gmarkup.c:1574
#, c-format #, c-format
msgid "Element '%s' was closed, no element is currently open" msgid "Element '%s' was closed, no element is currently open"
msgstr "L'élément « %s » a été fermé, aucun élément est actuellement ouvert" msgstr "L'élément « %s » a été fermé, aucun élément est actuellement ouvert"
#: ../glib/gmarkup.c:1583 #: glib/gmarkup.c:1583
#, c-format #, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'" msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "" msgstr ""
"L'élément « %s » a été fermé, mais l'élément actuellement ouvert est « %s »" "L'élément « %s » a été fermé, mais l'élément actuellement ouvert est « %s »"
#: ../glib/gmarkup.c:1749 #: glib/gmarkup.c:1749
msgid "Document was empty or contained only whitespace" msgid "Document was empty or contained only whitespace"
msgstr "Le document était vide ou ne contenait que des espaces" msgstr "Le document était vide ou ne contenait que des espaces"
#: ../glib/gmarkup.c:1763 #: glib/gmarkup.c:1763
msgid "Document ended unexpectedly just after an open angle bracket '<'" msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Le document s'est fini prématurément juste après un « < »" msgstr "Le document s'est fini prématurément juste après un « < »"
#: ../glib/gmarkup.c:1771 ../glib/gmarkup.c:1815 #: glib/gmarkup.c:1771 glib/gmarkup.c:1815
#, c-format #, c-format
msgid "" msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last " "Document ended unexpectedly with elements still open - '%s' was the last "
@@ -463,7 +470,7 @@ msgstr ""
"Le document s'est fini prématurément avec des éléments encore ouvert - « %s " "Le document s'est fini prématurément avec des éléments encore ouvert - « %s "
"» était le dernier élément ouvert" "» était le dernier élément ouvert"
#: ../glib/gmarkup.c:1779 #: glib/gmarkup.c:1779
#, c-format #, c-format
msgid "" msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending " "Document ended unexpectedly, expected to see a close angle bracket ending "
@@ -472,21 +479,21 @@ msgstr ""
"Le document s'est fini prématurément, espérait voir un caractère de " "Le document s'est fini prématurément, espérait voir un caractère de "
"fermeture pour la balise <%s/>" "fermeture pour la balise <%s/>"
#: ../glib/gmarkup.c:1785 #: glib/gmarkup.c:1785
msgid "Document ended unexpectedly inside an element name" msgid "Document ended unexpectedly inside an element name"
msgstr "Le document s'est fini prématurément a l'intérieur d'un nom d'élément" msgstr "Le document s'est fini prématurément a l'intérieur d'un nom d'élément"
#: ../glib/gmarkup.c:1790 #: glib/gmarkup.c:1790
msgid "Document ended unexpectedly inside an attribute name" msgid "Document ended unexpectedly inside an attribute name"
msgstr "Le document s'est fini prématurément a l'intérieur d'un nom d'attribut" msgstr "Le document s'est fini prématurément a l'intérieur d'un nom d'attribut"
#: ../glib/gmarkup.c:1795 #: glib/gmarkup.c:1795
msgid "Document ended unexpectedly inside an element-opening tag." msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "" msgstr ""
"Le document s'est fini prématurément a l'intérieur d'une balise d'ouverture " "Le document s'est fini prématurément a l'intérieur d'une balise d'ouverture "
"d'élément" "d'élément"
#: ../glib/gmarkup.c:1801 #: glib/gmarkup.c:1801
msgid "" msgid ""
"Document ended unexpectedly after the equals sign following an attribute " "Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value" "name; no attribute value"
@@ -494,107 +501,109 @@ msgstr ""
"Le document s'est fini prématurément après le signe égal suivant un nom " "Le document s'est fini prématurément après le signe égal suivant un nom "
"d'attribut ; aucune valeur d'attribut" "d'attribut ; aucune valeur d'attribut"
#: ../glib/gmarkup.c:1808 #: glib/gmarkup.c:1808
msgid "Document ended unexpectedly while inside an attribute value" msgid "Document ended unexpectedly while inside an attribute value"
msgstr "" msgstr ""
"Le document s'est fini prématurément alors qu'il était à l'intérieur d'une " "Le document s'est fini prématurément alors qu'il était à l'intérieur d'une "
"valeur d'attribut" "valeur d'attribut"
#: ../glib/gmarkup.c:1823 #: glib/gmarkup.c:1823
#, c-format #, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'" msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "" msgstr ""
"Le document s'est fini prématurément a l'intérieur de la balise de fermeture " "Le document s'est fini prématurément a l'intérieur de la balise de fermeture "
"pour l'élément « %s »" "pour l'élément « %s »"
#: ../glib/gmarkup.c:1829 #: glib/gmarkup.c:1829
msgid "Document ended unexpectedly inside a comment or processing instruction" msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "" msgstr ""
"Le document s'est fini prématurément à l'intérieur d'un commentaire ou d'une " "Le document s'est fini prématurément à l'intérieur d'un commentaire ou d'une "
"instruction de traitement" "instruction de traitement"
#: ../glib/gshell.c:70 #: glib/gshell.c:70
#, c-format
msgid "Quoted text doesn't begin with a quotation mark" msgid "Quoted text doesn't begin with a quotation mark"
msgstr "Le texte cité ne commence pas avec un caractère de citation." msgstr "Le texte cité ne commence pas avec un caractère de citation."
#: ../glib/gshell.c:160 #: glib/gshell.c:160
#, c-format
msgid "Unmatched quotation mark in command line or other shell-quoted text" msgid "Unmatched quotation mark in command line or other shell-quoted text"
msgstr "" msgstr ""
"Caractère de citation sans correspondance dans la ligne de commande ou un " "Caractère de citation sans correspondance dans la ligne de commande ou un "
"autre texte shell rapporté" "autre texte shell rapporté"
#: ../glib/gshell.c:538 #: glib/gshell.c:538
#, c-format #, c-format
msgid "Text ended just after a '\\' character. (The text was '%s')" msgid "Text ended just after a '\\' character. (The text was '%s')"
msgstr "Le texte fini juste après un caractère « \\ ». (Le texte était « %s »)" msgstr "Le texte fini juste après un caractère « \\ ». (Le texte était « %s »)"
#: ../glib/gshell.c:545 #: glib/gshell.c:545
#, c-format #, c-format
msgid "Text ended before matching quote was found for %c. (The text was '%s')" msgid "Text ended before matching quote was found for %c. (The text was '%s')"
msgstr "" msgstr ""
"Le texte fini avant qu'un caractère de citation soit trouvé pour %c. (Le " "Le texte fini avant qu'un caractère de citation soit trouvé pour %c. (Le "
"texte était « %s »)" "texte était « %s »)"
#: ../glib/gshell.c:557 #: glib/gshell.c:557
#, c-format
msgid "Text was empty (or contained only whitespace)" msgid "Text was empty (or contained only whitespace)"
msgstr "Le texte était vide (ou ne contenait que des espaces)" msgstr "Le texte était vide (ou ne contenait que des espaces)"
#: ../glib/gspawn-win32.c:273 #: glib/gspawn-win32.c:273
#, c-format
msgid "Failed to read data from child process" msgid "Failed to read data from child process"
msgstr "La lecture des données depuis le processus fils a échoué" msgstr "La lecture des données depuis le processus fils a échoué"
#: ../glib/gspawn-win32.c:288 ../glib/gspawn.c:1361 #: glib/gspawn-win32.c:288 glib/gspawn.c:1361
#, c-format #, c-format
msgid "Failed to create pipe for communicating with child process (%s)" msgid "Failed to create pipe for communicating with child process (%s)"
msgstr "" msgstr ""
"La création du tube de communication avec le processus fils a échoué (%s)" "La création du tube de communication avec le processus fils a échoué (%s)"
#: ../glib/gspawn-win32.c:326 ../glib/gspawn.c:1025 #: glib/gspawn-win32.c:326 glib/gspawn.c:1025
#, c-format #, c-format
msgid "Failed to read from child pipe (%s)" msgid "Failed to read from child pipe (%s)"
msgstr "La lecture depuis un tube fils a échoué (%s)" msgstr "La lecture depuis un tube fils a échoué (%s)"
#: ../glib/gspawn-win32.c:352 ../glib/gspawn.c:1230 #: glib/gspawn-win32.c:352 glib/gspawn.c:1230
#, c-format #, c-format
msgid "Failed to change to directory '%s' (%s)" msgid "Failed to change to directory '%s' (%s)"
msgstr "Le changement de répertoire « %s » a échoué (%s)" msgstr "Le changement de répertoire « %s » a échoué (%s)"
#: ../glib/gspawn-win32.c:358 ../glib/gspawn-win32.c:578 #: glib/gspawn-win32.c:358 glib/gspawn-win32.c:578
#, c-format #, c-format
msgid "Failed to execute child process (%s)" msgid "Failed to execute child process (%s)"
msgstr "L'exécution du processus fils a échoué (%s)" msgstr "L'exécution du processus fils a échoué (%s)"
#: ../glib/gspawn-win32.c:468 ../glib/gspawn-win32.c:524 #: glib/gspawn-win32.c:468 glib/gspawn-win32.c:524
#, c-format #, c-format
msgid "Invalid program name: %s" msgid "Invalid program name: %s"
msgstr "Nom du programme invalide : %s" msgstr "Nom du programme invalide : %s"
#: ../glib/gspawn-win32.c:478 ../glib/gspawn-win32.c:534 #: glib/gspawn-win32.c:478 glib/gspawn-win32.c:534 glib/gspawn-win32.c:777
#: ../glib/gspawn-win32.c:777 ../glib/gspawn-win32.c:832 #: glib/gspawn-win32.c:832 glib/gspawn-win32.c:1367
#: ../glib/gspawn-win32.c:1367
#, c-format #, c-format
msgid "Invalid string in argument vector at %d: %s" msgid "Invalid string in argument vector at %d: %s"
msgstr "Chaîne invalide dans le vecteur argument à %d : %s" msgstr "Chaîne invalide dans le vecteur argument à %d : %s"
#: ../glib/gspawn-win32.c:489 ../glib/gspawn-win32.c:545 #: glib/gspawn-win32.c:489 glib/gspawn-win32.c:545 glib/gspawn-win32.c:791
#: ../glib/gspawn-win32.c:791 ../glib/gspawn-win32.c:845 #: glib/gspawn-win32.c:845 glib/gspawn-win32.c:1400
#: ../glib/gspawn-win32.c:1400
#, c-format #, c-format
msgid "Invalid string in environment: %s" msgid "Invalid string in environment: %s"
msgstr "Chaîne invalide dans l'environnement : %s" msgstr "Chaîne invalide dans l'environnement : %s"
#: ../glib/gspawn-win32.c:773 ../glib/gspawn-win32.c:828 #: glib/gspawn-win32.c:773 glib/gspawn-win32.c:828 glib/gspawn-win32.c:1348
#: ../glib/gspawn-win32.c:1348
#, c-format #, c-format
msgid "Invalid working directory: %s" msgid "Invalid working directory: %s"
msgstr "Répertoire de travail invalide : %s" msgstr "Répertoire de travail invalide : %s"
#: ../glib/gspawn-win32.c:887 #: glib/gspawn-win32.c:887
#, c-format #, c-format
msgid "Failed to execute helper program (%s)" msgid "Failed to execute helper program (%s)"
msgstr "L'exécution du programme d'aide a échoué (%s)" msgstr "L'exécution du programme d'aide a échoué (%s)"
#: ../glib/gspawn-win32.c:1087 #: glib/gspawn-win32.c:1087
#, c-format
msgid "" msgid ""
"Unexpected error in g_io_channel_win32_poll() reading data from a child " "Unexpected error in g_io_channel_win32_poll() reading data from a child "
"process" "process"
@@ -602,141 +611,147 @@ msgstr ""
"Erreur inattendue dans g_io_channel_win32_poll() lors de la lecture des " "Erreur inattendue dans g_io_channel_win32_poll() lors de la lecture des "
"données depuis un processus fils" "données depuis un processus fils"
#: ../glib/gspawn.c:165 #: glib/gspawn.c:165
#, c-format #, c-format
msgid "Failed to read data from child process (%s)" msgid "Failed to read data from child process (%s)"
msgstr "La lecture des données depuis le processus fils a échoué (%s)" msgstr "La lecture des données depuis le processus fils a échoué (%s)"
#: ../glib/gspawn.c:297 #: glib/gspawn.c:297
#, c-format #, c-format
msgid "Unexpected error in select() reading data from a child process (%s)" msgid "Unexpected error in select() reading data from a child process (%s)"
msgstr "" msgstr ""
"Erreur inattendue dans select() à la lecture des données depuis un processus " "Erreur inattendue dans select() à la lecture des données depuis un processus "
"fils (%s)" "fils (%s)"
#: ../glib/gspawn.c:380 #: glib/gspawn.c:380
#, c-format #, c-format
msgid "Unexpected error in waitpid() (%s)" msgid "Unexpected error in waitpid() (%s)"
msgstr "Erreur inattendue dans waitpid() (%s)" msgstr "Erreur inattendue dans waitpid() (%s)"
#: ../glib/gspawn.c:1090 #: glib/gspawn.c:1090
#, c-format #, c-format
msgid "Failed to fork (%s)" msgid "Failed to fork (%s)"
msgstr "Le fork a échoué (%s)" msgstr "Le fork a échoué (%s)"
#: ../glib/gspawn.c:1240 #: glib/gspawn.c:1240
#, c-format #, c-format
msgid "Failed to execute child process \"%s\" (%s)" msgid "Failed to execute child process \"%s\" (%s)"
msgstr "L'exécution du processus fils « %s » a échoué (%s)" msgstr "L'exécution du processus fils « %s » a échoué (%s)"
#: ../glib/gspawn.c:1250 #: glib/gspawn.c:1250
#, c-format #, c-format
msgid "Failed to redirect output or input of child process (%s)" msgid "Failed to redirect output or input of child process (%s)"
msgstr "" msgstr ""
"La redirection de la sortie ou de l'entrée du processus fils a échoué (%s)" "La redirection de la sortie ou de l'entrée du processus fils a échoué (%s)"
#: ../glib/gspawn.c:1259 #: glib/gspawn.c:1259
#, c-format #, c-format
msgid "Failed to fork child process (%s)" msgid "Failed to fork child process (%s)"
msgstr "Le fork du processus fils a échoué (%s)" msgstr "Le fork du processus fils a échoué (%s)"
#: ../glib/gspawn.c:1267 #: glib/gspawn.c:1267
#, c-format #, c-format
msgid "Unknown error executing child process \"%s\"" msgid "Unknown error executing child process \"%s\""
msgstr "Erreur inconnue à l'exécution du processus fils « %s »" msgstr "Erreur inconnue à l'exécution du processus fils « %s »"
#: ../glib/gspawn.c:1289 #: glib/gspawn.c:1289
#, c-format #, c-format
msgid "Failed to read enough data from child pid pipe (%s)" msgid "Failed to read enough data from child pid pipe (%s)"
msgstr "" msgstr ""
"Impossible de lire suffisamment de données depuis le tube du processus de " "Impossible de lire suffisamment de données depuis le tube du processus de "
"pid (%s)" "pid (%s)"
#: ../glib/gutf8.c:1017 #: glib/gutf8.c:1017
#, c-format
msgid "Character out of range for UTF-8" msgid "Character out of range for UTF-8"
msgstr "Caractère hors des limites UTF-8" msgstr "Caractère hors des limites UTF-8"
#: ../glib/gutf8.c:1111 ../glib/gutf8.c:1120 ../glib/gutf8.c:1252 #: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 glib/gutf8.c:1261
#: ../glib/gutf8.c:1261 ../glib/gutf8.c:1402 ../glib/gutf8.c:1498 #: glib/gutf8.c:1402 glib/gutf8.c:1498
#, c-format
msgid "Invalid sequence in conversion input" msgid "Invalid sequence in conversion input"
msgstr "Séquence non valide dans l'entrée du convertisseur" msgstr "Séquence non valide dans l'entrée du convertisseur"
#: ../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" msgid "Character out of range for UTF-16"
msgstr "Caractère hors des limites UTF-16" msgstr "Caractère hors des limites UTF-16"
#: ../glib/goption.c:495 #: glib/goption.c:495
msgid "Usage:" msgid "Usage:"
msgstr "Usage :" msgstr "Usage :"
#: ../glib/goption.c:495 #: glib/goption.c:495
msgid "[OPTION...]" msgid "[OPTION...]"
msgstr "[OPTION...]" msgstr "[OPTION...]"
#: ../glib/goption.c:586 #: glib/goption.c:586
msgid "Help Options:" msgid "Help Options:"
msgstr "Options de l'aide :" msgstr "Options de l'aide :"
#: ../glib/goption.c:587 #: glib/goption.c:587
msgid "Show help options" msgid "Show help options"
msgstr "Afficher les options de l'aide" msgstr "Afficher les options de l'aide"
#: ../glib/goption.c:592 #: glib/goption.c:592
msgid "Show all help options" msgid "Show all help options"
msgstr "Afficher toutes les options de l'aide" msgstr "Afficher toutes les options de l'aide"
#: ../glib/goption.c:642 #: glib/goption.c:642
msgid "Application Options:" msgid "Application Options:"
msgstr "Options de l'application :" msgstr "Options de l'application :"
#: ../glib/goption.c:686 ../glib/goption.c:756 #: glib/goption.c:686 glib/goption.c:756
#, c-format #, c-format
msgid "Cannot parse integer value '%s' for %s" msgid "Cannot parse integer value '%s' for %s"
msgstr "Impossible d'analyser la valeur entière « %s » pour %s" msgstr "Impossible d'analyser la valeur entière « %s » pour %s"
#: ../glib/goption.c:696 ../glib/goption.c:764 #: glib/goption.c:696 glib/goption.c:764
#, c-format #, c-format
msgid "Integer value '%s' for %s out of range" msgid "Integer value '%s' for %s out of range"
msgstr "La valeur entière « %s » pour %s est hors de limites" msgstr "La valeur entière « %s » pour %s est hors de limites"
#: ../glib/goption.c:721 #: glib/goption.c:721
#, fuzzy, c-format #, fuzzy, c-format
msgid "Cannot parse double value '%s' for %s" msgid "Cannot parse double value '%s' for %s"
msgstr "Impossible d'analyser la valeur entière « %s » pour %s" msgstr "Impossible d'analyser la valeur entière « %s » pour %s"
#: ../glib/goption.c:729 #: glib/goption.c:729
#, fuzzy, c-format #, fuzzy, c-format
msgid "Double value '%s' for %s out of range" msgid "Double value '%s' for %s out of range"
msgstr "La valeur entière « %s » pour %s est hors de limites" msgstr "La valeur entière « %s » pour %s est hors de limites"
#: ../glib/goption.c:1066 #: glib/goption.c:1066
#, c-format #, c-format
msgid "Error parsing option %s" msgid "Error parsing option %s"
msgstr "Erreur lors de l'analyse de l'option %s" msgstr "Erreur lors de l'analyse de l'option %s"
#: ../glib/goption.c:1097 ../glib/goption.c:1208 #: glib/goption.c:1097 glib/goption.c:1208
#, c-format #, c-format
msgid "Missing argument for %s" msgid "Missing argument for %s"
msgstr "Argument manquant pour %s" msgstr "Argument manquant pour %s"
#: ../glib/goption.c:1597 #: glib/goption.c:1597
#, c-format #, c-format
msgid "Unknown option %s" msgid "Unknown option %s"
msgstr "Option inconnue %s" msgstr "Option inconnue %s"
#: ../glib/gkeyfile.c:337 #: glib/gkeyfile.c:337
#, c-format
msgid "Valid key file could not be found in data dirs" msgid "Valid key file could not be found in data dirs"
msgstr "Impossible de trouver un fichier clef valide dans dossiers de données" msgstr "Impossible de trouver un fichier clef valide dans dossiers de données"
#: ../glib/gkeyfile.c:372 #: glib/gkeyfile.c:372
#, c-format
msgid "Not a regular file" msgid "Not a regular file"
msgstr "Pas un fichier régulier" msgstr "Pas un fichier régulier"
#: ../glib/gkeyfile.c:380 #: glib/gkeyfile.c:380
#, c-format
msgid "File is empty" msgid "File is empty"
msgstr "Le fichier est vide" msgstr "Le fichier est vide"
#: ../glib/gkeyfile.c:695 #: glib/gkeyfile.c:695
#, c-format #, c-format
msgid "" msgid ""
"Key file contains line '%s' which is not a key-value pair, group, or comment" "Key file contains line '%s' which is not a key-value pair, group, or comment"
@@ -744,42 +759,43 @@ msgstr ""
"Le fichier clef contient la ligne « %s » qui n'est ni une pair clef-valeur, " "Le fichier clef contient la ligne « %s » qui n'est ni une pair clef-valeur, "
"ni un groupe et ni commentaire" "ni un groupe et ni commentaire"
#: ../glib/gkeyfile.c:763 #: glib/gkeyfile.c:763
#, c-format
msgid "Key file does not start with a group" msgid "Key file does not start with a group"
msgstr "Le fichier clef ne débute pas par un groupe" msgstr "Le fichier clef ne débute pas par un groupe"
#: ../glib/gkeyfile.c:806 #: glib/gkeyfile.c:806
#, c-format #, c-format
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Le fichier clef contient un codage de caractères non-supportés « %s »" msgstr "Le fichier clef contient un codage de caractères non-supportés « %s »"
#: ../glib/gkeyfile.c:1014 ../glib/gkeyfile.c:1173 ../glib/gkeyfile.c:2386 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: ../glib/gkeyfile.c:2451 ../glib/gkeyfile.c:2570 ../glib/gkeyfile.c:2705 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: ../glib/gkeyfile.c:2858 ../glib/gkeyfile.c:3034 ../glib/gkeyfile.c:3091 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Le fichier clef n'a pas de groupe « %s »" msgstr "Le fichier clef n'a pas de groupe « %s »"
#: ../glib/gkeyfile.c:1185 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Le fichier clef n'a pas de clef « %s »" msgstr "Le fichier clef n'a pas de clef « %s »"
#: ../glib/gkeyfile.c:1286 ../glib/gkeyfile.c:1395 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
"Le fichier clef contient la clef « %s » avec la valeur « %s » qui n'est pas " "Le fichier clef contient la clef « %s » avec la valeur « %s » qui n'est pas "
"de l'UTF-8" "de l'UTF-8"
#: ../glib/gkeyfile.c:1304 ../glib/gkeyfile.c:1413 ../glib/gkeyfile.c:1785 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Le fichier clef contient la clef « %s » avec une valeur impossible à " "Le fichier clef contient la clef « %s » avec une valeur impossible à "
"interpréter." "interpréter."
#: ../glib/gkeyfile.c:2001 ../glib/gkeyfile.c:2214 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -788,36 +804,37 @@ msgstr ""
"Le fichier clef contient la clef « %s » dans le groupe « %s » qui a une " "Le fichier clef contient la clef « %s » dans le groupe « %s » qui a une "
"valeur impossible à interpréter." "valeur impossible à interpréter."
#: ../glib/gkeyfile.c:2401 ../glib/gkeyfile.c:2585 ../glib/gkeyfile.c:3102 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Le fichier clef ne contient pas de clef « %s » dans le groupe « %s »" msgstr "Le fichier clef ne contient pas de clef « %s » dans le groupe « %s »"
#: ../glib/gkeyfile.c:3275 #: glib/gkeyfile.c:3275
#, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Le fichier clef contient un caractère d'échappement en fin de ligne" msgstr "Le fichier clef contient un caractère d'échappement en fin de ligne"
#: ../glib/gkeyfile.c:3297 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Le fichier clef contient une séquence d'échappement non valide « %s »" msgstr "Le fichier clef contient une séquence d'échappement non valide « %s »"
#: ../glib/gkeyfile.c:3438 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "La valeur « %s » ne peut pas être interprétée comme un nombre." msgstr "La valeur « %s » ne peut pas être interprétée comme un nombre."
#: ../glib/gkeyfile.c:3448 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "La valeur entière « %s » est hors limites" msgstr "La valeur entière « %s » est hors limites"
#: ../glib/gkeyfile.c:3476 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "La valeur « %s » ne peut pas être interprétée comme un nombre." msgstr "La valeur « %s » ne peut pas être interprétée comme un nombre."
#: ../glib/gkeyfile.c:3496 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "La valeur « %s » ne peut pas être interprétée comme un booléen." msgstr "La valeur « %s » ne peut pas être interprétée comme un booléen."

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib HEAD \n" "Project-Id-Version: glib HEAD \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2004-03-08 21:28+0000\n" "PO-Revision-Date: 2004-03-08 21:28+0000\n"
"Last-Translator: Alastair McKinstry <mckinstry@debian.org>\n" "Last-Translator: Alastair McKinstry <mckinstry@debian.org>\n"
"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n" "Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"
@@ -49,35 +49,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -191,7 +191,7 @@ msgstr "Teip af oscailt comhad '%s': teipadh fdopen(): %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Teip af oscailt comhad '%s': teipadh fdopen(): %s" msgstr "Teip af oscailt comhad '%s': teipadh fdopen(): %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Teip ag cruthaigh comhad '%s': %s" msgstr "Teip ag cruthaigh comhad '%s': %s"
@@ -216,22 +216,22 @@ msgstr "Teip af oscailt comhad '%s': teipadh fdopen(): %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "" msgstr ""
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "" msgstr ""
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, fuzzy, c-format #, fuzzy, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Teip ag cruthaigh comhad '%s': %s" msgstr "Teip ag cruthaigh comhad '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "" msgstr ""
@@ -696,66 +696,66 @@ msgstr ""
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "" msgstr ""

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gl\n" "Project-Id-Version: gl\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-05-16 13:06+0200\n" "PO-Revision-Date: 2006-05-16 13:06+0200\n"
"Last-Translator: Ignacio Casal Quinteiro <nacho.resa@gmail.com>\n" "Last-Translator: Ignacio Casal Quinteiro <nacho.resa@gmail.com>\n"
"Language-Team: Galego <trasno@ceu.fi.udc.es>\n" "Language-Team: Galego <trasno@ceu.fi.udc.es>\n"
@@ -53,35 +53,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "Xa existe un marcador para a URI '%s'" msgstr "Xa existe un marcador para a URI '%s'"
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "Non se atopou un marcador para a URI '%s'" msgstr "Non se atopou un marcador para a URI '%s'"
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Ningún tipo MIME definido no marcador para a URI '%s'" msgstr "Ningún tipo MIME definido no marcador para a URI '%s'"
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Non se definiu ningún flag privador no marcador para a URI '%s'" msgstr "Non se definiu ningún flag privador no marcador para a URI '%s'"
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "Non se estableceu ningún grupo no marcador para a URI '%s'" msgstr "Non se estableceu ningún grupo no marcador para a URI '%s'"
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Ningunha aplicación con nome '%s' rexistrou un marcador para '%s'" msgstr "Ningunha aplicación con nome '%s' rexistrou un marcador para '%s'"
@@ -195,7 +195,7 @@ msgstr "Fallo ao abrir o ficheiro '%s': fdopen() fallou: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Fallou ao renomear o ficheiro '%s' a '%s': g_rename() fallou: %s" msgstr "Fallou ao renomear o ficheiro '%s' a '%s': g_rename() fallou: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Fallo ao crear o ficheiro '%s': %s" msgstr "Fallo ao crear o ficheiro '%s': %s"
@@ -220,22 +220,22 @@ msgstr "Fallo ao abrir o ficheiro '%s': fclose() fallou: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "O arquivo existente '%s' non se puido eliminar: g_unlink() fallou: %s" msgstr "O arquivo existente '%s' non se puido eliminar: g_unlink() fallou: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "O modelo '%s' non é válido, non debería conter '%s'" msgstr "O modelo '%s' non é válido, non debería conter '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "O modelo '%s' non remata con XXXXXX" msgstr "O modelo '%s' non remata con XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Fallo ao ler o enlace simbólico '%s': %s" msgstr "Fallo ao ler o enlace simbólico '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Enlaces simbólicos non soportados" msgstr "Enlaces simbólicos non soportados"
@@ -751,32 +751,32 @@ msgstr "O ficheiro chave non empeza cun grupo"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "O ficheiro chave contén unha codificación non soportada '%s'" msgstr "O ficheiro chave contén unha codificación non soportada '%s'"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "O arquivo chave non ten un grupo '%s'" msgstr "O arquivo chave non ten un grupo '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "O arquivo chave non ten a chave '%s'" msgstr "O arquivo chave non ten a chave '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
"O arquivo chave contén a chave '%s' co valor '%s' o cal non está en UTF-8" "O arquivo chave contén a chave '%s' co valor '%s' o cal non está en UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"O arquivo chave contén a chave '%s' que ten un valor que non pode ser " "O arquivo chave contén a chave '%s' que ten un valor que non pode ser "
"interpretado." "interpretado."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -785,37 +785,37 @@ msgstr ""
"O arquivo chave contén a chave '%s' no grupo '%s' que ten un valor que non " "O arquivo chave contén a chave '%s' no grupo '%s' que ten un valor que non "
"pode ser interpretado." "pode ser interpretado."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "O arquivo chave non ten a chave '%s' no grupo '%s'" msgstr "O arquivo chave non ten a chave '%s' no grupo '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "O arquivo chave contén un carácter de escape ao final da liña" msgstr "O arquivo chave contén un carácter de escape ao final da liña"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "O arquivo chave contén a secuencia de escape inválida '%s'" msgstr "O arquivo chave contén a secuencia de escape inválida '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "O valor '%s' non pode interpretarse como un número." msgstr "O valor '%s' non pode interpretarse como un número."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "O valor enteiro '%s' está fora de rango" msgstr "O valor enteiro '%s' está fora de rango"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "O valor '%s' non pode interpretarse como un número flotante." msgstr "O valor '%s' non pode interpretarse como un número flotante."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "O valor '%s' non pode interpretarse como un booleano." msgstr "O valor '%s' non pode interpretarse como un booleano."

373
po/gu.po
View File

@@ -4,7 +4,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD.gu\n" "Project-Id-Version: glib.HEAD.gu\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-19 06:34+0200\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-06-19 11:10+0530\n" "PO-Revision-Date: 2006-06-19 11:10+0530\n"
"Last-Translator: Ankit Patel <ankit644@yahoo.com>\n" "Last-Translator: Ankit Patel <ankit644@yahoo.com>\n"
"Language-Team: Gujarati <indianoss-gujarati@lists.sourceforge.net>\n" "Language-Team: Gujarati <indianoss-gujarati@lists.sourceforge.net>\n"
@@ -12,7 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.9.1\n" "X-Generator: KBabel 1.9.1\n"
"Plural-Forms: nplurals=2; plural=(n!=1);\n\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n"
"\n"
"\n" "\n"
"\n" "\n"
"\n" "\n"
@@ -21,269 +22,279 @@ msgstr ""
"\n" "\n"
"\n" "\n"
#: ../glib/gbookmarkfile.c:716 ../glib/gbookmarkfile.c:793 #: glib/gbookmarkfile.c:716 glib/gbookmarkfile.c:793 glib/gbookmarkfile.c:872
#: ../glib/gbookmarkfile.c:872 ../glib/gbookmarkfile.c:919 #: glib/gbookmarkfile.c:919
#, c-format #, c-format
msgid "Unexpected attribute '%s' for element '%s'" msgid "Unexpected attribute '%s' for element '%s'"
msgstr "ઘટક '%s' માટે અનિચ્છનીય લક્ષણ '%s'" msgstr "ઘટક '%s' માટે અનિચ્છનીય લક્ષણ '%s'"
#: ../glib/gbookmarkfile.c:727 ../glib/gbookmarkfile.c:804 #: glib/gbookmarkfile.c:727 glib/gbookmarkfile.c:804 glib/gbookmarkfile.c:814
#: ../glib/gbookmarkfile.c:814 ../glib/gbookmarkfile.c:930 #: glib/gbookmarkfile.c:930
#, c-format #, c-format
msgid "Attribute '%s' of element '%s' not found" msgid "Attribute '%s' of element '%s' not found"
msgstr "ઘટક '%s' નું લક્ષણ '%s' મળ્યું નહિં" msgstr "ઘટક '%s' નું લક્ષણ '%s' મળ્યું નહિં"
#: ../glib/gbookmarkfile.c:1103 ../glib/gbookmarkfile.c:1168 #: glib/gbookmarkfile.c:1103 glib/gbookmarkfile.c:1168
#: ../glib/gbookmarkfile.c:1232 ../glib/gbookmarkfile.c:1242 #: glib/gbookmarkfile.c:1232 glib/gbookmarkfile.c:1242
#, c-format #, c-format
msgid "Unexpected tag '%s', tag '%s' expected" msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "અનિચ્છનીય ટેગ '%s', ટેગ '%s' ઈચ્છિત" msgstr "અનિચ્છનીય ટેગ '%s', ટેગ '%s' ઈચ્છિત"
#: ../glib/gbookmarkfile.c:1128 ../glib/gbookmarkfile.c:1142 #: glib/gbookmarkfile.c:1128 glib/gbookmarkfile.c:1142
#: ../glib/gbookmarkfile.c:1210 ../glib/gbookmarkfile.c:1262 #: glib/gbookmarkfile.c:1210 glib/gbookmarkfile.c:1262
#, c-format #, c-format
msgid "Unexpected tag '%s' inside '%s'" msgid "Unexpected tag '%s' inside '%s'"
msgstr "અનિચ્છનીય ટેગ '%s' એ '%s' માં" msgstr "અનિચ્છનીય ટેગ '%s' એ '%s' માં"
#: ../glib/gbookmarkfile.c:1792 #: glib/gbookmarkfile.c:1792
#, c-format
msgid "No valid bookmark file was be found in data dirs" msgid "No valid bookmark file was be found in data dirs"
msgstr "માહિતી ડિરેક્ટરીઓમાં કોઈમાન્ય બુકમાર્ક ફાઈલ મળી ન હતી" msgstr "માહિતી ડિરેક્ટરીઓમાં કોઈમાન્ય બુકમાર્ક ફાઈલ મળી ન હતી"
#: ../glib/gbookmarkfile.c:1993 #: glib/gbookmarkfile.c:1993
#, c-format #, c-format
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "URI '%s' માટેની બુકમાર્ક પહેલાથી જ હાજર છે" msgstr "URI '%s' માટેની બુકમાર્ક પહેલાથી જ હાજર છે"
#: ../glib/gbookmarkfile.c:2039 ../glib/gbookmarkfile.c:2196 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: ../glib/gbookmarkfile.c:2281 ../glib/gbookmarkfile.c:2362 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: ../glib/gbookmarkfile.c:2447 ../glib/gbookmarkfile.c:2530 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: ../glib/gbookmarkfile.c:2608 ../glib/gbookmarkfile.c:2687 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: ../glib/gbookmarkfile.c:2729 ../glib/gbookmarkfile.c:2826 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: ../glib/gbookmarkfile.c:2949 ../glib/gbookmarkfile.c:3139 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: ../glib/gbookmarkfile.c:3215 ../glib/gbookmarkfile.c:3367 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: ../glib/gbookmarkfile.c:3432 ../glib/gbookmarkfile.c:3522 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: ../glib/gbookmarkfile.c:3649 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "URI '%s' માટે કોઈ બુકમાર્ક મળી નહિં" msgstr "URI '%s' માટે કોઈ બુકમાર્ક મળી નહિં"
#: ../glib/gbookmarkfile.c:2371 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI '%s' માટે બુકમાર્કમાં કોઈ MIME પ્રકાર વ્યાખ્યાયિત નથી" msgstr "URI '%s' માટે બુકમાર્કમાં કોઈ MIME પ્રકાર વ્યાખ્યાયિત નથી"
#: ../glib/gbookmarkfile.c:2456 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI '%s' માટે બુકમાર્કમાં કોઈ ખાનગી ફ્લેગ વ્યાખ્યાયિત થયેલ નથી" msgstr "URI '%s' માટે બુકમાર્કમાં કોઈ ખાનગી ફ્લેગ વ્યાખ્યાયિત થયેલ નથી"
#: ../glib/gbookmarkfile.c:2835 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "URI '%s' માટે બુકમાર્કમાં કોઈ જૂથો સુયોજિત નથી" msgstr "URI '%s' માટે બુકમાર્કમાં કોઈ જૂથો સુયોજિત નથી"
#: ../glib/gbookmarkfile.c:3233 ../glib/gbookmarkfile.c:3377 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "'%s' નામવાળા કોઈ કાર્યક્રમે '%s' માટે બુકમાર્ક રજીસ્ટર કરી નથી" msgstr "'%s' નામવાળા કોઈ કાર્યક્રમે '%s' માટે બુકમાર્ક રજીસ્ટર કરી નથી"
#: ../glib/gconvert.c:404 ../glib/gconvert.c:482 ../glib/giochannel.c:1150 #: glib/gconvert.c:404 glib/gconvert.c:482 glib/giochannel.c:1150
#, c-format #, c-format
msgid "Conversion from character set '%s' to '%s' is not supported" msgid "Conversion from character set '%s' to '%s' is not supported"
msgstr "'%s' અક્ષર સમૂહમાંથી '%s' માં રુપાંતરણ માટે આધાર નથી" msgstr "'%s' અક્ષર સમૂહમાંથી '%s' માં રુપાંતરણ માટે આધાર નથી"
#: ../glib/gconvert.c:408 ../glib/gconvert.c:486 #: glib/gconvert.c:408 glib/gconvert.c:486
#, c-format #, c-format
msgid "Could not open converter from '%s' to '%s'" msgid "Could not open converter from '%s' to '%s'"
msgstr "'%s' માંથી '%s' માટેનો પરીવર્તક ખોલી શકતો નથી" msgstr "'%s' માંથી '%s' માટેનો પરીવર્તક ખોલી શકતો નથી"
#: ../glib/gconvert.c:602 ../glib/gconvert.c:991 ../glib/giochannel.c:1322 #: glib/gconvert.c:602 glib/gconvert.c:991 glib/giochannel.c:1322
#: ../glib/giochannel.c:1364 ../glib/giochannel.c:2206 ../glib/gutf8.c:943 #: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943
#: ../glib/gutf8.c:1392 #: glib/gutf8.c:1392
#, c-format
msgid "Invalid byte sequence in conversion input" msgid "Invalid byte sequence in conversion input"
msgstr "રુપાંતર ઈનપુટની બાઇડ શ્રેણી અપ્રમાણીત છે" msgstr "રુપાંતર ઈનપુટની બાઇડ શ્રેણી અપ્રમાણીત છે"
#: ../glib/gconvert.c:608 ../glib/gconvert.c:918 ../glib/giochannel.c:1329 #: glib/gconvert.c:608 glib/gconvert.c:918 glib/giochannel.c:1329
#: ../glib/giochannel.c:2218 #: glib/giochannel.c:2218
#, c-format #, c-format
msgid "Error during conversion: %s" msgid "Error during conversion: %s"
msgstr "રુપાંતર વખતે ભૂલ: %s" msgstr "રુપાંતર વખતે ભૂલ: %s"
#: ../glib/gconvert.c:643 ../glib/gutf8.c:939 ../glib/gutf8.c:1143 #: glib/gconvert.c:643 glib/gutf8.c:939 glib/gutf8.c:1143 glib/gutf8.c:1284
#: ../glib/gutf8.c:1284 ../glib/gutf8.c:1388 #: glib/gutf8.c:1388
#, c-format
msgid "Partial character sequence at end of input" msgid "Partial character sequence at end of input"
msgstr "ઈનપુટ ના છેડા પર અપૂર્ણ અક્ષર શ્રેણી છે" msgstr "ઈનપુટ ના છેડા પર અપૂર્ણ અક્ષર શ્રેણી છે"
#: ../glib/gconvert.c:893 #: glib/gconvert.c:893
#, c-format #, c-format
msgid "Cannot convert fallback '%s' to codeset '%s'" msgid "Cannot convert fallback '%s' to codeset '%s'"
msgstr "ફૈલબેક '%s' ને '%s' કોડના સમૂહમાં પરીવર્તિત કરી શકાતું નથી " msgstr "ફૈલબેક '%s' ને '%s' કોડના સમૂહમાં પરીવર્તિત કરી શકાતું નથી "
#: ../glib/gconvert.c:1702 #: glib/gconvert.c:1702
#, c-format #, c-format
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
msgstr "URI '%s' કે જે \"ફાઈલ\" યોજના વાપરે છે તે ચોક્કસ URI નથી" msgstr "URI '%s' કે જે \"ફાઈલ\" યોજના વાપરે છે તે ચોક્કસ URI નથી"
#: ../glib/gconvert.c:1712 #: glib/gconvert.c:1712
#, c-format #, c-format
msgid "The local file URI '%s' may not include a '#'" msgid "The local file URI '%s' may not include a '#'"
msgstr "સ્થાનીય ફાઈલ URI '%s' માં કદાય '#' સમાવિષ્ટ નથી" msgstr "સ્થાનીય ફાઈલ URI '%s' માં કદાય '#' સમાવિષ્ટ નથી"
#: ../glib/gconvert.c:1729 #: glib/gconvert.c:1729
#, c-format #, c-format
msgid "The URI '%s' is invalid" msgid "The URI '%s' is invalid"
msgstr "'%s' URI અયોગ્ય છે" msgstr "'%s' URI અયોગ્ય છે"
#: ../glib/gconvert.c:1741 #: glib/gconvert.c:1741
#, c-format #, c-format
msgid "The hostname of the URI '%s' is invalid" msgid "The hostname of the URI '%s' is invalid"
msgstr "'%s' URIનું યજમાનનુ નામ અયોગ્ય છે" msgstr "'%s' URIનું યજમાનનુ નામ અયોગ્ય છે"
#: ../glib/gconvert.c:1757 #: glib/gconvert.c:1757
#, c-format #, c-format
msgid "The URI '%s' contains invalidly escaped characters" msgid "The URI '%s' contains invalidly escaped characters"
msgstr "'%s' URI અયોગ્ય બહાર નીકળવાના અક્ષરો ધરાવે છે " msgstr "'%s' URI અયોગ્ય બહાર નીકળવાના અક્ષરો ધરાવે છે "
#: ../glib/gconvert.c:1852 #: glib/gconvert.c:1852
#, c-format #, c-format
msgid "The pathname '%s' is not an absolute path" msgid "The pathname '%s' is not an absolute path"
msgstr "'%s' પથ નામ એ ચોક્કસ પથ નથી" msgstr "'%s' પથ નામ એ ચોક્કસ પથ નથી"
#: ../glib/gconvert.c:1862 #: glib/gconvert.c:1862
#, c-format
msgid "Invalid hostname" msgid "Invalid hostname"
msgstr "અયોગ્ય યજમાન નામ" msgstr "અયોગ્ય યજમાન નામ"
#: ../glib/gdir.c:121 ../glib/gdir.c:141 #: glib/gdir.c:121 glib/gdir.c:141
#, c-format #, c-format
msgid "Error opening directory '%s': %s" msgid "Error opening directory '%s': %s"
msgstr "'%s' ડિરેક્ટરી ખોલતા ભૂલ: %s" msgstr "'%s' ડિરેક્ટરી ખોલતા ભૂલ: %s"
#: ../glib/gfileutils.c:572 ../glib/gfileutils.c:645 #: glib/gfileutils.c:572 glib/gfileutils.c:645
#, c-format #, c-format
msgid "Could not allocate %lu bytes to read file \"%s\"" msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "%lu બાઈટ \"%s\" ફાઈલ વાંચવા માટે આપવામાં આવતા નથી" msgstr "%lu બાઈટ \"%s\" ફાઈલ વાંચવા માટે આપવામાં આવતા નથી"
#: ../glib/gfileutils.c:587 #: glib/gfileutils.c:587
#, c-format #, c-format
msgid "Error reading file '%s': %s" msgid "Error reading file '%s': %s"
msgstr "'%s' ફાઈલ વાંચતી વખતની ભૂલ: %s" msgstr "'%s' ફાઈલ વાંચતી વખતની ભૂલ: %s"
#: ../glib/gfileutils.c:669 #: glib/gfileutils.c:669
#, c-format #, c-format
msgid "Failed to read from file '%s': %s" msgid "Failed to read from file '%s': %s"
msgstr "'%s' ફાઈલમાંથી વાંચવામા નિષ્ફળતા: %s" msgstr "'%s' ફાઈલમાંથી વાંચવામા નિષ્ફળતા: %s"
#: ../glib/gfileutils.c:720 ../glib/gfileutils.c:807 #: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format #, c-format
msgid "Failed to open file '%s': %s" msgid "Failed to open file '%s': %s"
msgstr "'%s' ફાઈલ ખોલવામાં નિષ્ફળતા : %s" msgstr "'%s' ફાઈલ ખોલવામાં નિષ્ફળતા : %s"
#: ../glib/gfileutils.c:737 ../glib/gmappedfile.c:133 #: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format #, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "'%s' ફાઈલની લાક્ષણિકતા મેળવતી વખતે નિષ્ફળતા: fstate() નિષ્ફળ: %s" msgstr "'%s' ફાઈલની લાક્ષણિકતા મેળવતી વખતે નિષ્ફળતા: fstate() નિષ્ફળ: %s"
#: ../glib/gfileutils.c:771 #: glib/gfileutils.c:771
#, c-format #, c-format
msgid "Failed to open file '%s': fdopen() failed: %s" msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "'%s' ફાઈલ ખોલવામાં નિષ્ફળતા: fdopen() નિષ્ફળ: %s" msgstr "'%s' ફાઈલ ખોલવામાં નિષ્ફળતા: fdopen() નિષ્ફળ: %s"
#: ../glib/gfileutils.c:905 #: glib/gfileutils.c:905
#, c-format #, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "ફાઈલ '%s' નું નામ '%s' માં બદલવામાં નિષ્ફળ: g_rename() નિષ્ફળ: %s" msgstr "ફાઈલ '%s' નું નામ '%s' માં બદલવામાં નિષ્ફળ: g_rename() નિષ્ફળ: %s"
#: ../glib/gfileutils.c:946 ../glib/gfileutils.c:1404 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "'%s' ફાઈલ બનાવવામાં નિષ્ફળતા : %s" msgstr "'%s' ફાઈલ બનાવવામાં નિષ્ફળતા : %s"
#: ../glib/gfileutils.c:960 #: glib/gfileutils.c:960
#, c-format #, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s" msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "ફાઈલ '%s' ને લખવા માટે ખોલવામાં નિષ્ફળ: fdopen() નિષ્ફળ: %s" msgstr "ફાઈલ '%s' ને લખવા માટે ખોલવામાં નિષ્ફળ: fdopen() નિષ્ફળ: %s"
#: ../glib/gfileutils.c:985 #: glib/gfileutils.c:985
#, c-format #, c-format
msgid "Failed to write file '%s': fwrite() failed: %s" msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "ફાઈલ '%s' પર લખવામાં નિષ્ફળ: fwrite() નિષ્ફળ: %s" msgstr "ફાઈલ '%s' પર લખવામાં નિષ્ફળ: fwrite() નિષ્ફળ: %s"
#: ../glib/gfileutils.c:1004 #: glib/gfileutils.c:1004
#, c-format #, c-format
msgid "Failed to close file '%s': fclose() failed: %s" msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "ફાઈલ '%s' બંધ કરવામાં નિષ્ફળ: fclose() નિષ્ફળ: %s" msgstr "ફાઈલ '%s' બંધ કરવામાં નિષ્ફળ: fclose() નિષ્ફળ: %s"
#: ../glib/gfileutils.c:1122 #: glib/gfileutils.c:1122
#, c-format #, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "વર્તમાન ફાઈલ '%s' દૂર કરી શકાઈ નહિં: g_unlink() નિષ્ફળ: %s" msgstr "વર્તમાન ફાઈલ '%s' દૂર કરી શકાઈ નહિં: g_unlink() નિષ્ફળ: %s"
#: ../glib/gfileutils.c:1366 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr " '%s' ટેમ્પલેટ અયોગ્ય છે, તે '%s' ધરાવતું નથી" msgstr " '%s' ટેમ્પલેટ અયોગ્ય છે, તે '%s' ધરાવતું નથી"
#: ../glib/gfileutils.c:1379 #: glib/gfileutils.c:1379
#, c-format #, c-format
msgid "Template '%s' doesn't contain XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "ટેમ્પલેટ '%s' એ XXXXXX સમાવતું નથી" msgstr "ટેમ્પલેટ '%s' એ XXXXXX સમાવતું નથી"
#: ../glib/gfileutils.c:1854 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "'%s' સાંકેતિક કડી વાંચવામાં નિષ્ફળતા: %s" msgstr "'%s' સાંકેતિક કડી વાંચવામાં નિષ્ફળતા: %s"
#: ../glib/gfileutils.c:1875 #: glib/gfileutils.c:1875
#, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "સાંકેતિક કડી આધાર આપતી નથી" msgstr "સાંકેતિક કડી આધાર આપતી નથી"
#: ../glib/giochannel.c:1154 #: glib/giochannel.c:1154
#, c-format #, c-format
msgid "Could not open converter from '%s' to '%s': %s" msgid "Could not open converter from '%s' to '%s': %s"
msgstr "'%s' માંથી '%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" msgid "Can't do a raw read in g_io_channel_read_line_string"
msgstr "g_10_channe_lread_line_string માં આડી હરોળ માં વાંચી શકાતું નથી" msgstr "g_10_channe_lread_line_string માં આડી હરોળ માં વાંચી શકાતું નથી"
#: ../glib/giochannel.c:1546 ../glib/giochannel.c:1803 #: glib/giochannel.c:1546 glib/giochannel.c:1803 glib/giochannel.c:1889
#: ../glib/giochannel.c:1889 #, c-format
msgid "Leftover unconverted data in read buffer" msgid "Leftover unconverted data in read buffer"
msgstr "વાંચવા માટેના બફર(થોડા સમય માટેનું સંગ્રહસ્થાન) માં ઢાંકેલી ન હોય તે માહિતી છોડી દીધેલ છે" msgstr ""
"વાંચવા માટેના બફર(થોડા સમય માટેનું સંગ્રહસ્થાન) માં ઢાંકેલી ન હોય તે માહિતી છોડી દીધેલ છે"
#: ../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" msgid "Channel terminates in a partial character"
msgstr "માધ્યમ અપુર્ણ અક્ષરથી અંત પામે છે" 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" msgid "Can't do a raw read in g_io_channel_read_to_end"
msgstr "g_io_channel_read_to_end માં આડી હરોળ વાંચી શકાતી નથી" msgstr "g_io_channel_read_to_end માં આડી હરોળ વાંચી શકાતી નથી"
#: ../glib/gmappedfile.c:116 #: glib/gmappedfile.c:116
#, c-format #, c-format
msgid "Failed to open file '%s': open() failed: %s" msgid "Failed to open file '%s': open() failed: %s"
msgstr "ફાઈલ '%s' ખોલવામાં નિષ્ફળ: open() નિષ્ફળ: %s" msgstr "ફાઈલ '%s' ખોલવામાં નિષ્ફળ: open() નિષ્ફળ: %s"
#: ../glib/gmappedfile.c:193 #: glib/gmappedfile.c:193
#, c-format #, c-format
msgid "Failed to map file '%s': mmap() failed: %s" msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "ફાઈલ '%s' નો નકશો કરવામાં નિષ્ફળ: mmap() નિષ્ફળ: %s" msgstr "ફાઈલ '%s' નો નકશો કરવામાં નિષ્ફળ: mmap() નિષ્ફળ: %s"
#: ../glib/gmarkup.c:227 #: glib/gmarkup.c:227
#, c-format #, c-format
msgid "Error on line %d char %d: %s" msgid "Error on line %d char %d: %s"
msgstr "%d લીટી પર %d અક્ષરમાં ભૂલ: %s" msgstr "%d લીટી પર %d અક્ષરમાં ભૂલ: %s"
#: ../glib/gmarkup.c:325 #: glib/gmarkup.c:325
#, c-format #, c-format
msgid "Error on line %d: %s" msgid "Error on line %d: %s"
msgstr "%d લીટી પર ભૂલ: %s" msgstr "%d લીટી પર ભૂલ: %s"
#: ../glib/gmarkup.c:429 #: glib/gmarkup.c:429
msgid "Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;" msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "'&;' વસ્તુ ખાલી દેખાય છે: યોગ્ય વસ્તુઓ છે:&amp; &quot; &lt; &gt; &apos;" msgstr "'&;' વસ્તુ ખાલી દેખાય છે: યોગ્ય વસ્તુઓ છે:&amp; &quot; &lt; &gt; &apos;"
#: ../glib/gmarkup.c:439 #: glib/gmarkup.c:439
#, c-format #, c-format
msgid "" msgid ""
"Character '%s' is not valid at the start of an entity name; the & character " "Character '%s' is not valid at the start of an entity name; the & character "
@@ -293,17 +304,17 @@ msgstr ""
"વસ્તુ નામ શરુ થાય ત્યાં %s' અક્ષર યોગ્ય નથી: & અક્ષર વસ્તુની શરુઆત કરે છે; જો તે એમપરસંડ " "વસ્તુ નામ શરુ થાય ત્યાં %s' અક્ષર યોગ્ય નથી: & અક્ષર વસ્તુની શરુઆત કરે છે; જો તે એમપરસંડ "
"વસ્તુ ને આધાર ન આપે તો તે &amp; તરીકે દર્શાવો" "વસ્તુ ને આધાર ન આપે તો તે &amp; તરીકે દર્શાવો"
#: ../glib/gmarkup.c:473 #: glib/gmarkup.c:473
#, c-format #, c-format
msgid "Character '%s' is not valid inside an entity name" msgid "Character '%s' is not valid inside an entity name"
msgstr " વસ્તુ નામની અંદર '%s' અક્ષર યોગ્ય નથી" msgstr " વસ્તુ નામની અંદર '%s' અક્ષર યોગ્ય નથી"
#: ../glib/gmarkup.c:510 #: glib/gmarkup.c:510
#, c-format #, c-format
msgid "Entity name '%s' is not known" msgid "Entity name '%s' is not known"
msgstr "'%s' વસ્તુ નામ જાણીતુ નથી" msgstr "'%s' વસ્તુ નામ જાણીતુ નથી"
#: ../glib/gmarkup.c:521 #: glib/gmarkup.c:521
msgid "" msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand " "Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;" "character without intending to start an entity - escape ampersand as &amp;"
@@ -311,7 +322,7 @@ msgstr ""
"વસ્તુ નો સેમીકોલન સાથે અંત થતો નથી; ઘણી વખતે એમપરસંડ(&) અક્ષર ચિન્હ વગર તમે વસ્તુ વાપરી " "વસ્તુ નો સેમીકોલન સાથે અંત થતો નથી; ઘણી વખતે એમપરસંડ(&) અક્ષર ચિન્હ વગર તમે વસ્તુ વાપરી "
"શકો છો- એમપરસંડ &amp; તરીકે લો" "શકો છો- એમપરસંડ &amp; તરીકે લો"
#: ../glib/gmarkup.c:574 #: glib/gmarkup.c:574
#, c-format #, c-format
msgid "" msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character " "Failed to parse '%-.*s', which should have been a digit inside a character "
@@ -320,16 +331,16 @@ msgstr ""
"'%-.*s' નું પદચ્છેદન કરવામાં નિષ્ફળ, કે જે અક્ષર સંદર્ભમાં અંક હોવો જોઈએ (&#234; ઉદાહરણ " "'%-.*s' નું પદચ્છેદન કરવામાં નિષ્ફળ, કે જે અક્ષર સંદર્ભમાં અંક હોવો જોઈએ (&#234; ઉદાહરણ "
"તરીકે) - કદાચ અંક ખૂબ લાંબો હોય" "તરીકે) - કદાચ અંક ખૂબ લાંબો હોય"
#: ../glib/gmarkup.c:599 #: glib/gmarkup.c:599
#, c-format #, c-format
msgid "Character reference '%-.*s' does not encode a permitted character" msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "અક્ષર સંદર્ભ '%-.*s' પરવાનગી આપેલ અક્ષરને એનકોડ કરતો નથી" msgstr "અક્ષર સંદર્ભ '%-.*s' પરવાનગી આપેલ અક્ષરને એનકોડ કરતો નથી"
#: ../glib/gmarkup.c:614 #: glib/gmarkup.c:614
msgid "Empty character reference; should include a digit such as &#454;" msgid "Empty character reference; should include a digit such as &#454;"
msgstr "ખાલી અક્ષર સંદર્ભ; સંખ્યા જેવી કે &#454; ને સમાવતી હોવી જોઇએ " msgstr "ખાલી અક્ષર સંદર્ભ; સંખ્યા જેવી કે &#454; ને સમાવતી હોવી જોઇએ "
#: ../glib/gmarkup.c:624 #: glib/gmarkup.c:624
msgid "" msgid ""
"Character reference did not end with a semicolon; most likely you used an " "Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand " "ampersand character without intending to start an entity - escape ampersand "
@@ -338,42 +349,43 @@ msgstr ""
"અક્ષર સંદર્ભ અર્ધવિરામ થી અંત થતો નથી; તમે વસ્તુ શરુ કરવા એમપરસંડ અક્ષર ને વાપરો એમપરસંડ " "અક્ષર સંદર્ભ અર્ધવિરામ થી અંત થતો નથી; તમે વસ્તુ શરુ કરવા એમપરસંડ અક્ષર ને વાપરો એમપરસંડ "
"ને &amp; તરીકે લો" "ને &amp; તરીકે લો"
#: ../glib/gmarkup.c:710 #: glib/gmarkup.c:710
msgid "Unfinished entity reference" msgid "Unfinished entity reference"
msgstr "અપુર્ણ વસ્તુ સંદર્ભ " msgstr "અપુર્ણ વસ્તુ સંદર્ભ "
#: ../glib/gmarkup.c:716 #: glib/gmarkup.c:716
msgid "Unfinished character reference" msgid "Unfinished character reference"
msgstr "અપુર્ણ અક્ષર સંદર્ભ " msgstr "અપુર્ણ અક્ષર સંદર્ભ "
#: ../glib/gmarkup.c:959 ../glib/gmarkup.c:987 ../glib/gmarkup.c:1018 #: glib/gmarkup.c:959 glib/gmarkup.c:987 glib/gmarkup.c:1018
msgid "Invalid UTF-8 encoded text" msgid "Invalid UTF-8 encoded text"
msgstr "અયોગ્ય યુટીએફ-૮ સંગ્રહ-પધ્ધતિવાળુ લખાણ" msgstr "અયોગ્ય યુટીએફ-૮ સંગ્રહ-પધ્ધતિવાળુ લખાણ"
#: ../glib/gmarkup.c:1054 #: glib/gmarkup.c:1054
msgid "Document must begin with an element (e.g. <book>)" msgid "Document must begin with an element (e.g. <book>)"
msgstr "દસ્તાવેજ કોઈ વસ્તુ સાથે શરુ થાય તે જરુરી છે(ઉદાહરણ <book>)" msgstr "દસ્તાવેજ કોઈ વસ્તુ સાથે શરુ થાય તે જરુરી છે(ઉદાહરણ <book>)"
#: ../glib/gmarkup.c:1094 #: glib/gmarkup.c:1094
#, c-format #, c-format
msgid "" msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an " "'%s' is not a valid character following a '<' character; it may not begin an "
"element name" "element name"
msgstr "'%s' એ '<' અક્ષર પછી આવતો યોગ્ય અક્ષર નથી; તે કોઈ વસ્તુના નામથી શરુ થતુ નથી" msgstr "'%s' એ '<' અક્ષર પછી આવતો યોગ્ય અક્ષર નથી; તે કોઈ વસ્તુના નામથી શરુ થતુ નથી"
#: ../glib/gmarkup.c:1158 #: glib/gmarkup.c:1158
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected a '>' character to end the start tag of element " "Odd character '%s', expected a '>' character to end the start tag of element "
"'%s'" "'%s'"
msgstr "અસંગત અક્ષર '%s', વસ્તુ '%s' ની શરુઆત ટેગ ને સમાપ્ત કરવા '>' અક્ષર ની આશા છે" msgstr "અસંગત અક્ષર '%s', વસ્તુ '%s' ની શરુઆત ટેગ ને સમાપ્ત કરવા '>' અક્ષર ની આશા છે"
#: ../glib/gmarkup.c:1247 #: glib/gmarkup.c:1247
#, c-format #, 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' લાક્ષણિકતા નામ પછી '=' જરુરી છે" msgstr "અસંગત અક્ષર '%s', '%s' વસ્તુના '%s' લાક્ષણિકતા નામ પછી '=' જરુરી છે"
#: ../glib/gmarkup.c:1289 #: glib/gmarkup.c:1289
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of " "Odd character '%s', expected a '>' or '/' character to end the start tag of "
@@ -383,7 +395,7 @@ msgstr ""
"અસંગત અક્ષર '%s': '%s' વસ્તુના અંતમાં '>' અથવા '/' અથવા પરીમાણનો વિકલ્પ જરુરી છે; તમે " "અસંગત અક્ષર '%s': '%s' વસ્તુના અંતમાં '>' અથવા '/' અથવા પરીમાણનો વિકલ્પ જરુરી છે; તમે "
"કદાય અયોગ્ય અક્ષર લાક્ષણિકતાના નામો વાપર્યો છે" "કદાય અયોગ્ય અક્ષર લાક્ષણિકતાના નામો વાપર્યો છે"
#: ../glib/gmarkup.c:1378 #: glib/gmarkup.c:1378
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when " "Odd character '%s', expected an open quote mark after the equals sign when "
@@ -392,46 +404,46 @@ msgstr ""
"અસંગત અક્ષર '%s, '%s' વસ્તુ માટે '%s' લાક્ષણિકતાના મુલ્ય આપતી વખતે બરાબરની નિશાની " "અસંગત અક્ષર '%s, '%s' વસ્તુ માટે '%s' લાક્ષણિકતાના મુલ્ય આપતી વખતે બરાબરની નિશાની "
"પછી શરુ થતો અવતરણ ચિહ્ન જરુરી છે" "પછી શરુ થતો અવતરણ ચિહ્ન જરુરી છે"
#: ../glib/gmarkup.c:1523 #: glib/gmarkup.c:1523
#, c-format #, c-format
msgid "" msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not " "'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name" "begin an element name"
msgstr "'%s' એ '<' અક્ષર પછીનો યોગ્ય અક્ષર નથી ; '%s' ક્દાચ વસ્તુ નામ સાથે શરુ થતુ નથી" msgstr "'%s' એ '<' અક્ષર પછીનો યોગ્ય અક્ષર નથી ; '%s' ક્દાચ વસ્તુ નામ સાથે શરુ થતુ નથી"
#: ../glib/gmarkup.c:1563 #: glib/gmarkup.c:1563
#, c-format #, c-format
msgid "" msgid ""
"'%s' is not a valid character following the close element name '%s'; the " "'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'" "allowed character is '>'"
msgstr "'%s' એ '%s' વસ્તુનામ પછીનો બંધ કરવાનો યોગ્ય અક્ષર નથી; '>' એ યોગ્ય અક્ષર છે. " msgstr "'%s' એ '%s' વસ્તુનામ પછીનો બંધ કરવાનો યોગ્ય અક્ષર નથી; '>' એ યોગ્ય અક્ષર છે. "
#: ../glib/gmarkup.c:1574 #: glib/gmarkup.c:1574
#, c-format #, c-format
msgid "Element '%s' was closed, no element is currently open" msgid "Element '%s' was closed, no element is currently open"
msgstr "'%s' વસ્તુ બંધ હતી, અત્યારે એક પણ વસ્તુ ખુલ્લી નથી" msgstr "'%s' વસ્તુ બંધ હતી, અત્યારે એક પણ વસ્તુ ખુલ્લી નથી"
#: ../glib/gmarkup.c:1583 #: glib/gmarkup.c:1583
#, c-format #, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'" msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "'%s' વસ્તુ બંધ હતી, પણ અત્યારે '%s'એ ખુલ્લી વસ્તુ છે" msgstr "'%s' વસ્તુ બંધ હતી, પણ અત્યારે '%s'એ ખુલ્લી વસ્તુ છે"
#: ../glib/gmarkup.c:1749 #: glib/gmarkup.c:1749
msgid "Document was empty or contained only whitespace" msgid "Document was empty or contained only whitespace"
msgstr "દસ્તાવેજ ખાલી છે અથવા ફક્ત ખાલી જ્ગ્યા ધરાવે છે" msgstr "દસ્તાવેજ ખાલી છે અથવા ફક્ત ખાલી જ્ગ્યા ધરાવે છે"
#: ../glib/gmarkup.c:1763 #: glib/gmarkup.c:1763
msgid "Document ended unexpectedly just after an open angle bracket '<'" msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "'<' ચિન્હ વાપરતા પછી દસ્તાવેજનો અણધારી રીતે અંત આવે છે" msgstr "'<' ચિન્હ વાપરતા પછી દસ્તાવેજનો અણધારી રીતે અંત આવે છે"
#: ../glib/gmarkup.c:1771 ../glib/gmarkup.c:1815 #: glib/gmarkup.c:1771 glib/gmarkup.c:1815
#, c-format #, c-format
msgid "" msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last " "Document ended unexpectedly with elements still open - '%s' was the last "
"element opened" "element opened"
msgstr "વસ્તુ ખુલ્લી હોવા છતાં દસ્તાવેજનો અણધારી રીતે અંત આવે છે- છેલ્લે ખોલેલ વસ્તુ '%s' છે" msgstr "વસ્તુ ખુલ્લી હોવા છતાં દસ્તાવેજનો અણધારી રીતે અંત આવે છે- છેલ્લે ખોલેલ વસ્તુ '%s' છે"
#: ../glib/gmarkup.c:1779 #: glib/gmarkup.c:1779
#, c-format #, c-format
msgid "" msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending " "Document ended unexpectedly, expected to see a close angle bracket ending "
@@ -440,19 +452,19 @@ msgstr ""
"દસ્તાવેજનો અણધારી રીતે અંત થાય છે, તે અંતિમ ટેગ <%s/> માં કૌંસને બંધ કરતુ ખૂણાનુ ચિન્હ " "દસ્તાવેજનો અણધારી રીતે અંત થાય છે, તે અંતિમ ટેગ <%s/> માં કૌંસને બંધ કરતુ ખૂણાનુ ચિન્હ "
"જોવા માગે છે" "જોવા માગે છે"
#: ../glib/gmarkup.c:1785 #: glib/gmarkup.c:1785
msgid "Document ended unexpectedly inside an element name" msgid "Document ended unexpectedly inside an element name"
msgstr "વસ્તુ નામની અંદર દસ્તાવેજનો અણધારી રીતે અંત થાય છે" msgstr "વસ્તુ નામની અંદર દસ્તાવેજનો અણધારી રીતે અંત થાય છે"
#: ../glib/gmarkup.c:1790 #: glib/gmarkup.c:1790
msgid "Document ended unexpectedly inside an attribute name" msgid "Document ended unexpectedly inside an attribute name"
msgstr "લાક્ષણિકતાના નામની અંદર દસ્તાવેજનો અણધારી રીતે અંત થાય છે" msgstr "લાક્ષણિકતાના નામની અંદર દસ્તાવેજનો અણધારી રીતે અંત થાય છે"
#: ../glib/gmarkup.c:1795 #: glib/gmarkup.c:1795
msgid "Document ended unexpectedly inside an element-opening tag." msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "વસ્તુની શરુઆતની ટેગમા દસ્તાવેજનો અણધારી રીતે અંત થાય છે" msgstr "વસ્તુની શરુઆતની ટેગમા દસ્તાવેજનો અણધારી રીતે અંત થાય છે"
#: ../glib/gmarkup.c:1801 #: glib/gmarkup.c:1801
msgid "" msgid ""
"Document ended unexpectedly after the equals sign following an attribute " "Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value" "name; no attribute value"
@@ -460,267 +472,278 @@ msgstr ""
"લાક્ષણિકતા નામ પછીની બરાબરની નિશાની પછી દસ્તાવેજ નો અણધારી રીતે અંત થાય છે. " "લાક્ષણિકતા નામ પછીની બરાબરની નિશાની પછી દસ્તાવેજ નો અણધારી રીતે અંત થાય છે. "
"લાક્ષણિકતાના મુલ્ય નથી" "લાક્ષણિકતાના મુલ્ય નથી"
#: ../glib/gmarkup.c:1808 #: glib/gmarkup.c:1808
msgid "Document ended unexpectedly while inside an attribute value" msgid "Document ended unexpectedly while inside an attribute value"
msgstr "લાક્ષણિકતા મુલ્ય અંદર હોવા છતાં દસ્તાવેજ નો અણધારી રીતે અંત થાય છે" msgstr "લાક્ષણિકતા મુલ્ય અંદર હોવા છતાં દસ્તાવેજ નો અણધારી રીતે અંત થાય છે"
#: ../glib/gmarkup.c:1823 #: glib/gmarkup.c:1823
#, c-format #, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'" msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "'%s' વસ્તુના બંદ ટેગની અંદર દસ્તાવેજનો અણધારી રીતે અંત થાય છે" msgstr "'%s' વસ્તુના બંદ ટેગની અંદર દસ્તાવેજનો અણધારી રીતે અંત થાય છે"
#: ../glib/gmarkup.c:1829 #: glib/gmarkup.c:1829
msgid "Document ended unexpectedly inside a comment or processing instruction" msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "ટિપ્પણી અથવા પ્રક્રિયા સુચનાની અંદર અણધારી રીતે દસ્તાવેજનો અંત થાય છે" msgstr "ટિપ્પણી અથવા પ્રક્રિયા સુચનાની અંદર અણધારી રીતે દસ્તાવેજનો અંત થાય છે"
#: ../glib/gshell.c:70 #: glib/gshell.c:70
#, c-format
msgid "Quoted text doesn't begin with a quotation mark" msgid "Quoted text doesn't begin with a quotation mark"
msgstr "અવતરણ ચિહ્નવાળુ વાક્ય અવતરણ ચિહ્નથી શરુ થતુ નથી" msgstr "અવતરણ ચિહ્નવાળુ વાક્ય અવતરણ ચિહ્નથી શરુ થતુ નથી"
#: ../glib/gshell.c:160 #: glib/gshell.c:160
#, c-format
msgid "Unmatched quotation mark in command line or other shell-quoted text" msgid "Unmatched quotation mark in command line or other shell-quoted text"
msgstr "આદેશ વાક્યમાં અથવા બીજા શેલ ચિહ્નિત બંધબેસતા ન હોય તેવા અવતરણ ચિહ્ન" msgstr "આદેશ વાક્યમાં અથવા બીજા શેલ ચિહ્નિત બંધબેસતા ન હોય તેવા અવતરણ ચિહ્ન"
#: ../glib/gshell.c:538 #: glib/gshell.c:538
#, c-format #, c-format
msgid "Text ended just after a '\\' character. (The text was '%s')" msgid "Text ended just after a '\\' character. (The text was '%s')"
msgstr "લખાણનો '\\' અક્ષર પછી તરત જ અંત આવે છે (લખાણનો '%s' હતુ)" msgstr "લખાણનો '\\' અક્ષર પછી તરત જ અંત આવે છે (લખાણનો '%s' હતુ)"
#: ../glib/gshell.c:545 #: glib/gshell.c:545
#, c-format #, c-format
msgid "Text ended before matching quote was found for %c. (The text was '%s')" msgid "Text ended before matching quote was found for %c. (The text was '%s')"
msgstr "%c માટે અવતરણ ચિહ્ન મળે તે પહેલા લખાણનો અંત થાય છે(લખાણ '%s' હતુ)" msgstr "%c માટે અવતરણ ચિહ્ન મળે તે પહેલા લખાણનો અંત થાય છે(લખાણ '%s' હતુ)"
#: ../glib/gshell.c:557 #: glib/gshell.c:557
#, c-format
msgid "Text was empty (or contained only whitespace)" msgid "Text was empty (or contained only whitespace)"
msgstr "વાક્ય ખાલી છે (અથવા તેમાં ફક્ત ખાલી જગ્યા છે)" msgstr "વાક્ય ખાલી છે (અથવા તેમાં ફક્ત ખાલી જગ્યા છે)"
#: ../glib/gspawn-win32.c:273 #: glib/gspawn-win32.c:273
#, c-format
msgid "Failed to read data from child process" msgid "Failed to read data from child process"
msgstr "બાળ-પ્રક્રિયા માંથી માહિતી વાંચવા માં નિષ્ફળ છે" msgstr "બાળ-પ્રક્રિયા માંથી માહિતી વાંચવા માં નિષ્ફળ છે"
#: ../glib/gspawn-win32.c:288 ../glib/gspawn.c:1361 #: glib/gspawn-win32.c:288 glib/gspawn.c:1361
#, c-format #, c-format
msgid "Failed to create pipe for communicating with child process (%s)" msgid "Failed to create pipe for communicating with child process (%s)"
msgstr " (%s) બાળપ્રક્રિયા સાથે સંપર્ક માટે પાઈપ બનાવવામાં નિષ્ફળ" msgstr " (%s) બાળપ્રક્રિયા સાથે સંપર્ક માટે પાઈપ બનાવવામાં નિષ્ફળ"
#: ../glib/gspawn-win32.c:326 ../glib/gspawn.c:1025 #: glib/gspawn-win32.c:326 glib/gspawn.c:1025
#, c-format #, c-format
msgid "Failed to read from child pipe (%s)" msgid "Failed to read from child pipe (%s)"
msgstr "બાળ પાઈપ (%s)માંથી વાંચવામાં નિષ્ફળ" msgstr "બાળ પાઈપ (%s)માંથી વાંચવામાં નિષ્ફળ"
#: ../glib/gspawn-win32.c:352 ../glib/gspawn.c:1230 #: glib/gspawn-win32.c:352 glib/gspawn.c:1230
#, c-format #, c-format
msgid "Failed to change to directory '%s' (%s)" msgid "Failed to change to directory '%s' (%s)"
msgstr "'%s' ડિરેક્ટરી બદલવામાં નિષ્ફળ(%s)" msgstr "'%s' ડિરેક્ટરી બદલવામાં નિષ્ફળ(%s)"
#: ../glib/gspawn-win32.c:358 ../glib/gspawn-win32.c:578 #: glib/gspawn-win32.c:358 glib/gspawn-win32.c:578
#, c-format #, c-format
msgid "Failed to execute child process (%s)" msgid "Failed to execute child process (%s)"
msgstr " (%s) બાળપ્રક્રિયા ચલાવવામાં નિષ્ફળ" msgstr " (%s) બાળપ્રક્રિયા ચલાવવામાં નિષ્ફળ"
#: ../glib/gspawn-win32.c:468 ../glib/gspawn-win32.c:524 #: glib/gspawn-win32.c:468 glib/gspawn-win32.c:524
#, c-format #, c-format
msgid "Invalid program name: %s" msgid "Invalid program name: %s"
msgstr "અયોગ્ય કાર્યક્રમ નામ: %s" msgstr "અયોગ્ય કાર્યક્રમ નામ: %s"
#: ../glib/gspawn-win32.c:478 ../glib/gspawn-win32.c:534 #: glib/gspawn-win32.c:478 glib/gspawn-win32.c:534 glib/gspawn-win32.c:777
#: ../glib/gspawn-win32.c:777 ../glib/gspawn-win32.c:832 #: glib/gspawn-win32.c:832 glib/gspawn-win32.c:1367
#: ../glib/gspawn-win32.c:1367
#, c-format #, c-format
msgid "Invalid string in argument vector at %d: %s" msgid "Invalid string in argument vector at %d: %s"
msgstr "દલીલ વેક્ટરમાં %d આગળ અયોગ્ય શબ્દમાળા: %s" msgstr "દલીલ વેક્ટરમાં %d આગળ અયોગ્ય શબ્દમાળા: %s"
#: ../glib/gspawn-win32.c:489 ../glib/gspawn-win32.c:545 #: glib/gspawn-win32.c:489 glib/gspawn-win32.c:545 glib/gspawn-win32.c:791
#: ../glib/gspawn-win32.c:791 ../glib/gspawn-win32.c:845 #: glib/gspawn-win32.c:845 glib/gspawn-win32.c:1400
#: ../glib/gspawn-win32.c:1400
#, c-format #, c-format
msgid "Invalid string in environment: %s" msgid "Invalid string in environment: %s"
msgstr "પર્યાવરણમાં અયોગ્ય શબ્દમાળા: %s" msgstr "પર્યાવરણમાં અયોગ્ય શબ્દમાળા: %s"
#: ../glib/gspawn-win32.c:773 ../glib/gspawn-win32.c:828 #: glib/gspawn-win32.c:773 glib/gspawn-win32.c:828 glib/gspawn-win32.c:1348
#: ../glib/gspawn-win32.c:1348
#, c-format #, c-format
msgid "Invalid working directory: %s" msgid "Invalid working directory: %s"
msgstr "અયોગ્ય કામ આપતી ડિરેક્ટરી: %s" msgstr "અયોગ્ય કામ આપતી ડિરેક્ટરી: %s"
#: ../glib/gspawn-win32.c:887 #: glib/gspawn-win32.c:887
#, c-format #, c-format
msgid "Failed to execute helper program (%s)" msgid "Failed to execute helper program (%s)"
msgstr "મદદગાર કાર્યક્રમ (%s) ચલાવવામાં નિષ્ફળ" msgstr "મદદગાર કાર્યક્રમ (%s) ચલાવવામાં નિષ્ફળ"
#: ../glib/gspawn-win32.c:1087 #: glib/gspawn-win32.c:1087
#, c-format
msgid "" msgid ""
"Unexpected error in g_io_channel_win32_poll() reading data from a child " "Unexpected error in g_io_channel_win32_poll() reading data from a child "
"process" "process"
msgstr "બાળ-પ્રક્રિયામાંથી માહિતી વાંચતી વખતે g_io_channel_win32_poll() માં આવતી અણધારી ભૂલ" msgstr ""
"બાળ-પ્રક્રિયામાંથી માહિતી વાંચતી વખતે g_io_channel_win32_poll() માં આવતી અણધારી ભૂલ"
#: ../glib/gspawn.c:165 #: glib/gspawn.c:165
#, c-format #, c-format
msgid "Failed to read data from child process (%s)" msgid "Failed to read data from child process (%s)"
msgstr "(%s) બાળપ્રક્રિયામાંથી માહિતી વાંચવામાં નિષ્ફળ" msgstr "(%s) બાળપ્રક્રિયામાંથી માહિતી વાંચવામાં નિષ્ફળ"
#: ../glib/gspawn.c:297 #: glib/gspawn.c:297
#, c-format #, c-format
msgid "Unexpected error in select() reading data from a child process (%s)" msgid "Unexpected error in select() reading data from a child process (%s)"
msgstr "(%s)બાળપ્રક્રિયામાંથી માહિતી વાંચતી વખતે select() માં આવતી અણધારી ભૂલ" msgstr "(%s)બાળપ્રક્રિયામાંથી માહિતી વાંચતી વખતે select() માં આવતી અણધારી ભૂલ"
#: ../glib/gspawn.c:380 #: glib/gspawn.c:380
#, c-format #, c-format
msgid "Unexpected error in waitpid() (%s)" msgid "Unexpected error in waitpid() (%s)"
msgstr "(%s) waitpid() માં અાવતી અણાધારી ભૂલ" msgstr "(%s) waitpid() માં અાવતી અણાધારી ભૂલ"
#: ../glib/gspawn.c:1090 #: glib/gspawn.c:1090
#, c-format #, c-format
msgid "Failed to fork (%s)" msgid "Failed to fork (%s)"
msgstr "(%s) બાળપ્રક્રિયા બનાવવામાં નિષ્ફળ" msgstr "(%s) બાળપ્રક્રિયા બનાવવામાં નિષ્ફળ"
#: ../glib/gspawn.c:1240 #: glib/gspawn.c:1240
#, c-format #, c-format
msgid "Failed to execute child process \"%s\" (%s)" msgid "Failed to execute child process \"%s\" (%s)"
msgstr "\"%s\"બાળપ્રક્રિયા ચલાવવામાં નિષ્ફળ (%s)" msgstr "\"%s\"બાળપ્રક્રિયા ચલાવવામાં નિષ્ફળ (%s)"
#: ../glib/gspawn.c:1250 #: glib/gspawn.c:1250
#, c-format #, c-format
msgid "Failed to redirect output or input of child process (%s)" msgid "Failed to redirect output or input of child process (%s)"
msgstr "બાળપ્રક્રિયા (%s)ના ઈનપુટ અથવા આઉટપુટને ફરીથી દિશા આપવામાં નિષ્ફળ" msgstr "બાળપ્રક્રિયા (%s)ના ઈનપુટ અથવા આઉટપુટને ફરીથી દિશા આપવામાં નિષ્ફળ"
#: ../glib/gspawn.c:1259 #: glib/gspawn.c:1259
#, c-format #, c-format
msgid "Failed to fork child process (%s)" msgid "Failed to fork child process (%s)"
msgstr "બાળપ્રક્રિયા (%s)ની બાળપ્રક્રિયા બનાવવામાં નિષ્ફળ" msgstr "બાળપ્રક્રિયા (%s)ની બાળપ્રક્રિયા બનાવવામાં નિષ્ફળ"
#: ../glib/gspawn.c:1267 #: glib/gspawn.c:1267
#, c-format #, c-format
msgid "Unknown error executing child process \"%s\"" msgid "Unknown error executing child process \"%s\""
msgstr "\"%s\" બાળપ્રક્રિયા ચલાવતી વખતની અજ્ઞાત ભૂલ" msgstr "\"%s\" બાળપ્રક્રિયા ચલાવતી વખતની અજ્ઞાત ભૂલ"
#: ../glib/gspawn.c:1289 #: glib/gspawn.c:1289
#, c-format #, c-format
msgid "Failed to read enough data from child pid pipe (%s)" msgid "Failed to read enough data from child pid pipe (%s)"
msgstr "(%s)બાળ pid પાઈપમાંથી જરુરી માહિતી વાંચવામાં નિષ્ફળ" msgstr "(%s)બાળ pid પાઈપમાંથી જરુરી માહિતી વાંચવામાં નિષ્ફળ"
#: ../glib/gutf8.c:1017 #: glib/gutf8.c:1017
#, c-format
msgid "Character out of range for UTF-8" msgid "Character out of range for UTF-8"
msgstr "અક્ષર UTF-૮ ની સીમાની બહાર" msgstr "અક્ષર UTF-૮ ની સીમાની બહાર"
#: ../glib/gutf8.c:1111 ../glib/gutf8.c:1120 ../glib/gutf8.c:1252 #: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 glib/gutf8.c:1261
#: ../glib/gutf8.c:1261 ../glib/gutf8.c:1402 ../glib/gutf8.c:1498 #: glib/gutf8.c:1402 glib/gutf8.c:1498
#, c-format
msgid "Invalid sequence in conversion input" msgid "Invalid sequence in conversion input"
msgstr "પરીવર્તિત ઈનપુટની અંદર અયોગ્ય શ્રેણી" 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" msgid "Character out of range for UTF-16"
msgstr "UTF-૧૬ ની સીમાની બહાર નો અક્ષર" msgstr "UTF-૧૬ ની સીમાની બહાર નો અક્ષર"
#: ../glib/goption.c:495 #: glib/goption.c:495
msgid "Usage:" msgid "Usage:"
msgstr "વપરાશ:" msgstr "વપરાશ:"
#: ../glib/goption.c:495 #: glib/goption.c:495
msgid "[OPTION...]" msgid "[OPTION...]"
msgstr "[OPTION...]" msgstr "[OPTION...]"
#: ../glib/goption.c:586 #: glib/goption.c:586
msgid "Help Options:" msgid "Help Options:"
msgstr "મદદ વિકલ્પો:" msgstr "મદદ વિકલ્પો:"
#: ../glib/goption.c:587 #: glib/goption.c:587
msgid "Show help options" msgid "Show help options"
msgstr "મદદ વિકલ્પો બતાવો" msgstr "મદદ વિકલ્પો બતાવો"
#: ../glib/goption.c:592 #: glib/goption.c:592
msgid "Show all help options" msgid "Show all help options"
msgstr "બધા મદદ વિકલ્પો બતાવો" msgstr "બધા મદદ વિકલ્પો બતાવો"
#: ../glib/goption.c:642 #: glib/goption.c:642
msgid "Application Options:" msgid "Application Options:"
msgstr "કાર્યક્રમ વિકલ્પો:" msgstr "કાર્યક્રમ વિકલ્પો:"
#: ../glib/goption.c:686 ../glib/goption.c:756 #: glib/goption.c:686 glib/goption.c:756
#, c-format #, c-format
msgid "Cannot parse integer value '%s' for %s" msgid "Cannot parse integer value '%s' for %s"
msgstr "પૂર્ણાંક કિંમત '%s' ને %s માટે પદચ્છેદન કરી શકતા નથી" msgstr "પૂર્ણાંક કિંમત '%s' ને %s માટે પદચ્છેદન કરી શકતા નથી"
#: ../glib/goption.c:696 ../glib/goption.c:764 #: glib/goption.c:696 glib/goption.c:764
#, c-format #, c-format
msgid "Integer value '%s' for %s out of range" msgid "Integer value '%s' for %s out of range"
msgstr "પૂર્ણાંક કિંમત '%s' એ %s માટે મર્યાદા બહાર છે" msgstr "પૂર્ણાંક કિંમત '%s' એ %s માટે મર્યાદા બહાર છે"
#: ../glib/goption.c:721 #: glib/goption.c:721
#, c-format #, c-format
msgid "Cannot parse double value '%s' for %s" msgid "Cannot parse double value '%s' for %s"
msgstr "બમણી કિંમત '%s' ને %s માટે પદચ્છેદિત કરી શકતા નથી" msgstr "બમણી કિંમત '%s' ને %s માટે પદચ્છેદિત કરી શકતા નથી"
#: ../glib/goption.c:729 #: glib/goption.c:729
#, c-format #, c-format
msgid "Double value '%s' for %s out of range" msgid "Double value '%s' for %s out of range"
msgstr "બમણી કિંમત '%s' જે %s માટે છે તે વિસ્તારની બહાર છે" msgstr "બમણી કિંમત '%s' જે %s માટે છે તે વિસ્તારની બહાર છે"
#: ../glib/goption.c:1066 #: glib/goption.c:1066
#, c-format #, c-format
msgid "Error parsing option %s" msgid "Error parsing option %s"
msgstr "ભૂલ પદચ્છેદન વિકલ્પ %s" msgstr "ભૂલ પદચ્છેદન વિકલ્પ %s"
#: ../glib/goption.c:1097 ../glib/goption.c:1208 #: glib/goption.c:1097 glib/goption.c:1208
#, c-format #, c-format
msgid "Missing argument for %s" msgid "Missing argument for %s"
msgstr "%s માટેની દલીલ ગુમ થયેલ છે" msgstr "%s માટેની દલીલ ગુમ થયેલ છે"
#: ../glib/goption.c:1597 #: glib/goption.c:1597
#, c-format #, c-format
msgid "Unknown option %s" msgid "Unknown option %s"
msgstr "અજ્ઞાત વિકલ્પ %s" msgstr "અજ્ઞાત વિકલ્પ %s"
#: ../glib/gkeyfile.c:337 #: glib/gkeyfile.c:337
#, c-format
msgid "Valid key file could not be found in data dirs" msgid "Valid key file could not be found in data dirs"
msgstr "માહિતી ડિરેક્ટરીઓમાં માન્ય કી ફાઈલ શોધી શકાઈ નહિં" msgstr "માહિતી ડિરેક્ટરીઓમાં માન્ય કી ફાઈલ શોધી શકાઈ નહિં"
#: ../glib/gkeyfile.c:372 #: glib/gkeyfile.c:372
#, c-format
msgid "Not a regular file" msgid "Not a regular file"
msgstr "નિયમિત ફાઈલ નથી" msgstr "નિયમિત ફાઈલ નથી"
#: ../glib/gkeyfile.c:380 #: glib/gkeyfile.c:380
#, c-format
msgid "File is empty" msgid "File is empty"
msgstr "ફાઈલ ખાલી છે" msgstr "ફાઈલ ખાલી છે"
#: ../glib/gkeyfile.c:695 #: glib/gkeyfile.c:695
#, c-format #, 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 "કી ફાઈલ વાક્ય '%s' સમાવે છે કે જે કી-કિંમત જોડ, જૂથ, અથવા ટિપ્પણી નથી" msgstr "કી ફાઈલ વાક્ય '%s' સમાવે છે કે જે કી-કિંમત જોડ, જૂથ, અથવા ટિપ્પણી નથી"
#: ../glib/gkeyfile.c:763 #: glib/gkeyfile.c:763
#, c-format
msgid "Key file does not start with a group" msgid "Key file does not start with a group"
msgstr "કી ફાઈલ જૂથ સાથે શરૂ થતી નથી" msgstr "કી ફાઈલ જૂથ સાથે શરૂ થતી નથી"
#: ../glib/gkeyfile.c:806 #: glib/gkeyfile.c:806
#, c-format #, c-format
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "કી ફાઈલ બિનઆધારભૂત અક્ષર સંગ્રહપદ્ધતિ '%s' સમાવે છે" msgstr "કી ફાઈલ બિનઆધારભૂત અક્ષર સંગ્રહપદ્ધતિ '%s' સમાવે છે"
#: ../glib/gkeyfile.c:1014 ../glib/gkeyfile.c:1173 ../glib/gkeyfile.c:2386 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: ../glib/gkeyfile.c:2451 ../glib/gkeyfile.c:2570 ../glib/gkeyfile.c:2705 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: ../glib/gkeyfile.c:2858 ../glib/gkeyfile.c:3034 ../glib/gkeyfile.c:3091 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "કી ફાઈલ પાસે જૂથ '%s' નથી" msgstr "કી ફાઈલ પાસે જૂથ '%s' નથી"
#: ../glib/gkeyfile.c:1185 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "કી ફાઈલ પાસે કી '%s' નથી" msgstr "કી ફાઈલ પાસે કી '%s' નથી"
#: ../glib/gkeyfile.c:1286 ../glib/gkeyfile.c:1395 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "કી ફાઈલ '%s' કીને કિંમત '%s' સાથે સમાવે છે કે જે UTF-8 નથી" msgstr "કી ફાઈલ '%s' કીને કિંમત '%s' સાથે સમાવે છે કે જે UTF-8 નથી"
#: ../glib/gkeyfile.c:1304 ../glib/gkeyfile.c:1413 ../glib/gkeyfile.c:1785 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "કી ફાઈલ '%s' કી સમાવે છે કે જેની પાસે કિંમત છે જે ઈન્ટરપ્રીટ કરી શકાતી નથી." msgstr "કી ફાઈલ '%s' કી સમાવે છે કે જેની પાસે કિંમત છે જે ઈન્ટરપ્રીટ કરી શકાતી નથી."
#: ../glib/gkeyfile.c:2001 ../glib/gkeyfile.c:2214 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -729,37 +752,37 @@ msgstr ""
"કી ફાઈલ '%s' કી જૂથ '%s' માં સમાવે છે કે જેની પાસે કિંમત છે કે જે ઈન્ટરપ્રીટ કરી શકાતી " "કી ફાઈલ '%s' કી જૂથ '%s' માં સમાવે છે કે જેની પાસે કિંમત છે કે જે ઈન્ટરપ્રીટ કરી શકાતી "
"નથી." "નથી."
#: ../glib/gkeyfile.c:2401 ../glib/gkeyfile.c:2585 ../glib/gkeyfile.c:3102 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "કી ફાઈલ પાસે કી '%s' એ જૂથ '%s' માં નથી" msgstr "કી ફાઈલ પાસે કી '%s' એ જૂથ '%s' માં નથી"
#: ../glib/gkeyfile.c:3275 #: glib/gkeyfile.c:3275
#, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "કી ફાઈલ એસ્કેપ અક્ષર વાક્યના અંતે સમાવે છે" msgstr "કી ફાઈલ એસ્કેપ અક્ષર વાક્યના અંતે સમાવે છે"
#: ../glib/gkeyfile.c:3297 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "કી ફાઈલ અયોગ્ય એસ્કેપ ક્રમ '%s' સમાવે છે" msgstr "કી ફાઈલ અયોગ્ય એસ્કેપ ક્રમ '%s' સમાવે છે"
#: ../glib/gkeyfile.c:3438 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "કિંમત '%s' નંબર તરીકે ઈન્ટરપ્રીટ કરી શકાતું નથી." msgstr "કિંમત '%s' નંબર તરીકે ઈન્ટરપ્રીટ કરી શકાતું નથી."
#: ../glib/gkeyfile.c:3448 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "પૂર્ણાંક કિંમત '%s' એ મર્યાદાની બહાર છે" msgstr "પૂર્ણાંક કિંમત '%s' એ મર્યાદાની બહાર છે"
#: ../glib/gkeyfile.c:3476 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "કિંમત '%s' એ અપૂર્ણાંક સંખ્યા તરીકે ઈન્ટરપ્રીટ કરી શકાતું નથી." msgstr "કિંમત '%s' એ અપૂર્ણાંક સંખ્યા તરીકે ઈન્ટરપ્રીટ કરી શકાતું નથી."
#: ../glib/gkeyfile.c:3496 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "કિંમત '%s' બુલિયન તરીકે ઈન્ટરપ્રીટ કરી શકાતું નથી." msgstr "કિંમત '%s' બુલિયન તરીકે ઈન્ટરપ્રીટ કરી શકાતું નથી."

View File

@@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD.he\n" "Project-Id-Version: glib.HEAD.he\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-04-27 18:48+0300\n" "PO-Revision-Date: 2006-04-27 18:48+0300\n"
"Last-Translator: Yair Hershkovitz <yairhr@gmail.com>\n" "Last-Translator: Yair Hershkovitz <yairhr@gmail.com>\n"
"Language-Team: Hebrew <he@li.org>\n" "Language-Team: Hebrew <he@li.org>\n"
@@ -56,35 +56,35 @@ msgstr "Valid key file could not be found in data dirs"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -200,7 +200,7 @@ msgstr "Failed to open file '%s': fdopen() failed: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgstr "Failed to rename file '%s' to '%s': g_rename() failed: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Failed to create file '%s': %s" msgstr "Failed to create file '%s': %s"
@@ -225,22 +225,22 @@ msgstr "Failed to close file '%s': fclose() failed: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Existing file '%s' could not be removed: g_unlink() failed: %s" msgstr "Existing file '%s' could not be removed: g_unlink() failed: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Template '%s' invalid, should not contain a '%s'" msgstr "Template '%s' invalid, should not contain a '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Template '%s' doesn't end with XXXXXX" msgstr "Template '%s' doesn't end with XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Failed to read the symbolic link '%s': %s" msgstr "Failed to read the symbolic link '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Symbolic links not supported" msgstr "Symbolic links not supported"
@@ -739,29 +739,29 @@ msgstr "Key file does not start with a group"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Key file contains unsupported encoding '%s'" msgstr "Key file contains unsupported encoding '%s'"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Key file does not have group '%s'" msgstr "Key file does not have group '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Key file does not have key '%s'" msgstr "Key file does not have key '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "Key file contains key '%s' with value '%s' which is not UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "Key file contains key '%s' which has value that cannot be interpreted." msgstr "Key file contains key '%s' which has value that cannot be interpreted."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -770,37 +770,37 @@ msgstr ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Key file does not have key '%s' in group '%s'" msgstr "Key file does not have key '%s' in group '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Key file contains escape character at end of line" msgstr "Key file contains escape character at end of line"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Key file contains invalid escape sequence '%s'" msgstr "Key file contains invalid escape sequence '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Value '%s' cannot be interpreted as a number." msgstr "Value '%s' cannot be interpreted as a number."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Integer value '%s' out of range" msgstr "Integer value '%s' out of range"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Value '%s' cannot be interpreted as a number." msgstr "Value '%s' cannot be interpreted as a number."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Value '%s' cannot be interpreted as a boolean." msgstr "Value '%s' cannot be interpreted as a boolean."

376
po/hi.po
View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD.hi\n" "Project-Id-Version: glib.HEAD.hi\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-20 06:33+0200\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-06-20 14:14+0530\n" "PO-Revision-Date: 2006-06-20 14:14+0530\n"
"Last-Translator: Rajesh Ranjan <rranjan@redhat.com>\n" "Last-Translator: Rajesh Ranjan <rranjan@redhat.com>\n"
"Language-Team: Hindi <fedora-trans-hi@redhat.com>\n" "Language-Team: Hindi <fedora-trans-hi@redhat.com>\n"
@@ -17,275 +17,285 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.9.1\n" "X-Generator: KBabel 1.9.1\n"
"Plural-Forms: nplurals=2; plural=(n!=1);\n\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n"
"\n"
"\n" "\n"
"\n" "\n"
"\n" "\n"
"\n" "\n"
#: ../glib/gbookmarkfile.c:716 ../glib/gbookmarkfile.c:793 #: glib/gbookmarkfile.c:716 glib/gbookmarkfile.c:793 glib/gbookmarkfile.c:872
#: ../glib/gbookmarkfile.c:872 ../glib/gbookmarkfile.c:919 #: glib/gbookmarkfile.c:919
#, c-format #, c-format
msgid "Unexpected attribute '%s' for element '%s'" msgid "Unexpected attribute '%s' for element '%s'"
msgstr "'%s' अप्रत्याशित गुण '%s' तत्व के लिये" msgstr "'%s' अप्रत्याशित गुण '%s' तत्व के लिये"
#: ../glib/gbookmarkfile.c:727 ../glib/gbookmarkfile.c:804 #: glib/gbookmarkfile.c:727 glib/gbookmarkfile.c:804 glib/gbookmarkfile.c:814
#: ../glib/gbookmarkfile.c:814 ../glib/gbookmarkfile.c:930 #: glib/gbookmarkfile.c:930
#, c-format #, c-format
msgid "Attribute '%s' of element '%s' not found" msgid "Attribute '%s' of element '%s' not found"
msgstr "'%s' तत्व '%s' का गुण नहीं मिला" msgstr "'%s' तत्व '%s' का गुण नहीं मिला"
#: ../glib/gbookmarkfile.c:1103 ../glib/gbookmarkfile.c:1168 #: glib/gbookmarkfile.c:1103 glib/gbookmarkfile.c:1168
#: ../glib/gbookmarkfile.c:1232 ../glib/gbookmarkfile.c:1242 #: glib/gbookmarkfile.c:1232 glib/gbookmarkfile.c:1242
#, c-format #, c-format
msgid "Unexpected tag '%s', tag '%s' expected" msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "'%s' अप्रत्याशित टैग, '%s' टैग प्रत्याशित" msgstr "'%s' अप्रत्याशित टैग, '%s' टैग प्रत्याशित"
#: ../glib/gbookmarkfile.c:1128 ../glib/gbookmarkfile.c:1142 #: glib/gbookmarkfile.c:1128 glib/gbookmarkfile.c:1142
#: ../glib/gbookmarkfile.c:1210 ../glib/gbookmarkfile.c:1262 #: glib/gbookmarkfile.c:1210 glib/gbookmarkfile.c:1262
#, c-format #, c-format
msgid "Unexpected tag '%s' inside '%s'" msgid "Unexpected tag '%s' inside '%s'"
msgstr "अप्रत्याशित टैग '%s' '%s' के अंदर" msgstr "अप्रत्याशित टैग '%s' '%s' के अंदर"
#: ../glib/gbookmarkfile.c:1792 #: glib/gbookmarkfile.c:1792
#, c-format
msgid "No valid bookmark file was be found in data dirs" msgid "No valid bookmark file was be found in data dirs"
msgstr "कोई वैध पुस्तकचिह्न आंकड़ा निर्देशिका में नहीं मिला" msgstr "कोई वैध पुस्तकचिह्न आंकड़ा निर्देशिका में नहीं मिला"
#: ../glib/gbookmarkfile.c:1993 #: glib/gbookmarkfile.c:1993
#, c-format #, c-format
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "URI '%s' के लिये पुस्तकचिह्न पहले से मौजूद है" msgstr "URI '%s' के लिये पुस्तकचिह्न पहले से मौजूद है"
#: ../glib/gbookmarkfile.c:2039 ../glib/gbookmarkfile.c:2196 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: ../glib/gbookmarkfile.c:2281 ../glib/gbookmarkfile.c:2362 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: ../glib/gbookmarkfile.c:2447 ../glib/gbookmarkfile.c:2530 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: ../glib/gbookmarkfile.c:2608 ../glib/gbookmarkfile.c:2687 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: ../glib/gbookmarkfile.c:2729 ../glib/gbookmarkfile.c:2826 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: ../glib/gbookmarkfile.c:2949 ../glib/gbookmarkfile.c:3139 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: ../glib/gbookmarkfile.c:3215 ../glib/gbookmarkfile.c:3367 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: ../glib/gbookmarkfile.c:3432 ../glib/gbookmarkfile.c:3522 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: ../glib/gbookmarkfile.c:3649 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "URI '%s' के लिये कोई पुस्तकचिह्न नहीं मिला" msgstr "URI '%s' के लिये कोई पुस्तकचिह्न नहीं मिला"
#: ../glib/gbookmarkfile.c:2371 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "कोई MIME प्रकार URI '%s' के लिये पुस्तकचिह्न में परिभाषित नहीं है" msgstr "कोई MIME प्रकार URI '%s' के लिये पुस्तकचिह्न में परिभाषित नहीं है"
#: ../glib/gbookmarkfile.c:2456 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI '%s' के लिये पुस्तकचिह्न में कोई निजी फ्लैग परिभाषित नहीं है" msgstr "URI '%s' के लिये पुस्तकचिह्न में कोई निजी फ्लैग परिभाषित नहीं है"
#: ../glib/gbookmarkfile.c:2835 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "URI '%s' के लिये पुस्तकचिह्न में कोई समूह सेट नहीं है" msgstr "URI '%s' के लिये पुस्तकचिह्न में कोई समूह सेट नहीं है"
#: ../glib/gbookmarkfile.c:3233 ../glib/gbookmarkfile.c:3377 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "'%s' के नाम से कोई अनुप्रयोग ने '%s' के लिये पुस्तकचिह्न पंजीकृत नहीं है" msgstr "'%s' के नाम से कोई अनुप्रयोग ने '%s' के लिये पुस्तकचिह्न पंजीकृत नहीं है"
#: ../glib/gconvert.c:404 ../glib/gconvert.c:482 ../glib/giochannel.c:1150 #: glib/gconvert.c:404 glib/gconvert.c:482 glib/giochannel.c:1150
#, c-format #, c-format
msgid "Conversion from character set '%s' to '%s' is not supported" msgid "Conversion from character set '%s' to '%s' is not supported"
msgstr "अक्षर समूह '%s' से '%s' में परिवर्तन समर्थित नहीं है" msgstr "अक्षर समूह '%s' से '%s' में परिवर्तन समर्थित नहीं है"
#: ../glib/gconvert.c:408 ../glib/gconvert.c:486 #: glib/gconvert.c:408 glib/gconvert.c:486
#, c-format #, c-format
msgid "Could not open converter from '%s' to '%s'" msgid "Could not open converter from '%s' to '%s'"
msgstr "'%s' से '%s' परिवर्तक नहीं खोला जा सका" msgstr "'%s' से '%s' परिवर्तक नहीं खोला जा सका"
#: ../glib/gconvert.c:602 ../glib/gconvert.c:991 ../glib/giochannel.c:1322 #: glib/gconvert.c:602 glib/gconvert.c:991 glib/giochannel.c:1322
#: ../glib/giochannel.c:1364 ../glib/giochannel.c:2206 ../glib/gutf8.c:943 #: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943
#: ../glib/gutf8.c:1392 #: glib/gutf8.c:1392
#, c-format
msgid "Invalid byte sequence in conversion input" msgid "Invalid byte sequence in conversion input"
msgstr "परिवर्तन इनपुट में अवैध बाइट अनुक्रम" msgstr "परिवर्तन इनपुट में अवैध बाइट अनुक्रम"
#: ../glib/gconvert.c:608 ../glib/gconvert.c:918 ../glib/giochannel.c:1329 #: glib/gconvert.c:608 glib/gconvert.c:918 glib/giochannel.c:1329
#: ../glib/giochannel.c:2218 #: glib/giochannel.c:2218
#, c-format #, c-format
msgid "Error during conversion: %s" msgid "Error during conversion: %s"
msgstr "परिवर्तन के दौरान त्रुटि: %s" msgstr "परिवर्तन के दौरान त्रुटि: %s"
#: ../glib/gconvert.c:643 ../glib/gutf8.c:939 ../glib/gutf8.c:1143 #: glib/gconvert.c:643 glib/gutf8.c:939 glib/gutf8.c:1143 glib/gutf8.c:1284
#: ../glib/gutf8.c:1284 ../glib/gutf8.c:1388 #: glib/gutf8.c:1388
#, c-format
msgid "Partial character sequence at end of input" msgid "Partial character sequence at end of input"
msgstr "इनपुट के अंत में आंशिक अक्षर अनुक्रम" msgstr "इनपुट के अंत में आंशिक अक्षर अनुक्रम"
#: ../glib/gconvert.c:893 #: glib/gconvert.c:893
#, c-format #, c-format
msgid "Cannot convert fallback '%s' to codeset '%s'" msgid "Cannot convert fallback '%s' to codeset '%s'"
msgstr "फालबैक '%s' को कोड सेट '%s' में परिवर्तित नहीं कर सका" msgstr "फालबैक '%s' को कोड सेट '%s' में परिवर्तित नहीं कर सका"
#: ../glib/gconvert.c:1702 #: glib/gconvert.c:1702
#, c-format #, c-format
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
msgstr "\"file\" योजना का उपयोग करने वाली URI '%s' एक निरपेक्ष यूआरआई नहीं है" msgstr "\"file\" योजना का उपयोग करने वाली URI '%s' एक निरपेक्ष यूआरआई नहीं है"
#: ../glib/gconvert.c:1712 #: glib/gconvert.c:1712
#, c-format #, c-format
msgid "The local file URI '%s' may not include a '#'" msgid "The local file URI '%s' may not include a '#'"
msgstr "स्थानीय फ़ाइल यूआरआई '%s' में एक '#' सम्मिलित नहीं है" msgstr "स्थानीय फ़ाइल यूआरआई '%s' में एक '#' सम्मिलित नहीं है"
#: ../glib/gconvert.c:1729 #: glib/gconvert.c:1729
#, c-format #, c-format
msgid "The URI '%s' is invalid" msgid "The URI '%s' is invalid"
msgstr "यूआरआई '%s' अवैध है" msgstr "यूआरआई '%s' अवैध है"
#: ../glib/gconvert.c:1741 #: glib/gconvert.c:1741
#, c-format #, c-format
msgid "The hostname of the URI '%s' is invalid" msgid "The hostname of the URI '%s' is invalid"
msgstr "यूआरआई '%s' का होस्टनाम अवैध है" msgstr "यूआरआई '%s' का होस्टनाम अवैध है"
#: ../glib/gconvert.c:1757 #: glib/gconvert.c:1757
#, c-format #, c-format
msgid "The URI '%s' contains invalidly escaped characters" msgid "The URI '%s' contains invalidly escaped characters"
msgstr "यूआरआई '%s' में अवैध एस्केप्ड अक्षर सम्मिलित हैं" msgstr "यूआरआई '%s' में अवैध एस्केप्ड अक्षर सम्मिलित हैं"
#: ../glib/gconvert.c:1852 #: glib/gconvert.c:1852
#, c-format #, c-format
msgid "The pathname '%s' is not an absolute path" msgid "The pathname '%s' is not an absolute path"
msgstr "पथनाम '%s' एक निरपेक्ष पथ नहीं है" msgstr "पथनाम '%s' एक निरपेक्ष पथ नहीं है"
#: ../glib/gconvert.c:1862 #: glib/gconvert.c:1862
#, c-format
msgid "Invalid hostname" msgid "Invalid hostname"
msgstr "अवैध होस्ट-नाम" msgstr "अवैध होस्ट-नाम"
#: ../glib/gdir.c:121 ../glib/gdir.c:141 #: glib/gdir.c:121 glib/gdir.c:141
#, c-format #, c-format
msgid "Error opening directory '%s': %s" msgid "Error opening directory '%s': %s"
msgstr "डिरेक्ट्री '%s' को खोलने में त्रुटि: %s" msgstr "डिरेक्ट्री '%s' को खोलने में त्रुटि: %s"
#: ../glib/gfileutils.c:572 ../glib/gfileutils.c:645 #: glib/gfileutils.c:572 glib/gfileutils.c:645
#, c-format #, c-format
msgid "Could not allocate %lu bytes to read file \"%s\"" msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr " %lu बाइट आवंटित नहीं किया जा सकता फ़ाइल \"%s\" को पढ़ने हेतु" msgstr " %lu बाइट आवंटित नहीं किया जा सकता फ़ाइल \"%s\" को पढ़ने हेतु"
#: ../glib/gfileutils.c:587 #: glib/gfileutils.c:587
#, c-format #, c-format
msgid "Error reading file '%s': %s" msgid "Error reading file '%s': %s"
msgstr "'%s' फ़ाइल को पढ़ने में त्रुटि: %s" msgstr "'%s' फ़ाइल को पढ़ने में त्रुटि: %s"
#: ../glib/gfileutils.c:669 #: glib/gfileutils.c:669
#, c-format #, c-format
msgid "Failed to read from file '%s': %s" msgid "Failed to read from file '%s': %s"
msgstr "फ़ाइल '%s' से पढ़ने में असफल: %s" msgstr "फ़ाइल '%s' से पढ़ने में असफल: %s"
#: ../glib/gfileutils.c:720 ../glib/gfileutils.c:807 #: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format #, c-format
msgid "Failed to open file '%s': %s" msgid "Failed to open file '%s': %s"
msgstr "'%s' फाइल खोलने में असफल :%s" msgstr "'%s' फाइल खोलने में असफल :%s"
#: ../glib/gfileutils.c:737 ../glib/gmappedfile.c:133 #: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format #, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "फ़ाइल '%s' की विशेषता ज्ञात करने में असफल: fstat() असफल: %s" msgstr "फ़ाइल '%s' की विशेषता ज्ञात करने में असफल: fstat() असफल: %s"
#: ../glib/gfileutils.c:771 #: glib/gfileutils.c:771
#, c-format #, c-format
msgid "Failed to open file '%s': fdopen() failed: %s" msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "फ़ाइल '%s': fdopen() खोलने में असफल: %s" msgstr "फ़ाइल '%s': fdopen() खोलने में असफल: %s"
#: ../glib/gfileutils.c:905 #: glib/gfileutils.c:905
#, c-format #, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "फाइल '%s' को '%s' में नाम बदलने में विफल: g_rename() विफल: %s" msgstr "फाइल '%s' को '%s' में नाम बदलने में विफल: g_rename() विफल: %s"
#: ../glib/gfileutils.c:946 ../glib/gfileutils.c:1404 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "फ़ाइल '%s' बनाने में असफल: %s" msgstr "फ़ाइल '%s' बनाने में असफल: %s"
#: ../glib/gfileutils.c:960 #: glib/gfileutils.c:960
#, c-format #, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s" msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "फाइल '%s' को लिखने के लिये खोलने में विफल: fdopen() विफल: %s" msgstr "फाइल '%s' को लिखने के लिये खोलने में विफल: fdopen() विफल: %s"
#: ../glib/gfileutils.c:985 #: glib/gfileutils.c:985
#, c-format #, c-format
msgid "Failed to write file '%s': fwrite() failed: %s" msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "'%s' फाइल को लिखने में विफल: fwrite() विफल: %s" msgstr "'%s' फाइल को लिखने में विफल: fwrite() विफल: %s"
#: ../glib/gfileutils.c:1004 #: glib/gfileutils.c:1004
#, c-format #, c-format
msgid "Failed to close file '%s': fclose() failed: %s" msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "'%s' फाइल बंद करने में विफल: fclose() विफल: %s" msgstr "'%s' फाइल बंद करने में विफल: fclose() विफल: %s"
#: ../glib/gfileutils.c:1122 #: glib/gfileutils.c:1122
#, c-format #, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "'%s' मौजूदा फाइल हटाया नहीं जा सकता: g_unlink() विफल: %s" msgstr "'%s' मौजूदा फाइल हटाया नहीं जा सकता: g_unlink() विफल: %s"
#: ../glib/gfileutils.c:1366 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "टैम्पलेट '%s' अवैध है, इसमें '%s' शामिल नहीं है" msgstr "टैम्पलेट '%s' अवैध है, इसमें '%s' शामिल नहीं है"
#: ../glib/gfileutils.c:1379 #: glib/gfileutils.c:1379
#, c-format #, c-format
msgid "Template '%s' doesn't contain XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "टैम्पलेट '%s' में XXXXXX समाहित नहीं है" msgstr "टैम्पलेट '%s' में XXXXXX समाहित नहीं है"
#: ../glib/gfileutils.c:1854 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "सिंबालिक लिंक '%s' से थीम पढ़ने में असफल %s" msgstr "सिंबालिक लिंक '%s' से थीम पढ़ने में असफल %s"
#: ../glib/gfileutils.c:1875 #: glib/gfileutils.c:1875
#, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "सिंबालिक लिंक समर्थित नहीं है" msgstr "सिंबालिक लिंक समर्थित नहीं है"
#: ../glib/giochannel.c:1154 #: glib/giochannel.c:1154
#, c-format #, c-format
msgid "Could not open converter from '%s' to '%s': %s" msgid "Could not open converter from '%s' to '%s': %s"
msgstr "'%s' से '%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" msgid "Can't do a raw read in g_io_channel_read_line_string"
msgstr "यहाँ एक रॉ रीड नहीं कर सकता g_io_channel_read_line_string" msgstr "यहाँ एक रॉ रीड नहीं कर सकता g_io_channel_read_line_string"
#: ../glib/giochannel.c:1546 ../glib/giochannel.c:1803 #: glib/giochannel.c:1546 glib/giochannel.c:1803 glib/giochannel.c:1889
#: ../glib/giochannel.c:1889 #, c-format
msgid "Leftover unconverted data in read buffer" msgid "Leftover unconverted data in read buffer"
msgstr "रीड बफ़र में शेष है अपरिवर्तित बचा हुआ डेटा" msgstr "रीड बफ़र में शेष है अपरिवर्तित बचा हुआ डेटा"
#: ../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" msgid "Channel terminates in a partial character"
msgstr "आंशिक अक्षर में चैनल समाप्त होता है" 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" msgid "Can't do a raw read in g_io_channel_read_to_end"
msgstr "यहाँ एक रॉ रीड नहीं कर सकता - g_io_channel_read_to_end" msgstr "यहाँ एक रॉ रीड नहीं कर सकता - g_io_channel_read_to_end"
#: ../glib/gmappedfile.c:116 #: glib/gmappedfile.c:116
#, c-format #, c-format
msgid "Failed to open file '%s': open() failed: %s" msgid "Failed to open file '%s': open() failed: %s"
msgstr "फ़ाइल '%s' खोलने में असफल: %s" msgstr "फ़ाइल '%s' खोलने में असफल: %s"
#: ../glib/gmappedfile.c:193 #: glib/gmappedfile.c:193
#, c-format #, c-format
msgid "Failed to map file '%s': mmap() failed: %s" msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' फाइल चित्रित करने में विफल: mmap() विफल: %s" msgstr "'%s' फाइल चित्रित करने में विफल: mmap() विफल: %s"
#: ../glib/gmarkup.c:227 #: glib/gmarkup.c:227
#, c-format #, c-format
msgid "Error on line %d char %d: %s" msgid "Error on line %d char %d: %s"
msgstr "पंक्ति %d अक्षर %d पर त्रुटि: %s" msgstr "पंक्ति %d अक्षर %d पर त्रुटि: %s"
#: ../glib/gmarkup.c:325 #: glib/gmarkup.c:325
#, c-format #, c-format
msgid "Error on line %d: %s" msgid "Error on line %d: %s"
msgstr "पंक्ति %d: पर त्रुटि %s" msgstr "पंक्ति %d: पर त्रुटि %s"
#: ../glib/gmarkup.c:429 #: glib/gmarkup.c:429
msgid "Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;" msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "खाली एंटिटी '&;' देखा; वैध एंटिटी हैं: &amp; &quot; &lt; &gt; &apos;" msgstr "खाली एंटिटी '&;' देखा; वैध एंटिटी हैं: &amp; &quot; &lt; &gt; &apos;"
#: ../glib/gmarkup.c:439 #: glib/gmarkup.c:439
#, c-format #, c-format
msgid "" msgid ""
"Character '%s' is not valid at the start of an entity name; the & character " "Character '%s' is not valid at the start of an entity name; the & character "
@@ -295,17 +305,17 @@ msgstr ""
"एक एंटिटी के प्रारंभ में अक्षर '%s' वैध नहीं है, तथा & अक्षर एक एंटिटी को प्रारंभ करता है; " "एक एंटिटी के प्रारंभ में अक्षर '%s' वैध नहीं है, तथा & अक्षर एक एंटिटी को प्रारंभ करता है; "
"यदि यह एम्परसेंड एक एंटिटी नहीं है, तो इसे ऐसे एस्केप करें &amp;" "यदि यह एम्परसेंड एक एंटिटी नहीं है, तो इसे ऐसे एस्केप करें &amp;"
#: ../glib/gmarkup.c:473 #: glib/gmarkup.c:473
#, c-format #, c-format
msgid "Character '%s' is not valid inside an entity name" msgid "Character '%s' is not valid inside an entity name"
msgstr " अक्षर '%s' एक एंटिटी नाम के भीतर वैध नहीं है" msgstr " अक्षर '%s' एक एंटिटी नाम के भीतर वैध नहीं है"
#: ../glib/gmarkup.c:510 #: glib/gmarkup.c:510
#, c-format #, c-format
msgid "Entity name '%s' is not known" msgid "Entity name '%s' is not known"
msgstr "एंटिटी नाम '%s' ज्ञात नहीं है" msgstr "एंटिटी नाम '%s' ज्ञात नहीं है"
#: ../glib/gmarkup.c:521 #: glib/gmarkup.c:521
msgid "" msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand " "Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;" "character without intending to start an entity - escape ampersand as &amp;"
@@ -313,7 +323,7 @@ msgstr ""
"एंटिटी अर्धविराम पर समाप्त नहीं होता, बहुत संभव है कि आपने एम्परसेन्ड अक्षर का प्रयोग " "एंटिटी अर्धविराम पर समाप्त नहीं होता, बहुत संभव है कि आपने एम्परसेन्ड अक्षर का प्रयोग "
"किया है और एक एंटिटी प्रारंभ नहीं करना चाहते- एम्परसेंड को ऐसे एस्केप करें: &amp;" "किया है और एक एंटिटी प्रारंभ नहीं करना चाहते- एम्परसेंड को ऐसे एस्केप करें: &amp;"
#: ../glib/gmarkup.c:574 #: glib/gmarkup.c:574
#, c-format #, c-format
msgid "" msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character " "Failed to parse '%-.*s', which should have been a digit inside a character "
@@ -322,16 +332,16 @@ msgstr ""
"'%-.*s' के विश्लेषण करने में असफल, जो कि अक्षर संदर्भ के भीतर एक अंक होना चाहिए (उदाहरण " "'%-.*s' के विश्लेषण करने में असफल, जो कि अक्षर संदर्भ के भीतर एक अंक होना चाहिए (उदाहरण "
"के लिए, &#234) - शायद अंक काफी बड़ा है" "के लिए, &#234) - शायद अंक काफी बड़ा है"
#: ../glib/gmarkup.c:599 #: glib/gmarkup.c:599
#, c-format #, c-format
msgid "Character reference '%-.*s' does not encode a permitted character" msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "संप्रतीक संदर्भ '%-.*s' एक अनुमति प्राप्त संप्रतीक को एनकोड नहीं करता" msgstr "संप्रतीक संदर्भ '%-.*s' एक अनुमति प्राप्त संप्रतीक को एनकोड नहीं करता"
#: ../glib/gmarkup.c:614 #: glib/gmarkup.c:614
msgid "Empty character reference; should include a digit such as &#454;" msgid "Empty character reference; should include a digit such as &#454;"
msgstr "रिक्त अक्षर संदर्भ, अंक जैसे &#454 सम्मिलित अवश्य होने चाहिएँ;" msgstr "रिक्त अक्षर संदर्भ, अंक जैसे &#454 सम्मिलित अवश्य होने चाहिएँ;"
#: ../glib/gmarkup.c:624 #: glib/gmarkup.c:624
msgid "" msgid ""
"Character reference did not end with a semicolon; most likely you used an " "Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand " "ampersand character without intending to start an entity - escape ampersand "
@@ -341,42 +351,44 @@ msgstr ""
"अक्षर का उपयोग किया है पर एक एंटिटी को प्रारंभ करना नहीं चाहते - एम्परसेंड को एस्केप करें " "अक्षर का उपयोग किया है पर एक एंटिटी को प्रारंभ करना नहीं चाहते - एम्परसेंड को एस्केप करें "
"ऐसे &amp;" "ऐसे &amp;"
#: ../glib/gmarkup.c:710 #: glib/gmarkup.c:710
msgid "Unfinished entity reference" msgid "Unfinished entity reference"
msgstr "अपूर्ण एंटिटी संदर्भ" msgstr "अपूर्ण एंटिटी संदर्भ"
#: ../glib/gmarkup.c:716 #: glib/gmarkup.c:716
msgid "Unfinished character reference" msgid "Unfinished character reference"
msgstr "अपूर्ण अक्षर संदर्भ" msgstr "अपूर्ण अक्षर संदर्भ"
#: ../glib/gmarkup.c:959 ../glib/gmarkup.c:987 ../glib/gmarkup.c:1018 #: glib/gmarkup.c:959 glib/gmarkup.c:987 glib/gmarkup.c:1018
msgid "Invalid UTF-8 encoded text" msgid "Invalid UTF-8 encoded text"
msgstr "अवैध यूटीएफ़-8 एनकोडेड पाठ" msgstr "अवैध यूटीएफ़-8 एनकोडेड पाठ"
#: ../glib/gmarkup.c:1054 #: glib/gmarkup.c:1054
msgid "Document must begin with an element (e.g. <book>)" msgid "Document must begin with an element (e.g. <book>)"
msgstr "दस्तावेज़ एक अवयव के नाम से प्रारंभ होना चाहिए (उदाहरण के लिए- <पुस्तक>)" msgstr "दस्तावेज़ एक अवयव के नाम से प्रारंभ होना चाहिए (उदाहरण के लिए- <पुस्तक>)"
#: ../glib/gmarkup.c:1094 #: glib/gmarkup.c:1094
#, c-format #, c-format
msgid "" msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an " "'%s' is not a valid character following a '<' character; it may not begin an "
"element name" "element name"
msgstr "< के पश्चात आया '%s' एक वैध वर्ण नहीं है; यह अवयव नाम से प्रारंभ नहीं होता" msgstr "< के पश्चात आया '%s' एक वैध वर्ण नहीं है; यह अवयव नाम से प्रारंभ नहीं होता"
#: ../glib/gmarkup.c:1158 #: glib/gmarkup.c:1158
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected a '>' character to end the start tag of element " "Odd character '%s', expected a '>' character to end the start tag of element "
"'%s'" "'%s'"
msgstr "विषम अक्षर '%s', एलिमेंट '%s' के प्रारंभ टैक को समाप्त करने हेतु प्रत्याशित था '>' अक्षर" msgstr ""
"विषम अक्षर '%s', एलिमेंट '%s' के प्रारंभ टैक को समाप्त करने हेतु प्रत्याशित था '>' अक्षर"
#: ../glib/gmarkup.c:1247 #: glib/gmarkup.c:1247
#, c-format #, 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' के पश्चात्" msgstr "विषम अक्षर '%s', प्रत्याशित है एक '=' लक्षण नाम '%s' अवयव '%s' के पश्चात्"
#: ../glib/gmarkup.c:1289 #: glib/gmarkup.c:1289
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of " "Odd character '%s', expected a '>' or '/' character to end the start tag of "
@@ -386,7 +398,7 @@ msgstr ""
"'%s' विसम संप्रतीक, एक '>' या '/' संप्रतीक को '%s' तत्व के आरंभ टैग को खत्म करना " "'%s' विसम संप्रतीक, एक '>' या '/' संप्रतीक को '%s' तत्व के आरंभ टैग को खत्म करना "
"प्रत्याशित, या विकल्पतः एक गुण; शायद आपने गुण नाम में एक अमान्य संप्रतीक का प्रयोग किया है" "प्रत्याशित, या विकल्पतः एक गुण; शायद आपने गुण नाम में एक अमान्य संप्रतीक का प्रयोग किया है"
#: ../glib/gmarkup.c:1378 #: glib/gmarkup.c:1378
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when " "Odd character '%s', expected an open quote mark after the equals sign when "
@@ -395,39 +407,40 @@ msgstr ""
"पुराना अक्षर '%s', जब विशेषता '%s', अवयव '%s' का मान दिया जाता है तो बराबर चिह्न " "पुराना अक्षर '%s', जब विशेषता '%s', अवयव '%s' का मान दिया जाता है तो बराबर चिह्न "
"के बाद एक खुला कोट चिह्न वांछित है" "के बाद एक खुला कोट चिह्न वांछित है"
#: ../glib/gmarkup.c:1523 #: glib/gmarkup.c:1523
#, c-format #, c-format
msgid "" msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not " "'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name" "begin an element name"
msgstr "'%s' एक वैध अक्षर नहीं है अक्षर '</' के बाद; '%s' एक अवयव नाम से प्रारंभ नहीं होता" msgstr ""
"'%s' एक वैध अक्षर नहीं है अक्षर '</' के बाद; '%s' एक अवयव नाम से प्रारंभ नहीं होता"
#: ../glib/gmarkup.c:1563 #: glib/gmarkup.c:1563
#, c-format #, c-format
msgid "" msgid ""
"'%s' is not a valid character following the close element name '%s'; the " "'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'" "allowed character is '>'"
msgstr "'%s' एक वैध अक्षर नहीं है क्लोज़ अवयव नाम '%s' के बाद; स्वीकार्य अक्षर है '>'" msgstr "'%s' एक वैध अक्षर नहीं है क्लोज़ अवयव नाम '%s' के बाद; स्वीकार्य अक्षर है '>'"
#: ../glib/gmarkup.c:1574 #: glib/gmarkup.c:1574
#, c-format #, c-format
msgid "Element '%s' was closed, no element is currently open" msgid "Element '%s' was closed, no element is currently open"
msgstr "अवयव '%s' बन्द था, कोई अवयव वर्तमान में खुला नहीं है" msgstr "अवयव '%s' बन्द था, कोई अवयव वर्तमान में खुला नहीं है"
#: ../glib/gmarkup.c:1583 #: glib/gmarkup.c:1583
#, c-format #, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'" msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "दस्तावेज '%s' बन्द था, परन्तु वर्तमान खुला अवयव है '%s'" msgstr "दस्तावेज '%s' बन्द था, परन्तु वर्तमान खुला अवयव है '%s'"
#: ../glib/gmarkup.c:1749 #: glib/gmarkup.c:1749
msgid "Document was empty or contained only whitespace" msgid "Document was empty or contained only whitespace"
msgstr "दस्तावेज़ खाली था या उसमें सिर्फ श्वेत रिक्ति ही था" msgstr "दस्तावेज़ खाली था या उसमें सिर्फ श्वेत रिक्ति ही था"
#: ../glib/gmarkup.c:1763 #: glib/gmarkup.c:1763
msgid "Document ended unexpectedly just after an open angle bracket '<'" msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से एक खुला एंगल ब्रेकेट '<' के पश्चात ही हो गया" msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से एक खुला एंगल ब्रेकेट '<' के पश्चात ही हो गया"
#: ../glib/gmarkup.c:1771 ../glib/gmarkup.c:1815 #: glib/gmarkup.c:1771 glib/gmarkup.c:1815
#, c-format #, c-format
msgid "" msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last " "Document ended unexpectedly with elements still open - '%s' was the last "
@@ -436,7 +449,7 @@ msgstr ""
"दस्तावेज़ का अंत अप्रत्याशित रूप से अवयवों के खुला होने पर भी हो गया - '%s' अंतिम खुला हुआ " "दस्तावेज़ का अंत अप्रत्याशित रूप से अवयवों के खुला होने पर भी हो गया - '%s' अंतिम खुला हुआ "
"अवयव था" "अवयव था"
#: ../glib/gmarkup.c:1779 #: glib/gmarkup.c:1779
#, c-format #, c-format
msgid "" msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending " "Document ended unexpectedly, expected to see a close angle bracket ending "
@@ -445,19 +458,19 @@ msgstr ""
"दस्तावेज़ का अंत अप्रत्याशित रूप से हो गया, वांछित था देखना एक क्लोज़ एंगल ब्रेकेट टैग को बन्द " "दस्तावेज़ का अंत अप्रत्याशित रूप से हो गया, वांछित था देखना एक क्लोज़ एंगल ब्रेकेट टैग को बन्द "
"करता हुआ <%s/>" "करता हुआ <%s/>"
#: ../glib/gmarkup.c:1785 #: glib/gmarkup.c:1785
msgid "Document ended unexpectedly inside an element name" msgid "Document ended unexpectedly inside an element name"
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से अवयव नाम के भीतर हो गया" msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से अवयव नाम के भीतर हो गया"
#: ../glib/gmarkup.c:1790 #: glib/gmarkup.c:1790
msgid "Document ended unexpectedly inside an attribute name" msgid "Document ended unexpectedly inside an attribute name"
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से विशेषता नाम के भीतर हो गया" msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से विशेषता नाम के भीतर हो गया"
#: ../glib/gmarkup.c:1795 #: glib/gmarkup.c:1795
msgid "Document ended unexpectedly inside an element-opening tag." msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से अवयव-खोलने के टैग के भीतर हो गया." msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से अवयव-खोलने के टैग के भीतर हो गया."
#: ../glib/gmarkup.c:1801 #: glib/gmarkup.c:1801
msgid "" msgid ""
"Document ended unexpectedly after the equals sign following an attribute " "Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value" "name; no attribute value"
@@ -465,304 +478,315 @@ msgstr ""
"दस्तावेज़ का अंत अप्रत्याशित रूप से बराबर के चिह्न के बाद एक विशेषता नाम के पश्चात् हो गया; " "दस्तावेज़ का अंत अप्रत्याशित रूप से बराबर के चिह्न के बाद एक विशेषता नाम के पश्चात् हो गया; "
"कोई विशेषता मूल्य नहीं" "कोई विशेषता मूल्य नहीं"
#: ../glib/gmarkup.c:1808 #: glib/gmarkup.c:1808
msgid "Document ended unexpectedly while inside an attribute value" msgid "Document ended unexpectedly while inside an attribute value"
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से विशेषता मान के भीतर हो गया" msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से विशेषता मान के भीतर हो गया"
#: ../glib/gmarkup.c:1823 #: glib/gmarkup.c:1823
#, c-format #, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'" msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से अवयव '%s' हेतु बन्द टैग के भीतर हो गया" msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से अवयव '%s' हेतु बन्द टैग के भीतर हो गया"
#: ../glib/gmarkup.c:1829 #: glib/gmarkup.c:1829
msgid "Document ended unexpectedly inside a comment or processing instruction" msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से टिप्पणी या प्रक्रिया निर्देश के भीतर हो गया" msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से टिप्पणी या प्रक्रिया निर्देश के भीतर हो गया"
#: ../glib/gshell.c:70 #: glib/gshell.c:70
#, c-format
msgid "Quoted text doesn't begin with a quotation mark" msgid "Quoted text doesn't begin with a quotation mark"
msgstr "कोटेड पाठ कोटेशन चिह्न के साथ प्रारंभ नहीं होता" msgstr "कोटेड पाठ कोटेशन चिह्न के साथ प्रारंभ नहीं होता"
#: ../glib/gshell.c:160 #: glib/gshell.c:160
#, c-format
msgid "Unmatched quotation mark in command line or other shell-quoted text" msgid "Unmatched quotation mark in command line or other shell-quoted text"
msgstr "कमांड पंक्ति में मेल नहीं खाते कोटेशन चिह्न या अन्य शैल-कोटेड पाठ" msgstr "कमांड पंक्ति में मेल नहीं खाते कोटेशन चिह्न या अन्य शैल-कोटेड पाठ"
#: ../glib/gshell.c:538 #: glib/gshell.c:538
#, c-format #, c-format
msgid "Text ended just after a '\\' character. (The text was '%s')" msgid "Text ended just after a '\\' character. (The text was '%s')"
msgstr "पाठ का अंत सिर्फ '\\' अक्षर के बाद हो गया. (पाठ था '%s')" msgstr "पाठ का अंत सिर्फ '\\' अक्षर के बाद हो गया. (पाठ था '%s')"
#: ../glib/gshell.c:545 #: glib/gshell.c:545
#, c-format #, c-format
msgid "Text ended before matching quote was found for %c. (The text was '%s')" msgid "Text ended before matching quote was found for %c. (The text was '%s')"
msgstr " %c हेतु मैचिंग कोट से पहले पाठ अंत पाया. (पाठ था '%s')" msgstr " %c हेतु मैचिंग कोट से पहले पाठ अंत पाया. (पाठ था '%s')"
#: ../glib/gshell.c:557 #: glib/gshell.c:557
#, c-format
msgid "Text was empty (or contained only whitespace)" msgid "Text was empty (or contained only whitespace)"
msgstr "पाठ खाली था (या उसमें सिर्फ श्वेत रिक्ति ही था)" msgstr "पाठ खाली था (या उसमें सिर्फ श्वेत रिक्ति ही था)"
#: ../glib/gspawn-win32.c:273 #: glib/gspawn-win32.c:273
#, c-format
msgid "Failed to read data from child process" msgid "Failed to read data from child process"
msgstr "शिशु प्रक्रिया से डेटा पढ़ने में असफल" msgstr "शिशु प्रक्रिया से डेटा पढ़ने में असफल"
#: ../glib/gspawn-win32.c:288 ../glib/gspawn.c:1361 #: glib/gspawn-win32.c:288 glib/gspawn.c:1361
#, c-format #, c-format
msgid "Failed to create pipe for communicating with child process (%s)" msgid "Failed to create pipe for communicating with child process (%s)"
msgstr "शिशु प्रक्रिया (%s) से संचारण हेतु पाइप बनाने में असफल" msgstr "शिशु प्रक्रिया (%s) से संचारण हेतु पाइप बनाने में असफल"
#: ../glib/gspawn-win32.c:326 ../glib/gspawn.c:1025 #: glib/gspawn-win32.c:326 glib/gspawn.c:1025
#, c-format #, c-format
msgid "Failed to read from child pipe (%s)" msgid "Failed to read from child pipe (%s)"
msgstr "चाइल्ड पाइप (%s) से पढ़ने में असफल" msgstr "चाइल्ड पाइप (%s) से पढ़ने में असफल"
#: ../glib/gspawn-win32.c:352 ../glib/gspawn.c:1230 #: glib/gspawn-win32.c:352 glib/gspawn.c:1230
#, c-format #, c-format
msgid "Failed to change to directory '%s' (%s)" msgid "Failed to change to directory '%s' (%s)"
msgstr "डिरेक्ट्री '%s' (%s) पर बदलने में असफल" msgstr "डिरेक्ट्री '%s' (%s) पर बदलने में असफल"
#: ../glib/gspawn-win32.c:358 ../glib/gspawn-win32.c:578 #: glib/gspawn-win32.c:358 glib/gspawn-win32.c:578
#, c-format #, c-format
msgid "Failed to execute child process (%s)" msgid "Failed to execute child process (%s)"
msgstr "शिशु प्रक्रिया (%s) कार्यान्वित करने में असफल" msgstr "शिशु प्रक्रिया (%s) कार्यान्वित करने में असफल"
#: ../glib/gspawn-win32.c:468 ../glib/gspawn-win32.c:524 #: glib/gspawn-win32.c:468 glib/gspawn-win32.c:524
#, c-format #, c-format
msgid "Invalid program name: %s" msgid "Invalid program name: %s"
msgstr "अवैध प्रोग्राम नाम: %s" msgstr "अवैध प्रोग्राम नाम: %s"
#: ../glib/gspawn-win32.c:478 ../glib/gspawn-win32.c:534 #: glib/gspawn-win32.c:478 glib/gspawn-win32.c:534 glib/gspawn-win32.c:777
#: ../glib/gspawn-win32.c:777 ../glib/gspawn-win32.c:832 #: glib/gspawn-win32.c:832 glib/gspawn-win32.c:1367
#: ../glib/gspawn-win32.c:1367
#, c-format #, c-format
msgid "Invalid string in argument vector at %d: %s" msgid "Invalid string in argument vector at %d: %s"
msgstr "%d पर तर्क सदिश में अवैध स्ट्रिंग: %s" msgstr "%d पर तर्क सदिश में अवैध स्ट्रिंग: %s"
#: ../glib/gspawn-win32.c:489 ../glib/gspawn-win32.c:545 #: glib/gspawn-win32.c:489 glib/gspawn-win32.c:545 glib/gspawn-win32.c:791
#: ../glib/gspawn-win32.c:791 ../glib/gspawn-win32.c:845 #: glib/gspawn-win32.c:845 glib/gspawn-win32.c:1400
#: ../glib/gspawn-win32.c:1400
#, c-format #, c-format
msgid "Invalid string in environment: %s" msgid "Invalid string in environment: %s"
msgstr "वातावरण में अवैध स्ट्रिंग: %s" msgstr "वातावरण में अवैध स्ट्रिंग: %s"
#: ../glib/gspawn-win32.c:773 ../glib/gspawn-win32.c:828 #: glib/gspawn-win32.c:773 glib/gspawn-win32.c:828 glib/gspawn-win32.c:1348
#: ../glib/gspawn-win32.c:1348
#, c-format #, c-format
msgid "Invalid working directory: %s" msgid "Invalid working directory: %s"
msgstr "अवैध कार्यशील निर्देशिका: %s" msgstr "अवैध कार्यशील निर्देशिका: %s"
#: ../glib/gspawn-win32.c:887 #: glib/gspawn-win32.c:887
#, c-format #, c-format
msgid "Failed to execute helper program (%s)" msgid "Failed to execute helper program (%s)"
msgstr "हेल्पर प्रोग्राम (%s) कार्यान्वित करने में असफल" msgstr "हेल्पर प्रोग्राम (%s) कार्यान्वित करने में असफल"
#: ../glib/gspawn-win32.c:1087 #: glib/gspawn-win32.c:1087
#, c-format
msgid "" msgid ""
"Unexpected error in g_io_channel_win32_poll() reading data from a child " "Unexpected error in g_io_channel_win32_poll() reading data from a child "
"process" "process"
msgstr "एक शिशु प्रक्रिया से डेटा पढ़ने में g_io_channel_win32_poll() में अप्रत्याशित त्रुटि" msgstr "एक शिशु प्रक्रिया से डेटा पढ़ने में g_io_channel_win32_poll() में अप्रत्याशित त्रुटि"
#: ../glib/gspawn.c:165 #: glib/gspawn.c:165
#, c-format #, c-format
msgid "Failed to read data from child process (%s)" msgid "Failed to read data from child process (%s)"
msgstr "शिशु प्रक्रिया (%s) से डेटा पढ़ने में असफल" msgstr "शिशु प्रक्रिया (%s) से डेटा पढ़ने में असफल"
#: ../glib/gspawn.c:297 #: glib/gspawn.c:297
#, c-format #, c-format
msgid "Unexpected error in select() reading data from a child process (%s)" msgid "Unexpected error in select() reading data from a child process (%s)"
msgstr "एक चाइल्ड प्रक्रिया (%s) से चुनें() पढ़ने का डेटा में अप्रत्याशित त्रुटि हुई" msgstr "एक चाइल्ड प्रक्रिया (%s) से चुनें() पढ़ने का डेटा में अप्रत्याशित त्रुटि हुई"
#: ../glib/gspawn.c:380 #: glib/gspawn.c:380
#, c-format #, c-format
msgid "Unexpected error in waitpid() (%s)" msgid "Unexpected error in waitpid() (%s)"
msgstr "waitpid() (%s) में अप्रत्याशित त्रुटि" msgstr "waitpid() (%s) में अप्रत्याशित त्रुटि"
#: ../glib/gspawn.c:1090 #: glib/gspawn.c:1090
#, c-format #, c-format
msgid "Failed to fork (%s)" msgid "Failed to fork (%s)"
msgstr "(%s) फॉर्क करने में असफल" msgstr "(%s) फॉर्क करने में असफल"
#: ../glib/gspawn.c:1240 #: glib/gspawn.c:1240
#, c-format #, c-format
msgid "Failed to execute child process \"%s\" (%s)" msgid "Failed to execute child process \"%s\" (%s)"
msgstr "शिशु प्रक्रिया \"%s\" (%s) कार्यान्वित करने में असफल" msgstr "शिशु प्रक्रिया \"%s\" (%s) कार्यान्वित करने में असफल"
#: ../glib/gspawn.c:1250 #: glib/gspawn.c:1250
#, c-format #, c-format
msgid "Failed to redirect output or input of child process (%s)" msgid "Failed to redirect output or input of child process (%s)"
msgstr "आउटपुट या शिशु प्रक्रिया (%s) के इनपुट को अनुप्रेषित करने में असफल" msgstr "आउटपुट या शिशु प्रक्रिया (%s) के इनपुट को अनुप्रेषित करने में असफल"
#: ../glib/gspawn.c:1259 #: glib/gspawn.c:1259
#, c-format #, c-format
msgid "Failed to fork child process (%s)" msgid "Failed to fork child process (%s)"
msgstr "शिशु प्रक्रिया (%s) फॉर्क करने में असफल" msgstr "शिशु प्रक्रिया (%s) फॉर्क करने में असफल"
#: ../glib/gspawn.c:1267 #: glib/gspawn.c:1267
#, c-format #, c-format
msgid "Unknown error executing child process \"%s\"" msgid "Unknown error executing child process \"%s\""
msgstr "शिशु प्रक्रिया \"%s\" कार्यान्वित करने में अज्ञात त्रुटि" msgstr "शिशु प्रक्रिया \"%s\" कार्यान्वित करने में अज्ञात त्रुटि"
#: ../glib/gspawn.c:1289 #: glib/gspawn.c:1289
#, c-format #, c-format
msgid "Failed to read enough data from child pid pipe (%s)" msgid "Failed to read enough data from child pid pipe (%s)"
msgstr "शिशु पीआईडी पाइप (%s) से पर्याप्त डेटा पढ़ने में असफल" msgstr "शिशु पीआईडी पाइप (%s) से पर्याप्त डेटा पढ़ने में असफल"
#: ../glib/gutf8.c:1017 #: glib/gutf8.c:1017
#, c-format
msgid "Character out of range for UTF-8" msgid "Character out of range for UTF-8"
msgstr "यूटीएफ-8 हेतु अक्षर सीमा से बाहर" msgstr "यूटीएफ-8 हेतु अक्षर सीमा से बाहर"
#: ../glib/gutf8.c:1111 ../glib/gutf8.c:1120 ../glib/gutf8.c:1252 #: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 glib/gutf8.c:1261
#: ../glib/gutf8.c:1261 ../glib/gutf8.c:1402 ../glib/gutf8.c:1498 #: glib/gutf8.c:1402 glib/gutf8.c:1498
#, c-format
msgid "Invalid sequence in conversion input" msgid "Invalid sequence in conversion input"
msgstr "परिवर्तन इनपुट में अवैध अनुक्रम" 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" msgid "Character out of range for UTF-16"
msgstr "यूटीएफ-16 हेतु अक्षर सीमा से बाहर" msgstr "यूटीएफ-16 हेतु अक्षर सीमा से बाहर"
#: ../glib/goption.c:495 #: glib/goption.c:495
msgid "Usage:" msgid "Usage:"
msgstr "प्रयोग:" msgstr "प्रयोग:"
#: ../glib/goption.c:495 #: glib/goption.c:495
msgid "[OPTION...]" msgid "[OPTION...]"
msgstr "[विकल्प...]" msgstr "[विकल्प...]"
#: ../glib/goption.c:586 #: glib/goption.c:586
msgid "Help Options:" msgid "Help Options:"
msgstr "सहायता विकल्प:" msgstr "सहायता विकल्प:"
#: ../glib/goption.c:587 #: glib/goption.c:587
msgid "Show help options" msgid "Show help options"
msgstr "सहायता विकल्प दिखायें" msgstr "सहायता विकल्प दिखायें"
#: ../glib/goption.c:592 #: glib/goption.c:592
msgid "Show all help options" msgid "Show all help options"
msgstr "सभी सहायता विकल्प दिखायें" msgstr "सभी सहायता विकल्प दिखायें"
#: ../glib/goption.c:642 #: glib/goption.c:642
msgid "Application Options:" msgid "Application Options:"
msgstr "अनुप्रयोग विकल्प:" msgstr "अनुप्रयोग विकल्प:"
#: ../glib/goption.c:686 ../glib/goption.c:756 #: glib/goption.c:686 glib/goption.c:756
#, c-format #, c-format
msgid "Cannot parse integer value '%s' for %s" msgid "Cannot parse integer value '%s' for %s"
msgstr "पूर्णांक मान '%s' को %s के लिये विश्लेषण नहीं कर सकता" msgstr "पूर्णांक मान '%s' को %s के लिये विश्लेषण नहीं कर सकता"
#: ../glib/goption.c:696 ../glib/goption.c:764 #: glib/goption.c:696 glib/goption.c:764
#, c-format #, c-format
msgid "Integer value '%s' for %s out of range" msgid "Integer value '%s' for %s out of range"
msgstr "पूर्णांक मान '%s' %s के लिये रेंज के बाहर है" msgstr "पूर्णांक मान '%s' %s के लिये रेंज के बाहर है"
#: ../glib/goption.c:721 #: glib/goption.c:721
#, c-format #, c-format
msgid "Cannot parse double value '%s' for %s" msgid "Cannot parse double value '%s' for %s"
msgstr "'%s' दोहरे मान का विश्लेषण %s के लिये नहीं कर सकता है" msgstr "'%s' दोहरे मान का विश्लेषण %s के लिये नहीं कर सकता है"
#: ../glib/goption.c:729 #: glib/goption.c:729
#, c-format #, c-format
msgid "Double value '%s' for %s out of range" msgid "Double value '%s' for %s out of range"
msgstr "'%s' दोहरा मान %s के लिये परिसर से बाहर है" msgstr "'%s' दोहरा मान %s के लिये परिसर से बाहर है"
#: ../glib/goption.c:1066 #: glib/goption.c:1066
#, c-format #, c-format
msgid "Error parsing option %s" msgid "Error parsing option %s"
msgstr "%s विकल्प विश्लेषण में त्रुटि" msgstr "%s विकल्प विश्लेषण में त्रुटि"
#: ../glib/goption.c:1097 ../glib/goption.c:1208 #: glib/goption.c:1097 glib/goption.c:1208
#, c-format #, c-format
msgid "Missing argument for %s" msgid "Missing argument for %s"
msgstr "%s के लिये गुम तर्क" msgstr "%s के लिये गुम तर्क"
#: ../glib/goption.c:1597 #: glib/goption.c:1597
#, c-format #, c-format
msgid "Unknown option %s" msgid "Unknown option %s"
msgstr "अनजान विकल्प %s" msgstr "अनजान विकल्प %s"
#: ../glib/gkeyfile.c:337 #: glib/gkeyfile.c:337
#, c-format
msgid "Valid key file could not be found in data dirs" msgid "Valid key file could not be found in data dirs"
msgstr "आंकड़ा निर्देशिका में मान्य कुंजी फाइल नहीं पायी गयी" msgstr "आंकड़ा निर्देशिका में मान्य कुंजी फाइल नहीं पायी गयी"
#: ../glib/gkeyfile.c:372 #: glib/gkeyfile.c:372
#, c-format
msgid "Not a regular file" msgid "Not a regular file"
msgstr "एक सामान्य फाइल नहीं" msgstr "एक सामान्य फाइल नहीं"
#: ../glib/gkeyfile.c:380 #: glib/gkeyfile.c:380
#, c-format
msgid "File is empty" msgid "File is empty"
msgstr "फ़ाइल खाली है" msgstr "फ़ाइल खाली है"
#: ../glib/gkeyfile.c:695 #: glib/gkeyfile.c:695
#, c-format #, c-format
msgid "Key file contains line '%s' which is not a key-value pair, group, or comment" msgid ""
msgstr "कुंजी फाइल में '%s' पंक्ति समाहित है जो कि एक कुंजी मान जोड़ा, समूह, या टिप्पणी नहीं है" "Key file contains line '%s' which is not a key-value pair, group, or comment"
msgstr ""
"कुंजी फाइल में '%s' पंक्ति समाहित है जो कि एक कुंजी मान जोड़ा, समूह, या टिप्पणी नहीं है"
#: ../glib/gkeyfile.c:763 #: glib/gkeyfile.c:763
#, c-format
msgid "Key file does not start with a group" msgid "Key file does not start with a group"
msgstr "कुंजी फाइल एक समूह के साथ शुरू नहीं होता" msgstr "कुंजी फाइल एक समूह के साथ शुरू नहीं होता"
#: ../glib/gkeyfile.c:806 #: glib/gkeyfile.c:806
#, c-format #, c-format
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "कुंजी फाइल में असमर्थित एनकोडिंग '%s' समाहित है" msgstr "कुंजी फाइल में असमर्थित एनकोडिंग '%s' समाहित है"
#: ../glib/gkeyfile.c:1014 ../glib/gkeyfile.c:1173 ../glib/gkeyfile.c:2386 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: ../glib/gkeyfile.c:2451 ../glib/gkeyfile.c:2570 ../glib/gkeyfile.c:2705 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: ../glib/gkeyfile.c:2858 ../glib/gkeyfile.c:3034 ../glib/gkeyfile.c:3091 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "कुंजी फाइल में '%s' समूह नहीं है" msgstr "कुंजी फाइल में '%s' समूह नहीं है"
#: ../glib/gkeyfile.c:1185 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "कुंजी फाइल में '%s' कुंजी नहीं है" msgstr "कुंजी फाइल में '%s' कुंजी नहीं है"
#: ../glib/gkeyfile.c:1286 ../glib/gkeyfile.c:1395 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "कुंजी फाइल में '%s' कुंजी समाहित है '%s' मान के साथ जो UTF-8 नहीं है" msgstr "कुंजी फाइल में '%s' कुंजी समाहित है '%s' मान के साथ जो UTF-8 नहीं है"
#: ../glib/gkeyfile.c:1304 ../glib/gkeyfile.c:1413 ../glib/gkeyfile.c:1785 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "कुंजी फाइल में '%s' कुंजी है जिसके मान का विश्लेषण नहीं किया जा सकता." msgstr "कुंजी फाइल में '%s' कुंजी है जिसके मान का विश्लेषण नहीं किया जा सकता."
#: ../glib/gkeyfile.c:2001 ../glib/gkeyfile.c:2214 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "कुंजी फाइल में '%s' कुंजी है '%s' समूह में जिसके मान का विश्लेषण नहीं किया जा सकता." msgstr "कुंजी फाइल में '%s' कुंजी है '%s' समूह में जिसके मान का विश्लेषण नहीं किया जा सकता."
#: ../glib/gkeyfile.c:2401 ../glib/gkeyfile.c:2585 ../glib/gkeyfile.c:3102 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "कुंजी फाइल में '%s' कुंजी नहीं है '%s' समूह में" msgstr "कुंजी फाइल में '%s' कुंजी नहीं है '%s' समूह में"
#: ../glib/gkeyfile.c:3275 #: glib/gkeyfile.c:3275
#, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "कुंजी फाइल में पंक्ति के अंत में एस्केप संप्रतीक रहता है" msgstr "कुंजी फाइल में पंक्ति के अंत में एस्केप संप्रतीक रहता है"
#: ../glib/gkeyfile.c:3297 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "कुंजी फाइल में '%s' अमान्य श्रृंखला समाहित है" msgstr "कुंजी फाइल में '%s' अमान्य श्रृंखला समाहित है"
#: ../glib/gkeyfile.c:3438 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "मान्य '%s' को एक संख्या की तरह नहीं विश्लेषित किया जा सकता." msgstr "मान्य '%s' को एक संख्या की तरह नहीं विश्लेषित किया जा सकता."
#: ../glib/gkeyfile.c:3448 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "पूर्णांक मान '%s' रेंज के बाहर है" msgstr "पूर्णांक मान '%s' रेंज के बाहर है"
#: ../glib/gkeyfile.c:3476 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "मान '%s' को एक फ्लोट संख्या की तरह नहीं विश्लेषित किया जा सकता." msgstr "मान '%s' को एक फ्लोट संख्या की तरह नहीं विश्लेषित किया जा सकता."
#: ../glib/gkeyfile.c:3496 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "मान '%s' को बुलियन के तौर पर विश्लेषित नहीं किया जा सकता." msgstr "मान '%s' को बुलियन के तौर पर विश्लेषित नहीं किया जा सकता."

View File

@@ -5,7 +5,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 0\n" "Project-Id-Version: glib 0\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2004-03-13 13:03+CET\n" "PO-Revision-Date: 2004-03-13 13:03+CET\n"
"Last-Translator: auto\n" "Last-Translator: auto\n"
"Language-Team: Croatian <lokalizacija@linux.hr>\n" "Language-Team: Croatian <lokalizacija@linux.hr>\n"
@@ -49,35 +49,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -191,7 +191,7 @@ msgstr "Greška pri otvaranju datoteke '%s': fdopen() nije uspio: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Greška pri otvaranju datoteke '%s': fdopen() nije uspio: %s" msgstr "Greška pri otvaranju datoteke '%s': fdopen() nije uspio: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Greška pri stvaranju datoteke '%s': %s" msgstr "Greška pri stvaranju datoteke '%s': %s"
@@ -216,22 +216,22 @@ msgstr "Greška pri otvaranju datoteke '%s': fdopen() nije uspio: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Predložak '%s' nije ispravan, ne smije sadržavati'%s'" msgstr "Predložak '%s' nije ispravan, ne smije sadržavati'%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Predložak '%s' ne završava sa XXXXXX" msgstr "Predložak '%s' ne završava sa XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Nisam uspio pročitati simboličku vezu '%s': %s" msgstr "Nisam uspio pročitati simboličku vezu '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Nisu podržane simboličke veze" msgstr "Nisu podržane simboličke veze"
@@ -730,66 +730,66 @@ msgstr ""
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, fuzzy, c-format #, fuzzy, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "URI '%s' sadrži neispravne escape znakove" msgstr "URI '%s' sadrži neispravne escape znakove"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "" msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD\n" "Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2005-07-12 17:37+0200\n" "PO-Revision-Date: 2005-07-12 17:37+0200\n"
"Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n" "Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome@gnome.hu>\n" "Language-Team: Hungarian <gnome@gnome.hu>\n"
@@ -54,35 +54,35 @@ msgstr "Az adatkönyvtárakban nem található érvényes kulcsfájl"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -205,7 +205,7 @@ msgstr ""
"Nem sikerült átnevezni a(z) \"%s\" fájlt erre: \"%s\". A g_rename() " "Nem sikerült átnevezni a(z) \"%s\" fájlt erre: \"%s\". A g_rename() "
"sikertelen: %s" "sikertelen: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Nem sikerült létrehozni a(z) \"%s\" fájlt: %s" msgstr "Nem sikerült létrehozni a(z) \"%s\" fájlt: %s"
@@ -231,22 +231,22 @@ msgstr "Nem sikerült lezárni a(z) \"%s\" fájlt: az fclose() sikertelen: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "A létező \"%s\" fájl nem távolítható el: a g_unlink() sikertelen: %s" msgstr "A létező \"%s\" fájl nem távolítható el: a g_unlink() sikertelen: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "A(z) \"%s\" sablon érvénytelen, \"%s\" nem lehet benne" msgstr "A(z) \"%s\" sablon érvénytelen, \"%s\" nem lehet benne"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "A(z) \"%s\" sablon vége nem XXXXXX" msgstr "A(z) \"%s\" sablon vége nem XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Nem sikerült kiolvasni a(z) \"%s\" szimbolikus linket: %s" msgstr "Nem sikerült kiolvasni a(z) \"%s\" szimbolikus linket: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "A szimbolikus linkek használata nem támogatott" msgstr "A szimbolikus linkek használata nem támogatott"
@@ -763,33 +763,33 @@ msgstr "A kulcsfájl nem csoporttal kezdődik"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "A kulcsfájl a nem támogatott \"%s\" kódolást tartalmazza" msgstr "A kulcsfájl a nem támogatott \"%s\" kódolást tartalmazza"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "A kulcsfájlból hiányzik a(z) \"%s\" csoport" msgstr "A kulcsfájlból hiányzik a(z) \"%s\" csoport"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "A kulcsfájlban nincs \"%s\" kulcs" msgstr "A kulcsfájlban nincs \"%s\" kulcs"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
"A kulcsfájl tartalmazza a(z) \"%s\" kulcsot \"%s\" értékkel, amelyik azonban " "A kulcsfájl tartalmazza a(z) \"%s\" kulcsot \"%s\" értékkel, amelyik azonban "
"nem UTF-8" "nem UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"A kulcsfájl tartalmazza a(z) \"%s\" kulcsot, amelynek az értéke nem " "A kulcsfájl tartalmazza a(z) \"%s\" kulcsot, amelynek az értéke nem "
"értelmezhető." "értelmezhető."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -798,39 +798,39 @@ msgstr ""
"A kulcsfájl tartalmazza a(z) \"%s\" kulcsot a(z) \"%s\" csoportban, amelynek " "A kulcsfájl tartalmazza a(z) \"%s\" kulcsot a(z) \"%s\" csoportban, amelynek "
"értéke nem értelmezhető." "értéke nem értelmezhető."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "" msgstr ""
"A kulcsfájl nem tartalmazza a(z) \"%s\" kulcsot a(z) \"%s\" csoportban." "A kulcsfájl nem tartalmazza a(z) \"%s\" kulcsot a(z) \"%s\" csoportban."
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "" msgstr ""
"A kulcsfájl escape-szekvenciával megadott karaktert tartalmaz a sor végén" "A kulcsfájl escape-szekvenciával megadott karaktert tartalmaz a sor végén"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "A kulcsfájl érvénytelen escape-szekvenciát tartalmaz (\"%s\")" msgstr "A kulcsfájl érvénytelen escape-szekvenciát tartalmaz (\"%s\")"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "A(z) \"%s\" érték nem értelmezhető számként." msgstr "A(z) \"%s\" érték nem értelmezhető számként."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "A(z) \"%s\" egész érték a tartományon kívülre esik" msgstr "A(z) \"%s\" egész érték a tartományon kívülre esik"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "A(z) \"%s\" érték nem értelmezhető számként." msgstr "A(z) \"%s\" érték nem értelmezhető számként."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "A(z) \"%s\" érték nem értelmezhető logikai értékként." msgstr "A(z) \"%s\" érték nem értelmezhető logikai értékként."

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib HEAD\n" "Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2005-08-30 22:41+0300\n" "PO-Revision-Date: 2005-08-30 22:41+0300\n"
"Last-Translator: Mohammad DAMT <mdamt@bisnisweb.com>\n" "Last-Translator: Mohammad DAMT <mdamt@bisnisweb.com>\n"
"Language-Team: Indonesia <sukarelawan@gnome.linux.or.id>\n" "Language-Team: Indonesia <sukarelawan@gnome.linux.or.id>\n"
@@ -52,35 +52,35 @@ msgstr "File kunci yang benar tidak ditemukan pada direktori data"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -196,7 +196,7 @@ msgstr "Gagal saat membuka file '%s': fungsi fdopen() mengalami kegagalan: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Gagal untuk mengubah nama file '%s' menjadi '%s': g_rename() gagal: %s" msgstr "Gagal untuk mengubah nama file '%s' menjadi '%s': g_rename() gagal: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Gagal saat membuat file '%s': %s" msgstr "Gagal saat membuat file '%s': %s"
@@ -221,22 +221,22 @@ msgstr "Gagal untuk menutup file '%s': fclose() gagal: '%s'"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "File '%s' tidak dapat dibuang: g_unlink() gagal: %s" msgstr "File '%s' tidak dapat dibuang: g_unlink() gagal: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Template '%s' salah, seharusnya tidak boleh berisi '%s'" msgstr "Template '%s' salah, seharusnya tidak boleh berisi '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Template '%s' tidak boleh diakhiri dengan XXXXXX" msgstr "Template '%s' tidak boleh diakhiri dengan XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Gagal saat membaca link simbolik '%s': %s" msgstr "Gagal saat membaca link simbolik '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Link simbolik tidak didukung oleh sistem" msgstr "Link simbolik tidak didukung oleh sistem"
@@ -753,31 +753,31 @@ msgstr "File kunci tidak mulai dengan sebuah kelompok"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "File kunci mengadung encoding yang tidak didukung '%s'" msgstr "File kunci mengadung encoding yang tidak didukung '%s'"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "File kunci tidak memiliki kelompok '%s'" msgstr "File kunci tidak memiliki kelompok '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "File kunci tidak memiliki kunci '%s'" msgstr "File kunci tidak memiliki kunci '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "File kunci mengandung kunci '%s' dengan nilai '%s' yang bukan UTF-8" msgstr "File kunci mengandung kunci '%s' dengan nilai '%s' yang bukan UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"File kunci mengandung kunci '%s' yang memiliki nilai yang tidak dapat " "File kunci mengandung kunci '%s' yang memiliki nilai yang tidak dapat "
"diterjemahkan." "diterjemahkan."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -786,37 +786,37 @@ msgstr ""
"File kunci mengandung kunci '%s' dalam kelompok '%s' yang memiliki nilai " "File kunci mengandung kunci '%s' dalam kelompok '%s' yang memiliki nilai "
"yang tidak dapat diterjemahkan." "yang tidak dapat diterjemahkan."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "File kunci tidak memiliki kunci '%s' pada kelompok '%s'" msgstr "File kunci tidak memiliki kunci '%s' pada kelompok '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "File kunci mengandung karakter escape pada akhir baris" msgstr "File kunci mengandung karakter escape pada akhir baris"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "File kunci berisi '%s'" msgstr "File kunci berisi '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Nilai '%s' tidak dapat diterjemahkan sebagai sebuah nomor." msgstr "Nilai '%s' tidak dapat diterjemahkan sebagai sebuah nomor."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Nilai integer '%s' di luar jangkauan" msgstr "Nilai integer '%s' di luar jangkauan"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Nilai '%s' tidak dapat diterjemahkan sebagai sebuah nomor." msgstr "Nilai '%s' tidak dapat diterjemahkan sebagai sebuah nomor."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Nilai '%s' tidak dapat diterjemahkan sebagai suatu nilai boolean." msgstr "Nilai '%s' tidak dapat diterjemahkan sebagai suatu nilai boolean."

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.2\n" "Project-Id-Version: glib 2.2\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2003-08-18 18:05+0000\n" "PO-Revision-Date: 2003-08-18 18:05+0000\n"
"Last-Translator: Richard Allen <ra@ra.is>\n" "Last-Translator: Richard Allen <ra@ra.is>\n"
"Language-Team: is <is@li.org>\n" "Language-Team: is <is@li.org>\n"
@@ -50,35 +50,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -192,7 +192,7 @@ msgstr "Gat ekki opnað skrána '%s': fdopen() brást: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Gat ekki opnað skrána '%s': fdopen() brást: %s" msgstr "Gat ekki opnað skrána '%s': fdopen() brást: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "gat ekki búið til skrána '%s': %s" msgstr "gat ekki búið til skrána '%s': %s"
@@ -217,22 +217,22 @@ msgstr "Gat ekki opnað skrána '%s': fdopen() brást: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Sniðmátið '%s' er ógilt og ætti ekki að innihalda '%s'" msgstr "Sniðmátið '%s' er ógilt og ætti ekki að innihalda '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Sniðmátið '%s' endar ekki á XXXXXX" msgstr "Sniðmátið '%s' endar ekki á XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "gat ekki lesið tákntengið '%s': %s" msgstr "gat ekki lesið tákntengið '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Tákntengi eru ekki studd" msgstr "Tákntengi eru ekki studd"
@@ -722,66 +722,66 @@ msgstr ""
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, fuzzy, c-format #, fuzzy, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "URI '%s' inniheldur ógild sértákn" msgstr "URI '%s' inniheldur ógild sértákn"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "" msgstr ""

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.10.x\n" "Project-Id-Version: glib 2.10.x\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-02-08 14:10+0100\n" "PO-Revision-Date: 2006-02-08 14:10+0100\n"
"Last-Translator: Luca Ferretti <elle.uca@libero.it>\n" "Last-Translator: Luca Ferretti <elle.uca@libero.it>\n"
"Language-Team: Italian <tp@lists.linux.it>\n" "Language-Team: Italian <tp@lists.linux.it>\n"
@@ -54,35 +54,35 @@ msgstr "Impossibile trovare un file chiavi valido nelle directory dei dati"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -199,7 +199,7 @@ msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "" msgstr ""
"Cambio di nome del file \"%s\" in \"%s\" fallito: g_rename() fallita: %s" "Cambio di nome del file \"%s\" in \"%s\" fallito: g_rename() fallita: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Creazione del file \"%s\" fallita: %s" msgstr "Creazione del file \"%s\" fallita: %s"
@@ -231,22 +231,22 @@ msgstr ""
# c[1] = dir_separator; # c[1] = dir_separator;
# c[2] = '\0'; # c[2] = '\0';
# #
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Il modello \"%s\" non è valido, non dovrebbe contenere un \"%s\"" msgstr "Il modello \"%s\" non è valido, non dovrebbe contenere un \"%s\""
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Il modello \"%s\" non termina per XXXXXX" msgstr "Il modello \"%s\" non termina per XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Lettura del collegamento simbolico \"%s\" fallita: %s" msgstr "Lettura del collegamento simbolico \"%s\" fallita: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Collegamenti simbolici non supportati" msgstr "Collegamenti simbolici non supportati"
@@ -777,33 +777,33 @@ msgstr "Il file chiavi non inizia con un gruppo"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Il file chiavi contiene la codifica non supportata \"%s\"" msgstr "Il file chiavi contiene la codifica non supportata \"%s\""
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Il file chiavi non presenta il gruppo \"%s\"" msgstr "Il file chiavi non presenta il gruppo \"%s\""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Il file chiavi non presenta la chiave \"%s\"" msgstr "Il file chiavi non presenta la chiave \"%s\""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
"Il file chiavi contiene la chiave \"%s\" con il valore \"%s\" che non è in " "Il file chiavi contiene la chiave \"%s\" con il valore \"%s\" che non è in "
"UTF-8" "UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Il file chiavi contiene la chiave \"%s\" il cui valore non può essere " "Il file chiavi contiene la chiave \"%s\" il cui valore non può essere "
"interpretato." "interpretato."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -812,37 +812,37 @@ msgstr ""
"Il file chiavi contiene la chiave \"%s\" nel gruppo \"%s\" il cui valore non " "Il file chiavi contiene la chiave \"%s\" nel gruppo \"%s\" il cui valore non "
"può essere interpretato." "può essere interpretato."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Il file chiavi non presenta alcuna chiave \"%s\" nel gruppo \"%s\"" msgstr "Il file chiavi non presenta alcuna chiave \"%s\" nel gruppo \"%s\""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Il file chiavi contiene un carattere di escape alla fine della riga" msgstr "Il file chiavi contiene un carattere di escape alla fine della riga"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Il file chiavi contiene la sequenza di escape non valida \"%s\"" msgstr "Il file chiavi contiene la sequenza di escape non valida \"%s\""
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Impossibile interpretare il valore \"%s\" come un numero." msgstr "Impossibile interpretare il valore \"%s\" come un numero."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Il valore intero \"%s\" è fuori dell'intervallo" msgstr "Il valore intero \"%s\" è fuori dell'intervallo"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Impossibile interpretare il valore \"%s\" come un numero." msgstr "Impossibile interpretare il valore \"%s\" come un numero."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Impossibile interpretare il valore \"%s\" come un booleano." msgstr "Impossibile interpretare il valore \"%s\" come un booleano."

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib HEAD\n" "Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-05-17 00:08+0900\n" "PO-Revision-Date: 2006-05-17 00:08+0900\n"
"Last-Translator: Takeshi AIHANA <aihana@gnome.gr.jp>\n" "Last-Translator: Takeshi AIHANA <aihana@gnome.gr.jp>\n"
"Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n" "Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n"
@@ -51,36 +51,36 @@ msgstr "データ・ディレクトリの中に不適切なブックマーク・
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "URI が '%s' であるブックマークは既に存在します" msgstr "URI が '%s' であるブックマークは既に存在します"
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "URI '%s' のブックマークが見つかりませんでした" msgstr "URI '%s' のブックマークが見つかりませんでした"
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI '%s' のブックマークの中で MIME 型が定義されていません" msgstr "URI '%s' のブックマークの中で MIME 型が定義されていません"
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
"URI '%s' のブックマークの中でプライベートではないフラグが定義されています" "URI '%s' のブックマークの中でプライベートではないフラグが定義されています"
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "URI '%s' のブックマークの中にグループがありません" msgstr "URI '%s' のブックマークの中にグループがありません"
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "アプリケーション '%s' は '%s' のブックマークを登録していません" msgstr "アプリケーション '%s' は '%s' のブックマークを登録していません"
@@ -195,7 +195,7 @@ msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "" msgstr ""
"'%s' から '%s' へのファイル名の変更に失敗しました: g_rename() が失敗: %s" "'%s' から '%s' へのファイル名の変更に失敗しました: g_rename() が失敗: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "ファイル '%s' の生成に失敗しました: %s" msgstr "ファイル '%s' の生成に失敗しました: %s"
@@ -220,22 +220,22 @@ msgstr "ファイル '%s' を閉じれません: fclose() が失敗: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "既存のファイル '%s' を削除できませんでした: g_unlink() が失敗: %s" msgstr "既存のファイル '%s' を削除できませんでした: g_unlink() が失敗: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "テンプレート '%s' が正しくありません ('%s' を含めないこと)" msgstr "テンプレート '%s' が正しくありません ('%s' を含めないこと)"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "テンプレート '%s' が XXXXXX で終わっていません" msgstr "テンプレート '%s' が XXXXXX で終わっていません"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "シンボリック・リンク '%s' の読み込みが失敗: %s" msgstr "シンボリック・リンク '%s' の読み込みが失敗: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "シンボリック・リンクはサポートしていません" msgstr "シンボリック・リンクはサポートしていません"
@@ -739,29 +739,29 @@ msgstr "キー・ファイルがグループで始まっていません"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "キー・ファイルにサポートしてないエンコーディング '%s' があります" msgstr "キー・ファイルにサポートしてないエンコーディング '%s' があります"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "キー・ファイルにグループ '%s' がありません" msgstr "キー・ファイルにグループ '%s' がありません"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "キー・ファイルにキー '%s' がありません" msgstr "キー・ファイルにキー '%s' がありません"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "キー・ファイルのキー '%s' の値 '%s' が UTF-8 ではありません" msgstr "キー・ファイルのキー '%s' の値 '%s' が UTF-8 ではありません"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "キー・ファイルのキー '%s' の値を解釈できませんでした" msgstr "キー・ファイルのキー '%s' の値を解釈できませんでした"
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -769,37 +769,37 @@ msgid ""
msgstr "" msgstr ""
"キー・ファイルのグループ '%2$s' にあるキー '%1$s' の値を解釈できませんでした" "キー・ファイルのグループ '%2$s' にあるキー '%1$s' の値を解釈できませんでした"
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "キー・ファイルにはグループ '%2$s' のキー '%1$s' がありません" msgstr "キー・ファイルにはグループ '%2$s' のキー '%1$s' がありません"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "キー・ファイルの行末にエスケープ文字が含まれています" msgstr "キー・ファイルの行末にエスケープ文字が含まれています"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "キー・ファイルに無効なエスケープ・シーケンス '%s' が含まれています" msgstr "キー・ファイルに無効なエスケープ・シーケンス '%s' が含まれています"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "値 '%s' を数値として解釈できません" msgstr "値 '%s' を数値として解釈できません"
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "整数値 '%s' は範囲外の値です" msgstr "整数値 '%s' は範囲外の値です"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "値 '%s' を実数値として解釈できません" msgstr "値 '%s' を実数値として解釈できません"
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "値 '%s' を論理値として解釈できません" msgstr "値 '%s' を論理値として解釈できません"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.9.6\n" "Project-Id-Version: glib 2.9.6\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-04-10 04:12+0200\n" "PO-Revision-Date: 2006-04-10 04:12+0200\n"
"Last-Translator: Gia Shervashidze <giasher@telenet.ge>\n" "Last-Translator: Gia Shervashidze <giasher@telenet.ge>\n"
"Language-Team: Georgian <ka@li.org>\n" "Language-Team: Georgian <ka@li.org>\n"
@@ -52,35 +52,35 @@ msgstr "მონაცემთა დასტებში მართებ
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -197,7 +197,7 @@ msgstr "ფაილის \"%s\" გახსნის შეცდომა:
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "ვერ მოხერხდა '%s' ფაილის გადარქმევა - '%s': g_rename() ვერ შედგა: %s" msgstr "ვერ მოხერხდა '%s' ფაილის გადარქმევა - '%s': g_rename() ვერ შედგა: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "ვერ ვქმნი '%s' ფაილს: %s" msgstr "ვერ ვქმნი '%s' ფაილს: %s"
@@ -222,22 +222,22 @@ msgstr "ვერ ვხურავ '%s' ფაილს: fclose() ვერ
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "არსებული '%s' ფაილი ვერ ამოიშლება: g_unlink() ვერ შედგა: %s" msgstr "არსებული '%s' ფაილი ვერ ამოიშლება: g_unlink() ვერ შედგა: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "თარგი '%s' მცდარია და '%s'-ს არ უნდა შეიცავდეს" msgstr "თარგი '%s' მცდარია და '%s'-ს არ უნდა შეიცავდეს"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr " '%s' არ მთავრდება კონტექსტით XXXXXX" msgstr " '%s' არ მთავრდება კონტექსტით XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "სიმბოლური ბმის \"%s\" წაკითხვის შეცდომა: %s" msgstr "სიმბოლური ბმის \"%s\" წაკითხვის შეცდომა: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "სიმბოლური ბმების გამოყენება არაა რეალიზებული" msgstr "სიმბოლური ბმების გამოყენება არაა რეალიზებული"
@@ -741,31 +741,31 @@ msgstr "საკვანძო ფაილი ჯგუფით არ ი
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "საკვანძო ფაილი შეიცავს არარეალიზებულ კოდირებას '%s'" msgstr "საკვანძო ფაილი შეიცავს არარეალიზებულ კოდირებას '%s'"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "საკვანძო ფაილი არ შეიცავს ჯგუფებს '%s'" msgstr "საკვანძო ფაილი არ შეიცავს ჯგუფებს '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "საკვანძო ფაილი არ შეიცავს კოდს '%s'" msgstr "საკვანძო ფაილი არ შეიცავს კოდს '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
"საკვანძო ფაილი შეიცავს კოდს '%s', რომლის მნიშვნელობაც '%s' არაა UTF-8 " "საკვანძო ფაილი შეიცავს კოდს '%s', რომლის მნიშვნელობაც '%s' არაა UTF-8 "
"კოდირებაში" "კოდირებაში"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "საკვანძო ფაილი შეიცავს კოდს '%s', რომლის მნიშვნელობაც ვერ იშიფრება." msgstr "საკვანძო ფაილი შეიცავს კოდს '%s', რომლის მნიშვნელობაც ვერ იშიფრება."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -774,37 +774,37 @@ msgstr ""
"საკვანძო ფაილი შეიცავს კოდს '%s' ჯგუფში '%s', რომლის მნიშვნელობაც ვერ " "საკვანძო ფაილი შეიცავს კოდს '%s' ჯგუფში '%s', რომლის მნიშვნელობაც ვერ "
"იშიფრება." "იშიფრება."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "საკვანძო ფაილი არ შეიცავს კოდს '%s' ჯგუფში '%s'" msgstr "საკვანძო ფაილი არ შეიცავს კოდს '%s' ჯგუფში '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "საკვანძო ფაილი სტრიქონის ბოლოს შეიცავს escape სიმბოლოს" msgstr "საკვანძო ფაილი სტრიქონის ბოლოს შეიცავს escape სიმბოლოს"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "საკვანძო ფაილი შეიცავს მცდარ escape მიმდევრობას '%s'" msgstr "საკვანძო ფაილი შეიცავს მცდარ escape მიმდევრობას '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "მნიშვნელობა '%s' ვერ აღიქმება როგორც რიცხვი." msgstr "მნიშვნელობა '%s' ვერ აღიქმება როგორც რიცხვი."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "მთელი მნიშვნელობა '%s' რანგს გარეთაა" msgstr "მთელი მნიშვნელობა '%s' რანგს გარეთაა"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "მნიშვნელობა '%s' ვერ აღიქმება როგორც რიცხვი." msgstr "მნიშვნელობა '%s' ვერ აღიქმება როგორც რიცხვი."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "მნიშვნელობა '%s' ვერ აღიქმება როგორც ლოგიკური ოპერატორი." msgstr "მნიშვნელობა '%s' ვერ აღიქმება როგორც ლოგიკური ოპერატორი."

354
po/ko.po
View File

@@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.11.4\n" "Project-Id-Version: glib 2.11.4\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-17 15:42+0900\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-06-17 15:43+0900\n" "PO-Revision-Date: 2006-06-17 15:43+0900\n"
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n" "Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
"Language-Team: GNOME Korea <gnome-kr-hackers@lists.kldp.net>\n" "Language-Team: GNOME Korea <gnome-kr-hackers@lists.kldp.net>\n"
@@ -14,265 +14,273 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: ../glib/gbookmarkfile.c:716 ../glib/gbookmarkfile.c:793 #: glib/gbookmarkfile.c:716 glib/gbookmarkfile.c:793 glib/gbookmarkfile.c:872
#: ../glib/gbookmarkfile.c:872 ../glib/gbookmarkfile.c:919 #: glib/gbookmarkfile.c:919
#, c-format #, c-format
msgid "Unexpected attribute '%s' for element '%s'" msgid "Unexpected attribute '%s' for element '%s'"
msgstr "예상치 못하게 '%2$s' 엘리먼트에 '%1$s' 애트리뷰트가 있습니다" msgstr "예상치 못하게 '%2$s' 엘리먼트에 '%1$s' 애트리뷰트가 있습니다"
#: ../glib/gbookmarkfile.c:727 ../glib/gbookmarkfile.c:804 #: glib/gbookmarkfile.c:727 glib/gbookmarkfile.c:804 glib/gbookmarkfile.c:814
#: ../glib/gbookmarkfile.c:814 ../glib/gbookmarkfile.c:930 #: glib/gbookmarkfile.c:930
#, c-format #, c-format
msgid "Attribute '%s' of element '%s' not found" msgid "Attribute '%s' of element '%s' not found"
msgstr "'%2$s' 엘리먼트에 '%1$s' 애트리뷰트가 없습니다" msgstr "'%2$s' 엘리먼트에 '%1$s' 애트리뷰트가 없습니다"
#: ../glib/gbookmarkfile.c:1103 ../glib/gbookmarkfile.c:1168 #: glib/gbookmarkfile.c:1103 glib/gbookmarkfile.c:1168
#: ../glib/gbookmarkfile.c:1232 ../glib/gbookmarkfile.c:1242 #: glib/gbookmarkfile.c:1232 glib/gbookmarkfile.c:1242
#, c-format #, c-format
msgid "Unexpected tag '%s', tag '%s' expected" msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "예상치 못하게 '%s' 태그가 있습니다. '%s' 태그가 있어야 합니다" msgstr "예상치 못하게 '%s' 태그가 있습니다. '%s' 태그가 있어야 합니다"
#: ../glib/gbookmarkfile.c:1128 ../glib/gbookmarkfile.c:1142 #: glib/gbookmarkfile.c:1128 glib/gbookmarkfile.c:1142
#: ../glib/gbookmarkfile.c:1210 ../glib/gbookmarkfile.c:1262 #: glib/gbookmarkfile.c:1210 glib/gbookmarkfile.c:1262
#, c-format #, c-format
msgid "Unexpected tag '%s' inside '%s'" msgid "Unexpected tag '%s' inside '%s'"
msgstr "예상치 못하게 '%2$s' 안에 '%1$s' 태그가 있습니다" msgstr "예상치 못하게 '%2$s' 안에 '%1$s' 태그가 있습니다"
#: ../glib/gbookmarkfile.c:1792 #: glib/gbookmarkfile.c:1792
#, c-format
msgid "No valid bookmark file was be found in data dirs" msgid "No valid bookmark file was be found in data dirs"
msgstr "데이터 디렉토리에 올바른 북마크 파일이 없습니다" msgstr "데이터 디렉토리에 올바른 북마크 파일이 없습니다"
#: ../glib/gbookmarkfile.c:1993 #: glib/gbookmarkfile.c:1993
#, c-format #, c-format
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "'%s' URL에 대한 북마크가 이미 있습니다" msgstr "'%s' URL에 대한 북마크가 이미 있습니다"
#: ../glib/gbookmarkfile.c:2039 ../glib/gbookmarkfile.c:2196 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: ../glib/gbookmarkfile.c:2281 ../glib/gbookmarkfile.c:2362 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: ../glib/gbookmarkfile.c:2447 ../glib/gbookmarkfile.c:2530 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: ../glib/gbookmarkfile.c:2608 ../glib/gbookmarkfile.c:2687 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: ../glib/gbookmarkfile.c:2729 ../glib/gbookmarkfile.c:2826 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: ../glib/gbookmarkfile.c:2949 ../glib/gbookmarkfile.c:3139 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: ../glib/gbookmarkfile.c:3215 ../glib/gbookmarkfile.c:3367 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: ../glib/gbookmarkfile.c:3432 ../glib/gbookmarkfile.c:3522 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: ../glib/gbookmarkfile.c:3649 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "'%s' URL에 대한 북마크가 없습니다" msgstr "'%s' URL에 대한 북마크가 없습니다"
#: ../glib/gbookmarkfile.c:2371 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "'%s' URL에 대한 북마크에 MIME 타입이 없습니다" msgstr "'%s' URL에 대한 북마크에 MIME 타입이 없습니다"
#: ../glib/gbookmarkfile.c:2456 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "'%s' URL에 대한 북마크에 개인 플래그가 없습니다" msgstr "'%s' URL에 대한 북마크에 개인 플래그가 없습니다"
#: ../glib/gbookmarkfile.c:2835 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "'%s' URL에 대한 북마크에 그룹이 설정되어 있지 않습니다" msgstr "'%s' URL에 대한 북마크에 그룹이 설정되어 있지 않습니다"
#: ../glib/gbookmarkfile.c:3233 ../glib/gbookmarkfile.c:3377 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "이름이 '%s'인 어떤 프로그램도 '%s'에 대한 북마크를 등록하지 않았습니다" msgstr "이름이 '%s'인 어떤 프로그램도 '%s'에 대한 북마크를 등록하지 않았습니다"
#: ../glib/gconvert.c:404 ../glib/gconvert.c:482 ../glib/giochannel.c:1150 #: glib/gconvert.c:404 glib/gconvert.c:482 glib/giochannel.c:1150
#, c-format #, c-format
msgid "Conversion from character set '%s' to '%s' is not supported" msgid "Conversion from character set '%s' to '%s' is not supported"
msgstr "문자셋 '%s'에서 '%s'(으)로 변환은 지원되지 않습니다" msgstr "문자셋 '%s'에서 '%s'(으)로 변환은 지원되지 않습니다"
#: ../glib/gconvert.c:408 ../glib/gconvert.c:486 #: glib/gconvert.c:408 glib/gconvert.c:486
#, c-format #, c-format
msgid "Could not open converter from '%s' to '%s'" msgid "Could not open converter from '%s' to '%s'"
msgstr "'%s'에서 '%s'(으)로 변환하는 변환기를 열 수 없습니다" msgstr "'%s'에서 '%s'(으)로 변환하는 변환기를 열 수 없습니다"
#: ../glib/gconvert.c:602 ../glib/gconvert.c:991 ../glib/giochannel.c:1322 #: glib/gconvert.c:602 glib/gconvert.c:991 glib/giochannel.c:1322
#: ../glib/giochannel.c:1364 ../glib/giochannel.c:2206 ../glib/gutf8.c:943 #: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943
#: ../glib/gutf8.c:1392 #: glib/gutf8.c:1392
#, c-format
msgid "Invalid byte sequence in conversion input" msgid "Invalid byte sequence in conversion input"
msgstr "변환 입력에서 잘못된 바이트 순서" msgstr "변환 입력에서 잘못된 바이트 순서"
#: ../glib/gconvert.c:608 ../glib/gconvert.c:918 ../glib/giochannel.c:1329 #: glib/gconvert.c:608 glib/gconvert.c:918 glib/giochannel.c:1329
#: ../glib/giochannel.c:2218 #: glib/giochannel.c:2218
#, c-format #, c-format
msgid "Error during conversion: %s" msgid "Error during conversion: %s"
msgstr "변환중 오류: %s" msgstr "변환중 오류: %s"
#: ../glib/gconvert.c:643 ../glib/gutf8.c:939 ../glib/gutf8.c:1143 #: glib/gconvert.c:643 glib/gutf8.c:939 glib/gutf8.c:1143 glib/gutf8.c:1284
#: ../glib/gutf8.c:1284 ../glib/gutf8.c:1388 #: glib/gutf8.c:1388
#, c-format
msgid "Partial character sequence at end of input" msgid "Partial character sequence at end of input"
msgstr "입력의 끝에서 부분적인 문자 순서" msgstr "입력의 끝에서 부분적인 문자 순서"
#: ../glib/gconvert.c:893 #: glib/gconvert.c:893
#, c-format #, c-format
msgid "Cannot convert fallback '%s' to codeset '%s'" msgid "Cannot convert fallback '%s' to codeset '%s'"
msgstr "코드셋 '%2$s'에서 대체하는 '%1$s'(으)로 변환 못함" msgstr "코드셋 '%2$s'에서 대체하는 '%1$s'(으)로 변환 못함"
#: ../glib/gconvert.c:1702 #: glib/gconvert.c:1702
#, c-format #, c-format
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
msgstr "URI '%s'은(는) \"file\" 스키마를 사용하는 절대 경로 URI가 아닙니다" msgstr "URI '%s'은(는) \"file\" 스키마를 사용하는 절대 경로 URI가 아닙니다"
#: ../glib/gconvert.c:1712 #: glib/gconvert.c:1712
#, c-format #, c-format
msgid "The local file URI '%s' may not include a '#'" msgid "The local file URI '%s' may not include a '#'"
msgstr "로컬 파일 URI '%s'에는 '#'이 들어갈 수 없습니다" msgstr "로컬 파일 URI '%s'에는 '#'이 들어갈 수 없습니다"
#: ../glib/gconvert.c:1729 #: glib/gconvert.c:1729
#, c-format #, c-format
msgid "The URI '%s' is invalid" msgid "The URI '%s' is invalid"
msgstr "URI '%s'이(가) 잘못되었습니다" msgstr "URI '%s'이(가) 잘못되었습니다"
#: ../glib/gconvert.c:1741 #: glib/gconvert.c:1741
#, c-format #, c-format
msgid "The hostname of the URI '%s' is invalid" msgid "The hostname of the URI '%s' is invalid"
msgstr "URI '%s'의 호스트 이름이 잘못되었습니다" msgstr "URI '%s'의 호스트 이름이 잘못되었습니다"
#: ../glib/gconvert.c:1757 #: glib/gconvert.c:1757
#, c-format #, c-format
msgid "The URI '%s' contains invalidly escaped characters" msgid "The URI '%s' contains invalidly escaped characters"
msgstr "URI '%s'은(는) 잘못된 이스케이프 문자가 들어 있습니다" msgstr "URI '%s'은(는) 잘못된 이스케이프 문자가 들어 있습니다"
#: ../glib/gconvert.c:1852 #: glib/gconvert.c:1852
#, c-format #, c-format
msgid "The pathname '%s' is not an absolute path" msgid "The pathname '%s' is not an absolute path"
msgstr "경로이름 '%s'은(는) 절대 경로가 아닙니다" msgstr "경로이름 '%s'은(는) 절대 경로가 아닙니다"
#: ../glib/gconvert.c:1862 #: glib/gconvert.c:1862
#, c-format
msgid "Invalid hostname" msgid "Invalid hostname"
msgstr "잘못된 호스트 이름" msgstr "잘못된 호스트 이름"
#: ../glib/gdir.c:121 ../glib/gdir.c:141 #: glib/gdir.c:121 glib/gdir.c:141
#, c-format #, c-format
msgid "Error opening directory '%s': %s" msgid "Error opening directory '%s': %s"
msgstr "디렉토리 '%s' 여는 중 오류 : %s" msgstr "디렉토리 '%s' 여는 중 오류 : %s"
#: ../glib/gfileutils.c:572 ../glib/gfileutils.c:645 #: glib/gfileutils.c:572 glib/gfileutils.c:645
#, c-format #, c-format
msgid "Could not allocate %lu bytes to read file \"%s\"" msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "파일 \"%2$s\"을(를) 읽은 %1$lu 바이트를 할당할 수 없습니다" msgstr "파일 \"%2$s\"을(를) 읽은 %1$lu 바이트를 할당할 수 없습니다"
#: ../glib/gfileutils.c:587 #: glib/gfileutils.c:587
#, c-format #, c-format
msgid "Error reading file '%s': %s" msgid "Error reading file '%s': %s"
msgstr "파일 '%s'을(를) 읽는 중 오류: %s" msgstr "파일 '%s'을(를) 읽는 중 오류: %s"
#: ../glib/gfileutils.c:669 #: glib/gfileutils.c:669
#, c-format #, c-format
msgid "Failed to read from file '%s': %s" msgid "Failed to read from file '%s': %s"
msgstr "파일 '%s'에서 읽기 실패 : %s" msgstr "파일 '%s'에서 읽기 실패 : %s"
#: ../glib/gfileutils.c:720 ../glib/gfileutils.c:807 #: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format #, c-format
msgid "Failed to open file '%s': %s" msgid "Failed to open file '%s': %s"
msgstr "파일 '%s' 열기 실패 : %s" msgstr "파일 '%s' 열기 실패 : %s"
#: ../glib/gfileutils.c:737 ../glib/gmappedfile.c:133 #: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format #, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "파일 '%s'의 속성을 가져오기 실패 : fstat() 실패: %s" msgstr "파일 '%s'의 속성을 가져오기 실패 : fstat() 실패: %s"
#: ../glib/gfileutils.c:771 #: glib/gfileutils.c:771
#, c-format #, c-format
msgid "Failed to open file '%s': fdopen() failed: %s" msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "파일 '%s' 열기 실패: fdopen() 실패: %s" msgstr "파일 '%s' 열기 실패: fdopen() 실패: %s"
#: ../glib/gfileutils.c:905 #: glib/gfileutils.c:905
#, c-format #, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "파일 '%s'의 이름을 '%s'(으)로 바꾸는 데 실패: g_rename() 실패: %s" msgstr "파일 '%s'의 이름을 '%s'(으)로 바꾸는 데 실패: g_rename() 실패: %s"
#: ../glib/gfileutils.c:946 ../glib/gfileutils.c:1404 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "파일 '%s' 만들기 실패: %s" msgstr "파일 '%s' 만들기 실패: %s"
#: ../glib/gfileutils.c:960 #: glib/gfileutils.c:960
#, c-format #, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s" msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "파일 '%s' 쓰기 용도로 열기 실패: fdopen() 실패: %s" msgstr "파일 '%s' 쓰기 용도로 열기 실패: fdopen() 실패: %s"
#: ../glib/gfileutils.c:985 #: glib/gfileutils.c:985
#, c-format #, c-format
msgid "Failed to write file '%s': fwrite() failed: %s" msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "파일 '%s' 쓰기 실패: fwrite() 실패: %s" msgstr "파일 '%s' 쓰기 실패: fwrite() 실패: %s"
#: ../glib/gfileutils.c:1004 #: glib/gfileutils.c:1004
#, c-format #, c-format
msgid "Failed to close file '%s': fclose() failed: %s" msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "파일 '%s' 닫기 실패: fclose() 실패: %s" msgstr "파일 '%s' 닫기 실패: fclose() 실패: %s"
#: ../glib/gfileutils.c:1122 #: glib/gfileutils.c:1122
#, c-format #, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "기존의 '%s' 파일을 지울 수 없습니다: g_unlink() 실패: %s" msgstr "기존의 '%s' 파일을 지울 수 없습니다: g_unlink() 실패: %s"
#: ../glib/gfileutils.c:1366 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "템플리트 '%s'이(가) 잘못되었습니다, '%s'이(가) 들어 있으면 안 됩니다" msgstr "템플리트 '%s'이(가) 잘못되었습니다, '%s'이(가) 들어 있으면 안 됩니다"
#: ../glib/gfileutils.c:1379 #: glib/gfileutils.c:1379
#, c-format #, c-format
msgid "Template '%s' doesn't contain XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "템플리트 '%s'에 XXXXXX가 없습니다" msgstr "템플리트 '%s'에 XXXXXX가 없습니다"
#: ../glib/gfileutils.c:1854 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "심볼릭 링크 '%s' 읽기 실패: %s" msgstr "심볼릭 링크 '%s' 읽기 실패: %s"
#: ../glib/gfileutils.c:1875 #: glib/gfileutils.c:1875
#, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "심볼릭 링크를 지원하지 않습니다" msgstr "심볼릭 링크를 지원하지 않습니다"
#: ../glib/giochannel.c:1154 #: glib/giochannel.c:1154
#, c-format #, c-format
msgid "Could not open converter from '%s' to '%s': %s" msgid "Could not open converter from '%s' to '%s': %s"
msgstr "`%s'에서 `%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" msgid "Can't do a raw read in g_io_channel_read_line_string"
msgstr "g_io_channel_read_line_string으로 raw 일기를 할 수 없습니다" msgstr "g_io_channel_read_line_string으로 raw 일기를 할 수 없습니다"
#: ../glib/giochannel.c:1546 ../glib/giochannel.c:1803 #: glib/giochannel.c:1546 glib/giochannel.c:1803 glib/giochannel.c:1889
#: ../glib/giochannel.c:1889 #, c-format
msgid "Leftover unconverted data in read buffer" msgid "Leftover unconverted data in read buffer"
msgstr "읽기 버퍼에서 변환되지 않은 데이터를 남겨둠" msgstr "읽기 버퍼에서 변환되지 않은 데이터를 남겨둠"
#: ../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" msgid "Channel terminates in a partial character"
msgstr "일부 문자에서 채널 끝냄" 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" msgid "Can't do a raw read in g_io_channel_read_to_end"
msgstr "g_io_channel_read_to_endi로 raw 읽기를 할 수 없습니다" msgstr "g_io_channel_read_to_endi로 raw 읽기를 할 수 없습니다"
#: ../glib/gmappedfile.c:116 #: glib/gmappedfile.c:116
#, c-format #, c-format
msgid "Failed to open file '%s': open() failed: %s" msgid "Failed to open file '%s': open() failed: %s"
msgstr "파일 '%s' 열기 실패: dopen() 실패: %s" msgstr "파일 '%s' 열기 실패: dopen() 실패: %s"
#: ../glib/gmappedfile.c:193 #: glib/gmappedfile.c:193
#, c-format #, c-format
msgid "Failed to map file '%s': mmap() failed: %s" msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "파일 '%s' 매핑 실패: mmap() 실패: %s" msgstr "파일 '%s' 매핑 실패: mmap() 실패: %s"
#: ../glib/gmarkup.c:227 #: glib/gmarkup.c:227
#, c-format #, c-format
msgid "Error on line %d char %d: %s" msgid "Error on line %d char %d: %s"
msgstr "%d째 줄 %d 문자에서 오류: %s" msgstr "%d째 줄 %d 문자에서 오류: %s"
#: ../glib/gmarkup.c:325 #: glib/gmarkup.c:325
#, c-format #, c-format
msgid "Error on line %d: %s" msgid "Error on line %d: %s"
msgstr "%d째 줄에서 오류: %s" msgstr "%d째 줄에서 오류: %s"
#: ../glib/gmarkup.c:429 #: glib/gmarkup.c:429
msgid "" msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;" "Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "" msgstr ""
@@ -280,7 +288,7 @@ msgstr ""
"&apos; 입니다" "&apos; 입니다"
# FIXME: "escape"라는 동사를 번역? # FIXME: "escape"라는 동사를 번역?
#: ../glib/gmarkup.c:439 #: glib/gmarkup.c:439
#, c-format #, c-format
msgid "" msgid ""
"Character '%s' is not valid at the start of an entity name; the & character " "Character '%s' is not valid at the start of an entity name; the & character "
@@ -291,18 +299,18 @@ msgstr ""
"작합니다. 이 & 기호가 엔티티에 사용되는 것이 아닌 경우에는, &amp; 라고 쓰십" "작합니다. 이 & 기호가 엔티티에 사용되는 것이 아닌 경우에는, &amp; 라고 쓰십"
"시오" "시오"
#: ../glib/gmarkup.c:473 #: glib/gmarkup.c:473
#, c-format #, c-format
msgid "Character '%s' is not valid inside an entity name" msgid "Character '%s' is not valid inside an entity name"
msgstr "문자 '%s'은(는) 엔티티 이름에서 올바르지 않습니다" msgstr "문자 '%s'은(는) 엔티티 이름에서 올바르지 않습니다"
#: ../glib/gmarkup.c:510 #: glib/gmarkup.c:510
#, c-format #, c-format
msgid "Entity name '%s' is not known" msgid "Entity name '%s' is not known"
msgstr "엔티티 이름 '%s'이(가) 알려져 있지 않습니다" msgstr "엔티티 이름 '%s'이(가) 알려져 있지 않습니다"
# FIXME: "escape"라는 동사를 번역? # FIXME: "escape"라는 동사를 번역?
#: ../glib/gmarkup.c:521 #: glib/gmarkup.c:521
msgid "" msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand " "Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;" "character without intending to start an entity - escape ampersand as &amp;"
@@ -311,7 +319,7 @@ msgstr ""
"고 하지 않은 곳에서 & 기호를 사용한 경우일 것입니다 - 이런 경우 &amp; 라고쓰" "고 하지 않은 곳에서 & 기호를 사용한 경우일 것입니다 - 이런 경우 &amp; 라고쓰"
"십시오" "십시오"
#: ../glib/gmarkup.c:574 #: glib/gmarkup.c:574
#, c-format #, c-format
msgid "" msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character " "Failed to parse '%-.*s', which should have been a digit inside a character "
@@ -320,16 +328,16 @@ msgstr ""
"'%-.*s'의 구문 해석에 실패했습니다. 문자 참조에는 숫자를 써야 합니다 (예를 " "'%-.*s'의 구문 해석에 실패했습니다. 문자 참조에는 숫자를 써야 합니다 (예를 "
"들어 &#234;) - 숫자가 너무 클 수도 있습니다" "들어 &#234;) - 숫자가 너무 클 수도 있습니다"
#: ../glib/gmarkup.c:599 #: glib/gmarkup.c:599
#, c-format #, c-format
msgid "Character reference '%-.*s' does not encode a permitted character" msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "문자 참조 '%-*s'에 대응되는 문자는 허용되지 않습니다" msgstr "문자 참조 '%-*s'에 대응되는 문자는 허용되지 않습니다"
#: ../glib/gmarkup.c:614 #: glib/gmarkup.c:614
msgid "Empty character reference; should include a digit such as &#454;" msgid "Empty character reference; should include a digit such as &#454;"
msgstr "문자 참조가 비어 있습니다; &#454;처럼 숫자를 써야 합니다" msgstr "문자 참조가 비어 있습니다; &#454;처럼 숫자를 써야 합니다"
#: ../glib/gmarkup.c:624 #: glib/gmarkup.c:624
msgid "" msgid ""
"Character reference did not end with a semicolon; most likely you used an " "Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand " "ampersand character without intending to start an entity - escape ampersand "
@@ -339,23 +347,23 @@ msgstr ""
"려고 하지 않은 곳에서 & 기호를 사용한 경우일 것입니다 - 이런 경우 &amp; 라고" "려고 하지 않은 곳에서 & 기호를 사용한 경우일 것입니다 - 이런 경우 &amp; 라고"
"쓰십시오" "쓰십시오"
#: ../glib/gmarkup.c:710 #: glib/gmarkup.c:710
msgid "Unfinished entity reference" msgid "Unfinished entity reference"
msgstr "엔티티 참조가 미완성입니다" msgstr "엔티티 참조가 미완성입니다"
#: ../glib/gmarkup.c:716 #: glib/gmarkup.c:716
msgid "Unfinished character reference" msgid "Unfinished character reference"
msgstr "문자 참조가 미완성입니다" msgstr "문자 참조가 미완성입니다"
#: ../glib/gmarkup.c:959 ../glib/gmarkup.c:987 ../glib/gmarkup.c:1018 #: glib/gmarkup.c:959 glib/gmarkup.c:987 glib/gmarkup.c:1018
msgid "Invalid UTF-8 encoded text" msgid "Invalid UTF-8 encoded text"
msgstr "잘못된 UTF-8 인코딩된 텍스트" msgstr "잘못된 UTF-8 인코딩된 텍스트"
#: ../glib/gmarkup.c:1054 #: glib/gmarkup.c:1054
msgid "Document must begin with an element (e.g. <book>)" msgid "Document must begin with an element (e.g. <book>)"
msgstr "문서는 엘리먼트로 시작하여야 합니다 (예 <book>)" msgstr "문서는 엘리먼트로 시작하여야 합니다 (예 <book>)"
#: ../glib/gmarkup.c:1094 #: glib/gmarkup.c:1094
#, c-format #, c-format
msgid "" msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an " "'%s' is not a valid character following a '<' character; it may not begin an "
@@ -364,7 +372,7 @@ msgstr ""
"'%s'은(는) '<' 문자 다음에 쓸 수 없습니다; 이 문자로는 엘리먼트 이름을 시작" "'%s'은(는) '<' 문자 다음에 쓸 수 없습니다; 이 문자로는 엘리먼트 이름을 시작"
"할 수 없습니다" "할 수 없습니다"
#: ../glib/gmarkup.c:1158 #: glib/gmarkup.c:1158
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected a '>' character to end the start tag of element " "Odd character '%s', expected a '>' character to end the start tag of element "
@@ -372,7 +380,7 @@ msgid ""
msgstr "" msgstr ""
"이상한 문자 '%s'. 엘리먼트 '%s'의 시작태그를 끝내는 '>'가 나타나야 합니다" "이상한 문자 '%s'. 엘리먼트 '%s'의 시작태그를 끝내는 '>'가 나타나야 합니다"
#: ../glib/gmarkup.c:1247 #: glib/gmarkup.c:1247
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@@ -380,7 +388,7 @@ msgstr ""
"이상한 문자 '%1$s'. 엘리먼트 '%3$s'의 애트리뷰트 이름 '%2$s' 다음에 '='이 나" "이상한 문자 '%1$s'. 엘리먼트 '%3$s'의 애트리뷰트 이름 '%2$s' 다음에 '='이 나"
"타나야 합니다" "타나야 합니다"
#: ../glib/gmarkup.c:1289 #: glib/gmarkup.c:1289
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of " "Odd character '%s', expected a '>' or '/' character to end the start tag of "
@@ -391,7 +399,7 @@ msgstr ""
"나, 애트리뷰트가 나와야 합니다; 아마도 애트리뷰트 이름에 잘못된 문자를 쓴 경" "나, 애트리뷰트가 나와야 합니다; 아마도 애트리뷰트 이름에 잘못된 문자를 쓴 경"
"우일 것입니다" "우일 것입니다"
#: ../glib/gmarkup.c:1378 #: glib/gmarkup.c:1378
#, c-format #, c-format
msgid "" msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when " "Odd character '%s', expected an open quote mark after the equals sign when "
@@ -400,7 +408,7 @@ msgstr ""
"이상한 문자 '%1$s'. 엘리먼트 '%3$s'의 애트리뷰트 '%2$s'의 값을 부여할 때 = " "이상한 문자 '%1$s'. 엘리먼트 '%3$s'의 애트리뷰트 '%2$s'의 값을 부여할 때 = "
"기호 다음에 따옴표가 나타나야 합니다" "기호 다음에 따옴표가 나타나야 합니다"
#: ../glib/gmarkup.c:1523 #: glib/gmarkup.c:1523
#, c-format #, c-format
msgid "" msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not " "'%s' is not a valid character following the characters '</'; '%s' may not "
@@ -409,7 +417,7 @@ msgstr ""
"'%s'은(는) '</' 다음에 쓸 수 있는 문자가 아닙니다; '%s'은(는) 엘리먼트 이름" "'%s'은(는) '</' 다음에 쓸 수 있는 문자가 아닙니다; '%s'은(는) 엘리먼트 이름"
"을 시작할 수 없습니다" "을 시작할 수 없습니다"
#: ../glib/gmarkup.c:1563 #: glib/gmarkup.c:1563
#, c-format #, c-format
msgid "" msgid ""
"'%s' is not a valid character following the close element name '%s'; the " "'%s' is not a valid character following the close element name '%s'; the "
@@ -418,25 +426,25 @@ msgstr ""
"'%s'은(는) 엘리먼트 '%s'을(를) 닫은 다음에 쓸 수 있는 문자가 아닙니다; '>' 문" "'%s'은(는) 엘리먼트 '%s'을(를) 닫은 다음에 쓸 수 있는 문자가 아닙니다; '>' 문"
"자를 쓸 수 있습니다" "자를 쓸 수 있습니다"
#: ../glib/gmarkup.c:1574 #: glib/gmarkup.c:1574
#, c-format #, c-format
msgid "Element '%s' was closed, no element is currently open" msgid "Element '%s' was closed, no element is currently open"
msgstr "'%s' 엘리먼트는 닫혔고, 현재 아무 엘리먼트도 열려 있지 않습니다" msgstr "'%s' 엘리먼트는 닫혔고, 현재 아무 엘리먼트도 열려 있지 않습니다"
#: ../glib/gmarkup.c:1583 #: glib/gmarkup.c:1583
#, c-format #, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'" msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "'%s' 엘리먼트는 닫혔고, 현재 열려 있는 엘리먼트는 '%s'입니다" msgstr "'%s' 엘리먼트는 닫혔고, 현재 열려 있는 엘리먼트는 '%s'입니다"
#: ../glib/gmarkup.c:1749 #: glib/gmarkup.c:1749
msgid "Document was empty or contained only whitespace" msgid "Document was empty or contained only whitespace"
msgstr "문서가 비어있거나 공백문자만 들어 있습니다" msgstr "문서가 비어있거나 공백문자만 들어 있습니다"
#: ../glib/gmarkup.c:1763 #: glib/gmarkup.c:1763
msgid "Document ended unexpectedly just after an open angle bracket '<'" msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "'<' 바로 다음에 문서가 갑작스럽게 끝났습니다" msgstr "'<' 바로 다음에 문서가 갑작스럽게 끝났습니다"
#: ../glib/gmarkup.c:1771 ../glib/gmarkup.c:1815 #: glib/gmarkup.c:1771 glib/gmarkup.c:1815
#, c-format #, c-format
msgid "" msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last " "Document ended unexpectedly with elements still open - '%s' was the last "
@@ -445,7 +453,7 @@ msgstr ""
"엘리먼트가 열려 있는 상태로 문서가 갑작스럽게 끝났습니다 - 마지막에 열려 있" "엘리먼트가 열려 있는 상태로 문서가 갑작스럽게 끝났습니다 - 마지막에 열려 있"
"던 엘리먼트는 '%s'입니다" "던 엘리먼트는 '%s'입니다"
#: ../glib/gmarkup.c:1779 #: glib/gmarkup.c:1779
#, c-format #, c-format
msgid "" msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending " "Document ended unexpectedly, expected to see a close angle bracket ending "
@@ -453,19 +461,19 @@ msgid ""
msgstr "" msgstr ""
"문서가 갑작스럽게 끝났습니다. <%s/> 태그를 끝내는 > 기호가 나타나야 합니다" "문서가 갑작스럽게 끝났습니다. <%s/> 태그를 끝내는 > 기호가 나타나야 합니다"
#: ../glib/gmarkup.c:1785 #: glib/gmarkup.c:1785
msgid "Document ended unexpectedly inside an element name" msgid "Document ended unexpectedly inside an element name"
msgstr "엘리먼트 이름에서 문서가 갑작스럽게 끝났습니다" msgstr "엘리먼트 이름에서 문서가 갑작스럽게 끝났습니다"
#: ../glib/gmarkup.c:1790 #: glib/gmarkup.c:1790
msgid "Document ended unexpectedly inside an attribute name" msgid "Document ended unexpectedly inside an attribute name"
msgstr "에트리뷰트 이름에서 문서가 갑작스럽게 끝났습니다" msgstr "에트리뷰트 이름에서 문서가 갑작스럽게 끝났습니다"
#: ../glib/gmarkup.c:1795 #: glib/gmarkup.c:1795
msgid "Document ended unexpectedly inside an element-opening tag." msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "엘리먼트의 열기 태그 안에서 문서가 갑작스럽게 끝났습니다." msgstr "엘리먼트의 열기 태그 안에서 문서가 갑작스럽게 끝났습니다."
#: ../glib/gmarkup.c:1801 #: glib/gmarkup.c:1801
msgid "" msgid ""
"Document ended unexpectedly after the equals sign following an attribute " "Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value" "name; no attribute value"
@@ -473,102 +481,104 @@ msgstr ""
"애트리뷰트 이름 다음의 = 기호 다음에서 문서가 갑작스럽게 끝났습니다; 애트리뷰" "애트리뷰트 이름 다음의 = 기호 다음에서 문서가 갑작스럽게 끝났습니다; 애트리뷰"
"트 값이 없습니다" "트 값이 없습니다"
#: ../glib/gmarkup.c:1808 #: glib/gmarkup.c:1808
msgid "Document ended unexpectedly while inside an attribute value" msgid "Document ended unexpectedly while inside an attribute value"
msgstr "애트리뷰트 값 안에서 문서가 갑작스럽게 끝났습니다" msgstr "애트리뷰트 값 안에서 문서가 갑작스럽게 끝났습니다"
#: ../glib/gmarkup.c:1823 #: glib/gmarkup.c:1823
#, c-format #, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'" msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "엘리먼트 '%s'의 닫기 태그 안에서 문서가 갑작스럽게 끝났습니다" msgstr "엘리먼트 '%s'의 닫기 태그 안에서 문서가 갑작스럽게 끝났습니다"
# FIXME: processing instruction? # FIXME: processing instruction?
#: ../glib/gmarkup.c:1829 #: glib/gmarkup.c:1829
msgid "Document ended unexpectedly inside a comment or processing instruction" msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "주석문 혹은 처리 안내자 태그 안에서 문서가 갑작스럽게 끝났습니다" msgstr "주석문 혹은 처리 안내자 태그 안에서 문서가 갑작스럽게 끝났습니다"
# g_shell_unquote()에 쓰임. shell의 quoted text를 raw string으로 바꾸는 기능 # g_shell_unquote()에 쓰임. shell의 quoted text를 raw string으로 바꾸는 기능
# FIXME: "quoted"라는 말을 어떻게 해야 할 것인가? # FIXME: "quoted"라는 말을 어떻게 해야 할 것인가?
#: ../glib/gshell.c:70 #: glib/gshell.c:70
#, c-format
msgid "Quoted text doesn't begin with a quotation mark" msgid "Quoted text doesn't begin with a quotation mark"
msgstr "따옴표된 텍스트가 따옴표로 시작하지 않습니다" msgstr "따옴표된 텍스트가 따옴표로 시작하지 않습니다"
# FIXME: 위 참조, "quoted" # FIXME: 위 참조, "quoted"
#: ../glib/gshell.c:160 #: glib/gshell.c:160
#, c-format
msgid "Unmatched quotation mark in command line or other shell-quoted text" msgid "Unmatched quotation mark in command line or other shell-quoted text"
msgstr "명령행에서 따옴표가 맞지 않거나 쉘따옴표된 텍스트가 또 있습니다" msgstr "명령행에서 따옴표가 맞지 않거나 쉘따옴표된 텍스트가 또 있습니다"
#: ../glib/gshell.c:538 #: glib/gshell.c:538
#, c-format #, c-format
msgid "Text ended just after a '\\' character. (The text was '%s')" msgid "Text ended just after a '\\' character. (The text was '%s')"
msgstr "텍스트가 '\\' 문자 다음에 끝났습니다. (텍스트는 '%s'입니다)" msgstr "텍스트가 '\\' 문자 다음에 끝났습니다. (텍스트는 '%s'입니다)"
#: ../glib/gshell.c:545 #: glib/gshell.c:545
#, c-format #, c-format
msgid "Text ended before matching quote was found for %c. (The text was '%s')" msgid "Text ended before matching quote was found for %c. (The text was '%s')"
msgstr "" msgstr ""
"텍스트가 %c에 대응되는 따옴표가 나타나기 전에 끝났습니다. (텍스트는 '%s'입니" "텍스트가 %c에 대응되는 따옴표가 나타나기 전에 끝났습니다. (텍스트는 '%s'입니"
"다)" "다)"
#: ../glib/gshell.c:557 #: glib/gshell.c:557
#, c-format
msgid "Text was empty (or contained only whitespace)" msgid "Text was empty (or contained only whitespace)"
msgstr "텍스트가 비어 있음 (또는 공백만 들어 있음)" msgstr "텍스트가 비어 있음 (또는 공백만 들어 있음)"
#: ../glib/gspawn-win32.c:273 #: glib/gspawn-win32.c:273
#, c-format
msgid "Failed to read data from child process" msgid "Failed to read data from child process"
msgstr "자식 프로세스에서 데이터 읽기 실패" msgstr "자식 프로세스에서 데이터 읽기 실패"
#: ../glib/gspawn-win32.c:288 ../glib/gspawn.c:1361 #: glib/gspawn-win32.c:288 glib/gspawn.c:1361
#, c-format #, c-format
msgid "Failed to create pipe for communicating with child process (%s)" msgid "Failed to create pipe for communicating with child process (%s)"
msgstr "자식 프로세스와 통신을 위한 파이프를 만드는 중 실패 (%s)" msgstr "자식 프로세스와 통신을 위한 파이프를 만드는 중 실패 (%s)"
#: ../glib/gspawn-win32.c:326 ../glib/gspawn.c:1025 #: glib/gspawn-win32.c:326 glib/gspawn.c:1025
#, c-format #, c-format
msgid "Failed to read from child pipe (%s)" msgid "Failed to read from child pipe (%s)"
msgstr "자식 파이프로 부터 읽기 실패 (%s)" msgstr "자식 파이프로 부터 읽기 실패 (%s)"
#: ../glib/gspawn-win32.c:352 ../glib/gspawn.c:1230 #: glib/gspawn-win32.c:352 glib/gspawn.c:1230
#, c-format #, c-format
msgid "Failed to change to directory '%s' (%s)" msgid "Failed to change to directory '%s' (%s)"
msgstr "디렉토리 '%s'(으)로 바꾸기 실패 (%s)" msgstr "디렉토리 '%s'(으)로 바꾸기 실패 (%s)"
#: ../glib/gspawn-win32.c:358 ../glib/gspawn-win32.c:578 #: glib/gspawn-win32.c:358 glib/gspawn-win32.c:578
#, c-format #, c-format
msgid "Failed to execute child process (%s)" msgid "Failed to execute child process (%s)"
msgstr "자식 프로세스 실행 실패 (%s)" msgstr "자식 프로세스 실행 실패 (%s)"
#: ../glib/gspawn-win32.c:468 ../glib/gspawn-win32.c:524 #: glib/gspawn-win32.c:468 glib/gspawn-win32.c:524
#, c-format #, c-format
msgid "Invalid program name: %s" msgid "Invalid program name: %s"
msgstr "잘못된 프로그램 이름: %s" msgstr "잘못된 프로그램 이름: %s"
#: ../glib/gspawn-win32.c:478 ../glib/gspawn-win32.c:534 #: glib/gspawn-win32.c:478 glib/gspawn-win32.c:534 glib/gspawn-win32.c:777
#: ../glib/gspawn-win32.c:777 ../glib/gspawn-win32.c:832 #: glib/gspawn-win32.c:832 glib/gspawn-win32.c:1367
#: ../glib/gspawn-win32.c:1367
#, c-format #, c-format
msgid "Invalid string in argument vector at %d: %s" msgid "Invalid string in argument vector at %d: %s"
msgstr "인자에서 잘못된 문자열, %d: %s" msgstr "인자에서 잘못된 문자열, %d: %s"
#: ../glib/gspawn-win32.c:489 ../glib/gspawn-win32.c:545 #: glib/gspawn-win32.c:489 glib/gspawn-win32.c:545 glib/gspawn-win32.c:791
#: ../glib/gspawn-win32.c:791 ../glib/gspawn-win32.c:845 #: glib/gspawn-win32.c:845 glib/gspawn-win32.c:1400
#: ../glib/gspawn-win32.c:1400
#, c-format #, c-format
msgid "Invalid string in environment: %s" msgid "Invalid string in environment: %s"
msgstr "환경에서 잘못된 문자열: %s" msgstr "환경에서 잘못된 문자열: %s"
#: ../glib/gspawn-win32.c:773 ../glib/gspawn-win32.c:828 #: glib/gspawn-win32.c:773 glib/gspawn-win32.c:828 glib/gspawn-win32.c:1348
#: ../glib/gspawn-win32.c:1348
#, c-format #, c-format
msgid "Invalid working directory: %s" msgid "Invalid working directory: %s"
msgstr "잘못된 현재 디렉토리: %s" msgstr "잘못된 현재 디렉토리: %s"
#: ../glib/gspawn-win32.c:887 #: glib/gspawn-win32.c:887
#, c-format #, c-format
msgid "Failed to execute helper program (%s)" msgid "Failed to execute helper program (%s)"
msgstr "도움 프로그램 실행 실패 (%s)" msgstr "도움 프로그램 실행 실패 (%s)"
#: ../glib/gspawn-win32.c:1087 #: glib/gspawn-win32.c:1087
#, c-format
msgid "" msgid ""
"Unexpected error in g_io_channel_win32_poll() reading data from a child " "Unexpected error in g_io_channel_win32_poll() reading data from a child "
"process" "process"
@@ -576,137 +586,143 @@ msgstr ""
"자식 프로세스에서 데이터를 읽는중 g_io_channel_win32_poll()에서 기대되지않은 " "자식 프로세스에서 데이터를 읽는중 g_io_channel_win32_poll()에서 기대되지않은 "
"오류" "오류"
#: ../glib/gspawn.c:165 #: glib/gspawn.c:165
#, c-format #, c-format
msgid "Failed to read data from child process (%s)" msgid "Failed to read data from child process (%s)"
msgstr "자식 프로세스 에서 데이터를 읽기 실패 (%s)" msgstr "자식 프로세스 에서 데이터를 읽기 실패 (%s)"
#: ../glib/gspawn.c:297 #: glib/gspawn.c:297
#, c-format #, c-format
msgid "Unexpected error in select() reading data from a child process (%s)" msgid "Unexpected error in select() reading data from a child process (%s)"
msgstr "" msgstr ""
"자식 프로세스 에서 데이터를 읽는 중 select()에서 예상되지 않은 오류 (%s)" "자식 프로세스 에서 데이터를 읽는 중 select()에서 예상되지 않은 오류 (%s)"
#: ../glib/gspawn.c:380 #: glib/gspawn.c:380
#, c-format #, c-format
msgid "Unexpected error in waitpid() (%s)" msgid "Unexpected error in waitpid() (%s)"
msgstr "waitpid()에서 예상되지 않은 오류 (%s)" msgstr "waitpid()에서 예상되지 않은 오류 (%s)"
#: ../glib/gspawn.c:1090 #: glib/gspawn.c:1090
#, c-format #, c-format
msgid "Failed to fork (%s)" msgid "Failed to fork (%s)"
msgstr "포크 실패(%s)" msgstr "포크 실패(%s)"
#: ../glib/gspawn.c:1240 #: glib/gspawn.c:1240
#, c-format #, c-format
msgid "Failed to execute child process \"%s\" (%s)" msgid "Failed to execute child process \"%s\" (%s)"
msgstr "자식 프로세스 \"%s\"을(를) 실행하기 실패 (%s)" msgstr "자식 프로세스 \"%s\"을(를) 실행하기 실패 (%s)"
#: ../glib/gspawn.c:1250 #: glib/gspawn.c:1250
#, c-format #, c-format
msgid "Failed to redirect output or input of child process (%s)" msgid "Failed to redirect output or input of child process (%s)"
msgstr "자식 프로세스 (%s)의 입력 또는 출력의 리다이렉트 실패" msgstr "자식 프로세스 (%s)의 입력 또는 출력의 리다이렉트 실패"
#: ../glib/gspawn.c:1259 #: glib/gspawn.c:1259
#, c-format #, c-format
msgid "Failed to fork child process (%s)" msgid "Failed to fork child process (%s)"
msgstr "자식 프로세스 (%s)를 생성 실패" msgstr "자식 프로세스 (%s)를 생성 실패"
#: ../glib/gspawn.c:1267 #: glib/gspawn.c:1267
#, c-format #, c-format
msgid "Unknown error executing child process \"%s\"" msgid "Unknown error executing child process \"%s\""
msgstr "자식 프로세스 \"%s\"을(를) 실행하는 중 알 수 없는 오류" msgstr "자식 프로세스 \"%s\"을(를) 실행하는 중 알 수 없는 오류"
#: ../glib/gspawn.c:1289 #: glib/gspawn.c:1289
#, c-format #, c-format
msgid "Failed to read enough data from child pid pipe (%s)" msgid "Failed to read enough data from child pid pipe (%s)"
msgstr "자식 pid 파이프에서 필요한 데이타를 읽는 데 실패했습니다 (%s)" msgstr "자식 pid 파이프에서 필요한 데이타를 읽는 데 실패했습니다 (%s)"
#: ../glib/gutf8.c:1017 #: glib/gutf8.c:1017
#, c-format
msgid "Character out of range for UTF-8" msgid "Character out of range for UTF-8"
msgstr "UTF-8 범위 밖의 문자" msgstr "UTF-8 범위 밖의 문자"
#: ../glib/gutf8.c:1111 ../glib/gutf8.c:1120 ../glib/gutf8.c:1252 #: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 glib/gutf8.c:1261
#: ../glib/gutf8.c:1261 ../glib/gutf8.c:1402 ../glib/gutf8.c:1498 #: glib/gutf8.c:1402 glib/gutf8.c:1498
#, c-format
msgid "Invalid sequence in conversion input" msgid "Invalid sequence in conversion input"
msgstr "변환 입력에서 잘못된 순서" 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" msgid "Character out of range for UTF-16"
msgstr "UTF-16 범위 밖의 문자" msgstr "UTF-16 범위 밖의 문자"
#: ../glib/goption.c:495 #: glib/goption.c:495
msgid "Usage:" msgid "Usage:"
msgstr "사용법:" msgstr "사용법:"
#: ../glib/goption.c:495 #: glib/goption.c:495
msgid "[OPTION...]" msgid "[OPTION...]"
msgstr "[옵션...]" msgstr "[옵션...]"
#: ../glib/goption.c:586 #: glib/goption.c:586
msgid "Help Options:" msgid "Help Options:"
msgstr "도움말 옵션:" msgstr "도움말 옵션:"
#: ../glib/goption.c:587 #: glib/goption.c:587
msgid "Show help options" msgid "Show help options"
msgstr "도움말 옵션을 봅니다" msgstr "도움말 옵션을 봅니다"
#: ../glib/goption.c:592 #: glib/goption.c:592
msgid "Show all help options" msgid "Show all help options"
msgstr "모든 도움말 옵션을 봅니다" msgstr "모든 도움말 옵션을 봅니다"
#: ../glib/goption.c:642 #: glib/goption.c:642
msgid "Application Options:" msgid "Application Options:"
msgstr "프로그램 옵션:" msgstr "프로그램 옵션:"
#: ../glib/goption.c:686 ../glib/goption.c:756 #: glib/goption.c:686 glib/goption.c:756
#, c-format #, c-format
msgid "Cannot parse integer value '%s' for %s" msgid "Cannot parse integer value '%s' for %s"
msgstr "%2$s에 대한 정수 값 '%1$s'을(를) 분석할 수 없습니다" msgstr "%2$s에 대한 정수 값 '%1$s'을(를) 분석할 수 없습니다"
#: ../glib/goption.c:696 ../glib/goption.c:764 #: glib/goption.c:696 glib/goption.c:764
#, c-format #, c-format
msgid "Integer value '%s' for %s out of range" msgid "Integer value '%s' for %s out of range"
msgstr "%2$s에 대한 정수 값 '%1$s'이(가) 범위를 벗어났습니다" msgstr "%2$s에 대한 정수 값 '%1$s'이(가) 범위를 벗어났습니다"
#: ../glib/goption.c:721 #: glib/goption.c:721
#, c-format #, c-format
msgid "Cannot parse double value '%s' for %s" msgid "Cannot parse double value '%s' for %s"
msgstr "%2$s에 대한 배정도 실수 값 '%1$s'을(를) 분석할 수 없습니다" msgstr "%2$s에 대한 배정도 실수 값 '%1$s'을(를) 분석할 수 없습니다"
#: ../glib/goption.c:729 #: glib/goption.c:729
#, c-format #, c-format
msgid "Double value '%s' for %s out of range" msgid "Double value '%s' for %s out of range"
msgstr "%2$s에 대한 배정도 실수 값 '%1$s'이(가) 범위를 벗어났습니다" msgstr "%2$s에 대한 배정도 실수 값 '%1$s'이(가) 범위를 벗어났습니다"
#: ../glib/goption.c:1066 #: glib/goption.c:1066
#, c-format #, c-format
msgid "Error parsing option %s" msgid "Error parsing option %s"
msgstr "옵션 읽는 중에 오류: %s" msgstr "옵션 읽는 중에 오류: %s"
#: ../glib/goption.c:1097 ../glib/goption.c:1208 #: glib/goption.c:1097 glib/goption.c:1208
#, c-format #, c-format
msgid "Missing argument for %s" msgid "Missing argument for %s"
msgstr "%s에 대한 인자가 빠졌습니다" msgstr "%s에 대한 인자가 빠졌습니다"
#: ../glib/goption.c:1597 #: glib/goption.c:1597
#, c-format #, c-format
msgid "Unknown option %s" msgid "Unknown option %s"
msgstr "알 수 없는 옵션 %s" msgstr "알 수 없는 옵션 %s"
#: ../glib/gkeyfile.c:337 #: glib/gkeyfile.c:337
#, c-format
msgid "Valid key file could not be found in data dirs" msgid "Valid key file could not be found in data dirs"
msgstr "데이터 디렉토리에 올바른 키 파일이 없습니다" msgstr "데이터 디렉토리에 올바른 키 파일이 없습니다"
#: ../glib/gkeyfile.c:372 #: glib/gkeyfile.c:372
#, c-format
msgid "Not a regular file" msgid "Not a regular file"
msgstr "일반 파일이 아닙니다" msgstr "일반 파일이 아닙니다"
#: ../glib/gkeyfile.c:380 #: glib/gkeyfile.c:380
#, c-format
msgid "File is empty" msgid "File is empty"
msgstr "파일이 비었습니다" msgstr "파일이 비었습니다"
#: ../glib/gkeyfile.c:695 #: glib/gkeyfile.c:695
#, c-format #, c-format
msgid "" msgid ""
"Key file contains line '%s' which is not a key-value pair, group, or comment" "Key file contains line '%s' which is not a key-value pair, group, or comment"
@@ -714,74 +730,76 @@ msgstr ""
"키 파일에 들어 있는 '%s' 줄은 키-값 쌍도 아니고, 그룹도 아니고, 주석도 아닙니" "키 파일에 들어 있는 '%s' 줄은 키-값 쌍도 아니고, 그룹도 아니고, 주석도 아닙니"
"다" "다"
#: ../glib/gkeyfile.c:763 #: glib/gkeyfile.c:763
#, c-format
msgid "Key file does not start with a group" msgid "Key file does not start with a group"
msgstr "키 파일이 그룹으로 시작하지 않습니다" msgstr "키 파일이 그룹으로 시작하지 않습니다"
#: ../glib/gkeyfile.c:806 #: glib/gkeyfile.c:806
#, c-format #, c-format
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "키 파일에 지원하지 않는 '%s' 인코딩이 들어 있습니다" msgstr "키 파일에 지원하지 않는 '%s' 인코딩이 들어 있습니다"
#: ../glib/gkeyfile.c:1014 ../glib/gkeyfile.c:1173 ../glib/gkeyfile.c:2386 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: ../glib/gkeyfile.c:2451 ../glib/gkeyfile.c:2570 ../glib/gkeyfile.c:2705 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: ../glib/gkeyfile.c:2858 ../glib/gkeyfile.c:3034 ../glib/gkeyfile.c:3091 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "키 파일에 '%s' 그룹이 없습니다" msgstr "키 파일에 '%s' 그룹이 없습니다"
#: ../glib/gkeyfile.c:1185 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "키 파일에 '%s' 키가 없습니다" msgstr "키 파일에 '%s' 키가 없습니다"
#: ../glib/gkeyfile.c:1286 ../glib/gkeyfile.c:1395 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "키 파일에 있는 '%s' 키와 '%s' 값은 UTF-8이 아닙니다" msgstr "키 파일에 있는 '%s' 키와 '%s' 값은 UTF-8이 아닙니다"
#: ../glib/gkeyfile.c:1304 ../glib/gkeyfile.c:1413 ../glib/gkeyfile.c:1785 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "키 파일에 있는 '%s' 키의 값을 해석할 수 없습니다." msgstr "키 파일에 있는 '%s' 키의 값을 해석할 수 없습니다."
#: ../glib/gkeyfile.c:2001 ../glib/gkeyfile.c:2214 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "키 파일에 있는 '%2$s' 그룹의 '%1$s' 키의 값을 해석할 수 없습니다." msgstr "키 파일에 있는 '%2$s' 그룹의 '%1$s' 키의 값을 해석할 수 없습니다."
#: ../glib/gkeyfile.c:2401 ../glib/gkeyfile.c:2585 ../glib/gkeyfile.c:3102 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "키 파일에 있는 '%2$s' 그룹의 '%1$s' 키가 없습니다" msgstr "키 파일에 있는 '%2$s' 그룹의 '%1$s' 키가 없습니다"
#: ../glib/gkeyfile.c:3275 #: glib/gkeyfile.c:3275
#, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "키 파일의 줄 끝에 이스케이프 문자가 있습니다" msgstr "키 파일의 줄 끝에 이스케이프 문자가 있습니다"
#: ../glib/gkeyfile.c:3297 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "키 파일에 잘못된 이스케이프 시퀀스 '%s'이(가) 들어 있습니다" msgstr "키 파일에 잘못된 이스케이프 시퀀스 '%s'이(가) 들어 있습니다"
#: ../glib/gkeyfile.c:3438 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "값 '%s'을(를) 숫자로 해석할 수 없습니다." msgstr "값 '%s'을(를) 숫자로 해석할 수 없습니다."
#: ../glib/gkeyfile.c:3448 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "정수 값 '%s'이(가) 범위를 벗어났습니다" msgstr "정수 값 '%s'이(가) 범위를 벗어났습니다"
#: ../glib/gkeyfile.c:3476 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "값 '%s'을(를) 단정도 실수로 해석할 수 없습니다." msgstr "값 '%s'을(를) 단정도 실수로 해석할 수 없습니다."
#: ../glib/gkeyfile.c:3496 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "값 '%s'을(를) 불리언 값으로 해석할 수 없습니다." msgstr "값 '%s'을(를) 불리언 값으로 해석할 수 없습니다."

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.glib-2-8\n" "Project-Id-Version: glib.glib-2-8\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2005-09-17 20:30+0200\n" "PO-Revision-Date: 2005-09-17 20:30+0200\n"
"Last-Translator: Erdal Ronahi <erdal.ronahi@gmail.com, pckurd@hotmail.com>\n" "Last-Translator: Erdal Ronahi <erdal.ronahi@gmail.com, pckurd@hotmail.com>\n"
"Language-Team: Kurdish <gnu-ku-wergerandin@lists.sourceforge.net>\n" "Language-Team: Kurdish <gnu-ku-wergerandin@lists.sourceforge.net>\n"
@@ -51,35 +51,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -193,7 +193,7 @@ msgstr ""
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "" msgstr ""
@@ -218,22 +218,22 @@ msgstr ""
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "" msgstr ""
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "" msgstr ""
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "" msgstr ""
@@ -698,66 +698,66 @@ msgstr ""
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "" msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib HEAD\n" "Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-02-25 10:54+0200\n" "PO-Revision-Date: 2006-02-25 10:54+0200\n"
"Last-Translator: Žygimantas Beručka <zygis@gnome.org>\n" "Last-Translator: Žygimantas Beručka <zygis@gnome.org>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n" "Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -52,35 +52,35 @@ msgstr "Duomenų aplankuose nepavyko rasti tinkamos raktų rinkmenos"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -194,7 +194,7 @@ msgstr "Nepavyko atverti rinkmenos „%s“: fdopen() klaida: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Nepavyko pervadinti rinkmenos „%s“ į „%s“: g_rename() klaida: %s" msgstr "Nepavyko pervadinti rinkmenos „%s“ į „%s“: g_rename() klaida: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Nepavyko sukurti rinkmenos „%s“: %s" msgstr "Nepavyko sukurti rinkmenos „%s“: %s"
@@ -220,22 +220,22 @@ msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
"Nepavyko pašalinti egzistuojančios rinkmenos „%s“: g_unlink() failed: %s" "Nepavyko pašalinti egzistuojančios rinkmenos „%s“: g_unlink() failed: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Šablonas „%s“ klaidingas, jame negali būti „%s“" msgstr "Šablonas „%s“ klaidingas, jame negali būti „%s“"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Šablono „%s“ gale nėra XXXXXX" msgstr "Šablono „%s“ gale nėra XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Nepavyko perskaityti simbolinės nuorodos „%s“: %s" msgstr "Nepavyko perskaityti simbolinės nuorodos „%s“: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Simbolinės nuorodos nepalaikomos" msgstr "Simbolinės nuorodos nepalaikomos"
@@ -750,31 +750,31 @@ msgstr "Raktų rinkmena neprasideda grupe"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Raktų rinkmenoje yra nepalaikoma koduotė „%s“" msgstr "Raktų rinkmenoje yra nepalaikoma koduotė „%s“"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Raktų rinkmena neturi grupės „%s“" msgstr "Raktų rinkmena neturi grupės „%s“"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Raktų rinkmena neturi rakto „%s“" msgstr "Raktų rinkmena neturi rakto „%s“"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "Raktų rinkmenoje yra raktas „%s“ su reikšme „%s“, kuri nėra UTF-8" msgstr "Raktų rinkmenoje yra raktas „%s“ su reikšme „%s“, kuri nėra UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Raktų rinkmenoje yra raktas „%s“, kuriame yra reikšmė, kurios negalima " "Raktų rinkmenoje yra raktas „%s“, kuriame yra reikšmė, kurios negalima "
"suprasti." "suprasti."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -783,37 +783,37 @@ msgstr ""
"Raktų rinkmenoje yra raktas „%s“ grupėje „%s“, kuriame yra reikšmė, kurios " "Raktų rinkmenoje yra raktas „%s“ grupėje „%s“, kuriame yra reikšmė, kurios "
"negalima suprasti." "negalima suprasti."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Raktų rinkmenoje nėra rakto „%s“ grupėje „%s“" msgstr "Raktų rinkmenoje nėra rakto „%s“ grupėje „%s“"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Raktų rinkmenoje, eilutės pabaigoje yra pabėgimo simbolis" msgstr "Raktų rinkmenoje, eilutės pabaigoje yra pabėgimo simbolis"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Raktų rinkmenoje yra klaidinga pabėgimo tvarka „%s“" msgstr "Raktų rinkmenoje yra klaidinga pabėgimo tvarka „%s“"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Reikšmės „%s“ negalima interpretuoti kaip skaičiaus." msgstr "Reikšmės „%s“ negalima interpretuoti kaip skaičiaus."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Sveikoji reikšmė „%s“ viršija ribas" msgstr "Sveikoji reikšmė „%s“ viršija ribas"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Reikšmės „%s“ negalima interpretuoti kaip skaičiaus." msgstr "Reikšmės „%s“ negalima interpretuoti kaip skaičiaus."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Reikšmės „%s“ negalima interpretuoti kaip loginės." msgstr "Reikšmės „%s“ negalima interpretuoti kaip loginės."

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2002-12-19 01:04+0200\n" "PO-Revision-Date: 2002-12-19 01:04+0200\n"
"Last-Translator: Artis Trops <hornet@navigator.lv>\n" "Last-Translator: Artis Trops <hornet@navigator.lv>\n"
"Language-Team: Latvian <ll10nt@os.lv>\n" "Language-Team: Latvian <ll10nt@os.lv>\n"
@@ -49,35 +49,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -191,7 +191,7 @@ msgstr "Nevarēju atvērt '%s': fdopen() neizdevās: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Nevarēju atvērt '%s': fdopen() neizdevās: %s" msgstr "Nevarēju atvērt '%s': fdopen() neizdevās: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Neizdevās izveidot failu '%s': %s" msgstr "Neizdevās izveidot failu '%s': %s"
@@ -216,22 +216,22 @@ msgstr "Nevarēju atvērt '%s': fdopen() neizdevās: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Veidne '%s' nepareizs, nedrīkstētu saturēt '%s'" msgstr "Veidne '%s' nepareizs, nedrīkstētu saturēt '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Veidne '%s' nebeidzas ar XXXXXX" msgstr "Veidne '%s' nebeidzas ar XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, fuzzy, c-format #, fuzzy, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Neizdevās izveidot failu '%s': %s" msgstr "Neizdevās izveidot failu '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "" msgstr ""
@@ -732,66 +732,66 @@ msgstr ""
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, fuzzy, c-format #, fuzzy, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "URI '%s' satur nepareizi izvairīgas rakstzīmes" msgstr "URI '%s' satur nepareizi izvairīgas rakstzīmes"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "" msgstr ""

View File

@@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: mk\n" "Project-Id-Version: mk\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-03-02 16:03+0100\n" "PO-Revision-Date: 2006-03-02 16:03+0100\n"
"Last-Translator: Arangel Angov <ufo@linux.net.mk>\n" "Last-Translator: Arangel Angov <ufo@linux.net.mk>\n"
"Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n" "Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"
@@ -59,35 +59,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -203,7 +203,7 @@ msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "" msgstr ""
"Не успеав да ја реименувам датотеката '%s' во '%s': g_rename() не успеа: %s" "Не успеав да ја реименувам датотеката '%s' во '%s': g_rename() не успеа: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Не успеав да ја креирам датотеката '%s': %s" msgstr "Не успеав да ја креирам датотеката '%s': %s"
@@ -231,22 +231,22 @@ msgstr ""
"Постоечката датотека '%s' не може да биде отстранета: g_unlink()·не успеа " "Постоечката датотека '%s' не може да биде отстранета: g_unlink()·не успеа "
"за: %s" "за: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Мострата '%s' е невалидна, не треба да содржи '%s'" msgstr "Мострата '%s' е невалидна, не треба да содржи '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Мострата '%s' не завршува со XXXXXX" msgstr "Мострата '%s' не завршува со XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Не успеав да ја прочитам симболичката врска '%s': %s" msgstr "Не успеав да ја прочитам симболичката врска '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Симболичките врски не се поддржани" msgstr "Симболичките врски не се поддржани"
@@ -756,32 +756,32 @@ msgstr "Клучната датотека не започнува со груп
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Клучната датотека содржи неподдржан енкодинг '%s'·" msgstr "Клучната датотека содржи неподдржан енкодинг '%s'·"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Клучната датотека не ја содржи групата '%s'" msgstr "Клучната датотека не ја содржи групата '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Клучната датотека не го содржи клучот '%s'" msgstr "Клучната датотека не го содржи клучот '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
"Клучната датотека го содржи клучот '%s' со вредноста '%s' која што не е UTF-8" "Клучната датотека го содржи клучот '%s' со вредноста '%s' која што не е UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Клучната датотека го содржи клучот '%s' чија што вредност неможе да биде " "Клучната датотека го содржи клучот '%s' чија што вредност неможе да биде "
"препознаена." "препознаена."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -790,37 +790,37 @@ msgstr ""
"Клучната датотека го содржи клучот '%s' во групата '%s' која што има " "Клучната датотека го содржи клучот '%s' во групата '%s' која што има "
"вредност која што неможе да биде препознаена." "вредност која што неможе да биде препознаена."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Клучната датотека не содржи клуч во '%s' во групата '%s'" msgstr "Клучната датотека не содржи клуч во '%s' во групата '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Клучната датотека содржи специјални карактери на крајот на линијата" msgstr "Клучната датотека содржи специјални карактери на крајот на линијата"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Клучната датотека содржи невалидни посебни карактери '%s'" msgstr "Клучната датотека содржи невалидни посебни карактери '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Вредноста '%s' неможе да биде препознаена како број." msgstr "Вредноста '%s' неможе да биде препознаена како број."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Целобројната вредност '%s' е надвор од опсегот" msgstr "Целобројната вредност '%s' е надвор од опсегот"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Вредноста '%s' неможе да биде препознаена како број." msgstr "Вредноста '%s' неможе да биде препознаена како број."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Вредноста '%s' не може да биде препознаена како boolean." msgstr "Вредноста '%s' не може да биде препознаена како boolean."

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version:glib.glib-2-2\n" "Project-Id-Version:glib.glib-2-2\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2003-07-05 10:29+0530\n" "PO-Revision-Date: 2003-07-05 10:29+0530\n"
"Last-Translator: FSF-India <locale@gnu.org.in>\n" "Last-Translator: FSF-India <locale@gnu.org.in>\n"
"Language-Team: Malayalam <locale@gnu.org.in>\n" "Language-Team: Malayalam <locale@gnu.org.in>\n"
@@ -50,35 +50,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -196,7 +196,7 @@ msgstr "%s തുറക്കുന്നതില്‌ പരാജയം : %s
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "%s തുറക്കുന്നതില്‌ പരാജയം : %s" msgstr "%s തുറക്കുന്നതില്‌ പരാജയം : %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, fuzzy, c-format #, fuzzy, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "%s തുറക്കുന്നതില്‌ പരാജയം : %s" msgstr "%s തുറക്കുന്നതില്‌ പരാജയം : %s"
@@ -221,22 +221,22 @@ msgstr "%s തുറക്കുന്നതില്‌ പരാജയം : %s
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "ഉരു \"%s\" അസാധു, \"%s\" ഉള്ക്കൊളളാന് പാടില്ല" msgstr "ഉരു \"%s\" അസാധു, \"%s\" ഉള്ക്കൊളളാന് പാടില്ല"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "ഉരു \"%s\" XXXXXXല് അവസാനിക്കുന്നില്ല" msgstr "ഉരു \"%s\" XXXXXXല് അവസാനിക്കുന്നില്ല"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, fuzzy, c-format #, fuzzy, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "%s തുറക്കുന്നതില്‌ പരാജയം : %s" msgstr "%s തുറക്കുന്നതില്‌ പരാജയം : %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "" msgstr ""
@@ -718,66 +718,66 @@ msgstr ""
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, fuzzy, c-format #, fuzzy, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "URI \"%s\" അസാധുവാണു്" msgstr "URI \"%s\" അസാധുവാണു്"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "" msgstr ""

View File

@@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD\n" "Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2005-05-30 01:07-0800\n" "PO-Revision-Date: 2005-05-30 01:07-0800\n"
"Last-Translator: Бадрал <badral@openmn.org>\n" "Last-Translator: Бадрал <badral@openmn.org>\n"
"Language-Team: Mongolian <openmn-translation@lists.sf.net>\n" "Language-Team: Mongolian <openmn-translation@lists.sf.net>\n"
@@ -59,35 +59,35 @@ msgstr "Өгөгдлийн лавлахаас хүчинтэй утга олдс
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -203,7 +203,7 @@ msgstr "»%s« файл нээгдэхгүй байна: fdopen() нурлаа:
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "»%s« файл нээгдэхгүй байна: fdopen() нурлаа: %s" msgstr "»%s« файл нээгдэхгүй байна: fdopen() нурлаа: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "»%s« файл үүсгэгдсэнгүй: %s" msgstr "»%s« файл үүсгэгдсэнгүй: %s"
@@ -228,22 +228,22 @@ msgstr "»%s« файл нээгдэхгүй байна: fdopen() нурлаа:
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "»%s« хэв хүчингүй, »%s« -г агуулах хэрэггүй" msgstr "»%s« хэв хүчингүй, »%s« -г агуулах хэрэггүй"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "»%s« хэв XXXXXX -р төгсөхгүй байна" msgstr "»%s« хэв XXXXXX -р төгсөхгүй байна"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "»%s« символик холбоос уншигдсангүй: %s" msgstr "»%s« символик холбоос уншигдсангүй: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Символик холбоос дэмжигдээгүй" msgstr "Символик холбоос дэмжигдээгүй"
@@ -754,29 +754,29 @@ msgstr "Түлхүүр файл бүлэг утгаар эхлэх боломж
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Түлхүүр файлд дэмжигдээгүй кодчилол '%s' байна" msgstr "Түлхүүр файлд дэмжигдээгүй кодчилол '%s' байна"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Түлхүүр файлд '%s' бүлэг алга" msgstr "Түлхүүр файлд '%s' бүлэг алга"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Түлхүүр файлд '%s' түлхүүр алга" msgstr "Түлхүүр файлд '%s' түлхүүр алга"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "Түлхүүр файлд '%s' мөр '%s' гэсэн UTF-8 бус утгатай байна" msgstr "Түлхүүр файлд '%s' мөр '%s' гэсэн UTF-8 бус утгатай байна"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "Түлхүүр файлд илэрхийлэх боломжгүй '%s' утга байна." msgstr "Түлхүүр файлд илэрхийлэх боломжгүй '%s' утга байна."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -784,38 +784,38 @@ msgid ""
msgstr "" msgstr ""
"Түлхүүр файлын '%2$s' бүлэгт '%1$s' гэсэн илэрхийлэх боломжгүй утга байна." "Түлхүүр файлын '%2$s' бүлэгт '%1$s' гэсэн илэрхийлэх боломжгүй утга байна."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Түлхүүр файлын '%2$s' бүлэгт '%1$s' түлхүүр алга" msgstr "Түлхүүр файлын '%2$s' бүлэгт '%1$s' түлхүүр алга"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Түлхүүр файлын мөрийн төгсгөлд ESC тэмдэгт байна" msgstr "Түлхүүр файлын мөрийн төгсгөлд ESC тэмдэгт байна"
# CHECK # CHECK
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Түлхүүр файлд »%s« хүчингүй escape-тэмдэгт байна" msgstr "Түлхүүр файлд »%s« хүчингүй escape-тэмдэгт байна"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "'%s' утга бүхэл тоогоор илэрхийлэгдэх боломжгүй." msgstr "'%s' утга бүхэл тоогоор илэрхийлэгдэх боломжгүй."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, fuzzy, c-format #, fuzzy, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "'%s' бүхэл %s -н хувьд хязгаараас хальжээ" msgstr "'%s' бүхэл %s -н хувьд хязгаараас хальжээ"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "'%s' утга бүхэл тоогоор илэрхийлэгдэх боломжгүй." msgstr "'%s' утга бүхэл тоогоор илэрхийлэгдэх боломжгүй."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "'%s' утга бүүл утгаар дүрслэгдэх боломжгүй ." msgstr "'%s' утга бүүл утгаар дүрслэгдэх боломжгүй ."

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib HEAD\n" "Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2004-02-03 02:11+0730\n" "PO-Revision-Date: 2004-02-03 02:11+0730\n"
"Last-Translator: Hasbullah Bin Pit <sebol@my-penguin.org>\n" "Last-Translator: Hasbullah Bin Pit <sebol@my-penguin.org>\n"
"Language-Team: Projek Gabai <gabai-penyumbang@lists.sourceforge.org>\n" "Language-Team: Projek Gabai <gabai-penyumbang@lists.sourceforge.org>\n"
@@ -49,35 +49,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -191,7 +191,7 @@ msgstr "Gagal membuka fail '%s': fdopen() gagal: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Gagal membuka fail '%s': fdopen() gagal: %s" msgstr "Gagal membuka fail '%s': fdopen() gagal: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Gagal mencipta fail %s': %s" msgstr "Gagal mencipta fail %s': %s"
@@ -216,22 +216,22 @@ msgstr "Gagal membuka fail '%s': fdopen() gagal: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Templet '%s' tidak sah, sepatutnya tidak mengandungi '%s'" msgstr "Templet '%s' tidak sah, sepatutnya tidak mengandungi '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Templet '%s' tidak berakhir dengan XXXXXX" msgstr "Templet '%s' tidak berakhir dengan XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Gagal membaca pautan simbolik '%s': %s" msgstr "Gagal membaca pautan simbolik '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Pautan simbolik tidak disokong" msgstr "Pautan simbolik tidak disokong"
@@ -729,66 +729,66 @@ msgstr ""
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, fuzzy, c-format #, fuzzy, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "URI '%s' mengandungi aksara escaped yang tidak sah" msgstr "URI '%s' mengandungi aksara escaped yang tidak sah"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "" msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.9.x\n" "Project-Id-Version: glib 2.9.x\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-04-30 14:00+0200\n" "PO-Revision-Date: 2006-04-30 14:00+0200\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n" "Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\n" "Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\n"
@@ -50,35 +50,35 @@ msgstr "Ingen gyldig bokmerkefil ble funnet i datakatalogen"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "Et bokmerke eksisterer allerede for URI «%s»" msgstr "Et bokmerke eksisterer allerede for URI «%s»"
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "Ingen bokmerker funnet for URI «%s»" msgstr "Ingen bokmerker funnet for URI «%s»"
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Ingen MIME-type definert i bokmerke for URI «%s»" msgstr "Ingen MIME-type definert i bokmerke for URI «%s»"
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Ingen private flagg er definert i bokmerke for URI «%s»" msgstr "Ingen private flagg er definert i bokmerke for URI «%s»"
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "Ingen grupper satt i bokmerke for URI «%s»" msgstr "Ingen grupper satt i bokmerke for URI «%s»"
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Ingen program med navn «%s» har registrert et bokmerke for «%s»" msgstr "Ingen program med navn «%s» har registrert et bokmerke for «%s»"
@@ -193,7 +193,7 @@ msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "" msgstr ""
"Feil under endring av navn på filen «%s» til «%s»: g_rename() feilet: %s" "Feil under endring av navn på filen «%s» til «%s»: g_rename() feilet: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Feil under oppretting av fil «%s»: %s" msgstr "Feil under oppretting av fil «%s»: %s"
@@ -218,22 +218,22 @@ msgstr "Kunne ikke lukke fil «%s»: fclose() feilet: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Eksisterende fil «%s» kunne ikke bli fjernet: g_unlink() feilet: %s" msgstr "Eksisterende fil «%s» kunne ikke bli fjernet: g_unlink() feilet: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Mal «%s» er ugyldig, må ikke inneholde «%s»" msgstr "Mal «%s» er ugyldig, må ikke inneholde «%s»"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Mal «%s» slutter ikke med XXXXXX" msgstr "Mal «%s» slutter ikke med XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Feil under lesing av symbolsk lenke «%s»: %s" msgstr "Feil under lesing av symbolsk lenke «%s»: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Symbolske lenker er ikke støttet" msgstr "Symbolske lenker er ikke støttet"
@@ -735,30 +735,30 @@ msgstr "Nøkkelfil starter ikke med en gruppe"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Nøkkelfil inneholder ustøttet tegnkoding «%s»" msgstr "Nøkkelfil inneholder ustøttet tegnkoding «%s»"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Nøkkelfil har ikke gruppe «%s»" msgstr "Nøkkelfil har ikke gruppe «%s»"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Nøkkelfil har ikke nøkkelen «%s»" msgstr "Nøkkelfil har ikke nøkkelen «%s»"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "Nøkkelfilen inneholder nøkkelen «%s» med verdi «%s» som ikke er UTF-8" msgstr "Nøkkelfilen inneholder nøkkelen «%s» med verdi «%s» som ikke er UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Nøkkelfilen inneholder nøkkelen «%s» som har en verdi som ikke kan bli tolket" "Nøkkelfilen inneholder nøkkelen «%s» som har en verdi som ikke kan bli tolket"
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -767,37 +767,37 @@ msgstr ""
"Nøkkelfilen inneholder nøkkelen «%s» i gruppen «%s» som har en verdi som " "Nøkkelfilen inneholder nøkkelen «%s» i gruppen «%s» som har en verdi som "
"ikke kan bli tolket." "ikke kan bli tolket."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Nøkkelfilen har ikke nøkkelen i «%s» i gruppen «%s»" msgstr "Nøkkelfilen har ikke nøkkelen i «%s» i gruppen «%s»"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Nøkkelfilen inneholder skiftetegn ved linjeslutt" msgstr "Nøkkelfilen inneholder skiftetegn ved linjeslutt"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Nøkkelfil inneholder ugyldig skiftesekvens «%s»" msgstr "Nøkkelfil inneholder ugyldig skiftesekvens «%s»"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Vedien «%s» kan ikke bli tolket som et tall." msgstr "Vedien «%s» kan ikke bli tolket som et tall."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Heltallsverdi «%s» er utenfor gyldig område" msgstr "Heltallsverdi «%s» er utenfor gyldig område"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Verdi «%s» kan ikke tolkes som et flyttall." msgstr "Verdi «%s» kan ikke tolkes som et flyttall."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Verdi «%s» kan ikke tolkes som en bolsk verdi." msgstr "Verdi «%s» kan ikke tolkes som en bolsk verdi."

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD\n" "Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2005-05-20 11:50+0545\n" "PO-Revision-Date: 2005-05-20 11:50+0545\n"
"Last-Translator: Jyotshna Shrestha <shresthajyo@hotmail.com>\n" "Last-Translator: Jyotshna Shrestha <shresthajyo@hotmail.com>\n"
"Language-Team: Nepali <info@mpp.org.np>\n" "Language-Team: Nepali <info@mpp.org.np>\n"
@@ -51,35 +51,35 @@ msgstr "मान्य कुन्ज फाइल डाटा निर्
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -193,7 +193,7 @@ msgstr "'%s'फाइल खोल्न असफल : एफडीखोल्
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "फाईल '%s' लाई '%s' मा पुन:नामाकरण गर्न असफल: जी_पुन:नामाकरण() असफल: %s" msgstr "फाईल '%s' लाई '%s' मा पुन:नामाकरण गर्न असफल: जी_पुन:नामाकरण() असफल: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "'%s' फाइल निर्माण हुन असफल: %s" msgstr "'%s' फाइल निर्माण हुन असफल: %s"
@@ -218,22 +218,22 @@ msgstr "'%s'फाइल बन्द गर्न असफल : एफबन
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "अवस्थित फाइल '%s' हटाउन सकिंदैन: g_unlink() असफल: %s" msgstr "अवस्थित फाइल '%s' हटाउन सकिंदैन: g_unlink() असफल: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "'%s 'ढाँचा अबैध, '%s' पाइएन" msgstr "'%s 'ढाँचा अबैध, '%s' पाइएन"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "'%s' ढाँचा XXXXXX मा समाप्त हुँदैन" msgstr "'%s' ढाँचा XXXXXX मा समाप्त हुँदैन"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "सांकेतिक सम्बन्ध '%s' पढ्न असफल: %s" msgstr "सांकेतिक सम्बन्ध '%s' पढ्न असफल: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "सांकेतिक सम्बन्धले समर्थन गरेन" msgstr "सांकेतिक सम्बन्धले समर्थन गरेन"
@@ -718,66 +718,66 @@ msgstr "समूहसंगै कुण्ज फाईल शुरू भ
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "कुन्ज फाइलमा असहयोगिक संकेतन '%s' समावेश छ।" msgstr "कुन्ज फाइलमा असहयोगिक संकेतन '%s' समावेश छ।"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "कुण्ज फाईलसंग समूह '%s' छैन" msgstr "कुण्ज फाईलसंग समूह '%s' छैन"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "कुण्ज फाईलसंग कुण्ज '%s' छैन" msgstr "कुण्ज फाईलसंग कुण्ज '%s' छैन"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "कुन्ज फाइलमा मान '%s' संगै कुन्ज '%s' समावेश छ जुन युटिएफ-८ होइन" msgstr "कुन्ज फाइलमा मान '%s' संगै कुन्ज '%s' समावेश छ जुन युटिएफ-८ होइन"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "कुन्ज फाइलमा कुन्ज '%s' समावेश छ जसको मानलाई व्याख्या गर्न सकिंदैन।" msgstr "कुन्ज फाइलमा कुन्ज '%s' समावेश छ जसको मानलाई व्याख्या गर्न सकिंदैन।"
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "कुन्ज फाइलमा समूह '%s' मा कुन्ज '%s' समावेश छ जसको मानलाई व्याख्या गर्न सकिंदैन।" msgstr "कुन्ज फाइलमा समूह '%s' मा कुन्ज '%s' समावेश छ जसको मानलाई व्याख्या गर्न सकिंदैन।"
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "समूह '%s' मा कुण्ज फाईल संग कुण्ज '%s' छैन" msgstr "समूह '%s' मा कुण्ज फाईल संग कुण्ज '%s' छैन"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "कुन्ज फाइलमा पंक्तिको अन्त्यमा निस्कनुस् वर्ण समावेश छ।" msgstr "कुन्ज फाइलमा पंक्तिको अन्त्यमा निस्कनुस् वर्ण समावेश छ।"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "कुन्ज फाइलमा अमान्य निस्कनुस् अनुक्रम '%s' समावेस छ।" msgstr "कुन्ज फाइलमा अमान्य निस्कनुस् अनुक्रम '%s' समावेस छ।"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "मान '%s' लाई संख्याको रूपमा व्याख्या गर्न सकिंदैन" msgstr "मान '%s' लाई संख्याको रूपमा व्याख्या गर्न सकिंदैन"
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, fuzzy, c-format #, fuzzy, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "पूर्ण संख्या मान '%s' %s को लागि क्षेत्र भन्दा बाहिर छ" msgstr "पूर्ण संख्या मान '%s' %s को लागि क्षेत्र भन्दा बाहिर छ"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "मान '%s' लाई संख्याको रूपमा व्याख्या गर्न सकिंदैन" msgstr "मान '%s' लाई संख्याको रूपमा व्याख्या गर्न सकिंदैन"
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "मान '%s' बुलेनको रुपमा व्याख्या गर्न सकिंदैन।" msgstr "मान '%s' बुलेनको रुपमा व्याख्या गर्न सकिंदैन।"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib (HEAD)\n" "Project-Id-Version: glib (HEAD)\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-05-25 02:38+0200\n" "PO-Revision-Date: 2006-05-25 02:38+0200\n"
"Last-Translator: Tino Meinen <a.t.meinen@chello.nl>\n" "Last-Translator: Tino Meinen <a.t.meinen@chello.nl>\n"
"Language-Team: Dutch <vertaling@vrijschrift.org>\n" "Language-Team: Dutch <vertaling@vrijschrift.org>\n"
@@ -50,36 +50,36 @@ msgstr "Er is geen geldig bladwijzerbestand gevonden in de data-mappen"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "Een bladwijzer voor URI '%s' bestaat al" msgstr "Een bladwijzer voor URI '%s' bestaat al"
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "Geen bladwijzer gevonden voor URI '%s'" msgstr "Geen bladwijzer gevonden voor URI '%s'"
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Geen MIME-type gedefinieerd in de bladwijzer voor URI '%s'" msgstr "Geen MIME-type gedefinieerd in de bladwijzer voor URI '%s'"
# BUG engels: defined in bookmark -> in the bookmark # BUG engels: defined in bookmark -> in the bookmark
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Er is geen privé-vlag gedefineerd in de bladwijzer voor URI '%s'" msgstr "Er is geen privé-vlag gedefineerd in de bladwijzer voor URI '%s'"
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "Geen groepen ingesteld in de bladwijzer voor URI '%s'" msgstr "Geen groepen ingesteld in de bladwijzer voor URI '%s'"
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -207,7 +207,7 @@ msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "" msgstr ""
"Hernoemen van bestand '%s' naar '%s' is mislukt: g_rename() is mislukt: %s" "Hernoemen van bestand '%s' naar '%s' is mislukt: g_rename() is mislukt: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Aanmaken van bestand '%s' is mislukt: %s" msgstr "Aanmaken van bestand '%s' is mislukt: %s"
@@ -234,22 +234,22 @@ msgstr "Sluiten van bestand '%s' is mislukt: fclose() is mislukt: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Bestand '%s' kon niet worden verwijderd: g_unlink() is mislukt: %s" msgstr "Bestand '%s' kon niet worden verwijderd: g_unlink() is mislukt: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Sjabloon '%s' is ongeldig, het zou geen '%s' moeten bevatten" msgstr "Sjabloon '%s' is ongeldig, het zou geen '%s' moeten bevatten"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Sjabloon '%s' eindigt niet op XXXXXX" msgstr "Sjabloon '%s' eindigt niet op XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Lezen van symbolische link '%s' is mislukt: %s" msgstr "Lezen van symbolische link '%s' is mislukt: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Symbolische links zijn niet mogelijk" msgstr "Symbolische links zijn niet mogelijk"
@@ -769,31 +769,31 @@ msgstr "Sleutelbestand start niet met een groep"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Sleutelbestand bevat niet-ondersteunde tekenset '%s'" msgstr "Sleutelbestand bevat niet-ondersteunde tekenset '%s'"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Sleutelbestand bevat geen groep '%s'" msgstr "Sleutelbestand bevat geen groep '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Sleutelbestand bevat geen sleutel '%s'" msgstr "Sleutelbestand bevat geen sleutel '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "Sleutelbestand bevat sleutel '%s' met waarde '%s' wat geen UTF-8 is" msgstr "Sleutelbestand bevat sleutel '%s' met waarde '%s' wat geen UTF-8 is"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Sleutelbestand bevat sleutel '%s' die een waarde heeft die niet kan worden " "Sleutelbestand bevat sleutel '%s' die een waarde heeft die niet kan worden "
"geïnterpreteerd." "geïnterpreteerd."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -802,37 +802,37 @@ msgstr ""
"Sleutelbestand bevat sleutel '%s' in groep '%s' die een waarde heeft die " "Sleutelbestand bevat sleutel '%s' in groep '%s' die een waarde heeft die "
"niet kan worden geïnterpreteerd." "niet kan worden geïnterpreteerd."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Sleutelbestand bevat geen sleutel '%s' in groep '%s'" msgstr "Sleutelbestand bevat geen sleutel '%s' in groep '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Sleutelbestand bevat een ontsnappingsteken aan het einde van een regel" msgstr "Sleutelbestand bevat een ontsnappingsteken aan het einde van een regel"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Sleutelbestand bevat ongeldige ontsnappingstekens '%s'" msgstr "Sleutelbestand bevat ongeldige ontsnappingstekens '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Waarde '%s' kan niet geïnterpreteerd worden als een getal." msgstr "Waarde '%s' kan niet geïnterpreteerd worden als een getal."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Hele getalswaarde '%s' valt buiten bereik" msgstr "Hele getalswaarde '%s' valt buiten bereik"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Waarde '%s' kan niet geïnterpreteerd worden als een float." msgstr "Waarde '%s' kan niet geïnterpreteerd worden als een float."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Waarde '%s' kan niet geïnterpreteerd worden als een booleese." msgstr "Waarde '%s' kan niet geïnterpreteerd worden als een booleese."

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: nn\n" "Project-Id-Version: nn\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-04-23 16:21+0200\n" "PO-Revision-Date: 2006-04-23 16:21+0200\n"
"Last-Translator: Åsmund Skjæveland <aasmunds@fys.uio.no>\n" "Last-Translator: Åsmund Skjæveland <aasmunds@fys.uio.no>\n"
"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n" "Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"
@@ -54,35 +54,35 @@ msgstr "Klarte ikkje å finna gyldig nøkkelfil i datamappene"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -197,7 +197,7 @@ msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "" msgstr ""
"Klarte ikkje å endra namnet på fila «%s» til «%s»: g_rename() feila: %s" "Klarte ikkje å endra namnet på fila «%s» til «%s»: g_rename() feila: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Klarte ikkje å oppretta fila «%s»: %s" msgstr "Klarte ikkje å oppretta fila «%s»: %s"
@@ -222,22 +222,22 @@ msgstr "Klarte ikkje å lukka fila «%s»: fclose() feila: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Klarte ikkje å fjerna den eksisterande fila «%s»: g_unlink() feila: %s" msgstr "Klarte ikkje å fjerna den eksisterande fila «%s»: g_unlink() feila: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Malen «%s» er ugyldig, kan ikkje ikkje innehalda ein «%s»" msgstr "Malen «%s» er ugyldig, kan ikkje ikkje innehalda ein «%s»"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Malfila «%s» er ikkje avslutta med XXXXXX" msgstr "Malfila «%s» er ikkje avslutta med XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Klarte ikkje å lesa den symolske lenkja «%s»: %s" msgstr "Klarte ikkje å lesa den symolske lenkja «%s»: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Symbolske lenkjer er ikkje støtta" msgstr "Symbolske lenkjer er ikkje støtta"
@@ -739,29 +739,29 @@ msgstr "Nøkkelfila startar ikkje med ei gruppe"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Nøkkelfila inneheld den ikkje støtta kodinga «%s»" msgstr "Nøkkelfila inneheld den ikkje støtta kodinga «%s»"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Nøkkelfila manglar gruppa «%s»" msgstr "Nøkkelfila manglar gruppa «%s»"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Nøkkelfila manglar nøkkelen «%s»" msgstr "Nøkkelfila manglar nøkkelen «%s»"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "Nøkkelfila har nøkkelen «%s» med verdien «%s», som ikkje er UTF-8" msgstr "Nøkkelfila har nøkkelen «%s» med verdien «%s», som ikkje er UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "Nøkkelfila har nøkkelen «%s» med ein verdi som ikkje kan tolkast." msgstr "Nøkkelfila har nøkkelen «%s» med ein verdi som ikkje kan tolkast."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -769,37 +769,37 @@ msgid ""
msgstr "" msgstr ""
"Nøkkelfila har feil i nøkkelen «%s» i gruppa «%s». Verdien kan ikkje tolkast." "Nøkkelfila har feil i nøkkelen «%s» i gruppa «%s». Verdien kan ikkje tolkast."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Nøkkelfila har ikkje nøkkelen «%s» i gruppa «%s»" msgstr "Nøkkelfila har ikkje nøkkelen «%s» i gruppa «%s»"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Nøkkelfila inneheld escape-teikn på slutten av linja" msgstr "Nøkkelfila inneheld escape-teikn på slutten av linja"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Nøkkelfila inneheld ugyldig escape-sekvens «%s»" msgstr "Nøkkelfila inneheld ugyldig escape-sekvens «%s»"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Verdien «%s» kan ikkje tolkast som eit tal." msgstr "Verdien «%s» kan ikkje tolkast som eit tal."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Heiltalsverdien «%s» er utanfor gyldig område" msgstr "Heiltalsverdien «%s» er utanfor gyldig område"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Verdien «%s» kan ikkje tolkast som eit flyttal." msgstr "Verdien «%s» kan ikkje tolkast som eit flyttal."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Verdien «%s» kan ikkje tolkast som ein boolsk verdi." msgstr "Verdien «%s» kan ikkje tolkast som ein boolsk verdi."

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: or\n" "Project-Id-Version: or\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-03-10 10:51+0530\n" "PO-Revision-Date: 2006-03-10 10:51+0530\n"
"Last-Translator: Subhransu Behera <arya_subhransu@yahoo.co.in>\n" "Last-Translator: Subhransu Behera <arya_subhransu@yahoo.co.in>\n"
"Language-Team: Oriya <oriya-group@lists.sarovar.org>\n" "Language-Team: Oriya <oriya-group@lists.sarovar.org>\n"
@@ -53,35 +53,35 @@ msgstr "ତଥ୍ଯ ଡିରେକ୍ଟୋରି ମାନଙ୍କ ରେ
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -195,7 +195,7 @@ msgstr "'%s' ଫାଇଲ ଖୋଲିବାରେ ଅସଫଳ: fdopen() ଅସ
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "'%s' ଫାଇଲ ରୁ '%s' ନାମ ବଦଳାଇ ବାରେ ଅସଫଳ: g_rename() ଅସଫଳ: %s" msgstr "'%s' ଫାଇଲ ରୁ '%s' ନାମ ବଦଳାଇ ବାରେ ଅସଫଳ: g_rename() ଅସଫଳ: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "'%s' ଫାଇଲ ସ୍ରୁଷ୍ଟି କରିବାରେ ଅସଫଳ: %s" msgstr "'%s' ଫାଇଲ ସ୍ରୁଷ୍ଟି କରିବାରେ ଅସଫଳ: %s"
@@ -220,22 +220,22 @@ msgstr "'%s' ଫାଇଲ କୁ ବନ୍ଦ କରିବା ରେ ଅସଫ
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "ଅବସ୍ଥିତ '%s' ଫାଇଲ କାଢି ହେଲା ନାହଁି: g_unlink ଅସଫଳ %s" msgstr "ଅବସ୍ଥିତ '%s' ଫାଇଲ କାଢି ହେଲା ନାହଁି: g_unlink ଅସଫଳ %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "'%s' ନମୁନା ଟି ଅବୈଧ ଅଟେ, '%s' ଧାରଣ କରିବା ଉଚିତ ନୁହେଁ" msgstr "'%s' ନମୁନା ଟି ଅବୈଧ ଅଟେ, '%s' ଧାରଣ କରିବା ଉଚିତ ନୁହେଁ"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "'%s' ନମୁନା ଟି XXXXXXରେ ସମାପ୍ତ ହୋଇ ନାହିଁ" msgstr "'%s' ନମୁନା ଟି XXXXXXରେ ସମାପ୍ତ ହୋଇ ନାହିଁ"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "'%s' ପ୍ରତିକାତ୍ମକ ସଂୟୋଗ ପଢିବାରେ ଅସଫଳ: %s" msgstr "'%s' ପ୍ରତିକାତ୍ମକ ସଂୟୋଗ ପଢିବାରେ ଅସଫଳ: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "ପ୍ରତିକାତ୍ମକ ସଂୟୋଗ ଅସହାୟକ" msgstr "ପ୍ରତିକାତ୍ମକ ସଂୟୋଗ ଅସହାୟକ"
@@ -727,29 +727,29 @@ msgstr "ମୂଖ୍ଯ ଫାଇଲ କୌଣସି ସମୂହ ସହ ଆର
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "ମୂଖ୍ଯ ଫାଇଲ ଟି ଗୋଟିଏ ଅସହାୟକ ସଂକେତ '%s' ଧାରଣ କରିଛି" msgstr "ମୂଖ୍ଯ ଫାଇଲ ଟି ଗୋଟିଏ ଅସହାୟକ ସଂକେତ '%s' ଧାରଣ କରିଛି"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "ମୂଖ୍ଯ ଫାଇଲ େର '%s' ନାମ ଥିବା କୌଣସି ସମୂହ ନାହିଁ" msgstr "ମୂଖ୍ଯ ଫାଇଲ େର '%s' ନାମ ଥିବା କୌଣସି ସମୂହ ନାହିଁ"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "ମୂଖ୍ଯ ଫାଇଲ େର '%s' ନାମ ଥିବା କୌଣସି ଚାବିକାଠି ନାହିଁ" msgstr "ମୂଖ୍ଯ ଫାଇଲ େର '%s' ନାମ ଥିବା କୌଣସି ଚାବିକାଠି ନାହିଁ"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "ମୂଖ୍ଯ ଫାଇଲ ଧାରଣ କରିଥିବା '%s' ଚାବିକାଠି ର ମୂଲ୍ଯ '%s' ଅଟେ, ଯାହାକି ଇଉ-ଟି-ଏଫ୍-୮ ନୁହେଁ" msgstr "ମୂଖ୍ଯ ଫାଇଲ ଧାରଣ କରିଥିବା '%s' ଚାବିକାଠି ର ମୂଲ୍ଯ '%s' ଅଟେ, ଯାହାକି ଇଉ-ଟି-ଏଫ୍-୮ ନୁହେଁ"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "ମୂଖ୍ଯ ଫାଇଲ ଧାରଣ କରିଥିବା '%s' ଚାବିକାଠି ର ମୂଲ୍ଯ ନିରୂପଣ କରିହେବ ନାହିଁ" msgstr "ମୂଖ୍ଯ ଫାଇଲ ଧାରଣ କରିଥିବା '%s' ଚାବିକାଠି ର ମୂଲ୍ଯ ନିରୂପଣ କରିହେବ ନାହିଁ"
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -757,37 +757,37 @@ msgid ""
msgstr "" msgstr ""
"ମୂଖ୍ଯ ଫାଇଲ ଧାରଣ କରିଥିବା '%s' ଚାବିକାଠି ଗୋଟିଏ '%s' ସମୂହ ସହିତ ଏଛି ଯାହାର ମୂଲ୍ଯ ନିରୂପଣ କରିହେବ ନାହିଁ" "ମୂଖ୍ଯ ଫାଇଲ ଧାରଣ କରିଥିବା '%s' ଚାବିକାଠି ଗୋଟିଏ '%s' ସମୂହ ସହିତ ଏଛି ଯାହାର ମୂଲ୍ଯ ନିରୂପଣ କରିହେବ ନାହିଁ"
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "ମୂଖ୍ଯ ଫାଇଲ େର '%s' ନାମ ଥିବା କୌଣସି ଚାବିକାଠି '%s' ସମୂହ ରେ ନାହିଁ " msgstr "ମୂଖ୍ଯ ଫାଇଲ େର '%s' ନାମ ଥିବା କୌଣସି ଚାବିକାଠି '%s' ସମୂହ ରେ ନାହିଁ "
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "ମୂଖ୍ଯ ଫାଇଲ ଟି ଲାଇନ୍ ର ସମାପ୍ତି ରେ ଏସ୍କେପ୍ ଅକ୍ଷର ଧାରଣ କରିଛି" msgstr "ମୂଖ୍ଯ ଫାଇଲ ଟି ଲାଇନ୍ ର ସମାପ୍ତି ରେ ଏସ୍କେପ୍ ଅକ୍ଷର ଧାରଣ କରିଛି"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "ମୂଖ୍ଯ ଫାଇଲ '%s' ଅବୈଧ ଏସ୍କେପ୍ ଅକ୍ଷର ଧାରଣ କରିଛି" msgstr "ମୂଖ୍ଯ ଫାଇଲ '%s' ଅବୈଧ ଏସ୍କେପ୍ ଅକ୍ଷର ଧାରଣ କରିଛି"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "'%s' ର ମୂଲ୍ଯ ଗୋଟିଏ ସଂଖ୍ଯା ଭାବରେ ନିରୂପଣ କରିହେବ ନାହିଁ" msgstr "'%s' ର ମୂଲ୍ଯ ଗୋଟିଏ ସଂଖ୍ଯା ଭାବରେ ନିରୂପଣ କରିହେବ ନାହିଁ"
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "ପୂର୍ଣ ମୂଲ୍ଯ '%s' ପରିସର ର ବାହାରେ ଅଛି" msgstr "ପୂର୍ଣ ମୂଲ୍ଯ '%s' ପରିସର ର ବାହାରେ ଅଛି"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "'%s' ର ମୂଲ୍ଯ ଗୋଟିଏ ସଂଖ୍ଯା ଭାବରେ ନିରୂପଣ କରିହେବ ନାହିଁ" msgstr "'%s' ର ମୂଲ୍ଯ ଗୋଟିଏ ସଂଖ୍ଯା ଭାବରେ ନିରୂପଣ କରିହେବ ନାହିଁ"
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "'%s' ର ମୂଲ୍ଯ ଗୋଟିଏ ବୁଲିଆନ୍ ଭାବରେ ନିରୂପଣ କରିହେବ ନାହିଁ" msgstr "'%s' ର ମୂଲ୍ଯ ଗୋଟିଏ ବୁଲିଆନ୍ ଭାବରେ ନିରୂପଣ କରିହେବ ନାହିଁ"

View File

@@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD\n" "Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-03-11 11:52+0530\n" "PO-Revision-Date: 2006-03-11 11:52+0530\n"
"Last-Translator: A S Alam <apbrar@gmail.com>\n" "Last-Translator: A S Alam <apbrar@gmail.com>\n"
"Language-Team: Punjabi <fedora-trans-pa@redhat.com>\n" "Language-Team: Punjabi <fedora-trans-pa@redhat.com>\n"
@@ -55,35 +55,35 @@ msgstr "ਡਾਟਾ ਡਾਇਰੈਕਟਰੀਆਂ ਵਿੱਚ ਠੀਕ
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -197,7 +197,7 @@ msgstr "ਫਾਇਲ '%s' ਖੋਲ੍ਹਣ ਵਿੱਚ ਅਸਫਲ: fdopen()
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "ਫਾਇਲ '%s' ਦਾ ਨਾਂ '%s' ਬਦਲਣ 'ਚ ਅਸਫ਼ਲ: g_rename() ਫੇਲ੍ਹ: %s" msgstr "ਫਾਇਲ '%s' ਦਾ ਨਾਂ '%s' ਬਦਲਣ 'ਚ ਅਸਫ਼ਲ: g_rename() ਫੇਲ੍ਹ: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "ਫਾਇਲ %s' ਬਣਾਉਣ ਵਿੱਚ ਗਲਤੀ: %s" msgstr "ਫਾਇਲ %s' ਬਣਾਉਣ ਵਿੱਚ ਗਲਤੀ: %s"
@@ -222,22 +222,22 @@ msgstr "ਫਾਇਲ '%s' ਨੂੰ ਬੰਦ ਕਰਨ 'ਚ ਅਸਫ਼ਲ: fd
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "ਮੌਜੂਦਾ ਫਾਇਲ '%s' ਨੂੰ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: g_unlink() ਫੇਲ੍ਹ: %s" msgstr "ਮੌਜੂਦਾ ਫਾਇਲ '%s' ਨੂੰ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: g_unlink() ਫੇਲ੍ਹ: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "ਨਮੂਨਾ %s ਸਹੀ ਨਹੀਂ ਹੈ, ਇਸ ਕੋਲ %s ਨਹੀਂ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ" msgstr "ਨਮੂਨਾ %s ਸਹੀ ਨਹੀਂ ਹੈ, ਇਸ ਕੋਲ %s ਨਹੀਂ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "ਨਮੂਨਾ '%s' XXXXXX ਨਾਲ ਖਤਮ ਨਹੀਂ ਹੁੰਦਾ" msgstr "ਨਮੂਨਾ '%s' XXXXXX ਨਾਲ ਖਤਮ ਨਹੀਂ ਹੁੰਦਾ"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "ਚਿੰਨ੍ਹ ਸਬੰਧ '%s' ਖੋਲਣ ਵਿੱਚ ਗਲਤੀ: %s" msgstr "ਚਿੰਨ੍ਹ ਸਬੰਧ '%s' ਖੋਲਣ ਵਿੱਚ ਗਲਤੀ: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "ਚਿੰਨ੍ਹ ਸਬੰਧ ਸਹਾਇਤਾ ਪ੍ਰਾਪਤ ਨਹੀਂ ਹਨ" msgstr "ਚਿੰਨ੍ਹ ਸਬੰਧ ਸਹਾਇਤਾ ਪ੍ਰਾਪਤ ਨਹੀਂ ਹਨ"
@@ -722,29 +722,29 @@ msgstr "ਕੁੰਜੀ ਫਾਇਲ ਸਮੂਹ ਨਾਲ ਸ਼ੁਰੂ ਨਹ
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "ਕੁੰਜੀ ਫਾਇਲ ਨਾ-ਸਹਾਇਕ ਇੰਕੋਡਿਗ '%s' ਰੱਖਦੀ ਹੈ" msgstr "ਕੁੰਜੀ ਫਾਇਲ ਨਾ-ਸਹਾਇਕ ਇੰਕੋਡਿਗ '%s' ਰੱਖਦੀ ਹੈ"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "ਕੁੰਜੀ ਫਾਇਲ ਦਾ ਸਮੂਹ '%s' ਨਹੀਂ ਹੈ" msgstr "ਕੁੰਜੀ ਫਾਇਲ ਦਾ ਸਮੂਹ '%s' ਨਹੀਂ ਹੈ"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ '%s' ਕੁੰਜੀ ਨਹੀਂ ਹੈ" msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ '%s' ਕੁੰਜੀ ਨਹੀਂ ਹੈ"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ ਕੁੰਜੀ '%s' ਦਾ ਮੁੱਲ '%s' ਹੈ, ਜੋ ਕਿ UTF-8 ਨਹੀਂ ਹੈ" msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ ਕੁੰਜੀ '%s' ਦਾ ਮੁੱਲ '%s' ਹੈ, ਜੋ ਕਿ UTF-8 ਨਹੀਂ ਹੈ"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ '%s' ਕੁੰਜੀ ਹੈ, ਜਿਸ ਤੇ ਕਾਰਵਾਈ ਨਹੀਂ ਹੋ ਸਕਦੀ ਹੈ" msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ '%s' ਕੁੰਜੀ ਹੈ, ਜਿਸ ਤੇ ਕਾਰਵਾਈ ਨਹੀਂ ਹੋ ਸਕਦੀ ਹੈ"
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -752,37 +752,37 @@ msgid ""
msgstr "" msgstr ""
"ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ ਕੁੰਜੀ '%s' ਗਰੁੱਪ '%s' ਵਿੱਚ ਹੈ, ਜਿਸ ਦੇ ਮੁੱਲ ਨੂੰ ਇੰਟਰਪਰੇਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।" "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ ਕੁੰਜੀ '%s' ਗਰੁੱਪ '%s' ਵਿੱਚ ਹੈ, ਜਿਸ ਦੇ ਮੁੱਲ ਨੂੰ ਇੰਟਰਪਰੇਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।"
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "ਕੁੰਜੀ ਫਾਇਲ ਕੁੰਜੀ '%s' ਗਰੁੱਪ '%s' ਵਿੱਚ ਨਹੀਂ ਹੈ" msgstr "ਕੁੰਜੀ ਫਾਇਲ ਕੁੰਜੀ '%s' ਗਰੁੱਪ '%s' ਵਿੱਚ ਨਹੀਂ ਹੈ"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ ਸਤਰ ਦੇ ਅੰਤ ਵਿੱਚ ਇਸਕੇਪ ਅੱਖਰ ਹੈ" msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ ਸਤਰ ਦੇ ਅੰਤ ਵਿੱਚ ਇਸਕੇਪ ਅੱਖਰ ਹੈ"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ ਗਲਤ ਇਸਕੇਪ ਕ੍ਰਮ '%s' ਹੈ" msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ ਗਲਤ ਇਸਕੇਪ ਕ੍ਰਮ '%s' ਹੈ"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "ਮੁੱਲ '%s' ਨੂੰ ਇੱਕ ਅੰਕ ਦੇ ਤੌਰ 'ਤੇ ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ ਹੈ।" msgstr "ਮੁੱਲ '%s' ਨੂੰ ਇੱਕ ਅੰਕ ਦੇ ਤੌਰ 'ਤੇ ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ ਹੈ।"
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "ਪੂਰਨ ਅੰਕ '%s' ਸੀਮਾ ਤੋਂ ਬਾਹਰ ਹੈ" msgstr "ਪੂਰਨ ਅੰਕ '%s' ਸੀਮਾ ਤੋਂ ਬਾਹਰ ਹੈ"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "ਮੁੱਲ '%s' ਨੂੰ ਇੱਕ ਅੰਕ ਦੇ ਤੌਰ 'ਤੇ ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ ਹੈ।" msgstr "ਮੁੱਲ '%s' ਨੂੰ ਇੱਕ ਅੰਕ ਦੇ ਤੌਰ 'ਤੇ ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ ਹੈ।"
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "ਮੁੱਲ '%s' ਨੂੰ ਬੂਲੀਅਨ ਵਾਂਗ ਇੰਟਰਪਰੇਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।" msgstr "ਮੁੱਲ '%s' ਨੂੰ ਬੂਲੀਅਨ ਵਾਂਗ ਇੰਟਰਪਰੇਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।"

View File

@@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-02-25 11:51+0100\n" "PO-Revision-Date: 2006-02-25 11:51+0100\n"
"Last-Translator: GNOME PL Team <translators@gnomepl.org>\n" "Last-Translator: GNOME PL Team <translators@gnomepl.org>\n"
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n" "Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
@@ -54,35 +54,35 @@ msgstr "Nie można odnaleźć poprawnego pliku klucza w katalogach danych"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -202,7 +202,7 @@ msgstr ""
"Nie można zmienić nazwy pliku \"%s\" na \"%s\": funkcja g_rename() zwróciła " "Nie można zmienić nazwy pliku \"%s\" na \"%s\": funkcja g_rename() zwróciła "
"błąd: %s" "błąd: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Nie można utworzyć pliku \"%s\": %s" msgstr "Nie można utworzyć pliku \"%s\": %s"
@@ -230,22 +230,22 @@ msgstr ""
"Nie można usunąć istniejącego pliku \"%s\": funkcja g_unlink() zwróciła " "Nie można usunąć istniejącego pliku \"%s\": funkcja g_unlink() zwróciła "
"błąd: %s" "błąd: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Szablon \"%s\" jest niepoprawny, nie powinien on zawierać \"%s\"" msgstr "Szablon \"%s\" jest niepoprawny, nie powinien on zawierać \"%s\""
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Szablon \"%s\" nie jest zakończony znakami XXXXXX" msgstr "Szablon \"%s\" nie jest zakończony znakami XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Niepowodzenie podczas odczytu dowiązania symbolicznego \"%s\": %s" msgstr "Niepowodzenie podczas odczytu dowiązania symbolicznego \"%s\": %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Dowiązania symboliczne nie są obsługiwane" msgstr "Dowiązania symboliczne nie są obsługiwane"
@@ -767,33 +767,33 @@ msgstr "Plik klucza nie rozpoczyna się od grupy"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Plik klucza zawiera nieobsługiwane kodowanie \"%s\"" msgstr "Plik klucza zawiera nieobsługiwane kodowanie \"%s\""
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Plik klucza nie zawiera grupy \"%s\"" msgstr "Plik klucza nie zawiera grupy \"%s\""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Plik klucza nie zawiera klucza \"%s\"" msgstr "Plik klucza nie zawiera klucza \"%s\""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
"Plik klucza zawiera klucz \"%s\" o wartości \"%s\", która nie jest zapisana " "Plik klucza zawiera klucz \"%s\" o wartości \"%s\", która nie jest zapisana "
"w UTF-8" "w UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Plik klucza zawiera klucz \"%s\", który ma wartość niemożliwą do " "Plik klucza zawiera klucz \"%s\", który ma wartość niemożliwą do "
"zinterpretowania." "zinterpretowania."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -802,37 +802,37 @@ msgstr ""
"Plik klucza zawiera klucz \"%s\" w grupie \"%s\", który ma wartość " "Plik klucza zawiera klucz \"%s\" w grupie \"%s\", który ma wartość "
"niemożliwą do zinterpretowania." "niemożliwą do zinterpretowania."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Plik klucza nie zawiera klucza \"%s\" w grupie \"%s\"" msgstr "Plik klucza nie zawiera klucza \"%s\" w grupie \"%s\""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Plik klucza zawiera znak sterujący na końcu linii" msgstr "Plik klucza zawiera znak sterujący na końcu linii"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Plik klucza zawiera niepoprawną sekwencję sterującą \"%s\"" msgstr "Plik klucza zawiera niepoprawną sekwencję sterującą \"%s\""
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Nie można zinterpretować \"%s\" jako wartości liczbowej." msgstr "Nie można zinterpretować \"%s\" jako wartości liczbowej."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Wartość liczbowa \"%s\" jest z poza dopuszczalnego zakresu" msgstr "Wartość liczbowa \"%s\" jest z poza dopuszczalnego zakresu"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Nie można zinterpretować \"%s\" jako wartości liczbowej." msgstr "Nie można zinterpretować \"%s\" jako wartości liczbowej."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Nie można zinterpretować \"%s\" jako wartości logicznej." msgstr "Nie można zinterpretować \"%s\" jako wartości logicznej."

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2.14\n" "Project-Id-Version: 2.14\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-01-28 12:50+0000\n" "PO-Revision-Date: 2006-01-28 12:50+0000\n"
"Last-Translator: Duarte Loreto <happyguy_pt@hotmail.com>\n" "Last-Translator: Duarte Loreto <happyguy_pt@hotmail.com>\n"
"Language-Team: Portuguese <gnome_pt@yahoogroups.com>\n" "Language-Team: Portuguese <gnome_pt@yahoogroups.com>\n"
@@ -52,35 +52,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -194,7 +194,7 @@ msgstr "Falha ao abrir o ficheiro '%s': falha no fdopen(): %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Falha ao renomear o ficheiro '%s' para '%s': falha no g_rename(): %s" msgstr "Falha ao renomear o ficheiro '%s' para '%s': falha no g_rename(): %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Falha ao criar o ficheiro '%s': %s" msgstr "Falha ao criar o ficheiro '%s': %s"
@@ -219,22 +219,22 @@ msgstr "Falha ao fechar o ficheiro '%s': falha no fclose(): %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Incapaz de remover o ficheiro '%s' existente: falha no g_unlink(): %s" msgstr "Incapaz de remover o ficheiro '%s' existente: falha no g_unlink(): %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Modelo '%s' inválido, não deveria conter um '%s'" msgstr "Modelo '%s' inválido, não deveria conter um '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Modelo '%s' não termina em XXXXXX" msgstr "Modelo '%s' não termina em XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Falha ao ler o atalho '%s': %s" msgstr "Falha ao ler o atalho '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Atalhos não são suportados" msgstr "Atalhos não são suportados"
@@ -748,29 +748,29 @@ msgstr "Ficheiro de chave não começa com um grupo"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Ficheiro de chave contém uma codificação não suportada '%s'" msgstr "Ficheiro de chave contém uma codificação não suportada '%s'"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Ficheiro de chave não possui um grupo '%s'" msgstr "Ficheiro de chave não possui um grupo '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Ficheiro de chave não contém a chave '%s'" msgstr "Ficheiro de chave não contém a chave '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "Ficheiro de chave contém a chave '%s' com o valor '%s' que não é UTF-8" msgstr "Ficheiro de chave contém a chave '%s' com o valor '%s' que não é UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "Ficheiro de chave contém a chave '%s' cujo valor não é interpretável." msgstr "Ficheiro de chave contém a chave '%s' cujo valor não é interpretável."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -779,38 +779,38 @@ msgstr ""
"Ficheiro de chave contém a chave '%s' no grupo '%s' cujo valor não é " "Ficheiro de chave contém a chave '%s' no grupo '%s' cujo valor não é "
"interpretável." "interpretável."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Ficheiro de chave não possui a chave '%s' no grupo '%s'" msgstr "Ficheiro de chave não possui a chave '%s' no grupo '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Ficheiro de chave contém caracteres escapados no final da linha" msgstr "Ficheiro de chave contém caracteres escapados no final da linha"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "" msgstr ""
"Ficheiro de chave contém uma sequência de caracteres escapados inválida '%s'" "Ficheiro de chave contém uma sequência de caracteres escapados inválida '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Incapaz de interpretar o valor '%s' como um numérico." msgstr "Incapaz de interpretar o valor '%s' como um numérico."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Valor inteiro '%s' para além do limite permitido" msgstr "Valor inteiro '%s' para além do limite permitido"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Incapaz de interpretar o valor '%s' como um numérico." msgstr "Incapaz de interpretar o valor '%s' como um numérico."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Incapaz de interpretar o valor '%s' como uma boleana." msgstr "Incapaz de interpretar o valor '%s' como uma boleana."

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-03-10 20:38-0300\n" "PO-Revision-Date: 2006-03-10 20:38-0300\n"
"Last-Translator: Leandro A. F. Pereira <leandro@linuxmag.com.br>\n" "Last-Translator: Leandro A. F. Pereira <leandro@linuxmag.com.br>\n"
"Language-Team: Brazilian Portuguese <gnome-l10n-br@listas.cipsga.org.br>\n" "Language-Team: Brazilian Portuguese <gnome-l10n-br@listas.cipsga.org.br>\n"
@@ -52,35 +52,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -194,7 +194,7 @@ msgstr "Falha ao abrir arquivo '%s': fdopen() falhou: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Falha ao renomear arquivo '%s' para '%s': g_rename() falhou: %s" msgstr "Falha ao renomear arquivo '%s' para '%s': g_rename() falhou: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Falha ao criar arquivo '%s': %s" msgstr "Falha ao criar arquivo '%s': %s"
@@ -219,22 +219,22 @@ msgstr "Falha ao fechar arquivo '%s': fclose() falhou: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "O arquivo '%s' não pôde ser removido: g_unlink() falhou: %s" msgstr "O arquivo '%s' não pôde ser removido: g_unlink() falhou: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Modelo '%s' inválido, não deveria conter um '%s'" msgstr "Modelo '%s' inválido, não deveria conter um '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Modelo '%s' não termina com XXXXXX" msgstr "Modelo '%s' não termina com XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Falha ao ler vínculo simbólico '%s': %s" msgstr "Falha ao ler vínculo simbólico '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Vínculos simbólicos não são suportados" msgstr "Vínculos simbólicos não são suportados"
@@ -749,31 +749,31 @@ msgstr "Arquivo de chave não começa com um grupo"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Arquivo de chave contém codificação '%s' não suportada" msgstr "Arquivo de chave contém codificação '%s' não suportada"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Arquivo de chave não tem grupo '%s'" msgstr "Arquivo de chave não tem grupo '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Arquivo de chave não tem chave '%s'" msgstr "Arquivo de chave não tem chave '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "Arquivo de chave contém chave '%s' com valor '%s' que não é UTF-8" msgstr "Arquivo de chave contém chave '%s' com valor '%s' que não é UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Arquivo de chave contém chave '%s' que tem valor que não pode ser " "Arquivo de chave contém chave '%s' que tem valor que não pode ser "
"interpretado." "interpretado."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -782,37 +782,37 @@ msgstr ""
"Arquivo de chave contém chave '%s' no grupo '%s' que tem valor que não pode " "Arquivo de chave contém chave '%s' no grupo '%s' que tem valor que não pode "
"ser interpretado." "ser interpretado."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Arquivo de chave não tem chave '%s' no grupo '%s'" msgstr "Arquivo de chave não tem chave '%s' no grupo '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Arquivo de chave contém caractere de escape no fim da linha" msgstr "Arquivo de chave contém caractere de escape no fim da linha"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Arquivo de chave contém seqüência de escape '%s' inválida" msgstr "Arquivo de chave contém seqüência de escape '%s' inválida"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "O valor '%s' não pode ser interpretado como um número." msgstr "O valor '%s' não pode ser interpretado como um número."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Valor inteiro '%s' fora dos limites" msgstr "Valor inteiro '%s' fora dos limites"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "O valor '%s' não pode ser interpretado como um número." msgstr "O valor '%s' não pode ser interpretado como um número."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "O valor '%s' não pode ser interpretado como um booleano." msgstr "O valor '%s' não pode ser interpretado como um booleano."

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-03-12 22:19+0200\n" "PO-Revision-Date: 2006-03-12 22:19+0200\n"
"Last-Translator: Mişu Moldovan <dumol@gnome.ro>\n" "Last-Translator: Mişu Moldovan <dumol@gnome.ro>\n"
"Language-Team: Română <gnomero-list@lists.sourceforge.net>\n" "Language-Team: Română <gnomero-list@lists.sourceforge.net>\n"
@@ -51,35 +51,35 @@ msgstr "Nu s-a găsit un fişier cheie în directoarele de date"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -193,7 +193,7 @@ msgstr "Nu s-a putut deschide fişierul „%s”: fdopen() a eşuat: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Nu s-a putut redenumi fişierul „%s” în „%s”: g_rename() a eşuat: %s" msgstr "Nu s-a putut redenumi fişierul „%s” în „%s”: g_rename() a eşuat: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Nu s-a putut crea fişierul „%s”: %s" msgstr "Nu s-a putut crea fişierul „%s”: %s"
@@ -219,22 +219,22 @@ msgstr "Nu s-a putut închide fişierul „%s”: fclose() a eşuat: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Fişierul existent „%s” nu a putut fi şters: g_unlink() a eşuat: %s" msgstr "Fişierul existent „%s” nu a putut fi şters: g_unlink() a eşuat: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Şablonul „%s” este invalid, n-ar trebui să conţină un „%s”" msgstr "Şablonul „%s” este invalid, n-ar trebui să conţină un „%s”"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Şablonul „%s” nu se termină cu XXXXXX" msgstr "Şablonul „%s” nu se termină cu XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Nu s-a putut citi legătura simbolică „%s”: %s" msgstr "Nu s-a putut citi legătura simbolică „%s”: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Legăturile simbolice nu sunt suportate" msgstr "Legăturile simbolice nu sunt suportate"
@@ -748,29 +748,29 @@ msgstr "Fişierul cheie nu începe cu un grup"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Fişierul cheie are o codare nesuportată de tip „%s”" msgstr "Fişierul cheie are o codare nesuportată de tip „%s”"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Fişierul cheie nu are grupul „%s”" msgstr "Fişierul cheie nu are grupul „%s”"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Fişierul cheie nu are cheie „%s”" msgstr "Fişierul cheie nu are cheie „%s”"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "Fişierul cheie conţine cheia „%s” cu valoarea „%s” care nu este UTF-8" msgstr "Fişierul cheie conţine cheia „%s” cu valoarea „%s” care nu este UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "Fişierul cheie conţine cheia „%s” care are o valoare neinterpretabilă." msgstr "Fişierul cheie conţine cheia „%s” care are o valoare neinterpretabilă."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -779,37 +779,37 @@ msgstr ""
"Fişierul cheie conţine cheia „%s” în grupul „%s” care are o valoare ce nu " "Fişierul cheie conţine cheia „%s” în grupul „%s” care are o valoare ce nu "
"poate fi interpretată" "poate fi interpretată"
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Fişierul cheie nu are cheia „%s” în grupul „%s”" msgstr "Fişierul cheie nu are cheia „%s” în grupul „%s”"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Fişieul cheie conţine caractere „escape” la sfârşit de linie" msgstr "Fişieul cheie conţine caractere „escape” la sfârşit de linie"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "URI-ul „%s” conţine secvenţe „escaped” invalide" msgstr "URI-ul „%s” conţine secvenţe „escaped” invalide"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Valoarea „%s” nu poate fi interpretată ca un număr." msgstr "Valoarea „%s” nu poate fi interpretată ca un număr."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Valoarea întregului „%s” este în afara limitelor" msgstr "Valoarea întregului „%s” este în afara limitelor"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Valoarea „%s” nu poate fi interpretată ca un număr." msgstr "Valoarea „%s” nu poate fi interpretată ca un număr."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Valoarea „%s” nu poate fi interpretată ca o valoare booleană." msgstr "Valoarea „%s” nu poate fi interpretată ca o valoare booleană."

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD\n" "Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-02-01 18:37+0200\n" "PO-Revision-Date: 2006-02-01 18:37+0200\n"
"Last-Translator: Leonid Kanter <leon@asplinux.ru>\n" "Last-Translator: Leonid Kanter <leon@asplinux.ru>\n"
"Language-Team: Russian <gnome-cyr@gnome.org>\n" "Language-Team: Russian <gnome-cyr@gnome.org>\n"
@@ -55,35 +55,35 @@ msgstr "Не удается найти действительный файл к
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -203,7 +203,7 @@ msgstr "Сбой при открытии файла \"%s\": сбой в функ
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Не удается переименовать файл '%s' в '%s': сбой функции g_rename(): %s" msgstr "Не удается переименовать файл '%s' в '%s': сбой функции g_rename(): %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Произошёл сбой при создании файла \"%s\": %s" msgstr "Произошёл сбой при создании файла \"%s\": %s"
@@ -228,22 +228,22 @@ msgstr "Не удается закрыть файл \"%s\": сбой в функ
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Существующий файл '%s' не может быть удалён: сбой g_unlink(): %s" msgstr "Существующий файл '%s' не может быть удалён: сбой g_unlink(): %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Шаблон \"%s\" недопустим: он не должен содержать \"%s\"" msgstr "Шаблон \"%s\" недопустим: он не должен содержать \"%s\""
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Шаблон \"%s\" не заканчивается на XXXXXX" msgstr "Шаблон \"%s\" не заканчивается на XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Произошёл сбой при чтении символической ссылки \"%s\": %s" msgstr "Произошёл сбой при чтении символической ссылки \"%s\": %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Символические ссылки не поддерживаются" msgstr "Символические ссылки не поддерживаются"
@@ -764,32 +764,32 @@ msgstr "Файл ключа не начинается с группы"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Файл ключа содержит неподдерживаемую кодировку '%s'" msgstr "Файл ключа содержит неподдерживаемую кодировку '%s'"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Файл ключей не имеет группы '%s'" msgstr "Файл ключей не имеет группы '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Файл ключа не содержит ключ '%s'" msgstr "Файл ключа не содержит ключ '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
"Файл ключа содержит ключ '%s', значение которого '%s' не в кодировке UTF-8" "Файл ключа содержит ключ '%s', значение которого '%s' не в кодировке UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Файл ключа содержит ключ '%s', значение которого не может быть " "Файл ключа содержит ключ '%s', значение которого не может быть "
"интерпретировано." "интерпретировано."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -798,37 +798,37 @@ msgstr ""
"Файл ключа содержит ключ '%s' в группе '%s', значение которого не может быть " "Файл ключа содержит ключ '%s' в группе '%s', значение которого не может быть "
"интерпретировано." "интерпретировано."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Файл ключа не имеет ключа '%s' в группе '%s'" msgstr "Файл ключа не имеет ключа '%s' в группе '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Файл ключа содержит символ escape в конце файла" msgstr "Файл ключа содержит символ escape в конце файла"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Файл ключа содержит неверную escape-последовательность '%s'" msgstr "Файл ключа содержит неверную escape-последовательность '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Значение '%s' не может быть интерпретировано как числовое." msgstr "Значение '%s' не может быть интерпретировано как числовое."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Целое значение '%s' выходит за пределы" msgstr "Целое значение '%s' выходит за пределы"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Значение '%s' не может быть интерпретировано как числовое." msgstr "Значение '%s' не может быть интерпретировано как числовое."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Значение '%s' не может быть интерпретировано как булево." msgstr "Значение '%s' не может быть интерпретировано как булево."

View File

@@ -15,7 +15,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.12\n" "Project-Id-Version: glib 2.12\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2005-03-28 19:34-0700\n" "PO-Revision-Date: 2005-03-28 19:34-0700\n"
"Last-Translator: Steve Murphy <murf@e-tools.com>\n" "Last-Translator: Steve Murphy <murf@e-tools.com>\n"
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n" "Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
@@ -57,35 +57,35 @@ msgstr "Urufunguzo IDOSIYE OYA Byabonetse in Ibyatanzwe"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -200,7 +200,7 @@ msgstr "Kuri Gufungura IDOSIYE Byanze"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Kuri Guhindura izina IDOSIYE Kuri Byanze" msgstr "Kuri Guhindura izina IDOSIYE Kuri Byanze"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, fuzzy, c-format #, fuzzy, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Kuri Kurema IDOSIYE" msgstr "Kuri Kurema IDOSIYE"
@@ -225,22 +225,22 @@ msgstr "Kuri Gufunga IDOSIYE Byanze"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "IDOSIYE OYA Cyavanyweho Byanze" msgstr "IDOSIYE OYA Cyavanyweho Byanze"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, fuzzy, c-format #, fuzzy, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Sibyo OYA a" msgstr "Sibyo OYA a"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, fuzzy, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Impera Na:" msgstr "Impera Na:"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, fuzzy, c-format #, fuzzy, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Kuri Gusoma Ihuza" msgstr "Kuri Gusoma Ihuza"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, fuzzy, c-format #, fuzzy, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "amahuza OYA" msgstr "amahuza OYA"
@@ -733,66 +733,66 @@ msgstr "IDOSIYE OYA Gutangira Na: a Itsinda"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "IDOSIYE Kirimo Imisobekere:" msgstr "IDOSIYE Kirimo Imisobekere:"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, fuzzy, c-format #, fuzzy, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "IDOSIYE OYA Itsinda" msgstr "IDOSIYE OYA Itsinda"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, fuzzy, c-format #, fuzzy, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "IDOSIYE OYA Urufunguzo" msgstr "IDOSIYE OYA Urufunguzo"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, fuzzy, c-format #, fuzzy, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "IDOSIYE Kirimo Urufunguzo Na: Agaciro ni OYA 8" msgstr "IDOSIYE Kirimo Urufunguzo Na: Agaciro ni OYA 8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, fuzzy, c-format #, fuzzy, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "IDOSIYE Kirimo Urufunguzo Agaciro" msgstr "IDOSIYE Kirimo Urufunguzo Agaciro"
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, fuzzy, c-format #, fuzzy, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "IDOSIYE Kirimo Urufunguzo in Itsinda Agaciro" msgstr "IDOSIYE Kirimo Urufunguzo in Itsinda Agaciro"
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, fuzzy, c-format #, fuzzy, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "IDOSIYE OYA Urufunguzo in Itsinda" msgstr "IDOSIYE OYA Urufunguzo in Itsinda"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, fuzzy, c-format #, fuzzy, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "IDOSIYE Kirimo Inyuguti ku Impera Bya Umurongo" msgstr "IDOSIYE Kirimo Inyuguti ku Impera Bya Umurongo"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, fuzzy, c-format #, fuzzy, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "IDOSIYE Kirimo Sibyo" msgstr "IDOSIYE Kirimo Sibyo"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Nka a Umubare" msgstr "Nka a Umubare"
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, fuzzy, c-format #, fuzzy, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Agaciro kugirango Inyuma Bya Urutonde" msgstr "Agaciro kugirango Inyuma Bya Urutonde"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Nka a Umubare" msgstr "Nka a Umubare"
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Nka a Icyungo" msgstr "Nka a Icyungo"

View File

@@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2005-10-16 19:30+0200\n" "PO-Revision-Date: 2005-10-16 19:30+0200\n"
"Last-Translator: Marcel Telka <marcel@telka.sk>\n" "Last-Translator: Marcel Telka <marcel@telka.sk>\n"
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n" "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
@@ -56,35 +56,35 @@ msgstr "Nepodarilo sa nájsť platný súbor kľúčov v dátových adresároch"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -199,7 +199,7 @@ msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "" msgstr ""
"Nepodarilo sa premenovať súbor '%s' na '%s': funkcia g_rename() zlyhala: %s" "Nepodarilo sa premenovať súbor '%s' na '%s': funkcia g_rename() zlyhala: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Nepodarilo sa vytvoriť súbor '%s': %s" msgstr "Nepodarilo sa vytvoriť súbor '%s': %s"
@@ -226,22 +226,22 @@ msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
"Existujúci súbor '%s' nemohol byť odstránený: funkcia g_unlink() zlyhala: %s" "Existujúci súbor '%s' nemohol byť odstránený: funkcia g_unlink() zlyhala: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Šablóna '%s' je neplatná, nesmie obsahovať '%s'" msgstr "Šablóna '%s' je neplatná, nesmie obsahovať '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Šablóna '%s' nekončí XXXXXX" msgstr "Šablóna '%s' nekončí XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Nepodarilo sa prečítať symbolický odkaz '%s': %s" msgstr "Nepodarilo sa prečítať symbolický odkaz '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Symbolické odkazy nepodporované" msgstr "Symbolické odkazy nepodporované"
@@ -737,31 +737,31 @@ msgstr "Súbor kľúčov nezačína skupinou"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Súbor kľúčov obsahuje nepodporované kódovane '%s'" msgstr "Súbor kľúčov obsahuje nepodporované kódovane '%s'"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Súbor kľúčov nemá skupinu '%s'" msgstr "Súbor kľúčov nemá skupinu '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Súbor kľúčov nemá kľúč '%s'" msgstr "Súbor kľúčov nemá kľúč '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "Súbor kľúčov obsahuje kľúč '%s' s hodnotou '%s', ktorá nie je UTF-8" msgstr "Súbor kľúčov obsahuje kľúč '%s' s hodnotou '%s', ktorá nie je UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Súbor kľúčov obsahuje kľúč '%s', ktorý má hodnotu, ktorá nemohla byť " "Súbor kľúčov obsahuje kľúč '%s', ktorý má hodnotu, ktorá nemohla byť "
"interpretovaná." "interpretovaná."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -770,37 +770,37 @@ msgstr ""
"Súbor kľúčov obsahuje kľúč '%s', v skupine '%s', ktorý má hodnotu, ktorá " "Súbor kľúčov obsahuje kľúč '%s', v skupine '%s', ktorý má hodnotu, ktorá "
"nemohla byť interpretovaná." "nemohla byť interpretovaná."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Súbor kľúčov nemá kľúč '%s' v skupine '%s'" msgstr "Súbor kľúčov nemá kľúč '%s' v skupine '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Súbor kľúčov obsahuje znak escape na konci riadku" msgstr "Súbor kľúčov obsahuje znak escape na konci riadku"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Súbor kľúčov obsahuje neplatne zadanú sekvenciu '%s'" msgstr "Súbor kľúčov obsahuje neplatne zadanú sekvenciu '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Hodnota '%s' nemohla byť interpretovaná ako číslo." msgstr "Hodnota '%s' nemohla byť interpretovaná ako číslo."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Celočíselná hodnota '%s' je mimo rozsah" msgstr "Celočíselná hodnota '%s' je mimo rozsah"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Hodnota '%s' nemohla byť interpretovaná ako číslo." msgstr "Hodnota '%s' nemohla byť interpretovaná ako číslo."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Hodnota '%s' nemohla byť interpretovaná ako boolovská." msgstr "Hodnota '%s' nemohla byť interpretovaná ako boolovská."

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2001-02-16 12:30+0200\n" "PO-Revision-Date: 2001-02-16 12:30+0200\n"
"Last-Translator: Andraz Tori <andraz.tori1@guest.arnes.si>\n" "Last-Translator: Andraz Tori <andraz.tori1@guest.arnes.si>\n"
"Language-Team: Slovenian <sl@li.org>\n" "Language-Team: Slovenian <sl@li.org>\n"
@@ -50,35 +50,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -192,7 +192,7 @@ msgstr "Nisem uspel odpreti datoteke '%s': fdopen() ni uspel: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Nisem uspel odpreti datoteke '%s': fdopen() ni uspel: %s" msgstr "Nisem uspel odpreti datoteke '%s': fdopen() ni uspel: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Nisem uspel ustvariti datoteke '%s' %s" msgstr "Nisem uspel ustvariti datoteke '%s' %s"
@@ -217,22 +217,22 @@ msgstr "Nisem uspel odpreti datoteke '%s': fdopen() ni uspel: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Šablona '%s' je neveljavna, ne bi smela vsebovati '%s'" msgstr "Šablona '%s' je neveljavna, ne bi smela vsebovati '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Šablona '%s' se ne konča z XXXXXX" msgstr "Šablona '%s' se ne konča z XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, fuzzy, c-format #, fuzzy, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Nisem uspel ustvariti datoteke '%s' %s" msgstr "Nisem uspel ustvariti datoteke '%s' %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "" msgstr ""
@@ -730,66 +730,66 @@ msgstr ""
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, fuzzy, c-format #, fuzzy, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "URI '%s' vsebuje neveljavne ubežne znake" msgstr "URI '%s' vsebuje neveljavne ubežne znake"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "" msgstr ""

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib HEAD\n" "Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-01-30 10:58+0100\n" "PO-Revision-Date: 2006-01-30 10:58+0100\n"
"Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n" "Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n"
"Language-Team: Albanian <gnome-albanian-perkthyesit@lists.sourceforge.net>\n" "Language-Team: Albanian <gnome-albanian-perkthyesit@lists.sourceforge.net>\n"
@@ -50,35 +50,35 @@ msgstr "Nuk u gjet asnjë file i vlefshëm kyçi tek directory e të dhënave"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -193,7 +193,7 @@ msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "" msgstr ""
"Ndryshimi i emrit të file nga '%s' në '%s' dështoi: g_rename() dështoi: %s" "Ndryshimi i emrit të file nga '%s' në '%s' dështoi: g_rename() dështoi: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Dështoi krijimi i file '%s': %s" msgstr "Dështoi krijimi i file '%s': %s"
@@ -218,22 +218,22 @@ msgstr "Mbyllja e file '%s' dështoi: fclose() dështoi: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "E pamundur heqja e file ekzistues '%s': g_unlink() dështoi: %s" msgstr "E pamundur heqja e file ekzistues '%s': g_unlink() dështoi: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Shabllon '%s' i pavlefshëm, nuk mund të përmbajë një '%s'" msgstr "Shabllon '%s' i pavlefshëm, nuk mund të përmbajë një '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Shablloni '%s' nuk mbaron me XXXXXX" msgstr "Shablloni '%s' nuk mbaron me XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "I pamundur leximi i lidhjes simbolike '%s': %s" msgstr "I pamundur leximi i lidhjes simbolike '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Lidhjet simbolike nuk suportohen" msgstr "Lidhjet simbolike nuk suportohen"
@@ -748,29 +748,29 @@ msgstr "File i kyçit nuk fillon me një grup"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "File i kyçit përmban kodifikimin e pasuportuar '%s'" msgstr "File i kyçit përmban kodifikimin e pasuportuar '%s'"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "File i kyçit nuk ka grupin '%s'" msgstr "File i kyçit nuk ka grupin '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "File i kyçit nuk përmban kyçin '%s'" msgstr "File i kyçit nuk përmban kyçin '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "File i kyçit përmban kyçin '%s' me vlerë '%s' që nuk është në UTF-8" msgstr "File i kyçit përmban kyçin '%s' me vlerë '%s' që nuk është në UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "File i kyçit përmban kyçin '%s' që ka një vlerë të painterpretueshme." msgstr "File i kyçit përmban kyçin '%s' që ka një vlerë të painterpretueshme."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -779,37 +779,37 @@ msgstr ""
"File i kyçit përmban kyçin '%s' në grupin '%s' që ka një vlerë të " "File i kyçit përmban kyçin '%s' në grupin '%s' që ka një vlerë të "
"painterpretueshme." "painterpretueshme."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "File i kyçit nuk ka kyçin '%s' në grupin '%s'" msgstr "File i kyçit nuk ka kyçin '%s' në grupin '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "File i kyçit përmban simbolin escape në fund të rreshtit" msgstr "File i kyçit përmban simbolin escape në fund të rreshtit"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "File i kyçit përmban sekuencën e pavlefshme escape '%s'" msgstr "File i kyçit përmban sekuencën e pavlefshme escape '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Vlera '%s' nuk mund të interpretohet si një numër." msgstr "Vlera '%s' nuk mund të interpretohet si një numër."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Vlera integruese '%s' është jashtë kufirit" msgstr "Vlera integruese '%s' është jashtë kufirit"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Vlera '%s' nuk mund të interpretohet si një numër." msgstr "Vlera '%s' nuk mund të interpretohet si një numër."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Vlera '%s' nuk mund të interpretohet si një boolean." msgstr "Vlera '%s' nuk mund të interpretohet si një boolean."

View File

@@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2.8\n" "Project-Id-Version: 2.8\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-01-31 23:39+0100\n" "PO-Revision-Date: 2006-01-31 23:39+0100\n"
"Last-Translator: Слободан Д. Средојевић <slobo@akrep.be>\n" "Last-Translator: Слободан Д. Средојевић <slobo@akrep.be>\n"
"Language-Team: Serbian (sr) <gnom@prevod.org>\n" "Language-Team: Serbian (sr) <gnom@prevod.org>\n"
@@ -54,35 +54,35 @@ msgstr "Не могу да нађем исправну датотеку са к
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -198,7 +198,7 @@ msgstr "Не могу да отворим датотеку „%s“: неусп
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Не могу да преименујем датотеку „%s“ у „%s“: неуспешан g_rename(): %s" msgstr "Не могу да преименујем датотеку „%s“ у „%s“: неуспешан g_rename(): %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Не могу да направим датотеку „%s“: %s" msgstr "Не могу да направим датотеку „%s“: %s"
@@ -223,22 +223,22 @@ msgstr "Не могу да затворим датотеку „%s“: неус
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Постојећа датотека „%s“ се не може уклонити: неуспешан g_unlink(): %s" msgstr "Постојећа датотека „%s“ се не може уклонити: неуспешан g_unlink(): %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Неисправан шаблон „%s“, не сме садржати „%s“" msgstr "Неисправан шаблон „%s“, не сме садржати „%s“"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Шаблон „%s“ се не завршава са XXXXXX" msgstr "Шаблон „%s“ се не завршава са XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Не могу да прочитам симболичку везу „%s“: %s" msgstr "Не могу да прочитам симболичку везу „%s“: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Симболичке везе нису подржане" msgstr "Симболичке везе нису подржане"
@@ -741,29 +741,29 @@ msgstr "Датотека са кључевима не почиње групом"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Датотека са кључевима садржи неподржано кодирање „%s“" msgstr "Датотека са кључевима садржи неподржано кодирање „%s“"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Датотека са кључевима нема групу „%s“" msgstr "Датотека са кључевима нема групу „%s“"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Датотека са кључевима нема кључ „%s“" msgstr "Датотека са кључевима нема кључ „%s“"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "Датотека са кључевима садржи кључ „%s“ вредности „%s“ што није УТФ-8" msgstr "Датотека са кључевима садржи кључ „%s“ вредности „%s“ што није УТФ-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "Датотека са кључевима садржи кључ „%s“ неразумљиве вредности." msgstr "Датотека са кључевима садржи кључ „%s“ неразумљиве вредности."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -771,37 +771,37 @@ msgid ""
msgstr "" msgstr ""
"Датотека са кључевима садржи кључ „%s“ у групи „%s“ неразумљиве вредности." "Датотека са кључевима садржи кључ „%s“ у групи „%s“ неразумљиве вредности."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Датотека са кључевима не садржи кључ „%s“ у групи „%s“" msgstr "Датотека са кључевима не садржи кључ „%s“ у групи „%s“"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Датотека са кључевима садржи знак истицања на крају реда" msgstr "Датотека са кључевима садржи знак истицања на крају реда"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Датотека са кључевима садржи недозвољен низ истицања „%s“" msgstr "Датотека са кључевима садржи недозвољен низ истицања „%s“"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Вредност „%s“ се не може сматрати бројем." msgstr "Вредност „%s“ се не може сматрати бројем."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Целобројна вредност „%s“ је изван опсега" msgstr "Целобројна вредност „%s“ је изван опсега"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Вредност „%s“ се не може сматрати бројем." msgstr "Вредност „%s“ се не може сматрати бројем."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Вредност „%s“ се не може сматрати истинитосном." msgstr "Вредност „%s“ се не може сматрати истинитосном."

View File

@@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2.8\n" "Project-Id-Version: 2.8\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-01-31 23:39+0100\n" "PO-Revision-Date: 2006-01-31 23:39+0100\n"
"Last-Translator: Slobodan D. Sredojević <slobo@akrep.be>\n" "Last-Translator: Slobodan D. Sredojević <slobo@akrep.be>\n"
"Language-Team: Serbian (sr) <gnom@prevod.org>\n" "Language-Team: Serbian (sr) <gnom@prevod.org>\n"
@@ -54,35 +54,35 @@ msgstr "Ne mogu da nađem ispravnu datoteku sa ključevima među podacima"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -198,7 +198,7 @@ msgstr "Ne mogu da otvorim datoteku „%s“: neuspešan fdopen(): %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Ne mogu da preimenujem datoteku „%s“ u „%s“: neuspešan g_rename(): %s" msgstr "Ne mogu da preimenujem datoteku „%s“ u „%s“: neuspešan g_rename(): %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Ne mogu da napravim datoteku „%s“: %s" msgstr "Ne mogu da napravim datoteku „%s“: %s"
@@ -223,22 +223,22 @@ msgstr "Ne mogu da zatvorim datoteku „%s“: neuspešan fclose(): %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Postojeća datoteka „%s“ se ne može ukloniti: neuspešan g_unlink(): %s" msgstr "Postojeća datoteka „%s“ se ne može ukloniti: neuspešan g_unlink(): %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Neispravan šablon „%s“, ne sme sadržati „%s“" msgstr "Neispravan šablon „%s“, ne sme sadržati „%s“"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Šablon „%s“ se ne završava sa XXXXXX" msgstr "Šablon „%s“ se ne završava sa XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Ne mogu da pročitam simboličku vezu „%s“: %s" msgstr "Ne mogu da pročitam simboličku vezu „%s“: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Simboličke veze nisu podržane" msgstr "Simboličke veze nisu podržane"
@@ -741,29 +741,29 @@ msgstr "Datoteka sa ključevima ne počinje grupom"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Datoteka sa ključevima sadrži nepodržano kodiranje „%s“" msgstr "Datoteka sa ključevima sadrži nepodržano kodiranje „%s“"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Datoteka sa ključevima nema grupu „%s“" msgstr "Datoteka sa ključevima nema grupu „%s“"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Datoteka sa ključevima nema ključ „%s“" msgstr "Datoteka sa ključevima nema ključ „%s“"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "Datoteka sa ključevima sadrži ključ „%s“ vrednosti „%s“ što nije UTF-8" msgstr "Datoteka sa ključevima sadrži ključ „%s“ vrednosti „%s“ što nije UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "Datoteka sa ključevima sadrži ključ „%s“ nerazumljive vrednosti." msgstr "Datoteka sa ključevima sadrži ključ „%s“ nerazumljive vrednosti."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -771,37 +771,37 @@ msgid ""
msgstr "" msgstr ""
"Datoteka sa ključevima sadrži ključ „%s“ u grupi „%s“ nerazumljive vrednosti." "Datoteka sa ključevima sadrži ključ „%s“ u grupi „%s“ nerazumljive vrednosti."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Datoteka sa ključevima ne sadrži ključ „%s“ u grupi „%s“" msgstr "Datoteka sa ključevima ne sadrži ključ „%s“ u grupi „%s“"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Datoteka sa ključevima sadrži znak isticanja na kraju reda" msgstr "Datoteka sa ključevima sadrži znak isticanja na kraju reda"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Datoteka sa ključevima sadrži nedozvoljen niz isticanja „%s“" msgstr "Datoteka sa ključevima sadrži nedozvoljen niz isticanja „%s“"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Vrednost „%s“ se ne može smatrati brojem." msgstr "Vrednost „%s“ se ne može smatrati brojem."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Celobrojna vrednost „%s“ je izvan opsega" msgstr "Celobrojna vrednost „%s“ je izvan opsega"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Vrednost „%s“ se ne može smatrati brojem." msgstr "Vrednost „%s“ se ne može smatrati brojem."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Vrednost „%s“ se ne može smatrati istinitosnom." msgstr "Vrednost „%s“ se ne može smatrati istinitosnom."

View File

@@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2.4\n" "Project-Id-Version: 2.4\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2004-04-29 01:11+0200\n" "PO-Revision-Date: 2004-04-29 01:11+0200\n"
"Last-Translator: Bojan Suzic <bojans@teol.net>\n" "Last-Translator: Bojan Suzic <bojans@teol.net>\n"
"Language-Team: Serbian (sr) <serbiagnome-lista@nongnu.org>\n" "Language-Team: Serbian (sr) <serbiagnome-lista@nongnu.org>\n"
@@ -52,35 +52,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -197,7 +197,7 @@ msgstr "Не могу да отворим датотеку „%s“: неусп
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Не могу да отворим датотеку „%s“: неуспјешан fdopen(): %s" msgstr "Не могу да отворим датотеку „%s“: неуспјешан fdopen(): %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Не могу да направим датотеку „%s“: %s" msgstr "Не могу да направим датотеку „%s“: %s"
@@ -222,22 +222,22 @@ msgstr "Не могу да отворим датотеку „%s“: неусп
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Неисправан шаблон „%s“, не смије садржати „%s“" msgstr "Неисправан шаблон „%s“, не смије садржати „%s“"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Шаблон „%s“ се не завршава са XXXXXX" msgstr "Шаблон „%s“ се не завршава са XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Не могу да прочитам симболичку везу „%s“: %s" msgstr "Не могу да прочитам симболичку везу „%s“: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Симболичке везе нису подржане" msgstr "Симболичке везе нису подржане"
@@ -742,66 +742,66 @@ msgstr ""
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, fuzzy, c-format #, fuzzy, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Адреса „%s“ садржи неисправно назначене знаке" msgstr "Адреса „%s“ садржи неисправно назначене знаке"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "" msgstr ""

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-03-07 13:17+0100\n" "PO-Revision-Date: 2006-03-07 13:17+0100\n"
"Last-Translator: Daniel Nylander <po@danielnylander.se>\n" "Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n" "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
@@ -53,35 +53,35 @@ msgstr "Giltig nyckelfil kunde inte hittas i datakataloger"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -200,7 +200,7 @@ msgstr ""
"Misslyckades med att byta namn på filen \"%s\" till \"%s\": g_rename() " "Misslyckades med att byta namn på filen \"%s\" till \"%s\": g_rename() "
"misslyckades: %s" "misslyckades: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Misslyckades med att skapa filen \"%s\": %s" msgstr "Misslyckades med att skapa filen \"%s\": %s"
@@ -228,22 +228,22 @@ msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
"Befintliga filen \"%s\" kunde inte tas bort: g_unlink() misslyckades: %s" "Befintliga filen \"%s\" kunde inte tas bort: g_unlink() misslyckades: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Mallen \"%s\" är ogiltig, den får inte innehålla ett \"%s\"" msgstr "Mallen \"%s\" är ogiltig, den får inte innehålla ett \"%s\""
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Mallen \"%s\" slutar inte med XXXXXX" msgstr "Mallen \"%s\" slutar inte med XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Misslyckades med att läsa den symboliska länken \"%s\": %s" msgstr "Misslyckades med att läsa den symboliska länken \"%s\": %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Symboliska länkar stöds inte" msgstr "Symboliska länkar stöds inte"
@@ -754,31 +754,31 @@ msgstr "Nyckelfilen börjar inte med en grupp"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Nyckelfilen innehåller kodningen \"%s\" som inte stöds" msgstr "Nyckelfilen innehåller kodningen \"%s\" som inte stöds"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Nyckelfilen har inte gruppen \"%s\"" msgstr "Nyckelfilen har inte gruppen \"%s\""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Nyckelfilen har inte nyckeln \"%s\"" msgstr "Nyckelfilen har inte nyckeln \"%s\""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
"Nyckelfilen innehåller nyckeln \"%s\" med värdet \"%s\" som inte är UTF-8" "Nyckelfilen innehåller nyckeln \"%s\" med värdet \"%s\" som inte är UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Nyckelfilen innehåller nyckeln \"%s\" som har värde som inte kan tolkas." "Nyckelfilen innehåller nyckeln \"%s\" som har värde som inte kan tolkas."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -787,37 +787,37 @@ msgstr ""
"Nyckelfilen innehåller nyckeln \"%s\" i gruppen \"%s\" som har värde som " "Nyckelfilen innehåller nyckeln \"%s\" i gruppen \"%s\" som har värde som "
"inte kan tolkas." "inte kan tolkas."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Nyckelfilen har inte nyckeln \"%s\" i gruppen \"%s\"" msgstr "Nyckelfilen har inte nyckeln \"%s\" i gruppen \"%s\""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Nyckelfilen innehåller kontrolltecken i slutet på en rad" msgstr "Nyckelfilen innehåller kontrolltecken i slutet på en rad"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Nyckelfilen innehåller ogiltiga kontrollsekvensen \"%s\"" msgstr "Nyckelfilen innehåller ogiltiga kontrollsekvensen \"%s\""
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Värdet \"%s\" kan inte tolkas som ett tal." msgstr "Värdet \"%s\" kan inte tolkas som ett tal."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Heltalsvärdet \"%s\" är utanför intervallet" msgstr "Heltalsvärdet \"%s\" är utanför intervallet"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Värdet \"%s\" kan inte tolkas som ett tal." msgstr "Värdet \"%s\" kan inte tolkas som ett tal."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Värdet \"%s\" kan inte tolkas som ett booleskt värde." msgstr "Värdet \"%s\" kan inte tolkas som ett booleskt värde."

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD.ta\n" "Project-Id-Version: glib.HEAD.ta\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-06-07 18:04+0530\n" "PO-Revision-Date: 2006-06-07 18:04+0530\n"
"Last-Translator: Felix <ifelix@redhat.com>\n" "Last-Translator: Felix <ifelix@redhat.com>\n"
"Language-Team: Tamil <ta@li.org>\n" "Language-Team: Tamil <ta@li.org>\n"
@@ -53,35 +53,35 @@ msgstr "தரவு அடைவுகளில் சரியான புத
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "URI '%s' க்கு ஏற்கனவே புத்தகக்குறி உள்ளது" msgstr "URI '%s' க்கு ஏற்கனவே புத்தகக்குறி உள்ளது"
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "URIக்கு புத்தகக்குறி எதுவும் இல்லை '%s'" msgstr "URIக்கு புத்தகக்குறி எதுவும் இல்லை '%s'"
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI '%s'க்கு MIME வகை எதுவும் புத்தகக்குறியில் குறிப்பிடப்படவில்லை" msgstr "URI '%s'க்கு MIME வகை எதுவும் புத்தகக்குறியில் குறிப்பிடப்படவில்லை"
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI '%s'க்கு புத்தகக்குறியில் தனிபட்ட கொடி எதுவும் குறிப்பிடப்படவில்லை" msgstr "URI '%s'க்கு புத்தகக்குறியில் தனிபட்ட கொடி எதுவும் குறிப்பிடப்படவில்லை"
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "URI '%s'க்கான புத்தகக்குறியில் குழுக்கள் எதுவும் அமைக்கப்படவில்லை" msgstr "URI '%s'க்கான புத்தகக்குறியில் குழுக்கள் எதுவும் அமைக்கப்படவில்லை"
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "'%s' பெயரிலுள்ள பயன்பாடு '%s'க்கு ஒரு புத்தகக்குறியை பதிவு செய்தது" msgstr "'%s' பெயரிலுள்ள பயன்பாடு '%s'க்கு ஒரு புத்தகக்குறியை பதிவு செய்தது"
@@ -195,7 +195,7 @@ msgstr "'%s' கோப்பை திறக்க முடியவில்
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "'%s'கோப்பினை '%s'க்கு மறுபெயரிட முடியவில்லை: g_rename() செயலிழந்தது: %s" msgstr "'%s'கோப்பினை '%s'க்கு மறுபெயரிட முடியவில்லை: g_rename() செயலிழந்தது: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "'%s' கோப்பை படைக்க முடியவில்லை: %s" msgstr "'%s' கோப்பை படைக்க முடியவில்லை: %s"
@@ -220,22 +220,22 @@ msgstr "'%s'கோப்பினை மூட முடியவில்லை
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "இருக்கும் கோப்பு '%s' ஐ நீக்க முடியாது: g_unlink() செயலிழந்தது: %s" msgstr "இருக்கும் கோப்பு '%s' ஐ நீக்க முடியாது: g_unlink() செயலிழந்தது: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "'%s' படிம அச்சு செல்லுபடியாகாதது; அதனில் '%s' இருக்கக் கூடாது" msgstr "'%s' படிம அச்சு செல்லுபடியாகாதது; அதனில் '%s' இருக்கக் கூடாது"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "'%s' படிம அச்சு XXXXXX கொண்டு முடிவதில்லை" msgstr "'%s' படிம அச்சு XXXXXX கொண்டு முடிவதில்லை"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "'%s' என்பதன்-குறுக்கம் இணைப்பை வாசிக்க முடியவில்லை: %s" msgstr "'%s' என்பதன்-குறுக்கம் இணைப்பை வாசிக்க முடியவில்லை: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "என்பதன்-குறுக்கம் இணைப்புகளுக்கு ஆதரவு கிடையாது" msgstr "என்பதன்-குறுக்கம் இணைப்புகளுக்கு ஆதரவு கிடையாது"
@@ -735,29 +735,29 @@ msgstr "விசை கோப்பு ஒரு குழுவாக ஆர
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "விசை கோப்பு துணையில்லாத குறிமுறையை கொண்டுள்ளது '%s'" msgstr "விசை கோப்பு துணையில்லாத குறிமுறையை கொண்டுள்ளது '%s'"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "விசை கோப்பு குழுவினை கொண்டிருக்கவில்லை '%s'" msgstr "விசை கோப்பு குழுவினை கொண்டிருக்கவில்லை '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr " '%s' விசையை விசை கோப்பு கொண்டிருக்கவில்லை" msgstr " '%s' விசையை விசை கோப்பு கொண்டிருக்கவில்லை"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr " '%s'மதிப்பினை உடைய '%s'விசை விசை கோப்பு கொண்டுள்ளது, இது UTF-8 அல்ல" msgstr " '%s'மதிப்பினை உடைய '%s'விசை விசை கோப்பு கொண்டுள்ளது, இது UTF-8 அல்ல"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "%s'விசையை விசை கோப்பு கொண்டுள்ளது அது கொண்டுள்ள மதிப்பினை மாற்ற முடியாது." msgstr "%s'விசையை விசை கோப்பு கொண்டுள்ளது அது கொண்டுள்ள மதிப்பினை மாற்ற முடியாது."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -766,37 +766,37 @@ msgstr ""
"'%s'குழுவில் %s'விசையை விசை கோப்பு கொண்டுள்ளது அது கொண்டுள்ள மதிப்பினை மாற்ற " "'%s'குழுவில் %s'விசையை விசை கோப்பு கொண்டுள்ளது அது கொண்டுள்ள மதிப்பினை மாற்ற "
"முடியாது." "முடியாது."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "'%s' குழுவில் '%s' விசையை விசை கோப்பு கொண்டிருக்கவில்லை" msgstr "'%s' குழுவில் '%s' விசையை விசை கோப்பு கொண்டிருக்கவில்லை"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "கடைசி வரியில் விசை கோப்பு விடுபடு எழுத்தினை கொண்டுள்ளது" msgstr "கடைசி வரியில் விசை கோப்பு விடுபடு எழுத்தினை கொண்டுள்ளது"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "விசை கோப்பு தவறான விடுபடு வரிசையை கொண்டுள்ளது '%s'" msgstr "விசை கோப்பு தவறான விடுபடு வரிசையை கொண்டுள்ளது '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "மதிப்பு '%s' ஒரு எண்ணாக செயல்பட முடியாது." msgstr "மதிப்பு '%s' ஒரு எண்ணாக செயல்பட முடியாது."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "இயல் எண் மதிப்பு '%s' வரையறையை தாண்டியுள்ளது" msgstr "இயல் எண் மதிப்பு '%s' வரையறையை தாண்டியுள்ளது"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "மதிப்பு '%s' தசம எண்ணாக செயல்பட முடியாது." msgstr "மதிப்பு '%s' தசம எண்ணாக செயல்பட முடியாது."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "மதிப்பு '%s' பூலியனாக செயல்பட முடியாது." msgstr "மதிப்பு '%s' பூலியனாக செயல்பட முடியாது."

View File

@@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: GLIB\n" "Project-Id-Version: GLIB\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2004-12-13 20:16+0100\n" "PO-Revision-Date: 2004-12-13 20:16+0100\n"
"Last-Translator: రమణ సాయి <rmn_sai@yahoo.com>\n" "Last-Translator: రమణ సాయి <rmn_sai@yahoo.com>\n"
"Language-Team: Free Software Foundation, Andhra Pradesh <fsfap@gnu.org.in>\n" "Language-Team: Free Software Foundation, Andhra Pradesh <fsfap@gnu.org.in>\n"
@@ -52,35 +52,35 @@ msgstr " సరియైన మీటదస్త్రం దత్తాంశ
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -194,7 +194,7 @@ msgstr "దస్త్రం '%s' తెరుచుటలో విఫలమ
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "దస్త్రం '%s' తెరుచుటలో విఫలమైనారు: ఎఫ్ డిఓపన్() విఫలమైనది: %s" msgstr "దస్త్రం '%s' తెరుచుటలో విఫలమైనారు: ఎఫ్ డిఓపన్() విఫలమైనది: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr " '%s' దస్త్రమును సృష్టించుటలో విఫలమయినావు. :%s" msgstr " '%s' దస్త్రమును సృష్టించుటలో విఫలమయినావు. :%s"
@@ -219,22 +219,22 @@ msgstr "దస్త్రం '%s' తెరుచుటలో విఫలమ
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr " '%s' మాదిరి, '%s' కలిగియుండలెదు. " msgstr " '%s' మాదిరి, '%s' కలిగియుండలెదు. "
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr " '%s' మాదిరి XXXXXX అంతం అవలేదు. " msgstr " '%s' మాదిరి XXXXXX అంతం అవలేదు. "
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr " '%s' చిహ్న పూరితజోడి చదువుటలో విఫలమయినావు : %s" msgstr " '%s' చిహ్న పూరితజోడి చదువుటలో విఫలమయినావు : %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "చిహ్న పూరితజోడి సహకరించలెదు. " msgstr "చిహ్న పూరితజోడి సహకరించలెదు. "
@@ -719,29 +719,29 @@ msgstr " మీట దస్త్రం సముదాయంతో ప్ర
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr " మీట దస్త్రం కలిగియున్న సంకేతరచన '%s' సహకరించదు " msgstr " మీట దస్త్రం కలిగియున్న సంకేతరచన '%s' సహకరించదు "
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr " మీట దస్త్రం సముదాయం '%s' ను కలిగియుండలేదు " msgstr " మీట దస్త్రం సముదాయం '%s' ను కలిగియుండలేదు "
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "మీట దస్త్రం '%s' తాళంను కలిగియుండలేదు. " msgstr "మీట దస్త్రం '%s' తాళంను కలిగియుండలేదు. "
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "'%s' మీట దస్త్రం యొక్క మీటను కలిగియున్నది,దాని విలువ '%s' యుటిఫ్-8 " msgstr "'%s' మీట దస్త్రం యొక్క మీటను కలిగియున్నది,దాని విలువ '%s' యుటిఫ్-8 "
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "'%s' మీట దస్త్రం యొక్క మీట ను కలిగియున్నది,దాని విలువను చదువుటకు సాధ్యపడదు." msgstr "'%s' మీట దస్త్రం యొక్క మీట ను కలిగియున్నది,దాని విలువను చదువుటకు సాధ్యపడదు."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -749,37 +749,37 @@ msgid ""
msgstr "" msgstr ""
"'%s' మీట దస్త్రం యొక్క మీట ను గ్రూప్ '%s' లో కలిగియున్నది,దాని విలువను చదువుటకు సాధ్యపడదు." "'%s' మీట దస్త్రం యొక్క మీట ను గ్రూప్ '%s' లో కలిగియున్నది,దాని విలువను చదువుటకు సాధ్యపడదు."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "'%s' మీట దస్త్రం యొక్క మీట ను గ్రూప్ '%s' లో కలిగియుండలేదు " msgstr "'%s' మీట దస్త్రం యొక్క మీట ను గ్రూప్ '%s' లో కలిగియుండలేదు "
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr " మీట దస్త్రం గీత చివర ఎస్పేప్ అక్షరము కలదు" msgstr " మీట దస్త్రం గీత చివర ఎస్పేప్ అక్షరము కలదు"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr " '%s' మీట దస్త్రం నిస్సారమైన ఎస్పేప్ వరుస కలదు " msgstr " '%s' మీట దస్త్రం నిస్సారమైన ఎస్పేప్ వరుస కలదు "
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "'%s' విలువను సంఖ్య గా చదువుటకు సాధ్యపడదు." msgstr "'%s' విలువను సంఖ్య గా చదువుటకు సాధ్యపడదు."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, fuzzy, c-format #, fuzzy, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr " పూర్ణాంకం విలువ '%s' లో విస్రృతి లో లేని %s " msgstr " పూర్ణాంకం విలువ '%s' లో విస్రృతి లో లేని %s "
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "'%s' విలువను సంఖ్య గా చదువుటకు సాధ్యపడదు." msgstr "'%s' విలువను సంఖ్య గా చదువుటకు సాధ్యపడదు."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "%s' విలువను బులియన్ గా చదువుటకు సాధ్యపడదు." msgstr "%s' విలువను బులియన్ గా చదువుటకు సాధ్యపడదు."

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.7.1\n" "Project-Id-Version: glib 2.7.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-17 10:55+0700\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-06-17 10:58+0700\n" "PO-Revision-Date: 2006-06-17 10:58+0700\n"
"Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n" "Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n"
"Language-Team: Thai <l10n@opentle.org>\n" "Language-Team: Thai <l10n@opentle.org>\n"
@@ -16,14 +16,14 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n" "Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: glib/gbookmarkfile.c:716 glib/gbookmarkfile.c:793 #: glib/gbookmarkfile.c:716 glib/gbookmarkfile.c:793 glib/gbookmarkfile.c:872
#: glib/gbookmarkfile.c:872 glib/gbookmarkfile.c:919 #: glib/gbookmarkfile.c:919
#, c-format #, c-format
msgid "Unexpected attribute '%s' for element '%s'" msgid "Unexpected attribute '%s' for element '%s'"
msgstr "พบแอตทริบิวต์ '%s' ที่ไม่ต้องการ สำหรับอิลิเมนต์ '%s'" msgstr "พบแอตทริบิวต์ '%s' ที่ไม่ต้องการ สำหรับอิลิเมนต์ '%s'"
#: glib/gbookmarkfile.c:727 glib/gbookmarkfile.c:804 #: glib/gbookmarkfile.c:727 glib/gbookmarkfile.c:804 glib/gbookmarkfile.c:814
#: glib/gbookmarkfile.c:814 glib/gbookmarkfile.c:930 #: glib/gbookmarkfile.c:930
#, c-format #, c-format
msgid "Attribute '%s' of element '%s' not found" msgid "Attribute '%s' of element '%s' not found"
msgstr "ไม่พบแอตทริบิวต์ '%s' สำหรับอิลิเมนต์ '%s'" msgstr "ไม่พบแอตทริบิวต์ '%s' สำหรับอิลิเมนต์ '%s'"
@@ -41,6 +41,7 @@ msgid "Unexpected tag '%s' inside '%s'"
msgstr "พบแท็ก '%s' ที่ไม่ต้องการภายใน '%s'" msgstr "พบแท็ก '%s' ที่ไม่ต้องการภายใน '%s'"
#: glib/gbookmarkfile.c:1792 #: glib/gbookmarkfile.c:1792
#, c-format
msgid "No valid bookmark file was be found in data dirs" msgid "No valid bookmark file was be found in data dirs"
msgstr "ไม่พบแฟ้มที่คั่นหน้าที่ใช้การได้ในไดเรกทอรีข้อมูล" msgstr "ไม่พบแฟ้มที่คั่นหน้าที่ใช้การได้ในไดเรกทอรีข้อมูล"
@@ -95,6 +96,7 @@ msgstr "ไม่สามารถเปิดตัวแปลงรหัส
#: glib/gconvert.c:602 glib/gconvert.c:991 glib/giochannel.c:1322 #: glib/gconvert.c:602 glib/gconvert.c:991 glib/giochannel.c:1322
#: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943 #: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943
#: glib/gutf8.c:1392 #: glib/gutf8.c:1392
#, c-format
msgid "Invalid byte sequence in conversion input" msgid "Invalid byte sequence in conversion input"
msgstr "มีลำดับไบต์ที่ไม่ถูกต้องในข้อมูลที่ป้อนให้ตัวแปลงรหัส" msgstr "มีลำดับไบต์ที่ไม่ถูกต้องในข้อมูลที่ป้อนให้ตัวแปลงรหัส"
@@ -104,8 +106,9 @@ msgstr "มีลำดับไบต์ที่ไม่ถูกต้อง
msgid "Error during conversion: %s" msgid "Error during conversion: %s"
msgstr "เกิดข้อผิดพลาดระหว่างแปลงรหัส: %s" msgstr "เกิดข้อผิดพลาดระหว่างแปลงรหัส: %s"
#: glib/gconvert.c:643 glib/gutf8.c:939 glib/gutf8.c:1143 #: glib/gconvert.c:643 glib/gutf8.c:939 glib/gutf8.c:1143 glib/gutf8.c:1284
#: glib/gutf8.c:1284 glib/gutf8.c:1388 #: glib/gutf8.c:1388
#, c-format
msgid "Partial character sequence at end of input" msgid "Partial character sequence at end of input"
msgstr "มีลำดับไบต์ไม่เต็มอักขระอยู่ที่ท้ายข้อมูลเข้า" msgstr "มีลำดับไบต์ไม่เต็มอักขระอยู่ที่ท้ายข้อมูลเข้า"
@@ -145,6 +148,7 @@ msgid "The pathname '%s' is not an absolute path"
msgstr "ชื่อพาธ '%s' ไม่ใช่พาธเต็ม" msgstr "ชื่อพาธ '%s' ไม่ใช่พาธเต็ม"
#: glib/gconvert.c:1862 #: glib/gconvert.c:1862
#, c-format
msgid "Invalid hostname" msgid "Invalid hostname"
msgstr "ชื่อโฮสต์ผิดรูปแบบ" msgstr "ชื่อโฮสต์ผิดรูปแบบ"
@@ -229,6 +233,7 @@ msgid "Failed to read the symbolic link '%s': %s"
msgstr "อ่านลิงก์สัญลักษณ์ '%s' ไม่สำเร็จ: %s" msgstr "อ่านลิงก์สัญลักษณ์ '%s' ไม่สำเร็จ: %s"
#: glib/gfileutils.c:1875 #: glib/gfileutils.c:1875
#, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "ไม่สนับสนุนลิงก์สัญลักษณ์" msgstr "ไม่สนับสนุนลิงก์สัญลักษณ์"
@@ -238,19 +243,22 @@ msgid "Could not open converter from '%s' to '%s': %s"
msgstr "ไม่สามารถเปิดตัวแปลงรหัสอักขระจาก '%s' ไปเป็น '%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" msgid "Can't do a raw read in g_io_channel_read_line_string"
msgstr "ไม่สามารถอ่านข้อมูลแบบดิบใน g_io_channel_read_line_string" msgstr "ไม่สามารถอ่านข้อมูลแบบดิบใน g_io_channel_read_line_string"
#: glib/giochannel.c:1546 glib/giochannel.c:1803 #: glib/giochannel.c:1546 glib/giochannel.c:1803 glib/giochannel.c:1889
#: glib/giochannel.c:1889 #, c-format
msgid "Leftover unconverted data in read buffer" msgid "Leftover unconverted data in read buffer"
msgstr "มีข้อมูลตกค้างไม่ได้แปลงอยู่ในบัฟเฟอร์สำหรับอ่าน" msgstr "มีข้อมูลตกค้างไม่ได้แปลงอยู่ในบัฟเฟอร์สำหรับอ่าน"
#: 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" msgid "Channel terminates in a partial character"
msgstr "แชนเนลจบด้วยข้อมูลไม่เต็มอักขระ" 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" msgid "Can't do a raw read in g_io_channel_read_to_end"
msgstr "ไม่สามารถอ่านข้อมูลแบบดิบใน g_io_channel_read_to_end" msgstr "ไม่สามารถอ่านข้อมูลแบบดิบใน g_io_channel_read_to_end"
@@ -468,10 +476,12 @@ msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "เอกสารจบแบบผิดปกติระหว่างกลางหมายเหตุหรือคำสั่งประมวลผล" msgstr "เอกสารจบแบบผิดปกติระหว่างกลางหมายเหตุหรือคำสั่งประมวลผล"
#: glib/gshell.c:70 #: glib/gshell.c:70
#, c-format
msgid "Quoted text doesn't begin with a quotation mark" msgid "Quoted text doesn't begin with a quotation mark"
msgstr "ข้อความคำพูดไม่ได้ขึ้นต้นด้วยอัญประกาศ" msgstr "ข้อความคำพูดไม่ได้ขึ้นต้นด้วยอัญประกาศ"
#: glib/gshell.c:160 #: glib/gshell.c:160
#, c-format
msgid "Unmatched quotation mark in command line or other shell-quoted text" msgid "Unmatched quotation mark in command line or other shell-quoted text"
msgstr "พบอัญประกาศไม่เข้าคู่ในบรรทัดคำสั่งหรือข้อความคำพูดของเชลล์" msgstr "พบอัญประกาศไม่เข้าคู่ในบรรทัดคำสั่งหรือข้อความคำพูดของเชลล์"
@@ -486,10 +496,12 @@ msgid "Text ended before matching quote was found for %c. (The text was '%s')"
msgstr "ข้อความจบเสียก่อนจะพบอัญประกาศที่เข้าคู่กับ %c (ข้อความที่ว่าคือ '%s')" msgstr "ข้อความจบเสียก่อนจะพบอัญประกาศที่เข้าคู่กับ %c (ข้อความที่ว่าคือ '%s')"
#: glib/gshell.c:557 #: glib/gshell.c:557
#, c-format
msgid "Text was empty (or contained only whitespace)" msgid "Text was empty (or contained only whitespace)"
msgstr "ข้อความว่างเปล่า (หรือมีแต่อักขระช่องว่าง)" msgstr "ข้อความว่างเปล่า (หรือมีแต่อักขระช่องว่าง)"
#: glib/gspawn-win32.c:273 #: glib/gspawn-win32.c:273
#, c-format
msgid "Failed to read data from child process" msgid "Failed to read data from child process"
msgstr "อ่านข้อมูลจากโพรเซสลูกไม่สำเร็จ" msgstr "อ่านข้อมูลจากโพรเซสลูกไม่สำเร็จ"
@@ -518,22 +530,19 @@ msgstr "ดำเนินงานโพรเซสลูกไม่สำเ
msgid "Invalid program name: %s" msgid "Invalid program name: %s"
msgstr "ชื่อโปรแกรมผิดรูปแบบ: %s" msgstr "ชื่อโปรแกรมผิดรูปแบบ: %s"
#: glib/gspawn-win32.c:478 glib/gspawn-win32.c:534 #: glib/gspawn-win32.c:478 glib/gspawn-win32.c:534 glib/gspawn-win32.c:777
#: glib/gspawn-win32.c:777 glib/gspawn-win32.c:832 #: glib/gspawn-win32.c:832 glib/gspawn-win32.c:1367
#: glib/gspawn-win32.c:1367
#, c-format #, c-format
msgid "Invalid string in argument vector at %d: %s" msgid "Invalid string in argument vector at %d: %s"
msgstr "สตริงผิดรูปแบบในเวกเตอร์ของอาร์กิวเมนต์ที่ตำแหน่ง %d: %s" msgstr "สตริงผิดรูปแบบในเวกเตอร์ของอาร์กิวเมนต์ที่ตำแหน่ง %d: %s"
#: glib/gspawn-win32.c:489 glib/gspawn-win32.c:545 #: glib/gspawn-win32.c:489 glib/gspawn-win32.c:545 glib/gspawn-win32.c:791
#: glib/gspawn-win32.c:791 glib/gspawn-win32.c:845 #: glib/gspawn-win32.c:845 glib/gspawn-win32.c:1400
#: glib/gspawn-win32.c:1400
#, c-format #, c-format
msgid "Invalid string in environment: %s" msgid "Invalid string in environment: %s"
msgstr "สตริงผิดรูปแบบในตัวแปรสภาพแวดล้อม: %s" msgstr "สตริงผิดรูปแบบในตัวแปรสภาพแวดล้อม: %s"
#: glib/gspawn-win32.c:773 glib/gspawn-win32.c:828 #: glib/gspawn-win32.c:773 glib/gspawn-win32.c:828 glib/gspawn-win32.c:1348
#: glib/gspawn-win32.c:1348
#, c-format #, c-format
msgid "Invalid working directory: %s" msgid "Invalid working directory: %s"
msgstr "ไดเรกทอรีใช้งานมีรูปแบบไม่ถูกต้อง: %s" msgstr "ไดเรกทอรีใช้งานมีรูปแบบไม่ถูกต้อง: %s"
@@ -544,6 +553,7 @@ msgid "Failed to execute helper program (%s)"
msgstr "ดำเนินงานโปรแกรมช่วยไม่สำเร็จ (%s)" msgstr "ดำเนินงานโปรแกรมช่วยไม่สำเร็จ (%s)"
#: glib/gspawn-win32.c:1087 #: glib/gspawn-win32.c:1087
#, c-format
msgid "" msgid ""
"Unexpected error in g_io_channel_win32_poll() reading data from a child " "Unexpected error in g_io_channel_win32_poll() reading data from a child "
"process" "process"
@@ -596,15 +606,18 @@ msgid "Failed to read enough data from child pid pipe (%s)"
msgstr "อ่านข้อมูลจากไปป์จากโพรเซสลูกได้ไม่เพียงพอ (%s)" msgstr "อ่านข้อมูลจากไปป์จากโพรเซสลูกได้ไม่เพียงพอ (%s)"
#: glib/gutf8.c:1017 #: glib/gutf8.c:1017
#, c-format
msgid "Character out of range for UTF-8" msgid "Character out of range for UTF-8"
msgstr "อักขระอยู่นอกช่วงของ UTF-8" msgstr "อักขระอยู่นอกช่วงของ UTF-8"
#: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 #: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 glib/gutf8.c:1261
#: glib/gutf8.c:1261 glib/gutf8.c:1402 glib/gutf8.c:1498 #: glib/gutf8.c:1402 glib/gutf8.c:1498
#, c-format
msgid "Invalid sequence in conversion input" msgid "Invalid sequence in conversion input"
msgstr "มีลำดับข้อมูลที่ไม่ถูกต้องในข้อมูลที่ป้อนให้ตัวแปลงรหัส" 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" msgid "Character out of range for UTF-16"
msgstr "อักขระอยู่นอกช่วงของ UTF-16" msgstr "อักขระอยู่นอกช่วงของ UTF-16"
@@ -668,14 +681,17 @@ msgid "Unknown option %s"
msgstr "ไม่รู้จักตัวเลือก %s" msgstr "ไม่รู้จักตัวเลือก %s"
#: glib/gkeyfile.c:337 #: glib/gkeyfile.c:337
#, c-format
msgid "Valid key file could not be found in data dirs" msgid "Valid key file could not be found in data dirs"
msgstr "ไม่พบแฟ้มคีย์ในไดเรกทอรีข้อมูลทั้งหลาย" msgstr "ไม่พบแฟ้มคีย์ในไดเรกทอรีข้อมูลทั้งหลาย"
#: glib/gkeyfile.c:372 #: glib/gkeyfile.c:372
#, c-format
msgid "Not a regular file" msgid "Not a regular file"
msgstr "ไม่ใช่แฟ้มปกติ" msgstr "ไม่ใช่แฟ้มปกติ"
#: glib/gkeyfile.c:380 #: glib/gkeyfile.c:380
#, c-format
msgid "File is empty" msgid "File is empty"
msgstr "แฟ้มว่างเปล่า" msgstr "แฟ้มว่างเปล่า"
@@ -686,6 +702,7 @@ msgid ""
msgstr "แฟ้มคีย์มีบรรทัด '%s' ซึ่งไม่ใช่รูปแบบคู่คีย์-ค่า, กลุ่ม, หรือหมายเหตุ ที่ถูกต้อง" msgstr "แฟ้มคีย์มีบรรทัด '%s' ซึ่งไม่ใช่รูปแบบคู่คีย์-ค่า, กลุ่ม, หรือหมายเหตุ ที่ถูกต้อง"
#: glib/gkeyfile.c:763 #: glib/gkeyfile.c:763
#, c-format
msgid "Key file does not start with a group" msgid "Key file does not start with a group"
msgstr "แฟ้มคีย์ไม่ได้ขึ้นต้นด้วยกลุ่ม" msgstr "แฟ้มคีย์ไม่ได้ขึ้นต้นด้วยกลุ่ม"
@@ -729,6 +746,7 @@ msgid "Key file does not have key '%s' in group '%s'"
msgstr "แฟ้มคีย์ไม่มีคีย์ '%s' ในกลุ่ม '%s'" msgstr "แฟ้มคีย์ไม่มีคีย์ '%s' ในกลุ่ม '%s'"
#: glib/gkeyfile.c:3275 #: glib/gkeyfile.c:3275
#, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "แฟ้มคีย์มีอักขระหลีกที่ท้ายบรรทัด" msgstr "แฟ้มคีย์มีอักขระหลีกที่ท้ายบรรทัด"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2005-12-01 17:31+0800\n" "PO-Revision-Date: 2005-12-01 17:31+0800\n"
"Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n" "Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n"
"Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n" "Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n"
@@ -53,35 +53,35 @@ msgstr "Walang mahanap na talaksang susi sa mga dir ng datos"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -198,7 +198,7 @@ msgstr ""
"Bigo ang papalit ng pangalan ng talaksang '%s' sa '%s': bigo ang g_rename(): " "Bigo ang papalit ng pangalan ng talaksang '%s' sa '%s': bigo ang g_rename(): "
"%s" "%s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Sawi ang paglikha ng talaksang '%s': %s" msgstr "Sawi ang paglikha ng talaksang '%s': %s"
@@ -224,22 +224,22 @@ msgstr "Bigo ang pagsara ng talaksang '%s': bigo ang fclose(): %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Hindi matanggal ang talaksang '%s': bigo ang g_unlink(): %s" msgstr "Hindi matanggal ang talaksang '%s': bigo ang g_unlink(): %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Hindi tanggap ang template '%s', wala dapat na '%s'" msgstr "Hindi tanggap ang template '%s', wala dapat na '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Hindi XXXXXX ang dulo ng template '%s'" msgstr "Hindi XXXXXX ang dulo ng template '%s'"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Sawi ang pagbasa ng symbolic link '%s': %s" msgstr "Sawi ang pagbasa ng symbolic link '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Hindi suportado ang mga symbolic link" msgstr "Hindi suportado ang mga symbolic link"
@@ -766,32 +766,32 @@ msgstr "Ang talaksang susi ay hindi naguumpisa sa isang grupo"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Ang talaksang susi ay naglalaman ng hindi suportadong encoding '%s'" msgstr "Ang talaksang susi ay naglalaman ng hindi suportadong encoding '%s'"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Ang talaksang susi ay walang grupong '%s'" msgstr "Ang talaksang susi ay walang grupong '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Ang talaksang susi ay walang susing '%s'" msgstr "Ang talaksang susi ay walang susing '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
"Ang talaksang susi ay naglalaman ng susing '%s' na may halagang '%s' na " "Ang talaksang susi ay naglalaman ng susing '%s' na may halagang '%s' na "
"hindi UTF-8" "hindi UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Ang talaksang susi ay naglalaman ng susing '%s' na may halagang hindi mabasa." "Ang talaksang susi ay naglalaman ng susing '%s' na may halagang hindi mabasa."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -800,37 +800,37 @@ msgstr ""
"Ang talaksang susi ay naglalaman ng susing '%s' sa grupong '%s' na may " "Ang talaksang susi ay naglalaman ng susing '%s' sa grupong '%s' na may "
"halaga na hindi mabasa." "halaga na hindi mabasa."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Ang talaksang susi ay walang susing '%s' sa grupong '%s'" msgstr "Ang talaksang susi ay walang susing '%s' sa grupong '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Ang talaksang susi ay may escape karakter sa dulo ng linya" msgstr "Ang talaksang susi ay may escape karakter sa dulo ng linya"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Ang talaksang susi ay may hindi tanggap na escape sequence '%s'" msgstr "Ang talaksang susi ay may hindi tanggap na escape sequence '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Ang halagang '%s' ay hindi mabasa bilang numero." msgstr "Ang halagang '%s' ay hindi mabasa bilang numero."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Halagang integer '%s' ay wala sa sakop" msgstr "Halagang integer '%s' ay wala sa sakop"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Ang halagang '%s' ay hindi mabasa bilang numero." msgstr "Ang halagang '%s' ay hindi mabasa bilang numero."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Ang halagang '%s' ay hindi mabasa bilang boolean." msgstr "Ang halagang '%s' ay hindi mabasa bilang boolean."

View File

@@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2005-07-24 23:57+0300\n" "PO-Revision-Date: 2005-07-24 23:57+0300\n"
"Last-Translator: Onur Can CAKMAK <onur@uzem.itu.edu.tr>\n" "Last-Translator: Onur Can CAKMAK <onur@uzem.itu.edu.tr>\n"
"Language-Team: Turkish <gnome-turk@gnome.org>\n" "Language-Team: Turkish <gnome-turk@gnome.org>\n"
@@ -56,35 +56,35 @@ msgstr "Veri dizinlerinde geçerli anahtar dosyası bulunamadı"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -202,7 +202,7 @@ msgstr ""
"'%s' dosyasının adı '%s' olarak değiştirilirken hata: g_rename() " "'%s' dosyasının adı '%s' olarak değiştirilirken hata: g_rename() "
"başarısızlığı: %s" "başarısızlığı: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "'%s' dosyasını oluşturma başarısız: %s" msgstr "'%s' dosyasını oluşturma başarısız: %s"
@@ -227,22 +227,22 @@ msgstr "'%s' dosyası kapatılamadı: fclose() başarısızlığı: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Varolan dosya '%s' silinemedi: g_unlink() başarısızlığı: %s" msgstr "Varolan dosya '%s' silinemedi: g_unlink() başarısızlığı: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Şablon '%s' geçersiz, '%s' içermemeli" msgstr "Şablon '%s' geçersiz, '%s' içermemeli"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Şablon '%s' XXXXXX ile bitmiyor" msgstr "Şablon '%s' XXXXXX ile bitmiyor"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "'%s' sembolik bağını okuma başarısız: %s" msgstr "'%s' sembolik bağını okuma başarısız: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Sembolik bağlar desteklenmiyor" msgstr "Sembolik bağlar desteklenmiyor"
@@ -749,29 +749,29 @@ msgstr "Anahtar dosyası bir grupla başlamıyor"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Anahtar dosya geçersiz kodlama '%s' içeriyor" msgstr "Anahtar dosya geçersiz kodlama '%s' içeriyor"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Anahtar dosyasında '%s' grubu yok" msgstr "Anahtar dosyasında '%s' grubu yok"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Anahtar dosyasında '%s' anahtarı yok" msgstr "Anahtar dosyasında '%s' anahtarı yok"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "Anahtar dosyası UTF-8 olmayan '%s' anahtarını '%s' değeriyle içeriyor" msgstr "Anahtar dosyası UTF-8 olmayan '%s' anahtarını '%s' değeriyle içeriyor"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "Anahtar dosyası değeri yorumlanamayan '%s' değerini içeriyor." msgstr "Anahtar dosyası değeri yorumlanamayan '%s' değerini içeriyor."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -779,37 +779,37 @@ msgid ""
msgstr "" msgstr ""
"Anahtar dosyası, yorumlanamayan '%2$s' grubundaki '%1$s' anahtarını içeriyor." "Anahtar dosyası, yorumlanamayan '%2$s' grubundaki '%1$s' anahtarını içeriyor."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Anahtar dosyası '%2$s' grubunda '%1$s' anahtarı içermiyor" msgstr "Anahtar dosyası '%2$s' grubunda '%1$s' anahtarı içermiyor"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Anahtar dosyası satır sonunda çıkış karakteri içeriyor" msgstr "Anahtar dosyası satır sonunda çıkış karakteri içeriyor"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "URI '%s' geçersiz çıkış dizisi içeriyor" msgstr "URI '%s' geçersiz çıkış dizisi içeriyor"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "'%s' değeri bir sayı olarak yorumlanamıyor." msgstr "'%s' değeri bir sayı olarak yorumlanamıyor."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Tamsayı değeri '%s' aralık dışında" msgstr "Tamsayı değeri '%s' aralık dışında"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "'%s' değeri bir sayı olarak yorumlanamıyor." msgstr "'%s' değeri bir sayı olarak yorumlanamıyor."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "'%s' değeri bool değer olarak yorumlanamıyor." msgstr "'%s' değeri bool değer olarak yorumlanamıyor."

View File

@@ -5,7 +5,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: libgnome\n" "Project-Id-Version: libgnome\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2005-11-09 13:19+0300\n" "PO-Revision-Date: 2005-11-09 13:19+0300\n"
"Last-Translator: Albert Fazlí <tatarish.l10n@gmail.com>\n" "Last-Translator: Albert Fazlí <tatarish.l10n@gmail.com>\n"
"Language-Team: Tatarish <tatarish.l10n@gmail.com>\n" "Language-Team: Tatarish <tatarish.l10n@gmail.com>\n"
@@ -47,35 +47,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -189,7 +189,7 @@ msgstr "'%s' biremen açıp bulmadı: fdopen() uzmadı: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "'%s' birem adın '%s' itep üzgärtep bulmadı: g_rename() uzmadı: %s" msgstr "'%s' birem adın '%s' itep üzgärtep bulmadı: g_rename() uzmadı: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "'%s' biremen yasap bulmadı: %s" msgstr "'%s' biremen yasap bulmadı: %s"
@@ -214,22 +214,22 @@ msgstr "'%s' biremen yabıp bulmadı: fclose() uzmadı: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Barlıqtağı '%s' biremen beterep bulmadı: g_unlink() uzmadı: %s" msgstr "Barlıqtağı '%s' biremen beterep bulmadı: g_unlink() uzmadı: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "'%s' ürçetmäse yaraqsız, eçendä '%s' bula almí" msgstr "'%s' ürçetmäse yaraqsız, eçendä '%s' bula almí"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "'%s' ürçetmäneñ azağında XXXXXX tügel" msgstr "'%s' ürçetmäneñ azağında XXXXXX tügel"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "" msgstr ""
@@ -694,66 +694,66 @@ msgstr "Açqıç bireme törkem belän başlanmí"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Açqıç biremendä '%s' digän totılmağan bilgelämä" msgstr "Açqıç biremendä '%s' digän totılmağan bilgelämä"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Açqıç biremendä '%s' törkeme yuq" msgstr "Açqıç biremendä '%s' törkeme yuq"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Açqıç biremendä '%s' açqıçı yuq" msgstr "Açqıç biremendä '%s' açqıçı yuq"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Açqıç biremendäge '%2$s' törkemendä '%1$s' açqıçı yuq" msgstr "Açqıç biremendäge '%2$s' törkemendä '%1$s' açqıçı yuq"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "'%s' digän bäyäsen san itep tanıp bulmí." msgstr "'%s' digän bäyäsen san itep tanıp bulmí."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "'%s' digän tulısan bäyäse çiktän çıqtı" msgstr "'%s' digän tulısan bäyäse çiktän çıqtı"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "'%s' digän bäyäsen san itep tanıp bulmí." msgstr "'%s' digän bäyäsen san itep tanıp bulmí."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "'%s' digän bäyäsen yuqbar itep tanıp bulmí." msgstr "'%s' digän bäyäsen yuqbar itep tanıp bulmí."

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-02-16 11:56--500\n" "PO-Revision-Date: 2006-02-16 11:56--500\n"
"Last-Translator: Maxim Dziumanenko <mvd@mylinux.ua>\n" "Last-Translator: Maxim Dziumanenko <mvd@mylinux.ua>\n"
"Language-Team: Ukrainian <uk@li.org>\n" "Language-Team: Ukrainian <uk@li.org>\n"
@@ -51,35 +51,35 @@ msgstr "Не вдається знайти правильний ключовий
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -195,7 +195,7 @@ msgstr "Помилка відкривання файлу \"%s\": помилка
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Помилка перейменування файлу \"%s\" на \"%s\": помилка g_rename(): %s" msgstr "Помилка перейменування файлу \"%s\" на \"%s\": помилка g_rename(): %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Помилка створення файлу \"%s\": %s" msgstr "Помилка створення файлу \"%s\": %s"
@@ -220,22 +220,22 @@ msgstr "Помилка закривання файлу \"%s\": помилка fc
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Не вдається видалити існуючий файл \"%s\": помилка g_unlink(): %s" msgstr "Не вдається видалити існуючий файл \"%s\": помилка g_unlink(): %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Шаблон \"%s\" неправильний, бо не може містити \"%s\"" msgstr "Шаблон \"%s\" неправильний, бо не може містити \"%s\""
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Шаблон \"%s\" не закінчується на XXXXXX" msgstr "Шаблон \"%s\" не закінчується на XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Помилка читання символічного посилання \"%s\": %s" msgstr "Помилка читання символічного посилання \"%s\": %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Символічні посилання не підтримуються" msgstr "Символічні посилання не підтримуються"
@@ -745,31 +745,31 @@ msgstr "Ключовий файл не починається з групи"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Ключовий фал містить кодування, що не підтримується '%s'" msgstr "Ключовий фал містить кодування, що не підтримується '%s'"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Ключовий файл не містить групи '%s'" msgstr "Ключовий файл не містить групи '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Ключовий файл не містить ключ '%s'" msgstr "Ключовий файл не містить ключ '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
"Ключовий файл містить ключ '%s' зі значенням '%s', кодування якого не UTF-8" "Ключовий файл містить ключ '%s' зі значенням '%s', кодування якого не UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Ключовий файл містить ключ '%s', що має значення, яке не вдається розібрати." "Ключовий файл містить ключ '%s', що має значення, яке не вдається розібрати."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -778,37 +778,37 @@ msgstr ""
"Ключовий файл містить '%s' у групі '%s', що має значення, яке неможливо " "Ключовий файл містить '%s' у групі '%s', що має значення, яке неможливо "
"розібрати." "розібрати."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Ключовий файл не містить ключ '%s' у групі '%s'" msgstr "Ключовий файл не містить ключ '%s' у групі '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Ключовий файл містить escape-символ наприкінці рядка" msgstr "Ключовий файл містить escape-символ наприкінці рядка"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Ключовий файл містить неправильну escape-послідовність '%s'" msgstr "Ключовий файл містить неправильну escape-послідовність '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Не вдається розібрати значення '%s' як число." msgstr "Не вдається розібрати значення '%s' як число."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Числове ціле значення '%s' поза межами діапазону" msgstr "Числове ціле значення '%s' поза межами діапазону"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Не вдається розібрати значення '%s' як число." msgstr "Не вдається розібрати значення '%s' як число."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Не вдається розібрати значення '%s' як логічне значення." msgstr "Не вдається розібрати значення '%s' як логічне значення."

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.9.2 Gnome HEAD\n" "Project-Id-Version: glib 2.9.2 Gnome HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-05-25 21:52+0930\n" "PO-Revision-Date: 2006-05-25 21:52+0930\n"
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n" "Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n" "Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n"
@@ -51,35 +51,35 @@ msgstr "Không tìm thấy tập tin Đánh dấu hợp lệ trong các thư m
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "Đánh dấu cho URI « %s » đã có" msgstr "Đánh dấu cho URI « %s » đã có"
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "Không tìm thấy tập tin Đánh dấu cho URI « %s »" msgstr "Không tìm thấy tập tin Đánh dấu cho URI « %s »"
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Chưa xác định kiểu MIME trong Đánh dấu cho URI « %s »" msgstr "Chưa xác định kiểu MIME trong Đánh dấu cho URI « %s »"
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Chưa xác định cờ riêng trong Đánh dấu cho URI « %s »" msgstr "Chưa xác định cờ riêng trong Đánh dấu cho URI « %s »"
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "Chưa đặt nhóm trong Đánh dấu cho URI « %s »" msgstr "Chưa đặt nhóm trong Đánh dấu cho URI « %s »"
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Không có ứng dụng tên « %s » đã đăng ký Đánh dấu cho « %s »" msgstr "Không có ứng dụng tên « %s » đã đăng ký Đánh dấu cho « %s »"
@@ -195,7 +195,7 @@ msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "" msgstr ""
"Không đổi tên tập tin « %s » thành « %s » được: « g_rename() » không được: %s" "Không đổi tên tập tin « %s » thành « %s » được: « g_rename() » không được: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Lỗi tạo tập tin« %s »: %s" msgstr "Lỗi tạo tập tin« %s »: %s"
@@ -220,22 +220,22 @@ msgstr "Không đóng tập tin « %s » được: « fclose() » không đượ
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Không thể gỡ bỏ tập tin tồn tại « %s »: « g_unlink() » thất bại: %s" msgstr "Không thể gỡ bỏ tập tin tồn tại « %s »: « g_unlink() » thất bại: %s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Biểu mẫu « %s » không hợp lệ, không nên chứa « %s »" msgstr "Biểu mẫu « %s » không hợp lệ, không nên chứa « %s »"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Biểu mẫu « %s » không kết thúc bằng XXXXXX" msgstr "Biểu mẫu « %s » không kết thúc bằng XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Lỗi đọc liên kết tượng trưng « %s »: %s" msgstr "Lỗi đọc liên kết tượng trưng « %s »: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Không hỗ trợ liên kết tượng trưng" msgstr "Không hỗ trợ liên kết tượng trưng"
@@ -750,29 +750,29 @@ msgstr "Tập tin khóa không bắt đầu với nhóm."
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Tập tin khóa chứa bảng mã không được hỗ trợ « %s »." msgstr "Tập tin khóa chứa bảng mã không được hỗ trợ « %s »."
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Tập tin khóa không có nhóm « %s »." msgstr "Tập tin khóa không có nhóm « %s »."
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Tập tin khóa không có khóa « %s »." msgstr "Tập tin khóa không có khóa « %s »."
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "Tập tin khóa chứa khóa « %s » có giá trị « %s » không phải là UTF-8." msgstr "Tập tin khóa chứa khóa « %s » có giá trị « %s » không phải là UTF-8."
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "Tập tin khóa chứa khóa « %s » có giá trị không có khả năng giải dịch." msgstr "Tập tin khóa chứa khóa « %s » có giá trị không có khả năng giải dịch."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -781,37 +781,37 @@ msgstr ""
"Tập tin khóa chứa khóa « %s » trong nhóm « %s » có giá trị không có khả năng " "Tập tin khóa chứa khóa « %s » trong nhóm « %s » có giá trị không có khả năng "
"giải dịch." "giải dịch."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Tập tin khóa không chứa khóa « %s » trong nhóm « %s »." msgstr "Tập tin khóa không chứa khóa « %s » trong nhóm « %s »."
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Tập tin khóa chứa ký tự thoạt tại kết thức dòng." msgstr "Tập tin khóa chứa ký tự thoạt tại kết thức dòng."
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "Tập tin khóa chứa sây thoát không hợp lệ « %s »." msgstr "Tập tin khóa chứa sây thoát không hợp lệ « %s »."
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Không thể giải dịch giá trị « %s » dạng con số." msgstr "Không thể giải dịch giá trị « %s » dạng con số."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Giá trị số nguyên « %s » ở ngoại phạm vị." msgstr "Giá trị số nguyên « %s » ở ngoại phạm vị."
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Không thể giải dịch giá trị « %s » dạng con số nổi." msgstr "Không thể giải dịch giá trị « %s » dạng con số nổi."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Không thể giải dịch giá trị « %s » dạng bun (đúng/sai)." msgstr "Không thể giải dịch giá trị « %s » dạng bun (đúng/sai)."

View File

@@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2004-05-03 14:40+0200\n" "PO-Revision-Date: 2004-05-03 14:40+0200\n"
"Last-Translator: Pablo Saratxaga <pablo@walon.org>\n" "Last-Translator: Pablo Saratxaga <pablo@walon.org>\n"
"Language-Team: Walloon <linux-wa@walon.org>\n" "Language-Team: Walloon <linux-wa@walon.org>\n"
@@ -54,35 +54,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -198,7 +198,7 @@ msgstr "Dji n' a savou drovi li fitchî «%s»: fdopen() a fwait berwete: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Dji n' a savou drovi li fitchî «%s»: fdopen() a fwait berwete: %s" msgstr "Dji n' a savou drovi li fitchî «%s»: fdopen() a fwait berwete: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Dji n' a savou askepyî l' fitchî «%s»: %s" msgstr "Dji n' a savou askepyî l' fitchî «%s»: %s"
@@ -223,22 +223,22 @@ msgstr "Dji n' a savou drovi li fitchî «%s»: fdopen() a fwait berwete: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Li patron «%s» n' est nén valide, i n' doet nén aveur on «%s»" msgstr "Li patron «%s» n' est nén valide, i n' doet nén aveur on «%s»"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Li patron «%s» èn finixh nén avou XXXXXX" msgstr "Li patron «%s» èn finixh nén avou XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Dji n' a savou lére li loyén simbolike «%s»: %s" msgstr "Dji n' a savou lére li loyén simbolike «%s»: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Loyéns simbolikes nén sopoirtés" msgstr "Loyéns simbolikes nén sopoirtés"
@@ -711,66 +711,66 @@ msgstr ""
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "" msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2005-02-08 12:31+0200\n" "PO-Revision-Date: 2005-02-08 12:31+0200\n"
"Last-Translator: Canonical Ltd <translations@canonical.com>\n" "Last-Translator: Canonical Ltd <translations@canonical.com>\n"
"Language-Team: Xhosa <xh-translate@ubuntu.com>\n" "Language-Team: Xhosa <xh-translate@ubuntu.com>\n"
@@ -53,35 +53,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -198,7 +198,7 @@ msgstr "Akuphumelelekanga ukuvula ifayili '%s': fdopen() akuphumelelekanga: %s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Akuphumelelekanga ukuvula ifayili '%s': fdopen() akuphumelelekanga: %s" msgstr "Akuphumelelekanga ukuvula ifayili '%s': fdopen() akuphumelelekanga: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "Akuphumelelekanga ukudala ifayili '%s': %s" msgstr "Akuphumelelekanga ukudala ifayili '%s': %s"
@@ -223,22 +223,22 @@ msgstr "Akuphumelelekanga ukuvula ifayili '%s': fdopen() akuphumelelekanga: %s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "I-Template '%s' ayisebenzi, kufuneka ingaqulathi i '%s'" msgstr "I-Template '%s' ayisebenzi, kufuneka ingaqulathi i '%s'"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "I-Template '%s' ayipheli ngo XXXXXX" msgstr "I-Template '%s' ayipheli ngo XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "Akuphumelelanga ukufunda ikhonkco elingumfuziselo '%s': %s" msgstr "Akuphumelelanga ukufunda ikhonkco elingumfuziselo '%s': %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "Ikhonkco elingumfuziselo alixhaswanga" msgstr "Ikhonkco elingumfuziselo alixhaswanga"
@@ -761,31 +761,31 @@ msgstr "Ifayili engundoqo ayiqali ngeqela"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "Ifayili engundoqo iqulethe unxulumano olungaxhaswanga '%s'" msgstr "Ifayili engundoqo iqulethe unxulumano olungaxhaswanga '%s'"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "Ifayili engundoqo ayinalo iqela '%s'" msgstr "Ifayili engundoqo ayinalo iqela '%s'"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "Ifayili engundoqo ayinalo iqhosha '%s'" msgstr "Ifayili engundoqo ayinalo iqhosha '%s'"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
"Ifayili engundoqo iqulethe iqhosa '%s' elinexabiso '%s' elingeyiyo UTF-8" "Ifayili engundoqo iqulethe iqhosa '%s' elinexabiso '%s' elingeyiyo UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
"Ifayili engundoqo iqulethe iqhosha '%s' elinexabiso elingekhe lichazwe." "Ifayili engundoqo iqulethe iqhosha '%s' elinexabiso elingekhe lichazwe."
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
@@ -794,38 +794,38 @@ msgstr ""
"Ifayili engundoqo iqulethe iqhosha '%s' kwiqela '%s' elinexabiso elingekhe " "Ifayili engundoqo iqulethe iqhosha '%s' kwiqela '%s' elinexabiso elingekhe "
"lichazwe." "lichazwe."
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "Ifayili engundoqo ayinalo iqhosha '%s' eqeleni '%s'" msgstr "Ifayili engundoqo ayinalo iqhosha '%s' eqeleni '%s'"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "Ifayili engundoqo iqulethe uphawu lokuphepha ekupheleni komgca" msgstr "Ifayili engundoqo iqulethe uphawu lokuphepha ekupheleni komgca"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "" msgstr ""
"Ifayili engundoqo iqulethe ulandelelwano olungasebenziyo lokuphepha '%s'" "Ifayili engundoqo iqulethe ulandelelwano olungasebenziyo lokuphepha '%s'"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "Ixabiso '%s' alinakho ukuchazwa njengenani." msgstr "Ixabiso '%s' alinakho ukuchazwa njengenani."
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, fuzzy, c-format #, fuzzy, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "Ixabiso lenani elimbaxa '%s' le %s lingaphaya kwesigaba" msgstr "Ixabiso lenani elimbaxa '%s' le %s lingaphaya kwesigaba"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Ixabiso '%s' alinakho ukuchazwa njengenani." msgstr "Ixabiso '%s' alinakho ukuchazwa njengenani."
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Ixabiso '%s' alinakho ukuchazwa njenge-boolean." msgstr "Ixabiso '%s' alinakho ukuchazwa njenge-boolean."

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1.0\n" "Project-Id-Version: 1.0\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2003-03-19\n" "PO-Revision-Date: 2003-03-19\n"
"Last-Translator: Raphael Finkel <raphael@cs.uky.edu>\n" "Last-Translator: Raphael Finkel <raphael@cs.uky.edu>\n"
"Language-Team: Yiddish <raphael@cs.uky.edu>\n" "Language-Team: Yiddish <raphael@cs.uky.edu>\n"
@@ -50,35 +50,35 @@ msgstr ""
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -192,7 +192,7 @@ msgstr "ניט געקענט עפֿענען טעקע %s: fdopen() איז דורכ
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "ניט געקענט עפֿענען טעקע %s: fdopen() איז דורכגעפֿאַלן: %s" msgstr "ניט געקענט עפֿענען טעקע %s: fdopen() איז דורכגעפֿאַלן: %s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "ניט געקענט שאַפֿן טעקע %s: %s" msgstr "ניט געקענט שאַפֿן טעקע %s: %s"
@@ -217,22 +217,22 @@ msgstr "ניט געקענט עפֿענען טעקע %s: fdopen() איז דורכ
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "" msgstr ""
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "מוסטער %s אומלעקסיק, טאָר ניט כּולל זײַן %s" msgstr "מוסטער %s אומלעקסיק, טאָר ניט כּולל זײַן %s"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "מוסטער %s ענדיקט זיך ניט מיט XXXXXX" msgstr "מוסטער %s ענדיקט זיך ניט מיט XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, fuzzy, c-format #, fuzzy, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "ניט געקענט שאַפֿן טעקע %s: %s" msgstr "ניט געקענט שאַפֿן טעקע %s: %s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "" msgstr ""
@@ -736,66 +736,66 @@ msgstr ""
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "" msgstr ""
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "" msgstr ""
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, fuzzy, c-format #, fuzzy, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "דער URI %s איז כּולל אומלעקסיקע פּליטה־כאַראַקטערס" msgstr "דער URI %s איז כּולל אומלעקסיקע פּליטה־כאַראַקטערס"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "" msgstr ""
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "" msgstr ""
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "" msgstr ""

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-05-02 13:02+0800\n" "PO-Revision-Date: 2006-05-02 13:02+0800\n"
"Last-Translator: He Qiangqiang <carton@263.net>\n" "Last-Translator: He Qiangqiang <carton@263.net>\n"
"Language-Team: zh_CN <i18n-translation@lists.linux.net.cn>\n" "Language-Team: zh_CN <i18n-translation@lists.linux.net.cn>\n"
@@ -49,35 +49,35 @@ msgstr "无法在数据目录中找到有效的书签文件"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "URI“%s”的书签已经存在" msgstr "URI“%s”的书签已经存在"
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "未找到 URI“%s”的书签" msgstr "未找到 URI“%s”的书签"
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI“%s”的书签未定义 MIME 类型" msgstr "URI“%s”的书签未定义 MIME 类型"
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI“%s”的书签未定义私有标志" msgstr "URI“%s”的书签未定义私有标志"
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "URI“%s”的书签未设定组" msgstr "URI“%s”的书签未设定组"
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "没有名为“%s”的应用程序为“%s”注册书签" msgstr "没有名为“%s”的应用程序为“%s”注册书签"
@@ -191,7 +191,7 @@ msgstr "打开文件“%s”失败fdopen() 失败:%s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "将文件“%s”重命名为“%s”失败g_rename() 失败:%s" msgstr "将文件“%s”重命名为“%s”失败g_rename() 失败:%s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "创建文件“%s”失败%s" msgstr "创建文件“%s”失败%s"
@@ -216,22 +216,22 @@ msgstr "关闭文件“%s”失败fclose() 失败:%s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "无法删除已有文件“%s”g_unlink() 失败:%s" msgstr "无法删除已有文件“%s”g_unlink() 失败:%s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "模板“%s”无效不应该包含“%s”" msgstr "模板“%s”无效不应该包含“%s”"
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "模板“%s”的结尾不是 XXXXXX" msgstr "模板“%s”的结尾不是 XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "读取符号连接“%s”失败%s" msgstr "读取符号连接“%s”失败%s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "不支持符号连接" msgstr "不支持符号连接"
@@ -704,66 +704,66 @@ msgstr "键文件不以组开始"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "键文件包含不支持的编码“%s”" msgstr "键文件包含不支持的编码“%s”"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "键文件没有组“%s”" msgstr "键文件没有组“%s”"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "键文件没有键“%s”" msgstr "键文件没有键“%s”"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "键文件包含“%s”其值“%s”不是 UTF-8" msgstr "键文件包含“%s”其值“%s”不是 UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "键文件包含键“%s”其值无法解释。" msgstr "键文件包含键“%s”其值无法解释。"
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "键文件在“%2$s”中包含“%1$s”其值无法解释。" msgstr "键文件在“%2$s”中包含“%1$s”其值无法解释。"
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "键文件的组“%2$s”中不包含键“%1$s”" msgstr "键文件的组“%2$s”中不包含键“%1$s”"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "键文件在行尾含有转义字符" msgstr "键文件在行尾含有转义字符"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "键文件中包含无效的转义序列“%s”" msgstr "键文件中包含无效的转义序列“%s”"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "无法将值“%s”解释为数值。" msgstr "无法将值“%s”解释为数值。"
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "整数值“%s”超出范围" msgstr "整数值“%s”超出范围"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "无法将值“%s”解释为浮点数。" msgstr "无法将值“%s”解释为浮点数。"
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "无法将值“%s”解释为布尔值。" msgstr "无法将值“%s”解释为布尔值。"

View File

@@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.9.2\n" "Project-Id-Version: glib 2.9.2\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-01-04 10:22+0800\n" "PO-Revision-Date: 2006-01-04 10:22+0800\n"
"Last-Translator: Abel Cheung <abel@oaka.org>\n" "Last-Translator: Abel Cheung <abel@oaka.org>\n"
"Language-Team: Chinese (Hong Kong) <community@linuxhall.org>\n" "Language-Team: Chinese (Hong Kong) <community@linuxhall.org>\n"
@@ -54,35 +54,35 @@ msgstr "在資料目錄中找不到有效的設定鍵檔案"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -196,7 +196,7 @@ msgstr "開啟檔案「%s」失敗fdopen() 失敗:%s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "檔案名稱由「%s」改為「%s」失敗g_rename() 失敗:%s" msgstr "檔案名稱由「%s」改為「%s」失敗g_rename() 失敗:%s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "建立檔案「%s」失敗%s" msgstr "建立檔案「%s」失敗%s"
@@ -221,23 +221,23 @@ msgstr "關閉檔案「%s」失敗fclose() 失敗:%s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "現存檔案「%s」無法移除g_unlink() 失敗:%s" msgstr "現存檔案「%s」無法移除g_unlink() 失敗:%s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "樣式「%s」無效不應含有「%s」" msgstr "樣式「%s」無效不應含有「%s」"
# (Abel) this is file template for mktemp/mkstemp # (Abel) this is file template for mktemp/mkstemp
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "檔案樣式「%s」末端不是 XXXXXX" msgstr "檔案樣式「%s」末端不是 XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "讀取符號連結「%s」失敗%s" msgstr "讀取符號連結「%s」失敗%s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "不支援符號連結" msgstr "不支援符號連結"
@@ -713,66 +713,66 @@ msgstr "設定鍵檔案並非以群組開頭"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "設定鍵檔案包含不支援的編碼「%s」" msgstr "設定鍵檔案包含不支援的編碼「%s」"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "設定鍵檔案沒有群組「%s」" msgstr "設定鍵檔案沒有群組「%s」"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "設定鍵檔案沒有設定鍵「%s」" msgstr "設定鍵檔案沒有設定鍵「%s」"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "設定鍵檔案包含的設定鍵「%s」數值為「%s」並非 UTF-8" msgstr "設定鍵檔案包含的設定鍵「%s」數值為「%s」並非 UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "設定鍵檔案包含的設定鍵「%s」的數值無法解譯。" msgstr "設定鍵檔案包含的設定鍵「%s」的數值無法解譯。"
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "設定鍵檔案包含的群組「%2$s」中設定鍵「%1$s」數值無法解譯" msgstr "設定鍵檔案包含的群組「%2$s」中設定鍵「%1$s」數值無法解譯"
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "設定鍵檔案的群組「%2$s」中沒有設定鍵「%1$s」" msgstr "設定鍵檔案的群組「%2$s」中沒有設定鍵「%1$s」"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "設定鍵檔案在行尾包含跳出字元" msgstr "設定鍵檔案在行尾包含跳出字元"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "設定鍵檔案含有不正確的「跳出字元」「%s」" msgstr "設定鍵檔案含有不正確的「跳出字元」「%s」"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "數值「%s」不能被解譯為數字。" msgstr "數值「%s」不能被解譯為數字。"
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "整數值「%s」超出範圍" msgstr "整數值「%s」超出範圍"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "數值「%s」不能被解譯為數字。" msgstr "數值「%s」不能被解譯為數字。"
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "數值「%s」不能被解譯為邏輯值。" msgstr "數值「%s」不能被解譯為邏輯值。"

View File

@@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.9.2\n" "Project-Id-Version: glib 2.9.2\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-06-12 11:18-0400\n" "POT-Creation-Date: 2006-06-20 10:48-0400\n"
"PO-Revision-Date: 2006-01-04 10:19+0800\n" "PO-Revision-Date: 2006-01-04 10:19+0800\n"
"Last-Translator: Abel Cheung <abel@oaka.org>\n" "Last-Translator: Abel Cheung <abel@oaka.org>\n"
"Language-Team: Chinese (Taiwan) <community@linuxhall.org>\n" "Language-Team: Chinese (Taiwan) <community@linuxhall.org>\n"
@@ -54,35 +54,35 @@ msgstr "在資料目錄中找不到有效的設定鍵檔案"
msgid "A bookmark for URI '%s' already exists" msgid "A bookmark for URI '%s' already exists"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2037 glib/gbookmarkfile.c:2192 #: glib/gbookmarkfile.c:2039 glib/gbookmarkfile.c:2196
#: glib/gbookmarkfile.c:2277 glib/gbookmarkfile.c:2358 #: glib/gbookmarkfile.c:2281 glib/gbookmarkfile.c:2362
#: glib/gbookmarkfile.c:2443 glib/gbookmarkfile.c:2526 #: glib/gbookmarkfile.c:2447 glib/gbookmarkfile.c:2530
#: glib/gbookmarkfile.c:2604 glib/gbookmarkfile.c:2683 #: glib/gbookmarkfile.c:2608 glib/gbookmarkfile.c:2687
#: glib/gbookmarkfile.c:2725 glib/gbookmarkfile.c:2822 #: glib/gbookmarkfile.c:2729 glib/gbookmarkfile.c:2826
#: glib/gbookmarkfile.c:2945 glib/gbookmarkfile.c:3135 #: glib/gbookmarkfile.c:2949 glib/gbookmarkfile.c:3139
#: glib/gbookmarkfile.c:3211 glib/gbookmarkfile.c:3363 #: glib/gbookmarkfile.c:3215 glib/gbookmarkfile.c:3367
#: glib/gbookmarkfile.c:3428 glib/gbookmarkfile.c:3518 #: glib/gbookmarkfile.c:3432 glib/gbookmarkfile.c:3522
#: glib/gbookmarkfile.c:3645 #: glib/gbookmarkfile.c:3649
#, c-format #, c-format
msgid "No bookmark found for URI '%s'" msgid "No bookmark found for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2367 #: glib/gbookmarkfile.c:2371
#, c-format #, c-format
msgid "No MIME type defined in the bookmark for URI '%s'" msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2452 #: glib/gbookmarkfile.c:2456
#, c-format #, c-format
msgid "No private flag has been defined in bookmark for URI '%s'" msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:2831 #: glib/gbookmarkfile.c:2835
#, c-format #, c-format
msgid "No groups set in bookmark for URI '%s'" msgid "No groups set in bookmark for URI '%s'"
msgstr "" msgstr ""
#: glib/gbookmarkfile.c:3229 glib/gbookmarkfile.c:3373 #: glib/gbookmarkfile.c:3233 glib/gbookmarkfile.c:3377
#, c-format #, c-format
msgid "No application with name '%s' registered a bookmark for '%s'" msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "" msgstr ""
@@ -196,7 +196,7 @@ msgstr "開啟檔案「%s」失敗fdopen() 失敗:%s"
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "檔案名稱由「%s」改為「%s」失敗g_rename() 失敗:%s" msgstr "檔案名稱由「%s」改為「%s」失敗g_rename() 失敗:%s"
#: glib/gfileutils.c:946 glib/gfileutils.c:1411 #: glib/gfileutils.c:946 glib/gfileutils.c:1404
#, c-format #, c-format
msgid "Failed to create file '%s': %s" msgid "Failed to create file '%s': %s"
msgstr "建立檔案「%s」失敗%s" msgstr "建立檔案「%s」失敗%s"
@@ -221,23 +221,23 @@ msgstr "關閉檔案「%s」失敗fclose() 失敗:%s"
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "現存檔案「%s」無法移除g_unlink() 失敗:%s" msgstr "現存檔案「%s」無法移除g_unlink() 失敗:%s"
#: glib/gfileutils.c:1372 #: glib/gfileutils.c:1366
#, c-format #, c-format
msgid "Template '%s' invalid, should not contain a '%s'" msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "樣式「%s」無效不應含有「%s」" msgstr "樣式「%s」無效不應含有「%s」"
# (Abel) this is file template for mktemp/mkstemp # (Abel) this is file template for mktemp/mkstemp
#: glib/gfileutils.c:1386 #: glib/gfileutils.c:1379
#, c-format #, fuzzy, c-format
msgid "Template '%s' doesn't end with XXXXXX" msgid "Template '%s' doesn't contain XXXXXX"
msgstr "檔案樣式「%s」末端不是 XXXXXX" msgstr "檔案樣式「%s」末端不是 XXXXXX"
#: glib/gfileutils.c:1861 #: glib/gfileutils.c:1854
#, c-format #, c-format
msgid "Failed to read the symbolic link '%s': %s" msgid "Failed to read the symbolic link '%s': %s"
msgstr "讀取符號連結「%s」失敗%s" msgstr "讀取符號連結「%s」失敗%s"
#: glib/gfileutils.c:1882 #: glib/gfileutils.c:1875
#, c-format #, c-format
msgid "Symbolic links not supported" msgid "Symbolic links not supported"
msgstr "不支援符號連結" msgstr "不支援符號連結"
@@ -713,66 +713,66 @@ msgstr "設定鍵檔案並非以群組開頭"
msgid "Key file contains unsupported encoding '%s'" msgid "Key file contains unsupported encoding '%s'"
msgstr "設定鍵檔案包含不支援的編碼「%s」" msgstr "設定鍵檔案包含不支援的編碼「%s」"
#: glib/gkeyfile.c:1010 glib/gkeyfile.c:1169 glib/gkeyfile.c:2382 #: glib/gkeyfile.c:1014 glib/gkeyfile.c:1173 glib/gkeyfile.c:2386
#: glib/gkeyfile.c:2447 glib/gkeyfile.c:2566 glib/gkeyfile.c:2701 #: glib/gkeyfile.c:2451 glib/gkeyfile.c:2570 glib/gkeyfile.c:2705
#: glib/gkeyfile.c:2854 glib/gkeyfile.c:3030 glib/gkeyfile.c:3087 #: glib/gkeyfile.c:2858 glib/gkeyfile.c:3034 glib/gkeyfile.c:3091
#, c-format #, c-format
msgid "Key file does not have group '%s'" msgid "Key file does not have group '%s'"
msgstr "設定鍵檔案沒有群組「%s」" msgstr "設定鍵檔案沒有群組「%s」"
#: glib/gkeyfile.c:1181 #: glib/gkeyfile.c:1185
#, c-format #, c-format
msgid "Key file does not have key '%s'" msgid "Key file does not have key '%s'"
msgstr "設定鍵檔案沒有設定鍵「%s」" msgstr "設定鍵檔案沒有設定鍵「%s」"
#: glib/gkeyfile.c:1282 glib/gkeyfile.c:1391 #: glib/gkeyfile.c:1286 glib/gkeyfile.c:1395
#, c-format #, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "設定鍵檔案包含的設定鍵「%s」數值為「%s」並非 UTF-8" msgstr "設定鍵檔案包含的設定鍵「%s」數值為「%s」並非 UTF-8"
#: glib/gkeyfile.c:1300 glib/gkeyfile.c:1409 glib/gkeyfile.c:1781 #: glib/gkeyfile.c:1304 glib/gkeyfile.c:1413 glib/gkeyfile.c:1785
#, c-format #, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted." msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "設定鍵檔案包含的設定鍵「%s」的數值無法解譯。" msgstr "設定鍵檔案包含的設定鍵「%s」的數值無法解譯。"
#: glib/gkeyfile.c:1997 glib/gkeyfile.c:2210 #: glib/gkeyfile.c:2001 glib/gkeyfile.c:2214
#, c-format #, c-format
msgid "" msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be " "Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted." "interpreted."
msgstr "設定鍵檔案包含的群組「%2$s」中設定鍵「%1$s」數值無法解譯" msgstr "設定鍵檔案包含的群組「%2$s」中設定鍵「%1$s」數值無法解譯"
#: glib/gkeyfile.c:2397 glib/gkeyfile.c:2581 glib/gkeyfile.c:3098 #: glib/gkeyfile.c:2401 glib/gkeyfile.c:2585 glib/gkeyfile.c:3102
#, c-format #, c-format
msgid "Key file does not have key '%s' in group '%s'" msgid "Key file does not have key '%s' in group '%s'"
msgstr "設定鍵檔案的群組「%2$s」中沒有設定鍵「%1$s」" msgstr "設定鍵檔案的群組「%2$s」中沒有設定鍵「%1$s」"
#: glib/gkeyfile.c:3271 #: glib/gkeyfile.c:3275
#, c-format #, c-format
msgid "Key file contains escape character at end of line" msgid "Key file contains escape character at end of line"
msgstr "設定鍵檔案在行尾包含跳出字元" msgstr "設定鍵檔案在行尾包含跳出字元"
#: glib/gkeyfile.c:3293 #: glib/gkeyfile.c:3297
#, c-format #, c-format
msgid "Key file contains invalid escape sequence '%s'" msgid "Key file contains invalid escape sequence '%s'"
msgstr "設定鍵檔案含有不正確的「跳出字元」「%s」" msgstr "設定鍵檔案含有不正確的「跳出字元」「%s」"
#: glib/gkeyfile.c:3434 #: glib/gkeyfile.c:3438
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a number." msgid "Value '%s' cannot be interpreted as a number."
msgstr "數值「%s」不能被解譯為數字。" msgstr "數值「%s」不能被解譯為數字。"
#: glib/gkeyfile.c:3444 #: glib/gkeyfile.c:3448
#, c-format #, c-format
msgid "Integer value '%s' out of range" msgid "Integer value '%s' out of range"
msgstr "整數值「%s」超出範圍" msgstr "整數值「%s」超出範圍"
#: glib/gkeyfile.c:3472 #: glib/gkeyfile.c:3476
#, fuzzy, c-format #, fuzzy, c-format
msgid "Value '%s' cannot be interpreted as a float number." msgid "Value '%s' cannot be interpreted as a float number."
msgstr "數值「%s」不能被解譯為數字。" msgstr "數值「%s」不能被解譯為數字。"
#: glib/gkeyfile.c:3492 #: glib/gkeyfile.c:3496
#, c-format #, c-format
msgid "Value '%s' cannot be interpreted as a boolean." msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "數值「%s」不能被解譯為邏輯值。" msgstr "數值「%s」不能被解譯為邏輯值。"