diff options
author | Matthias Clasen <mclasen@redhat.com> | 2010-05-02 21:47:49 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-05-02 21:47:49 -0400 |
commit | 3c822b423db4ad6e612f68adefd5cb5899793ade (patch) | |
tree | 58f6f32ded157ce4ed3d0452c4325ab34d9e96bc | |
parent | 87e4516650bb0f01033268e3f7f77ecd5d4cab2a (diff) |
2.24.12.24.1
131 files changed, 3580 insertions, 3476 deletions
diff --git a/docs/reference/glib/gtester-report.1 b/docs/reference/glib/gtester-report.1 index 49b848403..fa3fe188d 100644 --- a/docs/reference/glib/gtester-report.1 +++ b/docs/reference/glib/gtester-report.1 @@ -1,13 +1,13 @@ '\" t .\" Title: gtester-report .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.74.2 <http://docbook.sf.net/> -.\" Date: 03/13/2009 +.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/> +.\" Date: 05/02/2010 .\" Manual: [FIXME: manual] .\" Source: [FIXME: source] .\" Language: English .\" -.TH "GTESTER\-REPORT" "1" "03/13/2009" "[FIXME: source]" "[FIXME: manual]" +.TH "GTESTER\-REPORT" "1" "05/02/2010" "[FIXME: source]" "[FIXME: manual]" .\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- diff --git a/docs/reference/glib/tmpl/async_queues.sgml b/docs/reference/glib/tmpl/async_queues.sgml index 79dbec8c7..7a58f3e18 100644 --- a/docs/reference/glib/tmpl/async_queues.sgml +++ b/docs/reference/glib/tmpl/async_queues.sgml @@ -66,6 +66,9 @@ locking function variants (those without the suffix _unlocked) <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### STRUCT GAsyncQueue ##### --> <para> The #GAsyncQueue struct is an opaque data structure, which represents @@ -77,6 +80,7 @@ an asynchronous queue. It should only be accessed through the <!-- ##### FUNCTION g_async_queue_new ##### --> +@void: @Returns: diff --git a/docs/reference/glib/tmpl/atomic_operations.sgml b/docs/reference/glib/tmpl/atomic_operations.sgml index 13ca69a46..d7eab3f76 100644 --- a/docs/reference/glib/tmpl/atomic_operations.sgml +++ b/docs/reference/glib/tmpl/atomic_operations.sgml @@ -65,16 +65,18 @@ g_atomic_pointer_compare_and_exchange() respectively. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### FUNCTION g_atomic_int_get ##### --> <para> Reads the value of the integer pointed to by @atomic. Also acts as a memory barrier. </para> +@atomic: a pointer to an integer @Returns: the value of *@atomic @Since: 2.4 -<!-- # Unused Parameters # --> -@atomic: a pointer to an integer <!-- ##### FUNCTION g_atomic_int_set ##### --> @@ -83,10 +85,9 @@ Sets the value of the integer pointed to by @atomic. Also acts as a memory barrier. </para> -@Since: 2.10 -<!-- # Unused Parameters # --> @atomic: a pointer to an integer @newval: the new value +@Since: 2.10 <!-- ##### FUNCTION g_atomic_int_add ##### --> @@ -95,10 +96,9 @@ Atomically adds @val to the integer pointed to by @atomic. Also acts as a memory barrier. </para> -@Since: 2.4 -<!-- # Unused Parameters # --> @atomic: a pointer to an integer. @val: the value to add to *@atomic. +@Since: 2.4 <!-- ##### FUNCTION g_atomic_int_exchange_and_add ##### --> @@ -108,11 +108,10 @@ the value of *@atomic just before the addition took place. Also acts as a memory barrier. </para> -@Returns: the value of *@atomic before the addition. -@Since: 2.4 -<!-- # Unused Parameters # --> @atomic: a pointer to an integer. @val: the value to add to *@atomic. +@Returns: the value of *@atomic before the addition. +@Since: 2.4 <!-- ##### FUNCTION g_atomic_int_compare_and_exchange ##### --> @@ -122,12 +121,11 @@ if they are equal, atomically exchanges *@atomic with @newval. Also acts as a memory barrier. </para> -@Returns: %TRUE, if *@atomic was equal @oldval. %FALSE otherwise. -@Since: 2.4 -<!-- # Unused Parameters # --> @atomic: a pointer to an integer. @oldval: the assumed old value of *@atomic. @newval: the new value of *@atomic. +@Returns: %TRUE, if *@atomic was equal @oldval. %FALSE otherwise. +@Since: 2.4 <!-- ##### FUNCTION g_atomic_pointer_get ##### --> @@ -136,10 +134,9 @@ Reads the value of the pointer pointed to by @atomic. Also acts as a memory barrier. </para> +@atomic: a pointer to a #gpointer. @Returns: the value to add to *@atomic. @Since: 2.4 -<!-- # Unused Parameters # --> -@atomic: a pointer to a #gpointer. <!-- ##### FUNCTION g_atomic_pointer_set ##### --> @@ -148,10 +145,9 @@ Sets the value of the pointer pointed to by @atomic. Also acts as a memory barrier. </para> -@Since: 2.10 -<!-- # Unused Parameters # --> @atomic: a pointer to a #gpointer @newval: the new value +@Since: 2.10 <!-- ##### FUNCTION g_atomic_pointer_compare_and_exchange ##### --> @@ -161,12 +157,11 @@ if they are equal, atomically exchanges *@atomic with @newval. Also acts as a memory barrier. </para> -@Returns: %TRUE, if *@atomic was equal @oldval. %FALSE otherwise. -@Since: 2.4 -<!-- # Unused Parameters # --> @atomic: a pointer to a #gpointer. @oldval: the assumed old value of *@atomic. @newval: the new value of *@atomic. +@Returns: %TRUE, if *@atomic was equal @oldval. %FALSE otherwise. +@Since: 2.4 <!-- ##### FUNCTION g_atomic_int_inc ##### --> diff --git a/docs/reference/glib/tmpl/bookmarkfile.sgml b/docs/reference/glib/tmpl/bookmarkfile.sgml index 5542b98cc..6ffae8e7c 100644 --- a/docs/reference/glib/tmpl/bookmarkfile.sgml +++ b/docs/reference/glib/tmpl/bookmarkfile.sgml @@ -88,6 +88,9 @@ The #GBookmarkFile parser was added in GLib 2.12. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### STRUCT GBookmarkFile ##### --> <para> The <structname>GBookmarkFile</structname> struct contains only private data @@ -125,6 +128,7 @@ unknown encoding </para> +@void: @Returns: diff --git a/docs/reference/glib/tmpl/byte_order.sgml b/docs/reference/glib/tmpl/byte_order.sgml index 3f60fd777..82b488cc7 100644 --- a/docs/reference/glib/tmpl/byte_order.sgml +++ b/docs/reference/glib/tmpl/byte_order.sgml @@ -52,6 +52,9 @@ side-effects. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### MACRO G_BYTE_ORDER ##### --> <para> The host byte order. diff --git a/docs/reference/glib/tmpl/conversions.sgml b/docs/reference/glib/tmpl/conversions.sgml index b28ec41a2..3bfad7236 100644 --- a/docs/reference/glib/tmpl/conversions.sgml +++ b/docs/reference/glib/tmpl/conversions.sgml @@ -164,6 +164,9 @@ export G_FILENAME_ENCODING=ISO-8859-1 <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### FUNCTION g_convert ##### --> <para> diff --git a/docs/reference/glib/tmpl/date.sgml b/docs/reference/glib/tmpl/date.sgml index 5d2610bb3..d097edbd3 100644 --- a/docs/reference/glib/tmpl/date.sgml +++ b/docs/reference/glib/tmpl/date.sgml @@ -66,6 +66,9 @@ a #GTimeVal with g_get_current_time(). <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### MACRO G_USEC_PER_SEC ##### --> <para> Number of microseconds in one second (1 million). This macro is provided for @@ -268,6 +271,7 @@ be cleared (as if you'd called g_date_clear()) but invalid (it won't represent an existing day). Free the return value with g_date_free(). </para> +@void: @Returns: a newly-allocated #GDate diff --git a/docs/reference/glib/tmpl/error_reporting.sgml b/docs/reference/glib/tmpl/error_reporting.sgml index fc3284c59..858e48e7c 100644 --- a/docs/reference/glib/tmpl/error_reporting.sgml +++ b/docs/reference/glib/tmpl/error_reporting.sgml @@ -382,6 +382,9 @@ Summary of rules for use of #GError: <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### STRUCT GError ##### --> <para> The <structname>GError</structname> structure contains diff --git a/docs/reference/glib/tmpl/fileutils.sgml b/docs/reference/glib/tmpl/fileutils.sgml index 817aeb622..b99430ba2 100644 --- a/docs/reference/glib/tmpl/fileutils.sgml +++ b/docs/reference/glib/tmpl/fileutils.sgml @@ -41,6 +41,9 @@ g_dir_read_name(), g_dir_rewind(), g_dir_close(). <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### ENUM GFileError ##### --> <para> Values corresponding to <literal>errno</literal> codes returned from file operations diff --git a/docs/reference/glib/tmpl/gregex.sgml b/docs/reference/glib/tmpl/gregex.sgml index 317aa596e..51fbeb80d 100644 --- a/docs/reference/glib/tmpl/gregex.sgml +++ b/docs/reference/glib/tmpl/gregex.sgml @@ -75,6 +75,9 @@ written by Philip Hazel. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### ENUM GRegexError ##### --> <para> Error codes returned by regular expressions functions. diff --git a/docs/reference/glib/tmpl/hooks.sgml b/docs/reference/glib/tmpl/hooks.sgml index f02dbf66e..763d5dcf6 100644 --- a/docs/reference/glib/tmpl/hooks.sgml +++ b/docs/reference/glib/tmpl/hooks.sgml @@ -20,6 +20,9 @@ and the list of hook functions can be invoked. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### STRUCT GHookList ##### --> <para> The <structname>GHookList</structname> struct represents a diff --git a/docs/reference/glib/tmpl/i18n.sgml b/docs/reference/glib/tmpl/i18n.sgml index 8afc7ae3b..665371df5 100644 --- a/docs/reference/glib/tmpl/i18n.sgml +++ b/docs/reference/glib/tmpl/i18n.sgml @@ -32,6 +32,9 @@ The gettext manual. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### MACRO Q_ ##### --> <para> Like _(), but handles context in message ids. This has the advantage that @@ -209,6 +212,7 @@ Intltool has support for the NC_() macro since version 0.40.1. </para> +@void: @Returns: diff --git a/docs/reference/glib/tmpl/keyfile.sgml b/docs/reference/glib/tmpl/keyfile.sgml index 18ce443a9..4e72ad6ac 100644 --- a/docs/reference/glib/tmpl/keyfile.sgml +++ b/docs/reference/glib/tmpl/keyfile.sgml @@ -118,6 +118,9 @@ restricted to ASCII characters. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### STRUCT GKeyFile ##### --> <para> The <structname>GKeyFile</structname> struct contains only private fields @@ -164,6 +167,7 @@ Flags which influence the parsing. </para> +@void: @Returns: diff --git a/docs/reference/glib/tmpl/limits.sgml b/docs/reference/glib/tmpl/limits.sgml index c0fe16c53..caa305d84 100644 --- a/docs/reference/glib/tmpl/limits.sgml +++ b/docs/reference/glib/tmpl/limits.sgml @@ -18,6 +18,9 @@ the standard integer and floating point types. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### MACRO G_MININT ##### --> <para> The minimum value which can be held in a #gint. diff --git a/docs/reference/glib/tmpl/macros.sgml b/docs/reference/glib/tmpl/macros.sgml index efa277968..7f40eb380 100644 --- a/docs/reference/glib/tmpl/macros.sgml +++ b/docs/reference/glib/tmpl/macros.sgml @@ -17,6 +17,9 @@ These macros provide a few commonly-used features. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### MACRO G_OS_WIN32 ##### --> <para> This macro is defined only on Windows. So you can bracket diff --git a/docs/reference/glib/tmpl/macros_misc.sgml b/docs/reference/glib/tmpl/macros_misc.sgml index 29ad67085..131472d19 100644 --- a/docs/reference/glib/tmpl/macros_misc.sgml +++ b/docs/reference/glib/tmpl/macros_misc.sgml @@ -18,6 +18,9 @@ by application programmers. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### MACRO G_INLINE_FUNC ##### --> <para> This macro is used to export function prototypes so they can be linked diff --git a/docs/reference/glib/tmpl/main.sgml b/docs/reference/glib/tmpl/main.sgml index 39a3b46e7..04c0eb33a 100644 --- a/docs/reference/glib/tmpl/main.sgml +++ b/docs/reference/glib/tmpl/main.sgml @@ -104,6 +104,9 @@ manages all available sources of events <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### STRUCT GMainLoop ##### --> <para> The <structname>GMainLoop</structname> struct is an opaque data type @@ -278,6 +281,7 @@ representing a set of sources to be handled in a main loop. </para> +@void: @Returns: @@ -303,6 +307,7 @@ representing a set of sources to be handled in a main loop. </para> +@void: @Returns: @@ -524,6 +529,7 @@ or -1 if an error occurred. </para> +@void: @Returns: @@ -532,6 +538,7 @@ or -1 if an error occurred. </para> +@void: @Returns: @@ -550,6 +557,7 @@ for the default main context. </para> +@void: @Returns: @@ -638,6 +646,7 @@ for the default main context. </para> +@void: @Returns: @@ -789,6 +798,7 @@ This is just a placeholder for #GClosureMarshal, which cannot be used here for dependency reasons. </para> +@void: <!-- ##### STRUCT GSourceFuncs ##### --> diff --git a/docs/reference/glib/tmpl/markup.sgml b/docs/reference/glib/tmpl/markup.sgml index 365f5cd69..7a14ecbe3 100644 --- a/docs/reference/glib/tmpl/markup.sgml +++ b/docs/reference/glib/tmpl/markup.sgml @@ -92,6 +92,9 @@ Sections marked as CDATA <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### ENUM GMarkupError ##### --> <para> Error codes returned by markup parsing. diff --git a/docs/reference/glib/tmpl/memory.sgml b/docs/reference/glib/tmpl/memory.sgml index c113e486f..3e8fe97a0 100644 --- a/docs/reference/glib/tmpl/memory.sgml +++ b/docs/reference/glib/tmpl/memory.sgml @@ -34,6 +34,9 @@ g_mem_set_vtable(). <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### MACRO g_new ##### --> <para> Allocates @n_structs elements of type @struct_type. @@ -391,6 +394,7 @@ should return %NULL on failure, GLib will handle error-checking for you. </para> +@void: @Returns: @@ -419,5 +423,6 @@ Note that this function will not output anything unless you have previously installed the #glib_mem_profiler_table with g_mem_set_vtable(). </para> +@void: diff --git a/docs/reference/glib/tmpl/memory_slices.sgml b/docs/reference/glib/tmpl/memory_slices.sgml index 2538fa16c..e9fb620c8 100644 --- a/docs/reference/glib/tmpl/memory_slices.sgml +++ b/docs/reference/glib/tmpl/memory_slices.sgml @@ -92,6 +92,9 @@ object size used at allocation time is still available when freeing. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### FUNCTION g_slice_alloc ##### --> <para> Allocates a block of memory from the slice allocator. diff --git a/docs/reference/glib/tmpl/messages.sgml b/docs/reference/glib/tmpl/messages.sgml index 0915f55c7..2c4e8d86d 100644 --- a/docs/reference/glib/tmpl/messages.sgml +++ b/docs/reference/glib/tmpl/messages.sgml @@ -23,6 +23,9 @@ These can be extended with user-defined levels. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### MACRO G_LOG_DOMAIN ##### --> <para> Defines the log domain. diff --git a/docs/reference/glib/tmpl/misc_utils.sgml b/docs/reference/glib/tmpl/misc_utils.sgml index 9cfb65f5a..6e9d79084 100644 --- a/docs/reference/glib/tmpl/misc_utils.sgml +++ b/docs/reference/glib/tmpl/misc_utils.sgml @@ -17,11 +17,15 @@ These are portable utility functions. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### FUNCTION g_get_application_name ##### --> <para> </para> +@void: @Returns: @@ -38,6 +42,7 @@ These are portable utility functions. </para> +@void: @Returns: @@ -82,6 +87,7 @@ These are portable utility functions. </para> +@void: @Returns: @@ -90,6 +96,7 @@ These are portable utility functions. </para> +@void: @Returns: @@ -98,6 +105,7 @@ These are portable utility functions. </para> +@void: @Returns: @@ -106,6 +114,7 @@ These are portable utility functions. </para> +@void: @Returns: @@ -114,6 +123,7 @@ These are portable utility functions. </para> +@void: @Returns: @@ -122,6 +132,7 @@ These are portable utility functions. </para> +@void: @Returns: @@ -154,6 +165,7 @@ These are portable utility functions. </para> +@void: @Returns: @@ -162,6 +174,7 @@ These are portable utility functions. </para> +@void: @Returns: @@ -170,6 +183,7 @@ These are portable utility functions. </para> +@void: <!-- ##### FUNCTION g_get_host_name ##### --> @@ -177,6 +191,7 @@ These are portable utility functions. </para> +@void: @Returns: @@ -185,6 +200,7 @@ These are portable utility functions. </para> +@void: @Returns: @@ -193,6 +209,7 @@ These are portable utility functions. </para> +@void: @Returns: @@ -201,6 +218,7 @@ These are portable utility functions. </para> +@void: @Returns: @@ -406,6 +424,7 @@ Declares a type of function which takes no arguments and has no return value. It is used to specify the type function passed to g_atexit(). </para> +@void: <!-- ##### USER_FUNCTION GFreeFunc ##### --> diff --git a/docs/reference/glib/tmpl/modules.sgml b/docs/reference/glib/tmpl/modules.sgml index c47df3593..51329d337 100644 --- a/docs/reference/glib/tmpl/modules.sgml +++ b/docs/reference/glib/tmpl/modules.sgml @@ -99,6 +99,9 @@ just_say_hello (const char *filename, GError **error) <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### STRUCT GModule ##### --> <para> The #GModule struct is an opaque data structure to represent a @@ -112,6 +115,7 @@ It should only be accessed via the following functions. Checks if modules are supported on the current platform. </para> +@void: @Returns: %TRUE if modules are supported. @@ -228,6 +232,7 @@ Closes a module. Gets a string describing the last module error. </para> +@void: @Returns: a string describing the last module error. diff --git a/docs/reference/glib/tmpl/numerical.sgml b/docs/reference/glib/tmpl/numerical.sgml index 271cf90fe..64d9800f1 100644 --- a/docs/reference/glib/tmpl/numerical.sgml +++ b/docs/reference/glib/tmpl/numerical.sgml @@ -27,6 +27,9 @@ The #GFloatIEEE754 and #GDoubleIEEE754 unions are used to access the <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### MACRO G_IEEE754_FLOAT_BIAS ##### --> <para> See <ulink url="http://cch.loria.fr/documentation/IEEE754/numerical_comp_guide/ncg_math.doc.html">http://cch.loria.fr/documentation/IEEE754/numerical_comp_guide/ncg_math.doc.html</ulink> diff --git a/docs/reference/glib/tmpl/queue.sgml b/docs/reference/glib/tmpl/queue.sgml index fbc26677d..96ce2d2df 100644 --- a/docs/reference/glib/tmpl/queue.sgml +++ b/docs/reference/glib/tmpl/queue.sgml @@ -42,6 +42,9 @@ To free the entire queue, use g_queue_free(). <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### STRUCT GQueue ##### --> <para> Contains the public fields of a <link linkend="glib-queues">Queue</link>. @@ -56,6 +59,7 @@ Contains the public fields of a <link linkend="glib-queues">Queue</link>. </para> +@void: @Returns: diff --git a/docs/reference/glib/tmpl/scanner.sgml b/docs/reference/glib/tmpl/scanner.sgml index dc9da80c1..7c14ba873 100644 --- a/docs/reference/glib/tmpl/scanner.sgml +++ b/docs/reference/glib/tmpl/scanner.sgml @@ -23,6 +23,9 @@ understand it myself. Look at gtkrc.c for some code using the scanner. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### STRUCT GScanner ##### --> <para> The data structure representing a lexical scanner. diff --git a/docs/reference/glib/tmpl/spawn.sgml b/docs/reference/glib/tmpl/spawn.sgml index c0f8d256d..baf085e01 100644 --- a/docs/reference/glib/tmpl/spawn.sgml +++ b/docs/reference/glib/tmpl/spawn.sgml @@ -17,6 +17,9 @@ process launching <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### ENUM GSpawnError ##### --> <para> Error codes returned by spawning processes. diff --git a/docs/reference/glib/tmpl/string_utils.sgml b/docs/reference/glib/tmpl/string_utils.sgml index faaec7d7b..06c3fcbcb 100644 --- a/docs/reference/glib/tmpl/string_utils.sgml +++ b/docs/reference/glib/tmpl/string_utils.sgml @@ -40,6 +40,9 @@ wide characters (see g_unichar_iswide()) into account. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### FUNCTION g_strdup ##### --> <para> diff --git a/docs/reference/glib/tmpl/strings.sgml b/docs/reference/glib/tmpl/strings.sgml index 58a1307e6..cf435a6b6 100644 --- a/docs/reference/glib/tmpl/strings.sgml +++ b/docs/reference/glib/tmpl/strings.sgml @@ -20,6 +20,9 @@ nul bytes. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### STRUCT GString ##### --> <para> The #GString struct contains the public fields of a #GString. diff --git a/docs/reference/glib/tmpl/testing.sgml b/docs/reference/glib/tmpl/testing.sgml index 4dd819ef5..477c88d72 100644 --- a/docs/reference/glib/tmpl/testing.sgml +++ b/docs/reference/glib/tmpl/testing.sgml @@ -66,6 +66,9 @@ facilitate running tests and producing nicely formatted test reports. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### FUNCTION g_test_minimized_result ##### --> <para> @@ -143,6 +146,7 @@ Returns %TRUE if tests are run in quiet mode. </para> +@void: @Returns: @@ -152,7 +156,7 @@ Returns %TRUE if tests are run in quiet mode. </para> @testpath: -@test_func: +@void: <!-- ##### FUNCTION g_test_add_data_func ##### --> @@ -162,7 +166,7 @@ Returns %TRUE if tests are run in quiet mode. @testpath: @test_data: -@test_func: +@gconstpointer: <!-- ##### MACRO g_test_add ##### --> @@ -229,6 +233,7 @@ Returns %TRUE if tests are run in quiet mode. </para> +@void: <!-- ##### FUNCTION g_test_timer_elapsed ##### --> @@ -236,6 +241,7 @@ Returns %TRUE if tests are run in quiet mode. </para> +@void: @Returns: @@ -244,6 +250,7 @@ Returns %TRUE if tests are run in quiet mode. </para> +@void: @Returns: @@ -308,6 +315,7 @@ determine what traps to set. </para> +@void: @Returns: @@ -316,6 +324,7 @@ determine what traps to set. </para> +@void: @Returns: @@ -389,6 +398,7 @@ see g_test_rand_int() for details on test case random numbers. </para> +@void: @Returns: @@ -407,6 +417,7 @@ see g_test_rand_int() for details on test case random numbers. </para> +@void: @Returns: @@ -594,9 +605,9 @@ An opaque structure representing a test suite. @test_name: @data_size: @test_data: -@data_setup: -@data_test: -@data_teardown: +@void: +@void: +@void: @Returns: @@ -614,6 +625,7 @@ An opaque structure representing a test suite. </para> +@void: @Returns: diff --git a/docs/reference/glib/tmpl/trash_stack.sgml b/docs/reference/glib/tmpl/trash_stack.sgml index ead22b87f..d9c3d7c24 100644 --- a/docs/reference/glib/tmpl/trash_stack.sgml +++ b/docs/reference/glib/tmpl/trash_stack.sgml @@ -24,6 +24,9 @@ is a perfectly valid empty stack. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### STRUCT GTrashStack ##### --> <para> Each piece of memory that is pushed onto the stack diff --git a/docs/reference/glib/tmpl/type_conversion.sgml b/docs/reference/glib/tmpl/type_conversion.sgml index 0d1d94b37..65be90513 100644 --- a/docs/reference/glib/tmpl/type_conversion.sgml +++ b/docs/reference/glib/tmpl/type_conversion.sgml @@ -57,6 +57,9 @@ integer; values outside the range of a 32-bit integer will be mangled. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### MACRO GINT_TO_POINTER ##### --> <para> Stuffs an integer into a pointer type. diff --git a/docs/reference/glib/tmpl/types.sgml b/docs/reference/glib/tmpl/types.sgml index 37efca2fc..b17b546c6 100644 --- a/docs/reference/glib/tmpl/types.sgml +++ b/docs/reference/glib/tmpl/types.sgml @@ -42,6 +42,9 @@ for completeness - #gchar, #gint, #gshort, #glong, #gfloat, #gdouble. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### TYPEDEF gboolean ##### --> <para> A standard <type>boolean</type> type. diff --git a/docs/reference/glib/tmpl/unicode.sgml b/docs/reference/glib/tmpl/unicode.sgml index e0596c17b..120723cc7 100644 --- a/docs/reference/glib/tmpl/unicode.sgml +++ b/docs/reference/glib/tmpl/unicode.sgml @@ -40,6 +40,9 @@ Convenience functions for converting between UTF-8 and the locale encoding. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### TYPEDEF gunichar ##### --> <para> A type which can hold any UTF-32 or UCS-4 character code, also known diff --git a/docs/reference/glib/tmpl/version.sgml b/docs/reference/glib/tmpl/version.sgml index b1cf0bb6f..dca4ac9c6 100644 --- a/docs/reference/glib/tmpl/version.sgml +++ b/docs/reference/glib/tmpl/version.sgml @@ -19,6 +19,9 @@ typically use the features described here. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### MACRO GLIB_MAJOR_VERSION ##### --> <para> The major version number of the GLib library. diff --git a/docs/reference/glib/tmpl/warnings.sgml b/docs/reference/glib/tmpl/warnings.sgml index cc4687891..6c2aad782 100644 --- a/docs/reference/glib/tmpl/warnings.sgml +++ b/docs/reference/glib/tmpl/warnings.sgml @@ -28,6 +28,9 @@ give a perhaps-helpful warning before giving up. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### FUNCTION g_print ##### --> <para> Outputs a formatted message via the print handler. diff --git a/docs/reference/glib/tmpl/windows.sgml b/docs/reference/glib/tmpl/windows.sgml index 2a5a96110..d1855ada7 100644 --- a/docs/reference/glib/tmpl/windows.sgml +++ b/docs/reference/glib/tmpl/windows.sgml @@ -19,6 +19,9 @@ project. <!-- ##### SECTION Stability_Level ##### --> +<!-- ##### SECTION Image ##### --> + + <!-- ##### MACRO MAXPATHLEN ##### --> <para> Provided for UNIX emulation on Windows; equivalent to UNIX @@ -42,6 +45,7 @@ macro %MAXPATHLEN, which is the maximum length of a filename </para> +@void: @Returns: @@ -80,6 +84,7 @@ macro %MAXPATHLEN, which is the maximum length of a filename </para> +@void: @Returns: diff --git a/docs/reference/gobject/glib-genmarshal.1 b/docs/reference/gobject/glib-genmarshal.1 index cef295dde..3ea1dd870 100644 --- a/docs/reference/gobject/glib-genmarshal.1 +++ b/docs/reference/gobject/glib-genmarshal.1 @@ -1,13 +1,13 @@ '\" t .\" Title: glib-genmarshal .\" Author: [see the "Author" section] -.\" Generator: DocBook XSL Stylesheets v1.74.2 <http://docbook.sf.net/> -.\" Date: 03/13/2009 +.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/> +.\" Date: 05/02/2010 .\" Manual: [FIXME: manual] .\" Source: [FIXME: source] .\" Language: English .\" -.TH "GLIB\-GENMARSHAL" "1" "03/13/2009" "[FIXME: source]" "[FIXME: manual]" +.TH "GLIB\-GENMARSHAL" "1" "05/02/2010" "[FIXME: source]" "[FIXME: manual]" .\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- diff --git a/docs/reference/gobject/glib-mkenums.1 b/docs/reference/gobject/glib-mkenums.1 index 5b961f345..d0463aba6 100644 --- a/docs/reference/gobject/glib-mkenums.1 +++ b/docs/reference/gobject/glib-mkenums.1 @@ -1,13 +1,13 @@ '\" t .\" Title: glib-mkenums .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.75.1 <http://docbook.sf.net/> -.\" Date: 07/05/2009 +.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/> +.\" Date: 05/02/2010 .\" Manual: [FIXME: manual] .\" Source: [FIXME: source] .\" Language: English .\" -.TH "GLIB\-MKENUMS" "1" "07/05/2009" "[FIXME: source]" "[FIXME: manual]" +.TH "GLIB\-MKENUMS" "1" "05/02/2010" "[FIXME: source]" "[FIXME: manual]" .\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: glib master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-08 11:23+0100\n" "Last-Translator: F Wolff <friedel@translate.org.za>\n" "Language-Team: translate-discuss-af@lists.sourceforge.net\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2003-01-16 08:39+EDT\n" "Last-Translator: Ge'ez Frontier Foundation <locales@geez.org>\n" "Language-Team: Amharic <locales@geez.org>\n" @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2008-09-17 05:06+0300\n" "Last-Translator: Anas Afif Emad <anas.e87@gmail.com>\n" "Language-Team: Arabic <doc@arabeyes.org>\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: as\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2009-09-15 12:48+0530\n" "Last-Translator: \n" "Language-Team: Assamese <>\n" @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-01-04 19:27+0100\n" "Last-Translator: astur <malditoastur@gmail.com>\n" "Language-Team: Asturian <alministradores@softastur.org>\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD.az\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2004-02-02 12:12+0200\n" "Last-Translator: Mətin Əmirov <metin@karegen.com>\n" "Language-Team: Azerbaijani Turkish <gnome@azitt.com>\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2005-11-16 11:21+0200\n" "Last-Translator: Vital Khilko <vk@altlinux.ru>\n" "Language-Team: Belarusian <i18n@mova.org>\n" diff --git a/po/be@latin.po b/po/be@latin.po index 4a2eb840f..eba8f2dc5 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2008-02-16 23:33+0200\n" "Last-Translator: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>\n" "Language-Team: Belarusian Latin <i18n@mova.org>\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-06 20:22+0200\n" "Last-Translator: Alexander Shopov <ash@kambanaria.org>\n" "Language-Team: Bulgarian <dict@fsa-bg.org>\n" @@ -15,9 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: bn\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=glib&component=general\n" -"POT-Creation-Date: 2010-03-05 22:19+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-07 01:38+0600\n" "Last-Translator: Israt Jahan <israt@ankur.org.bd>\n" "Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n" @@ -30,335 +29,340 @@ msgstr "" "X-Poedit-Country: BANGLADESH\n" "X-Poedit-SourceCharset: utf-8\n" -#: ../glib/gbookmarkfile.c:737 +#: glib/gbookmarkfile.c:737 #, c-format msgid "Unexpected attribute '%s' for element '%s'" msgstr "অপ্রত্যাশিত '%s' বৈশিষ্ট্য '%s' বস্তুর জন্য উল্লিখিত হয়েছে" -#: ../glib/gbookmarkfile.c:748 ../glib/gbookmarkfile.c:819 -#: ../glib/gbookmarkfile.c:829 ../glib/gbookmarkfile.c:936 +#: glib/gbookmarkfile.c:748 glib/gbookmarkfile.c:819 glib/gbookmarkfile.c:829 +#: glib/gbookmarkfile.c:936 #, c-format msgid "Attribute '%s' of element '%s' not found" msgstr "'%s' বৈশিষ্ট্য '%s' বস্তুর ক্ষেত্রে পাওয়া যায়নি" -#: ../glib/gbookmarkfile.c:1106 ../glib/gbookmarkfile.c:1171 -#: ../glib/gbookmarkfile.c:1235 ../glib/gbookmarkfile.c:1245 +#: glib/gbookmarkfile.c:1106 glib/gbookmarkfile.c:1171 +#: glib/gbookmarkfile.c:1235 glib/gbookmarkfile.c:1245 #, c-format msgid "Unexpected tag '%s', tag '%s' expected" msgstr "অপ্রত্যাশিত ট্যাগ '%s', ট্যাগ '%s' প্রত্যাশিত" -#: ../glib/gbookmarkfile.c:1131 ../glib/gbookmarkfile.c:1145 -#: ../glib/gbookmarkfile.c:1213 ../glib/gbookmarkfile.c:1265 +#: glib/gbookmarkfile.c:1131 glib/gbookmarkfile.c:1145 +#: glib/gbookmarkfile.c:1213 glib/gbookmarkfile.c:1265 #, c-format msgid "Unexpected tag '%s' inside '%s'" msgstr "অপ্রত্যাশিত '%s' ট্যাগ '%s'-এর মধ্যে" -#: ../glib/gbookmarkfile.c:1793 +#: glib/gbookmarkfile.c:1793 msgid "No valid bookmark file found in data dirs" msgstr "তথ্য ডিরেক্টরির মধ্যে বৈধ বুকমার্ক ফাইল পাওয়া যায়নি" -#: ../glib/gbookmarkfile.c:1994 +#: glib/gbookmarkfile.c:1994 #, c-format msgid "A bookmark for URI '%s' already exists" msgstr "URI '%s'-এর জন্য বুকমার্ক বর্তমানে উপস্থিত রয়েছে" -#: ../glib/gbookmarkfile.c:2040 ../glib/gbookmarkfile.c:2198 -#: ../glib/gbookmarkfile.c:2283 ../glib/gbookmarkfile.c:2363 -#: ../glib/gbookmarkfile.c:2448 ../glib/gbookmarkfile.c:2531 -#: ../glib/gbookmarkfile.c:2609 ../glib/gbookmarkfile.c:2688 -#: ../glib/gbookmarkfile.c:2730 ../glib/gbookmarkfile.c:2827 -#: ../glib/gbookmarkfile.c:2953 ../glib/gbookmarkfile.c:3143 -#: ../glib/gbookmarkfile.c:3219 ../glib/gbookmarkfile.c:3384 -#: ../glib/gbookmarkfile.c:3473 ../glib/gbookmarkfile.c:3563 -#: ../glib/gbookmarkfile.c:3691 +#: glib/gbookmarkfile.c:2040 glib/gbookmarkfile.c:2198 +#: glib/gbookmarkfile.c:2283 glib/gbookmarkfile.c:2363 +#: glib/gbookmarkfile.c:2448 glib/gbookmarkfile.c:2531 +#: glib/gbookmarkfile.c:2609 glib/gbookmarkfile.c:2688 +#: glib/gbookmarkfile.c:2730 glib/gbookmarkfile.c:2827 +#: glib/gbookmarkfile.c:2953 glib/gbookmarkfile.c:3143 +#: glib/gbookmarkfile.c:3219 glib/gbookmarkfile.c:3384 +#: glib/gbookmarkfile.c:3473 glib/gbookmarkfile.c:3563 +#: glib/gbookmarkfile.c:3691 #, c-format msgid "No bookmark found for URI '%s'" msgstr "URI '%s'-এর জন্য বুকমার্ক পাওয়া যায়নি" -#: ../glib/gbookmarkfile.c:2372 +#: glib/gbookmarkfile.c:2372 #, c-format msgid "No MIME type defined in the bookmark for URI '%s'" msgstr "URI '%s'-এর বুকমার্কের ক্ষেত্রে MIME-এর ধরন নির্ধারিত নেই" -#: ../glib/gbookmarkfile.c:2457 +#: glib/gbookmarkfile.c:2457 #, c-format msgid "No private flag has been defined in bookmark for URI '%s'" msgstr "URI '%s'-এর বুকমার্কের ক্ষেত্রে ব্যক্তিগত ফ্ল্যাগ চিহ্ন দেওয়া হয়নি" -#: ../glib/gbookmarkfile.c:2836 +#: glib/gbookmarkfile.c:2836 #, c-format msgid "No groups set in bookmark for URI '%s'" msgstr "URI '%s'-এর বুকমার্কের ক্ষেত্রে গ্রুপ নির্ধারণ করা হয়নি" -#: ../glib/gbookmarkfile.c:3237 ../glib/gbookmarkfile.c:3394 +#: glib/gbookmarkfile.c:3237 glib/gbookmarkfile.c:3394 #, c-format msgid "No application with name '%s' registered a bookmark for '%s'" msgstr "'%s' নামক কোনো অ্যাপ্লিকেশনের দ্বারা '%s' বুকমার্ক নিবন্ধিত হয়নি" -#: ../glib/gbookmarkfile.c:3417 +#: glib/gbookmarkfile.c:3417 #, c-format msgid "Failed to expand exec line '%s' with URI '%s'" msgstr "exec লাইন '%s'-টির URI '%s' সহ প্রসারণ করতে ব্যর্থ" -#: ../glib/gconvert.c:437 ../glib/gconvert.c:515 ../glib/giochannel.c:1405 -#: ../gio/gcharsetconverter.c:459 +#: glib/gconvert.c:437 glib/gconvert.c:515 glib/giochannel.c:1404 +#: gio/gcharsetconverter.c:459 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "'%s' অক্ষরমালা থেকে '%s'-এ রূপান্তর করা সমর্থিত নয়" # sam: রুপান্তরকারক -#: ../glib/gconvert.c:441 ../glib/gconvert.c:519 -#: ../gio/gcharsetconverter.c:463 +#: glib/gconvert.c:441 glib/gconvert.c:519 gio/gcharsetconverter.c:463 #, c-format msgid "Could not open converter from '%s' to '%s'" msgstr "'%s' থেকে '%s' রুপান্তরকারক খোলা যায়নি" -#: ../glib/gconvert.c:638 ../glib/gconvert.c:1031 ../glib/giochannel.c:1577 -#: ../glib/giochannel.c:1619 ../glib/giochannel.c:2463 ../glib/gutf8.c:980 -#: ../glib/gutf8.c:1435 ../gio/gcharsetconverter.c:346 +#: glib/gconvert.c:638 glib/gconvert.c:1031 glib/giochannel.c:1576 +#: glib/giochannel.c:1618 glib/giochannel.c:2462 glib/gutf8.c:981 +#: glib/gutf8.c:1436 gio/gcharsetconverter.c:346 msgid "Invalid byte sequence in conversion input" msgstr "রূপান্তর করার জন্য প্রদত্ত ইনপুটের মধ্যে বাইটের অনুক্রম সঠিক নয়" -#: ../glib/gconvert.c:646 ../glib/gconvert.c:956 ../glib/giochannel.c:1584 -#: ../glib/giochannel.c:2475 ../gio/gcharsetconverter.c:351 +#: glib/gconvert.c:646 glib/gconvert.c:956 glib/giochannel.c:1583 +#: glib/giochannel.c:2474 gio/gcharsetconverter.c:351 #, c-format msgid "Error during conversion: %s" msgstr "রূপান্তর কর্ম সঞ্চালনকালের উৎপন্ন ত্রুটি: %s" -#: ../glib/gconvert.c:678 ../glib/gutf8.c:976 ../glib/gutf8.c:1186 -#: ../glib/gutf8.c:1327 ../glib/gutf8.c:1431 +#: glib/gconvert.c:678 glib/gutf8.c:977 glib/gutf8.c:1187 glib/gutf8.c:1328 +#: glib/gutf8.c:1432 msgid "Partial character sequence at end of input" msgstr "প্রদত্ত ইনপুটের অন্তে আংশিক অক্ষর অনুক্রম" -#: ../glib/gconvert.c:928 +#: glib/gconvert.c:928 #, c-format msgid "Cannot convert fallback '%s' to codeset '%s'" msgstr "ফলব্যাক '%s' থেকে '%s' কোড-সেটে পরিবর্তন করা যায়নি" -#: ../glib/gconvert.c:1751 +#: glib/gconvert.c:1751 #, c-format msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" msgstr "URI '%s'-টি \"file\" স্কিম ব্যবহারকারী সুনিশ্চিত URI নয়" -#: ../glib/gconvert.c:1761 +#: glib/gconvert.c:1761 #, c-format msgid "The local file URI '%s' may not include a '#'" msgstr "স্থানীয় ফাইল URI '%s'-এর মধ্যে '#' চিহ্ন অন্তর্ভুক্ত করা যাবে না" -#: ../glib/gconvert.c:1778 +#: glib/gconvert.c:1778 #, c-format msgid "The URI '%s' is invalid" msgstr "URI '%s' অকার্যকর" -#: ../glib/gconvert.c:1790 +#: glib/gconvert.c:1790 #, c-format msgid "The hostname of the URI '%s' is invalid" msgstr "URI '%s'-এর হোস্ট-নেম অকার্যকর" -#: ../glib/gconvert.c:1806 +#: glib/gconvert.c:1806 #, c-format msgid "The URI '%s' contains invalidly escaped characters" msgstr "URI '%s'-এর মধ্যে অবৈধরূপে এস্কেপ অক্ষর ব্যবহার করা হয়েছে" -#: ../glib/gconvert.c:1901 +#: glib/gconvert.c:1901 #, c-format msgid "The pathname '%s' is not an absolute path" msgstr "'%s' পাথটি সুনিশ্চিত নয়" -#: ../glib/gconvert.c:1911 +#: glib/gconvert.c:1911 msgid "Invalid hostname" msgstr "হোস্ট-নেম অকার্যকর" -#: ../glib/gdir.c:112 ../glib/gdir.c:135 +#: glib/gdir.c:112 glib/gdir.c:135 #, c-format msgid "Error opening directory '%s': %s" msgstr "'%s' ডিরেক্টরি খুলতে ব্যর্থ: %s" -#: ../glib/gfileutils.c:536 ../glib/gfileutils.c:624 +#: glib/gfileutils.c:536 glib/gfileutils.c:624 #, c-format msgid "Could not allocate %lu bytes to read file \"%s\"" msgstr "%lu বাইট, \"%s\" ফাইল পড়ার জন্য বরাদ্দ করা যায়নি" -#: ../glib/gfileutils.c:551 +#: glib/gfileutils.c:551 #, c-format msgid "Error reading file '%s': %s" msgstr "'%s' ফাইল পড়তে সমস্যা: %s" -#: ../glib/gfileutils.c:565 +#: glib/gfileutils.c:565 #, c-format msgid "File \"%s\" is too large" msgstr "\"%s\" ফাইল অত্যাধিক বড়" -#: ../glib/gfileutils.c:648 +#: glib/gfileutils.c:648 #, c-format msgid "Failed to read from file '%s': %s" msgstr "'%s' ফাইল থেকে পড়তে ব্যর্থ: %s" -#: ../glib/gfileutils.c:699 ../glib/gfileutils.c:786 +#: glib/gfileutils.c:699 glib/gfileutils.c:786 #, c-format msgid "Failed to open file '%s': %s" msgstr "'%s' ফাইল খুলতে ব্যর্থ: %s" -#: ../glib/gfileutils.c:716 ../glib/gmappedfile.c:169 +#: glib/gfileutils.c:716 glib/gmappedfile.c:170 #, c-format msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgstr "'%s' ফাইলের বৈশিষ্ট্য প্রাপ্ত করতে ব্যর্থ: fstat() ব্যর্থ: %s" -#: ../glib/gfileutils.c:750 +#: glib/gfileutils.c:750 #, c-format msgid "Failed to open file '%s': fdopen() failed: %s" msgstr "'%s' ফাইল খুলতে ব্যর্থ: fdopen() ব্যর্থ: %s" -#: ../glib/gfileutils.c:858 +#: glib/gfileutils.c:858 #, c-format msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgstr "'%s' ফাইলের নাম '%s'-এ পরিবর্তন করতে ব্যর্থ: g_rename() ব্যর্থ: %s" -#: ../glib/gfileutils.c:900 ../glib/gfileutils.c:1366 +#: glib/gfileutils.c:900 glib/gfileutils.c:1366 #, c-format msgid "Failed to create file '%s': %s" msgstr "'%s' ফাইল তৈরি করতে ব্যর্থ: %s" -#: ../glib/gfileutils.c:914 +#: glib/gfileutils.c:914 #, c-format msgid "Failed to open file '%s' for writing: fdopen() failed: %s" msgstr "লেখার উদ্দেশ্যে '%s' খুলতে ব্যর্থ: fdopen() ব্যর্থ: %s" -#: ../glib/gfileutils.c:939 +#: glib/gfileutils.c:939 #, c-format msgid "Failed to write file '%s': fwrite() failed: %s" msgstr "'%s' ফাইলে লিখতে ব্যর্থ: fwrite() ব্যর্থ: %s" -#: ../glib/gfileutils.c:958 +#: glib/gfileutils.c:958 #, c-format msgid "Failed to write file '%s': fflush() failed: %s" msgstr "'%s' ফাইলে লিখতে ব্যর্থ: fflush() ব্যর্থ: %s" -#: ../glib/gfileutils.c:987 +#: glib/gfileutils.c:987 #, c-format msgid "Failed to write file '%s': fsync() failed: %s" msgstr "'%s' ফাইলে লিখতে ব্যর্থ: fsync() ব্যর্থ: %s" -#: ../glib/gfileutils.c:1006 +#: glib/gfileutils.c:1006 #, c-format msgid "Failed to close file '%s': fclose() failed: %s" msgstr "'%s' ফাইল বন্ধ করতে ব্যর্থ: fclose() ব্যর্থ: %s" -#: ../glib/gfileutils.c:1124 +#: glib/gfileutils.c:1124 #, c-format msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgstr "বিদ্যমান ফাইল '%s' অপসারিত করা যায়নি: g_unlink() ব্যর্থ: %s" -#: ../glib/gfileutils.c:1328 +#: glib/gfileutils.c:1328 #, c-format msgid "Template '%s' invalid, should not contain a '%s'" msgstr "নমুনা '%s' সঠিক নয়, '%s' থাকা উচিত নয়" -#: ../glib/gfileutils.c:1341 +#: glib/gfileutils.c:1341 #, c-format msgid "Template '%s' doesn't contain XXXXXX" msgstr "'%s' টেমপ্লেটের মধ্যে XXXXXX অন্তর্ভুক্ত নেই" -#: ../glib/gfileutils.c:1782 +#: glib/gfileutils.c:1774 +#, c-format +msgid "%u byte" +msgid_plural "%u bytes" +msgstr[0] "" +msgstr[1] "" + +#: glib/gfileutils.c:1782 #, c-format msgid "%.1f KB" msgstr "%.1f কিলোবাইট" -#: ../glib/gfileutils.c:1787 +#: glib/gfileutils.c:1787 #, c-format msgid "%.1f MB" msgstr "%.1f মেগাবাইট" -#: ../glib/gfileutils.c:1792 +#: glib/gfileutils.c:1792 #, c-format msgid "%.1f GB" msgstr "%.1f গিগাবাইট" # TB= টেরাবাইট -#: ../glib/gfileutils.c:1797 +#: glib/gfileutils.c:1797 #, c-format msgid "%.1f TB" msgstr "%.1f টেরাবাইট" # PB= পেটাবাইট -#: ../glib/gfileutils.c:1802 +#: glib/gfileutils.c:1802 #, c-format msgid "%.1f PB" msgstr "%.1f পেটাবাইট" # EB= ইক্সাবাইট -#: ../glib/gfileutils.c:1807 +#: glib/gfileutils.c:1807 #, c-format msgid "%.1f EB" msgstr "%.1f ইক্সাবাইট" -#: ../glib/gfileutils.c:1850 +#: glib/gfileutils.c:1850 #, c-format msgid "Failed to read the symbolic link '%s': %s" msgstr "'%s' সিম্বোলিঙ্ক লিঙ্ক পড়তে ব্যর্থ: %s" -#: ../glib/gfileutils.c:1871 +#: glib/gfileutils.c:1871 msgid "Symbolic links not supported" msgstr "সিম্বোলিক লিঙ্ক সমর্থিত নয়" -#: ../glib/giochannel.c:1409 +#: glib/giochannel.c:1408 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "'%s' থেকে '%s' রুপান্তরকারক খোলা যায়নি: %s" -#: ../glib/giochannel.c:1754 +#: glib/giochannel.c:1753 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "g_io_channel_read_line_string-এ raw read করা সম্ভব নয়" -#: ../glib/giochannel.c:1801 ../glib/giochannel.c:2059 -#: ../glib/giochannel.c:2146 +#: glib/giochannel.c:1800 glib/giochannel.c:2058 glib/giochannel.c:2145 msgid "Leftover unconverted data in read buffer" msgstr "read বাফারের মধ্যে অরূপান্তরিত তথ্য অবশিষ্ট রয়েছে" -#: ../glib/giochannel.c:1882 ../glib/giochannel.c:1959 +#: glib/giochannel.c:1881 glib/giochannel.c:1958 msgid "Channel terminates in a partial character" msgstr "আংশিক অক্ষর দ্বারা চ্যানেলের সমাপ্তি" -#: ../glib/giochannel.c:1945 +#: glib/giochannel.c:1944 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "g_io_channel_read_to_end-এ raw read করা সম্ভব নয়" -#: ../glib/gmappedfile.c:150 +#: glib/gmappedfile.c:151 #, c-format msgid "Failed to open file '%s': open() failed: %s" msgstr "'%s' খুলতে ব্যর্থ: open() ব্যর্থ: %s" -#: ../glib/gmappedfile.c:229 +#: glib/gmappedfile.c:230 #, c-format msgid "Failed to map file '%s': mmap() failed: %s" msgstr "'%s' ফাইল ম্যাপ করতে ব্যর্থ: mmap() ব্যর্থ: %s" -#: ../glib/gmarkup.c:303 ../glib/gmarkup.c:343 +#: glib/gmarkup.c:303 glib/gmarkup.c:343 #, c-format msgid "Error on line %d char %d: " msgstr "রেখা %d অক্ষর %d-তে ত্রুটি: " -#: ../glib/gmarkup.c:363 ../glib/gmarkup.c:441 +#: glib/gmarkup.c:363 glib/gmarkup.c:441 #, c-format msgid "Invalid UTF-8 encoded text in name - not valid '%s'" msgstr "নামের মধ্যে অবৈধ UTF-8 এনকোডিং সহ টেক্সট - কার্যকর '%s' নয়" -#: ../glib/gmarkup.c:374 +#: glib/gmarkup.c:374 #, c-format msgid "'%s' is not a valid name " msgstr "'%s' কার্যকর নাম নয়" -#: ../glib/gmarkup.c:390 +#: glib/gmarkup.c:390 #, c-format msgid "'%s' is not a valid name: '%c' " msgstr "'%s' কার্যকর নাম নয়: '%c' " -#: ../glib/gmarkup.c:494 +#: glib/gmarkup.c:494 #, c-format msgid "Error on line %d: %s" msgstr "%d রেখার মধ্যে ত্রুটি: %s" -#: ../glib/gmarkup.c:578 +#: glib/gmarkup.c:578 #, c-format msgid "" "Failed to parse '%-.*s', which should have been a digit inside a character " @@ -367,7 +371,7 @@ msgstr "" "'%-.*s' পার্স করতে ব্যর্থ, এটি কোনো অক্ষরের রেফারেন্সের মধ্যে একটি সংখ্যা হওয়া উচিত " "(উদাহরণস্বরূপ ê) - সম্ভবত সংখ্যাটি অত্যাধিক বড়" -#: ../glib/gmarkup.c:590 +#: glib/gmarkup.c:590 msgid "" "Character reference did not end with a semicolon; most likely you used an " "ampersand character without intending to start an entity - escape ampersand " @@ -377,37 +381,36 @@ msgstr "" "ব্যবহারের উদ্দেশ্যে এ্যাম্পার্স্যন্ড চিহ্ন ব্যবহার করেননি - & রূপে এম্পারসেন্ড এস্কেপ " "করানো যাবে" -#: ../glib/gmarkup.c:616 +#: glib/gmarkup.c:616 #, c-format msgid "Character reference '%-.*s' does not encode a permitted character" msgstr "'%-.*s' অক্ষরের রেফারেন্সের মধ্যে অনুমোদিত অক্ষর এনকোড করা হয়নি" -#: ../glib/gmarkup.c:654 +#: glib/gmarkup.c:654 msgid "" "Empty entity '&;' seen; valid entities are: & " < > '" msgstr "" -"তথ্যবিহীন এনটিটি '&;' প্রদর্শিত; বৈধ এনটিটি হল: & " < > " -"'" +"তথ্যবিহীন এনটিটি '&;' প্রদর্শিত; বৈধ এনটিটি হল: & " < > '" -#: ../glib/gmarkup.c:662 +#: glib/gmarkup.c:662 #, c-format msgid "Entity name '%-.*s' is not known" msgstr "এনটিটির নাম '%-.*s' অজানা" -#: ../glib/gmarkup.c:667 +#: glib/gmarkup.c:667 msgid "" "Entity did not end with a semicolon; most likely you used an ampersand " "character without intending to start an entity - escape ampersand as &" msgstr "" "এনটিটির নাম সেমিকোলোন চিহ্ন দ্বারা সমাপ্ত হয়নি; সম্ভবত আপনি এনটিটি হিসাবে " -"ব্যবহারের উদ্দেশ্যে এম্পারসেন্ড চিহ্ন ব্যবহার করেননি - & রূপে " -"এম্পারসেন্ড এস্কেপ করানো যাবে" +"ব্যবহারের উদ্দেশ্যে এম্পারসেন্ড চিহ্ন ব্যবহার করেননি - & রূপে এম্পারসেন্ড এস্কেপ " +"করানো যাবে" -#: ../glib/gmarkup.c:1014 +#: glib/gmarkup.c:1014 msgid "Document must begin with an element (e.g. <book>)" msgstr "ডকুমেন্ট কোনো এলিমেন্ট দ্বারা আরম্ভ হওয়া আবশ্যক (উদাহরণস্বরূপ <book>)" -#: ../glib/gmarkup.c:1054 +#: glib/gmarkup.c:1054 #, c-format msgid "" "'%s' is not a valid character following a '<' character; it may not begin an " @@ -415,7 +418,7 @@ msgid "" msgstr "" "'<' অক্ষরের পরে '%s'-এর ব্যবহার বৈধ নয়; এর দ্বারা এলিমেন্টের নাম আরম্ভ করা যাবে না" -#: ../glib/gmarkup.c:1122 +#: glib/gmarkup.c:1122 #, c-format msgid "" "Odd character '%s', expected a '>' character to end the empty-element tag '%" @@ -424,7 +427,7 @@ msgstr "" "'%s' অক্ষর প্রত্যাশিত নয়, '%s' ফাঁকা এলিমেন্টের প্রারম্ভিক ট্যাগ সমাপ্ত করার উদ্দেশ্যে " "'>' চিহ্ন প্রত্যাশিত" -#: ../glib/gmarkup.c:1206 +#: glib/gmarkup.c:1206 #, c-format msgid "" "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" @@ -432,7 +435,7 @@ msgstr "" "'%1$s' অক্ষর প্রত্যাশিত নয়, '%3$s' এলিমেন্টের '%2$s' নামক বৈশিষ্ট্যের নামের পরে " "একটি '=' চিহ্ন প্রত্যাশিত" -#: ../glib/gmarkup.c:1247 +#: glib/gmarkup.c:1247 #, c-format msgid "" "Odd character '%s', expected a '>' or '/' character to end the start tag of " @@ -443,7 +446,7 @@ msgstr "" "অথবা '/' চিহ্ন অথবা কোনো বৈশিষ্ট্যর উপস্থিতি কাম্য; সম্ভবত কোনো বৈশিষ্ট্যের নামের " "মধ্যে অবৈধ অক্ষর ব্যবহৃত হয়েছে" -#: ../glib/gmarkup.c:1291 +#: glib/gmarkup.c:1291 #, c-format msgid "" "Odd character '%s', expected an open quote mark after the equals sign when " @@ -452,45 +455,45 @@ msgstr "" "'%1$s' অক্ষর অপ্রত্যাশিত, '%3$s' এলিমেন্টের '%2$s' বৈশিষ্ট্যের মান নির্ধারণের " "উদ্দেশ্যে সমান চিহ্নের (=) পরে একটি উদ্ধৃতি চিহ্নের প্রারম্ভিক অংশ উপস্থিতি প্রত্যাশিত" -#: ../glib/gmarkup.c:1425 +#: glib/gmarkup.c:1425 #, c-format msgid "" "'%s' is not a valid character following the characters '</'; '%s' may not " "begin an element name" msgstr "" -"'%s' অক্ষরের ব্যবহার '</'-এর পশ্চাৎ বৈধ নয়; '%s' দ্বারা কোনো এলিমেন্টের নাম " -"আরম্ভ করা যাবে না" +"'%s' অক্ষরের ব্যবহার '</'-এর পশ্চাৎ বৈধ নয়; '%s' দ্বারা কোনো এলিমেন্টের নাম আরম্ভ " +"করা যাবে না" -#: ../glib/gmarkup.c:1461 +#: glib/gmarkup.c:1461 #, c-format msgid "" "'%s' is not a valid character following the close element name '%s'; the " "allowed character is '>'" msgstr "" -"'%2$s' বদ্ধ এলিমেন্টের নামের পশ্চাৎ '%1$s' অক্ষরের ব্যবহার বৈধ নয়; অনুমোদিত " -"অক্ষর হল '>'" +"'%2$s' বদ্ধ এলিমেন্টের নামের পশ্চাৎ '%1$s' অক্ষরের ব্যবহার বৈধ নয়; অনুমোদিত অক্ষর " +"হল '>'" -#: ../glib/gmarkup.c:1472 +#: glib/gmarkup.c:1472 #, c-format msgid "Element '%s' was closed, no element is currently open" msgstr "'%s' এলিমেন্ট বদ্ধ অবস্থায় ছিলো, তবে বর্তমানে কোনো এলিমেন্ট খোলা অবস্থায় নেই" -#: ../glib/gmarkup.c:1481 +#: glib/gmarkup.c:1481 #, c-format msgid "Element '%s' was closed, but the currently open element is '%s'" msgstr "" "'%s' এলিমেন্ট বদ্ধ অবস্থায় ছিলো, তবে বর্তমানে '%s' এলিমেন্ট খোলা অবস্থায় রয়েছে" -#: ../glib/gmarkup.c:1648 +#: glib/gmarkup.c:1648 msgid "Document was empty or contained only whitespace" msgstr "ডকুমেন্ট ফাঁকা ছিলো অথবা শুধুমাত্র শূণ্যস্থান উপস্থিত ছিলো" -#: ../glib/gmarkup.c:1662 +#: glib/gmarkup.c:1662 msgid "Document ended unexpectedly just after an open angle bracket '<'" msgstr "" "তেরছা বন্ধনীর প্রারম্ভিক চিহ্নের '<' ঠিক পরে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে" -#: ../glib/gmarkup.c:1670 ../glib/gmarkup.c:1715 +#: glib/gmarkup.c:1670 glib/gmarkup.c:1715 #, c-format msgid "" "Document ended unexpectedly with elements still open - '%s' was the last " @@ -499,7 +502,7 @@ msgstr "" "খোলা এলিমেন্টসহ ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে - '%s' এলিমেন্ট সর্বশেষ খোলা " "হয়েছিল" -#: ../glib/gmarkup.c:1678 +#: glib/gmarkup.c:1678 #, c-format msgid "" "Document ended unexpectedly, expected to see a close angle bracket ending " @@ -508,20 +511,19 @@ msgstr "" "ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে, <%s/> ট্যাগ সমাপ্তির জন্য তেরছা বন্ধনী চিহ্নের " "অন্তিম অংশের উপস্থিতি প্রত্যাশিত" -#: ../glib/gmarkup.c:1684 +#: glib/gmarkup.c:1684 msgid "Document ended unexpectedly inside an element name" msgstr "এলিমেন্টের নামের মধ্যে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে" -#: ../glib/gmarkup.c:1690 +#: glib/gmarkup.c:1690 msgid "Document ended unexpectedly inside an attribute name" msgstr "বৈশিষ্ট্যের নামের মধ্যে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে" -#: ../glib/gmarkup.c:1695 +#: glib/gmarkup.c:1695 msgid "Document ended unexpectedly inside an element-opening tag." -msgstr "" -"এলিমেন্টের প্রারম্ভিক ট্যাগের মধ্যে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে।" +msgstr "এলিমেন্টের প্রারম্ভিক ট্যাগের মধ্যে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে।" -#: ../glib/gmarkup.c:1701 +#: glib/gmarkup.c:1701 msgid "" "Document ended unexpectedly after the equals sign following an attribute " "name; no attribute value" @@ -529,767 +531,759 @@ msgstr "" "বৈশিষ্ট্যের নামের পরে উপস্থিত সমান চিহ্নের পরে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে; " "বৈশিষ্ট্যের মান অনুপস্থিত" -#: ../glib/gmarkup.c:1708 +#: glib/gmarkup.c:1708 msgid "Document ended unexpectedly while inside an attribute value" msgstr "বৈশিষ্ট্যের মানের মধ্যে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে" -#: ../glib/gmarkup.c:1724 +#: glib/gmarkup.c:1724 #, c-format msgid "Document ended unexpectedly inside the close tag for element '%s'" msgstr "'%s' এলিমেন্টের অন্তিম ট্যাগের মধ্যে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে" -#: ../glib/gmarkup.c:1730 +#: glib/gmarkup.c:1730 msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "" "কোনো মন্তব্য অথবা প্রক্রিয়াকরণের নির্দেশের মধ্যে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে" -#: ../glib/gregex.c:131 +#: glib/gregex.c:131 msgid "corrupted object" msgstr "ক্ষতিগ্রস্ত অবজেক্ট" -#: ../glib/gregex.c:133 +#: glib/gregex.c:133 msgid "internal error or corrupted object" msgstr "অভ্যন্তরীণ সমস্যা অথবা ক্ষতিগ্রস্ত অবজেক্ট" -#: ../glib/gregex.c:135 +#: glib/gregex.c:135 msgid "out of memory" msgstr "মেমরি অবশিষ্ট নেই" -#: ../glib/gregex.c:140 +#: glib/gregex.c:140 msgid "backtracking limit reached" msgstr "ব্যাক-ট্যাক করার সুনির্দিষ্ট সীমা পূর্ণ" -#: ../glib/gregex.c:152 ../glib/gregex.c:160 +#: glib/gregex.c:152 glib/gregex.c:160 msgid "the pattern contains items not supported for partial matching" msgstr "উল্লিখিত বিন্যাসটির মধ্যে অন্তর্ভুক্ত সামগ্রী, আংশিক মিল অনুসন্ধানে সমর্থিত নয়" -#: ../glib/gregex.c:154 ../gio/glocalfile.c:2115 +#: glib/gregex.c:154 gio/glocalfile.c:2115 msgid "internal error" msgstr "অভ্যন্তরীণ ত্রুটি" -#: ../glib/gregex.c:162 +#: glib/gregex.c:162 msgid "back references as conditions are not supported for partial matching" msgstr "আংশিক মিল অনুসন্ধানের সময় ব্যাক রেফারেন্স সমর্থিত নয়" -#: ../glib/gregex.c:171 +#: glib/gregex.c:171 msgid "recursion limit reached" msgstr "পুনরাবৃত্তির সীমা পূর্ণ" -#: ../glib/gregex.c:173 +#: glib/gregex.c:173 msgid "workspace limit for empty substrings reached" msgstr "ফাঁকা সাবস্ট্রিং-এর কর্মক্ষেত্রের সীমা পূর্ণ" -#: ../glib/gregex.c:175 +#: glib/gregex.c:175 msgid "invalid combination of newline flags" msgstr "নতুন রেখা চিহ্নকারী ফ্ল্যাগের অবৈধ সমষ্টি" -#: ../glib/gregex.c:179 +#: glib/gregex.c:179 msgid "unknown error" msgstr "অজানা ত্রুটি" -#: ../glib/gregex.c:199 +#: glib/gregex.c:199 msgid "\\ at end of pattern" msgstr "প্যাটার্নের শেষে \\ উপস্থিত" -#: ../glib/gregex.c:202 +#: glib/gregex.c:202 msgid "\\c at end of pattern" msgstr "প্যাটার্নের শেষে \\c উপস্থিত" -#: ../glib/gregex.c:205 +#: glib/gregex.c:205 msgid "unrecognized character follows \\" msgstr "\\-এর পরে অজ্ঞাত অক্ষর উপস্থিত " -#: ../glib/gregex.c:212 +#: glib/gregex.c:212 msgid "case-changing escapes (\\l, \\L, \\u, \\U) are not allowed here" msgstr "" "হরফের ছাঁদ পরিবর্তনকারী এস্কেপ অক্ষর (\\l, \\L, \\u, \\U) এখানে ব্যবহার করা যায় না" -#: ../glib/gregex.c:215 +#: glib/gregex.c:215 msgid "numbers out of order in {} quantifier" msgstr "{} কোয়ান্টিফায়ারের মধ্যে উল্লিখিত সংখ্যাগুলো ক্রমবিহীন" -#: ../glib/gregex.c:218 +#: glib/gregex.c:218 msgid "number too big in {} quantifier" msgstr "{} কোয়ান্টিফায়ারের সংখ্যা অত্যাধিক বড়" -#: ../glib/gregex.c:221 +#: glib/gregex.c:221 msgid "missing terminating ] for character class" msgstr "অক্ষরের ক্লাসের শেষে ] চিহ্ন অনুপস্থিত" -#: ../glib/gregex.c:224 +#: glib/gregex.c:224 msgid "invalid escape sequence in character class" msgstr "অক্ষরের ক্লাসের মধ্যে অকার্যকর এস্কেপ সিকোয়েন্স" -#: ../glib/gregex.c:227 +#: glib/gregex.c:227 msgid "range out of order in character class" msgstr "অক্ষরের ক্লাসের মধ্যে উল্লিখিত সীমা ক্রমবহির্ভূত" -#: ../glib/gregex.c:230 +#: glib/gregex.c:230 msgid "nothing to repeat" msgstr "পুনরাবৃত্তির জন্য কিছু নেই" -#: ../glib/gregex.c:233 +#: glib/gregex.c:233 msgid "unrecognized character after (?" msgstr "(? চিহ্নের পরে অজ্ঞাত অক্ষর উপস্থিত" -#: ../glib/gregex.c:237 +#: glib/gregex.c:237 msgid "unrecognized character after (?<" msgstr "(?< চিহ্নের পরে অজ্ঞাত অক্ষর উপস্থিত" -#: ../glib/gregex.c:241 +#: glib/gregex.c:241 msgid "unrecognized character after (?P" msgstr "(?P চিহ্নের পরে অজ্ঞাত অক্ষর উপস্থিত" -#: ../glib/gregex.c:244 +#: glib/gregex.c:244 msgid "POSIX named classes are supported only within a class" msgstr "POSIX named ক্লাসগুলি শুধুমাত্র ক্লাসের মধ্যে সমর্থিত হবে" -#: ../glib/gregex.c:247 +#: glib/gregex.c:247 msgid "missing terminating )" msgstr "শেষে ) অনুপস্থিত" -#: ../glib/gregex.c:251 +#: glib/gregex.c:251 msgid ") without opening (" msgstr "( চিহ্ন বিনা ) চিহ্ন ব্যবহার করা হয়েছে" #. translators: '(?R' and '(?[+-]digits' are both meant as (groups of) #. * sequences here, '(?-54' would be an example for the second group. #. -#: ../glib/gregex.c:258 +#: glib/gregex.c:258 msgid "(?R or (?[+-]digits must be followed by )" msgstr "(?R অথবা (?[+-]সংখ্যা-এর পরে ) চিহ্ন ব্যবহার করা আবশ্যক" -#: ../glib/gregex.c:261 +#: glib/gregex.c:261 msgid "reference to non-existent subpattern" msgstr "অনুপস্থিত সাব-প্যাটার্ন নির্দেশ করা হয়েছে" -#: ../glib/gregex.c:264 +#: glib/gregex.c:264 msgid "missing ) after comment" msgstr "বক্তব্যের পরে ) চিহ্ন অনুপস্থিত" -#: ../glib/gregex.c:267 +#: glib/gregex.c:267 msgid "regular expression too large" msgstr "রেগুলার এক্সপ্রেশনটি অত্যাধিক লম্বা" -#: ../glib/gregex.c:270 +#: glib/gregex.c:270 msgid "failed to get memory" msgstr "মেমরি গ্রহন করতে ব্যর্থ" -#: ../glib/gregex.c:273 +#: glib/gregex.c:273 msgid "lookbehind assertion is not fixed length" msgstr "লুক-বিহাইন্ড অ্যাসারশনের দৈর্ঘ্য সুনির্দিষ্ট নয়" -#: ../glib/gregex.c:276 +#: glib/gregex.c:276 msgid "malformed number or name after (?(" msgstr "(?(-এর পরে ত্রুটিপূর্ণ সংখ্যা অথবা নাম উপস্থিত রয়েছে" -#: ../glib/gregex.c:279 +#: glib/gregex.c:279 msgid "conditional group contains more than two branches" msgstr "অবস্থাভিত্তিক দলের মধ্যে দুটির বেশি শ্রেণী উপস্থিত রয়েছে" -#: ../glib/gregex.c:282 +#: glib/gregex.c:282 msgid "assertion expected after (?(" msgstr "(?(-এর পরে অ্যাসারশন প্রত্যাশিত" -#: ../glib/gregex.c:285 +#: glib/gregex.c:285 msgid "unknown POSIX class name" msgstr "অজানা POSIX ক্লাসের নাম" -#: ../glib/gregex.c:288 +#: glib/gregex.c:288 msgid "POSIX collating elements are not supported" msgstr "POSIX কোলেটিং এলিমেন্ট সমর্থিত নয়" -#: ../glib/gregex.c:291 +#: glib/gregex.c:291 msgid "character value in \\x{...} sequence is too large" msgstr "\\x{...} অনুক্রমের মধ্যে উপস্থিত অক্ষরের মান অত্যাধিক বড়" -#: ../glib/gregex.c:294 +#: glib/gregex.c:294 msgid "invalid condition (?(0)" msgstr "অবৈধ কন্ডিশন (?(0)" -#: ../glib/gregex.c:297 +#: glib/gregex.c:297 msgid "\\C not allowed in lookbehind assertion" msgstr "লুক-বিহাইন্ড অ্যাসারশনের মধ্যে \\C অনুমোদিত নয়" -#: ../glib/gregex.c:300 +#: glib/gregex.c:300 msgid "recursive call could loop indefinitely" msgstr "রিকার্সিভ কল-টি সীমাহীন সংখ্যায় লুপ করতে পারবে" -#: ../glib/gregex.c:303 +#: glib/gregex.c:303 msgid "missing terminator in subpattern name" msgstr "সাব-প্যাটার্ন নামের মধ্যে সমাপ্তি নির্দেশক অনুপস্থিত" -#: ../glib/gregex.c:306 +#: glib/gregex.c:306 msgid "two named subpatterns have the same name" msgstr "দুটি named সাব-প্যাটার্নের ক্ষেত্রে একই নাম ব্যবহার করা হয়েছে" -#: ../glib/gregex.c:309 +#: glib/gregex.c:309 msgid "malformed \\P or \\p sequence" msgstr "ত্রুটিপূর্ণ \\P অথবা \\p সিকোয়েন্স" -#: ../glib/gregex.c:312 +#: glib/gregex.c:312 msgid "unknown property name after \\P or \\p" msgstr "\\P অথবা \\p-এর পরে অজানা প্রপার্টির নাম" -#: ../glib/gregex.c:315 +#: glib/gregex.c:315 msgid "subpattern name is too long (maximum 32 characters)" msgstr "সাব-প্যাটার্নের নাম অত্যাধিক লম্বা (সর্বাধিক ৩২-টি অক্ষর)" -#: ../glib/gregex.c:318 +#: glib/gregex.c:318 msgid "too many named subpatterns (maximum 10,000)" msgstr "নামসহ অত্যাধিক সাব-প্যাটার্ন (সর্বাধিক ১০,০০০)" -#: ../glib/gregex.c:321 +#: glib/gregex.c:321 msgid "octal value is greater than \\377" msgstr "অক্টাল মান \\377-এর অধিক" -#: ../glib/gregex.c:324 +#: glib/gregex.c:324 msgid "DEFINE group contains more than one branch" msgstr "DEFINE দলের মধ্যে একাধিক ব্রাঞ্চ উপস্থিত রয়েছে" -#: ../glib/gregex.c:327 +#: glib/gregex.c:327 msgid "repeating a DEFINE group is not allowed" msgstr "কোনো DEFINE দলের পুনরাবৃত্তি করা যাবে না" -#: ../glib/gregex.c:330 +#: glib/gregex.c:330 msgid "inconsistent NEWLINE options" msgstr "বিসংগত NEWLINE বিকল্প" -#: ../glib/gregex.c:333 +#: glib/gregex.c:333 msgid "" "\\g is not followed by a braced name or an optionally braced non-zero number" msgstr "\\g-এর পরে braced নাম অথবা ঐচ্ছিকরূপে শূণ্য ভিন্ন braced সংখ্যা উপস্থিত নেই" -#: ../glib/gregex.c:338 +#: glib/gregex.c:338 msgid "unexpected repeat" msgstr "অপ্রত্যাশিত পুনরাবৃত্তি" -#: ../glib/gregex.c:342 +#: glib/gregex.c:342 msgid "code overflow" msgstr "কোড ওভার-ফ্লো" -#: ../glib/gregex.c:346 +#: glib/gregex.c:346 msgid "overran compiling workspace" msgstr "কম্পাইল করার কর্মক্ষেত্র অতিক্রান্ত হয়েছে" -#: ../glib/gregex.c:350 +#: glib/gregex.c:350 msgid "previously-checked referenced subpattern not found" msgstr "পূর্বে পরীক্ষিত রেফারেন্স করা সাব-প্যাটার্ন পাওয়া যায়নি" -#: ../glib/gregex.c:522 ../glib/gregex.c:1603 +#: glib/gregex.c:522 glib/gregex.c:1603 #, c-format msgid "Error while matching regular expression %s: %s" msgstr "রেগুলার এক্সপ্রেশন %s-এর মিল অনুসন্ধানে সমস্যা: %s" -#: ../glib/gregex.c:1094 +#: glib/gregex.c:1094 msgid "PCRE library is compiled without UTF8 support" msgstr "PCRE লাইব্রেরি UTF8 সমর্থন ছাড়া কম্পাইল করা হয়েছে" -#: ../glib/gregex.c:1103 +#: glib/gregex.c:1103 msgid "PCRE library is compiled without UTF8 properties support" msgstr "PCRE লাইব্রেরি UTF8 বৈশিষ্ট্যের সমর্থন ছাড়া কম্পাইল করা হয়েছে" -#: ../glib/gregex.c:1157 +#: glib/gregex.c:1157 #, c-format msgid "Error while compiling regular expression %s at char %d: %s" msgstr "রেগুলার এক্সপ্রেশন %s, %d অক্ষরে কম্পাইল করতে সমস্যা: %s" -#: ../glib/gregex.c:1193 +#: glib/gregex.c:1193 #, c-format msgid "Error while optimizing regular expression %s: %s" msgstr "রেগুলার এক্সপ্রেশন %s-এর সেরা-অনুকূল করতে সমস্যা: %s" -#: ../glib/gregex.c:2031 +#: glib/gregex.c:2031 msgid "hexadecimal digit or '}' expected" msgstr "হেক্সাডেসিমাল সংখ্যা অথবা '}' প্রত্যাশিত" -#: ../glib/gregex.c:2047 +#: glib/gregex.c:2047 msgid "hexadecimal digit expected" msgstr "হেক্সাডেসিমাল সংখ্যা প্রত্যাশিত" -#: ../glib/gregex.c:2087 +#: glib/gregex.c:2087 msgid "missing '<' in symbolic reference" msgstr "সিম্বলিক রেফারেন্সের মধ্যে '<' অনুপস্থিত" -#: ../glib/gregex.c:2096 +#: glib/gregex.c:2096 msgid "unfinished symbolic reference" msgstr "সিম্বলিক রেফারেন্স অসম্পূর্ণ" -#: ../glib/gregex.c:2103 +#: glib/gregex.c:2103 msgid "zero-length symbolic reference" msgstr "সিম্বলিক রেফারেন্সের মধ্যে অক্ষর সংখ্যা শূণ্য" -#: ../glib/gregex.c:2114 +#: glib/gregex.c:2114 msgid "digit expected" msgstr "সংখ্যা প্রত্যাশিত" -#: ../glib/gregex.c:2132 +#: glib/gregex.c:2132 msgid "illegal symbolic reference" msgstr "অবৈধ সিম্বলিক রেফারেন্স" -#: ../glib/gregex.c:2194 +#: glib/gregex.c:2194 msgid "stray final '\\'" msgstr "অন্তে অপ্রত্যাশিত '\\'" -#: ../glib/gregex.c:2198 +#: glib/gregex.c:2198 msgid "unknown escape sequence" msgstr "অজানা এস্কেপ সিকোয়েন্স" -#: ../glib/gregex.c:2208 +#: glib/gregex.c:2208 #, c-format msgid "Error while parsing replacement text \"%s\" at char %lu: %s" msgstr "প্রতিস্থাপনার টেক্সট \"%s\", %lu অক্ষরে পার্স করতে সমস্যা: %s" -#: ../glib/gshell.c:92 +#: glib/gshell.c:92 msgid "Quoted text doesn't begin with a quotation mark" msgstr "উদ্ধৃতির অংশ উদ্ধিতি চিহ্ন দ্বারা আরম্ভ করা হয়নি" -#: ../glib/gshell.c:182 +#: glib/gshell.c:182 msgid "Unmatched quotation mark in command line or other shell-quoted text" msgstr "কমান্ড-লাইন অথবা শেল-এর উদ্ধৃতির মধ্যে অসংগত উদ্ধৃতি চিহ্ন" -#: ../glib/gshell.c:560 +#: glib/gshell.c:560 #, c-format msgid "Text ended just after a '\\' character. (The text was '%s')" msgstr "'\\' অক্ষরের পরে টেক্সট সমাপ্ত হয়েছে। (সংশ্লিষ্ট টেক্সট হল '%s')" -#: ../glib/gshell.c:567 +#: glib/gshell.c:567 #, c-format msgid "Text ended before matching quote was found for %c. (The text was '%s')" msgstr "%c-এর ক্ষেত্রে সুসংগত উদ্ধৃতি চিহ্ন পাওয়া যায়নি। (সংশ্লিষ্ট টেক্সট হল '%s')" -#: ../glib/gshell.c:579 +#: glib/gshell.c:579 msgid "Text was empty (or contained only whitespace)" msgstr "টেক্সট ফাঁকা (অথবা শুধুমাত্র শূণ্যস্থানসহ)" -#: ../glib/gspawn-win32.c:283 +#: glib/gspawn-win32.c:283 msgid "Failed to read data from child process" msgstr "চাইল্ড প্রসেস থেকে তথ্য পড়তে ব্যর্থ" -#: ../glib/gspawn-win32.c:300 ../glib/gspawn.c:1480 +#: glib/gspawn-win32.c:300 glib/gspawn.c:1480 #, c-format msgid "Failed to create pipe for communicating with child process (%s)" msgstr "চাইল্ড প্রসেসের সাথে যোগাযোগের উদ্দেশ্যে পাইপ তৈরি করতে ব্যর্থ (%s)" -#: ../glib/gspawn-win32.c:339 ../glib/gspawn-win32.c:347 ../glib/gspawn.c:1139 +#: glib/gspawn-win32.c:339 glib/gspawn-win32.c:347 glib/gspawn.c:1139 #, c-format msgid "Failed to read from child pipe (%s)" msgstr "চাইল্ড পাইপ থেকে পড়তে ব্যর্থ (%s)" -#: ../glib/gspawn-win32.c:370 ../glib/gspawn.c:1346 +#: glib/gspawn-win32.c:370 glib/gspawn.c:1346 #, c-format msgid "Failed to change to directory '%s' (%s)" msgstr "'%s' ডিরেক্টরিতে পরিবর্তন করতে ব্যর্থ (%s)" -#: ../glib/gspawn-win32.c:376 ../glib/gspawn-win32.c:495 +#: glib/gspawn-win32.c:376 glib/gspawn-win32.c:495 #, c-format msgid "Failed to execute child process (%s)" msgstr "চাইল্ড প্রসেস কার্যকর করতে ব্যর্থ (%s)" -#: ../glib/gspawn-win32.c:445 +#: glib/gspawn-win32.c:445 #, c-format msgid "Invalid program name: %s" msgstr "প্রোগ্রামের নাম অবৈধ: %s" -#: ../glib/gspawn-win32.c:455 ../glib/gspawn-win32.c:723 -#: ../glib/gspawn-win32.c:1279 +#: glib/gspawn-win32.c:455 glib/gspawn-win32.c:723 glib/gspawn-win32.c:1279 #, c-format msgid "Invalid string in argument vector at %d: %s" msgstr "%d-তে আর্গুমেন্ট ভেক্টর-এ উল্লিখিত স্ট্রিংটি বৈধ নয়: %s" -#: ../glib/gspawn-win32.c:466 ../glib/gspawn-win32.c:738 -#: ../glib/gspawn-win32.c:1312 +#: glib/gspawn-win32.c:466 glib/gspawn-win32.c:738 glib/gspawn-win32.c:1312 #, c-format msgid "Invalid string in environment: %s" msgstr "পরিবেশের মধ্যে উল্লিখিত স্ট্রিং বৈধ নয়: %s" -#: ../glib/gspawn-win32.c:719 ../glib/gspawn-win32.c:1260 +#: glib/gspawn-win32.c:719 glib/gspawn-win32.c:1260 #, c-format msgid "Invalid working directory: %s" msgstr "সক্রিয় ডিরেক্টরি বৈধ নয়: %s" -#: ../glib/gspawn-win32.c:784 +#: glib/gspawn-win32.c:784 #, c-format msgid "Failed to execute helper program (%s)" msgstr "সহায়ক প্রোগ্রাম চালাতে ব্যর্থ (%s)" -#: ../glib/gspawn-win32.c:998 +#: glib/gspawn-win32.c:998 msgid "" "Unexpected error in g_io_channel_win32_poll() reading data from a child " "process" msgstr "" "চাইল্ড প্রসেস থেকে তথ্য পড়ার সময় g_io_channel_win32_poll()-এ অপ্রত্যাশিত ত্রুটি" -#: ../glib/gspawn.c:190 +#: glib/gspawn.c:190 #, c-format msgid "Failed to read data from child process (%s)" msgstr "চাইল্ড প্রসেস থেকে তথ্য পড়তে ব্যর্থ (%s)" -#: ../glib/gspawn.c:329 +#: glib/gspawn.c:329 #, c-format msgid "Unexpected error in select() reading data from a child process (%s)" msgstr "চাইল্ড প্রসেস থেকে তথ্য পড়ার সময় select() সংক্রান্ত অপ্রত্যাশিত ত্রুটি (%s)" -#: ../glib/gspawn.c:414 +#: glib/gspawn.c:414 #, c-format msgid "Unexpected error in waitpid() (%s)" msgstr "waitpid()-তে অপ্রত্যাশিত ত্রুটি (%s)" -#: ../glib/gspawn.c:1206 +#: glib/gspawn.c:1206 #, c-format msgid "Failed to fork (%s)" msgstr "fork করতে ব্যর্থ (%s)" -#: ../glib/gspawn.c:1356 +#: glib/gspawn.c:1356 #, c-format msgid "Failed to execute child process \"%s\" (%s)" msgstr "চাইল্ড প্রসেস \"%s\" চালাতে ব্যর্থ (%s)" -#: ../glib/gspawn.c:1366 +#: glib/gspawn.c:1366 #, c-format msgid "Failed to redirect output or input of child process (%s)" msgstr "চাইল্ড প্রসেসের আউটপুট অথবা ইনপুট রি-ডাইরেক্ট করতে ব্যর্থ (%s)" -#: ../glib/gspawn.c:1375 +#: glib/gspawn.c:1375 #, c-format msgid "Failed to fork child process (%s)" msgstr "চাইল্ড প্রসেস fork করতে ব্যর্থ (%s)" -#: ../glib/gspawn.c:1383 +#: glib/gspawn.c:1383 #, c-format msgid "Unknown error executing child process \"%s\"" msgstr "চাইল্ড প্রসেস \"%s\" কার্যকর করতে অজানা সমস্যা" -#: ../glib/gspawn.c:1407 +#: glib/gspawn.c:1407 #, c-format msgid "Failed to read enough data from child pid pipe (%s)" msgstr "চাইল্ড pid পাইপ থেকে পর্যাপ্ত তথ্য পড়তে ব্যর্থ (%s)" -#: ../glib/gutf8.c:1054 +#: glib/gutf8.c:1055 msgid "Character out of range for UTF-8" msgstr "অক্ষরটি UTF-8-এর আয়ত্বের বাইরে" -#: ../glib/gutf8.c:1154 ../glib/gutf8.c:1163 ../glib/gutf8.c:1295 -#: ../glib/gutf8.c:1304 ../glib/gutf8.c:1445 ../glib/gutf8.c:1541 +#: glib/gutf8.c:1155 glib/gutf8.c:1164 glib/gutf8.c:1296 glib/gutf8.c:1305 +#: glib/gutf8.c:1446 glib/gutf8.c:1542 msgid "Invalid sequence in conversion input" msgstr "রূপান্তর করার উদ্দেশ্যে প্রদত্ত তথ্যের মধ্যে অবৈধ ধারা" -#: ../glib/gutf8.c:1456 ../glib/gutf8.c:1552 +#: glib/gutf8.c:1457 glib/gutf8.c:1553 msgid "Character out of range for UTF-16" msgstr "অক্ষরটি UTF-16-এর আয়ত্বের বাইরে" -#: ../glib/goption.c:755 +#: glib/goption.c:755 msgid "Usage:" msgstr "ব্যবহারপ্রণালী:" -#: ../glib/goption.c:755 +#: glib/goption.c:755 msgid "[OPTION...]" msgstr "[OPTION...]" -#: ../glib/goption.c:861 +#: glib/goption.c:861 msgid "Help Options:" msgstr "সহায়তা সংক্রান্ত অপশন:" -#: ../glib/goption.c:862 +#: glib/goption.c:862 msgid "Show help options" msgstr "সহায়তা সংক্রান্ত অপশন প্রদর্শন করা হবে" -#: ../glib/goption.c:868 +#: glib/goption.c:868 msgid "Show all help options" msgstr "সহায়তা সংক্রান্ত সমস্ত অপশন প্রদর্শন করা হবে" -#: ../glib/goption.c:930 +#: glib/goption.c:930 msgid "Application Options:" msgstr "অ্যাপ্লিকেশন সংক্রান্ত অপশন:" -#: ../glib/goption.c:992 ../glib/goption.c:1062 +#: glib/goption.c:992 glib/goption.c:1062 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "%2$s-এর জন্য '%1$s'-এর পূর্ণসংখ্যা মান পার্স করতে ব্যর্থ" -#: ../glib/goption.c:1002 ../glib/goption.c:1070 +#: glib/goption.c:1002 glib/goption.c:1070 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "%2$s-এর জন্য '%1$s'-এর পূর্ণসংখ্যা মান সীমা বহির্ভূত" -#: ../glib/goption.c:1027 +#: glib/goption.c:1027 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "%2$s-এর জন্য '%1$s'-এর দ্বিগুণ মান পার্স করতে ব্যর্থ" -#: ../glib/goption.c:1035 +#: glib/goption.c:1035 #, c-format msgid "Double value '%s' for %s out of range" msgstr "%2$s-এর জন্য '%1$s'-এর দ্বিগুণ মান সীমা বহির্ভূত" -#: ../glib/goption.c:1298 ../glib/goption.c:1377 +#: glib/goption.c:1298 glib/goption.c:1377 #, c-format msgid "Error parsing option %s" msgstr "%s অপশন পার্স করতে ব্যর্থ" -#: ../glib/goption.c:1408 ../glib/goption.c:1522 +#: glib/goption.c:1408 glib/goption.c:1522 #, c-format msgid "Missing argument for %s" msgstr "%s-এর আর্গুমেন্ট অনুপস্থিত" -#: ../glib/goption.c:1917 +#: glib/goption.c:1917 #, c-format msgid "Unknown option %s" msgstr "অজানা অপশন %s" -#: ../glib/gkeyfile.c:361 +#: glib/gkeyfile.c:361 msgid "Valid key file could not be found in search dirs" msgstr "অনুসন্ধানের ডিরেক্টরিতে মধ্যে কার্যকর কি-ফাইল পাওয়া যায়নি" -#: ../glib/gkeyfile.c:396 +#: glib/gkeyfile.c:396 msgid "Not a regular file" msgstr "সাধারণ ফাইল নয়" -#: ../glib/gkeyfile.c:404 +#: glib/gkeyfile.c:404 msgid "File is empty" msgstr "ফাইল ফাঁকা" -#: ../glib/gkeyfile.c:763 +#: glib/gkeyfile.c:763 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" -msgstr "" -"কী-ফাইলের মধ্যে '%s' রেখাটি রয়েছে, এটি কী-মান জুটি, গ্রুপ অথবা মন্তব্য নয়" +msgstr "কী-ফাইলের মধ্যে '%s' রেখাটি রয়েছে, এটি কী-মান জুটি, গ্রুপ অথবা মন্তব্য নয়" -#: ../glib/gkeyfile.c:823 +#: glib/gkeyfile.c:823 #, c-format msgid "Invalid group name: %s" msgstr "দলের নাম অকার্যকর: %s" -#: ../glib/gkeyfile.c:845 +#: glib/gkeyfile.c:845 msgid "Key file does not start with a group" msgstr "কী-ফাইলের প্রারম্ভে কোনো গ্রুপ উল্লিখিত নেই" -#: ../glib/gkeyfile.c:871 +#: glib/gkeyfile.c:871 #, c-format msgid "Invalid key name: %s" msgstr "কী-এর নাম অকার্যকর: %s" -#: ../glib/gkeyfile.c:898 +#: glib/gkeyfile.c:898 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "কী-ফাইলের মধ্যে অসমর্থিত এনকোডিং '%s'" -#: ../glib/gkeyfile.c:1114 ../glib/gkeyfile.c:1276 ../glib/gkeyfile.c:2505 -#: ../glib/gkeyfile.c:2571 ../glib/gkeyfile.c:2706 ../glib/gkeyfile.c:2839 -#: ../glib/gkeyfile.c:2992 ../glib/gkeyfile.c:3179 ../glib/gkeyfile.c:3240 +#: glib/gkeyfile.c:1114 glib/gkeyfile.c:1276 glib/gkeyfile.c:2505 +#: glib/gkeyfile.c:2571 glib/gkeyfile.c:2706 glib/gkeyfile.c:2839 +#: glib/gkeyfile.c:2992 glib/gkeyfile.c:3179 glib/gkeyfile.c:3240 #, c-format msgid "Key file does not have group '%s'" msgstr "কী-ফাইলের মধ্যে কোনো গ্রুপ অনুপস্থিত '%s'" -#: ../glib/gkeyfile.c:1288 +#: glib/gkeyfile.c:1288 #, c-format msgid "Key file does not have key '%s'" msgstr "কী-ফাইলের মধ্যে কোনো '%s' কি উপস্থিত নেই" -#: ../glib/gkeyfile.c:1395 ../glib/gkeyfile.c:1510 +#: glib/gkeyfile.c:1395 glib/gkeyfile.c:1510 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "" -"কী-ফাইলের মধ্যে '%2$s' মান সহ '%1$s' কি উপস্থিত রয়েছে যা UTF-8 বিন্যাসে " -"নেই।" +"কী-ফাইলের মধ্যে '%2$s' মান সহ '%1$s' কি উপস্থিত রয়েছে যা UTF-8 বিন্যাসে নেই।" -#: ../glib/gkeyfile.c:1415 ../glib/gkeyfile.c:1909 +#: glib/gkeyfile.c:1415 glib/gkeyfile.c:1909 #, c-format msgid "Key file contains key '%s' which has value that cannot be interpreted." msgstr "কী-ফাইলের মধ্যে '%s' কি উপস্থিত রয়েছে যার মান ব্যাখ্যা করা সম্ভব নয়।" -#: ../glib/gkeyfile.c:1530 +#: glib/gkeyfile.c:1530 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." msgstr "কী-ফাইলের মধ্যে '%s' কি উপস্থিত রয়েছে যার মান ব্যাখ্যা করা সম্ভব নয়।" -#: ../glib/gkeyfile.c:2124 ../glib/gkeyfile.c:2336 +#: glib/gkeyfile.c:2124 glib/gkeyfile.c:2336 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has value that cannot be " "interpreted." msgstr "" -"কী-ফাইলের মধ্যে '%2$s' গ্রুপে '%1$s' কি উপস্থিত রয়েছে যার মান ব্যাখ্যা করা " -"সম্ভব নয়।" +"কী-ফাইলের মধ্যে '%2$s' গ্রুপে '%1$s' কি উপস্থিত রয়েছে যার মান ব্যাখ্যা করা সম্ভব নয়।" -#: ../glib/gkeyfile.c:2520 ../glib/gkeyfile.c:2721 ../glib/gkeyfile.c:3251 +#: glib/gkeyfile.c:2520 glib/gkeyfile.c:2721 glib/gkeyfile.c:3251 #, c-format msgid "Key file does not have key '%s' in group '%s'" msgstr "কী-ফাইলের মধ্যে '%2$s' গ্রুপে '%1$s' কি উপস্থিত নেই" -#: ../glib/gkeyfile.c:3485 +#: glib/gkeyfile.c:3485 msgid "Key file contains escape character at end of line" msgstr "কী-ফাইলের মধ্যে রেখার অবশেষে এস্কেপ অক্ষর উপস্থিত রয়েছে" -#: ../glib/gkeyfile.c:3507 +#: glib/gkeyfile.c:3507 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "কী-ফাইলের মধ্যে অকার্যকর এস্কেপ ধারা উপস্থিত রয়েছে '%s'" -#: ../glib/gkeyfile.c:3649 +#: glib/gkeyfile.c:3649 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "'%s' মান কোনো সংখ্যারূপে ব্যাখ্যা করা সম্ভব নয়।" -#: ../glib/gkeyfile.c:3663 +#: glib/gkeyfile.c:3663 #, c-format msgid "Integer value '%s' out of range" msgstr "'%s' পূর্ণসংখ্যা মান সীমা বহির্ভূত" -#: ../glib/gkeyfile.c:3696 +#: glib/gkeyfile.c:3696 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "'%s' মান ফ্লোট সংখ্যা রূপে ব্যাখ্যা করা সম্ভব নয়।" -#: ../glib/gkeyfile.c:3720 +#: glib/gkeyfile.c:3720 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "'%s' মান বুলিয়ান রূপে ব্যাখ্যা করা সম্ভব নয়।" -#: ../gio/gbufferedinputstream.c:415 ../gio/gbufferedinputstream.c:496 -#: ../gio/ginputstream.c:186 ../gio/ginputstream.c:318 -#: ../gio/ginputstream.c:557 ../gio/ginputstream.c:682 -#: ../gio/goutputstream.c:198 ../gio/goutputstream.c:657 +#: gio/gbufferedinputstream.c:415 gio/gbufferedinputstream.c:496 +#: gio/ginputstream.c:186 gio/ginputstream.c:318 gio/ginputstream.c:557 +#: gio/ginputstream.c:682 gio/goutputstream.c:198 gio/goutputstream.c:657 #, c-format msgid "Too large count value passed to %s" msgstr "%s-এর জন্য উল্লিখিত গণনার মান অত্যাধিক বড়" -#: ../gio/gbufferedinputstream.c:883 ../gio/ginputstream.c:892 -#: ../gio/giostream.c:305 ../gio/goutputstream.c:1108 +#: gio/gbufferedinputstream.c:883 gio/ginputstream.c:892 gio/giostream.c:305 +#: gio/goutputstream.c:1108 msgid "Stream is already closed" msgstr "স্ট্রিম বর্তমান বন্ধ হয়েছে" -#: ../gio/gcancellable.c:433 ../gio/glocalfile.c:2108 -#: ../gio/gsimpleasyncresult.c:651 ../gio/gsimpleasyncresult.c:677 +#: gio/gcancellable.c:433 gio/glocalfile.c:2108 gio/gsimpleasyncresult.c:651 +#: gio/gsimpleasyncresult.c:677 msgid "Operation was cancelled" msgstr "কর্ম বাতিল করা হয়েছে" -#: ../gio/gcharsetconverter.c:264 +#: gio/gcharsetconverter.c:264 msgid "Invalid object, not initialized" msgstr "অকার্যকর অবজেক্ট, আরম্ভ করা হয়নি" -#: ../gio/gcharsetconverter.c:285 ../gio/gcharsetconverter.c:313 +#: gio/gcharsetconverter.c:285 gio/gcharsetconverter.c:313 msgid "Incomplete multibyte sequence in input" msgstr "রূপান্তর করার জন্য প্রদত্ত ইনপুটের মধ্যে বাইটের অনুক্রম সম্পূর্ন নয়" -#: ../gio/gcharsetconverter.c:319 ../gio/gcharsetconverter.c:328 +#: gio/gcharsetconverter.c:319 gio/gcharsetconverter.c:328 msgid "Not enough space in destination" msgstr "গন্তব্যের জন্য পর্যাপ্ত স্থান নেই" -#: ../gio/gcharsetconverter.c:448 ../gio/gsocket.c:758 +#: gio/gcharsetconverter.c:448 gio/gsocket.c:772 msgid "Cancellable initialization not supported" msgstr "বাতিল করার যোগ্য প্রারম্ভিক কর্ম সমর্থিত নয়" -#: ../gio/gcontenttype.c:180 +#: gio/gcontenttype.c:180 msgid "Unknown type" msgstr "অজানা প্রকৃতি" -#: ../gio/gcontenttype.c:181 +#: gio/gcontenttype.c:181 #, c-format msgid "%s filetype" msgstr "%s ফাইলের ধরন" -#: ../gio/gcontenttype.c:681 +#: gio/gcontenttype.c:681 #, c-format msgid "%s type" msgstr "%s ধরণ" -#: ../gio/gdatainputstream.c:311 +#: gio/gdatainputstream.c:311 msgid "Unexpected early end-of-stream" msgstr "স্ট্রিমের সমাপ্তিস্থল অপ্রত্যাশিতভাবে শীঘ্রই পাওয়া গিয়েছে" -#: ../gio/gdesktopappinfo.c:468 ../gio/gwin32appinfo.c:222 +#: gio/gdesktopappinfo.c:468 gio/gwin32appinfo.c:222 msgid "Unnamed" msgstr "নামবিহীন" -#: ../gio/gdesktopappinfo.c:725 +#: gio/gdesktopappinfo.c:742 msgid "Desktop file didn't specify Exec field" msgstr "ডেস্কটপ ফাইলের মধ্যে Exec ফিল্ড উল্লেখ করা নেই" -#: ../gio/gdesktopappinfo.c:907 +#: gio/gdesktopappinfo.c:924 msgid "Unable to find terminal required for application" msgstr "অ্যাপ্লিকেশনের জন্য আবশ্যক টার্মিনাল পাওয়া যায়নি" -#: ../gio/gdesktopappinfo.c:1115 +#: gio/gdesktopappinfo.c:1132 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "ব্যবহারকারী অ্যাপ্লিকেশনের কনফিগারেশন ফোল্ডার %s তৈরি করতে ব্যর্থ: %s" -#: ../gio/gdesktopappinfo.c:1119 +#: gio/gdesktopappinfo.c:1136 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "ব্যবহারকারী MIME কনফিগারেশন ফোল্ডার %s তৈরি করতে ব্যর্থ: %s" -#: ../gio/gdesktopappinfo.c:1527 +#: gio/gdesktopappinfo.c:1544 #, c-format msgid "Can't create user desktop file %s" msgstr "ব্যবহারকারী ডেস্কটপ ফাইল %s তৈরি করতে ব্যর্থ" -#: ../gio/gdesktopappinfo.c:1641 +#: gio/gdesktopappinfo.c:1658 #, c-format msgid "Custom definition for %s" msgstr "%s-এর জন্য স্বনির্ধারিত ব্যাখ্যা" -#: ../gio/gdrive.c:364 +#: gio/gdrive.c:364 msgid "drive doesn't implement eject" msgstr "ড্রাইভটি বের হয়ে যাওয়া বাস্তবায়ন করতে পারে না" #. Translators: This is an error #. * message for drive objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gdrive.c:444 +#: gio/gdrive.c:444 msgid "drive doesn't implement eject or eject_with_operation" msgstr "" "ড্রাইভটি বের করতে অথবা যে অপারেশন দিয়ে বের করা হবে বাস্তবায়ন করতে পারে না" -#: ../gio/gdrive.c:521 +#: gio/gdrive.c:521 msgid "drive doesn't implement polling for media" msgstr "ড্রাইভ দ্বারা মিডিয়া পোল করার বাস্তবায়ন নেই" -#: ../gio/gdrive.c:726 +#: gio/gdrive.c:726 msgid "drive doesn't implement start" msgstr "ড্রাইভ দ্বারা প্রারম্ভের কর্ম সঞ্চালিত নেই" -#: ../gio/gdrive.c:828 +#: gio/gdrive.c:828 msgid "drive doesn't implement stop" msgstr "ড্রাইভ দ্বারা বন্ধ করার কর্ম সঞ্চালিত নেই" -#: ../gio/gemblem.c:325 +#: gio/gemblem.c:325 #, c-format msgid "Can't handle version %d of GEmblem encoding" msgstr "GEmblem এনকোডিং-এর %d সংস্করণ ব্যবস্থাপনা করা সম্ভব নয়" -#: ../gio/gemblem.c:335 +#: gio/gemblem.c:335 #, c-format msgid "Malformed number of tokens (%d) in GEmblem encoding" msgstr "GEmblem এনকোডিং-এর মধ্যে উপস্থিত ক্ষতিগ্রস্ত টোকেনের সংখ্যা (%d)" -#: ../gio/gemblemedicon.c:296 +#: gio/gemblemedicon.c:296 #, c-format msgid "Can't handle version %d of GEmblemedIcon encoding" msgstr "GEmblemedIcon এনকোডিং-এর %d সংস্করণ ব্যবস্থাপনা করা সম্ভব নয়" -#: ../gio/gemblemedicon.c:306 +#: gio/gemblemedicon.c:306 #, c-format msgid "Malformed number of tokens (%d) in GEmblemedIcon encoding" msgstr "GEmblemedIcon এনকোডিং-এর মধ্যে উপস্থিত ক্ষতিগ্রস্ত টোকেনের সংখ্যা (%d)" -#: ../gio/gemblemedicon.c:329 +#: gio/gemblemedicon.c:329 msgid "Expected a GEmblem for GEmblemedIcon" msgstr "GEmblemedIcon-এর জন্য একটি GEmblem প্রত্যাশিত" -#: ../gio/gfile.c:871 ../gio/gfile.c:1101 ../gio/gfile.c:1236 -#: ../gio/gfile.c:1472 ../gio/gfile.c:1526 ../gio/gfile.c:1583 -#: ../gio/gfile.c:1666 ../gio/gfile.c:1721 ../gio/gfile.c:1781 -#: ../gio/gfile.c:1835 ../gio/gfile.c:3303 ../gio/gfile.c:3357 -#: ../gio/gfile.c:3488 ../gio/gfile.c:3528 ../gio/gfile.c:3855 -#: ../gio/gfile.c:4257 ../gio/gfile.c:4343 ../gio/gfile.c:4432 -#: ../gio/gfile.c:4530 ../gio/gfile.c:4617 ../gio/gfile.c:4710 -#: ../gio/gfile.c:5040 ../gio/gfile.c:5320 ../gio/gfile.c:5389 -#: ../gio/gfile.c:6980 ../gio/gfile.c:7070 ../gio/gfile.c:7156 -#: ../gio/win32/gwinhttpfile.c:441 +#: gio/gfile.c:871 gio/gfile.c:1101 gio/gfile.c:1236 gio/gfile.c:1472 +#: gio/gfile.c:1526 gio/gfile.c:1583 gio/gfile.c:1666 gio/gfile.c:1721 +#: gio/gfile.c:1781 gio/gfile.c:1835 gio/gfile.c:3304 gio/gfile.c:3358 +#: gio/gfile.c:3489 gio/gfile.c:3529 gio/gfile.c:3856 gio/gfile.c:4258 +#: gio/gfile.c:4344 gio/gfile.c:4433 gio/gfile.c:4531 gio/gfile.c:4618 +#: gio/gfile.c:4711 gio/gfile.c:5041 gio/gfile.c:5321 gio/gfile.c:5390 +#: gio/gfile.c:6981 gio/gfile.c:7071 gio/gfile.c:7157 +#: gio/win32/gwinhttpfile.c:441 msgid "Operation not supported" msgstr "কর্ম সমর্থিত নয়" @@ -1301,138 +1295,137 @@ msgstr "কর্ম সমর্থিত নয়" #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1357 ../gio/glocalfile.c:1065 ../gio/glocalfile.c:1076 -#: ../gio/glocalfile.c:1089 +#: gio/gfile.c:1357 gio/glocalfile.c:1065 gio/glocalfile.c:1076 +#: gio/glocalfile.c:1089 msgid "Containing mount does not exist" msgstr "ধারণকারী মাউন্ট উপস্থিত নেই" -#: ../gio/gfile.c:2409 ../gio/glocalfile.c:2264 +#: gio/gfile.c:2409 gio/glocalfile.c:2264 msgid "Can't copy over directory" msgstr "ডিরেক্টরির উপরে অনুলিপি করা যাবে না" -#: ../gio/gfile.c:2469 +#: gio/gfile.c:2469 msgid "Can't copy directory over directory" msgstr "ডিরেক্টরির উপর ডিরেক্টরি অনুলিপি করা যায়নি" -#: ../gio/gfile.c:2477 ../gio/glocalfile.c:2273 +#: gio/gfile.c:2477 gio/glocalfile.c:2273 msgid "Target file exists" msgstr "টারগেট ফাইল উপস্থিত রয়েছে" -#: ../gio/gfile.c:2495 +#: gio/gfile.c:2495 msgid "Can't recursively copy directory" msgstr "রিকার্সিভ ভাবে ডিরেক্টরি অনুলিপি করা যাবে না" -#: ../gio/gfile.c:2755 -#| msgid "Symbolic links not supported" +#: gio/gfile.c:2755 msgid "Splice not supported" msgstr "স্প্যাইস সমর্থিত নয়" -#: ../gio/gfile.c:2759 +#: gio/gfile.c:2759 #, c-format msgid "Error splicing file: %s" msgstr "স্প্যাইসিং ফাইলে সমস্যা: %s" -#: ../gio/gfile.c:2905 +#: gio/gfile.c:2906 msgid "Can't copy special file" msgstr "বিশেষ ফাইল অনুলিপি করা যাবে না" -#: ../gio/gfile.c:3478 +#: gio/gfile.c:3479 msgid "Invalid symlink value given" msgstr "অকার্যকর symlink মান দেয়া হয়েছে" -#: ../gio/gfile.c:3571 +#: gio/gfile.c:3572 msgid "Trash not supported" msgstr "আবর্জনা সমর্থিত নয়" -#: ../gio/gfile.c:3620 +#: gio/gfile.c:3621 #, c-format msgid "File names cannot contain '%c'" msgstr "ফাইলের নামের মধ্যে '%c' ব্যবহার করা যাবে না" -#: ../gio/gfile.c:6037 ../gio/gvolume.c:331 +#: gio/gfile.c:6038 gio/gvolume.c:331 msgid "volume doesn't implement mount" msgstr "ভলিউম দ্বারা মাউন্ট ব্যবহার করা হয় না" -#: ../gio/gfile.c:6148 +#: gio/gfile.c:6149 msgid "No application is registered as handling this file" msgstr "চিহ্নিত ফাইল ব্যবস্থাপনার উদ্দেশ্যে কোনো অ্যাপ্লিকেশন নিবন্ধিত হয়নি" -#: ../gio/gfileenumerator.c:206 +#: gio/gfileenumerator.c:206 msgid "Enumerator is closed" msgstr "ইনুমেরেটর বন্ধ" -#: ../gio/gfileenumerator.c:213 ../gio/gfileenumerator.c:272 -#: ../gio/gfileenumerator.c:372 ../gio/gfileenumerator.c:481 +#: gio/gfileenumerator.c:213 gio/gfileenumerator.c:272 +#: gio/gfileenumerator.c:372 gio/gfileenumerator.c:481 msgid "File enumerator has outstanding operation" msgstr "ফাইল enumerator-এর মধ্যে অসমাপ্ত কর্ম উপস্থিত" -#: ../gio/gfileenumerator.c:362 ../gio/gfileenumerator.c:471 +#: gio/gfileenumerator.c:362 gio/gfileenumerator.c:471 msgid "File enumerator is already closed" msgstr "ফাইল enumerator বন্ধ আছে" -#: ../gio/gfileicon.c:237 +#: gio/gfileicon.c:237 #, c-format msgid "Can't handle version %d of GFileIcon encoding" msgstr "GFileIcon এনকোডিং-এর %d সংস্করণ ব্যবস্থাপনা করা সম্ভব নয়" -#: ../gio/gfileicon.c:247 +#: gio/gfileicon.c:247 msgid "Malformed input data for GFileIcon" msgstr "GFileIcon-এর জন্য ক্ষতিগ্রস্ত ইনপুট তথ্য উপস্থিত" -#: ../gio/gfileinputstream.c:155 ../gio/gfileinputstream.c:422 -#: ../gio/gfileiostream.c:171 ../gio/gfileoutputstream.c:170 -#: ../gio/gfileoutputstream.c:525 +#: gio/gfileinputstream.c:155 gio/gfileinputstream.c:422 +#: gio/gfileiostream.c:171 gio/gfileoutputstream.c:170 +#: gio/gfileoutputstream.c:525 msgid "Stream doesn't support query_info" msgstr "স্ট্রিম দ্বারা query_info সমর্থিত নয়" -#: ../gio/gfileinputstream.c:337 ../gio/gfileiostream.c:389 -#: ../gio/gfileoutputstream.c:383 +#: gio/gfileinputstream.c:337 gio/gfileiostream.c:389 +#: gio/gfileoutputstream.c:383 msgid "Seek not supported on stream" msgstr "স্ট্রিম দ্বারা Seek সমর্থিত নয়" -#: ../gio/gfileinputstream.c:381 +#: gio/gfileinputstream.c:381 msgid "Truncate not allowed on input stream" msgstr "ইনপুট স্ট্রিমের ক্ষেত্রে ট্রানকেট অর্থাৎ ছাঁটাইয়ের অনুমতি নেই" -#: ../gio/gfileiostream.c:465 ../gio/gfileoutputstream.c:459 +#: gio/gfileiostream.c:465 gio/gfileoutputstream.c:459 msgid "Truncate not supported on stream" msgstr "স্ট্রিমের ক্ষেত্রে ট্রানকেট অর্থাৎ ছাঁটাইয়ের সমর্থন নেই" -#: ../gio/gicon.c:286 +#: gio/gicon.c:286 #, c-format msgid "Wrong number of tokens (%d)" msgstr "টোকেনের সংখ্যা সঠিক নয় (%d)" -#: ../gio/gicon.c:306 +#: gio/gicon.c:306 #, c-format msgid "No type for class name %s" msgstr "%s ক্লাসের নামের জন্য কোনো ধরন নির্ধারিত হয়নি" -#: ../gio/gicon.c:316 +#: gio/gicon.c:316 #, c-format msgid "Type %s does not implement the GIcon interface" msgstr "%s ধরন দ্বারা GIcon ইন্টারফেস বাস্তবায়িত হয় না" -#: ../gio/gicon.c:327 +#: gio/gicon.c:327 #, c-format msgid "Type %s is not classed" msgstr "%s ধরন কোনো শ্রেণীর মধ্যে অন্তর্ভুক্ত নয়" -#: ../gio/gicon.c:341 +#: gio/gicon.c:341 #, c-format msgid "Malformed version number: %s" msgstr "সংস্করণ সংখ্যা সটিকরূপে গঠিত হয়নি: %s" -#: ../gio/gicon.c:355 +#: gio/gicon.c:355 #, c-format msgid "Type %s does not implement from_tokens() on the GIcon interface" msgstr "%s ধরণ দ্বারা GIcon ইন্টারফেসের মধ্যে from_tokens() বাস্তবায়িত হয় না" -#: ../gio/gicon.c:431 +#: gio/gicon.c:431 msgid "Can't handle the supplied version the icon encoding" msgstr "উপলব্ধ আইকন এনকোডিং-এর সংস্করণ ব্যবস্থাপনা করা সম্ভব নয়" -#: ../gio/ginputstream.c:195 +#: gio/ginputstream.c:195 msgid "Input stream doesn't implement read" msgstr "ইনপুট স্ট্রিম দ্বারা read বাস্তবায়িত হয় না" @@ -1442,324 +1435,323 @@ msgstr "ইনপুট স্ট্রিম দ্বারা read বাস #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:902 ../gio/giostream.c:315 -#: ../gio/goutputstream.c:1118 +#: gio/ginputstream.c:902 gio/giostream.c:315 gio/goutputstream.c:1118 msgid "Stream has outstanding operation" msgstr "স্ট্রিমের ক্ষেত্রে অসমাপ্ত কর্ম উপস্থিত রয়েছে" -#: ../gio/ginetsocketaddress.c:182 ../gio/ginetsocketaddress.c:199 -#: ../gio/gunixsocketaddress.c:174 +#: gio/ginetsocketaddress.c:182 gio/ginetsocketaddress.c:199 +#: gio/gunixsocketaddress.c:174 msgid "Not enough space for socket address" msgstr "সকেটের ঠিকানার জন্য পর্যাপ্ত স্থান নেই" -#: ../gio/ginetsocketaddress.c:212 +#: gio/ginetsocketaddress.c:212 msgid "Unsupported socket address" msgstr "সকেটের ঠিকানা সমর্থিত নয়" -#: ../gio/glocaldirectorymonitor.c:288 +#: gio/glocaldirectorymonitor.c:288 msgid "Unable to find default local directory monitor type" msgstr "স্থানীয় ডিরেক্টরি নিয়ন্ত্রণের ডিফল্ট ধরণ সন্ধান করতে ব্যর্থ" -#: ../gio/glocalfile.c:599 ../gio/win32/gwinhttpfile.c:424 +#: gio/glocalfile.c:599 gio/win32/gwinhttpfile.c:424 #, c-format msgid "Invalid filename %s" msgstr "ফাইলের নাম অবৈধ: %s" -#: ../gio/glocalfile.c:973 +#: gio/glocalfile.c:973 #, c-format msgid "Error getting filesystem info: %s" msgstr "ফাইল-সিস্টেম সংক্রান্ত তথ্য প্রাপ্ত করতে সমস্যা: %s" -#: ../gio/glocalfile.c:1111 +#: gio/glocalfile.c:1111 msgid "Can't rename root directory" msgstr "root ডিরেক্টরির নাম পরিবর্তন করা সম্ভব নয়" -#: ../gio/glocalfile.c:1131 ../gio/glocalfile.c:1157 +#: gio/glocalfile.c:1131 gio/glocalfile.c:1157 #, c-format msgid "Error renaming file: %s" msgstr "ফাইলের নাম পরিবর্তনে সমস্যা: %s" -#: ../gio/glocalfile.c:1140 +#: gio/glocalfile.c:1140 msgid "Can't rename file, filename already exist" msgstr "" "ফাইলের নাম পরিবর্তন করা যায়নি, নতুন নামের একটি ফাইলের নাম বর্তমানে উপস্থিত রয়েছে" -#: ../gio/glocalfile.c:1153 ../gio/glocalfile.c:2137 ../gio/glocalfile.c:2166 -#: ../gio/glocalfile.c:2326 ../gio/glocalfileoutputstream.c:557 -#: ../gio/glocalfileoutputstream.c:610 ../gio/glocalfileoutputstream.c:655 -#: ../gio/glocalfileoutputstream.c:1137 +#: gio/glocalfile.c:1153 gio/glocalfile.c:2137 gio/glocalfile.c:2166 +#: gio/glocalfile.c:2326 gio/glocalfileoutputstream.c:557 +#: gio/glocalfileoutputstream.c:610 gio/glocalfileoutputstream.c:655 +#: gio/glocalfileoutputstream.c:1137 msgid "Invalid filename" msgstr "ফাইলের নাম অকার্যকর নয়" -#: ../gio/glocalfile.c:1314 +#: gio/glocalfile.c:1314 #, c-format msgid "Error opening file: %s" msgstr "ফাইল খুলতে সমস্যা: %s" -#: ../gio/glocalfile.c:1324 +#: gio/glocalfile.c:1324 msgid "Can't open directory" msgstr "ডিরেক্টরি খুলতে পারেনি" -#: ../gio/glocalfile.c:1449 +#: gio/glocalfile.c:1449 #, c-format msgid "Error removing file: %s" msgstr "ফাইল মুছে ফেলতে সমস্যা: %s" -#: ../gio/glocalfile.c:1816 +#: gio/glocalfile.c:1816 #, c-format msgid "Error trashing file: %s" msgstr "ফাইলটি আবর্জনায় স্থানান্তর করতে সমস্যা: %s" -#: ../gio/glocalfile.c:1839 +#: gio/glocalfile.c:1839 #, c-format msgid "Unable to create trash dir %s: %s" msgstr "আবর্জনার ডিরেক্টরি %s তৈরি করতে ব্যর্থ: %s" -#: ../gio/glocalfile.c:1860 +#: gio/glocalfile.c:1860 msgid "Unable to find toplevel directory for trash" msgstr "আবর্জনার ঊর্ধ্বতন ডিরেক্টরি সনাক্ত করতে ব্যর্থ" -#: ../gio/glocalfile.c:1939 ../gio/glocalfile.c:1959 +#: gio/glocalfile.c:1939 gio/glocalfile.c:1959 msgid "Unable to find or create trash directory" msgstr "আবর্জনার ডিরেক্টরি সনাক্ত অথবা তৈরি করতে ব্যর্থ" -#: ../gio/glocalfile.c:1993 +#: gio/glocalfile.c:1993 #, c-format msgid "Unable to create trashing info file: %s" msgstr "trashing info ফাইল তৈরি করতে ব্যর্থ: %s" -#: ../gio/glocalfile.c:2022 ../gio/glocalfile.c:2027 ../gio/glocalfile.c:2107 -#: ../gio/glocalfile.c:2114 +#: gio/glocalfile.c:2022 gio/glocalfile.c:2027 gio/glocalfile.c:2107 +#: gio/glocalfile.c:2114 #, c-format msgid "Unable to trash file: %s" msgstr "ফাইল বর্জন করতে ব্যর্থ: %s" -#: ../gio/glocalfile.c:2141 +#: gio/glocalfile.c:2141 #, c-format msgid "Error creating directory: %s" msgstr "ডিরেক্টরি তৈরি করতে ত্রুটি: %s" -#: ../gio/glocalfile.c:2170 +#: gio/glocalfile.c:2170 #, c-format msgid "Filesystem does not support symbolic links" msgstr "ফাইলসিস্টেম সিম্বোলিঙ্ক লিঙ্ক সমর্থন করে না" -#: ../gio/glocalfile.c:2174 +#: gio/glocalfile.c:2174 #, c-format msgid "Error making symbolic link: %s" msgstr "সিম্বলিক লিঙ্ক তৈরি করতে ত্রুটি: %s" -#: ../gio/glocalfile.c:2236 ../gio/glocalfile.c:2330 +#: gio/glocalfile.c:2236 gio/glocalfile.c:2330 #, c-format msgid "Error moving file: %s" msgstr "ফাইল স্থানান্তর করতে ত্রুটি: %s" -#: ../gio/glocalfile.c:2259 +#: gio/glocalfile.c:2259 msgid "Can't move directory over directory" msgstr "ডিরেক্টরির উপর ডিরেক্টরি স্থানান্তর করা যাবে না" -#: ../gio/glocalfile.c:2286 ../gio/glocalfileoutputstream.c:935 -#: ../gio/glocalfileoutputstream.c:949 ../gio/glocalfileoutputstream.c:964 -#: ../gio/glocalfileoutputstream.c:980 ../gio/glocalfileoutputstream.c:994 +#: gio/glocalfile.c:2286 gio/glocalfileoutputstream.c:935 +#: gio/glocalfileoutputstream.c:949 gio/glocalfileoutputstream.c:964 +#: gio/glocalfileoutputstream.c:980 gio/glocalfileoutputstream.c:994 msgid "Backup file creation failed" msgstr "ব্যাক-আপ ফাইল তৈরি করতে ব্যর্থ" -#: ../gio/glocalfile.c:2305 +#: gio/glocalfile.c:2305 #, c-format msgid "Error removing target file: %s" msgstr "উদ্দিষ্ট ফাইল মুছে ফেলতে সমস্যা: %s" -#: ../gio/glocalfile.c:2319 +#: gio/glocalfile.c:2319 msgid "Move between mounts not supported" msgstr "মাউন্ট করা অবস্থানের মধ্যে স্থানান্তর করা সম্ভব নয়" -#: ../gio/glocalfileinfo.c:726 +#: gio/glocalfileinfo.c:726 msgid "Attribute value must be non-NULL" msgstr "অ্যাট্রিবিউটের ক্ষেত্রে NULL-ব্যতীত অন্য মান নির্ধারণ করা আবশ্যক" -#: ../gio/glocalfileinfo.c:733 +#: gio/glocalfileinfo.c:733 msgid "Invalid attribute type (string expected)" msgstr "অ্যাট্রিবিউটের ধরন বৈধ নয় (string প্রত্যাশিত)" -#: ../gio/glocalfileinfo.c:740 +#: gio/glocalfileinfo.c:740 msgid "Invalid extended attribute name" msgstr "প্রসারিত অ্যাট্রিবিউটের নাম অবৈধ" -#: ../gio/glocalfileinfo.c:780 +#: gio/glocalfileinfo.c:780 #, c-format msgid "Error setting extended attribute '%s': %s" msgstr "প্রসারিত অ্যাট্রিবিউট '%s'-কে নির্ধারণ করতে ব্যর্থ: %s" -#: ../gio/glocalfileinfo.c:1484 ../gio/glocalfileoutputstream.c:819 +#: gio/glocalfileinfo.c:1484 gio/glocalfileoutputstream.c:819 #, c-format msgid "Error stating file '%s': %s" msgstr "ফাইল '%s' stat করতে ব্যর্থ: %s" -#: ../gio/glocalfileinfo.c:1557 +#: gio/glocalfileinfo.c:1557 msgid " (invalid encoding)" msgstr " (অবৈধ এনকোডিং)" -#: ../gio/glocalfileinfo.c:1755 +#: gio/glocalfileinfo.c:1755 #, c-format msgid "Error stating file descriptor: %s" msgstr "ফাইলের বিবরণ stat করতে সমস্যা: %s" -#: ../gio/glocalfileinfo.c:1800 +#: gio/glocalfileinfo.c:1800 msgid "Invalid attribute type (uint32 expected)" msgstr "অ্যাট্রিবিউটের ধরন বৈধ নয় (প্রত্যাশিত uint32)" -#: ../gio/glocalfileinfo.c:1818 +#: gio/glocalfileinfo.c:1818 msgid "Invalid attribute type (uint64 expected)" msgstr "অ্যাট্রিবিউটের ধরন বৈধ নয় (প্রত্যাশিত uint64)" -#: ../gio/glocalfileinfo.c:1837 ../gio/glocalfileinfo.c:1856 +#: gio/glocalfileinfo.c:1837 gio/glocalfileinfo.c:1856 msgid "Invalid attribute type (byte string expected)" msgstr "অ্যাট্রিবিউটের ধরন বৈধ নয় (byte string প্রত্যাশিত)" -#: ../gio/glocalfileinfo.c:1891 +#: gio/glocalfileinfo.c:1891 msgid "Cannot set permissions on symlinks" msgstr "সিমলিংকের অনুমতি নির্ধারণ করতে ব্যর্থ" -#: ../gio/glocalfileinfo.c:1907 +#: gio/glocalfileinfo.c:1907 #, c-format msgid "Error setting permissions: %s" msgstr "অনুমতি নির্ধারণ করতে সমস্যা: %s" -#: ../gio/glocalfileinfo.c:1958 +#: gio/glocalfileinfo.c:1958 #, c-format msgid "Error setting owner: %s" msgstr "মালিকানা নির্ধারণ করতে সমস্যা: %s" -#: ../gio/glocalfileinfo.c:1981 +#: gio/glocalfileinfo.c:1981 msgid "symlink must be non-NULL" msgstr "সিম্-লিঙ্ক NULL-ব্যাতীত মান হওয়া আবশ্যক" -#: ../gio/glocalfileinfo.c:1991 ../gio/glocalfileinfo.c:2010 -#: ../gio/glocalfileinfo.c:2021 +#: gio/glocalfileinfo.c:1991 gio/glocalfileinfo.c:2010 +#: gio/glocalfileinfo.c:2021 #, c-format msgid "Error setting symlink: %s" msgstr "সিম্-লিঙ্ক নির্ধারণ করতে সমস্যা: %s" -#: ../gio/glocalfileinfo.c:2000 +#: gio/glocalfileinfo.c:2000 msgid "Error setting symlink: file is not a symlink" msgstr "সিম্-লিঙ্ক নির্ধারণ করতে ত্রুটি: ফাইলটি সিম্-লিঙ্ক নয়" -#: ../gio/glocalfileinfo.c:2126 +#: gio/glocalfileinfo.c:2126 #, c-format msgid "Error setting modification or access time: %s" msgstr "পরিবর্তন অথবা ব্যবহারের সময় নির্ধারণ করতে সমস্যা: %s" -#: ../gio/glocalfileinfo.c:2149 +#: gio/glocalfileinfo.c:2149 msgid "SELinux context must be non-NULL" msgstr "SELinux কনটেক্সটের NULL-ব্যাতীত মান হওয়া আবশ্যক" -#: ../gio/glocalfileinfo.c:2164 +#: gio/glocalfileinfo.c:2164 #, c-format msgid "Error setting SELinux context: %s" msgstr "SELinux কনটেক্সট নির্ধারণ করতে ব্যর্থ: %s" -#: ../gio/glocalfileinfo.c:2171 +#: gio/glocalfileinfo.c:2171 msgid "SELinux is not enabled on this system" msgstr "এই সিস্টেমে SELinux সক্রিয় করা হয়নি" -#: ../gio/glocalfileinfo.c:2263 +#: gio/glocalfileinfo.c:2263 #, c-format msgid "Setting attribute %s not supported" msgstr "%s অ্যাট্রিবিউটের মান নির্ধারণ সমর্থিত নয়" -#: ../gio/glocalfileinputstream.c:171 ../gio/glocalfileoutputstream.c:708 +#: gio/glocalfileinputstream.c:171 gio/glocalfileoutputstream.c:708 #, c-format msgid "Error reading from file: %s" msgstr "ফাইল থেকে পড়তে সমস্যা: %s" -#: ../gio/glocalfileinputstream.c:202 ../gio/glocalfileinputstream.c:214 -#: ../gio/glocalfileinputstream.c:326 ../gio/glocalfileoutputstream.c:456 -#: ../gio/glocalfileoutputstream.c:1012 +#: gio/glocalfileinputstream.c:202 gio/glocalfileinputstream.c:214 +#: gio/glocalfileinputstream.c:326 gio/glocalfileoutputstream.c:456 +#: gio/glocalfileoutputstream.c:1012 #, c-format msgid "Error seeking in file: %s" msgstr "ফাইলের মধ্যে seek করতে সমস্যা: %s" -#: ../gio/glocalfileinputstream.c:247 ../gio/glocalfileoutputstream.c:242 -#: ../gio/glocalfileoutputstream.c:337 +#: gio/glocalfileinputstream.c:247 gio/glocalfileoutputstream.c:242 +#: gio/glocalfileoutputstream.c:337 #, c-format msgid "Error closing file: %s" msgstr "ফাইল বন্ধ করতে সমস্যা: %s" -#: ../gio/glocalfilemonitor.c:213 +#: gio/glocalfilemonitor.c:213 msgid "Unable to find default local file monitor type" msgstr "স্থানীয় ডিরেক্টরি নিয়ন্ত্রণের ডিফল্ট ধরন সন্ধান করতে ব্যর্থ" -#: ../gio/glocalfileoutputstream.c:188 ../gio/glocalfileoutputstream.c:221 -#: ../gio/glocalfileoutputstream.c:729 +#: gio/glocalfileoutputstream.c:188 gio/glocalfileoutputstream.c:221 +#: gio/glocalfileoutputstream.c:729 #, c-format msgid "Error writing to file: %s" msgstr "ফাইলে লিখতে সমস্যা: %s" -#: ../gio/glocalfileoutputstream.c:269 +#: gio/glocalfileoutputstream.c:269 #, c-format msgid "Error removing old backup link: %s" msgstr "পুরোনো ব্যাক-আপের লিংক মুছে ফেলতে ত্রুটি: %s" -#: ../gio/glocalfileoutputstream.c:283 ../gio/glocalfileoutputstream.c:296 +#: gio/glocalfileoutputstream.c:283 gio/glocalfileoutputstream.c:296 #, c-format msgid "Error creating backup copy: %s" msgstr "ব্যাক-আপ প্রতিলিপি তৈরি করতে সমস্যা: %s" -#: ../gio/glocalfileoutputstream.c:314 +#: gio/glocalfileoutputstream.c:314 #, c-format msgid "Error renaming temporary file: %s" msgstr "অস্থায়ী ফাইলের নাম পরিবর্তন করতে সমস্যা: %s" -#: ../gio/glocalfileoutputstream.c:502 ../gio/glocalfileoutputstream.c:1063 +#: gio/glocalfileoutputstream.c:502 gio/glocalfileoutputstream.c:1063 #, c-format msgid "Error truncating file: %s" msgstr "ফাইল ট্রানকেট (ছাঁটাই) করতে সমস্যা %s" -#: ../gio/glocalfileoutputstream.c:563 ../gio/glocalfileoutputstream.c:616 -#: ../gio/glocalfileoutputstream.c:661 ../gio/glocalfileoutputstream.c:801 -#: ../gio/glocalfileoutputstream.c:1044 ../gio/glocalfileoutputstream.c:1143 +#: gio/glocalfileoutputstream.c:563 gio/glocalfileoutputstream.c:616 +#: gio/glocalfileoutputstream.c:661 gio/glocalfileoutputstream.c:801 +#: gio/glocalfileoutputstream.c:1044 gio/glocalfileoutputstream.c:1143 #, c-format msgid "Error opening file '%s': %s" msgstr "ফাইল '%s' খুলতে সমস্যা: %s" -#: ../gio/glocalfileoutputstream.c:832 +#: gio/glocalfileoutputstream.c:832 msgid "Target file is a directory" msgstr "উদ্দিষ্ট ফাইলটি একটি ডিরেক্টরি" -#: ../gio/glocalfileoutputstream.c:837 +#: gio/glocalfileoutputstream.c:837 msgid "Target file is not a regular file" msgstr "উদ্দিষ্ট ফাইলটি সাধারণ ফাইল নয়" -#: ../gio/glocalfileoutputstream.c:849 +#: gio/glocalfileoutputstream.c:849 msgid "The file was externally modified" msgstr "ফাইলটি স্বতন্ত্ররূপে পরিবর্তন করা হয়েছে" -#: ../gio/glocalfileoutputstream.c:1028 +#: gio/glocalfileoutputstream.c:1028 #, c-format msgid "Error removing old file: %s" msgstr "পুরোনো ফাইল মুছে ফেলতে সমস্যা: %s" -#: ../gio/gmemoryinputstream.c:487 ../gio/gmemoryoutputstream.c:714 +#: gio/gmemoryinputstream.c:487 gio/gmemoryoutputstream.c:718 msgid "Invalid GSeekType supplied" msgstr "অবৈধ GSeekType উল্লিখিত হয়েছে" -#: ../gio/gmemoryinputstream.c:497 +#: gio/gmemoryinputstream.c:497 msgid "Invalid seek request" msgstr "অবৈধ seek-এর অনুরোধ" -#: ../gio/gmemoryinputstream.c:521 +#: gio/gmemoryinputstream.c:521 msgid "Cannot truncate GMemoryInputStream" msgstr "GMemoryInputStream ট্রানকেট করতে ব্যর্থ" -#: ../gio/gmemoryoutputstream.c:464 +#: gio/gmemoryoutputstream.c:468 msgid "Memory output stream not resizable" msgstr "মেমরি আউটপুট স্ট্রিমের মাপ পরিবর্তনযোগ্য নয়" -#: ../gio/gmemoryoutputstream.c:480 +#: gio/gmemoryoutputstream.c:484 msgid "Failed to resize memory output stream" msgstr "মেমরি আউটপুট স্ট্রিমের মাপ পরিবর্তন করতে ব্যর্থ" -#: ../gio/gmemoryoutputstream.c:568 +#: gio/gmemoryoutputstream.c:572 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -1767,32 +1759,32 @@ msgstr "" "রাইট প্রসেস করার জন্য প্রয়োজনীয় মেমরির পরিমান বিদ্যমান ঠিকানার জন্য ফাঁকা স্থানের " "অধিক" -#: ../gio/gmemoryoutputstream.c:724 +#: gio/gmemoryoutputstream.c:728 msgid "Requested seek before the beginning of the stream" msgstr "স্ট্রীমের শুরুর পূর্বে অনুরোধকৃত সিক" -#: ../gio/gmemoryoutputstream.c:733 +#: gio/gmemoryoutputstream.c:737 msgid "Requested seek beyond the end of the stream" msgstr "স্ট্রীমের শেষের অতিরিক্ত অনুরোধকৃত সিক" #. Translators: This is an error #. * message for mount objects that #. * don't implement unmount. -#: ../gio/gmount.c:364 +#: gio/gmount.c:364 msgid "mount doesn't implement \"unmount\"" msgstr "মাউন্ট করা বস্তুর ক্ষেত্রে \"আনমাউন্ট\" প্রয়োগ করা সম্ভব নয়" #. Translators: This is an error #. * message for mount objects that #. * don't implement eject. -#: ../gio/gmount.c:443 +#: gio/gmount.c:443 msgid "mount doesn't implement \"eject\"" msgstr "মাউন্ট করা বস্তুর ক্ষেত্রে \"বের করা\" প্রয়োগ করা সম্ভব নয়" #. Translators: This is an error #. * message for mount objects that #. * don't implement any of unmount or unmount_with_operation. -#: ../gio/gmount.c:523 +#: gio/gmount.c:523 msgid "mount doesn't implement \"unmount\" or \"unmount_with_operation\"" msgstr "" "মাউন্ট করা বস্তুর ক্ষেত্রে \"unmount\" অথবা \"unmount_with_operation\" প্রয়োগ করা " @@ -1801,7 +1793,7 @@ msgstr "" #. Translators: This is an error #. * message for mount objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gmount.c:610 +#: gio/gmount.c:610 msgid "mount doesn't implement \"eject\" or \"eject_with_operation\"" msgstr "" "মাউন্ট করা বস্তুর ক্ষেত্রে \"eject\" অথবা \"eject_with_operation\" প্রয়োগ করা সম্ভব " @@ -1810,272 +1802,272 @@ msgstr "" #. Translators: This is an error #. * message for mount objects that #. * don't implement remount. -#: ../gio/gmount.c:699 +#: gio/gmount.c:699 msgid "mount doesn't implement \"remount\"" msgstr "মাউন্ট করা বস্তুর ক্ষেত্রে \"remount\" প্রয়োগ করা সম্ভব নয়" #. Translators: This is an error #. * message for mount objects that #. * don't implement content type guessing. -#: ../gio/gmount.c:783 +#: gio/gmount.c:783 msgid "mount doesn't implement content type guessing" msgstr "mount দ্বারা সামগ্রীর ধরন অনুমান করা সম্ভব নয়" #. Translators: This is an error #. * message for mount objects that #. * don't implement content type guessing. -#: ../gio/gmount.c:872 +#: gio/gmount.c:872 msgid "mount doesn't implement synchronous content type guessing" msgstr "mount দ্বারা সুসংগতভাবে সামগ্রীর ধরন অনুমান করা সম্ভব নয়" -#: ../gio/gnetworkaddress.c:295 +#: gio/gnetworkaddress.c:295 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "'%s' হোস্ট-নেমের মধ্যে '[' উপস্থিত রয়েছে কিন্তু ']' অনুপস্থিত" -#: ../gio/goutputstream.c:207 ../gio/goutputstream.c:408 +#: gio/goutputstream.c:207 gio/goutputstream.c:408 msgid "Output stream doesn't implement write" msgstr "আউটপুট স্ট্রিম দ্বারা write বাস্তবায়িত হয় না" -#: ../gio/goutputstream.c:369 ../gio/goutputstream.c:781 +#: gio/goutputstream.c:369 gio/goutputstream.c:781 msgid "Source stream is already closed" msgstr "মূল স্ট্রিম বর্তমানে বন্ধ করা হয়েছে" -#: ../gio/gresolver.c:736 +#: gio/gresolver.c:736 #, c-format msgid "Error resolving '%s': %s" msgstr "'%s' মীমাংসা করতে ব্যর্থ: %s" -#: ../gio/gresolver.c:786 +#: gio/gresolver.c:786 #, c-format msgid "Error reverse-resolving '%s': %s" msgstr "বিপরীত ক্রমে '%s' মীমাংসা করতে ব্যর্থ: %s" -#: ../gio/gresolver.c:821 ../gio/gresolver.c:899 +#: gio/gresolver.c:821 gio/gresolver.c:899 #, c-format msgid "No service record for '%s'" msgstr "'%s'-এর পরিসেবার কোনো রেকর্ড অনুপস্থিত" -#: ../gio/gresolver.c:826 ../gio/gresolver.c:904 +#: gio/gresolver.c:826 gio/gresolver.c:904 #, c-format msgid "Temporarily unable to resolve '%s'" msgstr "সাময়িকভাবে '%s' মীমাংসা করতে ব্যর্থ" -#: ../gio/gresolver.c:831 ../gio/gresolver.c:909 +#: gio/gresolver.c:831 gio/gresolver.c:909 #, c-format msgid "Error resolving '%s'" msgstr "'%s' মীমাংসা করতে ত্রুটি" -#: ../gio/gsocket.c:277 +#: gio/gsocket.c:277 msgid "Invalid socket, not initialized" msgstr "অবৈধ সকেট, আরম্ভ করা হয়নি" -#: ../gio/gsocket.c:284 +#: gio/gsocket.c:284 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "অবৈধ সকেট, চিহ্নিত কারণে আরম্ভ করতে ব্যর্থ: %s" -#: ../gio/gsocket.c:292 +#: gio/gsocket.c:292 msgid "Socket is already closed" msgstr "সকেট বর্তমানে বন্ধ করা হয়েছে" -#: ../gio/gsocket.c:405 +#: gio/gsocket.c:413 #, c-format msgid "creating GSocket from fd: %s" msgstr "fd থেকে GSocket তৈরি করা হচ্ছে: %s" -#: ../gio/gsocket.c:439 ../gio/gsocket.c:453 ../gio/gsocket.c:1911 +#: gio/gsocket.c:447 gio/gsocket.c:461 gio/gsocket.c:1925 #, c-format msgid "Unable to create socket: %s" msgstr "সকেট তৈরি করতে ব্যর্থ: %s" -#: ../gio/gsocket.c:439 +#: gio/gsocket.c:447 msgid "Unknown protocol was specified" msgstr "অজানা প্রোটোকল নির্ধারণ করা হয়" -#: ../gio/gsocket.c:1112 +#: gio/gsocket.c:1126 #, c-format msgid "could not get local address: %s" msgstr "স্থানীয় ঠিকানা পেতে ব্যর্থ: %s" -#: ../gio/gsocket.c:1145 +#: gio/gsocket.c:1159 #, c-format msgid "could not get remote address: %s" msgstr "দূরবর্তী ঠিকানা পেতে ব্যর্থ: %s" -#: ../gio/gsocket.c:1203 +#: gio/gsocket.c:1217 #, c-format msgid "could not listen: %s" msgstr "অপেক্ষা করতে ব্যর্থ: %s" -#: ../gio/gsocket.c:1277 +#: gio/gsocket.c:1291 #, c-format msgid "Error binding to address: %s" msgstr "ঠিকানার সাথে বাইন্ড করতে সমস্যা: %s" -#: ../gio/gsocket.c:1397 +#: gio/gsocket.c:1411 #, c-format msgid "Error accepting connection: %s" msgstr "সংযোগ গ্রহণ করতে সমস্যা: %s" -#: ../gio/gsocket.c:1510 +#: gio/gsocket.c:1524 msgid "Error connecting: " msgstr "সংযোগ স্থাপন করতে সমস্যা:" -#: ../gio/gsocket.c:1514 +#: gio/gsocket.c:1528 msgid "Connection in progress" msgstr "সংযোগ বর্তমানে স্থাপিত হচ্ছে" -#: ../gio/gsocket.c:1519 +#: gio/gsocket.c:1533 #, c-format msgid "Error connecting: %s" msgstr "সংযোগ স্থাপন করতে সমস্যা: %s" -#: ../gio/gsocket.c:1559 +#: gio/gsocket.c:1573 #, c-format msgid "Unable to get pending error: %s" msgstr "অপেক্ষারত ত্রুটি পেতে সমস্যা: %s" -#: ../gio/gsocket.c:1655 +#: gio/gsocket.c:1669 #, c-format msgid "Error receiving data: %s" msgstr "তথ্য পেতে সমস্যা: %s" -#: ../gio/gsocket.c:1798 +#: gio/gsocket.c:1812 #, c-format msgid "Error sending data: %s" msgstr "তথ্য পাঠাতে সমস্যা: %s" -#: ../gio/gsocket.c:1990 +#: gio/gsocket.c:2004 #, c-format msgid "Error closing socket: %s" msgstr "সকেট বন্ধ করতে সমস্যা: %s" -#: ../gio/gsocket.c:2475 +#: gio/gsocket.c:2481 #, c-format msgid "Waiting for socket condition: %s" msgstr "সকেটের অবস্থা পেতে অপেক্ষা করা হচ্ছে: %s" -#: ../gio/gsocket.c:2714 ../gio/gsocket.c:2795 +#: gio/gsocket.c:2720 gio/gsocket.c:2801 #, c-format msgid "Error sending message: %s" msgstr "বার্তা পাঠাতে সমস্যা: %s" -#: ../gio/gsocket.c:2739 +#: gio/gsocket.c:2745 msgid "GSocketControlMessage not supported on windows" msgstr "উইন্ডোতে GSocketControlMessage সমর্থিত নয়" -#: ../gio/gsocket.c:2997 ../gio/gsocket.c:3135 +#: gio/gsocket.c:3003 gio/gsocket.c:3141 #, c-format msgid "Error receiving message: %s" msgstr "বার্তা পেতে সমস্যা: %s" -#: ../gio/gsocketclient.c:521 ../gio/gsocketclient.c:770 +#: gio/gsocketclient.c:521 gio/gsocketclient.c:770 msgid "Unknown error on connect" msgstr "সংযোগ স্থাপনকালে অজানা সমস্যা" -#: ../gio/gsocketlistener.c:192 +#: gio/gsocketlistener.c:192 msgid "Listener is already closed" msgstr "লিসেনার বর্তমানে বন্ধ করা আছে" -#: ../gio/gsocketlistener.c:233 +#: gio/gsocketlistener.c:233 msgid "Added socket is closed" msgstr "যোগ করা সকেট বর্তমান বন্ধ করা আছে" -#: ../gio/gthemedicon.c:499 +#: gio/gthemedicon.c:499 #, c-format msgid "Can't handle version %d of GThemedIcon encoding" msgstr "GEmblemedIcon এনকোডিং-এর %d সংস্করণ ব্যবস্থাপনা করা সম্ভব নয়" -#: ../gio/gunixconnection.c:151 +#: gio/gunixconnection.c:151 #, c-format msgid "Expecting 1 control message, got %d" msgstr "১-টি কনট্রোল বার্তা প্রত্যাশিত, %d-টি পেয়েছে" -#: ../gio/gunixconnection.c:164 +#: gio/gunixconnection.c:164 msgid "Unexpected type of ancillary data" msgstr "অপ্রত্যাশিত প্রকৃতির আনুষঙ্গিক তথ্য" -#: ../gio/gunixconnection.c:182 +#: gio/gunixconnection.c:182 #, c-format msgid "Expecting one fd, but got %d\n" msgstr "একটি fd প্রত্যাশিত, কিন্তু %d পেয়েছে\n" -#: ../gio/gunixconnection.c:198 +#: gio/gunixconnection.c:198 msgid "Received invalid fd" msgstr "অকার্যকর fd পেয়েছে" -#: ../gio/gunixinputstream.c:354 ../gio/gunixinputstream.c:374 -#: ../gio/gunixinputstream.c:452 ../gio/gunixoutputstream.c:439 +#: gio/gunixinputstream.c:354 gio/gunixinputstream.c:374 +#: gio/gunixinputstream.c:452 gio/gunixoutputstream.c:439 #, c-format msgid "Error reading from unix: %s" msgstr "unix থেকে পড়তে সমস্যা: %s" -#: ../gio/gunixinputstream.c:407 ../gio/gunixinputstream.c:589 -#: ../gio/gunixoutputstream.c:394 ../gio/gunixoutputstream.c:545 +#: gio/gunixinputstream.c:407 gio/gunixinputstream.c:589 +#: gio/gunixoutputstream.c:394 gio/gunixoutputstream.c:545 #, c-format msgid "Error closing unix: %s" msgstr "unix বন্ধ করতে সমস্যা: %s" -#: ../gio/gunixmounts.c:1846 ../gio/gunixmounts.c:1883 +#: gio/gunixmounts.c:1846 gio/gunixmounts.c:1883 msgid "Filesystem root" msgstr "ফাইল-সিস্টেমের root" -#: ../gio/gunixoutputstream.c:340 ../gio/gunixoutputstream.c:361 +#: gio/gunixoutputstream.c:340 gio/gunixoutputstream.c:361 #, c-format msgid "Error writing to unix: %s" msgstr "unix-এ লিখতে সমস্যা: %s" -#: ../gio/gunixsocketaddress.c:182 +#: gio/gunixsocketaddress.c:182 msgid "Abstract unix domain socket addresses not supported on this system" msgstr "এই সিস্টেমের মধ্যে অ্যাবস্ট্র্যাক্ট unix ডোমেইন সকেট ঠিকানা সমর্থিত নয়" -#: ../gio/gvolume.c:407 +#: gio/gvolume.c:407 msgid "volume doesn't implement eject" msgstr "ভলিউম দ্বারা বের করা ব্যবহার করা সম্ভব নয়" #. Translators: This is an error #. * message for volume objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gvolume.c:486 +#: gio/gvolume.c:486 msgid "volume doesn't implement eject or eject_with_operation" msgstr "ভলিউম দ্বারা eject অথবা eject_with_operation ব্যবহার করা সম্ভব নয়" -#: ../gio/gwin32appinfo.c:277 +#: gio/gwin32appinfo.c:277 msgid "Can't find application" msgstr "অ্যাপ্লিকেশন পাওয়া যায়নি" -#: ../gio/gwin32appinfo.c:300 +#: gio/gwin32appinfo.c:300 #, c-format msgid "Error launching application: %s" msgstr "অ্যাপ্লিকেশন আরম্ভ করতে সমস্যা: %s" -#: ../gio/gwin32appinfo.c:336 +#: gio/gwin32appinfo.c:336 msgid "URIs not supported" msgstr "URI সমর্থিত নয়" -#: ../gio/gwin32appinfo.c:358 +#: gio/gwin32appinfo.c:358 msgid "association changes not supported on win32" msgstr "সংসর্গ সম্বন্ধীয় পরিবর্তনগুলি win32-এর মধ্যে সমর্থিত নয়" -#: ../gio/gwin32appinfo.c:370 +#: gio/gwin32appinfo.c:370 msgid "Association creation not supported on win32" msgstr "সংসর্গ নির্ধারণ win32-এর মধ্যে সমর্থিত নয়" -#: ../gio/gzlibcompressor.c:279 ../gio/gzlibdecompressor.c:250 +#: gio/gzlibcompressor.c:279 gio/gzlibdecompressor.c:250 msgid "Not enough memory" msgstr "যথেষ্ট মেমরি নেই" -#: ../gio/gzlibcompressor.c:286 ../gio/gzlibdecompressor.c:257 +#: gio/gzlibcompressor.c:286 gio/gzlibdecompressor.c:257 #, c-format msgid "Internal error: %s" msgstr "অভ্যন্তরীণ ত্রুটি: %s" -#: ../gio/gzlibcompressor.c:299 ../gio/gzlibdecompressor.c:271 +#: gio/gzlibcompressor.c:299 gio/gzlibdecompressor.c:271 msgid "Need more input" msgstr "আরও ইনপুট প্রয়োজন" -#: ../gio/gzlibdecompressor.c:243 +#: gio/gzlibdecompressor.c:243 msgid "Invalid compressed data" msgstr "অকার্যকর কমপ্রেস করা ডাটা" diff --git a/po/bn_IN.po b/po/bn_IN.po index a765cdfb7..c53c6b9c2 100644 --- a/po/bn_IN.po +++ b/po/bn_IN.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: bn_IN\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2009-09-15 18:31+0530\n" "Last-Translator: Runa Bhattacharjee <runab@redhat.com>\n" "Language-Team: Bengali INDIA <anubad@lists.ankur.org.in>\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.glib-2-4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2004-05-17 01:30+0000\n" "Last-Translator: Kenan Hadžiavdić <kenanh@frisurf.no>\n" "Language-Team: Bosnian <lokal@lugbih.org>\n" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-02 14:02+0200\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-04-02 14:03+0200\n" "Last-Translator: Gil Forcada <gilforcada@guifi.net>\n" "Language-Team: Catalan <tradgnome@softcatala.org>\n" @@ -18,344 +18,349 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: ../glib/gbookmarkfile.c:737 +#: glib/gbookmarkfile.c:737 #, c-format msgid "Unexpected attribute '%s' for element '%s'" msgstr "No s'esperava l'atribut «%s» per a l'element «%s»" -#: ../glib/gbookmarkfile.c:748 ../glib/gbookmarkfile.c:819 -#: ../glib/gbookmarkfile.c:829 ../glib/gbookmarkfile.c:936 +#: glib/gbookmarkfile.c:748 glib/gbookmarkfile.c:819 glib/gbookmarkfile.c:829 +#: glib/gbookmarkfile.c:936 #, c-format msgid "Attribute '%s' of element '%s' not found" msgstr "No s'ha trobat l'atribut «%s» de l'element «%s»" -#: ../glib/gbookmarkfile.c:1106 ../glib/gbookmarkfile.c:1171 -#: ../glib/gbookmarkfile.c:1235 ../glib/gbookmarkfile.c:1245 +#: glib/gbookmarkfile.c:1106 glib/gbookmarkfile.c:1171 +#: glib/gbookmarkfile.c:1235 glib/gbookmarkfile.c:1245 #, c-format msgid "Unexpected tag '%s', tag '%s' expected" msgstr "No s'esperava l'etiqueta «%s», s'esperava «%s»" -#: ../glib/gbookmarkfile.c:1131 ../glib/gbookmarkfile.c:1145 -#: ../glib/gbookmarkfile.c:1213 ../glib/gbookmarkfile.c:1265 +#: glib/gbookmarkfile.c:1131 glib/gbookmarkfile.c:1145 +#: glib/gbookmarkfile.c:1213 glib/gbookmarkfile.c:1265 #, c-format msgid "Unexpected tag '%s' inside '%s'" msgstr "No s'esperava l'etiqueta «%s» dins «%s»" -#: ../glib/gbookmarkfile.c:1793 +#: glib/gbookmarkfile.c:1793 msgid "No valid bookmark file found in data dirs" msgstr "" "No s'ha trobat cap fitxer d'adreces d'interès dins dels directoris de dades" -#: ../glib/gbookmarkfile.c:1994 +#: glib/gbookmarkfile.c:1994 #, c-format msgid "A bookmark for URI '%s' already exists" msgstr "Ja existeix una adreça d'interès per a l'URI «%s»" -#: ../glib/gbookmarkfile.c:2040 ../glib/gbookmarkfile.c:2198 -#: ../glib/gbookmarkfile.c:2283 ../glib/gbookmarkfile.c:2363 -#: ../glib/gbookmarkfile.c:2448 ../glib/gbookmarkfile.c:2531 -#: ../glib/gbookmarkfile.c:2609 ../glib/gbookmarkfile.c:2688 -#: ../glib/gbookmarkfile.c:2730 ../glib/gbookmarkfile.c:2827 -#: ../glib/gbookmarkfile.c:2953 ../glib/gbookmarkfile.c:3143 -#: ../glib/gbookmarkfile.c:3219 ../glib/gbookmarkfile.c:3384 -#: ../glib/gbookmarkfile.c:3473 ../glib/gbookmarkfile.c:3563 -#: ../glib/gbookmarkfile.c:3691 +#: glib/gbookmarkfile.c:2040 glib/gbookmarkfile.c:2198 +#: glib/gbookmarkfile.c:2283 glib/gbookmarkfile.c:2363 +#: glib/gbookmarkfile.c:2448 glib/gbookmarkfile.c:2531 +#: glib/gbookmarkfile.c:2609 glib/gbookmarkfile.c:2688 +#: glib/gbookmarkfile.c:2730 glib/gbookmarkfile.c:2827 +#: glib/gbookmarkfile.c:2953 glib/gbookmarkfile.c:3143 +#: glib/gbookmarkfile.c:3219 glib/gbookmarkfile.c:3384 +#: glib/gbookmarkfile.c:3473 glib/gbookmarkfile.c:3563 +#: glib/gbookmarkfile.c:3691 #, c-format msgid "No bookmark found for URI '%s'" msgstr "No s'ha trobat cap adreça d'interès per a l'URI «%s»" -#: ../glib/gbookmarkfile.c:2372 +#: glib/gbookmarkfile.c:2372 #, c-format msgid "No MIME type defined in the bookmark for URI '%s'" msgstr "No hi ha cap tipus MIME definit a l'adreça d'interès per a l'URI «%s»" -#: ../glib/gbookmarkfile.c:2457 +#: glib/gbookmarkfile.c:2457 #, c-format msgid "No private flag has been defined in bookmark for URI '%s'" msgstr "" "No hi ha cap senyalador privat definit a l'adreça d'interès per a l'URI «%s»" -#: ../glib/gbookmarkfile.c:2836 +#: glib/gbookmarkfile.c:2836 #, c-format msgid "No groups set in bookmark for URI '%s'" msgstr "No hi ha cap grup establert a l'adreça d'interès per a l'URI «%s»" -#: ../glib/gbookmarkfile.c:3237 ../glib/gbookmarkfile.c:3394 +#: glib/gbookmarkfile.c:3237 glib/gbookmarkfile.c:3394 #, c-format msgid "No application with name '%s' registered a bookmark for '%s'" msgstr "" "No hi ha cap aplicació amb el nom «%s» que hagi registrat l'adreça d'interès «%" "s»" -#: ../glib/gbookmarkfile.c:3417 +#: glib/gbookmarkfile.c:3417 #, c-format msgid "Failed to expand exec line '%s' with URI '%s'" msgstr "No s'ha pogut expandir la línia d'execució «%s» amb URI «%s»" -#: ../glib/gconvert.c:437 ../glib/gconvert.c:515 ../glib/giochannel.c:1404 -#: ../gio/gcharsetconverter.c:459 +#: glib/gconvert.c:437 glib/gconvert.c:515 glib/giochannel.c:1404 +#: gio/gcharsetconverter.c:459 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "No es permet la conversió entre els jocs de caràcters «%s» a «%s»" -#: ../glib/gconvert.c:441 ../glib/gconvert.c:519 -#: ../gio/gcharsetconverter.c:463 +#: glib/gconvert.c:441 glib/gconvert.c:519 gio/gcharsetconverter.c:463 #, c-format msgid "Could not open converter from '%s' to '%s'" msgstr "No s'ha pogut obrir el convertidor de «%s» a «%s»" -#: ../glib/gconvert.c:638 ../glib/gconvert.c:1031 ../glib/giochannel.c:1576 -#: ../glib/giochannel.c:1618 ../glib/giochannel.c:2462 ../glib/gutf8.c:981 -#: ../glib/gutf8.c:1436 ../gio/gcharsetconverter.c:346 +#: glib/gconvert.c:638 glib/gconvert.c:1031 glib/giochannel.c:1576 +#: glib/giochannel.c:1618 glib/giochannel.c:2462 glib/gutf8.c:981 +#: glib/gutf8.c:1436 gio/gcharsetconverter.c:346 msgid "Invalid byte sequence in conversion input" msgstr "La seqüència de bytes a l'entrada de conversió no és vàlida" -#: ../glib/gconvert.c:646 ../glib/gconvert.c:956 ../glib/giochannel.c:1583 -#: ../glib/giochannel.c:2474 ../gio/gcharsetconverter.c:351 +#: glib/gconvert.c:646 glib/gconvert.c:956 glib/giochannel.c:1583 +#: glib/giochannel.c:2474 gio/gcharsetconverter.c:351 #, c-format msgid "Error during conversion: %s" msgstr "S'ha produït un error durant la conversió: %s" -#: ../glib/gconvert.c:678 ../glib/gutf8.c:977 ../glib/gutf8.c:1187 -#: ../glib/gutf8.c:1328 ../glib/gutf8.c:1432 +#: glib/gconvert.c:678 glib/gutf8.c:977 glib/gutf8.c:1187 glib/gutf8.c:1328 +#: glib/gutf8.c:1432 msgid "Partial character sequence at end of input" msgstr "Seqüència de caràcters parcial al final de l'entrada" # FIXME: fallback -#: ../glib/gconvert.c:928 +#: glib/gconvert.c:928 #, c-format msgid "Cannot convert fallback '%s' to codeset '%s'" msgstr "No es pot convertir el «fallback» «%s» al joc de codis «%s»" -#: ../glib/gconvert.c:1751 +#: glib/gconvert.c:1751 #, c-format msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" msgstr "L'URI «%s» no és un URI absolut que utilitzi l'esquema «file»" -#: ../glib/gconvert.c:1761 +#: glib/gconvert.c:1761 #, c-format msgid "The local file URI '%s' may not include a '#'" msgstr "Pot ser que l'URI del fitxer local «%s» no inclogui cap «#»" -#: ../glib/gconvert.c:1778 +#: glib/gconvert.c:1778 #, c-format msgid "The URI '%s' is invalid" msgstr "L'URI «%s» no és vàlid" -#: ../glib/gconvert.c:1790 +#: glib/gconvert.c:1790 #, c-format msgid "The hostname of the URI '%s' is invalid" msgstr "El nom de l'ordinador de l'URI «%s» no és vàlid" -#: ../glib/gconvert.c:1806 +#: glib/gconvert.c:1806 #, c-format msgid "The URI '%s' contains invalidly escaped characters" msgstr "L'URI «%s» conté caràcters d'escapada invàlids" -#: ../glib/gconvert.c:1901 +#: glib/gconvert.c:1901 #, c-format msgid "The pathname '%s' is not an absolute path" msgstr "El nom de camí «%s» no és un camí absolut" -#: ../glib/gconvert.c:1911 +#: glib/gconvert.c:1911 msgid "Invalid hostname" msgstr "El nom de l'ordinador no és vàlid" -#: ../glib/gdir.c:112 ../glib/gdir.c:135 +#: glib/gdir.c:112 glib/gdir.c:135 #, c-format msgid "Error opening directory '%s': %s" msgstr "S'ha produït un error en obrir el directori «%s»: %s" -#: ../glib/gfileutils.c:536 ../glib/gfileutils.c:624 +#: glib/gfileutils.c:536 glib/gfileutils.c:624 #, c-format msgid "Could not allocate %lu bytes to read file \"%s\"" msgstr "No s'han pogut assignar %lu bytes per llegir el fitxer «%s»" -#: ../glib/gfileutils.c:551 +#: glib/gfileutils.c:551 #, c-format msgid "Error reading file '%s': %s" msgstr "S'ha produït un error en llegir el fitxer «%s»: %s" -#: ../glib/gfileutils.c:565 +#: glib/gfileutils.c:565 #, c-format msgid "File \"%s\" is too large" msgstr "El fitxer «%s» és massa gran" -#: ../glib/gfileutils.c:648 +#: glib/gfileutils.c:648 #, c-format msgid "Failed to read from file '%s': %s" msgstr "No s'ha pogut llegir del fitxer «%s»: %s" -#: ../glib/gfileutils.c:699 ../glib/gfileutils.c:786 +#: glib/gfileutils.c:699 glib/gfileutils.c:786 #, c-format msgid "Failed to open file '%s': %s" msgstr "No s'ha pogut obrir el fitxer «%s»: %s" -#: ../glib/gfileutils.c:716 ../glib/gmappedfile.c:170 +#: glib/gfileutils.c:716 glib/gmappedfile.c:170 #, c-format msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgstr "" "No s'ha pogut obtenir els atributs del fitxer «%s»: ha fallat la funció fstat" "(): %s" -#: ../glib/gfileutils.c:750 +#: glib/gfileutils.c:750 #, c-format msgid "Failed to open file '%s': fdopen() failed: %s" msgstr "No s'ha pogut obrir el fitxer «%s»: ha fallat la funció fdopen(): %s" -#: ../glib/gfileutils.c:858 +#: glib/gfileutils.c:858 #, c-format msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgstr "" "No s'ha pogut canviar el nom del fitxer «%s» a «%s»: ha fallat la funció " "g_rename(): %s" -#: ../glib/gfileutils.c:900 ../glib/gfileutils.c:1366 +#: glib/gfileutils.c:900 glib/gfileutils.c:1366 #, c-format msgid "Failed to create file '%s': %s" msgstr "No s'ha pogut crear el fitxer «%s»: %s" -#: ../glib/gfileutils.c:914 +#: glib/gfileutils.c:914 #, c-format msgid "Failed to open file '%s' for writing: fdopen() failed: %s" msgstr "" "No s'ha pogut obrir el fitxer «%s» per a escriptura: ha fallat la funció " "fdopen(): %s" -#: ../glib/gfileutils.c:939 +#: glib/gfileutils.c:939 #, c-format msgid "Failed to write file '%s': fwrite() failed: %s" msgstr "No s'ha pogut escriure el fitxer «%s»: ha fallat la funció fwrite(): %s" -#: ../glib/gfileutils.c:958 +#: glib/gfileutils.c:958 #, c-format msgid "Failed to write file '%s': fflush() failed: %s" msgstr "No s'ha pogut escriure el fitxer «%s»: ha fallat la funció fflush(): %s" -#: ../glib/gfileutils.c:987 +#: glib/gfileutils.c:987 #, c-format msgid "Failed to write file '%s': fsync() failed: %s" msgstr "No s'ha pogut escriure el fitxer «%s»: ha fallat la funció fsync(): %s" -#: ../glib/gfileutils.c:1006 +#: glib/gfileutils.c:1006 #, c-format msgid "Failed to close file '%s': fclose() failed: %s" msgstr "No s'ha pogut tancar el fitxer «%s»: ha fallat la funció fclose(): %s" -#: ../glib/gfileutils.c:1124 +#: glib/gfileutils.c:1124 #, c-format msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgstr "" "No s'ha pogut suprimir el fitxer existent «%s»: ha fallat la funció g_unlink" "(): %s" -#: ../glib/gfileutils.c:1328 +#: glib/gfileutils.c:1328 #, c-format msgid "Template '%s' invalid, should not contain a '%s'" msgstr "La plantilla «%s» no és vàlida, no hauria de tenir cap «%s»" -#: ../glib/gfileutils.c:1341 +#: glib/gfileutils.c:1341 #, c-format msgid "Template '%s' doesn't contain XXXXXX" msgstr "La plantilla «%s» no conté XXXXXX" -#: ../glib/gfileutils.c:1782 +#: glib/gfileutils.c:1774 +#, c-format +msgid "%u byte" +msgid_plural "%u bytes" +msgstr[0] "%u byte" +msgstr[1] "%u bytes" + +#: glib/gfileutils.c:1782 #, c-format msgid "%.1f KB" msgstr "%.1f KB" -#: ../glib/gfileutils.c:1787 +#: glib/gfileutils.c:1787 #, c-format msgid "%.1f MB" msgstr "%.1f MB" -#: ../glib/gfileutils.c:1792 +#: glib/gfileutils.c:1792 #, c-format msgid "%.1f GB" msgstr "%.1f GB" -#: ../glib/gfileutils.c:1797 +#: glib/gfileutils.c:1797 #, c-format msgid "%.1f TB" msgstr "%.1f TB" -#: ../glib/gfileutils.c:1802 +#: glib/gfileutils.c:1802 #, c-format msgid "%.1f PB" msgstr "%.1f PB" -#: ../glib/gfileutils.c:1807 +#: glib/gfileutils.c:1807 #, c-format msgid "%.1f EB" msgstr "%.1f EB" -#: ../glib/gfileutils.c:1850 +#: glib/gfileutils.c:1850 #, c-format msgid "Failed to read the symbolic link '%s': %s" msgstr "No s'ha pogut llegir l'enllaç simbòlic «%s»: %s" -#: ../glib/gfileutils.c:1871 +#: glib/gfileutils.c:1871 msgid "Symbolic links not supported" msgstr "No es poden utilitzar els enllaços simbòlics" -#: ../glib/giochannel.c:1408 +#: glib/giochannel.c:1408 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "No s'ha pogut obrir el convertidor de «%s» a «%s»: %s" -#: ../glib/giochannel.c:1753 +#: glib/giochannel.c:1753 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "No es pot fer una lectura bàsica a g_io_channel_read_line_string" -#: ../glib/giochannel.c:1800 ../glib/giochannel.c:2058 -#: ../glib/giochannel.c:2145 +#: glib/giochannel.c:1800 glib/giochannel.c:2058 glib/giochannel.c:2145 msgid "Leftover unconverted data in read buffer" msgstr "A la memòria intermèdia de lectura hi ha dades sobrants no convertides" -#: ../glib/giochannel.c:1881 ../glib/giochannel.c:1958 +#: glib/giochannel.c:1881 glib/giochannel.c:1958 msgid "Channel terminates in a partial character" msgstr "El canal acaba en un caràcter parcial" -#: ../glib/giochannel.c:1944 +#: glib/giochannel.c:1944 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "No es pot fer una lectura bàsica a g_io_channel_read_to_end" -#: ../glib/gmappedfile.c:151 +#: glib/gmappedfile.c:151 #, c-format msgid "Failed to open file '%s': open() failed: %s" msgstr "No s'ha pogut obrir el fitxer «%s»: ha fallat la funció open(): %s" -#: ../glib/gmappedfile.c:230 +#: glib/gmappedfile.c:230 #, c-format msgid "Failed to map file '%s': mmap() failed: %s" msgstr "No s'ha pogut mapar el fitxer «%s»: ha fallat la funció mmap(): %s" -#: ../glib/gmarkup.c:303 ../glib/gmarkup.c:343 +#: glib/gmarkup.c:303 glib/gmarkup.c:343 #, c-format msgid "Error on line %d char %d: " msgstr "S'ha produït un error a la línia %d caràcter %d: " -#: ../glib/gmarkup.c:363 ../glib/gmarkup.c:441 +#: glib/gmarkup.c:363 glib/gmarkup.c:441 #, c-format msgid "Invalid UTF-8 encoded text in name - not valid '%s'" msgstr "El nom conté caràcters UTF-8 no vàlids: «%s»" -#: ../glib/gmarkup.c:374 +#: glib/gmarkup.c:374 #, c-format msgid "'%s' is not a valid name " msgstr "«%s» no és un nom vàlid " -#: ../glib/gmarkup.c:390 +#: glib/gmarkup.c:390 #, c-format msgid "'%s' is not a valid name: '%c' " msgstr "«%s» no és un nom vàlid: «%c» " -#: ../glib/gmarkup.c:494 +#: glib/gmarkup.c:494 #, c-format msgid "Error on line %d: %s" msgstr "S'ha produït un error a la línia %d: %s" -#: ../glib/gmarkup.c:578 +#: glib/gmarkup.c:578 #, c-format msgid "" "Failed to parse '%-.*s', which should have been a digit inside a character " @@ -364,7 +369,7 @@ msgstr "" "No s'ha pogut analitzar «%-.*s», hi hauria d'haver hagut un dígit dins un " "caràcter de referència (per exemple ê) - potser el dígit és massa llarg" -#: ../glib/gmarkup.c:590 +#: glib/gmarkup.c:590 msgid "" "Character reference did not end with a semicolon; most likely you used an " "ampersand character without intending to start an entity - escape ampersand " @@ -374,24 +379,24 @@ msgstr "" "utilitzat un caràcter «&» sense intenció d'iniciar una entitat. Substituïu el " "caràcter «&» per &" -#: ../glib/gmarkup.c:616 +#: glib/gmarkup.c:616 #, c-format msgid "Character reference '%-.*s' does not encode a permitted character" msgstr "El caràcter de referència «%-.*s» no codifica un caràcter permès" -#: ../glib/gmarkup.c:654 +#: glib/gmarkup.c:654 msgid "" "Empty entity '&;' seen; valid entities are: & " < > '" msgstr "" "S'ha vist una entitat buida «&;». Les entitats vàlides són: & " < " "> '" -#: ../glib/gmarkup.c:662 +#: glib/gmarkup.c:662 #, c-format msgid "Entity name '%-.*s' is not known" msgstr "Es desconeix el nom d'entitat «%-.*s»" -#: ../glib/gmarkup.c:667 +#: glib/gmarkup.c:667 msgid "" "Entity did not end with a semicolon; most likely you used an ampersand " "character without intending to start an entity - escape ampersand as &" @@ -399,11 +404,11 @@ msgstr "" "L'entitat no acaba amb un punt i coma. Segurament heu utilitzat un caràcter " "«&» sense intenció d'iniciar una entitat. Substituïu el caràcter «&» per &" -#: ../glib/gmarkup.c:1014 +#: glib/gmarkup.c:1014 msgid "Document must begin with an element (e.g. <book>)" msgstr "El document ha de començar amb un element (p.ex. <llibre>)" -#: ../glib/gmarkup.c:1054 +#: glib/gmarkup.c:1054 #, c-format msgid "" "'%s' is not a valid character following a '<' character; it may not begin an " @@ -412,7 +417,7 @@ msgstr "" "«%s» no és un caràcter vàlid després d'un caràcter «<». No pot començar un nom " "d'element" -#: ../glib/gmarkup.c:1122 +#: glib/gmarkup.c:1122 #, c-format msgid "" "Odd character '%s', expected a '>' character to end the empty-element tag '%" @@ -421,7 +426,7 @@ msgstr "" "S'ha trobat un caràcter estrany «%s». S'esperava el caràcter «>» per acabar " "l'etiqueta d'element buit «%s»" -#: ../glib/gmarkup.c:1206 +#: glib/gmarkup.c:1206 #, c-format msgid "" "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" @@ -429,7 +434,7 @@ msgstr "" "S'ha trobat un caràcter estrany «%s». S'esperava un «=» després del nom " "d'atribut «%s» de l'element «%s»" -#: ../glib/gmarkup.c:1247 +#: glib/gmarkup.c:1247 #, c-format msgid "" "Odd character '%s', expected a '>' or '/' character to end the start tag of " @@ -440,7 +445,7 @@ msgstr "" "finalitzar l'etiqueta d'inici de l'element «%s», o opcionalment un atribut. " "Potser heu utilitzat un caràcter no vàlid en un nom d'atribut" -#: ../glib/gmarkup.c:1291 +#: glib/gmarkup.c:1291 #, c-format msgid "" "Odd character '%s', expected an open quote mark after the equals sign when " @@ -449,7 +454,7 @@ msgstr "" "S'ha trobat un caràcter estrany «%s». S'esperaven unes cometes d'obertura " "després del signe «=» en donar valor a l'atribut «%s» de l'element «%s»" -#: ../glib/gmarkup.c:1425 +#: glib/gmarkup.c:1425 #, c-format msgid "" "'%s' is not a valid character following the characters '</'; '%s' may not " @@ -458,7 +463,7 @@ msgstr "" "«%s» no és un caràcter vàlid després dels caràcters «</»; «%s» no hauria " "d'iniciar un nom d'element" -#: ../glib/gmarkup.c:1461 +#: glib/gmarkup.c:1461 #, c-format msgid "" "'%s' is not a valid character following the close element name '%s'; the " @@ -467,27 +472,27 @@ msgstr "" "«%s» no és un caràcter vàlid després del nom d'element de tancament «%s». El " "caràcter permès és «>»" -#: ../glib/gmarkup.c:1472 +#: glib/gmarkup.c:1472 #, c-format msgid "Element '%s' was closed, no element is currently open" msgstr "L'element «%s» estava tancat. Actualment no hi ha cap element obert" -#: ../glib/gmarkup.c:1481 +#: glib/gmarkup.c:1481 #, c-format msgid "Element '%s' was closed, but the currently open element is '%s'" msgstr "L'element «%s» estava tancat. L'element obert actualment és «%s»" -#: ../glib/gmarkup.c:1648 +#: glib/gmarkup.c:1648 msgid "Document was empty or contained only whitespace" msgstr "El document era buit o només contenia espais en blanc" -#: ../glib/gmarkup.c:1662 +#: glib/gmarkup.c:1662 msgid "Document ended unexpectedly just after an open angle bracket '<'" msgstr "" "El document ha acabat de manera inesperada immediatament després del símbol " "«<»" -#: ../glib/gmarkup.c:1670 ../glib/gmarkup.c:1715 +#: glib/gmarkup.c:1670 glib/gmarkup.c:1715 #, c-format msgid "" "Document ended unexpectedly with elements still open - '%s' was the last " @@ -496,7 +501,7 @@ msgstr "" "El document ha acabat de manera inesperada amb elements encara oberts. «%s» " "era l'últim element obert" -#: ../glib/gmarkup.c:1678 +#: glib/gmarkup.c:1678 #, c-format msgid "" "Document ended unexpectedly, expected to see a close angle bracket ending " @@ -505,21 +510,21 @@ msgstr "" "El document ha acabat de manera inesperada. S'esperava trobar un símbol «>» " "que acabés l'etiqueta <%s/>" -#: ../glib/gmarkup.c:1684 +#: glib/gmarkup.c:1684 msgid "Document ended unexpectedly inside an element name" msgstr "El document ha acabat de manera inesperada enmig d'un nom d'element" -#: ../glib/gmarkup.c:1690 +#: glib/gmarkup.c:1690 msgid "Document ended unexpectedly inside an attribute name" msgstr "El document ha acabat de manera inesperada enmig d'un nom d'atribut" -#: ../glib/gmarkup.c:1695 +#: glib/gmarkup.c:1695 msgid "Document ended unexpectedly inside an element-opening tag." msgstr "" "El document ha acabat de manera inesperada enmig d'una etiqueta d'obertura " "d'un element." -#: ../glib/gmarkup.c:1701 +#: glib/gmarkup.c:1701 msgid "" "Document ended unexpectedly after the equals sign following an attribute " "name; no attribute value" @@ -527,409 +532,407 @@ msgstr "" "El document ha acabat de manera inesperada després d'un signe d'igual " "després d'un nom d'atribut. No hi ha cap valor d'atribut" -#: ../glib/gmarkup.c:1708 +#: glib/gmarkup.c:1708 msgid "Document ended unexpectedly while inside an attribute value" msgstr "El document ha acabat de manera inesperada enmig d'un valor d'atribut" -#: ../glib/gmarkup.c:1724 +#: glib/gmarkup.c:1724 #, c-format msgid "Document ended unexpectedly inside the close tag for element '%s'" msgstr "" "El document ha acabat de manera inesperada enmig de l'etiqueta de tancament " "de l'element «%s»" -#: ../glib/gmarkup.c:1730 +#: glib/gmarkup.c:1730 msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "" "El document ha acabat de manera inesperada enmig d'un comentari o una " "instrucció de processament" -#: ../glib/gregex.c:131 +#: glib/gregex.c:131 msgid "corrupted object" msgstr "objecte malmès" -#: ../glib/gregex.c:133 +#: glib/gregex.c:133 msgid "internal error or corrupted object" msgstr "error intern o objecte malmès" -#: ../glib/gregex.c:135 +#: glib/gregex.c:135 msgid "out of memory" msgstr "no hi ha prou memòria" -#: ../glib/gregex.c:140 +#: glib/gregex.c:140 msgid "backtracking limit reached" msgstr "s'ha arribat al límit de tornades enrere" -#: ../glib/gregex.c:152 ../glib/gregex.c:160 +#: glib/gregex.c:152 glib/gregex.c:160 msgid "the pattern contains items not supported for partial matching" msgstr "" "el patró conté elements que no estan implementats en les concordances " "parcials" -#: ../glib/gregex.c:154 ../gio/glocalfile.c:2110 +#: glib/gregex.c:154 gio/glocalfile.c:2115 msgid "internal error" msgstr "error intern" -#: ../glib/gregex.c:162 +#: glib/gregex.c:162 msgid "back references as conditions are not supported for partial matching" msgstr "" "no s'ha implementat l'ús de referències anteriors per a coincidències " "parcials" -#: ../glib/gregex.c:171 +#: glib/gregex.c:171 msgid "recursion limit reached" msgstr "s'ha arribat al límit de recurrències" -#: ../glib/gregex.c:173 +#: glib/gregex.c:173 msgid "workspace limit for empty substrings reached" msgstr "s'ha arribat al límit d'espais de treball per a subcadenes buides" -#: ../glib/gregex.c:175 +#: glib/gregex.c:175 msgid "invalid combination of newline flags" msgstr "la combinació de senyaladors de línia nova no és vàlida" -#: ../glib/gregex.c:179 +#: glib/gregex.c:179 msgid "unknown error" msgstr "error desconegut" -#: ../glib/gregex.c:199 +#: glib/gregex.c:199 msgid "\\ at end of pattern" msgstr "\\ al final del patró" -#: ../glib/gregex.c:202 +#: glib/gregex.c:202 msgid "\\c at end of pattern" msgstr "\\c al final del patró" -#: ../glib/gregex.c:205 +#: glib/gregex.c:205 msgid "unrecognized character follows \\" msgstr "caràcter no reconegut després de \\" -#: ../glib/gregex.c:212 +#: glib/gregex.c:212 msgid "case-changing escapes (\\l, \\L, \\u, \\U) are not allowed here" msgstr "aquí no es permeten els escapaments (\\l,\\L, \\u, \\U)" -#: ../glib/gregex.c:215 +#: glib/gregex.c:215 msgid "numbers out of order in {} quantifier" msgstr "nombres fora del rang en el quantificador {}" -#: ../glib/gregex.c:218 +#: glib/gregex.c:218 msgid "number too big in {} quantifier" msgstr "nombre massa gran en el quantificador {}" -#: ../glib/gregex.c:221 +#: glib/gregex.c:221 msgid "missing terminating ] for character class" msgstr "falta el «]» per a la classe de caràcter" -#: ../glib/gregex.c:224 +#: glib/gregex.c:224 msgid "invalid escape sequence in character class" msgstr "la seqüència d'escapada en la classe de caràcter no és vàlida" -#: ../glib/gregex.c:227 +#: glib/gregex.c:227 msgid "range out of order in character class" msgstr "s'ha sortit del rang en la classe de caràcter" -#: ../glib/gregex.c:230 +#: glib/gregex.c:230 msgid "nothing to repeat" msgstr "no hi ha res a repetir" -#: ../glib/gregex.c:233 +#: glib/gregex.c:233 msgid "unrecognized character after (?" msgstr "no es reconeix el caràcter després de «(?»" -#: ../glib/gregex.c:237 +#: glib/gregex.c:237 msgid "unrecognized character after (?<" msgstr "no es reconeix el caràcter després de «(?<»" -#: ../glib/gregex.c:241 +#: glib/gregex.c:241 msgid "unrecognized character after (?P" msgstr "no es reconeix el caràcter després de «(?P»" -#: ../glib/gregex.c:244 +#: glib/gregex.c:244 msgid "POSIX named classes are supported only within a class" msgstr "" "només es permeten les classes amb nom de POSIX dins de la pròpia classe" -#: ../glib/gregex.c:247 +#: glib/gregex.c:247 msgid "missing terminating )" msgstr "falta un «)»" -#: ../glib/gregex.c:251 +#: glib/gregex.c:251 msgid ") without opening (" msgstr "hi ha un «)» sense el corresponent «(»" #. translators: '(?R' and '(?[+-]digits' are both meant as (groups of) #. * sequences here, '(?-54' would be an example for the second group. #. -#: ../glib/gregex.c:258 +#: glib/gregex.c:258 msgid "(?R or (?[+-]digits must be followed by )" msgstr "«(?R» o «(?[+-]dígits» han d'anar seguits per «)»" -#: ../glib/gregex.c:261 +#: glib/gregex.c:261 msgid "reference to non-existent subpattern" msgstr "referència a un subpatró que no existeix" -#: ../glib/gregex.c:264 +#: glib/gregex.c:264 msgid "missing ) after comment" msgstr "falta un «)» després del comentari" -#: ../glib/gregex.c:267 +#: glib/gregex.c:267 msgid "regular expression too large" msgstr "l'expressió regular és massa llarga" -#: ../glib/gregex.c:270 +#: glib/gregex.c:270 msgid "failed to get memory" msgstr "no s'ha pogut obtenir memòria" -#: ../glib/gregex.c:273 +#: glib/gregex.c:273 msgid "lookbehind assertion is not fixed length" msgstr "l'asserció cap enrere no té llargada fixa" -#: ../glib/gregex.c:276 +#: glib/gregex.c:276 msgid "malformed number or name after (?(" msgstr "nombre o nom malformats després de «(?(»" -#: ../glib/gregex.c:279 +#: glib/gregex.c:279 msgid "conditional group contains more than two branches" msgstr "el grup condicional conté més de dues branques" -#: ../glib/gregex.c:282 +#: glib/gregex.c:282 msgid "assertion expected after (?(" msgstr "s'esperava una asserció després de «(?(»" -#: ../glib/gregex.c:285 +#: glib/gregex.c:285 msgid "unknown POSIX class name" msgstr "nom de classe POSIX desconeguda" -#: ../glib/gregex.c:288 +#: glib/gregex.c:288 msgid "POSIX collating elements are not supported" msgstr "no es poden utilitzar els elements d'ordenació de POSIX" -#: ../glib/gregex.c:291 +#: glib/gregex.c:291 msgid "character value in \\x{...} sequence is too large" msgstr "el valor del caràcter a la seqüència «\\x{...}» és massa llarg" -#: ../glib/gregex.c:294 +#: glib/gregex.c:294 msgid "invalid condition (?(0)" msgstr "condició «(?(0)» no vàlida" -#: ../glib/gregex.c:297 +#: glib/gregex.c:297 msgid "\\C not allowed in lookbehind assertion" msgstr "no es permet \\C en assercions cap enrere" -#: ../glib/gregex.c:300 +#: glib/gregex.c:300 msgid "recursive call could loop indefinitely" msgstr "la crida recursiva podria entrar en bucle indefinidament" -#: ../glib/gregex.c:303 +#: glib/gregex.c:303 msgid "missing terminator in subpattern name" msgstr "falta la finalització en el nom del subpatró" -#: ../glib/gregex.c:306 +#: glib/gregex.c:306 msgid "two named subpatterns have the same name" msgstr "dos noms de subpatró tenen el mateix nom" -#: ../glib/gregex.c:309 +#: glib/gregex.c:309 msgid "malformed \\P or \\p sequence" msgstr "la seqüència «\\P» o «\\p» és malformada" -#: ../glib/gregex.c:312 +#: glib/gregex.c:312 msgid "unknown property name after \\P or \\p" msgstr "es desconeix el nom de la propietat després de «\\P» o «\\p»" -#: ../glib/gregex.c:315 +#: glib/gregex.c:315 msgid "subpattern name is too long (maximum 32 characters)" msgstr "el nom del subpatró és massa llarg (32 caràcters com a màxim)" -#: ../glib/gregex.c:318 +#: glib/gregex.c:318 msgid "too many named subpatterns (maximum 10,000)" msgstr "hi ha massa subpatrons amb nom (màxim de 10.000)" -#: ../glib/gregex.c:321 +#: glib/gregex.c:321 msgid "octal value is greater than \\377" msgstr "el valor octal és més gran que \\377" -#: ../glib/gregex.c:324 +#: glib/gregex.c:324 msgid "DEFINE group contains more than one branch" msgstr "el grup «DEFINE» conté més d'una branca" -#: ../glib/gregex.c:327 +#: glib/gregex.c:327 msgid "repeating a DEFINE group is not allowed" msgstr "no es permet repetir un grup «DEFINE»" -#: ../glib/gregex.c:330 +#: glib/gregex.c:330 msgid "inconsistent NEWLINE options" msgstr "opcions «NEWLINE» inconsistents" -#: ../glib/gregex.c:333 +#: glib/gregex.c:333 msgid "" "\\g is not followed by a braced name or an optionally braced non-zero number" msgstr "" "«\\g» no és seguit per un nom entre claus o un nombre opcional diferent de " "zero entre claus" -#: ../glib/gregex.c:338 +#: glib/gregex.c:338 msgid "unexpected repeat" msgstr "repetició no esperada" -#: ../glib/gregex.c:342 +#: glib/gregex.c:342 msgid "code overflow" msgstr "desbordament del codi" -#: ../glib/gregex.c:346 +#: glib/gregex.c:346 msgid "overran compiling workspace" msgstr "s'ha produït un desbordament en compilar l'espai de treball" -#: ../glib/gregex.c:350 +#: glib/gregex.c:350 msgid "previously-checked referenced subpattern not found" msgstr "no s'ha trobat el subpatró referenciat comprovat anteriorment" -#: ../glib/gregex.c:522 ../glib/gregex.c:1603 +#: glib/gregex.c:522 glib/gregex.c:1603 #, c-format msgid "Error while matching regular expression %s: %s" msgstr "S'ha produït un error en fer coincidir l'expressió regular %s: %s" -#: ../glib/gregex.c:1094 +#: glib/gregex.c:1094 msgid "PCRE library is compiled without UTF8 support" msgstr "La biblioteca PCRE no està compilada per interpretar UTF8" -#: ../glib/gregex.c:1103 +#: glib/gregex.c:1103 msgid "PCRE library is compiled without UTF8 properties support" msgstr "" "La biblioteca PCRE no està compilada per interpretar les propietats UTF8" -#: ../glib/gregex.c:1157 +#: glib/gregex.c:1157 #, c-format msgid "Error while compiling regular expression %s at char %d: %s" msgstr "" "S'ha produït un error en compilar l'expressió regular %s al caràcter %d: %s" -#: ../glib/gregex.c:1193 +#: glib/gregex.c:1193 #, c-format msgid "Error while optimizing regular expression %s: %s" msgstr "S'ha produït un error en optimitzar l'expressió regular %s: %s" -#: ../glib/gregex.c:2031 +#: glib/gregex.c:2031 msgid "hexadecimal digit or '}' expected" msgstr "s'esperava un dígit hexadecimal o bé «}»" -#: ../glib/gregex.c:2047 +#: glib/gregex.c:2047 msgid "hexadecimal digit expected" msgstr "s'esperava un dígit hexadecimal" -#: ../glib/gregex.c:2087 +#: glib/gregex.c:2087 msgid "missing '<' in symbolic reference" msgstr "falta un «<» en la referència simbòlica" -#: ../glib/gregex.c:2096 +#: glib/gregex.c:2096 msgid "unfinished symbolic reference" msgstr "la referència simbòlica no està acabada" -#: ../glib/gregex.c:2103 +#: glib/gregex.c:2103 msgid "zero-length symbolic reference" msgstr "referència simbòlica de longitud zero" -#: ../glib/gregex.c:2114 +#: glib/gregex.c:2114 msgid "digit expected" msgstr "s'esperava un dígit" -#: ../glib/gregex.c:2132 +#: glib/gregex.c:2132 msgid "illegal symbolic reference" msgstr "la referència simbòlica no és vàlida" -#: ../glib/gregex.c:2194 +#: glib/gregex.c:2194 msgid "stray final '\\'" msgstr "«\\» final extraviat" -#: ../glib/gregex.c:2198 +#: glib/gregex.c:2198 msgid "unknown escape sequence" msgstr "no es reconeix la seqüència d'escapament" -#: ../glib/gregex.c:2208 +#: glib/gregex.c:2208 #, c-format msgid "Error while parsing replacement text \"%s\" at char %lu: %s" msgstr "" "S'ha produït un error en analitzar el text de reemplaçament «%s» al caràcter %" "lu: %s" -#: ../glib/gshell.c:92 +#: glib/gshell.c:92 msgid "Quoted text doesn't begin with a quotation mark" msgstr "El text citat no comença amb cometes" -#: ../glib/gshell.c:182 +#: glib/gshell.c:182 msgid "Unmatched quotation mark in command line or other shell-quoted text" msgstr "" "S'han trobat unes cometes desaparellades en una línia d'ordres o en un altre " "text entre cometes" -#: ../glib/gshell.c:560 +#: glib/gshell.c:560 #, c-format msgid "Text ended just after a '\\' character. (The text was '%s')" msgstr "El text acaba just després d'un caràcter «\\». (El text era «%s»)" -#: ../glib/gshell.c:567 +#: glib/gshell.c:567 #, c-format msgid "Text ended before matching quote was found for %c. (The text was '%s')" msgstr "" "El text ha acabat abans de trobar les cometes corresponents a %c. (El text " "era «%s»)" -#: ../glib/gshell.c:579 +#: glib/gshell.c:579 msgid "Text was empty (or contained only whitespace)" msgstr "El text era buit (o només contenia espais en blanc)" -#: ../glib/gspawn-win32.c:283 +#: glib/gspawn-win32.c:283 msgid "Failed to read data from child process" msgstr "No s'ha pogut llegir dades del procés fill" -#: ../glib/gspawn-win32.c:300 ../glib/gspawn.c:1480 +#: glib/gspawn-win32.c:300 glib/gspawn.c:1480 #, c-format msgid "Failed to create pipe for communicating with child process (%s)" msgstr "" "No s'ha pogut crear el conducte per comunicar-se amb el procés fill (%s)" -#: ../glib/gspawn-win32.c:339 ../glib/gspawn-win32.c:347 ../glib/gspawn.c:1139 +#: glib/gspawn-win32.c:339 glib/gspawn-win32.c:347 glib/gspawn.c:1139 #, c-format msgid "Failed to read from child pipe (%s)" msgstr "No s'ha pogut llegir des del conducte fill (%s)" -#: ../glib/gspawn-win32.c:370 ../glib/gspawn.c:1346 +#: glib/gspawn-win32.c:370 glib/gspawn.c:1346 #, c-format msgid "Failed to change to directory '%s' (%s)" msgstr "No s'ha pogut canviar al directori «%s» (%s)" -#: ../glib/gspawn-win32.c:376 ../glib/gspawn-win32.c:495 +#: glib/gspawn-win32.c:376 glib/gspawn-win32.c:495 #, c-format msgid "Failed to execute child process (%s)" msgstr "No s'ha pogut executar el procés fill (%s)" -#: ../glib/gspawn-win32.c:445 +#: glib/gspawn-win32.c:445 #, c-format msgid "Invalid program name: %s" msgstr "El nom del programa no és vàlid: %s" -#: ../glib/gspawn-win32.c:455 ../glib/gspawn-win32.c:723 -#: ../glib/gspawn-win32.c:1279 +#: glib/gspawn-win32.c:455 glib/gspawn-win32.c:723 glib/gspawn-win32.c:1279 #, c-format msgid "Invalid string in argument vector at %d: %s" msgstr "La cadena en el vector d'argument no és vàlida a %d: %s" -#: ../glib/gspawn-win32.c:466 ../glib/gspawn-win32.c:738 -#: ../glib/gspawn-win32.c:1312 +#: glib/gspawn-win32.c:466 glib/gspawn-win32.c:738 glib/gspawn-win32.c:1312 #, c-format msgid "Invalid string in environment: %s" msgstr "Cadena no vàlida a l'entorn: %s" -#: ../glib/gspawn-win32.c:719 ../glib/gspawn-win32.c:1260 +#: glib/gspawn-win32.c:719 glib/gspawn-win32.c:1260 #, c-format msgid "Invalid working directory: %s" msgstr "El directori de treball no és vàlid: %s" -#: ../glib/gspawn-win32.c:784 +#: glib/gspawn-win32.c:784 #, c-format msgid "Failed to execute helper program (%s)" msgstr "No s'ha pogut executar el programa d'ajuda (%s)" -#: ../glib/gspawn-win32.c:998 +#: glib/gspawn-win32.c:998 msgid "" "Unexpected error in g_io_channel_win32_poll() reading data from a child " "process" @@ -937,140 +940,140 @@ msgstr "" "S'ha produït un error inesperat a g_io_channel_win32_poll() en llegir dades " "d'un procés fill" -#: ../glib/gspawn.c:190 +#: glib/gspawn.c:190 #, c-format msgid "Failed to read data from child process (%s)" msgstr "No s'ha pogut llegir dades des del procés fill (%s)" -#: ../glib/gspawn.c:329 +#: glib/gspawn.c:329 #, c-format msgid "Unexpected error in select() reading data from a child process (%s)" msgstr "" "S'ha produït un error inesperat a select() en llegir dades des d'un procés " "fill (%s)" -#: ../glib/gspawn.c:414 +#: glib/gspawn.c:414 #, c-format msgid "Unexpected error in waitpid() (%s)" msgstr "S'ha produït un error inesperat en waitpid() (%s)" -#: ../glib/gspawn.c:1206 +#: glib/gspawn.c:1206 #, c-format msgid "Failed to fork (%s)" msgstr "No s'ha pogut bifurcar-se (%s)" -#: ../glib/gspawn.c:1356 +#: glib/gspawn.c:1356 #, c-format msgid "Failed to execute child process \"%s\" (%s)" msgstr "No s'ha pogut executar el procés fill «%s» (%s)" -#: ../glib/gspawn.c:1366 +#: glib/gspawn.c:1366 #, c-format msgid "Failed to redirect output or input of child process (%s)" msgstr "No s'ha pogut redirigir l'entrada o la sortida del procés fill (%s)" -#: ../glib/gspawn.c:1375 +#: glib/gspawn.c:1375 #, c-format msgid "Failed to fork child process (%s)" msgstr "No s'ha pogut bifurcar el procés fill (%s)" -#: ../glib/gspawn.c:1383 +#: glib/gspawn.c:1383 #, c-format msgid "Unknown error executing child process \"%s\"" msgstr "S'ha produït un error desconegut en executar el procés fill «%s»" -#: ../glib/gspawn.c:1407 +#: glib/gspawn.c:1407 #, c-format msgid "Failed to read enough data from child pid pipe (%s)" msgstr "" "No s'han pogut llegir prou dades del conducte de l'identificador del procés " "fill (%s)" -#: ../glib/gutf8.c:1055 +#: glib/gutf8.c:1055 msgid "Character out of range for UTF-8" msgstr "El caràcter és fora del rang per a UTF-8" -#: ../glib/gutf8.c:1155 ../glib/gutf8.c:1164 ../glib/gutf8.c:1296 -#: ../glib/gutf8.c:1305 ../glib/gutf8.c:1446 ../glib/gutf8.c:1542 +#: glib/gutf8.c:1155 glib/gutf8.c:1164 glib/gutf8.c:1296 glib/gutf8.c:1305 +#: glib/gutf8.c:1446 glib/gutf8.c:1542 msgid "Invalid sequence in conversion input" msgstr "Seqüència no vàlida a l'entrada de la conversió" -#: ../glib/gutf8.c:1457 ../glib/gutf8.c:1553 +#: glib/gutf8.c:1457 glib/gutf8.c:1553 msgid "Character out of range for UTF-16" msgstr "El caràcter és fora del rang per a UTF-16" -#: ../glib/goption.c:755 +#: glib/goption.c:755 msgid "Usage:" msgstr "Forma d'ús:" -#: ../glib/goption.c:755 +#: glib/goption.c:755 msgid "[OPTION...]" msgstr "[OPCIÓ...]" -#: ../glib/goption.c:861 +#: glib/goption.c:861 msgid "Help Options:" msgstr "Opcions d'ajuda:" -#: ../glib/goption.c:862 +#: glib/goption.c:862 msgid "Show help options" msgstr "Mostra les opcions d'ajuda" -#: ../glib/goption.c:868 +#: glib/goption.c:868 msgid "Show all help options" msgstr "Mostra totes les opcions d'ajuda" -#: ../glib/goption.c:930 +#: glib/goption.c:930 msgid "Application Options:" msgstr "Opcions de l'aplicació:" -#: ../glib/goption.c:992 ../glib/goption.c:1062 +#: glib/goption.c:992 glib/goption.c:1062 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "No es pot analitzar el valor enter «%s» per a %s" -#: ../glib/goption.c:1002 ../glib/goption.c:1070 +#: glib/goption.c:1002 glib/goption.c:1070 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "El valor enter «%s» per a %s és fora del rang" -#: ../glib/goption.c:1027 +#: glib/goption.c:1027 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "No es pot analitzar el valor doble «%s» per a %s" -#: ../glib/goption.c:1035 +#: glib/goption.c:1035 #, c-format msgid "Double value '%s' for %s out of range" msgstr "El valor doble «%s» per a %s és fora del rang" -#: ../glib/goption.c:1298 ../glib/goption.c:1377 +#: glib/goption.c:1298 glib/goption.c:1377 #, c-format msgid "Error parsing option %s" msgstr "S'ha produït un error en analitzar l'opció %s" -#: ../glib/goption.c:1408 ../glib/goption.c:1522 +#: glib/goption.c:1408 glib/goption.c:1522 #, c-format msgid "Missing argument for %s" msgstr "Manca un argument per a %s" -#: ../glib/goption.c:1917 +#: glib/goption.c:1917 #, c-format msgid "Unknown option %s" msgstr "Es desconeix l'opció %s" -#: ../glib/gkeyfile.c:361 +#: glib/gkeyfile.c:361 msgid "Valid key file could not be found in search dirs" msgstr "No s'ha pogut trobar cap fitxer de claus vàlid als directoris de cerca" -#: ../glib/gkeyfile.c:396 +#: glib/gkeyfile.c:396 msgid "Not a regular file" msgstr "No és un fitxer regular" -#: ../glib/gkeyfile.c:404 +#: glib/gkeyfile.c:404 msgid "File is empty" msgstr "El fitxer és buit" -#: ../glib/gkeyfile.c:763 +#: glib/gkeyfile.c:763 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -1078,56 +1081,56 @@ msgstr "" "El fitxer de claus conté la línia «%s» que no és una parella clau-valor, grup " "o comentari" -#: ../glib/gkeyfile.c:823 +#: glib/gkeyfile.c:823 #, c-format msgid "Invalid group name: %s" msgstr "El nom del grup no és vàlid: %s" -#: ../glib/gkeyfile.c:845 +#: glib/gkeyfile.c:845 msgid "Key file does not start with a group" msgstr "El fitxer de claus no comença amb un grup" -#: ../glib/gkeyfile.c:871 +#: glib/gkeyfile.c:871 #, c-format msgid "Invalid key name: %s" msgstr "El nom de la clau no és vàlid: %s" -#: ../glib/gkeyfile.c:898 +#: glib/gkeyfile.c:898 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "El fitxer de claus conté la codificació no implementada «%s»" -#: ../glib/gkeyfile.c:1114 ../glib/gkeyfile.c:1276 ../glib/gkeyfile.c:2505 -#: ../glib/gkeyfile.c:2571 ../glib/gkeyfile.c:2706 ../glib/gkeyfile.c:2839 -#: ../glib/gkeyfile.c:2992 ../glib/gkeyfile.c:3179 ../glib/gkeyfile.c:3240 +#: glib/gkeyfile.c:1114 glib/gkeyfile.c:1276 glib/gkeyfile.c:2505 +#: glib/gkeyfile.c:2571 glib/gkeyfile.c:2706 glib/gkeyfile.c:2839 +#: glib/gkeyfile.c:2992 glib/gkeyfile.c:3179 glib/gkeyfile.c:3240 #, c-format msgid "Key file does not have group '%s'" msgstr "El fitxer de claus no té el grup «%s»" -#: ../glib/gkeyfile.c:1288 +#: glib/gkeyfile.c:1288 #, c-format msgid "Key file does not have key '%s'" msgstr "El fitxer de claus no té la clau «%s»" -#: ../glib/gkeyfile.c:1395 ../glib/gkeyfile.c:1510 +#: glib/gkeyfile.c:1395 glib/gkeyfile.c:1510 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "El fitxer de claus conté la clau «%s» amb el valor «%s» que no és UTF-8" -#: ../glib/gkeyfile.c:1415 ../glib/gkeyfile.c:1909 +#: glib/gkeyfile.c:1415 glib/gkeyfile.c:1909 #, c-format msgid "Key file contains key '%s' which has value that cannot be interpreted." msgstr "" "El fitxer de claus conté la clau «%s» que té un valor que no és interpretable." -#: ../glib/gkeyfile.c:1530 +#: glib/gkeyfile.c:1530 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." msgstr "" "El fitxer de claus conté la clau «%s» que té un valor que no és interpretable." -#: ../glib/gkeyfile.c:2124 ../glib/gkeyfile.c:2336 +#: glib/gkeyfile.c:2124 glib/gkeyfile.c:2336 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has value that cannot be " @@ -1136,188 +1139,185 @@ msgstr "" "El fitxer de claus conté la clau «%s» en el grup «%s», que té un valor no " "interpretable." -#: ../glib/gkeyfile.c:2520 ../glib/gkeyfile.c:2721 ../glib/gkeyfile.c:3251 +#: glib/gkeyfile.c:2520 glib/gkeyfile.c:2721 glib/gkeyfile.c:3251 #, c-format msgid "Key file does not have key '%s' in group '%s'" msgstr "El fitxer de claus no conté una clau «%s» en el grup «%s»" -#: ../glib/gkeyfile.c:3485 +#: glib/gkeyfile.c:3485 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" -#: ../glib/gkeyfile.c:3507 +#: glib/gkeyfile.c:3507 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "El fitxer de claus conté una seqüència d'escapada no vàlida «%s»" -#: ../glib/gkeyfile.c:3649 +#: glib/gkeyfile.c:3649 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "El valor «%s» no es pot interpretar com a un nombre." -#: ../glib/gkeyfile.c:3663 +#: glib/gkeyfile.c:3663 #, c-format msgid "Integer value '%s' out of range" msgstr "El valor enter «%s» és fora del rang" -#: ../glib/gkeyfile.c:3696 +#: glib/gkeyfile.c:3696 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "El valor «%s» no es pot interpretar com a un nombre en coma flotant." -#: ../glib/gkeyfile.c:3720 +#: glib/gkeyfile.c:3720 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "El valor «%s» no es pot interpretar com un booleà." -#: ../gio/gbufferedinputstream.c:415 ../gio/gbufferedinputstream.c:496 -#: ../gio/ginputstream.c:186 ../gio/ginputstream.c:318 -#: ../gio/ginputstream.c:557 ../gio/ginputstream.c:682 -#: ../gio/goutputstream.c:198 ../gio/goutputstream.c:657 +#: gio/gbufferedinputstream.c:415 gio/gbufferedinputstream.c:496 +#: gio/ginputstream.c:186 gio/ginputstream.c:318 gio/ginputstream.c:557 +#: gio/ginputstream.c:682 gio/goutputstream.c:198 gio/goutputstream.c:657 #, c-format msgid "Too large count value passed to %s" msgstr "El valor de comptatge passat a %s és massa llarg" -#: ../gio/gbufferedinputstream.c:883 ../gio/ginputstream.c:892 -#: ../gio/giostream.c:305 ../gio/goutputstream.c:1108 +#: gio/gbufferedinputstream.c:883 gio/ginputstream.c:892 gio/giostream.c:305 +#: gio/goutputstream.c:1108 msgid "Stream is already closed" msgstr "Ja està tancat el flux" -#: ../gio/gcancellable.c:433 ../gio/glocalfile.c:2103 -#: ../gio/gsimpleasyncresult.c:651 ../gio/gsimpleasyncresult.c:677 +#: gio/gcancellable.c:433 gio/glocalfile.c:2108 gio/gsimpleasyncresult.c:651 +#: gio/gsimpleasyncresult.c:677 msgid "Operation was cancelled" msgstr "S'ha cancel·lat l'operació" -#: ../gio/gcharsetconverter.c:264 +#: gio/gcharsetconverter.c:264 msgid "Invalid object, not initialized" msgstr "L'objecte no és vàlid, no s'ha inicialitzat" -#: ../gio/gcharsetconverter.c:285 ../gio/gcharsetconverter.c:313 +#: gio/gcharsetconverter.c:285 gio/gcharsetconverter.c:313 msgid "Incomplete multibyte sequence in input" msgstr "La seqüència de múltiples bytes de l'entrada no és completa" -#: ../gio/gcharsetconverter.c:319 ../gio/gcharsetconverter.c:328 +#: gio/gcharsetconverter.c:319 gio/gcharsetconverter.c:328 msgid "Not enough space in destination" msgstr "No hi ha prou espai a la destinació" -#: ../gio/gcharsetconverter.c:448 ../gio/gsocket.c:772 +#: gio/gcharsetconverter.c:448 gio/gsocket.c:772 msgid "Cancellable initialization not supported" msgstr "No està implementada la cancel·lació de la inicialització" -#: ../gio/gcontenttype.c:180 +#: gio/gcontenttype.c:180 msgid "Unknown type" msgstr "Tipus desconegut" -#: ../gio/gcontenttype.c:181 +#: gio/gcontenttype.c:181 #, c-format msgid "%s filetype" msgstr "tipus de fitxer %s" -#: ../gio/gcontenttype.c:681 +#: gio/gcontenttype.c:681 #, c-format msgid "%s type" msgstr "tipus %s" -#: ../gio/gdatainputstream.c:311 +#: gio/gdatainputstream.c:311 msgid "Unexpected early end-of-stream" msgstr "No s'esperava un final de flux tant aviat" -#: ../gio/gdesktopappinfo.c:468 ../gio/gwin32appinfo.c:222 +#: gio/gdesktopappinfo.c:468 gio/gwin32appinfo.c:222 msgid "Unnamed" msgstr "Sense nom" -#: ../gio/gdesktopappinfo.c:742 +#: gio/gdesktopappinfo.c:742 msgid "Desktop file didn't specify Exec field" msgstr "El fitxer d'escriptori no especificava el camp d'execució" -#: ../gio/gdesktopappinfo.c:924 +#: gio/gdesktopappinfo.c:924 msgid "Unable to find terminal required for application" msgstr "No s'ha pogut trobar el terminal que demanava l'aplicació" -#: ../gio/gdesktopappinfo.c:1132 +#: gio/gdesktopappinfo.c:1132 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "" "No s'ha pogut crear el directori de configuració de l'aplicació de l'usuari %" "s: %s" -#: ../gio/gdesktopappinfo.c:1136 +#: gio/gdesktopappinfo.c:1136 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "" "No s'ha pogut crear el directori de configuració MIME de l'usuari %s: %s" -#: ../gio/gdesktopappinfo.c:1544 +#: gio/gdesktopappinfo.c:1544 #, c-format msgid "Can't create user desktop file %s" msgstr "No s'ha pogut crear el fitxer d'escriptori de l'usuari %s" -#: ../gio/gdesktopappinfo.c:1658 +#: gio/gdesktopappinfo.c:1658 #, c-format msgid "Custom definition for %s" msgstr "Definició personalitzada per a %s" -#: ../gio/gdrive.c:364 +#: gio/gdrive.c:364 msgid "drive doesn't implement eject" msgstr "la unitat no implementa l'expulsió" #. Translators: This is an error #. * message for drive objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gdrive.c:444 +#: gio/gdrive.c:444 msgid "drive doesn't implement eject or eject_with_operation" msgstr "la unitat no implementa l'expulsió o «eject_with_operation»" -#: ../gio/gdrive.c:521 +#: gio/gdrive.c:521 msgid "drive doesn't implement polling for media" msgstr "la unitat no implementa el sondeig per si hi ha un suport" -#: ../gio/gdrive.c:726 +#: gio/gdrive.c:726 msgid "drive doesn't implement start" msgstr "la unitat no implementa la inicialització" -#: ../gio/gdrive.c:828 +#: gio/gdrive.c:828 msgid "drive doesn't implement stop" msgstr "la unitat no implementa l'aturada" -#: ../gio/gemblem.c:325 +#: gio/gemblem.c:325 #, c-format msgid "Can't handle version %d of GEmblem encoding" msgstr "No es pot gestionar la versió %d de la codificació del GEmblem" -#: ../gio/gemblem.c:335 +#: gio/gemblem.c:335 #, c-format msgid "Malformed number of tokens (%d) in GEmblem encoding" msgstr "" "Un nombre de testimonis (%d) de la codificació del GEmblem no són formats " "correctament" -#: ../gio/gemblemedicon.c:296 +#: gio/gemblemedicon.c:296 #, c-format msgid "Can't handle version %d of GEmblemedIcon encoding" msgstr "No es pot gestionar la versió %d de la codificació del GEmblemedIcon" -#: ../gio/gemblemedicon.c:306 +#: gio/gemblemedicon.c:306 #, c-format msgid "Malformed number of tokens (%d) in GEmblemedIcon encoding" msgstr "" "Un nombre de testimonis (%d) en la codificació del GEmblemedIcon no són " "formats correctament" -#: ../gio/gemblemedicon.c:329 +#: gio/gemblemedicon.c:329 msgid "Expected a GEmblem for GEmblemedIcon" msgstr "S'esperava un GEmblem per a un GEmblemedIcon" -#: ../gio/gfile.c:871 ../gio/gfile.c:1101 ../gio/gfile.c:1236 -#: ../gio/gfile.c:1472 ../gio/gfile.c:1526 ../gio/gfile.c:1583 -#: ../gio/gfile.c:1666 ../gio/gfile.c:1721 ../gio/gfile.c:1781 -#: ../gio/gfile.c:1835 ../gio/gfile.c:3304 ../gio/gfile.c:3358 -#: ../gio/gfile.c:3489 ../gio/gfile.c:3529 ../gio/gfile.c:3856 -#: ../gio/gfile.c:4258 ../gio/gfile.c:4344 ../gio/gfile.c:4433 -#: ../gio/gfile.c:4531 ../gio/gfile.c:4618 ../gio/gfile.c:4711 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5321 ../gio/gfile.c:5390 -#: ../gio/gfile.c:6981 ../gio/gfile.c:7071 ../gio/gfile.c:7157 -#: ../gio/win32/gwinhttpfile.c:441 +#: gio/gfile.c:871 gio/gfile.c:1101 gio/gfile.c:1236 gio/gfile.c:1472 +#: gio/gfile.c:1526 gio/gfile.c:1583 gio/gfile.c:1666 gio/gfile.c:1721 +#: gio/gfile.c:1781 gio/gfile.c:1835 gio/gfile.c:3304 gio/gfile.c:3358 +#: gio/gfile.c:3489 gio/gfile.c:3529 gio/gfile.c:3856 gio/gfile.c:4258 +#: gio/gfile.c:4344 gio/gfile.c:4433 gio/gfile.c:4531 gio/gfile.c:4618 +#: gio/gfile.c:4711 gio/gfile.c:5041 gio/gfile.c:5321 gio/gfile.c:5390 +#: gio/gfile.c:6981 gio/gfile.c:7071 gio/gfile.c:7157 +#: gio/win32/gwinhttpfile.c:441 msgid "Operation not supported" msgstr "L'operació no està implementada" @@ -1329,139 +1329,139 @@ msgstr "L'operació no està implementada" #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1357 ../gio/glocalfile.c:1060 ../gio/glocalfile.c:1071 -#: ../gio/glocalfile.c:1084 +#: gio/gfile.c:1357 gio/glocalfile.c:1065 gio/glocalfile.c:1076 +#: gio/glocalfile.c:1089 msgid "Containing mount does not exist" msgstr "No existeix el punt de muntatge contenidor" -#: ../gio/gfile.c:2409 ../gio/glocalfile.c:2259 +#: gio/gfile.c:2409 gio/glocalfile.c:2264 msgid "Can't copy over directory" msgstr "No es pot copiar al directori" -#: ../gio/gfile.c:2469 +#: gio/gfile.c:2469 msgid "Can't copy directory over directory" msgstr "No es pot copiar el directori al directori" -#: ../gio/gfile.c:2477 ../gio/glocalfile.c:2268 +#: gio/gfile.c:2477 gio/glocalfile.c:2273 msgid "Target file exists" msgstr "Ja existeix el fitxer de destinació" -#: ../gio/gfile.c:2495 +#: gio/gfile.c:2495 msgid "Can't recursively copy directory" msgstr "No es pot copiar el directori de forma recursiva" -#: ../gio/gfile.c:2755 +#: gio/gfile.c:2755 msgid "Splice not supported" msgstr "No es pot empalmar" -#: ../gio/gfile.c:2759 +#: gio/gfile.c:2759 #, c-format msgid "Error splicing file: %s" msgstr "S'ha produït un error en empalmar el fitxer: %s" -#: ../gio/gfile.c:2906 +#: gio/gfile.c:2906 msgid "Can't copy special file" msgstr "No es pot copiar el fitxer especial" -#: ../gio/gfile.c:3479 +#: gio/gfile.c:3479 msgid "Invalid symlink value given" msgstr "El valor donat per a l'enllaç simbòlic no és vàlid" -#: ../gio/gfile.c:3572 +#: gio/gfile.c:3572 msgid "Trash not supported" msgstr "No es pot utilitzar la paperera" -#: ../gio/gfile.c:3621 +#: gio/gfile.c:3621 #, c-format msgid "File names cannot contain '%c'" msgstr "En els noms de fitxers no pot haver-hi «%c»" -#: ../gio/gfile.c:6038 ../gio/gvolume.c:331 +#: gio/gfile.c:6038 gio/gvolume.c:331 msgid "volume doesn't implement mount" msgstr "el volum no implementa el muntatge" -#: ../gio/gfile.c:6149 +#: gio/gfile.c:6149 msgid "No application is registered as handling this file" msgstr "" "No hi ha cap aplicació que s'hagi registrat per a gestionar aquest fitxer" -#: ../gio/gfileenumerator.c:206 +#: gio/gfileenumerator.c:206 msgid "Enumerator is closed" msgstr "L'enumerador està tancat" -#: ../gio/gfileenumerator.c:213 ../gio/gfileenumerator.c:272 -#: ../gio/gfileenumerator.c:372 ../gio/gfileenumerator.c:481 +#: gio/gfileenumerator.c:213 gio/gfileenumerator.c:272 +#: gio/gfileenumerator.c:372 gio/gfileenumerator.c:481 msgid "File enumerator has outstanding operation" msgstr "L'enumerador de fitxer té una operació pendent" -#: ../gio/gfileenumerator.c:362 ../gio/gfileenumerator.c:471 +#: gio/gfileenumerator.c:362 gio/gfileenumerator.c:471 msgid "File enumerator is already closed" msgstr "Ja està tancat l'enumerador de fitxer" -#: ../gio/gfileicon.c:237 +#: gio/gfileicon.c:237 #, c-format msgid "Can't handle version %d of GFileIcon encoding" msgstr "No es pot gestionar la versió %d de la codificació del GFileIcon" -#: ../gio/gfileicon.c:247 +#: gio/gfileicon.c:247 msgid "Malformed input data for GFileIcon" msgstr "Les dades d'entrada pel GFileIcon no són formades correctament" -#: ../gio/gfileinputstream.c:155 ../gio/gfileinputstream.c:422 -#: ../gio/gfileiostream.c:171 ../gio/gfileoutputstream.c:170 -#: ../gio/gfileoutputstream.c:525 +#: gio/gfileinputstream.c:155 gio/gfileinputstream.c:422 +#: gio/gfileiostream.c:171 gio/gfileoutputstream.c:170 +#: gio/gfileoutputstream.c:525 msgid "Stream doesn't support query_info" msgstr "El flux no implementa «query_info»" -#: ../gio/gfileinputstream.c:337 ../gio/gfileiostream.c:389 -#: ../gio/gfileoutputstream.c:383 +#: gio/gfileinputstream.c:337 gio/gfileiostream.c:389 +#: gio/gfileoutputstream.c:383 msgid "Seek not supported on stream" msgstr "No està implementada la cerca en el flux" -#: ../gio/gfileinputstream.c:381 +#: gio/gfileinputstream.c:381 msgid "Truncate not allowed on input stream" msgstr "No es permet truncar en els fluxos d'entrada" -#: ../gio/gfileiostream.c:465 ../gio/gfileoutputstream.c:459 +#: gio/gfileiostream.c:465 gio/gfileoutputstream.c:459 msgid "Truncate not supported on stream" msgstr "No es permet truncar en els fluxos" -#: ../gio/gicon.c:286 +#: gio/gicon.c:286 #, c-format msgid "Wrong number of tokens (%d)" msgstr "Nombre de testimonis erroni (%d)" -#: ../gio/gicon.c:306 +#: gio/gicon.c:306 #, c-format msgid "No type for class name %s" msgstr "El nom de classe %s no té tipus" -#: ../gio/gicon.c:316 +#: gio/gicon.c:316 #, c-format msgid "Type %s does not implement the GIcon interface" msgstr "El tipus %s no implementa la interfície GIcon" -#: ../gio/gicon.c:327 +#: gio/gicon.c:327 #, c-format msgid "Type %s is not classed" msgstr "El tipus %s no té classe" -#: ../gio/gicon.c:341 +#: gio/gicon.c:341 #, c-format msgid "Malformed version number: %s" msgstr "El número de versió no és format correctament: %s" -#: ../gio/gicon.c:355 +#: gio/gicon.c:355 #, c-format msgid "Type %s does not implement from_tokens() on the GIcon interface" msgstr "El tipus %s no implementa «from_tokens()» a la interfície GIcon" -#: ../gio/gicon.c:431 +#: gio/gicon.c:431 msgid "Can't handle the supplied version the icon encoding" msgstr "" "No es pot gestionar la versió proporcionada de la codificació de la icona" -#: ../gio/ginputstream.c:195 +#: gio/ginputstream.c:195 msgid "Input stream doesn't implement read" msgstr "El flux d'entrada no té implementada la lectura" @@ -1471,333 +1471,332 @@ msgstr "El flux d'entrada no té implementada la lectura" #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:902 ../gio/giostream.c:315 -#: ../gio/goutputstream.c:1118 +#: gio/ginputstream.c:902 gio/giostream.c:315 gio/goutputstream.c:1118 msgid "Stream has outstanding operation" msgstr "El flux té una operació pendent" -#: ../gio/ginetsocketaddress.c:182 ../gio/ginetsocketaddress.c:199 -#: ../gio/gunixsocketaddress.c:174 +#: gio/ginetsocketaddress.c:182 gio/ginetsocketaddress.c:199 +#: gio/gunixsocketaddress.c:174 msgid "Not enough space for socket address" msgstr "No hi ha prou espai per a l'adreça del sòcol" -#: ../gio/ginetsocketaddress.c:212 +#: gio/ginetsocketaddress.c:212 msgid "Unsupported socket address" msgstr "L'adreça de sòcol no és compatible" -#: ../gio/glocaldirectorymonitor.c:288 +#: gio/glocaldirectorymonitor.c:288 msgid "Unable to find default local directory monitor type" msgstr "" "No s'ha pogut trobar el tipus de seguiment de directoris locals predeterminat" -#: ../gio/glocalfile.c:594 ../gio/win32/gwinhttpfile.c:424 +#: gio/glocalfile.c:599 gio/win32/gwinhttpfile.c:424 #, c-format msgid "Invalid filename %s" msgstr "El nom del fitxer no és vàlid: %s" -#: ../gio/glocalfile.c:968 +#: gio/glocalfile.c:973 #, c-format msgid "Error getting filesystem info: %s" msgstr "" "S'ha produït un error en obtenir la informació del sistema de fitxers: %s" -#: ../gio/glocalfile.c:1106 +#: gio/glocalfile.c:1111 msgid "Can't rename root directory" msgstr "No es pot canviar el nom del directori arrel" -#: ../gio/glocalfile.c:1126 ../gio/glocalfile.c:1152 +#: gio/glocalfile.c:1131 gio/glocalfile.c:1157 #, c-format msgid "Error renaming file: %s" msgstr "S'ha produït un error en canviar el nom del fitxer: %s" -#: ../gio/glocalfile.c:1135 +#: gio/glocalfile.c:1140 msgid "Can't rename file, filename already exist" msgstr "No es pot canviar el nom del fitxer, ja existeix aquest nom" -#: ../gio/glocalfile.c:1148 ../gio/glocalfile.c:2132 ../gio/glocalfile.c:2161 -#: ../gio/glocalfile.c:2321 ../gio/glocalfileoutputstream.c:557 -#: ../gio/glocalfileoutputstream.c:610 ../gio/glocalfileoutputstream.c:655 -#: ../gio/glocalfileoutputstream.c:1137 +#: gio/glocalfile.c:1153 gio/glocalfile.c:2137 gio/glocalfile.c:2166 +#: gio/glocalfile.c:2326 gio/glocalfileoutputstream.c:557 +#: gio/glocalfileoutputstream.c:610 gio/glocalfileoutputstream.c:655 +#: gio/glocalfileoutputstream.c:1137 msgid "Invalid filename" msgstr "Nom de fitxer no vàlid" -#: ../gio/glocalfile.c:1309 +#: gio/glocalfile.c:1314 #, c-format msgid "Error opening file: %s" msgstr "S'ha produït un error en obrir el fitxer: %s" -#: ../gio/glocalfile.c:1319 +#: gio/glocalfile.c:1324 msgid "Can't open directory" msgstr "No s'ha pogut obrir el directori" -#: ../gio/glocalfile.c:1444 +#: gio/glocalfile.c:1449 #, c-format msgid "Error removing file: %s" msgstr "S'ha produït un error en suprimir el fitxer: %s" -#: ../gio/glocalfile.c:1811 +#: gio/glocalfile.c:1816 #, c-format msgid "Error trashing file: %s" msgstr "S'ha produït un error en enviar el fitxer a la paperera: %s" -#: ../gio/glocalfile.c:1834 +#: gio/glocalfile.c:1839 #, c-format msgid "Unable to create trash dir %s: %s" msgstr "No s'ha pogut crear el directori de la paperera %s: %s" -#: ../gio/glocalfile.c:1855 +#: gio/glocalfile.c:1860 msgid "Unable to find toplevel directory for trash" msgstr "No s'ha pogut trobar el directori superior per a la paperera" -#: ../gio/glocalfile.c:1934 ../gio/glocalfile.c:1954 +#: gio/glocalfile.c:1939 gio/glocalfile.c:1959 msgid "Unable to find or create trash directory" msgstr "No s'ha pogut trobar o crear el directori de la paperera" -#: ../gio/glocalfile.c:1988 +#: gio/glocalfile.c:1993 #, c-format msgid "Unable to create trashing info file: %s" msgstr "No s'ha pogut crear el fitxer d'informació d'enviar a la paperera: %s" -#: ../gio/glocalfile.c:2017 ../gio/glocalfile.c:2022 ../gio/glocalfile.c:2102 -#: ../gio/glocalfile.c:2109 +#: gio/glocalfile.c:2022 gio/glocalfile.c:2027 gio/glocalfile.c:2107 +#: gio/glocalfile.c:2114 #, c-format msgid "Unable to trash file: %s" msgstr "No s'ha pogut enviar el fitxer a la paperera: %s" -#: ../gio/glocalfile.c:2136 +#: gio/glocalfile.c:2141 #, c-format msgid "Error creating directory: %s" msgstr "S'ha produït un error en crear el directori: %s" -#: ../gio/glocalfile.c:2165 +#: gio/glocalfile.c:2170 #, c-format msgid "Filesystem does not support symbolic links" msgstr "El sistema de fitxers no implementa enllaços simbòlics" -#: ../gio/glocalfile.c:2169 +#: gio/glocalfile.c:2174 #, c-format msgid "Error making symbolic link: %s" msgstr "S'ha produït un error en fer l'enllaç simbòlic: %s" -#: ../gio/glocalfile.c:2231 ../gio/glocalfile.c:2325 +#: gio/glocalfile.c:2236 gio/glocalfile.c:2330 #, c-format msgid "Error moving file: %s" msgstr "S'ha produït un error en moure el fitxer: %s" -#: ../gio/glocalfile.c:2254 +#: gio/glocalfile.c:2259 msgid "Can't move directory over directory" msgstr "No s'ha pogut moure el directori al directori" -#: ../gio/glocalfile.c:2281 ../gio/glocalfileoutputstream.c:935 -#: ../gio/glocalfileoutputstream.c:949 ../gio/glocalfileoutputstream.c:964 -#: ../gio/glocalfileoutputstream.c:980 ../gio/glocalfileoutputstream.c:994 +#: gio/glocalfile.c:2286 gio/glocalfileoutputstream.c:935 +#: gio/glocalfileoutputstream.c:949 gio/glocalfileoutputstream.c:964 +#: gio/glocalfileoutputstream.c:980 gio/glocalfileoutputstream.c:994 msgid "Backup file creation failed" msgstr "Ha fallat la creació del fitxer de còpia de seguretat" -#: ../gio/glocalfile.c:2300 +#: gio/glocalfile.c:2305 #, c-format msgid "Error removing target file: %s" msgstr "S'ha produït un error en suprimir el fitxer objectiu: %s" -#: ../gio/glocalfile.c:2314 +#: gio/glocalfile.c:2319 msgid "Move between mounts not supported" msgstr "No està implementat el moure entre muntatges" -#: ../gio/glocalfileinfo.c:721 +#: gio/glocalfileinfo.c:726 msgid "Attribute value must be non-NULL" msgstr "El valor de l'atribut no pot ser nul" -#: ../gio/glocalfileinfo.c:728 +#: gio/glocalfileinfo.c:733 msgid "Invalid attribute type (string expected)" msgstr "Tipus d'atribut no vàlid (s'esperava una cadena)" -#: ../gio/glocalfileinfo.c:735 +#: gio/glocalfileinfo.c:740 msgid "Invalid extended attribute name" msgstr "El nom de l'atribut ampliat no és vàlid" -#: ../gio/glocalfileinfo.c:775 +#: gio/glocalfileinfo.c:780 #, c-format msgid "Error setting extended attribute '%s': %s" msgstr "S'ha produït un error en establir l'atribut ampliat «%s»: %s" -#: ../gio/glocalfileinfo.c:1479 ../gio/glocalfileoutputstream.c:819 +#: gio/glocalfileinfo.c:1484 gio/glocalfileoutputstream.c:819 #, c-format msgid "Error stating file '%s': %s" msgstr "" "S'ha produït un error en executar la funció «stat()» en el fitxer «%s»: %s" -#: ../gio/glocalfileinfo.c:1552 +#: gio/glocalfileinfo.c:1557 msgid " (invalid encoding)" msgstr " (codificació no vàlida)" -#: ../gio/glocalfileinfo.c:1750 +#: gio/glocalfileinfo.c:1755 #, c-format msgid "Error stating file descriptor: %s" msgstr "" "S'ha produït un error en executar la funció «stat()» al descriptor de fitxer: " "%s" -#: ../gio/glocalfileinfo.c:1795 +#: gio/glocalfileinfo.c:1800 msgid "Invalid attribute type (uint32 expected)" msgstr "Tipus d'atribut no vàlid (s'esperava un uint32)" -#: ../gio/glocalfileinfo.c:1813 +#: gio/glocalfileinfo.c:1818 msgid "Invalid attribute type (uint64 expected)" msgstr "Tipus d'atribut no vàlid (s'esperava un uint64)" -#: ../gio/glocalfileinfo.c:1832 ../gio/glocalfileinfo.c:1851 +#: gio/glocalfileinfo.c:1837 gio/glocalfileinfo.c:1856 msgid "Invalid attribute type (byte string expected)" msgstr "Tipus d'atribut no vàlid (s'esperava una cadena de bytes)" -#: ../gio/glocalfileinfo.c:1886 +#: gio/glocalfileinfo.c:1891 msgid "Cannot set permissions on symlinks" msgstr "No es poden establir permisos en els enllaços simbòlics" -#: ../gio/glocalfileinfo.c:1902 +#: gio/glocalfileinfo.c:1907 #, c-format msgid "Error setting permissions: %s" msgstr "S'ha produït un error en establir els permisos: %s" -#: ../gio/glocalfileinfo.c:1953 +#: gio/glocalfileinfo.c:1958 #, c-format msgid "Error setting owner: %s" msgstr "S'ha produït un error en establir el propietari: %s" -#: ../gio/glocalfileinfo.c:1976 +#: gio/glocalfileinfo.c:1981 msgid "symlink must be non-NULL" msgstr "l'enllaç simbòlic no pot ser nul" -#: ../gio/glocalfileinfo.c:1986 ../gio/glocalfileinfo.c:2005 -#: ../gio/glocalfileinfo.c:2016 +#: gio/glocalfileinfo.c:1991 gio/glocalfileinfo.c:2010 +#: gio/glocalfileinfo.c:2021 #, c-format msgid "Error setting symlink: %s" msgstr "S'ha produït un error en establir l'enllaç simbòlic: %s" -#: ../gio/glocalfileinfo.c:1995 +#: gio/glocalfileinfo.c:2000 msgid "Error setting symlink: file is not a symlink" msgstr "" "S'ha produït un error en establir l'enllaç simbòlic: el fitxer no és un " "enllaç simbòlic" -#: ../gio/glocalfileinfo.c:2121 +#: gio/glocalfileinfo.c:2126 #, c-format msgid "Error setting modification or access time: %s" msgstr "" "S'ha produït un error en establir el temps de modificació o d'accés: %s" -#: ../gio/glocalfileinfo.c:2144 +#: gio/glocalfileinfo.c:2149 msgid "SELinux context must be non-NULL" msgstr "El context del SELinux no pot ser nul" -#: ../gio/glocalfileinfo.c:2159 +#: gio/glocalfileinfo.c:2164 #, c-format msgid "Error setting SELinux context: %s" msgstr "S'ha produït un error en establir el context del SELinux: %s" -#: ../gio/glocalfileinfo.c:2166 +#: gio/glocalfileinfo.c:2171 msgid "SELinux is not enabled on this system" msgstr "Aquest sistema no té habilitat el SELinux" -#: ../gio/glocalfileinfo.c:2258 +#: gio/glocalfileinfo.c:2263 #, c-format msgid "Setting attribute %s not supported" msgstr "No està implementat establir l'atribut %s" -#: ../gio/glocalfileinputstream.c:171 ../gio/glocalfileoutputstream.c:708 +#: gio/glocalfileinputstream.c:171 gio/glocalfileoutputstream.c:708 #, c-format msgid "Error reading from file: %s" msgstr "S'ha produït un error en llegir des del fitxer: %s" -#: ../gio/glocalfileinputstream.c:202 ../gio/glocalfileinputstream.c:214 -#: ../gio/glocalfileinputstream.c:326 ../gio/glocalfileoutputstream.c:456 -#: ../gio/glocalfileoutputstream.c:1012 +#: gio/glocalfileinputstream.c:202 gio/glocalfileinputstream.c:214 +#: gio/glocalfileinputstream.c:326 gio/glocalfileoutputstream.c:456 +#: gio/glocalfileoutputstream.c:1012 #, c-format msgid "Error seeking in file: %s" msgstr "S'ha produït un error en cercar en el fitxer: %s" -#: ../gio/glocalfileinputstream.c:247 ../gio/glocalfileoutputstream.c:242 -#: ../gio/glocalfileoutputstream.c:337 +#: gio/glocalfileinputstream.c:247 gio/glocalfileoutputstream.c:242 +#: gio/glocalfileoutputstream.c:337 #, c-format msgid "Error closing file: %s" msgstr "S'ha produït un error en tancar el fitxer: %s" -#: ../gio/glocalfilemonitor.c:213 +#: gio/glocalfilemonitor.c:213 msgid "Unable to find default local file monitor type" msgstr "" "No s'ha pogut trobar el tipus de seguiment de fitxer local predeterminat" -#: ../gio/glocalfileoutputstream.c:188 ../gio/glocalfileoutputstream.c:221 -#: ../gio/glocalfileoutputstream.c:729 +#: gio/glocalfileoutputstream.c:188 gio/glocalfileoutputstream.c:221 +#: gio/glocalfileoutputstream.c:729 #, c-format msgid "Error writing to file: %s" msgstr "S'ha produït un error en escriure al fitxer: %s" -#: ../gio/glocalfileoutputstream.c:269 +#: gio/glocalfileoutputstream.c:269 #, c-format msgid "Error removing old backup link: %s" msgstr "" "S'ha produït un error en suprimir l'enllaç de còpia de seguretat antic: %s" -#: ../gio/glocalfileoutputstream.c:283 ../gio/glocalfileoutputstream.c:296 +#: gio/glocalfileoutputstream.c:283 gio/glocalfileoutputstream.c:296 #, c-format msgid "Error creating backup copy: %s" msgstr "S'ha produït un error en crear la còpia de seguretat: %s" -#: ../gio/glocalfileoutputstream.c:314 +#: gio/glocalfileoutputstream.c:314 #, c-format msgid "Error renaming temporary file: %s" msgstr "S'ha produït un error en canviar el nom del fitxer temporal: %s" -#: ../gio/glocalfileoutputstream.c:502 ../gio/glocalfileoutputstream.c:1063 +#: gio/glocalfileoutputstream.c:502 gio/glocalfileoutputstream.c:1063 #, c-format msgid "Error truncating file: %s" msgstr "S'ha produït un error en truncar el fitxer: %s" -#: ../gio/glocalfileoutputstream.c:563 ../gio/glocalfileoutputstream.c:616 -#: ../gio/glocalfileoutputstream.c:661 ../gio/glocalfileoutputstream.c:801 -#: ../gio/glocalfileoutputstream.c:1044 ../gio/glocalfileoutputstream.c:1143 +#: gio/glocalfileoutputstream.c:563 gio/glocalfileoutputstream.c:616 +#: gio/glocalfileoutputstream.c:661 gio/glocalfileoutputstream.c:801 +#: gio/glocalfileoutputstream.c:1044 gio/glocalfileoutputstream.c:1143 #, c-format msgid "Error opening file '%s': %s" msgstr "S'ha produït un error en obrir el fitxer «%s»: %s" -#: ../gio/glocalfileoutputstream.c:832 +#: gio/glocalfileoutputstream.c:832 msgid "Target file is a directory" msgstr "El fitxer objectiu és un directori" -#: ../gio/glocalfileoutputstream.c:837 +#: gio/glocalfileoutputstream.c:837 msgid "Target file is not a regular file" msgstr "El fitxer objectiu no és un fitxer regular" -#: ../gio/glocalfileoutputstream.c:849 +#: gio/glocalfileoutputstream.c:849 msgid "The file was externally modified" msgstr "El fitxer ha estat modificat des d'alguna aplicació externa" -#: ../gio/glocalfileoutputstream.c:1028 +#: gio/glocalfileoutputstream.c:1028 #, c-format msgid "Error removing old file: %s" msgstr "S'ha produït un error en suprimir el fitxer vell: %s" -#: ../gio/gmemoryinputstream.c:487 ../gio/gmemoryoutputstream.c:718 +#: gio/gmemoryinputstream.c:487 gio/gmemoryoutputstream.c:718 msgid "Invalid GSeekType supplied" msgstr "El GSeekType proporcionat no és vàlid" -#: ../gio/gmemoryinputstream.c:497 +#: gio/gmemoryinputstream.c:497 msgid "Invalid seek request" msgstr "La sol·licitud de cerca és invàlida" -#: ../gio/gmemoryinputstream.c:521 +#: gio/gmemoryinputstream.c:521 msgid "Cannot truncate GMemoryInputStream" msgstr "No es pot truncar el GMemoryInputStream" -#: ../gio/gmemoryoutputstream.c:468 +#: gio/gmemoryoutputstream.c:468 msgid "Memory output stream not resizable" msgstr "El flux de sortida de memòria no és modificable" -#: ../gio/gmemoryoutputstream.c:484 +#: gio/gmemoryoutputstream.c:484 msgid "Failed to resize memory output stream" msgstr "Ha fallat el redimensionament de la memòria del flux de sortida" -#: ../gio/gmemoryoutputstream.c:572 +#: gio/gmemoryoutputstream.c:572 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -1805,32 +1804,32 @@ msgstr "" "La quantitat de memòria necessària per processar l'escriptura és més gran " "que l'espai d'adreces disponible" -#: ../gio/gmemoryoutputstream.c:728 +#: gio/gmemoryoutputstream.c:728 msgid "Requested seek before the beginning of the stream" msgstr "S'ha sol·licitat un desplaçament abans de l'inici del flux" -#: ../gio/gmemoryoutputstream.c:737 +#: gio/gmemoryoutputstream.c:737 msgid "Requested seek beyond the end of the stream" msgstr "S'ha sol·licitat un desplaçament més enllà del final del flux" #. Translators: This is an error #. * message for mount objects that #. * don't implement unmount. -#: ../gio/gmount.c:364 +#: gio/gmount.c:364 msgid "mount doesn't implement \"unmount\"" msgstr "el muntatge no implementa el desmuntatge («unmount»)" #. Translators: This is an error #. * message for mount objects that #. * don't implement eject. -#: ../gio/gmount.c:443 +#: gio/gmount.c:443 msgid "mount doesn't implement \"eject\"" msgstr "el muntatge no implementa l'expulsió («eject»)" #. Translators: This is an error #. * message for mount objects that #. * don't implement any of unmount or unmount_with_operation. -#: ../gio/gmount.c:523 +#: gio/gmount.c:523 msgid "mount doesn't implement \"unmount\" or \"unmount_with_operation\"" msgstr "" "el muntatge no implementa el desmuntatge («unmount») o " @@ -1839,7 +1838,7 @@ msgstr "" #. Translators: This is an error #. * message for mount objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gmount.c:610 +#: gio/gmount.c:610 msgid "mount doesn't implement \"eject\" or \"eject_with_operation\"" msgstr "" "el muntatge no implementa l'expulsió («eject») o l'«eject_with_operation»" @@ -1847,281 +1846,276 @@ msgstr "" #. Translators: This is an error #. * message for mount objects that #. * don't implement remount. -#: ../gio/gmount.c:699 +#: gio/gmount.c:699 msgid "mount doesn't implement \"remount\"" msgstr "el muntatge no implementa el tornar-se a muntar («remount»)" #. Translators: This is an error #. * message for mount objects that #. * don't implement content type guessing. -#: ../gio/gmount.c:783 +#: gio/gmount.c:783 msgid "mount doesn't implement content type guessing" msgstr "el muntatge no implementa l'estimació de tipus de contingut" #. Translators: This is an error #. * message for mount objects that #. * don't implement content type guessing. -#: ../gio/gmount.c:872 +#: gio/gmount.c:872 msgid "mount doesn't implement synchronous content type guessing" msgstr "el muntatge no implementa l'estimació de tipus de contingut síncron" -#: ../gio/gnetworkaddress.c:295 +#: gio/gnetworkaddress.c:295 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "El nom de l'ordinador «%s» conté «[» però no «]»" -#: ../gio/goutputstream.c:207 ../gio/goutputstream.c:408 +#: gio/goutputstream.c:207 gio/goutputstream.c:408 msgid "Output stream doesn't implement write" msgstr "El flux de sortida no implementa l'escriptura" -#: ../gio/goutputstream.c:369 ../gio/goutputstream.c:781 +#: gio/goutputstream.c:369 gio/goutputstream.c:781 msgid "Source stream is already closed" msgstr "El flux font ja està tancat" -#: ../gio/gresolver.c:736 +#: gio/gresolver.c:736 #, c-format msgid "Error resolving '%s': %s" msgstr "S'ha produït un error en resoldre «%s»: %s" -#: ../gio/gresolver.c:786 +#: gio/gresolver.c:786 #, c-format msgid "Error reverse-resolving '%s': %s" msgstr "S'ha produït un error en resoldre a la inversa «%s»: %s" -#: ../gio/gresolver.c:821 ../gio/gresolver.c:899 +#: gio/gresolver.c:821 gio/gresolver.c:899 #, c-format msgid "No service record for '%s'" msgstr "No hi ha cap registre de servei per a «%s»" -#: ../gio/gresolver.c:826 ../gio/gresolver.c:904 +#: gio/gresolver.c:826 gio/gresolver.c:904 #, c-format msgid "Temporarily unable to resolve '%s'" msgstr "No s'ha pogut resoldre «%s» de forma temporal" -#: ../gio/gresolver.c:831 ../gio/gresolver.c:909 +#: gio/gresolver.c:831 gio/gresolver.c:909 #, c-format msgid "Error resolving '%s'" msgstr "S'ha produït un error en resoldre «%s»" -#: ../gio/gsocket.c:277 +#: gio/gsocket.c:277 msgid "Invalid socket, not initialized" msgstr "El sòcol no és vàlid, no està inicialitzat" -#: ../gio/gsocket.c:284 +#: gio/gsocket.c:284 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "El sòcol no és vàlid, ha fallat la inicialització degut a: %s" -#: ../gio/gsocket.c:292 +#: gio/gsocket.c:292 msgid "Socket is already closed" msgstr "El sòcol ja és tancat" -#: ../gio/gsocket.c:413 +#: gio/gsocket.c:413 #, c-format msgid "creating GSocket from fd: %s" msgstr "s'està creant un GSocket a partir del descriptor de fitxer: %s" -#: ../gio/gsocket.c:447 ../gio/gsocket.c:461 ../gio/gsocket.c:1925 +#: gio/gsocket.c:447 gio/gsocket.c:461 gio/gsocket.c:1925 #, c-format msgid "Unable to create socket: %s" msgstr "No s'ha pogut crear el sòcol: %s" -#: ../gio/gsocket.c:447 +#: gio/gsocket.c:447 msgid "Unknown protocol was specified" msgstr "S'ha especificat un protocol desconegut" -#: ../gio/gsocket.c:1126 +#: gio/gsocket.c:1126 #, c-format msgid "could not get local address: %s" msgstr "no s'ha pogut obtenir l'adreça local: %s" -#: ../gio/gsocket.c:1159 +#: gio/gsocket.c:1159 #, c-format msgid "could not get remote address: %s" msgstr "no s'ha pogut obtenir l'adreça remota: %s" -#: ../gio/gsocket.c:1217 +#: gio/gsocket.c:1217 #, c-format msgid "could not listen: %s" msgstr "no s'ha pogut escoltar: %s" -#: ../gio/gsocket.c:1291 +#: gio/gsocket.c:1291 #, c-format msgid "Error binding to address: %s" msgstr "S'ha produït un error en vincular-se a l'adreça: %s" -#: ../gio/gsocket.c:1411 +#: gio/gsocket.c:1411 #, c-format msgid "Error accepting connection: %s" msgstr "S'ha produït un error en acceptar la connexió: %s" -#: ../gio/gsocket.c:1524 +#: gio/gsocket.c:1524 msgid "Error connecting: " msgstr "S'ha produït un error en connectar-se: " -#: ../gio/gsocket.c:1528 +#: gio/gsocket.c:1528 msgid "Connection in progress" msgstr "Connexió en procés" -#: ../gio/gsocket.c:1533 +#: gio/gsocket.c:1533 #, c-format msgid "Error connecting: %s" msgstr "S'ha produït un error en connectar-se: %s" -#: ../gio/gsocket.c:1573 +#: gio/gsocket.c:1573 #, c-format msgid "Unable to get pending error: %s" msgstr "No s'ha pogut obtenir l'error pendent: %s" -#: ../gio/gsocket.c:1669 +#: gio/gsocket.c:1669 #, c-format msgid "Error receiving data: %s" msgstr "S'ha produït un error en rebre les dades: %s" -#: ../gio/gsocket.c:1812 +#: gio/gsocket.c:1812 #, c-format msgid "Error sending data: %s" msgstr "S'ha produït un error en enviar les dades: %s" -#: ../gio/gsocket.c:2004 +#: gio/gsocket.c:2004 #, c-format msgid "Error closing socket: %s" msgstr "S'ha produït un error en tancar el sòcol: %s" -#: ../gio/gsocket.c:2481 +#: gio/gsocket.c:2481 #, c-format msgid "Waiting for socket condition: %s" msgstr "S'està esperant la condició del sòcol: %s" -#: ../gio/gsocket.c:2720 ../gio/gsocket.c:2801 +#: gio/gsocket.c:2720 gio/gsocket.c:2801 #, c-format msgid "Error sending message: %s" msgstr "S'ha produït un error en enviar el missatge: %s" -#: ../gio/gsocket.c:2745 +#: gio/gsocket.c:2745 msgid "GSocketControlMessage not supported on windows" msgstr "El GSocketControlMessage no està implementat a Windows" -#: ../gio/gsocket.c:3003 ../gio/gsocket.c:3141 +#: gio/gsocket.c:3003 gio/gsocket.c:3141 #, c-format msgid "Error receiving message: %s" msgstr "S'ha produït un error en rebre un missatge: %s" -#: ../gio/gsocketclient.c:521 ../gio/gsocketclient.c:770 +#: gio/gsocketclient.c:521 gio/gsocketclient.c:770 msgid "Unknown error on connect" msgstr "S'ha produït un error desconegut en connectar-se" -#: ../gio/gsocketlistener.c:192 +#: gio/gsocketlistener.c:192 msgid "Listener is already closed" msgstr "Ja està tancat el receptor de connexions" -#: ../gio/gsocketlistener.c:233 +#: gio/gsocketlistener.c:233 msgid "Added socket is closed" msgstr "El sòcol que s'ha afegit és tancat" -#: ../gio/gthemedicon.c:499 +#: gio/gthemedicon.c:499 #, c-format msgid "Can't handle version %d of GThemedIcon encoding" msgstr "No es pot gestionar la versió %d de la codificació del GThemedIcon" -#: ../gio/gunixconnection.c:151 +#: gio/gunixconnection.c:151 #, c-format msgid "Expecting 1 control message, got %d" msgstr "S'esperava un missatge de control però se n'han obtingut %d" # FIXME -#: ../gio/gunixconnection.c:164 +#: gio/gunixconnection.c:164 msgid "Unexpected type of ancillary data" msgstr "Tipus de dades extres no esperades" -#: ../gio/gunixconnection.c:182 +#: gio/gunixconnection.c:182 #, c-format msgid "Expecting one fd, but got %d\n" msgstr "S'esperava un descriptor de fitxer però se n'han obtingut %d\n" -#: ../gio/gunixconnection.c:198 +#: gio/gunixconnection.c:198 msgid "Received invalid fd" msgstr "S'ha rebut un descriptor de fitxer no vàlid" -#: ../gio/gunixinputstream.c:354 ../gio/gunixinputstream.c:374 -#: ../gio/gunixinputstream.c:452 ../gio/gunixoutputstream.c:439 +#: gio/gunixinputstream.c:354 gio/gunixinputstream.c:374 +#: gio/gunixinputstream.c:452 gio/gunixoutputstream.c:439 #, c-format msgid "Error reading from unix: %s" msgstr "S'ha produït un error en llegir des de UNIX: %s" -#: ../gio/gunixinputstream.c:407 ../gio/gunixinputstream.c:589 -#: ../gio/gunixoutputstream.c:394 ../gio/gunixoutputstream.c:545 +#: gio/gunixinputstream.c:407 gio/gunixinputstream.c:589 +#: gio/gunixoutputstream.c:394 gio/gunixoutputstream.c:545 #, c-format msgid "Error closing unix: %s" msgstr "S'ha produït un error en tancar des de UNIX: %s" -#: ../gio/gunixmounts.c:1846 ../gio/gunixmounts.c:1883 +#: gio/gunixmounts.c:1846 gio/gunixmounts.c:1883 msgid "Filesystem root" msgstr "Arrel del sistema de fitxers" -#: ../gio/gunixoutputstream.c:340 ../gio/gunixoutputstream.c:361 +#: gio/gunixoutputstream.c:340 gio/gunixoutputstream.c:361 #, c-format msgid "Error writing to unix: %s" msgstr "S'ha produït un error en escriure a UNIX: %s" -#: ../gio/gunixsocketaddress.c:182 +#: gio/gunixsocketaddress.c:182 msgid "Abstract unix domain socket addresses not supported on this system" msgstr "Aquest sistema no admet adreces de sòcol de domini UNIX abstractes" -#: ../gio/gvolume.c:407 +#: gio/gvolume.c:407 msgid "volume doesn't implement eject" msgstr "el volum no implementa l'expulsió" #. Translators: This is an error #. * message for volume objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gvolume.c:486 +#: gio/gvolume.c:486 msgid "volume doesn't implement eject or eject_with_operation" msgstr "el volum no implementa l'expulsió o «eject_with_operation»" -#: ../gio/gwin32appinfo.c:277 +#: gio/gwin32appinfo.c:277 msgid "Can't find application" msgstr "No es pot trobar l'aplicació" -#: ../gio/gwin32appinfo.c:300 +#: gio/gwin32appinfo.c:300 #, c-format msgid "Error launching application: %s" msgstr "S'ha produït un error en executar l'aplicació: %s" -#: ../gio/gwin32appinfo.c:336 +#: gio/gwin32appinfo.c:336 msgid "URIs not supported" msgstr "No estan implementats els URI" -#: ../gio/gwin32appinfo.c:358 +#: gio/gwin32appinfo.c:358 msgid "association changes not supported on win32" msgstr "els canvis associatius no estan implementats a win32" -#: ../gio/gwin32appinfo.c:370 +#: gio/gwin32appinfo.c:370 msgid "Association creation not supported on win32" msgstr "La creació associativa no està implementada a win32" -#: ../gio/gzlibcompressor.c:279 ../gio/gzlibdecompressor.c:250 +#: gio/gzlibcompressor.c:279 gio/gzlibdecompressor.c:250 msgid "Not enough memory" msgstr "No hi ha prou memòria" -#: ../gio/gzlibcompressor.c:286 ../gio/gzlibdecompressor.c:257 +#: gio/gzlibcompressor.c:286 gio/gzlibdecompressor.c:257 #, c-format msgid "Internal error: %s" msgstr "Error intern: %s" -#: ../gio/gzlibcompressor.c:299 ../gio/gzlibdecompressor.c:271 +#: gio/gzlibcompressor.c:299 gio/gzlibdecompressor.c:271 msgid "Need more input" msgstr "Fan falta més dades d'entrada" -#: ../gio/gzlibdecompressor.c:243 +#: gio/gzlibdecompressor.c:243 msgid "Invalid compressed data" msgstr "Les dades comprimides no són vàlides" -#~ msgid "%u byte" -#~ msgid_plural "%u bytes" -#~ msgstr[0] "%u byte" -#~ msgstr[1] "%u bytes" - #~ msgid "Invalid UTF-8 sequence in input" #~ msgstr "La seqüència UTF-8 de l'entrada no és vàlida" diff --git a/po/ca@valencia.po b/po/ca@valencia.po index 4a7834345..2c9ae6566 100644 --- a/po/ca@valencia.po +++ b/po/ca@valencia.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-23 00:41+0200\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-04-02 14:03+0200\n" "Last-Translator: Gil Forcada <gilforcada@guifi.net>\n" "Language-Team: Catalan <tradgnome@softcatala.org>\n" @@ -18,351 +18,349 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: ../glib/gbookmarkfile.c:737 +#: glib/gbookmarkfile.c:737 #, c-format msgid "Unexpected attribute '%s' for element '%s'" msgstr "No s'esperava l'atribut «%s» per a l'element «%s»" -#: ../glib/gbookmarkfile.c:748 ../glib/gbookmarkfile.c:819 -#: ../glib/gbookmarkfile.c:829 ../glib/gbookmarkfile.c:936 +#: glib/gbookmarkfile.c:748 glib/gbookmarkfile.c:819 glib/gbookmarkfile.c:829 +#: glib/gbookmarkfile.c:936 #, c-format msgid "Attribute '%s' of element '%s' not found" msgstr "No s'ha trobat l'atribut «%s» de l'element «%s»" -#: ../glib/gbookmarkfile.c:1106 ../glib/gbookmarkfile.c:1171 -#: ../glib/gbookmarkfile.c:1235 ../glib/gbookmarkfile.c:1245 +#: glib/gbookmarkfile.c:1106 glib/gbookmarkfile.c:1171 +#: glib/gbookmarkfile.c:1235 glib/gbookmarkfile.c:1245 #, c-format msgid "Unexpected tag '%s', tag '%s' expected" msgstr "No s'esperava l'etiqueta «%s», s'esperava «%s»" -#: ../glib/gbookmarkfile.c:1131 ../glib/gbookmarkfile.c:1145 -#: ../glib/gbookmarkfile.c:1213 ../glib/gbookmarkfile.c:1265 +#: glib/gbookmarkfile.c:1131 glib/gbookmarkfile.c:1145 +#: glib/gbookmarkfile.c:1213 glib/gbookmarkfile.c:1265 #, c-format msgid "Unexpected tag '%s' inside '%s'" msgstr "No s'esperava l'etiqueta «%s» dins «%s»" -#: ../glib/gbookmarkfile.c:1793 +#: glib/gbookmarkfile.c:1793 msgid "No valid bookmark file found in data dirs" msgstr "" "No s'ha trobat cap fitxer d'adreces d'interés dins dels directoris de dades" -#: ../glib/gbookmarkfile.c:1994 +#: glib/gbookmarkfile.c:1994 #, c-format msgid "A bookmark for URI '%s' already exists" msgstr "Ja existeix una adreça d'interés per a l'URI «%s»" -#: ../glib/gbookmarkfile.c:2040 ../glib/gbookmarkfile.c:2198 -#: ../glib/gbookmarkfile.c:2283 ../glib/gbookmarkfile.c:2363 -#: ../glib/gbookmarkfile.c:2448 ../glib/gbookmarkfile.c:2531 -#: ../glib/gbookmarkfile.c:2609 ../glib/gbookmarkfile.c:2688 -#: ../glib/gbookmarkfile.c:2730 ../glib/gbookmarkfile.c:2827 -#: ../glib/gbookmarkfile.c:2953 ../glib/gbookmarkfile.c:3143 -#: ../glib/gbookmarkfile.c:3219 ../glib/gbookmarkfile.c:3384 -#: ../glib/gbookmarkfile.c:3473 ../glib/gbookmarkfile.c:3563 -#: ../glib/gbookmarkfile.c:3691 +#: glib/gbookmarkfile.c:2040 glib/gbookmarkfile.c:2198 +#: glib/gbookmarkfile.c:2283 glib/gbookmarkfile.c:2363 +#: glib/gbookmarkfile.c:2448 glib/gbookmarkfile.c:2531 +#: glib/gbookmarkfile.c:2609 glib/gbookmarkfile.c:2688 +#: glib/gbookmarkfile.c:2730 glib/gbookmarkfile.c:2827 +#: glib/gbookmarkfile.c:2953 glib/gbookmarkfile.c:3143 +#: glib/gbookmarkfile.c:3219 glib/gbookmarkfile.c:3384 +#: glib/gbookmarkfile.c:3473 glib/gbookmarkfile.c:3563 +#: glib/gbookmarkfile.c:3691 #, c-format msgid "No bookmark found for URI '%s'" msgstr "No s'ha trobat cap adreça d'interés per a l'URI «%s»" -#: ../glib/gbookmarkfile.c:2372 +#: glib/gbookmarkfile.c:2372 #, c-format msgid "No MIME type defined in the bookmark for URI '%s'" msgstr "No hi ha cap tipus MIME definit a l'adreça d'interés per a l'URI «%s»" -#: ../glib/gbookmarkfile.c:2457 +#: glib/gbookmarkfile.c:2457 #, c-format msgid "No private flag has been defined in bookmark for URI '%s'" msgstr "" "No hi ha cap senyalador privat definit a l'adreça d'interés per a l'URI «%s»" -#: ../glib/gbookmarkfile.c:2836 +#: glib/gbookmarkfile.c:2836 #, c-format msgid "No groups set in bookmark for URI '%s'" msgstr "No hi ha cap grup establit a l'adreça d'interés per a l'URI «%s»" -#: ../glib/gbookmarkfile.c:3237 ../glib/gbookmarkfile.c:3394 +#: glib/gbookmarkfile.c:3237 glib/gbookmarkfile.c:3394 #, c-format msgid "No application with name '%s' registered a bookmark for '%s'" msgstr "" "No hi ha cap aplicació amb el nom «%s» que haja registrat l'adreça d'interés «%" "s»" -#: ../glib/gbookmarkfile.c:3417 +#: glib/gbookmarkfile.c:3417 #, c-format msgid "Failed to expand exec line '%s' with URI '%s'" msgstr "No s'ha pogut expandir la línia d'execució «%s» amb URI «%s»" -#: ../glib/gconvert.c:437 ../glib/gconvert.c:515 ../glib/giochannel.c:1404 -#: ../gio/gcharsetconverter.c:459 +#: glib/gconvert.c:437 glib/gconvert.c:515 glib/giochannel.c:1404 +#: gio/gcharsetconverter.c:459 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "No es permet la conversió entre els jocs de caràcters «%s» a «%s»" -#: ../glib/gconvert.c:441 ../glib/gconvert.c:519 -#: ../gio/gcharsetconverter.c:463 +#: glib/gconvert.c:441 glib/gconvert.c:519 gio/gcharsetconverter.c:463 #, c-format msgid "Could not open converter from '%s' to '%s'" msgstr "No s'ha pogut obrir el convertidor de «%s» a «%s»" -#: ../glib/gconvert.c:638 ../glib/gconvert.c:1031 ../glib/giochannel.c:1576 -#: ../glib/giochannel.c:1618 ../glib/giochannel.c:2462 ../glib/gutf8.c:981 -#: ../glib/gutf8.c:1436 ../gio/gcharsetconverter.c:346 +#: glib/gconvert.c:638 glib/gconvert.c:1031 glib/giochannel.c:1576 +#: glib/giochannel.c:1618 glib/giochannel.c:2462 glib/gutf8.c:981 +#: glib/gutf8.c:1436 gio/gcharsetconverter.c:346 msgid "Invalid byte sequence in conversion input" msgstr "La seqüència de bytes a l'entrada de conversió no és vàlida" -#: ../glib/gconvert.c:646 ../glib/gconvert.c:956 ../glib/giochannel.c:1583 -#: ../glib/giochannel.c:2474 ../gio/gcharsetconverter.c:351 +#: glib/gconvert.c:646 glib/gconvert.c:956 glib/giochannel.c:1583 +#: glib/giochannel.c:2474 gio/gcharsetconverter.c:351 #, c-format msgid "Error during conversion: %s" msgstr "S'ha produït un error durant la conversió: %s" -#: ../glib/gconvert.c:678 ../glib/gutf8.c:977 ../glib/gutf8.c:1187 -#: ../glib/gutf8.c:1328 ../glib/gutf8.c:1432 +#: glib/gconvert.c:678 glib/gutf8.c:977 glib/gutf8.c:1187 glib/gutf8.c:1328 +#: glib/gutf8.c:1432 msgid "Partial character sequence at end of input" msgstr "Seqüència de caràcters parcial al final de l'entrada" # FIXME: fallback -#: ../glib/gconvert.c:928 +#: glib/gconvert.c:928 #, c-format msgid "Cannot convert fallback '%s' to codeset '%s'" msgstr "No es pot convertir el «fallback» «%s» al joc de codis «%s»" -#: ../glib/gconvert.c:1751 +#: glib/gconvert.c:1751 #, c-format msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" msgstr "L'URI «%s» no és un URI absolut que utilitze l'esquema «file»" -#: ../glib/gconvert.c:1761 +#: glib/gconvert.c:1761 #, c-format msgid "The local file URI '%s' may not include a '#'" msgstr "Pot ser que l'URI del fitxer local «%s» no incloga cap «#»" -#: ../glib/gconvert.c:1778 +#: glib/gconvert.c:1778 #, c-format msgid "The URI '%s' is invalid" msgstr "L'URI «%s» no és vàlid" -#: ../glib/gconvert.c:1790 +#: glib/gconvert.c:1790 #, c-format msgid "The hostname of the URI '%s' is invalid" msgstr "El nom de l'ordinador de l'URI «%s» no és vàlid" -#: ../glib/gconvert.c:1806 +#: glib/gconvert.c:1806 #, c-format msgid "The URI '%s' contains invalidly escaped characters" msgstr "L'URI «%s» conté caràcters d'escapada invàlids" -#: ../glib/gconvert.c:1901 +#: glib/gconvert.c:1901 #, c-format msgid "The pathname '%s' is not an absolute path" msgstr "El nom de camí «%s» no és un camí absolut" -#: ../glib/gconvert.c:1911 +#: glib/gconvert.c:1911 msgid "Invalid hostname" msgstr "El nom de l'ordinador no és vàlid" -#: ../glib/gdir.c:112 ../glib/gdir.c:135 +#: glib/gdir.c:112 glib/gdir.c:135 #, c-format msgid "Error opening directory '%s': %s" msgstr "S'ha produït un error en obrir el directori «%s»: %s" -#: ../glib/gfileutils.c:536 ../glib/gfileutils.c:624 +#: glib/gfileutils.c:536 glib/gfileutils.c:624 #, c-format msgid "Could not allocate %lu bytes to read file \"%s\"" msgstr "No s'han pogut assignar %lu bytes per llegir el fitxer «%s»" -#: ../glib/gfileutils.c:551 +#: glib/gfileutils.c:551 #, c-format msgid "Error reading file '%s': %s" msgstr "S'ha produït un error en llegir el fitxer «%s»: %s" -#: ../glib/gfileutils.c:565 +#: glib/gfileutils.c:565 #, c-format msgid "File \"%s\" is too large" msgstr "El fitxer «%s» és massa gran" -#: ../glib/gfileutils.c:648 +#: glib/gfileutils.c:648 #, c-format msgid "Failed to read from file '%s': %s" msgstr "No s'ha pogut llegir del fitxer «%s»: %s" -#: ../glib/gfileutils.c:699 ../glib/gfileutils.c:786 +#: glib/gfileutils.c:699 glib/gfileutils.c:786 #, c-format msgid "Failed to open file '%s': %s" msgstr "No s'ha pogut obrir el fitxer «%s»: %s" -#: ../glib/gfileutils.c:716 ../glib/gmappedfile.c:170 +#: glib/gfileutils.c:716 glib/gmappedfile.c:170 #, c-format msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgstr "" "No s'ha pogut obtindre els atributs del fitxer «%s»: ha fallat la funció fstat" "(): %s" -#: ../glib/gfileutils.c:750 +#: glib/gfileutils.c:750 #, c-format msgid "Failed to open file '%s': fdopen() failed: %s" msgstr "No s'ha pogut obrir el fitxer «%s»: ha fallat la funció fdopen(): %s" -#: ../glib/gfileutils.c:858 +#: glib/gfileutils.c:858 #, c-format msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgstr "" "No s'ha pogut canviar el nom del fitxer «%s» a «%s»: ha fallat la funció " "g_rename(): %s" -#: ../glib/gfileutils.c:900 ../glib/gfileutils.c:1366 +#: glib/gfileutils.c:900 glib/gfileutils.c:1366 #, c-format msgid "Failed to create file '%s': %s" msgstr "No s'ha pogut crear el fitxer «%s»: %s" -#: ../glib/gfileutils.c:914 +#: glib/gfileutils.c:914 #, c-format msgid "Failed to open file '%s' for writing: fdopen() failed: %s" msgstr "" "No s'ha pogut obrir el fitxer «%s» per a escriptura: ha fallat la funció " "fdopen(): %s" -#: ../glib/gfileutils.c:939 +#: glib/gfileutils.c:939 #, c-format msgid "Failed to write file '%s': fwrite() failed: %s" msgstr "No s'ha pogut escriure el fitxer «%s»: ha fallat la funció fwrite(): %s" -#: ../glib/gfileutils.c:958 +#: glib/gfileutils.c:958 #, c-format msgid "Failed to write file '%s': fflush() failed: %s" msgstr "No s'ha pogut escriure el fitxer «%s»: ha fallat la funció fflush(): %s" -#: ../glib/gfileutils.c:987 +#: glib/gfileutils.c:987 #, c-format msgid "Failed to write file '%s': fsync() failed: %s" msgstr "No s'ha pogut escriure el fitxer «%s»: ha fallat la funció fsync(): %s" -#: ../glib/gfileutils.c:1006 +#: glib/gfileutils.c:1006 #, c-format msgid "Failed to close file '%s': fclose() failed: %s" msgstr "No s'ha pogut tancar el fitxer «%s»: ha fallat la funció fclose(): %s" -#: ../glib/gfileutils.c:1124 +#: glib/gfileutils.c:1124 #, c-format msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgstr "" "No s'ha pogut suprimir el fitxer existent «%s»: ha fallat la funció g_unlink" "(): %s" -#: ../glib/gfileutils.c:1328 +#: glib/gfileutils.c:1328 #, c-format msgid "Template '%s' invalid, should not contain a '%s'" msgstr "La plantilla «%s» no és vàlida, no hauria de tindre cap «%s»" -#: ../glib/gfileutils.c:1341 +#: glib/gfileutils.c:1341 #, c-format msgid "Template '%s' doesn't contain XXXXXX" msgstr "La plantilla «%s» no conté XXXXXX" -#: ../glib/gfileutils.c:1774 +#: glib/gfileutils.c:1774 #, c-format msgid "%u byte" msgid_plural "%u bytes" msgstr[0] "%u byte" msgstr[1] "%u bytes" -#: ../glib/gfileutils.c:1782 +#: glib/gfileutils.c:1782 #, c-format msgid "%.1f KB" msgstr "%.1f KB" -#: ../glib/gfileutils.c:1787 +#: glib/gfileutils.c:1787 #, c-format msgid "%.1f MB" msgstr "%.1f MB" -#: ../glib/gfileutils.c:1792 +#: glib/gfileutils.c:1792 #, c-format msgid "%.1f GB" msgstr "%.1f GB" -#: ../glib/gfileutils.c:1797 +#: glib/gfileutils.c:1797 #, c-format msgid "%.1f TB" msgstr "%.1f TB" -#: ../glib/gfileutils.c:1802 +#: glib/gfileutils.c:1802 #, c-format msgid "%.1f PB" msgstr "%.1f PB" -#: ../glib/gfileutils.c:1807 +#: glib/gfileutils.c:1807 #, c-format msgid "%.1f EB" msgstr "%.1f EB" -#: ../glib/gfileutils.c:1850 +#: glib/gfileutils.c:1850 #, c-format msgid "Failed to read the symbolic link '%s': %s" msgstr "No s'ha pogut llegir l'enllaç simbòlic «%s»: %s" -#: ../glib/gfileutils.c:1871 +#: glib/gfileutils.c:1871 msgid "Symbolic links not supported" msgstr "No es poden utilitzar els enllaços simbòlics" -#: ../glib/giochannel.c:1408 +#: glib/giochannel.c:1408 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "No s'ha pogut obrir el convertidor de «%s» a «%s»: %s" -#: ../glib/giochannel.c:1753 +#: glib/giochannel.c:1753 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "No es pot fer una lectura bàsica a g_io_channel_read_line_string" -#: ../glib/giochannel.c:1800 ../glib/giochannel.c:2058 -#: ../glib/giochannel.c:2145 +#: glib/giochannel.c:1800 glib/giochannel.c:2058 glib/giochannel.c:2145 msgid "Leftover unconverted data in read buffer" msgstr "A la memòria intermèdia de lectura hi ha dades sobrants no convertides" -#: ../glib/giochannel.c:1881 ../glib/giochannel.c:1958 +#: glib/giochannel.c:1881 glib/giochannel.c:1958 msgid "Channel terminates in a partial character" msgstr "El canal acaba en un caràcter parcial" -#: ../glib/giochannel.c:1944 +#: glib/giochannel.c:1944 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "No es pot fer una lectura bàsica a g_io_channel_read_to_end" -#: ../glib/gmappedfile.c:151 +#: glib/gmappedfile.c:151 #, c-format msgid "Failed to open file '%s': open() failed: %s" msgstr "No s'ha pogut obrir el fitxer «%s»: ha fallat la funció open(): %s" -#: ../glib/gmappedfile.c:230 +#: glib/gmappedfile.c:230 #, c-format msgid "Failed to map file '%s': mmap() failed: %s" msgstr "No s'ha pogut mapar el fitxer «%s»: ha fallat la funció mmap(): %s" -#: ../glib/gmarkup.c:303 ../glib/gmarkup.c:343 +#: glib/gmarkup.c:303 glib/gmarkup.c:343 #, c-format msgid "Error on line %d char %d: " msgstr "S'ha produït un error a la línia %d caràcter %d: " -#: ../glib/gmarkup.c:363 ../glib/gmarkup.c:441 +#: glib/gmarkup.c:363 glib/gmarkup.c:441 #, c-format msgid "Invalid UTF-8 encoded text in name - not valid '%s'" msgstr "El nom conté caràcters UTF-8 no vàlids: «%s»" -#: ../glib/gmarkup.c:374 +#: glib/gmarkup.c:374 #, c-format msgid "'%s' is not a valid name " msgstr "«%s» no és un nom vàlid " -#: ../glib/gmarkup.c:390 +#: glib/gmarkup.c:390 #, c-format msgid "'%s' is not a valid name: '%c' " msgstr "«%s» no és un nom vàlid: «%c» " -#: ../glib/gmarkup.c:494 +#: glib/gmarkup.c:494 #, c-format msgid "Error on line %d: %s" msgstr "S'ha produït un error a la línia %d: %s" -#: ../glib/gmarkup.c:578 +#: glib/gmarkup.c:578 #, c-format msgid "" "Failed to parse '%-.*s', which should have been a digit inside a character " @@ -371,7 +369,7 @@ msgstr "" "No s'ha pogut analitzar «%-.*s», hi hauria d'haver hagut un dígit dins un " "caràcter de referència (per exemple ê) - potser el dígit és massa llarg" -#: ../glib/gmarkup.c:590 +#: glib/gmarkup.c:590 msgid "" "Character reference did not end with a semicolon; most likely you used an " "ampersand character without intending to start an entity - escape ampersand " @@ -381,24 +379,24 @@ msgstr "" "utilitzat un caràcter «&» sense intenció d'iniciar una entitat. Substituïu el " "caràcter «&» per &" -#: ../glib/gmarkup.c:616 +#: glib/gmarkup.c:616 #, c-format msgid "Character reference '%-.*s' does not encode a permitted character" msgstr "El caràcter de referència «%-.*s» no codifica un caràcter permés" -#: ../glib/gmarkup.c:654 +#: glib/gmarkup.c:654 msgid "" "Empty entity '&;' seen; valid entities are: & " < > '" msgstr "" "S'ha vist una entitat buida «&;». Les entitats vàlides són: & " < " "> '" -#: ../glib/gmarkup.c:662 +#: glib/gmarkup.c:662 #, c-format msgid "Entity name '%-.*s' is not known" msgstr "Es desconeix el nom d'entitat «%-.*s»" -#: ../glib/gmarkup.c:667 +#: glib/gmarkup.c:667 msgid "" "Entity did not end with a semicolon; most likely you used an ampersand " "character without intending to start an entity - escape ampersand as &" @@ -406,11 +404,11 @@ msgstr "" "L'entitat no acaba amb un punt i coma. Segurament heu utilitzat un caràcter " "«&» sense intenció d'iniciar una entitat. Substituïu el caràcter «&» per &" -#: ../glib/gmarkup.c:1014 +#: glib/gmarkup.c:1014 msgid "Document must begin with an element (e.g. <book>)" msgstr "El document ha de començar amb un element (p.ex. <llibre>)" -#: ../glib/gmarkup.c:1054 +#: glib/gmarkup.c:1054 #, c-format msgid "" "'%s' is not a valid character following a '<' character; it may not begin an " @@ -419,7 +417,7 @@ msgstr "" "«%s» no és un caràcter vàlid després d'un caràcter «<». No pot començar un nom " "d'element" -#: ../glib/gmarkup.c:1122 +#: glib/gmarkup.c:1122 #, c-format msgid "" "Odd character '%s', expected a '>' character to end the empty-element tag '%" @@ -428,7 +426,7 @@ msgstr "" "S'ha trobat un caràcter estrany «%s». S'esperava el caràcter «>» per acabar " "l'etiqueta d'element buit «%s»" -#: ../glib/gmarkup.c:1206 +#: glib/gmarkup.c:1206 #, c-format msgid "" "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" @@ -436,7 +434,7 @@ msgstr "" "S'ha trobat un caràcter estrany «%s». S'esperava un «=» després del nom " "d'atribut «%s» de l'element «%s»" -#: ../glib/gmarkup.c:1247 +#: glib/gmarkup.c:1247 #, c-format msgid "" "Odd character '%s', expected a '>' or '/' character to end the start tag of " @@ -447,7 +445,7 @@ msgstr "" "finalitzar l'etiqueta d'inici de l'element «%s», o opcionalment un atribut. " "Potser heu utilitzat un caràcter no vàlid en un nom d'atribut" -#: ../glib/gmarkup.c:1291 +#: glib/gmarkup.c:1291 #, c-format msgid "" "Odd character '%s', expected an open quote mark after the equals sign when " @@ -456,7 +454,7 @@ msgstr "" "S'ha trobat un caràcter estrany «%s». S'esperaven unes cometes d'obertura " "després del signe «=» en donar valor a l'atribut «%s» de l'element «%s»" -#: ../glib/gmarkup.c:1425 +#: glib/gmarkup.c:1425 #, c-format msgid "" "'%s' is not a valid character following the characters '</'; '%s' may not " @@ -465,7 +463,7 @@ msgstr "" "«%s» no és un caràcter vàlid després dels caràcters «</»; «%s» no hauria " "d'iniciar un nom d'element" -#: ../glib/gmarkup.c:1461 +#: glib/gmarkup.c:1461 #, c-format msgid "" "'%s' is not a valid character following the close element name '%s'; the " @@ -474,27 +472,27 @@ msgstr "" "«%s» no és un caràcter vàlid després del nom d'element de tancament «%s». El " "caràcter permés és «>»" -#: ../glib/gmarkup.c:1472 +#: glib/gmarkup.c:1472 #, c-format msgid "Element '%s' was closed, no element is currently open" msgstr "L'element «%s» estava tancat. Actualment no hi ha cap element obert" -#: ../glib/gmarkup.c:1481 +#: glib/gmarkup.c:1481 #, c-format msgid "Element '%s' was closed, but the currently open element is '%s'" msgstr "L'element «%s» estava tancat. L'element obert actualment és «%s»" -#: ../glib/gmarkup.c:1648 +#: glib/gmarkup.c:1648 msgid "Document was empty or contained only whitespace" msgstr "El document era buit o només contenia espais en blanc" -#: ../glib/gmarkup.c:1662 +#: glib/gmarkup.c:1662 msgid "Document ended unexpectedly just after an open angle bracket '<'" msgstr "" "El document ha acabat de manera inesperada immediatament després del símbol " "«<»" -#: ../glib/gmarkup.c:1670 ../glib/gmarkup.c:1715 +#: glib/gmarkup.c:1670 glib/gmarkup.c:1715 #, c-format msgid "" "Document ended unexpectedly with elements still open - '%s' was the last " @@ -503,7 +501,7 @@ msgstr "" "El document ha acabat de manera inesperada amb elements encara oberts. «%s» " "era l'últim element obert" -#: ../glib/gmarkup.c:1678 +#: glib/gmarkup.c:1678 #, c-format msgid "" "Document ended unexpectedly, expected to see a close angle bracket ending " @@ -512,21 +510,21 @@ msgstr "" "El document ha acabat de manera inesperada. S'esperava trobar un símbol «>» " "que acabés l'etiqueta <%s/>" -#: ../glib/gmarkup.c:1684 +#: glib/gmarkup.c:1684 msgid "Document ended unexpectedly inside an element name" msgstr "El document ha acabat de manera inesperada enmig d'un nom d'element" -#: ../glib/gmarkup.c:1690 +#: glib/gmarkup.c:1690 msgid "Document ended unexpectedly inside an attribute name" msgstr "El document ha acabat de manera inesperada enmig d'un nom d'atribut" -#: ../glib/gmarkup.c:1695 +#: glib/gmarkup.c:1695 msgid "Document ended unexpectedly inside an element-opening tag." msgstr "" "El document ha acabat de manera inesperada enmig d'una etiqueta d'obertura " "d'un element." -#: ../glib/gmarkup.c:1701 +#: glib/gmarkup.c:1701 msgid "" "Document ended unexpectedly after the equals sign following an attribute " "name; no attribute value" @@ -534,409 +532,407 @@ msgstr "" "El document ha acabat de manera inesperada després d'un signe d'igual " "després d'un nom d'atribut. No hi ha cap valor d'atribut" -#: ../glib/gmarkup.c:1708 +#: glib/gmarkup.c:1708 msgid "Document ended unexpectedly while inside an attribute value" msgstr "El document ha acabat de manera inesperada enmig d'un valor d'atribut" -#: ../glib/gmarkup.c:1724 +#: glib/gmarkup.c:1724 #, c-format msgid "Document ended unexpectedly inside the close tag for element '%s'" msgstr "" "El document ha acabat de manera inesperada enmig de l'etiqueta de tancament " "de l'element «%s»" -#: ../glib/gmarkup.c:1730 +#: glib/gmarkup.c:1730 msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "" "El document ha acabat de manera inesperada enmig d'un comentari o una " "instrucció de processament" -#: ../glib/gregex.c:131 +#: glib/gregex.c:131 msgid "corrupted object" msgstr "objecte malmés" -#: ../glib/gregex.c:133 +#: glib/gregex.c:133 msgid "internal error or corrupted object" msgstr "error intern o objecte malmés" -#: ../glib/gregex.c:135 +#: glib/gregex.c:135 msgid "out of memory" msgstr "no hi ha prou memòria" -#: ../glib/gregex.c:140 +#: glib/gregex.c:140 msgid "backtracking limit reached" msgstr "s'ha arribat al límit de tornades arrere" -#: ../glib/gregex.c:152 ../glib/gregex.c:160 +#: glib/gregex.c:152 glib/gregex.c:160 msgid "the pattern contains items not supported for partial matching" msgstr "" "el patró conté elements que no estan implementats en les concordances " "parcials" -#: ../glib/gregex.c:154 ../gio/glocalfile.c:2115 +#: glib/gregex.c:154 gio/glocalfile.c:2115 msgid "internal error" msgstr "error intern" -#: ../glib/gregex.c:162 +#: glib/gregex.c:162 msgid "back references as conditions are not supported for partial matching" msgstr "" "no s'ha implementat l'ús de referències anteriors per a coincidències " "parcials" -#: ../glib/gregex.c:171 +#: glib/gregex.c:171 msgid "recursion limit reached" msgstr "s'ha arribat al límit de recurrències" -#: ../glib/gregex.c:173 +#: glib/gregex.c:173 msgid "workspace limit for empty substrings reached" msgstr "s'ha arribat al límit d'espais de treball per a subcadenes buides" -#: ../glib/gregex.c:175 +#: glib/gregex.c:175 msgid "invalid combination of newline flags" msgstr "la combinació de senyaladors de línia nova no és vàlida" -#: ../glib/gregex.c:179 +#: glib/gregex.c:179 msgid "unknown error" msgstr "error desconegut" -#: ../glib/gregex.c:199 +#: glib/gregex.c:199 msgid "\\ at end of pattern" msgstr "\\ al final del patró" -#: ../glib/gregex.c:202 +#: glib/gregex.c:202 msgid "\\c at end of pattern" msgstr "\\c al final del patró" -#: ../glib/gregex.c:205 +#: glib/gregex.c:205 msgid "unrecognized character follows \\" msgstr "caràcter no reconegut després de \\" -#: ../glib/gregex.c:212 +#: glib/gregex.c:212 msgid "case-changing escapes (\\l, \\L, \\u, \\U) are not allowed here" msgstr "ací no es permeten els escapaments (\\l,\\L, \\u, \\U)" -#: ../glib/gregex.c:215 +#: glib/gregex.c:215 msgid "numbers out of order in {} quantifier" msgstr "nombres fora del rang en el quantificador {}" -#: ../glib/gregex.c:218 +#: glib/gregex.c:218 msgid "number too big in {} quantifier" msgstr "nombre massa gran en el quantificador {}" -#: ../glib/gregex.c:221 +#: glib/gregex.c:221 msgid "missing terminating ] for character class" msgstr "falta el «]» per a la classe de caràcter" -#: ../glib/gregex.c:224 +#: glib/gregex.c:224 msgid "invalid escape sequence in character class" msgstr "la seqüència d'escapada en la classe de caràcter no és vàlida" -#: ../glib/gregex.c:227 +#: glib/gregex.c:227 msgid "range out of order in character class" msgstr "s'ha eixit del rang en la classe de caràcter" -#: ../glib/gregex.c:230 +#: glib/gregex.c:230 msgid "nothing to repeat" msgstr "no hi ha res a repetir" -#: ../glib/gregex.c:233 +#: glib/gregex.c:233 msgid "unrecognized character after (?" msgstr "no es reconeix el caràcter després de «(?»" -#: ../glib/gregex.c:237 +#: glib/gregex.c:237 msgid "unrecognized character after (?<" msgstr "no es reconeix el caràcter després de «(?<»" -#: ../glib/gregex.c:241 +#: glib/gregex.c:241 msgid "unrecognized character after (?P" msgstr "no es reconeix el caràcter després de «(?P»" -#: ../glib/gregex.c:244 +#: glib/gregex.c:244 msgid "POSIX named classes are supported only within a class" msgstr "" "només es permeten les classes amb nom de POSIX dins de la pròpia classe" -#: ../glib/gregex.c:247 +#: glib/gregex.c:247 msgid "missing terminating )" msgstr "falta un «)»" -#: ../glib/gregex.c:251 +#: glib/gregex.c:251 msgid ") without opening (" msgstr "hi ha un «)» sense el corresponent «(»" #. translators: '(?R' and '(?[+-]digits' are both meant as (groups of) #. * sequences here, '(?-54' would be an example for the second group. #. -#: ../glib/gregex.c:258 +#: glib/gregex.c:258 msgid "(?R or (?[+-]digits must be followed by )" msgstr "«(?R» o «(?[+-]dígits» han d'anar seguits per «)»" -#: ../glib/gregex.c:261 +#: glib/gregex.c:261 msgid "reference to non-existent subpattern" msgstr "referència a un subpatró que no existeix" -#: ../glib/gregex.c:264 +#: glib/gregex.c:264 msgid "missing ) after comment" msgstr "falta un «)» després del comentari" -#: ../glib/gregex.c:267 +#: glib/gregex.c:267 msgid "regular expression too large" msgstr "l'expressió regular és massa llarga" -#: ../glib/gregex.c:270 +#: glib/gregex.c:270 msgid "failed to get memory" msgstr "no s'ha pogut obtindre memòria" -#: ../glib/gregex.c:273 +#: glib/gregex.c:273 msgid "lookbehind assertion is not fixed length" msgstr "l'asserció cap arrere no té llargada fixa" -#: ../glib/gregex.c:276 +#: glib/gregex.c:276 msgid "malformed number or name after (?(" msgstr "nombre o nom malformats després de «(?(»" -#: ../glib/gregex.c:279 +#: glib/gregex.c:279 msgid "conditional group contains more than two branches" msgstr "el grup condicional conté més de dues branques" -#: ../glib/gregex.c:282 +#: glib/gregex.c:282 msgid "assertion expected after (?(" msgstr "s'esperava una asserció després de «(?(»" -#: ../glib/gregex.c:285 +#: glib/gregex.c:285 msgid "unknown POSIX class name" msgstr "nom de classe POSIX desconeguda" -#: ../glib/gregex.c:288 +#: glib/gregex.c:288 msgid "POSIX collating elements are not supported" msgstr "no es poden utilitzar els elements d'ordenació de POSIX" -#: ../glib/gregex.c:291 +#: glib/gregex.c:291 msgid "character value in \\x{...} sequence is too large" msgstr "el valor del caràcter a la seqüència «\\x{...}» és massa llarg" -#: ../glib/gregex.c:294 +#: glib/gregex.c:294 msgid "invalid condition (?(0)" msgstr "condició «(?(0)» no vàlida" -#: ../glib/gregex.c:297 +#: glib/gregex.c:297 msgid "\\C not allowed in lookbehind assertion" msgstr "no es permet \\C en assercions cap arrere" -#: ../glib/gregex.c:300 +#: glib/gregex.c:300 msgid "recursive call could loop indefinitely" msgstr "la crida recursiva podria entrar en bucle indefinidament" -#: ../glib/gregex.c:303 +#: glib/gregex.c:303 msgid "missing terminator in subpattern name" msgstr "falta la finalització en el nom del subpatró" -#: ../glib/gregex.c:306 +#: glib/gregex.c:306 msgid "two named subpatterns have the same name" msgstr "dos noms de subpatró tenen el mateix nom" -#: ../glib/gregex.c:309 +#: glib/gregex.c:309 msgid "malformed \\P or \\p sequence" msgstr "la seqüència «\\P» o «\\p» és malformada" -#: ../glib/gregex.c:312 +#: glib/gregex.c:312 msgid "unknown property name after \\P or \\p" msgstr "es desconeix el nom de la propietat després de «\\P» o «\\p»" -#: ../glib/gregex.c:315 +#: glib/gregex.c:315 msgid "subpattern name is too long (maximum 32 characters)" msgstr "el nom del subpatró és massa llarg (32 caràcters com a màxim)" -#: ../glib/gregex.c:318 +#: glib/gregex.c:318 msgid "too many named subpatterns (maximum 10,000)" msgstr "hi ha massa subpatrons amb nom (màxim de 10.000)" -#: ../glib/gregex.c:321 +#: glib/gregex.c:321 msgid "octal value is greater than \\377" msgstr "el valor octal és més gran que \\377" -#: ../glib/gregex.c:324 +#: glib/gregex.c:324 msgid "DEFINE group contains more than one branch" msgstr "el grup «DEFINE» conté més d'una branca" -#: ../glib/gregex.c:327 +#: glib/gregex.c:327 msgid "repeating a DEFINE group is not allowed" msgstr "no es permet repetir un grup «DEFINE»" -#: ../glib/gregex.c:330 +#: glib/gregex.c:330 msgid "inconsistent NEWLINE options" msgstr "opcions «NEWLINE» inconsistents" -#: ../glib/gregex.c:333 +#: glib/gregex.c:333 msgid "" "\\g is not followed by a braced name or an optionally braced non-zero number" msgstr "" "«\\g» no és seguit per un nom entre claus o un nombre opcional diferent de " "zero entre claus" -#: ../glib/gregex.c:338 +#: glib/gregex.c:338 msgid "unexpected repeat" msgstr "repetició no esperada" -#: ../glib/gregex.c:342 +#: glib/gregex.c:342 msgid "code overflow" msgstr "desbordament del codi" -#: ../glib/gregex.c:346 +#: glib/gregex.c:346 msgid "overran compiling workspace" msgstr "s'ha produït un desbordament en compilar l'espai de treball" -#: ../glib/gregex.c:350 +#: glib/gregex.c:350 msgid "previously-checked referenced subpattern not found" msgstr "no s'ha trobat el subpatró referenciat comprovat anteriorment" -#: ../glib/gregex.c:522 ../glib/gregex.c:1603 +#: glib/gregex.c:522 glib/gregex.c:1603 #, c-format msgid "Error while matching regular expression %s: %s" msgstr "S'ha produït un error en fer coincidir l'expressió regular %s: %s" -#: ../glib/gregex.c:1094 +#: glib/gregex.c:1094 msgid "PCRE library is compiled without UTF8 support" msgstr "La biblioteca PCRE no està compilada per interpretar UTF8" -#: ../glib/gregex.c:1103 +#: glib/gregex.c:1103 msgid "PCRE library is compiled without UTF8 properties support" msgstr "" "La biblioteca PCRE no està compilada per interpretar les propietats UTF8" -#: ../glib/gregex.c:1157 +#: glib/gregex.c:1157 #, c-format msgid "Error while compiling regular expression %s at char %d: %s" msgstr "" "S'ha produït un error en compilar l'expressió regular %s al caràcter %d: %s" -#: ../glib/gregex.c:1193 +#: glib/gregex.c:1193 #, c-format msgid "Error while optimizing regular expression %s: %s" msgstr "S'ha produït un error en optimitzar l'expressió regular %s: %s" -#: ../glib/gregex.c:2031 +#: glib/gregex.c:2031 msgid "hexadecimal digit or '}' expected" msgstr "s'esperava un dígit hexadecimal o bé «}»" -#: ../glib/gregex.c:2047 +#: glib/gregex.c:2047 msgid "hexadecimal digit expected" msgstr "s'esperava un dígit hexadecimal" -#: ../glib/gregex.c:2087 +#: glib/gregex.c:2087 msgid "missing '<' in symbolic reference" msgstr "falta un «<» en la referència simbòlica" -#: ../glib/gregex.c:2096 +#: glib/gregex.c:2096 msgid "unfinished symbolic reference" msgstr "la referència simbòlica no està acabada" -#: ../glib/gregex.c:2103 +#: glib/gregex.c:2103 msgid "zero-length symbolic reference" msgstr "referència simbòlica de longitud zero" -#: ../glib/gregex.c:2114 +#: glib/gregex.c:2114 msgid "digit expected" msgstr "s'esperava un dígit" -#: ../glib/gregex.c:2132 +#: glib/gregex.c:2132 msgid "illegal symbolic reference" msgstr "la referència simbòlica no és vàlida" -#: ../glib/gregex.c:2194 +#: glib/gregex.c:2194 msgid "stray final '\\'" msgstr "«\\» final extraviat" -#: ../glib/gregex.c:2198 +#: glib/gregex.c:2198 msgid "unknown escape sequence" msgstr "no es reconeix la seqüència d'escapament" -#: ../glib/gregex.c:2208 +#: glib/gregex.c:2208 #, c-format msgid "Error while parsing replacement text \"%s\" at char %lu: %s" msgstr "" "S'ha produït un error en analitzar el text de reemplaçament «%s» al caràcter %" "lu: %s" -#: ../glib/gshell.c:92 +#: glib/gshell.c:92 msgid "Quoted text doesn't begin with a quotation mark" msgstr "El text citat no comença amb cometes" -#: ../glib/gshell.c:182 +#: glib/gshell.c:182 msgid "Unmatched quotation mark in command line or other shell-quoted text" msgstr "" "S'han trobat unes cometes desaparellades en una línia d'ordes o en un altre " "text entre cometes" -#: ../glib/gshell.c:560 +#: glib/gshell.c:560 #, c-format msgid "Text ended just after a '\\' character. (The text was '%s')" msgstr "El text acaba just després d'un caràcter «\\». (El text era «%s»)" -#: ../glib/gshell.c:567 +#: glib/gshell.c:567 #, c-format msgid "Text ended before matching quote was found for %c. (The text was '%s')" msgstr "" "El text ha acabat abans de trobar les cometes corresponents a %c. (El text " "era «%s»)" -#: ../glib/gshell.c:579 +#: glib/gshell.c:579 msgid "Text was empty (or contained only whitespace)" msgstr "El text era buit (o només contenia espais en blanc)" -#: ../glib/gspawn-win32.c:283 +#: glib/gspawn-win32.c:283 msgid "Failed to read data from child process" msgstr "No s'ha pogut llegir dades del procés fill" -#: ../glib/gspawn-win32.c:300 ../glib/gspawn.c:1480 +#: glib/gspawn-win32.c:300 glib/gspawn.c:1480 #, c-format msgid "Failed to create pipe for communicating with child process (%s)" msgstr "" "No s'ha pogut crear el conducte per comunicar-se amb el procés fill (%s)" -#: ../glib/gspawn-win32.c:339 ../glib/gspawn-win32.c:347 ../glib/gspawn.c:1139 +#: glib/gspawn-win32.c:339 glib/gspawn-win32.c:347 glib/gspawn.c:1139 #, c-format msgid "Failed to read from child pipe (%s)" msgstr "No s'ha pogut llegir des del conducte fill (%s)" -#: ../glib/gspawn-win32.c:370 ../glib/gspawn.c:1346 +#: glib/gspawn-win32.c:370 glib/gspawn.c:1346 #, c-format msgid "Failed to change to directory '%s' (%s)" msgstr "No s'ha pogut canviar al directori «%s» (%s)" -#: ../glib/gspawn-win32.c:376 ../glib/gspawn-win32.c:495 +#: glib/gspawn-win32.c:376 glib/gspawn-win32.c:495 #, c-format msgid "Failed to execute child process (%s)" msgstr "No s'ha pogut executar el procés fill (%s)" -#: ../glib/gspawn-win32.c:445 +#: glib/gspawn-win32.c:445 #, c-format msgid "Invalid program name: %s" msgstr "El nom del programa no és vàlid: %s" -#: ../glib/gspawn-win32.c:455 ../glib/gspawn-win32.c:723 -#: ../glib/gspawn-win32.c:1279 +#: glib/gspawn-win32.c:455 glib/gspawn-win32.c:723 glib/gspawn-win32.c:1279 #, c-format msgid "Invalid string in argument vector at %d: %s" msgstr "La cadena en el vector d'argument no és vàlida a %d: %s" -#: ../glib/gspawn-win32.c:466 ../glib/gspawn-win32.c:738 -#: ../glib/gspawn-win32.c:1312 +#: glib/gspawn-win32.c:466 glib/gspawn-win32.c:738 glib/gspawn-win32.c:1312 #, c-format msgid "Invalid string in environment: %s" msgstr "Cadena no vàlida a l'entorn: %s" -#: ../glib/gspawn-win32.c:719 ../glib/gspawn-win32.c:1260 +#: glib/gspawn-win32.c:719 glib/gspawn-win32.c:1260 #, c-format msgid "Invalid working directory: %s" msgstr "El directori de treball no és vàlid: %s" -#: ../glib/gspawn-win32.c:784 +#: glib/gspawn-win32.c:784 #, c-format msgid "Failed to execute helper program (%s)" msgstr "No s'ha pogut executar el programa d'ajuda (%s)" -#: ../glib/gspawn-win32.c:998 +#: glib/gspawn-win32.c:998 msgid "" "Unexpected error in g_io_channel_win32_poll() reading data from a child " "process" @@ -944,140 +940,140 @@ msgstr "" "S'ha produït un error inesperat a g_io_channel_win32_poll() en llegir dades " "d'un procés fill" -#: ../glib/gspawn.c:190 +#: glib/gspawn.c:190 #, c-format msgid "Failed to read data from child process (%s)" msgstr "No s'ha pogut llegir dades des del procés fill (%s)" -#: ../glib/gspawn.c:329 +#: glib/gspawn.c:329 #, c-format msgid "Unexpected error in select() reading data from a child process (%s)" msgstr "" "S'ha produït un error inesperat a select() en llegir dades des d'un procés " "fill (%s)" -#: ../glib/gspawn.c:414 +#: glib/gspawn.c:414 #, c-format msgid "Unexpected error in waitpid() (%s)" msgstr "S'ha produït un error inesperat en waitpid() (%s)" -#: ../glib/gspawn.c:1206 +#: glib/gspawn.c:1206 #, c-format msgid "Failed to fork (%s)" msgstr "No s'ha pogut bifurcar-se (%s)" -#: ../glib/gspawn.c:1356 +#: glib/gspawn.c:1356 #, c-format msgid "Failed to execute child process \"%s\" (%s)" msgstr "No s'ha pogut executar el procés fill «%s» (%s)" -#: ../glib/gspawn.c:1366 +#: glib/gspawn.c:1366 #, c-format msgid "Failed to redirect output or input of child process (%s)" msgstr "No s'ha pogut redirigir l'entrada o l'eixida del procés fill (%s)" -#: ../glib/gspawn.c:1375 +#: glib/gspawn.c:1375 #, c-format msgid "Failed to fork child process (%s)" msgstr "No s'ha pogut bifurcar el procés fill (%s)" -#: ../glib/gspawn.c:1383 +#: glib/gspawn.c:1383 #, c-format msgid "Unknown error executing child process \"%s\"" msgstr "S'ha produït un error desconegut en executar el procés fill «%s»" -#: ../glib/gspawn.c:1407 +#: glib/gspawn.c:1407 #, c-format msgid "Failed to read enough data from child pid pipe (%s)" msgstr "" "No s'han pogut llegir prou dades del conducte de l'identificador del procés " "fill (%s)" -#: ../glib/gutf8.c:1055 +#: glib/gutf8.c:1055 msgid "Character out of range for UTF-8" msgstr "El caràcter és fora del rang per a UTF-8" -#: ../glib/gutf8.c:1155 ../glib/gutf8.c:1164 ../glib/gutf8.c:1296 -#: ../glib/gutf8.c:1305 ../glib/gutf8.c:1446 ../glib/gutf8.c:1542 +#: glib/gutf8.c:1155 glib/gutf8.c:1164 glib/gutf8.c:1296 glib/gutf8.c:1305 +#: glib/gutf8.c:1446 glib/gutf8.c:1542 msgid "Invalid sequence in conversion input" msgstr "Seqüència no vàlida a l'entrada de la conversió" -#: ../glib/gutf8.c:1457 ../glib/gutf8.c:1553 +#: glib/gutf8.c:1457 glib/gutf8.c:1553 msgid "Character out of range for UTF-16" msgstr "El caràcter és fora del rang per a UTF-16" -#: ../glib/goption.c:755 +#: glib/goption.c:755 msgid "Usage:" msgstr "Forma d'ús:" -#: ../glib/goption.c:755 +#: glib/goption.c:755 msgid "[OPTION...]" msgstr "[OPCIÓ...]" -#: ../glib/goption.c:861 +#: glib/goption.c:861 msgid "Help Options:" msgstr "Opcions d'ajuda:" -#: ../glib/goption.c:862 +#: glib/goption.c:862 msgid "Show help options" msgstr "Mostra les opcions d'ajuda" -#: ../glib/goption.c:868 +#: glib/goption.c:868 msgid "Show all help options" msgstr "Mostra totes les opcions d'ajuda" -#: ../glib/goption.c:930 +#: glib/goption.c:930 msgid "Application Options:" msgstr "Opcions de l'aplicació:" -#: ../glib/goption.c:992 ../glib/goption.c:1062 +#: glib/goption.c:992 glib/goption.c:1062 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "No es pot analitzar el valor enter «%s» per a %s" -#: ../glib/goption.c:1002 ../glib/goption.c:1070 +#: glib/goption.c:1002 glib/goption.c:1070 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "El valor enter «%s» per a %s és fora del rang" -#: ../glib/goption.c:1027 +#: glib/goption.c:1027 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "No es pot analitzar el valor doble «%s» per a %s" -#: ../glib/goption.c:1035 +#: glib/goption.c:1035 #, c-format msgid "Double value '%s' for %s out of range" msgstr "El valor doble «%s» per a %s és fora del rang" -#: ../glib/goption.c:1298 ../glib/goption.c:1377 +#: glib/goption.c:1298 glib/goption.c:1377 #, c-format msgid "Error parsing option %s" msgstr "S'ha produït un error en analitzar l'opció %s" -#: ../glib/goption.c:1408 ../glib/goption.c:1522 +#: glib/goption.c:1408 glib/goption.c:1522 #, c-format msgid "Missing argument for %s" msgstr "Manca un argument per a %s" -#: ../glib/goption.c:1917 +#: glib/goption.c:1917 #, c-format msgid "Unknown option %s" msgstr "Es desconeix l'opció %s" -#: ../glib/gkeyfile.c:361 +#: glib/gkeyfile.c:361 msgid "Valid key file could not be found in search dirs" msgstr "No s'ha pogut trobar cap fitxer de claus vàlid als directoris de cerca" -#: ../glib/gkeyfile.c:396 +#: glib/gkeyfile.c:396 msgid "Not a regular file" msgstr "No és un fitxer regular" -#: ../glib/gkeyfile.c:404 +#: glib/gkeyfile.c:404 msgid "File is empty" msgstr "El fitxer és buit" -#: ../glib/gkeyfile.c:763 +#: glib/gkeyfile.c:763 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -1085,56 +1081,56 @@ msgstr "" "El fitxer de claus conté la línia «%s» que no és una parella clau-valor, grup " "o comentari" -#: ../glib/gkeyfile.c:823 +#: glib/gkeyfile.c:823 #, c-format msgid "Invalid group name: %s" msgstr "El nom del grup no és vàlid: %s" -#: ../glib/gkeyfile.c:845 +#: glib/gkeyfile.c:845 msgid "Key file does not start with a group" msgstr "El fitxer de claus no comença amb un grup" -#: ../glib/gkeyfile.c:871 +#: glib/gkeyfile.c:871 #, c-format msgid "Invalid key name: %s" msgstr "El nom de la clau no és vàlid: %s" -#: ../glib/gkeyfile.c:898 +#: glib/gkeyfile.c:898 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "El fitxer de claus conté la codificació no implementada «%s»" -#: ../glib/gkeyfile.c:1114 ../glib/gkeyfile.c:1276 ../glib/gkeyfile.c:2505 -#: ../glib/gkeyfile.c:2571 ../glib/gkeyfile.c:2706 ../glib/gkeyfile.c:2839 -#: ../glib/gkeyfile.c:2992 ../glib/gkeyfile.c:3179 ../glib/gkeyfile.c:3240 +#: glib/gkeyfile.c:1114 glib/gkeyfile.c:1276 glib/gkeyfile.c:2505 +#: glib/gkeyfile.c:2571 glib/gkeyfile.c:2706 glib/gkeyfile.c:2839 +#: glib/gkeyfile.c:2992 glib/gkeyfile.c:3179 glib/gkeyfile.c:3240 #, c-format msgid "Key file does not have group '%s'" msgstr "El fitxer de claus no té el grup «%s»" -#: ../glib/gkeyfile.c:1288 +#: glib/gkeyfile.c:1288 #, c-format msgid "Key file does not have key '%s'" msgstr "El fitxer de claus no té la clau «%s»" -#: ../glib/gkeyfile.c:1395 ../glib/gkeyfile.c:1510 +#: glib/gkeyfile.c:1395 glib/gkeyfile.c:1510 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "El fitxer de claus conté la clau «%s» amb el valor «%s» que no és UTF-8" -#: ../glib/gkeyfile.c:1415 ../glib/gkeyfile.c:1909 +#: glib/gkeyfile.c:1415 glib/gkeyfile.c:1909 #, c-format msgid "Key file contains key '%s' which has value that cannot be interpreted." msgstr "" "El fitxer de claus conté la clau «%s» que té un valor que no és interpretable." -#: ../glib/gkeyfile.c:1530 +#: glib/gkeyfile.c:1530 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." msgstr "" "El fitxer de claus conté la clau «%s» que té un valor que no és interpretable." -#: ../glib/gkeyfile.c:2124 ../glib/gkeyfile.c:2336 +#: glib/gkeyfile.c:2124 glib/gkeyfile.c:2336 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has value that cannot be " @@ -1143,188 +1139,185 @@ msgstr "" "El fitxer de claus conté la clau «%s» en el grup «%s», que té un valor no " "interpretable." -#: ../glib/gkeyfile.c:2520 ../glib/gkeyfile.c:2721 ../glib/gkeyfile.c:3251 +#: glib/gkeyfile.c:2520 glib/gkeyfile.c:2721 glib/gkeyfile.c:3251 #, c-format msgid "Key file does not have key '%s' in group '%s'" msgstr "El fitxer de claus no conté una clau «%s» en el grup «%s»" -#: ../glib/gkeyfile.c:3485 +#: glib/gkeyfile.c:3485 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" -#: ../glib/gkeyfile.c:3507 +#: glib/gkeyfile.c:3507 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "El fitxer de claus conté una seqüència d'escapada no vàlida «%s»" -#: ../glib/gkeyfile.c:3649 +#: glib/gkeyfile.c:3649 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "El valor «%s» no es pot interpretar com a un nombre." -#: ../glib/gkeyfile.c:3663 +#: glib/gkeyfile.c:3663 #, c-format msgid "Integer value '%s' out of range" msgstr "El valor enter «%s» és fora del rang" -#: ../glib/gkeyfile.c:3696 +#: glib/gkeyfile.c:3696 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "El valor «%s» no es pot interpretar com a un nombre en coma flotant." -#: ../glib/gkeyfile.c:3720 +#: glib/gkeyfile.c:3720 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "El valor «%s» no es pot interpretar com un booleà." -#: ../gio/gbufferedinputstream.c:415 ../gio/gbufferedinputstream.c:496 -#: ../gio/ginputstream.c:186 ../gio/ginputstream.c:318 -#: ../gio/ginputstream.c:557 ../gio/ginputstream.c:682 -#: ../gio/goutputstream.c:198 ../gio/goutputstream.c:657 +#: gio/gbufferedinputstream.c:415 gio/gbufferedinputstream.c:496 +#: gio/ginputstream.c:186 gio/ginputstream.c:318 gio/ginputstream.c:557 +#: gio/ginputstream.c:682 gio/goutputstream.c:198 gio/goutputstream.c:657 #, c-format msgid "Too large count value passed to %s" msgstr "El valor de comptatge passat a %s és massa llarg" -#: ../gio/gbufferedinputstream.c:883 ../gio/ginputstream.c:892 -#: ../gio/giostream.c:305 ../gio/goutputstream.c:1108 +#: gio/gbufferedinputstream.c:883 gio/ginputstream.c:892 gio/giostream.c:305 +#: gio/goutputstream.c:1108 msgid "Stream is already closed" msgstr "Ja està tancat el flux" -#: ../gio/gcancellable.c:433 ../gio/glocalfile.c:2108 -#: ../gio/gsimpleasyncresult.c:651 ../gio/gsimpleasyncresult.c:677 +#: gio/gcancellable.c:433 gio/glocalfile.c:2108 gio/gsimpleasyncresult.c:651 +#: gio/gsimpleasyncresult.c:677 msgid "Operation was cancelled" msgstr "S'ha cancel·lat l'operació" -#: ../gio/gcharsetconverter.c:264 +#: gio/gcharsetconverter.c:264 msgid "Invalid object, not initialized" msgstr "L'objecte no és vàlid, no s'ha inicialitzat" -#: ../gio/gcharsetconverter.c:285 ../gio/gcharsetconverter.c:313 +#: gio/gcharsetconverter.c:285 gio/gcharsetconverter.c:313 msgid "Incomplete multibyte sequence in input" msgstr "La seqüència de múltiples bytes de l'entrada no és completa" -#: ../gio/gcharsetconverter.c:319 ../gio/gcharsetconverter.c:328 +#: gio/gcharsetconverter.c:319 gio/gcharsetconverter.c:328 msgid "Not enough space in destination" msgstr "No hi ha prou espai a la destinació" -#: ../gio/gcharsetconverter.c:448 ../gio/gsocket.c:772 +#: gio/gcharsetconverter.c:448 gio/gsocket.c:772 msgid "Cancellable initialization not supported" msgstr "No està implementada la cancel·lació de la inicialització" -#: ../gio/gcontenttype.c:180 +#: gio/gcontenttype.c:180 msgid "Unknown type" msgstr "Tipus desconegut" -#: ../gio/gcontenttype.c:181 +#: gio/gcontenttype.c:181 #, c-format msgid "%s filetype" msgstr "tipus de fitxer %s" -#: ../gio/gcontenttype.c:681 +#: gio/gcontenttype.c:681 #, c-format msgid "%s type" msgstr "tipus %s" -#: ../gio/gdatainputstream.c:311 +#: gio/gdatainputstream.c:311 msgid "Unexpected early end-of-stream" msgstr "No s'esperava un final de flux tant prompte" -#: ../gio/gdesktopappinfo.c:468 ../gio/gwin32appinfo.c:222 +#: gio/gdesktopappinfo.c:468 gio/gwin32appinfo.c:222 msgid "Unnamed" msgstr "Sense nom" -#: ../gio/gdesktopappinfo.c:742 +#: gio/gdesktopappinfo.c:742 msgid "Desktop file didn't specify Exec field" msgstr "El fitxer d'escriptori no especificava el camp d'execució" -#: ../gio/gdesktopappinfo.c:924 +#: gio/gdesktopappinfo.c:924 msgid "Unable to find terminal required for application" msgstr "No s'ha pogut trobar el terminal que demanava l'aplicació" -#: ../gio/gdesktopappinfo.c:1132 +#: gio/gdesktopappinfo.c:1132 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "" "No s'ha pogut crear el directori de configuració de l'aplicació de l'usuari %" "s: %s" -#: ../gio/gdesktopappinfo.c:1136 +#: gio/gdesktopappinfo.c:1136 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "" "No s'ha pogut crear el directori de configuració MIME de l'usuari %s: %s" -#: ../gio/gdesktopappinfo.c:1544 +#: gio/gdesktopappinfo.c:1544 #, c-format msgid "Can't create user desktop file %s" msgstr "No s'ha pogut crear el fitxer d'escriptori de l'usuari %s" -#: ../gio/gdesktopappinfo.c:1658 +#: gio/gdesktopappinfo.c:1658 #, c-format msgid "Custom definition for %s" msgstr "Definició personalitzada per a %s" -#: ../gio/gdrive.c:364 +#: gio/gdrive.c:364 msgid "drive doesn't implement eject" msgstr "la unitat no implementa l'expulsió" #. Translators: This is an error #. * message for drive objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gdrive.c:444 +#: gio/gdrive.c:444 msgid "drive doesn't implement eject or eject_with_operation" msgstr "la unitat no implementa l'expulsió o «eject_with_operation»" -#: ../gio/gdrive.c:521 +#: gio/gdrive.c:521 msgid "drive doesn't implement polling for media" msgstr "la unitat no implementa el sondeig per si hi ha un suport" -#: ../gio/gdrive.c:726 +#: gio/gdrive.c:726 msgid "drive doesn't implement start" msgstr "la unitat no implementa la inicialització" -#: ../gio/gdrive.c:828 +#: gio/gdrive.c:828 msgid "drive doesn't implement stop" msgstr "la unitat no implementa l'aturada" -#: ../gio/gemblem.c:325 +#: gio/gemblem.c:325 #, c-format msgid "Can't handle version %d of GEmblem encoding" msgstr "No es pot gestionar la versió %d de la codificació del GEmblem" -#: ../gio/gemblem.c:335 +#: gio/gemblem.c:335 #, c-format msgid "Malformed number of tokens (%d) in GEmblem encoding" msgstr "" "Un nombre de testimonis (%d) de la codificació del GEmblem no són formats " "correctament" -#: ../gio/gemblemedicon.c:296 +#: gio/gemblemedicon.c:296 #, c-format msgid "Can't handle version %d of GEmblemedIcon encoding" msgstr "No es pot gestionar la versió %d de la codificació del GEmblemedIcon" -#: ../gio/gemblemedicon.c:306 +#: gio/gemblemedicon.c:306 #, c-format msgid "Malformed number of tokens (%d) in GEmblemedIcon encoding" msgstr "" "Un nombre de testimonis (%d) en la codificació del GEmblemedIcon no són " "formats correctament" -#: ../gio/gemblemedicon.c:329 +#: gio/gemblemedicon.c:329 msgid "Expected a GEmblem for GEmblemedIcon" msgstr "S'esperava un GEmblem per a un GEmblemedIcon" -#: ../gio/gfile.c:871 ../gio/gfile.c:1101 ../gio/gfile.c:1236 -#: ../gio/gfile.c:1472 ../gio/gfile.c:1526 ../gio/gfile.c:1583 -#: ../gio/gfile.c:1666 ../gio/gfile.c:1721 ../gio/gfile.c:1781 -#: ../gio/gfile.c:1835 ../gio/gfile.c:3304 ../gio/gfile.c:3358 -#: ../gio/gfile.c:3489 ../gio/gfile.c:3529 ../gio/gfile.c:3856 -#: ../gio/gfile.c:4258 ../gio/gfile.c:4344 ../gio/gfile.c:4433 -#: ../gio/gfile.c:4531 ../gio/gfile.c:4618 ../gio/gfile.c:4711 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5321 ../gio/gfile.c:5390 -#: ../gio/gfile.c:6981 ../gio/gfile.c:7071 ../gio/gfile.c:7157 -#: ../gio/win32/gwinhttpfile.c:441 +#: gio/gfile.c:871 gio/gfile.c:1101 gio/gfile.c:1236 gio/gfile.c:1472 +#: gio/gfile.c:1526 gio/gfile.c:1583 gio/gfile.c:1666 gio/gfile.c:1721 +#: gio/gfile.c:1781 gio/gfile.c:1835 gio/gfile.c:3304 gio/gfile.c:3358 +#: gio/gfile.c:3489 gio/gfile.c:3529 gio/gfile.c:3856 gio/gfile.c:4258 +#: gio/gfile.c:4344 gio/gfile.c:4433 gio/gfile.c:4531 gio/gfile.c:4618 +#: gio/gfile.c:4711 gio/gfile.c:5041 gio/gfile.c:5321 gio/gfile.c:5390 +#: gio/gfile.c:6981 gio/gfile.c:7071 gio/gfile.c:7157 +#: gio/win32/gwinhttpfile.c:441 msgid "Operation not supported" msgstr "L'operació no està implementada" @@ -1336,139 +1329,139 @@ msgstr "L'operació no està implementada" #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1357 ../gio/glocalfile.c:1065 ../gio/glocalfile.c:1076 -#: ../gio/glocalfile.c:1089 +#: gio/gfile.c:1357 gio/glocalfile.c:1065 gio/glocalfile.c:1076 +#: gio/glocalfile.c:1089 msgid "Containing mount does not exist" msgstr "No existeix el punt de muntatge contenidor" -#: ../gio/gfile.c:2409 ../gio/glocalfile.c:2264 +#: gio/gfile.c:2409 gio/glocalfile.c:2264 msgid "Can't copy over directory" msgstr "No es pot copiar al directori" -#: ../gio/gfile.c:2469 +#: gio/gfile.c:2469 msgid "Can't copy directory over directory" msgstr "No es pot copiar el directori al directori" -#: ../gio/gfile.c:2477 ../gio/glocalfile.c:2273 +#: gio/gfile.c:2477 gio/glocalfile.c:2273 msgid "Target file exists" msgstr "Ja existeix el fitxer de destinació" -#: ../gio/gfile.c:2495 +#: gio/gfile.c:2495 msgid "Can't recursively copy directory" msgstr "No es pot copiar el directori de forma recursiva" -#: ../gio/gfile.c:2755 +#: gio/gfile.c:2755 msgid "Splice not supported" msgstr "No es pot empalmar" -#: ../gio/gfile.c:2759 +#: gio/gfile.c:2759 #, c-format msgid "Error splicing file: %s" msgstr "S'ha produït un error en empalmar el fitxer: %s" -#: ../gio/gfile.c:2906 +#: gio/gfile.c:2906 msgid "Can't copy special file" msgstr "No es pot copiar el fitxer especial" -#: ../gio/gfile.c:3479 +#: gio/gfile.c:3479 msgid "Invalid symlink value given" msgstr "El valor donat per a l'enllaç simbòlic no és vàlid" -#: ../gio/gfile.c:3572 +#: gio/gfile.c:3572 msgid "Trash not supported" msgstr "No es pot utilitzar la paperera" -#: ../gio/gfile.c:3621 +#: gio/gfile.c:3621 #, c-format msgid "File names cannot contain '%c'" msgstr "En els noms de fitxers no pot haver-hi «%c»" -#: ../gio/gfile.c:6038 ../gio/gvolume.c:331 +#: gio/gfile.c:6038 gio/gvolume.c:331 msgid "volume doesn't implement mount" msgstr "el volum no implementa el muntatge" -#: ../gio/gfile.c:6149 +#: gio/gfile.c:6149 msgid "No application is registered as handling this file" msgstr "" "No hi ha cap aplicació que s'haja registrat per a gestionar este fitxer" -#: ../gio/gfileenumerator.c:206 +#: gio/gfileenumerator.c:206 msgid "Enumerator is closed" msgstr "L'enumerador està tancat" -#: ../gio/gfileenumerator.c:213 ../gio/gfileenumerator.c:272 -#: ../gio/gfileenumerator.c:372 ../gio/gfileenumerator.c:481 +#: gio/gfileenumerator.c:213 gio/gfileenumerator.c:272 +#: gio/gfileenumerator.c:372 gio/gfileenumerator.c:481 msgid "File enumerator has outstanding operation" msgstr "L'enumerador de fitxer té una operació pendent" -#: ../gio/gfileenumerator.c:362 ../gio/gfileenumerator.c:471 +#: gio/gfileenumerator.c:362 gio/gfileenumerator.c:471 msgid "File enumerator is already closed" msgstr "Ja està tancat l'enumerador de fitxer" -#: ../gio/gfileicon.c:237 +#: gio/gfileicon.c:237 #, c-format msgid "Can't handle version %d of GFileIcon encoding" msgstr "No es pot gestionar la versió %d de la codificació del GFileIcon" -#: ../gio/gfileicon.c:247 +#: gio/gfileicon.c:247 msgid "Malformed input data for GFileIcon" msgstr "Les dades d'entrada pel GFileIcon no són formades correctament" -#: ../gio/gfileinputstream.c:155 ../gio/gfileinputstream.c:422 -#: ../gio/gfileiostream.c:171 ../gio/gfileoutputstream.c:170 -#: ../gio/gfileoutputstream.c:525 +#: gio/gfileinputstream.c:155 gio/gfileinputstream.c:422 +#: gio/gfileiostream.c:171 gio/gfileoutputstream.c:170 +#: gio/gfileoutputstream.c:525 msgid "Stream doesn't support query_info" msgstr "El flux no implementa «query_info»" -#: ../gio/gfileinputstream.c:337 ../gio/gfileiostream.c:389 -#: ../gio/gfileoutputstream.c:383 +#: gio/gfileinputstream.c:337 gio/gfileiostream.c:389 +#: gio/gfileoutputstream.c:383 msgid "Seek not supported on stream" msgstr "No està implementada la cerca en el flux" -#: ../gio/gfileinputstream.c:381 +#: gio/gfileinputstream.c:381 msgid "Truncate not allowed on input stream" msgstr "No es permet truncar en els fluxos d'entrada" -#: ../gio/gfileiostream.c:465 ../gio/gfileoutputstream.c:459 +#: gio/gfileiostream.c:465 gio/gfileoutputstream.c:459 msgid "Truncate not supported on stream" msgstr "No es permet truncar en els fluxos" -#: ../gio/gicon.c:286 +#: gio/gicon.c:286 #, c-format msgid "Wrong number of tokens (%d)" msgstr "Nombre de testimonis erroni (%d)" -#: ../gio/gicon.c:306 +#: gio/gicon.c:306 #, c-format msgid "No type for class name %s" msgstr "El nom de classe %s no té tipus" -#: ../gio/gicon.c:316 +#: gio/gicon.c:316 #, c-format msgid "Type %s does not implement the GIcon interface" msgstr "El tipus %s no implementa la interfície GIcon" -#: ../gio/gicon.c:327 +#: gio/gicon.c:327 #, c-format msgid "Type %s is not classed" msgstr "El tipus %s no té classe" -#: ../gio/gicon.c:341 +#: gio/gicon.c:341 #, c-format msgid "Malformed version number: %s" msgstr "El número de versió no és format correctament: %s" -#: ../gio/gicon.c:355 +#: gio/gicon.c:355 #, c-format msgid "Type %s does not implement from_tokens() on the GIcon interface" msgstr "El tipus %s no implementa «from_tokens()» a la interfície GIcon" -#: ../gio/gicon.c:431 +#: gio/gicon.c:431 msgid "Can't handle the supplied version the icon encoding" msgstr "" "No es pot gestionar la versió proporcionada de la codificació de la icona" -#: ../gio/ginputstream.c:195 +#: gio/ginputstream.c:195 msgid "Input stream doesn't implement read" msgstr "El flux d'entrada no té implementada la lectura" @@ -1478,333 +1471,332 @@ msgstr "El flux d'entrada no té implementada la lectura" #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:902 ../gio/giostream.c:315 -#: ../gio/goutputstream.c:1118 +#: gio/ginputstream.c:902 gio/giostream.c:315 gio/goutputstream.c:1118 msgid "Stream has outstanding operation" msgstr "El flux té una operació pendent" -#: ../gio/ginetsocketaddress.c:182 ../gio/ginetsocketaddress.c:199 -#: ../gio/gunixsocketaddress.c:174 +#: gio/ginetsocketaddress.c:182 gio/ginetsocketaddress.c:199 +#: gio/gunixsocketaddress.c:174 msgid "Not enough space for socket address" msgstr "No hi ha prou espai per a l'adreça del sòcol" -#: ../gio/ginetsocketaddress.c:212 +#: gio/ginetsocketaddress.c:212 msgid "Unsupported socket address" msgstr "L'adreça de sòcol no és compatible" -#: ../gio/glocaldirectorymonitor.c:288 +#: gio/glocaldirectorymonitor.c:288 msgid "Unable to find default local directory monitor type" msgstr "" "No s'ha pogut trobar el tipus de seguiment de directoris locals predeterminat" -#: ../gio/glocalfile.c:599 ../gio/win32/gwinhttpfile.c:424 +#: gio/glocalfile.c:599 gio/win32/gwinhttpfile.c:424 #, c-format msgid "Invalid filename %s" msgstr "El nom del fitxer no és vàlid: %s" -#: ../gio/glocalfile.c:973 +#: gio/glocalfile.c:973 #, c-format msgid "Error getting filesystem info: %s" msgstr "" "S'ha produït un error en obtindre la informació del sistema de fitxers: %s" -#: ../gio/glocalfile.c:1111 +#: gio/glocalfile.c:1111 msgid "Can't rename root directory" msgstr "No es pot canviar el nom del directori arrel" -#: ../gio/glocalfile.c:1131 ../gio/glocalfile.c:1157 +#: gio/glocalfile.c:1131 gio/glocalfile.c:1157 #, c-format msgid "Error renaming file: %s" msgstr "S'ha produït un error en canviar el nom del fitxer: %s" -#: ../gio/glocalfile.c:1140 +#: gio/glocalfile.c:1140 msgid "Can't rename file, filename already exist" msgstr "No es pot canviar el nom del fitxer, ja existeix este nom" -#: ../gio/glocalfile.c:1153 ../gio/glocalfile.c:2137 ../gio/glocalfile.c:2166 -#: ../gio/glocalfile.c:2326 ../gio/glocalfileoutputstream.c:557 -#: ../gio/glocalfileoutputstream.c:610 ../gio/glocalfileoutputstream.c:655 -#: ../gio/glocalfileoutputstream.c:1137 +#: gio/glocalfile.c:1153 gio/glocalfile.c:2137 gio/glocalfile.c:2166 +#: gio/glocalfile.c:2326 gio/glocalfileoutputstream.c:557 +#: gio/glocalfileoutputstream.c:610 gio/glocalfileoutputstream.c:655 +#: gio/glocalfileoutputstream.c:1137 msgid "Invalid filename" msgstr "Nom de fitxer no vàlid" -#: ../gio/glocalfile.c:1314 +#: gio/glocalfile.c:1314 #, c-format msgid "Error opening file: %s" msgstr "S'ha produït un error en obrir el fitxer: %s" -#: ../gio/glocalfile.c:1324 +#: gio/glocalfile.c:1324 msgid "Can't open directory" msgstr "No s'ha pogut obrir el directori" -#: ../gio/glocalfile.c:1449 +#: gio/glocalfile.c:1449 #, c-format msgid "Error removing file: %s" msgstr "S'ha produït un error en suprimir el fitxer: %s" -#: ../gio/glocalfile.c:1816 +#: gio/glocalfile.c:1816 #, c-format msgid "Error trashing file: %s" msgstr "S'ha produït un error en enviar el fitxer a la paperera: %s" -#: ../gio/glocalfile.c:1839 +#: gio/glocalfile.c:1839 #, c-format msgid "Unable to create trash dir %s: %s" msgstr "No s'ha pogut crear el directori de la paperera %s: %s" -#: ../gio/glocalfile.c:1860 +#: gio/glocalfile.c:1860 msgid "Unable to find toplevel directory for trash" msgstr "No s'ha pogut trobar el directori superior per a la paperera" -#: ../gio/glocalfile.c:1939 ../gio/glocalfile.c:1959 +#: gio/glocalfile.c:1939 gio/glocalfile.c:1959 msgid "Unable to find or create trash directory" msgstr "No s'ha pogut trobar o crear el directori de la paperera" -#: ../gio/glocalfile.c:1993 +#: gio/glocalfile.c:1993 #, c-format msgid "Unable to create trashing info file: %s" msgstr "No s'ha pogut crear el fitxer d'informació d'enviar a la paperera: %s" -#: ../gio/glocalfile.c:2022 ../gio/glocalfile.c:2027 ../gio/glocalfile.c:2107 -#: ../gio/glocalfile.c:2114 +#: gio/glocalfile.c:2022 gio/glocalfile.c:2027 gio/glocalfile.c:2107 +#: gio/glocalfile.c:2114 #, c-format msgid "Unable to trash file: %s" msgstr "No s'ha pogut enviar el fitxer a la paperera: %s" -#: ../gio/glocalfile.c:2141 +#: gio/glocalfile.c:2141 #, c-format msgid "Error creating directory: %s" msgstr "S'ha produït un error en crear el directori: %s" -#: ../gio/glocalfile.c:2170 +#: gio/glocalfile.c:2170 #, c-format msgid "Filesystem does not support symbolic links" msgstr "El sistema de fitxers no implementa enllaços simbòlics" -#: ../gio/glocalfile.c:2174 +#: gio/glocalfile.c:2174 #, c-format msgid "Error making symbolic link: %s" msgstr "S'ha produït un error en fer l'enllaç simbòlic: %s" -#: ../gio/glocalfile.c:2236 ../gio/glocalfile.c:2330 +#: gio/glocalfile.c:2236 gio/glocalfile.c:2330 #, c-format msgid "Error moving file: %s" msgstr "S'ha produït un error en moure el fitxer: %s" -#: ../gio/glocalfile.c:2259 +#: gio/glocalfile.c:2259 msgid "Can't move directory over directory" msgstr "No s'ha pogut moure el directori al directori" -#: ../gio/glocalfile.c:2286 ../gio/glocalfileoutputstream.c:935 -#: ../gio/glocalfileoutputstream.c:949 ../gio/glocalfileoutputstream.c:964 -#: ../gio/glocalfileoutputstream.c:980 ../gio/glocalfileoutputstream.c:994 +#: gio/glocalfile.c:2286 gio/glocalfileoutputstream.c:935 +#: gio/glocalfileoutputstream.c:949 gio/glocalfileoutputstream.c:964 +#: gio/glocalfileoutputstream.c:980 gio/glocalfileoutputstream.c:994 msgid "Backup file creation failed" msgstr "Ha fallat la creació del fitxer de còpia de seguretat" -#: ../gio/glocalfile.c:2305 +#: gio/glocalfile.c:2305 #, c-format msgid "Error removing target file: %s" msgstr "S'ha produït un error en suprimir el fitxer objectiu: %s" -#: ../gio/glocalfile.c:2319 +#: gio/glocalfile.c:2319 msgid "Move between mounts not supported" msgstr "No està implementat el moure entre muntatges" -#: ../gio/glocalfileinfo.c:726 +#: gio/glocalfileinfo.c:726 msgid "Attribute value must be non-NULL" msgstr "El valor de l'atribut no pot ser nul" -#: ../gio/glocalfileinfo.c:733 +#: gio/glocalfileinfo.c:733 msgid "Invalid attribute type (string expected)" msgstr "Tipus d'atribut no vàlid (s'esperava una cadena)" -#: ../gio/glocalfileinfo.c:740 +#: gio/glocalfileinfo.c:740 msgid "Invalid extended attribute name" msgstr "El nom de l'atribut ampliat no és vàlid" -#: ../gio/glocalfileinfo.c:780 +#: gio/glocalfileinfo.c:780 #, c-format msgid "Error setting extended attribute '%s': %s" msgstr "S'ha produït un error en establir l'atribut ampliat «%s»: %s" -#: ../gio/glocalfileinfo.c:1484 ../gio/glocalfileoutputstream.c:819 +#: gio/glocalfileinfo.c:1484 gio/glocalfileoutputstream.c:819 #, c-format msgid "Error stating file '%s': %s" msgstr "" "S'ha produït un error en executar la funció «stat()» en el fitxer «%s»: %s" -#: ../gio/glocalfileinfo.c:1557 +#: gio/glocalfileinfo.c:1557 msgid " (invalid encoding)" msgstr " (codificació no vàlida)" -#: ../gio/glocalfileinfo.c:1755 +#: gio/glocalfileinfo.c:1755 #, c-format msgid "Error stating file descriptor: %s" msgstr "" "S'ha produït un error en executar la funció «stat()» al descriptor de fitxer: " "%s" -#: ../gio/glocalfileinfo.c:1800 +#: gio/glocalfileinfo.c:1800 msgid "Invalid attribute type (uint32 expected)" msgstr "Tipus d'atribut no vàlid (s'esperava un uint32)" -#: ../gio/glocalfileinfo.c:1818 +#: gio/glocalfileinfo.c:1818 msgid "Invalid attribute type (uint64 expected)" msgstr "Tipus d'atribut no vàlid (s'esperava un uint64)" -#: ../gio/glocalfileinfo.c:1837 ../gio/glocalfileinfo.c:1856 +#: gio/glocalfileinfo.c:1837 gio/glocalfileinfo.c:1856 msgid "Invalid attribute type (byte string expected)" msgstr "Tipus d'atribut no vàlid (s'esperava una cadena de bytes)" -#: ../gio/glocalfileinfo.c:1891 +#: gio/glocalfileinfo.c:1891 msgid "Cannot set permissions on symlinks" msgstr "No es poden establir permisos en els enllaços simbòlics" -#: ../gio/glocalfileinfo.c:1907 +#: gio/glocalfileinfo.c:1907 #, c-format msgid "Error setting permissions: %s" msgstr "S'ha produït un error en establir els permisos: %s" -#: ../gio/glocalfileinfo.c:1958 +#: gio/glocalfileinfo.c:1958 #, c-format msgid "Error setting owner: %s" msgstr "S'ha produït un error en establir el propietari: %s" -#: ../gio/glocalfileinfo.c:1981 +#: gio/glocalfileinfo.c:1981 msgid "symlink must be non-NULL" msgstr "l'enllaç simbòlic no pot ser nul" -#: ../gio/glocalfileinfo.c:1991 ../gio/glocalfileinfo.c:2010 -#: ../gio/glocalfileinfo.c:2021 +#: gio/glocalfileinfo.c:1991 gio/glocalfileinfo.c:2010 +#: gio/glocalfileinfo.c:2021 #, c-format msgid "Error setting symlink: %s" msgstr "S'ha produït un error en establir l'enllaç simbòlic: %s" -#: ../gio/glocalfileinfo.c:2000 +#: gio/glocalfileinfo.c:2000 msgid "Error setting symlink: file is not a symlink" msgstr "" "S'ha produït un error en establir l'enllaç simbòlic: el fitxer no és un " "enllaç simbòlic" -#: ../gio/glocalfileinfo.c:2126 +#: gio/glocalfileinfo.c:2126 #, c-format msgid "Error setting modification or access time: %s" msgstr "" "S'ha produït un error en establir el temps de modificació o d'accés: %s" -#: ../gio/glocalfileinfo.c:2149 +#: gio/glocalfileinfo.c:2149 msgid "SELinux context must be non-NULL" msgstr "El context del SELinux no pot ser nul" -#: ../gio/glocalfileinfo.c:2164 +#: gio/glocalfileinfo.c:2164 #, c-format msgid "Error setting SELinux context: %s" msgstr "S'ha produït un error en establir el context del SELinux: %s" -#: ../gio/glocalfileinfo.c:2171 +#: gio/glocalfileinfo.c:2171 msgid "SELinux is not enabled on this system" msgstr "Este sistema no té habilitat el SELinux" -#: ../gio/glocalfileinfo.c:2263 +#: gio/glocalfileinfo.c:2263 #, c-format msgid "Setting attribute %s not supported" msgstr "No està implementat establir l'atribut %s" -#: ../gio/glocalfileinputstream.c:171 ../gio/glocalfileoutputstream.c:708 +#: gio/glocalfileinputstream.c:171 gio/glocalfileoutputstream.c:708 #, c-format msgid "Error reading from file: %s" msgstr "S'ha produït un error en llegir des del fitxer: %s" -#: ../gio/glocalfileinputstream.c:202 ../gio/glocalfileinputstream.c:214 -#: ../gio/glocalfileinputstream.c:326 ../gio/glocalfileoutputstream.c:456 -#: ../gio/glocalfileoutputstream.c:1012 +#: gio/glocalfileinputstream.c:202 gio/glocalfileinputstream.c:214 +#: gio/glocalfileinputstream.c:326 gio/glocalfileoutputstream.c:456 +#: gio/glocalfileoutputstream.c:1012 #, c-format msgid "Error seeking in file: %s" msgstr "S'ha produït un error en cercar en el fitxer: %s" -#: ../gio/glocalfileinputstream.c:247 ../gio/glocalfileoutputstream.c:242 -#: ../gio/glocalfileoutputstream.c:337 +#: gio/glocalfileinputstream.c:247 gio/glocalfileoutputstream.c:242 +#: gio/glocalfileoutputstream.c:337 #, c-format msgid "Error closing file: %s" msgstr "S'ha produït un error en tancar el fitxer: %s" -#: ../gio/glocalfilemonitor.c:213 +#: gio/glocalfilemonitor.c:213 msgid "Unable to find default local file monitor type" msgstr "" "No s'ha pogut trobar el tipus de seguiment de fitxer local predeterminat" -#: ../gio/glocalfileoutputstream.c:188 ../gio/glocalfileoutputstream.c:221 -#: ../gio/glocalfileoutputstream.c:729 +#: gio/glocalfileoutputstream.c:188 gio/glocalfileoutputstream.c:221 +#: gio/glocalfileoutputstream.c:729 #, c-format msgid "Error writing to file: %s" msgstr "S'ha produït un error en escriure al fitxer: %s" -#: ../gio/glocalfileoutputstream.c:269 +#: gio/glocalfileoutputstream.c:269 #, c-format msgid "Error removing old backup link: %s" msgstr "" "S'ha produït un error en suprimir l'enllaç de còpia de seguretat antic: %s" -#: ../gio/glocalfileoutputstream.c:283 ../gio/glocalfileoutputstream.c:296 +#: gio/glocalfileoutputstream.c:283 gio/glocalfileoutputstream.c:296 #, c-format msgid "Error creating backup copy: %s" msgstr "S'ha produït un error en crear la còpia de seguretat: %s" -#: ../gio/glocalfileoutputstream.c:314 +#: gio/glocalfileoutputstream.c:314 #, c-format msgid "Error renaming temporary file: %s" msgstr "S'ha produït un error en canviar el nom del fitxer temporal: %s" -#: ../gio/glocalfileoutputstream.c:502 ../gio/glocalfileoutputstream.c:1063 +#: gio/glocalfileoutputstream.c:502 gio/glocalfileoutputstream.c:1063 #, c-format msgid "Error truncating file: %s" msgstr "S'ha produït un error en truncar el fitxer: %s" -#: ../gio/glocalfileoutputstream.c:563 ../gio/glocalfileoutputstream.c:616 -#: ../gio/glocalfileoutputstream.c:661 ../gio/glocalfileoutputstream.c:801 -#: ../gio/glocalfileoutputstream.c:1044 ../gio/glocalfileoutputstream.c:1143 +#: gio/glocalfileoutputstream.c:563 gio/glocalfileoutputstream.c:616 +#: gio/glocalfileoutputstream.c:661 gio/glocalfileoutputstream.c:801 +#: gio/glocalfileoutputstream.c:1044 gio/glocalfileoutputstream.c:1143 #, c-format msgid "Error opening file '%s': %s" msgstr "S'ha produït un error en obrir el fitxer «%s»: %s" -#: ../gio/glocalfileoutputstream.c:832 +#: gio/glocalfileoutputstream.c:832 msgid "Target file is a directory" msgstr "El fitxer objectiu és un directori" -#: ../gio/glocalfileoutputstream.c:837 +#: gio/glocalfileoutputstream.c:837 msgid "Target file is not a regular file" msgstr "El fitxer objectiu no és un fitxer regular" -#: ../gio/glocalfileoutputstream.c:849 +#: gio/glocalfileoutputstream.c:849 msgid "The file was externally modified" msgstr "El fitxer ha estat modificat des d'alguna aplicació externa" -#: ../gio/glocalfileoutputstream.c:1028 +#: gio/glocalfileoutputstream.c:1028 #, c-format msgid "Error removing old file: %s" msgstr "S'ha produït un error en suprimir el fitxer vell: %s" -#: ../gio/gmemoryinputstream.c:487 ../gio/gmemoryoutputstream.c:718 +#: gio/gmemoryinputstream.c:487 gio/gmemoryoutputstream.c:718 msgid "Invalid GSeekType supplied" msgstr "El GSeekType proporcionat no és vàlid" -#: ../gio/gmemoryinputstream.c:497 +#: gio/gmemoryinputstream.c:497 msgid "Invalid seek request" msgstr "La sol·licitud de cerca és invàlida" -#: ../gio/gmemoryinputstream.c:521 +#: gio/gmemoryinputstream.c:521 msgid "Cannot truncate GMemoryInputStream" msgstr "No es pot truncar el GMemoryInputStream" -#: ../gio/gmemoryoutputstream.c:468 +#: gio/gmemoryoutputstream.c:468 msgid "Memory output stream not resizable" msgstr "El flux d'eixida de memòria no és modificable" -#: ../gio/gmemoryoutputstream.c:484 +#: gio/gmemoryoutputstream.c:484 msgid "Failed to resize memory output stream" msgstr "Ha fallat el redimensionament de la memòria del flux d'eixida" -#: ../gio/gmemoryoutputstream.c:572 +#: gio/gmemoryoutputstream.c:572 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -1812,32 +1804,32 @@ msgstr "" "La quantitat de memòria necessària per processar l'escriptura és més gran " "que l'espai d'adreces disponible" -#: ../gio/gmemoryoutputstream.c:728 +#: gio/gmemoryoutputstream.c:728 msgid "Requested seek before the beginning of the stream" msgstr "S'ha sol·licitat un desplaçament abans de l'inici del flux" -#: ../gio/gmemoryoutputstream.c:737 +#: gio/gmemoryoutputstream.c:737 msgid "Requested seek beyond the end of the stream" msgstr "S'ha sol·licitat un desplaçament més enllà del final del flux" #. Translators: This is an error #. * message for mount objects that #. * don't implement unmount. -#: ../gio/gmount.c:364 +#: gio/gmount.c:364 msgid "mount doesn't implement \"unmount\"" msgstr "el muntatge no implementa el desmuntatge («unmount»)" #. Translators: This is an error #. * message for mount objects that #. * don't implement eject. -#: ../gio/gmount.c:443 +#: gio/gmount.c:443 msgid "mount doesn't implement \"eject\"" msgstr "el muntatge no implementa l'expulsió («eject»)" #. Translators: This is an error #. * message for mount objects that #. * don't implement any of unmount or unmount_with_operation. -#: ../gio/gmount.c:523 +#: gio/gmount.c:523 msgid "mount doesn't implement \"unmount\" or \"unmount_with_operation\"" msgstr "" "el muntatge no implementa el desmuntatge («unmount») o " @@ -1846,7 +1838,7 @@ msgstr "" #. Translators: This is an error #. * message for mount objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gmount.c:610 +#: gio/gmount.c:610 msgid "mount doesn't implement \"eject\" or \"eject_with_operation\"" msgstr "" "el muntatge no implementa l'expulsió («eject») o l'«eject_with_operation»" @@ -1854,273 +1846,273 @@ msgstr "" #. Translators: This is an error #. * message for mount objects that #. * don't implement remount. -#: ../gio/gmount.c:699 +#: gio/gmount.c:699 msgid "mount doesn't implement \"remount\"" msgstr "el muntatge no implementa el tornar-se a muntar («remount»)" #. Translators: This is an error #. * message for mount objects that #. * don't implement content type guessing. -#: ../gio/gmount.c:783 +#: gio/gmount.c:783 msgid "mount doesn't implement content type guessing" msgstr "el muntatge no implementa l'estimació de tipus de contingut" #. Translators: This is an error #. * message for mount objects that #. * don't implement content type guessing. -#: ../gio/gmount.c:872 +#: gio/gmount.c:872 msgid "mount doesn't implement synchronous content type guessing" msgstr "el muntatge no implementa l'estimació de tipus de contingut síncron" -#: ../gio/gnetworkaddress.c:295 +#: gio/gnetworkaddress.c:295 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "El nom de l'ordinador «%s» conté «[» però no «]»" -#: ../gio/goutputstream.c:207 ../gio/goutputstream.c:408 +#: gio/goutputstream.c:207 gio/goutputstream.c:408 msgid "Output stream doesn't implement write" msgstr "El flux d'eixida no implementa l'escriptura" -#: ../gio/goutputstream.c:369 ../gio/goutputstream.c:781 +#: gio/goutputstream.c:369 gio/goutputstream.c:781 msgid "Source stream is already closed" msgstr "El flux font ja està tancat" -#: ../gio/gresolver.c:736 +#: gio/gresolver.c:736 #, c-format msgid "Error resolving '%s': %s" msgstr "S'ha produït un error en resoldre «%s»: %s" -#: ../gio/gresolver.c:786 +#: gio/gresolver.c:786 #, c-format msgid "Error reverse-resolving '%s': %s" msgstr "S'ha produït un error en resoldre a la inversa «%s»: %s" -#: ../gio/gresolver.c:821 ../gio/gresolver.c:899 +#: gio/gresolver.c:821 gio/gresolver.c:899 #, c-format msgid "No service record for '%s'" msgstr "No hi ha cap registre de servei per a «%s»" -#: ../gio/gresolver.c:826 ../gio/gresolver.c:904 +#: gio/gresolver.c:826 gio/gresolver.c:904 #, c-format msgid "Temporarily unable to resolve '%s'" msgstr "No s'ha pogut resoldre «%s» de forma temporal" -#: ../gio/gresolver.c:831 ../gio/gresolver.c:909 +#: gio/gresolver.c:831 gio/gresolver.c:909 #, c-format msgid "Error resolving '%s'" msgstr "S'ha produït un error en resoldre «%s»" -#: ../gio/gsocket.c:277 +#: gio/gsocket.c:277 msgid "Invalid socket, not initialized" msgstr "El sòcol no és vàlid, no està inicialitzat" -#: ../gio/gsocket.c:284 +#: gio/gsocket.c:284 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "El sòcol no és vàlid, ha fallat la inicialització degut a: %s" -#: ../gio/gsocket.c:292 +#: gio/gsocket.c:292 msgid "Socket is already closed" msgstr "El sòcol ja és tancat" -#: ../gio/gsocket.c:413 +#: gio/gsocket.c:413 #, c-format msgid "creating GSocket from fd: %s" msgstr "s'està creant un GSocket a partir del descriptor de fitxer: %s" -#: ../gio/gsocket.c:447 ../gio/gsocket.c:461 ../gio/gsocket.c:1925 +#: gio/gsocket.c:447 gio/gsocket.c:461 gio/gsocket.c:1925 #, c-format msgid "Unable to create socket: %s" msgstr "No s'ha pogut crear el sòcol: %s" -#: ../gio/gsocket.c:447 +#: gio/gsocket.c:447 msgid "Unknown protocol was specified" msgstr "S'ha especificat un protocol desconegut" -#: ../gio/gsocket.c:1126 +#: gio/gsocket.c:1126 #, c-format msgid "could not get local address: %s" msgstr "no s'ha pogut obtindre l'adreça local: %s" -#: ../gio/gsocket.c:1159 +#: gio/gsocket.c:1159 #, c-format msgid "could not get remote address: %s" msgstr "no s'ha pogut obtindre l'adreça remota: %s" -#: ../gio/gsocket.c:1217 +#: gio/gsocket.c:1217 #, c-format msgid "could not listen: %s" msgstr "no s'ha pogut escoltar: %s" -#: ../gio/gsocket.c:1291 +#: gio/gsocket.c:1291 #, c-format msgid "Error binding to address: %s" msgstr "S'ha produït un error en vincular-se a l'adreça: %s" -#: ../gio/gsocket.c:1411 +#: gio/gsocket.c:1411 #, c-format msgid "Error accepting connection: %s" msgstr "S'ha produït un error en acceptar la connexió: %s" -#: ../gio/gsocket.c:1524 +#: gio/gsocket.c:1524 msgid "Error connecting: " msgstr "S'ha produït un error en connectar-se: " -#: ../gio/gsocket.c:1528 +#: gio/gsocket.c:1528 msgid "Connection in progress" msgstr "Connexió en procés" -#: ../gio/gsocket.c:1533 +#: gio/gsocket.c:1533 #, c-format msgid "Error connecting: %s" msgstr "S'ha produït un error en connectar-se: %s" -#: ../gio/gsocket.c:1573 +#: gio/gsocket.c:1573 #, c-format msgid "Unable to get pending error: %s" msgstr "No s'ha pogut obtindre l'error pendent: %s" -#: ../gio/gsocket.c:1669 +#: gio/gsocket.c:1669 #, c-format msgid "Error receiving data: %s" msgstr "S'ha produït un error en rebre les dades: %s" -#: ../gio/gsocket.c:1812 +#: gio/gsocket.c:1812 #, c-format msgid "Error sending data: %s" msgstr "S'ha produït un error en enviar les dades: %s" -#: ../gio/gsocket.c:2004 +#: gio/gsocket.c:2004 #, c-format msgid "Error closing socket: %s" msgstr "S'ha produït un error en tancar el sòcol: %s" -#: ../gio/gsocket.c:2481 +#: gio/gsocket.c:2481 #, c-format msgid "Waiting for socket condition: %s" msgstr "S'està esperant la condició del sòcol: %s" -#: ../gio/gsocket.c:2720 ../gio/gsocket.c:2801 +#: gio/gsocket.c:2720 gio/gsocket.c:2801 #, c-format msgid "Error sending message: %s" msgstr "S'ha produït un error en enviar el missatge: %s" -#: ../gio/gsocket.c:2745 +#: gio/gsocket.c:2745 msgid "GSocketControlMessage not supported on windows" msgstr "El GSocketControlMessage no està implementat a Windows" -#: ../gio/gsocket.c:3003 ../gio/gsocket.c:3141 +#: gio/gsocket.c:3003 gio/gsocket.c:3141 #, c-format msgid "Error receiving message: %s" msgstr "S'ha produït un error en rebre un missatge: %s" -#: ../gio/gsocketclient.c:521 ../gio/gsocketclient.c:770 +#: gio/gsocketclient.c:521 gio/gsocketclient.c:770 msgid "Unknown error on connect" msgstr "S'ha produït un error desconegut en connectar-se" -#: ../gio/gsocketlistener.c:192 +#: gio/gsocketlistener.c:192 msgid "Listener is already closed" msgstr "Ja està tancat el receptor de connexions" -#: ../gio/gsocketlistener.c:233 +#: gio/gsocketlistener.c:233 msgid "Added socket is closed" msgstr "El sòcol que s'ha afegit és tancat" -#: ../gio/gthemedicon.c:499 +#: gio/gthemedicon.c:499 #, c-format msgid "Can't handle version %d of GThemedIcon encoding" msgstr "No es pot gestionar la versió %d de la codificació del GThemedIcon" -#: ../gio/gunixconnection.c:151 +#: gio/gunixconnection.c:151 #, c-format msgid "Expecting 1 control message, got %d" msgstr "S'esperava un missatge de control però se n'han obtingut %d" # FIXME -#: ../gio/gunixconnection.c:164 +#: gio/gunixconnection.c:164 msgid "Unexpected type of ancillary data" msgstr "Tipus de dades extres no esperades" -#: ../gio/gunixconnection.c:182 +#: gio/gunixconnection.c:182 #, c-format msgid "Expecting one fd, but got %d\n" msgstr "S'esperava un descriptor de fitxer però se n'han obtingut %d\n" -#: ../gio/gunixconnection.c:198 +#: gio/gunixconnection.c:198 msgid "Received invalid fd" msgstr "S'ha rebut un descriptor de fitxer no vàlid" -#: ../gio/gunixinputstream.c:354 ../gio/gunixinputstream.c:374 -#: ../gio/gunixinputstream.c:452 ../gio/gunixoutputstream.c:439 +#: gio/gunixinputstream.c:354 gio/gunixinputstream.c:374 +#: gio/gunixinputstream.c:452 gio/gunixoutputstream.c:439 #, c-format msgid "Error reading from unix: %s" msgstr "S'ha produït un error en llegir des de UNIX: %s" -#: ../gio/gunixinputstream.c:407 ../gio/gunixinputstream.c:589 -#: ../gio/gunixoutputstream.c:394 ../gio/gunixoutputstream.c:545 +#: gio/gunixinputstream.c:407 gio/gunixinputstream.c:589 +#: gio/gunixoutputstream.c:394 gio/gunixoutputstream.c:545 #, c-format msgid "Error closing unix: %s" msgstr "S'ha produït un error en tancar des de UNIX: %s" -#: ../gio/gunixmounts.c:1846 ../gio/gunixmounts.c:1883 +#: gio/gunixmounts.c:1846 gio/gunixmounts.c:1883 msgid "Filesystem root" msgstr "Arrel del sistema de fitxers" -#: ../gio/gunixoutputstream.c:340 ../gio/gunixoutputstream.c:361 +#: gio/gunixoutputstream.c:340 gio/gunixoutputstream.c:361 #, c-format msgid "Error writing to unix: %s" msgstr "S'ha produït un error en escriure a UNIX: %s" -#: ../gio/gunixsocketaddress.c:182 +#: gio/gunixsocketaddress.c:182 msgid "Abstract unix domain socket addresses not supported on this system" msgstr "Este sistema no admet adreces de sòcol de domini UNIX abstractes" -#: ../gio/gvolume.c:407 +#: gio/gvolume.c:407 msgid "volume doesn't implement eject" msgstr "el volum no implementa l'expulsió" #. Translators: This is an error #. * message for volume objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gvolume.c:486 +#: gio/gvolume.c:486 msgid "volume doesn't implement eject or eject_with_operation" msgstr "el volum no implementa l'expulsió o «eject_with_operation»" -#: ../gio/gwin32appinfo.c:277 +#: gio/gwin32appinfo.c:277 msgid "Can't find application" msgstr "No es pot trobar l'aplicació" -#: ../gio/gwin32appinfo.c:300 +#: gio/gwin32appinfo.c:300 #, c-format msgid "Error launching application: %s" msgstr "S'ha produït un error en executar l'aplicació: %s" -#: ../gio/gwin32appinfo.c:336 +#: gio/gwin32appinfo.c:336 msgid "URIs not supported" msgstr "No estan implementats els URI" -#: ../gio/gwin32appinfo.c:358 +#: gio/gwin32appinfo.c:358 msgid "association changes not supported on win32" msgstr "els canvis associatius no estan implementats a win32" -#: ../gio/gwin32appinfo.c:370 +#: gio/gwin32appinfo.c:370 msgid "Association creation not supported on win32" msgstr "La creació associativa no està implementada a win32" -#: ../gio/gzlibcompressor.c:279 ../gio/gzlibdecompressor.c:250 +#: gio/gzlibcompressor.c:279 gio/gzlibdecompressor.c:250 msgid "Not enough memory" msgstr "No hi ha prou memòria" -#: ../gio/gzlibcompressor.c:286 ../gio/gzlibdecompressor.c:257 +#: gio/gzlibcompressor.c:286 gio/gzlibdecompressor.c:257 #, c-format msgid "Internal error: %s" msgstr "Error intern: %s" -#: ../gio/gzlibcompressor.c:299 ../gio/gzlibdecompressor.c:271 +#: gio/gzlibcompressor.c:299 gio/gzlibdecompressor.c:271 msgid "Need more input" msgstr "Fan falta més dades d'entrada" -#: ../gio/gzlibdecompressor.c:243 +#: gio/gzlibdecompressor.c:243 msgid "Invalid compressed data" msgstr "Les dades comprimides no són vàlides" @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-15 02:28+0100\n" "Last-Translator: Petr Kovar <pknbe@volny.cz>\n" "Language-Team: Czech <gnome-cs-list@gnome.org>\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2009-12-21 14:56+0100\n" "Last-Translator: Iestyn Pryce <dylunio@gmail.com>\n" "Language-Team: Welsh <gnome-cy@pengwyn.linux.org.uk>\n" @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-28 00:13+0100\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-27 18:38+0100\n" "Last-Translator: Ask Hjorth Larsen <asklarsen@gmail.com>\n" "Language-Team: Danish <dansk@dansk-gruppen.dk>\n" @@ -26,339 +26,337 @@ msgstr "" "Content-Transfer-Encoding: 8-bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../glib/gbookmarkfile.c:737 +#: glib/gbookmarkfile.c:737 #, c-format msgid "Unexpected attribute '%s' for element '%s'" msgstr "Uventet egenskab \"%s\" for elementet \"%s\"" -#: ../glib/gbookmarkfile.c:748 ../glib/gbookmarkfile.c:819 -#: ../glib/gbookmarkfile.c:829 ../glib/gbookmarkfile.c:936 +#: glib/gbookmarkfile.c:748 glib/gbookmarkfile.c:819 glib/gbookmarkfile.c:829 +#: glib/gbookmarkfile.c:936 #, c-format msgid "Attribute '%s' of element '%s' not found" msgstr "Egenskaben \"%s\" for elementet \"%s\" blev ikke fundet" -#: ../glib/gbookmarkfile.c:1106 ../glib/gbookmarkfile.c:1171 -#: ../glib/gbookmarkfile.c:1235 ../glib/gbookmarkfile.c:1245 +#: glib/gbookmarkfile.c:1106 glib/gbookmarkfile.c:1171 +#: glib/gbookmarkfile.c:1235 glib/gbookmarkfile.c:1245 #, c-format msgid "Unexpected tag '%s', tag '%s' expected" msgstr "Uventet mærke \"%s\", forventede mærket \"%s\"" -#: ../glib/gbookmarkfile.c:1131 ../glib/gbookmarkfile.c:1145 -#: ../glib/gbookmarkfile.c:1213 ../glib/gbookmarkfile.c:1265 +#: glib/gbookmarkfile.c:1131 glib/gbookmarkfile.c:1145 +#: glib/gbookmarkfile.c:1213 glib/gbookmarkfile.c:1265 #, c-format msgid "Unexpected tag '%s' inside '%s'" msgstr "Uventet mærke \"%s\" inden i \"%s\"" -#: ../glib/gbookmarkfile.c:1793 +#: glib/gbookmarkfile.c:1793 msgid "No valid bookmark file found in data dirs" msgstr "Ingen gyldig bogmærkefil blev fundet i datakatalogerne" -#: ../glib/gbookmarkfile.c:1994 +#: glib/gbookmarkfile.c:1994 #, c-format msgid "A bookmark for URI '%s' already exists" msgstr "Et bogmærke for URI'en \"%s\" findes allerede" -#: ../glib/gbookmarkfile.c:2040 ../glib/gbookmarkfile.c:2198 -#: ../glib/gbookmarkfile.c:2283 ../glib/gbookmarkfile.c:2363 -#: ../glib/gbookmarkfile.c:2448 ../glib/gbookmarkfile.c:2531 -#: ../glib/gbookmarkfile.c:2609 ../glib/gbookmarkfile.c:2688 -#: ../glib/gbookmarkfile.c:2730 ../glib/gbookmarkfile.c:2827 -#: ../glib/gbookmarkfile.c:2953 ../glib/gbookmarkfile.c:3143 -#: ../glib/gbookmarkfile.c:3219 ../glib/gbookmarkfile.c:3384 -#: ../glib/gbookmarkfile.c:3473 ../glib/gbookmarkfile.c:3563 -#: ../glib/gbookmarkfile.c:3691 +#: glib/gbookmarkfile.c:2040 glib/gbookmarkfile.c:2198 +#: glib/gbookmarkfile.c:2283 glib/gbookmarkfile.c:2363 +#: glib/gbookmarkfile.c:2448 glib/gbookmarkfile.c:2531 +#: glib/gbookmarkfile.c:2609 glib/gbookmarkfile.c:2688 +#: glib/gbookmarkfile.c:2730 glib/gbookmarkfile.c:2827 +#: glib/gbookmarkfile.c:2953 glib/gbookmarkfile.c:3143 +#: glib/gbookmarkfile.c:3219 glib/gbookmarkfile.c:3384 +#: glib/gbookmarkfile.c:3473 glib/gbookmarkfile.c:3563 +#: glib/gbookmarkfile.c:3691 #, c-format msgid "No bookmark found for URI '%s'" msgstr "Der blev intet bogmærke fundet for URI'en \"%s\"" -#: ../glib/gbookmarkfile.c:2372 +#: glib/gbookmarkfile.c:2372 #, c-format msgid "No MIME type defined in the bookmark for URI '%s'" msgstr "Ingen MIME-type er defineret i bogmærket for URI'en \"%s\"" -#: ../glib/gbookmarkfile.c:2457 +#: glib/gbookmarkfile.c:2457 #, c-format msgid "No private flag has been defined in bookmark for URI '%s'" msgstr "Intet privat flag er defineret i bogmærket for URI'en \"%s\"" -#: ../glib/gbookmarkfile.c:2836 +#: glib/gbookmarkfile.c:2836 #, c-format msgid "No groups set in bookmark for URI '%s'" msgstr "Ingen grupper er sat i bogmærket for URI'en \"%s\"" -#: ../glib/gbookmarkfile.c:3237 ../glib/gbookmarkfile.c:3394 +#: glib/gbookmarkfile.c:3237 glib/gbookmarkfile.c:3394 #, c-format msgid "No application with name '%s' registered a bookmark for '%s'" msgstr "Intet program med navnet \"%s\" har registreret et bogmærke for \"%s\"" -#: ../glib/gbookmarkfile.c:3417 +#: glib/gbookmarkfile.c:3417 #, c-format msgid "Failed to expand exec line '%s' with URI '%s'" msgstr "Kunne ikke udvide eksekveringslinjen \"%s\" med URI'en \"%s\"" -#: ../glib/gconvert.c:437 ../glib/gconvert.c:515 ../glib/giochannel.c:1404 -#: ../gio/gcharsetconverter.c:459 +#: glib/gconvert.c:437 glib/gconvert.c:515 glib/giochannel.c:1404 +#: gio/gcharsetconverter.c:459 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "Konvertering fra tegnsæt \"%s\" til \"%s\" er ikke understøttet" -#: ../glib/gconvert.c:441 ../glib/gconvert.c:519 -#: ../gio/gcharsetconverter.c:463 +#: glib/gconvert.c:441 glib/gconvert.c:519 gio/gcharsetconverter.c:463 #, c-format msgid "Could not open converter from '%s' to '%s'" msgstr "Kunne ikke konvertere fra \"%s\" til \"%s\"" -#: ../glib/gconvert.c:638 ../glib/gconvert.c:1031 ../glib/giochannel.c:1576 -#: ../glib/giochannel.c:1618 ../glib/giochannel.c:2462 ../glib/gutf8.c:981 -#: ../glib/gutf8.c:1436 ../gio/gcharsetconverter.c:346 +#: glib/gconvert.c:638 glib/gconvert.c:1031 glib/giochannel.c:1576 +#: glib/giochannel.c:1618 glib/giochannel.c:2462 glib/gutf8.c:981 +#: glib/gutf8.c:1436 gio/gcharsetconverter.c:346 msgid "Invalid byte sequence in conversion input" msgstr "Ugyldig bytesekvens i konverteringsinddata" -#: ../glib/gconvert.c:646 ../glib/gconvert.c:956 ../glib/giochannel.c:1583 -#: ../glib/giochannel.c:2474 ../gio/gcharsetconverter.c:351 +#: glib/gconvert.c:646 glib/gconvert.c:956 glib/giochannel.c:1583 +#: glib/giochannel.c:2474 gio/gcharsetconverter.c:351 #, c-format msgid "Error during conversion: %s" msgstr "Fejl under konvertering: %s" -#: ../glib/gconvert.c:678 ../glib/gutf8.c:977 ../glib/gutf8.c:1187 -#: ../glib/gutf8.c:1328 ../glib/gutf8.c:1432 +#: glib/gconvert.c:678 glib/gutf8.c:977 glib/gutf8.c:1187 glib/gutf8.c:1328 +#: glib/gutf8.c:1432 msgid "Partial character sequence at end of input" msgstr "Delvis tegnsekvens ved slutningen af inddata" -#: ../glib/gconvert.c:928 +#: glib/gconvert.c:928 #, c-format msgid "Cannot convert fallback '%s' to codeset '%s'" msgstr "Kan ikke konvertere tilbagefaldet \"%s\" til tegnsæt \"%s\"" -#: ../glib/gconvert.c:1751 +#: glib/gconvert.c:1751 #, c-format msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" msgstr "URI'en \"%s\" er ikke en absolut URI, ved brug af \"fil\"-metoden" -#: ../glib/gconvert.c:1761 +#: glib/gconvert.c:1761 #, c-format msgid "The local file URI '%s' may not include a '#'" msgstr "Den lokale fil-URI \"%s\" må ikke indeholde en \"#\"" -#: ../glib/gconvert.c:1778 +#: glib/gconvert.c:1778 #, c-format msgid "The URI '%s' is invalid" msgstr "URI'en \"%s\" er ugyldig" -#: ../glib/gconvert.c:1790 +#: glib/gconvert.c:1790 #, c-format msgid "The hostname of the URI '%s' is invalid" msgstr "Værtsnavnet for URI'en \"%s\" er ugyldig" -#: ../glib/gconvert.c:1806 +#: glib/gconvert.c:1806 #, c-format msgid "The URI '%s' contains invalidly escaped characters" msgstr "URI'en \"%s\" indeholder ugyldigt beskyttede tegn" -#: ../glib/gconvert.c:1901 +#: glib/gconvert.c:1901 #, c-format msgid "The pathname '%s' is not an absolute path" msgstr "Stinavnet \"%s\" er ikke en absolut sti" -#: ../glib/gconvert.c:1911 +#: glib/gconvert.c:1911 msgid "Invalid hostname" msgstr "Ugyldigt værtsnavn" -#: ../glib/gdir.c:112 ../glib/gdir.c:135 +#: glib/gdir.c:112 glib/gdir.c:135 #, c-format msgid "Error opening directory '%s': %s" msgstr "Fejl ved åbning af mappen \"%s\": %s" -#: ../glib/gfileutils.c:536 ../glib/gfileutils.c:624 +#: glib/gfileutils.c:536 glib/gfileutils.c:624 #, c-format msgid "Could not allocate %lu bytes to read file \"%s\"" msgstr "Kunne ikke allokere %lu byte til at læse filen \"%s\"" -#: ../glib/gfileutils.c:551 +#: glib/gfileutils.c:551 #, c-format msgid "Error reading file '%s': %s" msgstr "Fejl ved læsning af filen \"%s\": %s" -#: ../glib/gfileutils.c:565 +#: glib/gfileutils.c:565 #, c-format msgid "File \"%s\" is too large" msgstr "Filen \"%s\" er for stor" -#: ../glib/gfileutils.c:648 +#: glib/gfileutils.c:648 #, c-format msgid "Failed to read from file '%s': %s" msgstr "Kunne ikke læse fra filen \"%s\": %s" -#: ../glib/gfileutils.c:699 ../glib/gfileutils.c:786 +#: glib/gfileutils.c:699 glib/gfileutils.c:786 #, c-format msgid "Failed to open file '%s': %s" msgstr "Kunne ikke åbne filen \"%s\": %s" -#: ../glib/gfileutils.c:716 ../glib/gmappedfile.c:170 +#: glib/gfileutils.c:716 glib/gmappedfile.c:170 #, c-format msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgstr "Kunne ikke læse egenskaber for filen \"%s\": fstat() mislykkedes: %s" -#: ../glib/gfileutils.c:750 +#: glib/gfileutils.c:750 #, c-format msgid "Failed to open file '%s': fdopen() failed: %s" msgstr "Kunne ikke åbne filen \"%s\": fdopen() mislykkedes: %s" -#: ../glib/gfileutils.c:858 +#: glib/gfileutils.c:858 #, c-format 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" -#: ../glib/gfileutils.c:900 ../glib/gfileutils.c:1366 +#: glib/gfileutils.c:900 glib/gfileutils.c:1366 #, c-format msgid "Failed to create file '%s': %s" msgstr "Fejl under oprettelse af filen \"%s\": %s" -#: ../glib/gfileutils.c:914 +#: glib/gfileutils.c:914 #, c-format msgid "Failed to open file '%s' for writing: fdopen() failed: %s" msgstr "Kunne ikke åbne filen \"%s\" til skrivning: fdopen() mislykkedes: %s" -#: ../glib/gfileutils.c:939 +#: glib/gfileutils.c:939 #, c-format msgid "Failed to write file '%s': fwrite() failed: %s" msgstr "Kunne ikke skrive filen \"%s\": fwrite() mislykkedes: %s" -#: ../glib/gfileutils.c:958 +#: glib/gfileutils.c:958 #, c-format msgid "Failed to write file '%s': fflush() failed: %s" msgstr "Kunne ikke skrive filen \"%s\": fflush() mislykkedes: %s" -#: ../glib/gfileutils.c:987 +#: glib/gfileutils.c:987 #, c-format msgid "Failed to write file '%s': fsync() failed: %s" msgstr "Kunne ikke skrive filen \"%s\": fsync() mislykkedes: %s" -#: ../glib/gfileutils.c:1006 +#: glib/gfileutils.c:1006 #, c-format msgid "Failed to close file '%s': fclose() failed: %s" msgstr "Kunne ikke lukke filen \"%s\": fclose() mislykkedes: %s" -#: ../glib/gfileutils.c:1124 +#: glib/gfileutils.c:1124 #, c-format msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgstr "" "Den eksisterende fil \"%s\" kunne ikke fjernes: g_unlink() mislykkedes: %s" -#: ../glib/gfileutils.c:1328 +#: glib/gfileutils.c:1328 #, c-format msgid "Template '%s' invalid, should not contain a '%s'" msgstr "Skabelonen \"%s\" er ugyldig, må ikke indeholde en \"%s\"" -#: ../glib/gfileutils.c:1341 +#: glib/gfileutils.c:1341 #, c-format msgid "Template '%s' doesn't contain XXXXXX" msgstr "Skabelonen \"%s\" indeholder ikke XXXXXX" -#: ../glib/gfileutils.c:1774 +#: glib/gfileutils.c:1774 #, c-format msgid "%u byte" msgid_plural "%u bytes" msgstr[0] "%u byte" msgstr[1] "%u bytes" -#: ../glib/gfileutils.c:1782 +#: glib/gfileutils.c:1782 #, c-format msgid "%.1f KB" msgstr "%.1f KB" -#: ../glib/gfileutils.c:1787 +#: glib/gfileutils.c:1787 #, c-format msgid "%.1f MB" msgstr "%.1f MB" -#: ../glib/gfileutils.c:1792 +#: glib/gfileutils.c:1792 #, c-format msgid "%.1f GB" msgstr "%.1f GB" -#: ../glib/gfileutils.c:1797 +#: glib/gfileutils.c:1797 #, c-format msgid "%.1f TB" msgstr "%.1f TB" -#: ../glib/gfileutils.c:1802 +#: glib/gfileutils.c:1802 #, c-format msgid "%.1f PB" msgstr "%.1f PB" -#: ../glib/gfileutils.c:1807 +#: glib/gfileutils.c:1807 #, c-format msgid "%.1f EB" msgstr "%.1f EB" -#: ../glib/gfileutils.c:1850 +#: glib/gfileutils.c:1850 #, c-format msgid "Failed to read the symbolic link '%s': %s" msgstr "Kunne ikke læse den symbolske henvisning \"%s\": %s" -#: ../glib/gfileutils.c:1871 +#: glib/gfileutils.c:1871 msgid "Symbolic links not supported" msgstr "Symbolske henvisninger er ikke understøttet" -#: ../glib/giochannel.c:1408 +#: glib/giochannel.c:1408 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "Kunne ikke åbne konverterer fra \"%s\" til \"%s\": %s" -#: ../glib/giochannel.c:1753 +#: glib/giochannel.c:1753 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "Kan ikke foretage en rå læsning i g_io_channel_read_line_string" -#: ../glib/giochannel.c:1800 ../glib/giochannel.c:2058 -#: ../glib/giochannel.c:2145 +#: glib/giochannel.c:1800 glib/giochannel.c:2058 glib/giochannel.c:2145 msgid "Leftover unconverted data in read buffer" msgstr "Resterende ukonverterede data i læsemellemlager" -#: ../glib/giochannel.c:1881 ../glib/giochannel.c:1958 +#: glib/giochannel.c:1881 glib/giochannel.c:1958 msgid "Channel terminates in a partial character" msgstr "Kanal afslutter med et ufuldendt tegn" -#: ../glib/giochannel.c:1944 +#: glib/giochannel.c:1944 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "Kan ikke foretage en rå læsning i g_io_channel_read_to_end" -#: ../glib/gmappedfile.c:151 +#: glib/gmappedfile.c:151 #, c-format msgid "Failed to open file '%s': open() failed: %s" msgstr "Kunne ikke åbne filen \"%s\": open() mislykkedes: %s" -#: ../glib/gmappedfile.c:230 +#: glib/gmappedfile.c:230 #, c-format msgid "Failed to map file '%s': mmap() failed: %s" msgstr "Kunne ikke kortlægge filen \"%s\": mmap() mislykkedes: %s" -#: ../glib/gmarkup.c:303 ../glib/gmarkup.c:343 +#: glib/gmarkup.c:303 glib/gmarkup.c:343 #, c-format msgid "Error on line %d char %d: " msgstr "Fejl på linje %d tegn %d: " -#: ../glib/gmarkup.c:363 ../glib/gmarkup.c:441 +#: glib/gmarkup.c:363 glib/gmarkup.c:441 #, c-format msgid "Invalid UTF-8 encoded text in name - not valid '%s'" msgstr "Ugyldig UTF-8-kodet tekst i navnet - ugyldig \"%s\"" -#: ../glib/gmarkup.c:374 +#: glib/gmarkup.c:374 #, c-format msgid "'%s' is not a valid name " msgstr "\"%s\" er ikke et gyldigt navn " -#: ../glib/gmarkup.c:390 +#: glib/gmarkup.c:390 #, c-format msgid "'%s' is not a valid name: '%c' " msgstr "\"%s\" er ikke et gyldigt navn: \"%c\" " -#: ../glib/gmarkup.c:494 +#: glib/gmarkup.c:494 #, c-format msgid "Error on line %d: %s" msgstr "Fejl på linje %d: %s" -#: ../glib/gmarkup.c:578 +#: glib/gmarkup.c:578 #, c-format msgid "" "Failed to parse '%-.*s', which should have been a digit inside a character " @@ -367,7 +365,7 @@ msgstr "" "Fejl ved fortolkning af \"%-.*s\" som skulle have været et ciffer i en " "tegnreference (ê for eksempel) - måske er cifret for stort" -#: ../glib/gmarkup.c:590 +#: glib/gmarkup.c:590 msgid "" "Character reference did not end with a semicolon; most likely you used an " "ampersand character without intending to start an entity - escape ampersand " @@ -377,24 +375,24 @@ msgstr "" "og-tegn uden at det var beregnet på at starte en entitet - undgå dette ved " "at bruge & i stedet" -#: ../glib/gmarkup.c:616 +#: glib/gmarkup.c:616 #, c-format msgid "Character reference '%-.*s' does not encode a permitted character" msgstr "Tegnreferencen \"%-.*s\" koder ikke et tilladt tegn" -#: ../glib/gmarkup.c:654 +#: glib/gmarkup.c:654 msgid "" "Empty entity '&;' seen; valid entities are: & " < > '" msgstr "" "Tom entitet \"&;\" fundet; gyldige entiteter er: & " < > " "'" -#: ../glib/gmarkup.c:662 +#: glib/gmarkup.c:662 #, c-format msgid "Entity name '%-.*s' is not known" msgstr "Entitetsnavnet \"%-.*s\" er ukendt" -#: ../glib/gmarkup.c:667 +#: glib/gmarkup.c:667 msgid "" "Entity did not end with a semicolon; most likely you used an ampersand " "character without intending to start an entity - escape ampersand as &" @@ -403,11 +401,11 @@ msgstr "" "tegn uden at det var beregnet på at starte en entitet - dette undgås ved at " "bruge & i stedet" -#: ../glib/gmarkup.c:1014 +#: glib/gmarkup.c:1014 msgid "Document must begin with an element (e.g. <book>)" msgstr "Dokumentet skal begynde med et element (f.eks <book>)" -#: ../glib/gmarkup.c:1054 +#: glib/gmarkup.c:1054 #, c-format msgid "" "'%s' is not a valid character following a '<' character; it may not begin an " @@ -416,7 +414,7 @@ msgstr "" "\"%s\" er ikke et gyldigt tegn efter et \"<\"-tegn; det kan ikke være " "begyndelsen på et elementnavn" -#: ../glib/gmarkup.c:1122 +#: glib/gmarkup.c:1122 #, c-format msgid "" "Odd character '%s', expected a '>' character to end the empty-element tag '%" @@ -425,7 +423,7 @@ msgstr "" "Mærkeligt tegn \"%s\", forventede et \">\"-tegn for at afslutte det tomme " "elementmærke \"%s\"" -#: ../glib/gmarkup.c:1206 +#: glib/gmarkup.c:1206 #, c-format msgid "" "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" @@ -433,7 +431,7 @@ msgstr "" "Mærkeligt tegn \"%s\", forventede et \"=\" efter egenskabsnavn \"%s\" for " "elementet \"%s\"" -#: ../glib/gmarkup.c:1247 +#: glib/gmarkup.c:1247 #, c-format msgid "" "Odd character '%s', expected a '>' or '/' character to end the start tag of " @@ -444,7 +442,7 @@ msgstr "" "begyndelsesmærket til elementet \"%s\" eller alternativt en egenskab; måske " "brugte du et ugyldigt tegn i egenskabsnavnet" -#: ../glib/gmarkup.c:1291 +#: glib/gmarkup.c:1291 #, c-format msgid "" "Odd character '%s', expected an open quote mark after the equals sign when " @@ -453,7 +451,7 @@ msgstr "" "Mærkeligt tegn \"%s\", forventede et åbningsanførselstegn efter " "lighedstegnet når værdien for egenskaben \"%s\" for elementet \"%s\" angives" -#: ../glib/gmarkup.c:1425 +#: glib/gmarkup.c:1425 #, c-format msgid "" "'%s' is not a valid character following the characters '</'; '%s' may not " @@ -462,7 +460,7 @@ msgstr "" "\"%s\" er ikke et gyldigt tegn efter tegnene \"</\"; \"%s\" er måske ikke " "begyndelsen på et elementnavn" -#: ../glib/gmarkup.c:1461 +#: glib/gmarkup.c:1461 #, c-format msgid "" "'%s' is not a valid character following the close element name '%s'; the " @@ -471,25 +469,25 @@ msgstr "" "\"%s\" er ikke et gyldigt tegn efter det lukkende elementnavn \"%s\"; " "tilladt tegn er \">\"" -#: ../glib/gmarkup.c:1472 +#: glib/gmarkup.c:1472 #, c-format msgid "Element '%s' was closed, no element is currently open" msgstr "Element \"%s\" blev lukket, ingen åbne elementer nu" -#: ../glib/gmarkup.c:1481 +#: glib/gmarkup.c:1481 #, c-format msgid "Element '%s' was closed, but the currently open element is '%s'" msgstr "Element \"%s\" blev lukket, men aktivt åbent element er \"%s\"" -#: ../glib/gmarkup.c:1648 +#: glib/gmarkup.c:1648 msgid "Document was empty or contained only whitespace" msgstr "Dokumentet var tomt eller indeholdt kun blanke tegn" -#: ../glib/gmarkup.c:1662 +#: glib/gmarkup.c:1662 msgid "Document ended unexpectedly just after an open angle bracket '<'" msgstr "Dokumentet sluttede uventet lige efter en åben vinkelparantes \"<\"" -#: ../glib/gmarkup.c:1670 ../glib/gmarkup.c:1715 +#: glib/gmarkup.c:1670 glib/gmarkup.c:1715 #, c-format msgid "" "Document ended unexpectedly with elements still open - '%s' was the last " @@ -498,7 +496,7 @@ msgstr "" "Dokumentet sluttede uventet med åbne elementer - \"%s\" var sidste åbne " "element" -#: ../glib/gmarkup.c:1678 +#: glib/gmarkup.c:1678 #, c-format msgid "" "Document ended unexpectedly, expected to see a close angle bracket ending " @@ -507,19 +505,19 @@ msgstr "" "Dokumentet sluttede uventet, forventede at se en vinkelparantes for at " "afslutte det sidste mærke <%s/>" -#: ../glib/gmarkup.c:1684 +#: glib/gmarkup.c:1684 msgid "Document ended unexpectedly inside an element name" msgstr "Dokumentet sluttede uventet inden i et elementnavn" -#: ../glib/gmarkup.c:1690 +#: glib/gmarkup.c:1690 msgid "Document ended unexpectedly inside an attribute name" msgstr "Dokumentet sluttede uventet inden i et egenskabsnavn" -#: ../glib/gmarkup.c:1695 +#: glib/gmarkup.c:1695 msgid "Document ended unexpectedly inside an element-opening tag." msgstr "Dokumentet sluttede uventet inden i et element-åbnende mærke." -#: ../glib/gmarkup.c:1701 +#: glib/gmarkup.c:1701 msgid "" "Document ended unexpectedly after the equals sign following an attribute " "name; no attribute value" @@ -527,131 +525,131 @@ msgstr "" "Dokumentet sluttede uventet efter lighedstegnet efter et egenskabsnavn; " "ingen egenskabsværdi" -#: ../glib/gmarkup.c:1708 +#: glib/gmarkup.c:1708 msgid "Document ended unexpectedly while inside an attribute value" msgstr "Dokumentet sluttede uventet inden i en egenskabsværdi" -#: ../glib/gmarkup.c:1724 +#: glib/gmarkup.c:1724 #, c-format msgid "Document ended unexpectedly inside the close tag for element '%s'" msgstr "" "Dokumentet sluttede uventet inden i lukningsmærket for elementet \"%s\"" -#: ../glib/gmarkup.c:1730 +#: glib/gmarkup.c:1730 msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "" "Dokumentet sluttede uventet inden i en kommentar eller behandlingsinstruktion" -#: ../glib/gregex.c:131 +#: glib/gregex.c:131 msgid "corrupted object" msgstr "ødelagt objekt" -#: ../glib/gregex.c:133 +#: glib/gregex.c:133 msgid "internal error or corrupted object" msgstr "intern fejl eller ødelagt objekt" -#: ../glib/gregex.c:135 +#: glib/gregex.c:135 msgid "out of memory" msgstr "utilstrækkelig hukommelse" -#: ../glib/gregex.c:140 +#: glib/gregex.c:140 msgid "backtracking limit reached" msgstr "grænse for bagudlæsning nået" -#: ../glib/gregex.c:152 ../glib/gregex.c:160 +#: glib/gregex.c:152 glib/gregex.c:160 msgid "the pattern contains items not supported for partial matching" msgstr "" "mønsteret indeholder elementer der ikke understøttes i forbindelse med " "partiel træfning" -#: ../glib/gregex.c:154 ../gio/glocalfile.c:2115 +#: glib/gregex.c:154 gio/glocalfile.c:2115 msgid "internal error" msgstr "intern fejl" -#: ../glib/gregex.c:162 +#: glib/gregex.c:162 msgid "back references as conditions are not supported for partial matching" msgstr "" "baglæns referencer som betingelser understøttes ikke i forbindelse med " "partiel træfning" -#: ../glib/gregex.c:171 +#: glib/gregex.c:171 msgid "recursion limit reached" msgstr "rekursionsgrænse nået" -#: ../glib/gregex.c:173 +#: glib/gregex.c:173 msgid "workspace limit for empty substrings reached" msgstr "arbejdsområdets grænse for tomme delstrenge er blevet nået" -#: ../glib/gregex.c:175 +#: glib/gregex.c:175 msgid "invalid combination of newline flags" msgstr "ugyldig kombination af linjeskift-flag" -#: ../glib/gregex.c:179 +#: glib/gregex.c:179 msgid "unknown error" msgstr "ukendt fejl" -#: ../glib/gregex.c:199 +#: glib/gregex.c:199 msgid "\\ at end of pattern" msgstr "\\ sidst i mønster" -#: ../glib/gregex.c:202 +#: glib/gregex.c:202 msgid "\\c at end of pattern" msgstr "\\c sidst i mønster" -#: ../glib/gregex.c:205 +#: glib/gregex.c:205 msgid "unrecognized character follows \\" msgstr "ukendt tegn følger \\" -#: ../glib/gregex.c:212 +#: glib/gregex.c:212 msgid "case-changing escapes (\\l, \\L, \\u, \\U) are not allowed here" msgstr "" "versal-ændrende undvigesekvenser (\\l, \\L, \\u, \\U) er ikke tilladt her" -#: ../glib/gregex.c:215 +#: glib/gregex.c:215 msgid "numbers out of order in {} quantifier" msgstr "tal er ude af rækkefølge i {}-kvantor" -#: ../glib/gregex.c:218 +#: glib/gregex.c:218 msgid "number too big in {} quantifier" msgstr "for stort tal i {}-kvantor" -#: ../glib/gregex.c:221 +#: glib/gregex.c:221 msgid "missing terminating ] for character class" msgstr "manglende afsluttende ] for tegnklasse" -#: ../glib/gregex.c:224 +#: glib/gregex.c:224 msgid "invalid escape sequence in character class" msgstr "ugyldig undvigesekvens i tegnklasse" -#: ../glib/gregex.c:227 +#: glib/gregex.c:227 msgid "range out of order in character class" msgstr "følgen er ikke ordnet i tegnklassen" -#: ../glib/gregex.c:230 +#: glib/gregex.c:230 msgid "nothing to repeat" msgstr "intet at gentage" -#: ../glib/gregex.c:233 +#: glib/gregex.c:233 msgid "unrecognized character after (?" msgstr "ukendt tegn efter (?" -#: ../glib/gregex.c:237 +#: glib/gregex.c:237 msgid "unrecognized character after (?<" msgstr "ukendt tegn efter (?<" -#: ../glib/gregex.c:241 +#: glib/gregex.c:241 msgid "unrecognized character after (?P" msgstr "ukendt tegn efter (?P" -#: ../glib/gregex.c:244 +#: glib/gregex.c:244 msgid "POSIX named classes are supported only within a class" msgstr "POSIX-navngivne klasser understøttes kun inden i en klasse" -#: ../glib/gregex.c:247 +#: glib/gregex.c:247 msgid "missing terminating )" msgstr "manglende afsluttende )" -#: ../glib/gregex.c:251 +#: glib/gregex.c:251 msgid ") without opening (" msgstr ") uden åbnende (" @@ -659,271 +657,269 @@ msgstr ") uden åbnende (" #. translators: '(?R' and '(?[+-]digits' are both meant as (groups of) #. * sequences here, '(?-54' would be an example for the second group. #. -#: ../glib/gregex.c:258 +#: glib/gregex.c:258 msgid "(?R or (?[+-]digits must be followed by )" msgstr "(?R eller (?[+-]cifre skal efterfølges af )" -#: ../glib/gregex.c:261 +#: glib/gregex.c:261 msgid "reference to non-existent subpattern" msgstr "reference til ikke-eksisterende undermønster" -#: ../glib/gregex.c:264 +#: glib/gregex.c:264 msgid "missing ) after comment" msgstr "manglende ) efter kommentar" -#: ../glib/gregex.c:267 +#: glib/gregex.c:267 msgid "regular expression too large" msgstr "regulært udtryk for stort" -#: ../glib/gregex.c:270 +#: glib/gregex.c:270 msgid "failed to get memory" msgstr "kunne ikke hente hukommelse" # ??? -#: ../glib/gregex.c:273 +#: glib/gregex.c:273 msgid "lookbehind assertion is not fixed length" msgstr "lookbehind-assert-erklæring har ikke fast længde" -#: ../glib/gregex.c:276 +#: glib/gregex.c:276 msgid "malformed number or name after (?(" msgstr "fejlformet tal eller navn efter (?(" -#: ../glib/gregex.c:279 +#: glib/gregex.c:279 msgid "conditional group contains more than two branches" msgstr "betinget gruppe indeholder mere end to grene" -#: ../glib/gregex.c:282 +#: glib/gregex.c:282 msgid "assertion expected after (?(" msgstr "assert-erklæring forventet efter (?(" -#: ../glib/gregex.c:285 +#: glib/gregex.c:285 msgid "unknown POSIX class name" msgstr "ukendt POSIX-klassenavn" -#: ../glib/gregex.c:288 +#: glib/gregex.c:288 msgid "POSIX collating elements are not supported" msgstr "POSIX-arrangerende elementer understøttes ikke" -#: ../glib/gregex.c:291 +#: glib/gregex.c:291 msgid "character value in \\x{...} sequence is too large" msgstr "tegnværdi i \\x{..}-sekvens er for stor" -#: ../glib/gregex.c:294 +#: glib/gregex.c:294 msgid "invalid condition (?(0)" msgstr "ugyldig betingelse (?(0)" -#: ../glib/gregex.c:297 +#: glib/gregex.c:297 msgid "\\C not allowed in lookbehind assertion" msgstr "\\C ikke tillad i lookbehind-assert-erklæring" -#: ../glib/gregex.c:300 +#: glib/gregex.c:300 msgid "recursive call could loop indefinitely" msgstr "rekursive kald kan danne uendelig løkke" -#: ../glib/gregex.c:303 +#: glib/gregex.c:303 msgid "missing terminator in subpattern name" msgstr "manglende terminator i undermønsters navn" -#: ../glib/gregex.c:306 +#: glib/gregex.c:306 msgid "two named subpatterns have the same name" msgstr "to navngivne undermønstre har samme navn" -#: ../glib/gregex.c:309 +#: glib/gregex.c:309 msgid "malformed \\P or \\p sequence" msgstr "fejlformet \\P- eller \\p-sekvens" -#: ../glib/gregex.c:312 +#: glib/gregex.c:312 msgid "unknown property name after \\P or \\p" msgstr "ukendt egenskabsnavn efter \\P eller \\p" -#: ../glib/gregex.c:315 +#: glib/gregex.c:315 msgid "subpattern name is too long (maximum 32 characters)" msgstr "undermønsters navn er for langt (maksimal 32 tegn)" -#: ../glib/gregex.c:318 +#: glib/gregex.c:318 msgid "too many named subpatterns (maximum 10,000)" msgstr "for mange navngivne undermønstre (maksimalt 10.000)" -#: ../glib/gregex.c:321 +#: glib/gregex.c:321 msgid "octal value is greater than \\377" msgstr "oktal værdi er større end \\377" -#: ../glib/gregex.c:324 +#: glib/gregex.c:324 msgid "DEFINE group contains more than one branch" msgstr "DEFINE-gruppe indeholder mere end én gren" -#: ../glib/gregex.c:327 +#: glib/gregex.c:327 msgid "repeating a DEFINE group is not allowed" msgstr "gentagelse af en DEFINE-gruppe er ikke tilladt" -#: ../glib/gregex.c:330 +#: glib/gregex.c:330 msgid "inconsistent NEWLINE options" msgstr "inkonsistente NEWLINE-indstillinger" -#: ../glib/gregex.c:333 +#: glib/gregex.c:333 msgid "" "\\g is not followed by a braced name or an optionally braced non-zero number" msgstr "" "\\g følges ikke af et navn indeholdt i klammer eller et tal forskelligt fra " "nul eventuelt indeholdt i klammer" -#: ../glib/gregex.c:338 +#: glib/gregex.c:338 msgid "unexpected repeat" msgstr "uventet gentagelse" -#: ../glib/gregex.c:342 +#: glib/gregex.c:342 msgid "code overflow" msgstr "kodeoverløb" -#: ../glib/gregex.c:346 +#: glib/gregex.c:346 msgid "overran compiling workspace" msgstr "overløb kompileringsarbejdspladsen" -#: ../glib/gregex.c:350 +#: glib/gregex.c:350 msgid "previously-checked referenced subpattern not found" msgstr "tidligere kontrolleret, refereret undermønster blev ikke fundet" -#: ../glib/gregex.c:522 ../glib/gregex.c:1603 +#: glib/gregex.c:522 glib/gregex.c:1603 #, c-format msgid "Error while matching regular expression %s: %s" msgstr "Fejl under søgning med det regulære udtryk %s: %s" -#: ../glib/gregex.c:1094 +#: glib/gregex.c:1094 msgid "PCRE library is compiled without UTF8 support" msgstr "PCRE-biblioteket er kompileret uden UTF8-understøttelse" -#: ../glib/gregex.c:1103 +#: glib/gregex.c:1103 msgid "PCRE library is compiled without UTF8 properties support" msgstr "PCRE-biblioteket er kompileret uden understøttelse af UTF8-egenskaber" -#: ../glib/gregex.c:1157 +#: glib/gregex.c:1157 #, c-format msgid "Error while compiling regular expression %s at char %d: %s" msgstr "Fejl under kompilering af det regulære udtryk %s ved tegn %d: %s" -#: ../glib/gregex.c:1193 +#: glib/gregex.c:1193 #, c-format msgid "Error while optimizing regular expression %s: %s" msgstr "Fejl under optimering af det regulære udtryk %s: %s" -#: ../glib/gregex.c:2031 +#: glib/gregex.c:2031 msgid "hexadecimal digit or '}' expected" msgstr "hexadecimalt ciffer eller \"}\" forventet" -#: ../glib/gregex.c:2047 +#: glib/gregex.c:2047 msgid "hexadecimal digit expected" msgstr "hexadecimalt ciffer forventet" -#: ../glib/gregex.c:2087 +#: glib/gregex.c:2087 msgid "missing '<' in symbolic reference" msgstr "manglende \"<\" i symbolsk reference" -#: ../glib/gregex.c:2096 +#: glib/gregex.c:2096 msgid "unfinished symbolic reference" msgstr "ufærdig symbolsk reference" -#: ../glib/gregex.c:2103 +#: glib/gregex.c:2103 msgid "zero-length symbolic reference" msgstr "symbolsk reference med længde nul" -#: ../glib/gregex.c:2114 +#: glib/gregex.c:2114 msgid "digit expected" msgstr "ciffer forventet" -#: ../glib/gregex.c:2132 +#: glib/gregex.c:2132 msgid "illegal symbolic reference" msgstr "ugyldig symbolsk reference" -#: ../glib/gregex.c:2194 +#: glib/gregex.c:2194 msgid "stray final '\\'" msgstr "løst afsluttende \"\\\"" -#: ../glib/gregex.c:2198 +#: glib/gregex.c:2198 msgid "unknown escape sequence" msgstr "ukendt undvigesekvens" -#: ../glib/gregex.c:2208 +#: glib/gregex.c:2208 #, c-format msgid "Error while parsing replacement text \"%s\" at char %lu: %s" msgstr "Fejl under fortolkning af erstatningstekst \"%s\" ved tegn %lu: %s" -#: ../glib/gshell.c:92 +#: glib/gshell.c:92 msgid "Quoted text doesn't begin with a quotation mark" msgstr "Anført tekst begynder ikke med anførselstegn" -#: ../glib/gshell.c:182 +#: glib/gshell.c:182 msgid "Unmatched quotation mark in command line or other shell-quoted text" msgstr "" "Uafbalanceret anførselstegn i kommandolinje eller anden skal-anført tekst" -#: ../glib/gshell.c:560 +#: glib/gshell.c:560 #, c-format msgid "Text ended just after a '\\' character. (The text was '%s')" msgstr "Tekst sluttede lige efter et \"\\\"-tegn. (Teksten var \"%s\")" -#: ../glib/gshell.c:567 +#: glib/gshell.c:567 #, c-format msgid "Text ended before matching quote was found for %c. (The text was '%s')" msgstr "" "Tekst sluttede før tilsvarende anførselstegn blev fundet for %c (teksten var " "\"%s\")" -#: ../glib/gshell.c:579 +#: glib/gshell.c:579 msgid "Text was empty (or contained only whitespace)" msgstr "Tekst var tom (eller indeholdt kun blanke tegn)" -#: ../glib/gspawn-win32.c:283 +#: glib/gspawn-win32.c:283 msgid "Failed to read data from child process" msgstr "Fejl under læsning af data fra underprocess" -#: ../glib/gspawn-win32.c:300 ../glib/gspawn.c:1480 +#: glib/gspawn-win32.c:300 glib/gspawn.c:1480 #, c-format msgid "Failed to create pipe for communicating with child process (%s)" msgstr "Fejl under oprettelse af kommunikationskanal til underproces (%s)" -#: ../glib/gspawn-win32.c:339 ../glib/gspawn-win32.c:347 ../glib/gspawn.c:1139 +#: glib/gspawn-win32.c:339 glib/gspawn-win32.c:347 glib/gspawn.c:1139 #, c-format msgid "Failed to read from child pipe (%s)" msgstr "Fejl under læsning fra barnedatakanal (%s)" -#: ../glib/gspawn-win32.c:370 ../glib/gspawn.c:1346 +#: glib/gspawn-win32.c:370 glib/gspawn.c:1346 #, c-format msgid "Failed to change to directory '%s' (%s)" msgstr "Fejl ved skift til mappen \"%s\" (%s)" -#: ../glib/gspawn-win32.c:376 ../glib/gspawn-win32.c:495 +#: glib/gspawn-win32.c:376 glib/gspawn-win32.c:495 #, c-format msgid "Failed to execute child process (%s)" msgstr "Fejl under kørsel af underprocess (%s)" -#: ../glib/gspawn-win32.c:445 +#: glib/gspawn-win32.c:445 #, c-format msgid "Invalid program name: %s" msgstr "Ugyldigt programnavn: %s" -#: ../glib/gspawn-win32.c:455 ../glib/gspawn-win32.c:723 -#: ../glib/gspawn-win32.c:1279 +#: glib/gspawn-win32.c:455 glib/gspawn-win32.c:723 glib/gspawn-win32.c:1279 #, c-format msgid "Invalid string in argument vector at %d: %s" msgstr "Ugyldig streng i argumentvektor på %d: %s" -#: ../glib/gspawn-win32.c:466 ../glib/gspawn-win32.c:738 -#: ../glib/gspawn-win32.c:1312 +#: glib/gspawn-win32.c:466 glib/gspawn-win32.c:738 glib/gspawn-win32.c:1312 #, c-format msgid "Invalid string in environment: %s" msgstr "Ugyldig streng i miljø: %s" -#: ../glib/gspawn-win32.c:719 ../glib/gspawn-win32.c:1260 +#: glib/gspawn-win32.c:719 glib/gspawn-win32.c:1260 #, c-format msgid "Invalid working directory: %s" msgstr "Ugyldigt arbejdskatalog: %s" -#: ../glib/gspawn-win32.c:784 +#: glib/gspawn-win32.c:784 #, c-format msgid "Failed to execute helper program (%s)" msgstr "Fejl under kørsel af hjælpeprogram (%s)" -#: ../glib/gspawn-win32.c:998 +#: glib/gspawn-win32.c:998 msgid "" "Unexpected error in g_io_channel_win32_poll() reading data from a child " "process" @@ -931,137 +927,137 @@ msgstr "" "Uventet fejl i g_io_channel_win32_poll() under læsning af data fra en " "underprocess" -#: ../glib/gspawn.c:190 +#: glib/gspawn.c:190 #, c-format msgid "Failed to read data from child process (%s)" msgstr "Fejl ved læsning af data fra underprocess (%s)" -#: ../glib/gspawn.c:329 +#: glib/gspawn.c:329 #, c-format msgid "Unexpected error in select() reading data from a child process (%s)" msgstr "Uventet fejl i select() ved læsning af data fra underprocess (%s)" -#: ../glib/gspawn.c:414 +#: glib/gspawn.c:414 #, c-format msgid "Unexpected error in waitpid() (%s)" msgstr "Uventet fejl i waitpid() (%s)" -#: ../glib/gspawn.c:1206 +#: glib/gspawn.c:1206 #, c-format msgid "Failed to fork (%s)" msgstr "Fejl under fraspaltning af proces (%s)" -#: ../glib/gspawn.c:1356 +#: glib/gspawn.c:1356 #, c-format msgid "Failed to execute child process \"%s\" (%s)" msgstr "Fejl under kørsel af underprocessen \"%s\" (%s)" -#: ../glib/gspawn.c:1366 +#: glib/gspawn.c:1366 #, c-format msgid "Failed to redirect output or input of child process (%s)" msgstr "Fejl under omdirigering af uddata eller inddata for underprocess (%s)" -#: ../glib/gspawn.c:1375 +#: glib/gspawn.c:1375 #, c-format msgid "Failed to fork child process (%s)" msgstr "Fejl ved fraspaltning af underprocess (%s)" -#: ../glib/gspawn.c:1383 +#: glib/gspawn.c:1383 #, c-format msgid "Unknown error executing child process \"%s\"" msgstr "Ukendt fejl under kørsel af underprocessen \"%s\"" -#: ../glib/gspawn.c:1407 +#: glib/gspawn.c:1407 #, c-format msgid "Failed to read enough data from child pid pipe (%s)" msgstr "" "Kunne ikke læse tilstrækkelig mængde data fra underprocessens pid-kanal (%s)" -#: ../glib/gutf8.c:1055 +#: glib/gutf8.c:1055 msgid "Character out of range for UTF-8" msgstr "Tegn uden for gyldigt interval for UTF-8" -#: ../glib/gutf8.c:1155 ../glib/gutf8.c:1164 ../glib/gutf8.c:1296 -#: ../glib/gutf8.c:1305 ../glib/gutf8.c:1446 ../glib/gutf8.c:1542 +#: glib/gutf8.c:1155 glib/gutf8.c:1164 glib/gutf8.c:1296 glib/gutf8.c:1305 +#: glib/gutf8.c:1446 glib/gutf8.c:1542 msgid "Invalid sequence in conversion input" msgstr "Ugyldig sekvens i konverteringsinddata" -#: ../glib/gutf8.c:1457 ../glib/gutf8.c:1553 +#: glib/gutf8.c:1457 glib/gutf8.c:1553 msgid "Character out of range for UTF-16" msgstr "Tegn uden for gyldigt interval for UTF-16" -#: ../glib/goption.c:755 +#: glib/goption.c:755 msgid "Usage:" msgstr "Brug:" -#: ../glib/goption.c:755 +#: glib/goption.c:755 msgid "[OPTION...]" msgstr "[TILVALG...]" -#: ../glib/goption.c:861 +#: glib/goption.c:861 msgid "Help Options:" msgstr "Flag for hjælp:" -#: ../glib/goption.c:862 +#: glib/goption.c:862 msgid "Show help options" msgstr "Vis flag for hjælp" -#: ../glib/goption.c:868 +#: glib/goption.c:868 msgid "Show all help options" msgstr "Vis alle flag for hjælp" -#: ../glib/goption.c:930 +#: glib/goption.c:930 msgid "Application Options:" msgstr "Flag for programmet:" -#: ../glib/goption.c:992 ../glib/goption.c:1062 +#: glib/goption.c:992 glib/goption.c:1062 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "Kan ikke fortolke heltalsværdien \"%s\" for %s" -#: ../glib/goption.c:1002 ../glib/goption.c:1070 +#: glib/goption.c:1002 glib/goption.c:1070 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "Heltalsværdien \"%s\" for %s er ikke i gyldigt interval" -#: ../glib/goption.c:1027 +#: glib/goption.c:1027 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "Kan ikke fortolke double-værdien \"%s\" for %s" -#: ../glib/goption.c:1035 +#: glib/goption.c:1035 #, c-format msgid "Double value '%s' for %s out of range" msgstr "Double-værdien \"%s\" for %s er ikke i gyldigt interval" -#: ../glib/goption.c:1298 ../glib/goption.c:1377 +#: glib/goption.c:1298 glib/goption.c:1377 #, c-format msgid "Error parsing option %s" msgstr "Kunne ikke fortolke tilvalg %s" -#: ../glib/goption.c:1408 ../glib/goption.c:1522 +#: glib/goption.c:1408 glib/goption.c:1522 #, c-format msgid "Missing argument for %s" msgstr "Mangler argument for %s" -#: ../glib/goption.c:1917 +#: glib/goption.c:1917 #, c-format msgid "Unknown option %s" msgstr "Ukendt flag %s" -#: ../glib/gkeyfile.c:361 +#: glib/gkeyfile.c:361 msgid "Valid key file could not be found in search dirs" msgstr "Gyldig nøglefil blev ikke fundet i søgekatalogerne" -#: ../glib/gkeyfile.c:396 +#: glib/gkeyfile.c:396 msgid "Not a regular file" msgstr "Ikke en almindelig fil" -#: ../glib/gkeyfile.c:404 +#: glib/gkeyfile.c:404 msgid "File is empty" msgstr "Filen er tom" -#: ../glib/gkeyfile.c:763 +#: glib/gkeyfile.c:763 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" @@ -1069,50 +1065,50 @@ msgstr "" "Nøglefilen indeholder linjen \"%s\" hvilken ikke er et nøgle-værdi-par, en " "gruppe eller en kommentar" -#: ../glib/gkeyfile.c:823 +#: glib/gkeyfile.c:823 #, c-format msgid "Invalid group name: %s" msgstr "Ugyldigt gruppenavn: %s" -#: ../glib/gkeyfile.c:845 +#: glib/gkeyfile.c:845 msgid "Key file does not start with a group" msgstr "Nøglefilen starter ikke med en gruppe" -#: ../glib/gkeyfile.c:871 +#: glib/gkeyfile.c:871 #, c-format msgid "Invalid key name: %s" msgstr "Ugyldigt nøglenavn: %s" -#: ../glib/gkeyfile.c:898 +#: glib/gkeyfile.c:898 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "Nøglefilen indeholder kodningen \"%s\", der ikke understøttes" -#: ../glib/gkeyfile.c:1114 ../glib/gkeyfile.c:1276 ../glib/gkeyfile.c:2505 -#: ../glib/gkeyfile.c:2571 ../glib/gkeyfile.c:2706 ../glib/gkeyfile.c:2839 -#: ../glib/gkeyfile.c:2992 ../glib/gkeyfile.c:3179 ../glib/gkeyfile.c:3240 +#: glib/gkeyfile.c:1114 glib/gkeyfile.c:1276 glib/gkeyfile.c:2505 +#: glib/gkeyfile.c:2571 glib/gkeyfile.c:2706 glib/gkeyfile.c:2839 +#: glib/gkeyfile.c:2992 glib/gkeyfile.c:3179 glib/gkeyfile.c:3240 #, c-format msgid "Key file does not have group '%s'" msgstr "Nøglefilen indeholder ikke gruppen \"%s\"" -#: ../glib/gkeyfile.c:1288 +#: glib/gkeyfile.c:1288 #, c-format msgid "Key file does not have key '%s'" msgstr "Nøglefilen indeholder ikke nøglen \"%s\"" -#: ../glib/gkeyfile.c:1395 ../glib/gkeyfile.c:1510 +#: glib/gkeyfile.c:1395 glib/gkeyfile.c:1510 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "" "Nøglefilen indeholder nøglen \"%s\" med værdien \"%s\" der ikke er UTF-8" -#: ../glib/gkeyfile.c:1415 ../glib/gkeyfile.c:1909 +#: glib/gkeyfile.c:1415 glib/gkeyfile.c:1909 #, c-format msgid "Key file contains key '%s' which has value that cannot be interpreted." msgstr "" "Nøglefilen indeholder nøglen \"%s\" som har en værdi der ikke kan fortolkes." -#: ../glib/gkeyfile.c:1530 +#: glib/gkeyfile.c:1530 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." @@ -1120,7 +1116,7 @@ msgstr "" "Nøglefilen indeholder nøglen \"%s\", som har en værdi, der ikke kan " "fortolkes." -#: ../glib/gkeyfile.c:2124 ../glib/gkeyfile.c:2336 +#: glib/gkeyfile.c:2124 glib/gkeyfile.c:2336 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has value that cannot be " @@ -1129,181 +1125,178 @@ msgstr "" "Nøglefilen indeholder nøglen \"%s\" i gruppen \"%s\" som har en værdi der " "ikke kan fortolkes." -#: ../glib/gkeyfile.c:2520 ../glib/gkeyfile.c:2721 ../glib/gkeyfile.c:3251 +#: glib/gkeyfile.c:2520 glib/gkeyfile.c:2721 glib/gkeyfile.c:3251 #, c-format msgid "Key file does not have key '%s' in group '%s'" msgstr "Nøglefilen har ikke nøglen \"%s\" i gruppen \"%s\"" -#: ../glib/gkeyfile.c:3485 +#: glib/gkeyfile.c:3485 msgid "Key file contains escape character at end of line" msgstr "Nøglefilen indeholder beskyttede tegn for enden af linjen" -#: ../glib/gkeyfile.c:3507 +#: glib/gkeyfile.c:3507 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "Nøglefilen indeholder en ugyldig undvigesekvens \"%s\"" -#: ../glib/gkeyfile.c:3649 +#: glib/gkeyfile.c:3649 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "Værdien \"%s\" kan ikke fortolkes som et nummer." -#: ../glib/gkeyfile.c:3663 +#: glib/gkeyfile.c:3663 #, c-format msgid "Integer value '%s' out of range" msgstr "Heltalsværdien \"%s\" er ikke i gyldigt interval" -#: ../glib/gkeyfile.c:3696 +#: glib/gkeyfile.c:3696 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "Værdien \"%s\" kan ikke fortolkes som en float." -#: ../glib/gkeyfile.c:3720 +#: glib/gkeyfile.c:3720 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "Værdien \"%s\" kan ikke fortolkes som en sandhedsværdi." -#: ../gio/gbufferedinputstream.c:415 ../gio/gbufferedinputstream.c:496 -#: ../gio/ginputstream.c:186 ../gio/ginputstream.c:318 -#: ../gio/ginputstream.c:557 ../gio/ginputstream.c:682 -#: ../gio/goutputstream.c:198 ../gio/goutputstream.c:657 +#: gio/gbufferedinputstream.c:415 gio/gbufferedinputstream.c:496 +#: gio/ginputstream.c:186 gio/ginputstream.c:318 gio/ginputstream.c:557 +#: gio/ginputstream.c:682 gio/goutputstream.c:198 gio/goutputstream.c:657 #, c-format msgid "Too large count value passed to %s" msgstr "For stor talværdi givet til %s" -#: ../gio/gbufferedinputstream.c:883 ../gio/ginputstream.c:892 -#: ../gio/giostream.c:305 ../gio/goutputstream.c:1108 +#: gio/gbufferedinputstream.c:883 gio/ginputstream.c:892 gio/giostream.c:305 +#: gio/goutputstream.c:1108 msgid "Stream is already closed" msgstr "Strømmen er allerede lukket" -#: ../gio/gcancellable.c:433 ../gio/glocalfile.c:2108 -#: ../gio/gsimpleasyncresult.c:651 ../gio/gsimpleasyncresult.c:677 +#: gio/gcancellable.c:433 gio/glocalfile.c:2108 gio/gsimpleasyncresult.c:651 +#: gio/gsimpleasyncresult.c:677 msgid "Operation was cancelled" msgstr "Operationen blev afbrudt" -#: ../gio/gcharsetconverter.c:264 +#: gio/gcharsetconverter.c:264 msgid "Invalid object, not initialized" msgstr "Ugyldigt objekt, ikke initialiseret" -#: ../gio/gcharsetconverter.c:285 ../gio/gcharsetconverter.c:313 +#: gio/gcharsetconverter.c:285 gio/gcharsetconverter.c:313 msgid "Incomplete multibyte sequence in input" msgstr "Ufuldstændig flerbytesekvens i inddata" -#: ../gio/gcharsetconverter.c:319 ../gio/gcharsetconverter.c:328 +#: gio/gcharsetconverter.c:319 gio/gcharsetconverter.c:328 msgid "Not enough space in destination" msgstr "Utilstrækkelig plads på destinationen" -#: ../gio/gcharsetconverter.c:448 ../gio/gsocket.c:772 +#: gio/gcharsetconverter.c:448 gio/gsocket.c:772 msgid "Cancellable initialization not supported" msgstr "Initialisering med mulighed for afbrydelse understøttes ikke" -#: ../gio/gcontenttype.c:180 +#: gio/gcontenttype.c:180 msgid "Unknown type" msgstr "Ukendt type" -#: ../gio/gcontenttype.c:181 +#: gio/gcontenttype.c:181 #, c-format msgid "%s filetype" msgstr "%s-filtype" -#: ../gio/gcontenttype.c:681 +#: gio/gcontenttype.c:681 #, c-format msgid "%s type" msgstr "%s-type" -#: ../gio/gdatainputstream.c:311 +#: gio/gdatainputstream.c:311 msgid "Unexpected early end-of-stream" msgstr "Uventet tidlig strømafslutning" -#: ../gio/gdesktopappinfo.c:468 ../gio/gwin32appinfo.c:222 +#: gio/gdesktopappinfo.c:468 gio/gwin32appinfo.c:222 msgid "Unnamed" msgstr "Unavngivet" -#: ../gio/gdesktopappinfo.c:742 +#: gio/gdesktopappinfo.c:742 msgid "Desktop file didn't specify Exec field" msgstr "Skrivebordsfil angav intet Exec-felt" -#: ../gio/gdesktopappinfo.c:924 +#: gio/gdesktopappinfo.c:924 msgid "Unable to find terminal required for application" msgstr "Kan ikke finde terminal krævet af dette program" -#: ../gio/gdesktopappinfo.c:1132 +#: gio/gdesktopappinfo.c:1132 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "Kan ikke oprette konfigurationsfolder %s for brugerprogram: %s" -#: ../gio/gdesktopappinfo.c:1136 +#: gio/gdesktopappinfo.c:1136 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "Kan ikke oprette bruger-MIME-konfigurationsfolder %s: %s" -#: ../gio/gdesktopappinfo.c:1544 +#: gio/gdesktopappinfo.c:1544 #, c-format msgid "Can't create user desktop file %s" msgstr "Kan ikke oprette brugerskrivebords-fil %s" -#: ../gio/gdesktopappinfo.c:1658 +#: gio/gdesktopappinfo.c:1658 #, c-format msgid "Custom definition for %s" msgstr "Tilpasset definition for %s" -#: ../gio/gdrive.c:364 +#: gio/gdrive.c:364 msgid "drive doesn't implement eject" msgstr "drevet implementerer ikke eject" #. Translators: This is an error #. * message for drive objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gdrive.c:444 +#: gio/gdrive.c:444 msgid "drive doesn't implement eject or eject_with_operation" msgstr "drevet implementerer ikke eject eller eject_with_operation" -#: ../gio/gdrive.c:521 +#: gio/gdrive.c:521 msgid "drive doesn't implement polling for media" msgstr "drevet implementerer ikke forespørgsel om medier" -#: ../gio/gdrive.c:726 +#: gio/gdrive.c:726 msgid "drive doesn't implement start" msgstr "drevet implementerer ikke start" -#: ../gio/gdrive.c:828 +#: gio/gdrive.c:828 msgid "drive doesn't implement stop" msgstr "drevet implementerer ikke stop" -#: ../gio/gemblem.c:325 +#: gio/gemblem.c:325 #, c-format msgid "Can't handle version %d of GEmblem encoding" msgstr "Kan ikke håndtere version %d af GEmblem-kodning" -#: ../gio/gemblem.c:335 +#: gio/gemblem.c:335 #, c-format msgid "Malformed number of tokens (%d) in GEmblem encoding" msgstr "Forkert antal symboler (%d) i GEmblem-kodning" -#: ../gio/gemblemedicon.c:296 +#: gio/gemblemedicon.c:296 #, c-format msgid "Can't handle version %d of GEmblemedIcon encoding" msgstr "Kan ikke håndtere version %d af GEmblemIcon-kodning" -#: ../gio/gemblemedicon.c:306 +#: gio/gemblemedicon.c:306 #, c-format msgid "Malformed number of tokens (%d) in GEmblemedIcon encoding" msgstr "Forkert antal symboler (%d) i GEmblemedIcon-kodning" -#: ../gio/gemblemedicon.c:329 +#: gio/gemblemedicon.c:329 msgid "Expected a GEmblem for GEmblemedIcon" msgstr "Forventede et GEmblem til GEmblemedIcon" -#: ../gio/gfile.c:871 ../gio/gfile.c:1101 ../gio/gfile.c:1236 -#: ../gio/gfile.c:1472 ../gio/gfile.c:1526 ../gio/gfile.c:1583 -#: ../gio/gfile.c:1666 ../gio/gfile.c:1721 ../gio/gfile.c:1781 -#: ../gio/gfile.c:1835 ../gio/gfile.c:3304 ../gio/gfile.c:3358 -#: ../gio/gfile.c:3489 ../gio/gfile.c:3529 ../gio/gfile.c:3856 -#: ../gio/gfile.c:4258 ../gio/gfile.c:4344 ../gio/gfile.c:4433 -#: ../gio/gfile.c:4531 ../gio/gfile.c:4618 ../gio/gfile.c:4711 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5321 ../gio/gfile.c:5390 -#: ../gio/gfile.c:6981 ../gio/gfile.c:7071 ../gio/gfile.c:7157 -#: ../gio/win32/gwinhttpfile.c:441 +#: gio/gfile.c:871 gio/gfile.c:1101 gio/gfile.c:1236 gio/gfile.c:1472 +#: gio/gfile.c:1526 gio/gfile.c:1583 gio/gfile.c:1666 gio/gfile.c:1721 +#: gio/gfile.c:1781 gio/gfile.c:1835 gio/gfile.c:3304 gio/gfile.c:3358 +#: gio/gfile.c:3489 gio/gfile.c:3529 gio/gfile.c:3856 gio/gfile.c:4258 +#: gio/gfile.c:4344 gio/gfile.c:4433 gio/gfile.c:4531 gio/gfile.c:4618 +#: gio/gfile.c:4711 gio/gfile.c:5041 gio/gfile.c:5321 gio/gfile.c:5390 +#: gio/gfile.c:6981 gio/gfile.c:7071 gio/gfile.c:7157 +#: gio/win32/gwinhttpfile.c:441 msgid "Operation not supported" msgstr "Operationen understøttes ikke" @@ -1315,140 +1308,140 @@ msgstr "Operationen understøttes ikke" #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1357 ../gio/glocalfile.c:1065 ../gio/glocalfile.c:1076 -#: ../gio/glocalfile.c:1089 +#: gio/gfile.c:1357 gio/glocalfile.c:1065 gio/glocalfile.c:1076 +#: gio/glocalfile.c:1089 msgid "Containing mount does not exist" msgstr "Indeholdende montering findes ikke" -#: ../gio/gfile.c:2409 ../gio/glocalfile.c:2264 +#: gio/gfile.c:2409 gio/glocalfile.c:2264 msgid "Can't copy over directory" msgstr "Kan ikke kopiere over mappe" -#: ../gio/gfile.c:2469 +#: gio/gfile.c:2469 msgid "Can't copy directory over directory" msgstr "Kan ikke kopiere mappe over mappe" -#: ../gio/gfile.c:2477 ../gio/glocalfile.c:2273 +#: gio/gfile.c:2477 gio/glocalfile.c:2273 msgid "Target file exists" msgstr "Målfilen findes" -#: ../gio/gfile.c:2495 +#: gio/gfile.c:2495 msgid "Can't recursively copy directory" msgstr "Kan ikke kopiere mappe rekursivt" -#: ../gio/gfile.c:2755 +#: gio/gfile.c:2755 msgid "Splice not supported" msgstr "Splejsning understøttes ikke" -#: ../gio/gfile.c:2759 +#: gio/gfile.c:2759 #, c-format msgid "Error splicing file: %s" msgstr "Fejl ved splejsning af fil: %s" -#: ../gio/gfile.c:2906 +#: gio/gfile.c:2906 msgid "Can't copy special file" msgstr "Kan ikke kopiere specialfil" -#: ../gio/gfile.c:3479 +#: gio/gfile.c:3479 msgid "Invalid symlink value given" msgstr "Ugyldig værdi givet for symbolsk henvisning" # ved ikke om det er papirkurv eller blot affald, eller om det er et udsagnsord. Vi skriver det sikreste... -#: ../gio/gfile.c:3572 +#: gio/gfile.c:3572 msgid "Trash not supported" msgstr "Affald understøttes ikke" -#: ../gio/gfile.c:3621 +#: gio/gfile.c:3621 #, c-format msgid "File names cannot contain '%c'" msgstr "Filnavne kan ikke indeholder \"%c\"" -#: ../gio/gfile.c:6038 ../gio/gvolume.c:331 +#: gio/gfile.c:6038 gio/gvolume.c:331 msgid "volume doesn't implement mount" msgstr "diskenheden implementerer ikke montering" -#: ../gio/gfile.c:6149 +#: gio/gfile.c:6149 msgid "No application is registered as handling this file" msgstr "Intet program er registreret til håndtering af denne fil" -#: ../gio/gfileenumerator.c:206 +#: gio/gfileenumerator.c:206 msgid "Enumerator is closed" msgstr "Optæller er lukket" # udviklerkommentar ved tilsvarende streng andetsteds i filen forklarer dette -#: ../gio/gfileenumerator.c:213 ../gio/gfileenumerator.c:272 -#: ../gio/gfileenumerator.c:372 ../gio/gfileenumerator.c:481 +#: gio/gfileenumerator.c:213 gio/gfileenumerator.c:272 +#: gio/gfileenumerator.c:372 gio/gfileenumerator.c:481 msgid "File enumerator has outstanding operation" msgstr "Filoptæller arbejder stadig" -#: ../gio/gfileenumerator.c:362 ../gio/gfileenumerator.c:471 +#: gio/gfileenumerator.c:362 gio/gfileenumerator.c:471 msgid "File enumerator is already closed" msgstr "Filoptæller er allerede lukket" -#: ../gio/gfileicon.c:237 +#: gio/gfileicon.c:237 #, c-format msgid "Can't handle version %d of GFileIcon encoding" msgstr "Kan ikke håndtere version %d af GFileIcon-kodning" -#: ../gio/gfileicon.c:247 +#: gio/gfileicon.c:247 msgid "Malformed input data for GFileIcon" msgstr "Fejlformateret inddata til GFileIcon" -#: ../gio/gfileinputstream.c:155 ../gio/gfileinputstream.c:422 -#: ../gio/gfileiostream.c:171 ../gio/gfileoutputstream.c:170 -#: ../gio/gfileoutputstream.c:525 +#: gio/gfileinputstream.c:155 gio/gfileinputstream.c:422 +#: gio/gfileiostream.c:171 gio/gfileoutputstream.c:170 +#: gio/gfileoutputstream.c:525 msgid "Stream doesn't support query_info" msgstr "Strømmen understøtter ikke query_info" -#: ../gio/gfileinputstream.c:337 ../gio/gfileiostream.c:389 -#: ../gio/gfileoutputstream.c:383 +#: gio/gfileinputstream.c:337 gio/gfileiostream.c:389 +#: gio/gfileoutputstream.c:383 msgid "Seek not supported on stream" msgstr "Søgning understøttes ikke på strømmen" -#: ../gio/gfileinputstream.c:381 +#: gio/gfileinputstream.c:381 msgid "Truncate not allowed on input stream" msgstr "Afskæring tillades ikke for inputstrømmen" -#: ../gio/gfileiostream.c:465 ../gio/gfileoutputstream.c:459 +#: gio/gfileiostream.c:465 gio/gfileoutputstream.c:459 msgid "Truncate not supported on stream" msgstr "Afskæring understøttes ikke på strømmen" -#: ../gio/gicon.c:286 +#: gio/gicon.c:286 #, c-format msgid "Wrong number of tokens (%d)" msgstr "Forkert antal tegn (%d)" -#: ../gio/gicon.c:306 +#: gio/gicon.c:306 #, c-format msgid "No type for class name %s" msgstr "Ingen type til klassenavn %s" -#: ../gio/gicon.c:316 +#: gio/gicon.c:316 #, c-format msgid "Type %s does not implement the GIcon interface" msgstr "Typen %s implementerer ikke GIcon-grænsefladen" -#: ../gio/gicon.c:327 +#: gio/gicon.c:327 #, c-format msgid "Type %s is not classed" msgstr "Typen %s har ingen klasse" -#: ../gio/gicon.c:341 +#: gio/gicon.c:341 #, c-format msgid "Malformed version number: %s" msgstr "Fejlformateret versionsnummer %s" -#: ../gio/gicon.c:355 +#: gio/gicon.c:355 #, c-format msgid "Type %s does not implement from_tokens() on the GIcon interface" msgstr "" "Typen %s implementerer ikke from_tokens(), som er del af GIcon-grænsefladen" -#: ../gio/gicon.c:431 +#: gio/gicon.c:431 msgid "Can't handle the supplied version the icon encoding" msgstr "Kan ikke håndtere den angivne version af ikonkodningen" -#: ../gio/ginputstream.c:195 +#: gio/ginputstream.c:195 msgid "Input stream doesn't implement read" msgstr "Inputstrøm implementerer ikke læsning" @@ -1458,325 +1451,324 @@ msgstr "Inputstrøm implementerer ikke læsning" #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:902 ../gio/giostream.c:315 -#: ../gio/goutputstream.c:1118 +#: gio/ginputstream.c:902 gio/giostream.c:315 gio/goutputstream.c:1118 msgid "Stream has outstanding operation" msgstr "Strøm arbejder stadig" -#: ../gio/ginetsocketaddress.c:182 ../gio/ginetsocketaddress.c:199 -#: ../gio/gunixsocketaddress.c:174 +#: gio/ginetsocketaddress.c:182 gio/ginetsocketaddress.c:199 +#: gio/gunixsocketaddress.c:174 msgid "Not enough space for socket address" msgstr "Utilstrækkelig plads til sokkeladresse" -#: ../gio/ginetsocketaddress.c:212 +#: gio/ginetsocketaddress.c:212 msgid "Unsupported socket address" msgstr "Sokkeladresse understøttes ikke" -#: ../gio/glocaldirectorymonitor.c:288 +#: gio/glocaldirectorymonitor.c:288 msgid "Unable to find default local directory monitor type" msgstr "Kan ikke finde standardmonitortype for lokal mappe" -#: ../gio/glocalfile.c:599 ../gio/win32/gwinhttpfile.c:424 +#: gio/glocalfile.c:599 gio/win32/gwinhttpfile.c:424 #, c-format msgid "Invalid filename %s" msgstr "Ugyldigt filnavn %s" -#: ../gio/glocalfile.c:973 +#: gio/glocalfile.c:973 #, c-format msgid "Error getting filesystem info: %s" msgstr "Fejl ved læsning af filsysteminformation: %s" -#: ../gio/glocalfile.c:1111 +#: gio/glocalfile.c:1111 msgid "Can't rename root directory" msgstr "Kan ikke omdøbe rodmappen" -#: ../gio/glocalfile.c:1131 ../gio/glocalfile.c:1157 +#: gio/glocalfile.c:1131 gio/glocalfile.c:1157 #, c-format msgid "Error renaming file: %s" msgstr "Fejl ved omdøbning af fil: %s" -#: ../gio/glocalfile.c:1140 +#: gio/glocalfile.c:1140 msgid "Can't rename file, filename already exist" msgstr "Kan ikke omdøbe fil, filnavn findes allerede" -#: ../gio/glocalfile.c:1153 ../gio/glocalfile.c:2137 ../gio/glocalfile.c:2166 -#: ../gio/glocalfile.c:2326 ../gio/glocalfileoutputstream.c:557 -#: ../gio/glocalfileoutputstream.c:610 ../gio/glocalfileoutputstream.c:655 -#: ../gio/glocalfileoutputstream.c:1137 +#: gio/glocalfile.c:1153 gio/glocalfile.c:2137 gio/glocalfile.c:2166 +#: gio/glocalfile.c:2326 gio/glocalfileoutputstream.c:557 +#: gio/glocalfileoutputstream.c:610 gio/glocalfileoutputstream.c:655 +#: gio/glocalfileoutputstream.c:1137 msgid "Invalid filename" msgstr "Ugyldigt filnavn" -#: ../gio/glocalfile.c:1314 +#: gio/glocalfile.c:1314 #, c-format msgid "Error opening file: %s" msgstr "Fejl ved åbning af fil: %s" -#: ../gio/glocalfile.c:1324 +#: gio/glocalfile.c:1324 msgid "Can't open directory" msgstr "Kan ikke åbne mappe" -#: ../gio/glocalfile.c:1449 +#: gio/glocalfile.c:1449 #, c-format msgid "Error removing file: %s" msgstr "Fejl under fjernelse af fil: %s" -#: ../gio/glocalfile.c:1816 +#: gio/glocalfile.c:1816 #, c-format msgid "Error trashing file: %s" msgstr "Fejl ved udsmidning af fil: %s" -#: ../gio/glocalfile.c:1839 +#: gio/glocalfile.c:1839 #, c-format msgid "Unable to create trash dir %s: %s" msgstr "Kan ikke oprette affaldsmappe %s: %s" -#: ../gio/glocalfile.c:1860 +#: gio/glocalfile.c:1860 msgid "Unable to find toplevel directory for trash" msgstr "Kan ikke finde topniveau-mappe til affald" -#: ../gio/glocalfile.c:1939 ../gio/glocalfile.c:1959 +#: gio/glocalfile.c:1939 gio/glocalfile.c:1959 msgid "Unable to find or create trash directory" msgstr "Kan ikke finde eller oprette affaldsmappe" -#: ../gio/glocalfile.c:1993 +#: gio/glocalfile.c:1993 #, c-format msgid "Unable to create trashing info file: %s" msgstr "Kan ikke oprette affalds-infofil: %s" -#: ../gio/glocalfile.c:2022 ../gio/glocalfile.c:2027 ../gio/glocalfile.c:2107 -#: ../gio/glocalfile.c:2114 +#: gio/glocalfile.c:2022 gio/glocalfile.c:2027 gio/glocalfile.c:2107 +#: gio/glocalfile.c:2114 #, c-format msgid "Unable to trash file: %s" msgstr "Kan ikke smide fil ud: %s" -#: ../gio/glocalfile.c:2141 +#: gio/glocalfile.c:2141 #, c-format msgid "Error creating directory: %s" msgstr "Fejl ved oprettelse af mappen: %s" -#: ../gio/glocalfile.c:2170 +#: gio/glocalfile.c:2170 #, c-format msgid "Filesystem does not support symbolic links" msgstr "Filsystemet understøtter ikke symbolske henvisninger" -#: ../gio/glocalfile.c:2174 +#: gio/glocalfile.c:2174 #, c-format msgid "Error making symbolic link: %s" msgstr "Fejl under oprettelse af symbolsk henvisning: %s" -#: ../gio/glocalfile.c:2236 ../gio/glocalfile.c:2330 +#: gio/glocalfile.c:2236 gio/glocalfile.c:2330 #, c-format msgid "Error moving file: %s" msgstr "Fejl ved flytning af fil: %s" -#: ../gio/glocalfile.c:2259 +#: gio/glocalfile.c:2259 msgid "Can't move directory over directory" msgstr "Kan ikke flytte mappe over mappe" -#: ../gio/glocalfile.c:2286 ../gio/glocalfileoutputstream.c:935 -#: ../gio/glocalfileoutputstream.c:949 ../gio/glocalfileoutputstream.c:964 -#: ../gio/glocalfileoutputstream.c:980 ../gio/glocalfileoutputstream.c:994 +#: gio/glocalfile.c:2286 gio/glocalfileoutputstream.c:935 +#: gio/glocalfileoutputstream.c:949 gio/glocalfileoutputstream.c:964 +#: gio/glocalfileoutputstream.c:980 gio/glocalfileoutputstream.c:994 msgid "Backup file creation failed" msgstr "Oprettelse af sikkerhedskopi mislykkedes" -#: ../gio/glocalfile.c:2305 +#: gio/glocalfile.c:2305 #, c-format msgid "Error removing target file: %s" msgstr "Fejl ved fjernelse af målfil: %s" -#: ../gio/glocalfile.c:2319 +#: gio/glocalfile.c:2319 msgid "Move between mounts not supported" msgstr "Flytning mellem monteringer understøttes ikke" -#: ../gio/glocalfileinfo.c:726 +#: gio/glocalfileinfo.c:726 msgid "Attribute value must be non-NULL" msgstr "Attributværdien må ikke være NULL" -#: ../gio/glocalfileinfo.c:733 +#: gio/glocalfileinfo.c:733 msgid "Invalid attribute type (string expected)" msgstr "Ugyldig attributtype (streng forventet)" -#: ../gio/glocalfileinfo.c:740 +#: gio/glocalfileinfo.c:740 msgid "Invalid extended attribute name" msgstr "Ugyldigt udvidet attributnavn" -#: ../gio/glocalfileinfo.c:780 +#: gio/glocalfileinfo.c:780 #, c-format msgid "Error setting extended attribute '%s': %s" msgstr "Fejl ved instilling af udvidet attribut \"%s\": %s" -#: ../gio/glocalfileinfo.c:1484 ../gio/glocalfileoutputstream.c:819 +#: gio/glocalfileinfo.c:1484 gio/glocalfileoutputstream.c:819 #, c-format msgid "Error stating file '%s': %s" msgstr "Fejl ved stat for filen \"%s\": %s" -#: ../gio/glocalfileinfo.c:1557 +#: gio/glocalfileinfo.c:1557 msgid " (invalid encoding)" msgstr " (ugyldig kodning)" -#: ../gio/glocalfileinfo.c:1755 +#: gio/glocalfileinfo.c:1755 #, c-format msgid "Error stating file descriptor: %s" msgstr "Fejl ved stat af fildeskriptor: %s" -#: ../gio/glocalfileinfo.c:1800 +#: gio/glocalfileinfo.c:1800 msgid "Invalid attribute type (uint32 expected)" msgstr "Ugyldig attributtype (uint32 forventet)" -#: ../gio/glocalfileinfo.c:1818 +#: gio/glocalfileinfo.c:1818 msgid "Invalid attribute type (uint64 expected)" msgstr "Ugyldig attributtype (uint64 forventet)" -#: ../gio/glocalfileinfo.c:1837 ../gio/glocalfileinfo.c:1856 +#: gio/glocalfileinfo.c:1837 gio/glocalfileinfo.c:1856 msgid "Invalid attribute type (byte string expected)" msgstr "Ugyldig attributtype (byte-streng forventet)" -#: ../gio/glocalfileinfo.c:1891 +#: gio/glocalfileinfo.c:1891 msgid "Cannot set permissions on symlinks" msgstr "Kan ikke ændre rettigheder på symlænker" -#: ../gio/glocalfileinfo.c:1907 +#: gio/glocalfileinfo.c:1907 #, c-format msgid "Error setting permissions: %s" msgstr "Fejl ved ændring af rettigheder: %s" -#: ../gio/glocalfileinfo.c:1958 +#: gio/glocalfileinfo.c:1958 #, c-format msgid "Error setting owner: %s" msgstr "Fejl ved ændring af ejer: %s" -#: ../gio/glocalfileinfo.c:1981 +#: gio/glocalfileinfo.c:1981 msgid "symlink must be non-NULL" msgstr "symbolsk henvisning må ikke være NULL" -#: ../gio/glocalfileinfo.c:1991 ../gio/glocalfileinfo.c:2010 -#: ../gio/glocalfileinfo.c:2021 +#: gio/glocalfileinfo.c:1991 gio/glocalfileinfo.c:2010 +#: gio/glocalfileinfo.c:2021 #, c-format msgid "Error setting symlink: %s" msgstr "Fejl ved manipulation af symbolsk henvisning: %s" -#: ../gio/glocalfileinfo.c:2000 +#: gio/glocalfileinfo.c:2000 msgid "Error setting symlink: file is not a symlink" msgstr "" "Fejl ved manipulation af symbolsk henvisning: filen er ikke en symbolsk " "henvisning" -#: ../gio/glocalfileinfo.c:2126 +#: gio/glocalfileinfo.c:2126 #, c-format msgid "Error setting modification or access time: %s" msgstr "Fejl ved ændring af tidspunkt for ændring eller tilgang: %s" -#: ../gio/glocalfileinfo.c:2149 +#: gio/glocalfileinfo.c:2149 msgid "SELinux context must be non-NULL" msgstr "SELinux-kontekst skal være forskellig fra NULL" -#: ../gio/glocalfileinfo.c:2164 +#: gio/glocalfileinfo.c:2164 #, c-format msgid "Error setting SELinux context: %s" msgstr "Fejl ved ændring af SELinux-kontekst: %s" -#: ../gio/glocalfileinfo.c:2171 +#: gio/glocalfileinfo.c:2171 msgid "SELinux is not enabled on this system" msgstr "SELinux er ikke aktiveret på dette system" -#: ../gio/glocalfileinfo.c:2263 +#: gio/glocalfileinfo.c:2263 #, c-format msgid "Setting attribute %s not supported" msgstr "Indstilling af attributten %s understøttes ikke" -#: ../gio/glocalfileinputstream.c:171 ../gio/glocalfileoutputstream.c:708 +#: gio/glocalfileinputstream.c:171 gio/glocalfileoutputstream.c:708 #, c-format msgid "Error reading from file: %s" msgstr "Fejl ved læsning fra filen: %s" -#: ../gio/glocalfileinputstream.c:202 ../gio/glocalfileinputstream.c:214 -#: ../gio/glocalfileinputstream.c:326 ../gio/glocalfileoutputstream.c:456 -#: ../gio/glocalfileoutputstream.c:1012 +#: gio/glocalfileinputstream.c:202 gio/glocalfileinputstream.c:214 +#: gio/glocalfileinputstream.c:326 gio/glocalfileoutputstream.c:456 +#: gio/glocalfileoutputstream.c:1012 #, c-format msgid "Error seeking in file: %s" msgstr "Fejl under søgning i filen: %s" -#: ../gio/glocalfileinputstream.c:247 ../gio/glocalfileoutputstream.c:242 -#: ../gio/glocalfileoutputstream.c:337 +#: gio/glocalfileinputstream.c:247 gio/glocalfileoutputstream.c:242 +#: gio/glocalfileoutputstream.c:337 #, c-format msgid "Error closing file: %s" msgstr "Fejl ved lukning af filen: %s" -#: ../gio/glocalfilemonitor.c:213 +#: gio/glocalfilemonitor.c:213 msgid "Unable to find default local file monitor type" msgstr "Kan ikke finde standardmonitortype for lokal fil" -#: ../gio/glocalfileoutputstream.c:188 ../gio/glocalfileoutputstream.c:221 -#: ../gio/glocalfileoutputstream.c:729 +#: gio/glocalfileoutputstream.c:188 gio/glocalfileoutputstream.c:221 +#: gio/glocalfileoutputstream.c:729 #, c-format msgid "Error writing to file: %s" msgstr "Fejl under skrivning til filen: %s" -#: ../gio/glocalfileoutputstream.c:269 +#: gio/glocalfileoutputstream.c:269 #, c-format msgid "Error removing old backup link: %s" msgstr "Fejl under fjernelse af gammel sikkerhedskopi-henvisning: %s" -#: ../gio/glocalfileoutputstream.c:283 ../gio/glocalfileoutputstream.c:296 +#: gio/glocalfileoutputstream.c:283 gio/glocalfileoutputstream.c:296 #, c-format msgid "Error creating backup copy: %s" msgstr "Fejl under oprettelse af sikkerhedskopi: %s" -#: ../gio/glocalfileoutputstream.c:314 +#: gio/glocalfileoutputstream.c:314 #, c-format msgid "Error renaming temporary file: %s" msgstr "Fejl under omdøbning af midlertidig fil: %s" -#: ../gio/glocalfileoutputstream.c:502 ../gio/glocalfileoutputstream.c:1063 +#: gio/glocalfileoutputstream.c:502 gio/glocalfileoutputstream.c:1063 #, c-format msgid "Error truncating file: %s" msgstr "Fejl ved beskæring af filen: %s" -#: ../gio/glocalfileoutputstream.c:563 ../gio/glocalfileoutputstream.c:616 -#: ../gio/glocalfileoutputstream.c:661 ../gio/glocalfileoutputstream.c:801 -#: ../gio/glocalfileoutputstream.c:1044 ../gio/glocalfileoutputstream.c:1143 +#: gio/glocalfileoutputstream.c:563 gio/glocalfileoutputstream.c:616 +#: gio/glocalfileoutputstream.c:661 gio/glocalfileoutputstream.c:801 +#: gio/glocalfileoutputstream.c:1044 gio/glocalfileoutputstream.c:1143 #, c-format msgid "Error opening file '%s': %s" msgstr "Fejl ved åbning af filen \"%s\": %s" -#: ../gio/glocalfileoutputstream.c:832 +#: gio/glocalfileoutputstream.c:832 msgid "Target file is a directory" msgstr "Målfilen er en mappe" -#: ../gio/glocalfileoutputstream.c:837 +#: gio/glocalfileoutputstream.c:837 msgid "Target file is not a regular file" msgstr "Målfilen er ikke en almindelig fil" -#: ../gio/glocalfileoutputstream.c:849 +#: gio/glocalfileoutputstream.c:849 msgid "The file was externally modified" msgstr "Filen blev modificeret eksternt" -#: ../gio/glocalfileoutputstream.c:1028 +#: gio/glocalfileoutputstream.c:1028 #, c-format msgid "Error removing old file: %s" msgstr "Fejl under fjernelse af gammel fil: %s" -#: ../gio/gmemoryinputstream.c:487 ../gio/gmemoryoutputstream.c:718 +#: gio/gmemoryinputstream.c:487 gio/gmemoryoutputstream.c:718 msgid "Invalid GSeekType supplied" msgstr "Ugyldig GSeekType angivet" -#: ../gio/gmemoryinputstream.c:497 +#: gio/gmemoryinputstream.c:497 msgid "Invalid seek request" msgstr "Ugyldig søgeforespørgsel" -#: ../gio/gmemoryinputstream.c:521 +#: gio/gmemoryinputstream.c:521 msgid "Cannot truncate GMemoryInputStream" msgstr "Kan ikke beskære GMemoryInputStream" -#: ../gio/gmemoryoutputstream.c:468 +#: gio/gmemoryoutputstream.c:468 msgid "Memory output stream not resizable" msgstr "Hukommelses-uddatastrøm kan ikke ændre størrelse" -#: ../gio/gmemoryoutputstream.c:484 +#: gio/gmemoryoutputstream.c:484 msgid "Failed to resize memory output stream" msgstr "Kunne ikke ændre størrelse for hukommelses-uddatastrøm" -#: ../gio/gmemoryoutputstream.c:572 +#: gio/gmemoryoutputstream.c:572 msgid "" "Amount of memory required to process the write is larger than available " "address space" @@ -1784,32 +1776,32 @@ msgstr "" "Mængden af hukommelse, der kræves af skrivningen, er større end det " "tilgængelige adresserum" -#: ../gio/gmemoryoutputstream.c:728 +#: gio/gmemoryoutputstream.c:728 msgid "Requested seek before the beginning of the stream" msgstr "Forespurgte om søgning før begyndelse af strøm" -#: ../gio/gmemoryoutputstream.c:737 +#: gio/gmemoryoutputstream.c:737 msgid "Requested seek beyond the end of the stream" msgstr "Forespurgte om søgning efter afslutning af strøm" #. Translators: This is an error #. * message for mount objects that #. * don't implement unmount. -#: ../gio/gmount.c:364 +#: gio/gmount.c:364 msgid "mount doesn't implement \"unmount\"" msgstr "monteringsobjekt implementerer ikke \"unmount\"" #. Translators: This is an error #. * message for mount objects that #. * don't implement eject. -#: ../gio/gmount.c:443 +#: gio/gmount.c:443 msgid "mount doesn't implement \"eject\"" msgstr "monteringsobjekt implementerer ikke \"eject\"" #. Translators: This is an error #. * message for mount objects that #. * don't implement any of unmount or unmount_with_operation. -#: ../gio/gmount.c:523 +#: gio/gmount.c:523 msgid "mount doesn't implement \"unmount\" or \"unmount_with_operation\"" msgstr "" "monteringsobjekt implementerer ikke \"unmount\" eller " @@ -1818,7 +1810,7 @@ msgstr "" #. Translators: This is an error #. * message for mount objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gmount.c:610 +#: gio/gmount.c:610 msgid "mount doesn't implement \"eject\" or \"eject_with_operation\"" msgstr "" "monteringsobjekt implementerer ikke \"eject\" eller \"eject_with_operation\"" @@ -1826,275 +1818,275 @@ msgstr "" #. Translators: This is an error #. * message for mount objects that #. * don't implement remount. -#: ../gio/gmount.c:699 +#: gio/gmount.c:699 msgid "mount doesn't implement \"remount\"" msgstr "monteringsobjekt implementerer ikke \"remount\"" #. Translators: This is an error #. * message for mount objects that #. * don't implement content type guessing. -#: ../gio/gmount.c:783 +#: gio/gmount.c:783 msgid "mount doesn't implement content type guessing" msgstr "monteringsobjekt implementerer ikke gæt på indholdstype" #. Translators: This is an error #. * message for mount objects that #. * don't implement content type guessing. -#: ../gio/gmount.c:872 +#: gio/gmount.c:872 msgid "mount doesn't implement synchronous content type guessing" msgstr "monteringsobjekt implementerer ikke synkrone gæt på indholdstype" -#: ../gio/gnetworkaddress.c:295 +#: gio/gnetworkaddress.c:295 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "Værtsnavnet \"%s\" indeholder \"[\", men ikke \"]\"" -#: ../gio/goutputstream.c:207 ../gio/goutputstream.c:408 +#: gio/goutputstream.c:207 gio/goutputstream.c:408 msgid "Output stream doesn't implement write" msgstr "Uddatastrøm implementerer ikke write" -#: ../gio/goutputstream.c:369 ../gio/goutputstream.c:781 +#: gio/goutputstream.c:369 gio/goutputstream.c:781 msgid "Source stream is already closed" msgstr "Kildestrømmen er allerede lukket" -#: ../gio/gresolver.c:736 +#: gio/gresolver.c:736 #, c-format msgid "Error resolving '%s': %s" msgstr "Fejl ved opløsning af \"%s\": %s" -#: ../gio/gresolver.c:786 +#: gio/gresolver.c:786 #, c-format msgid "Error reverse-resolving '%s': %s" msgstr "Fejl ved baglæns opløsning af \"%s\": %s" -#: ../gio/gresolver.c:821 ../gio/gresolver.c:899 +#: gio/gresolver.c:821 gio/gresolver.c:899 #, c-format msgid "No service record for '%s'" msgstr "Ingen tjenestejournal for \"%s\"" -#: ../gio/gresolver.c:826 ../gio/gresolver.c:904 +#: gio/gresolver.c:826 gio/gresolver.c:904 #, c-format msgid "Temporarily unable to resolve '%s'" msgstr "Midlertidigt ude af stand til at opløse \"%s\"" -#: ../gio/gresolver.c:831 ../gio/gresolver.c:909 +#: gio/gresolver.c:831 gio/gresolver.c:909 #, c-format msgid "Error resolving '%s'" msgstr "Fejl ved opløsning af \"%s\"" -#: ../gio/gsocket.c:277 +#: gio/gsocket.c:277 msgid "Invalid socket, not initialized" msgstr "Ugyldig sokkel, ikke initialiseret" -#: ../gio/gsocket.c:284 +#: gio/gsocket.c:284 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "Ugyldig sokkel, initialisering mislykkedes på grund af: %s" -#: ../gio/gsocket.c:292 +#: gio/gsocket.c:292 msgid "Socket is already closed" msgstr "Soklen er allerede lukket" -#: ../gio/gsocket.c:413 +#: gio/gsocket.c:413 #, c-format msgid "creating GSocket from fd: %s" msgstr "opretter GSocket fra fd: %s" -#: ../gio/gsocket.c:447 ../gio/gsocket.c:461 ../gio/gsocket.c:1925 +#: gio/gsocket.c:447 gio/gsocket.c:461 gio/gsocket.c:1925 #, c-format msgid "Unable to create socket: %s" msgstr "Kan ikke oprette sokkel: %s" -#: ../gio/gsocket.c:447 +#: gio/gsocket.c:447 msgid "Unknown protocol was specified" msgstr "Der blev angivet en ukendt protokol" -#: ../gio/gsocket.c:1126 +#: gio/gsocket.c:1126 #, c-format msgid "could not get local address: %s" msgstr "kunne ikke finde lokal adresse: %s" -#: ../gio/gsocket.c:1159 +#: gio/gsocket.c:1159 #, c-format msgid "could not get remote address: %s" msgstr "kunne ikke finde fjern adresse: %s" -#: ../gio/gsocket.c:1217 +#: gio/gsocket.c:1217 #, c-format msgid "could not listen: %s" msgstr "kunne ikke lytte: %s" -#: ../gio/gsocket.c:1291 +#: gio/gsocket.c:1291 #, c-format msgid "Error binding to address: %s" msgstr "Fejl ved binding til adresse: %s" -#: ../gio/gsocket.c:1411 +#: gio/gsocket.c:1411 #, c-format msgid "Error accepting connection: %s" msgstr "Fejl ved accept af forbindelse: %s" -#: ../gio/gsocket.c:1524 +#: gio/gsocket.c:1524 msgid "Error connecting: " msgstr "Fejl ved forbindelse: " -#: ../gio/gsocket.c:1528 +#: gio/gsocket.c:1528 msgid "Connection in progress" msgstr "Forbinder" -#: ../gio/gsocket.c:1533 +#: gio/gsocket.c:1533 #, c-format msgid "Error connecting: %s" msgstr "Fejl ved forbindelse: %s" -#: ../gio/gsocket.c:1573 +#: gio/gsocket.c:1573 #, c-format msgid "Unable to get pending error: %s" msgstr "Kan ikke hente verserende fejl: %s" -#: ../gio/gsocket.c:1669 +#: gio/gsocket.c:1669 #, c-format msgid "Error receiving data: %s" msgstr "Fejl ved modtagelse af data: %s" -#: ../gio/gsocket.c:1812 +#: gio/gsocket.c:1812 #, c-format msgid "Error sending data: %s" msgstr "Fejl ved afsendelse af data: %s" -#: ../gio/gsocket.c:2004 +#: gio/gsocket.c:2004 #, c-format msgid "Error closing socket: %s" msgstr "Fejl ved lukning af sokkel: %s" -#: ../gio/gsocket.c:2481 +#: gio/gsocket.c:2481 #, c-format msgid "Waiting for socket condition: %s" msgstr "Venter på sokkelbetingelse: %s" -#: ../gio/gsocket.c:2720 ../gio/gsocket.c:2801 +#: gio/gsocket.c:2720 gio/gsocket.c:2801 #, c-format msgid "Error sending message: %s" msgstr "Fejl ved afsendelse af meddelelse: %s" -#: ../gio/gsocket.c:2745 +#: gio/gsocket.c:2745 msgid "GSocketControlMessage not supported on windows" msgstr "GSocketControlMessage understøttes ikke af windows" -#: ../gio/gsocket.c:3003 ../gio/gsocket.c:3141 +#: gio/gsocket.c:3003 gio/gsocket.c:3141 #, c-format msgid "Error receiving message: %s" msgstr "Fejl ved modtagelse af meddelelse: %s" -#: ../gio/gsocketclient.c:521 ../gio/gsocketclient.c:770 +#: gio/gsocketclient.c:521 gio/gsocketclient.c:770 msgid "Unknown error on connect" msgstr "Ukendt forbindelsesfejl" # Relateret til ordlistens "(SMTP )listener -> *(SMTP-)modtager" -#: ../gio/gsocketlistener.c:192 +#: gio/gsocketlistener.c:192 msgid "Listener is already closed" msgstr "Modtager er allerede lukket" -#: ../gio/gsocketlistener.c:233 +#: gio/gsocketlistener.c:233 msgid "Added socket is closed" msgstr "Tilføjede sokkel er lukket" -#: ../gio/gthemedicon.c:499 +#: gio/gthemedicon.c:499 #, c-format msgid "Can't handle version %d of GThemedIcon encoding" msgstr "Kan ikke håndtere version %d af GThemedIcon-kodningen" -#: ../gio/gunixconnection.c:151 +#: gio/gunixconnection.c:151 #, c-format msgid "Expecting 1 control message, got %d" msgstr "Forventer én kontrolmeddelelse, modtog %d" -#: ../gio/gunixconnection.c:164 +#: gio/gunixconnection.c:164 msgid "Unexpected type of ancillary data" msgstr "Uventet type af supplerende data" -#: ../gio/gunixconnection.c:182 +#: gio/gunixconnection.c:182 #, c-format msgid "Expecting one fd, but got %d\n" msgstr "Forventede én fd, men fik %d\n" -#: ../gio/gunixconnection.c:198 +#: gio/gunixconnection.c:198 msgid "Received invalid fd" msgstr "Modtog ugyldig fd" -#: ../gio/gunixinputstream.c:354 ../gio/gunixinputstream.c:374 -#: ../gio/gunixinputstream.c:452 ../gio/gunixoutputstream.c:439 +#: gio/gunixinputstream.c:354 gio/gunixinputstream.c:374 +#: gio/gunixinputstream.c:452 gio/gunixoutputstream.c:439 #, c-format msgid "Error reading from unix: %s" msgstr "Fejl ved læsning fra unix: %s" -#: ../gio/gunixinputstream.c:407 ../gio/gunixinputstream.c:589 -#: ../gio/gunixoutputstream.c:394 ../gio/gunixoutputstream.c:545 +#: gio/gunixinputstream.c:407 gio/gunixinputstream.c:589 +#: gio/gunixoutputstream.c:394 gio/gunixoutputstream.c:545 #, c-format msgid "Error closing unix: %s" msgstr "Fejl ved lukningaf unix: %s" -#: ../gio/gunixmounts.c:1846 ../gio/gunixmounts.c:1883 +#: gio/gunixmounts.c:1846 gio/gunixmounts.c:1883 msgid "Filesystem root" msgstr "Filsystemets rod" -#: ../gio/gunixoutputstream.c:340 ../gio/gunixoutputstream.c:361 +#: gio/gunixoutputstream.c:340 gio/gunixoutputstream.c:361 #, c-format msgid "Error writing to unix: %s" msgstr "Fejl ved skrivning til unix: %s" # "[abstract unix domain]-socket address" eller "abstract [unix domain socket] address", eller en anden kombination? Vi må hellere bibeholde ordenes rækkefølge på bekostning af at ordet bliver meget langt -#: ../gio/gunixsocketaddress.c:182 +#: gio/gunixsocketaddress.c:182 msgid "Abstract unix domain socket addresses not supported on this system" msgstr "Abstrakte unix-domænesokkeladresser understøttes ikke af dette system" # eject og eject_with_operation må være funktionskald, så de bør ikke oversættes (naturligvis er det ikke en særlig brugervenlig fejlmeddelelse, men det er jo udviklerne der bestemmer dette) -#: ../gio/gvolume.c:407 +#: gio/gvolume.c:407 msgid "volume doesn't implement eject" msgstr "diskenhed implementerer ikke eject" #. Translators: This is an error #. * message for volume objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gvolume.c:486 +#: gio/gvolume.c:486 msgid "volume doesn't implement eject or eject_with_operation" msgstr "diskenhed implementerer ikke eject eller eject_with_operation" -#: ../gio/gwin32appinfo.c:277 +#: gio/gwin32appinfo.c:277 msgid "Can't find application" msgstr "Kan ikke finde program" -#: ../gio/gwin32appinfo.c:300 +#: gio/gwin32appinfo.c:300 #, c-format msgid "Error launching application: %s" msgstr "Fejl ved opstart af program: %s" -#: ../gio/gwin32appinfo.c:336 +#: gio/gwin32appinfo.c:336 msgid "URIs not supported" msgstr "URI'er understøttes ikke" -#: ../gio/gwin32appinfo.c:358 +#: gio/gwin32appinfo.c:358 msgid "association changes not supported on win32" msgstr "associationsændring understøttes ikke af win32" -#: ../gio/gwin32appinfo.c:370 +#: gio/gwin32appinfo.c:370 msgid "Association creation not supported on win32" msgstr "Associationsoprettelse understøttes ikke i win32" -#: ../gio/gzlibcompressor.c:279 ../gio/gzlibdecompressor.c:250 +#: gio/gzlibcompressor.c:279 gio/gzlibdecompressor.c:250 msgid "Not enough memory" msgstr "Utilstrækkelig hukommelse" -#: ../gio/gzlibcompressor.c:286 ../gio/gzlibdecompressor.c:257 +#: gio/gzlibcompressor.c:286 gio/gzlibdecompressor.c:257 #, c-format msgid "Internal error: %s" msgstr "Intern fejl: %s" -#: ../gio/gzlibcompressor.c:299 ../gio/gzlibdecompressor.c:271 +#: gio/gzlibcompressor.c:299 gio/gzlibdecompressor.c:271 msgid "Need more input" msgstr "Kræver yderligere input" -#: ../gio/gzlibdecompressor.c:243 +#: gio/gzlibdecompressor.c:243 msgid "Invalid compressed data" msgstr "Ugyldige komprimerede data" @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: glib master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-04 22:01+0100\n" "Last-Translator: Mario Blättermann <mariobl@gnome.org>\n" "Language-Team: Deutsch <gnome-de@gnome.org>\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD.dz\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2006-08-09 10:23+0530\n" "Last-Translator: Mindu Dorji\n" "Language-Team: DZONGKHA <pgeyleg@dit.gov.bt>\n" @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-18 23:12+0200\n" "Last-Translator: nikolaosx1 <nikolaosx1@gmail.com>\n" "Language-Team: Greek\n" diff --git a/po/en@shaw.po b/po/en@shaw.po index f153dda84..41fd83d3e 100644 --- a/po/en@shaw.po +++ b/po/en@shaw.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Thomas Thurman <tthurman@gnome.org>\n" "Language-Team: Shavian <ubuntu-l10n-en-shaw@lists.launchpad.net>\n" diff --git a/po/en_CA.po b/po/en_CA.po index 8660e3efc..8071b5d1a 100644 --- a/po/en_CA.po +++ b/po/en_CA.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2005-08-27 16:20-0400\n" "Last-Translator: Adam Weinberger <adamw@gnome.org>\n" "Language-Team: Canadian English <adamw@gnome.org>\n" diff --git a/po/en_GB.po b/po/en_GB.po index 1bd149324..05c55d6c7 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-02-24 15:27+0100\n" "Last-Translator: Philip Withnall <philip@tecnocode.co.uk>\n" "Language-Team: British English <en@li.org>\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.3.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2003-07-01 15:10-0500\n" "Last-Translator: Charles Voelger <cvoelger@dweasel.com>\n" "Language-Team: Esperanto <LL@li.org>\n" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-07 11:48+0100\n" "Last-Translator: Jorge González <jorgegonz@svn.gnome.org>\n" "Language-Team: Español <gnome-es-list@gnome.org>\n" @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: GLib MASTER\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-05 09:47+0200\n" "Last-Translator: Ivar Smolin <okul@linux.ee>\n" "Language-Team: Estonian <gnome-et@linux.ee>\n" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: eu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-22 12:31+0100\n" "Last-Translator: Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>\n" "Language-Team: Basque <itzulpena@euskalgnu.org>\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2006-09-04 18:36+0330\n" "Last-Translator: Roozbeh Pournader <roozbeh@farsiweb.info>\n" "Language-Team: Persian\n" @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-20 00:00+0200\n" "Last-Translator: Tommi Vainikainen <thv@iki.fi>\n" "Language-Team: Finnish <gnome-fi-laatu@lists.sourceforge.net>\n" @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: glib HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-05 22:31+0100\n" "Last-Translator: Claude Paroz <claude@2xlibre.net>\n" "Language-Team: GNOME French Team <gnomefr@traduc.org>\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2009-08-08 01:49-0600\n" "Last-Translator: Seán de Búrca <leftmostcat@gmail.com>\n" "Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n" @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-09 09:51+0100\n" "Last-Translator: Fran Diéguez <frandieguez@ubuntu.com>\n" "Language-Team: Galician <gnome@g11n.net>\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.master.gu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2009-09-09 16:51+0530\n" "Last-Translator: Sweta Kothari <swkothar@redhat.com>\n" "Language-Team: Gujarati\n" @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD.he\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2009-09-06 09:32+0200\n" "Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" "Language-Team: Hebrew <he@li.org>\n" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2009-09-11 15:59+0530\n" "Last-Translator: Rajesh Ranjan <rajesh672@gmail.com>\n" "Language-Team: Hindi <hindi.sf.net>\n" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2008-05-18 15:38+0000\n" "Last-Translator: Launchpad Translations Administrators <rosetta@launchpad." "net>\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-05 22:02+0100\n" "Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n" "Language-Team: Hungarian <gnome at fsf dot hu>\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2006-03-03 16:24+0000\n" "Last-Translator: Norayr Chilingaryan <norik@freenet.am>\n" "Language-Team: Armenian <norik@freenet.am>\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2005-08-30 22:41+0300\n" "Last-Translator: Mohammad DAMT <mdamt@bisnisweb.com>\n" "Language-Team: Indonesia <sukarelawan@gnome.linux.or.id>\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2003-08-18 18:05+0000\n" "Last-Translator: Richard Allen <ra@ra.is>\n" "Language-Team: is <is@li.org>\n" @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.21.x\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-06 01:03+0100\n" "Last-Translator: Luca Ferretti <lferrett@gnome.org>\n" "Language-Team: Italian <tp@lists.linux.it>\n" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: glib master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2009-09-05 22:30+0900\n" "Last-Translator: Takayuki KUSANO <AE5T-KSN@asahi-net.or.jp>\n" "Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: ka\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2007-09-14 12:15+0200\n" "Last-Translator: Vladimer Sichinava ვლადიმერ სიჭინავა <vsichi@gnome.org>\n" "Language-Team: Georgian <http://mail.gnome.org/mailman/listinfo/gnome-ge-" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.master.kn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-22 16:20+0530\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-04-22 16:21+0530\n" "Last-Translator: Shankar Prasad <svenkate@redhat.com>\n" "Language-Team: kn-IN <>\n" @@ -17,340 +17,338 @@ msgstr "" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../glib/gbookmarkfile.c:737 +#: glib/gbookmarkfile.c:737 #, c-format msgid "Unexpected attribute '%s' for element '%s'" msgstr "'%s'ಘಟಕಕ್ಕೆ ಅನಪೇಕ್ಷಿತ ಗುಣ ವಿಶೇಷ '%s'" -#: ../glib/gbookmarkfile.c:748 ../glib/gbookmarkfile.c:819 -#: ../glib/gbookmarkfile.c:829 ../glib/gbookmarkfile.c:936 +#: glib/gbookmarkfile.c:748 glib/gbookmarkfile.c:819 glib/gbookmarkfile.c:829 +#: glib/gbookmarkfile.c:936 #, c-format msgid "Attribute '%s' of element '%s' not found" msgstr "'%s' ದ ಘಟಕಕ್ಕೆ '%s' ಗುಣವಿಶೇಷ ಪತ್ತೆಯಾಗಿಲ್ಲ" -#: ../glib/gbookmarkfile.c:1106 ../glib/gbookmarkfile.c:1171 -#: ../glib/gbookmarkfile.c:1235 ../glib/gbookmarkfile.c:1245 +#: glib/gbookmarkfile.c:1106 glib/gbookmarkfile.c:1171 +#: glib/gbookmarkfile.c:1235 glib/gbookmarkfile.c:1245 #, c-format msgid "Unexpected tag '%s', tag '%s' expected" msgstr "ಅನಪೇಕ್ಷಿತ ಪದಗುಚ್ಛ '%s', ಪದಗುಚ್ಛ '%s' ವನ್ನು ಅಪೇಕ್ಷಿಸಲಾಗಿತ್ತು" -#: ../glib/gbookmarkfile.c:1131 ../glib/gbookmarkfile.c:1145 -#: ../glib/gbookmarkfile.c:1213 ../glib/gbookmarkfile.c:1265 +#: glib/gbookmarkfile.c:1131 glib/gbookmarkfile.c:1145 +#: glib/gbookmarkfile.c:1213 glib/gbookmarkfile.c:1265 #, c-format msgid "Unexpected tag '%s' inside '%s'" msgstr "'%s' ದ ಒಳಗೆ ಅನಪೇಕ್ಷಿತ ಪದಗುಚ್ಛ '%s" -#: ../glib/gbookmarkfile.c:1793 +#: glib/gbookmarkfile.c:1793 msgid "No valid bookmark file found in data dirs" msgstr "ದತ್ತಾಂಶ ಕೋಶದಲ್ಲಿ ಯಾವುದೇ ಮಾನ್ಯ ಬುಕ್ ಮಾರ್ಕ್ ಕಂಡು ಬಂದಿಲ್ಲ" -#: ../glib/gbookmarkfile.c:1994 +#: glib/gbookmarkfile.c:1994 #, c-format msgid "A bookmark for URI '%s' already exists" msgstr "URI '%s' ಗೆ ಈಗಾಗಲೆ ಒಂದು ಬುಕ್ ಮಾರ್ಕ್ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ" -#: ../glib/gbookmarkfile.c:2040 ../glib/gbookmarkfile.c:2198 -#: ../glib/gbookmarkfile.c:2283 ../glib/gbookmarkfile.c:2363 -#: ../glib/gbookmarkfile.c:2448 ../glib/gbookmarkfile.c:2531 -#: ../glib/gbookmarkfile.c:2609 ../glib/gbookmarkfile.c:2688 -#: ../glib/gbookmarkfile.c:2730 ../glib/gbookmarkfile.c:2827 -#: ../glib/gbookmarkfile.c:2953 ../glib/gbookmarkfile.c:3143 -#: ../glib/gbookmarkfile.c:3219 ../glib/gbookmarkfile.c:3384 -#: ../glib/gbookmarkfile.c:3473 ../glib/gbookmarkfile.c:3563 -#: ../glib/gbookmarkfile.c:3691 +#: glib/gbookmarkfile.c:2040 glib/gbookmarkfile.c:2198 +#: glib/gbookmarkfile.c:2283 glib/gbookmarkfile.c:2363 +#: glib/gbookmarkfile.c:2448 glib/gbookmarkfile.c:2531 +#: glib/gbookmarkfile.c:2609 glib/gbookmarkfile.c:2688 +#: glib/gbookmarkfile.c:2730 glib/gbookmarkfile.c:2827 +#: glib/gbookmarkfile.c:2953 glib/gbookmarkfile.c:3143 +#: glib/gbookmarkfile.c:3219 glib/gbookmarkfile.c:3384 +#: glib/gbookmarkfile.c:3473 glib/gbookmarkfile.c:3563 +#: glib/gbookmarkfile.c:3691 #, c-format msgid "No bookmark found for URI '%s'" msgstr "URI '%s' ಗೆ ಯಾವುದೇ ಬುಕ್ ಮಾರ್ಕ್ ಕಂಡು ಬಂದಿಲ್ಲ" -#: ../glib/gbookmarkfile.c:2372 +#: glib/gbookmarkfile.c:2372 #, c-format msgid "No MIME type defined in the bookmark for URI '%s'" msgstr "URI '%s' ಗಾಗಿನ ಬುಕ್ ಮಾರ್ಕಿನಲ್ಲಿ ಯಾವುದೇ MIME ಪ್ರಕಾರವು ಕಂಡುಬಂದಿಲ್ಲ" -#: ../glib/gbookmarkfile.c:2457 +#: glib/gbookmarkfile.c:2457 #, c-format msgid "No private flag has been defined in bookmark for URI '%s'" msgstr "URI '%s' ನ ಬುಕ್ ಮಾರ್ಕಿನಲ್ಲಿ ಯಾವುದೇ ಖಾಸಗಿ ನಿಶಾನೆಯು ಸೂಚಿತವಾಗಿಲ್ಲ" -#: ../glib/gbookmarkfile.c:2836 +#: glib/gbookmarkfile.c:2836 #, c-format msgid "No groups set in bookmark for URI '%s'" msgstr "URI '%s' ಗಾಗಿ ಯಾವುದೇ ಸಮೂಹವು ಸಂಯೋಜಿತವಾಗಿಲ್ಲ" -#: ../glib/gbookmarkfile.c:3237 ../glib/gbookmarkfile.c:3394 +#: glib/gbookmarkfile.c:3237 glib/gbookmarkfile.c:3394 #, c-format msgid "No application with name '%s' registered a bookmark for '%s'" msgstr "'%s' ಎಂಬ ಹೆಸರಿನ ಯಾವುದೇ ಅನ್ವಯವು '%s' ಗಾಗಿ ಒಂದು ಬುಕ್-ಮಾರ್ಕನ್ನು ನೊಂದಾಯಿಸಿಲ್ಲ" -#: ../glib/gbookmarkfile.c:3417 +#: glib/gbookmarkfile.c:3417 #, c-format msgid "Failed to expand exec line '%s' with URI '%s'" msgstr "exec ಸಾಲು '%s' ಅನ್ನು URI '%s' ನೊಂದಿಗೆ ವಿಸ್ತರಿಸುವಲ್ಲಿ ವಿಫಲತೆ ಎದುರಾಗಿದೆ" -#: ../glib/gconvert.c:437 ../glib/gconvert.c:515 ../glib/giochannel.c:1404 -#: ../gio/gcharsetconverter.c:459 +#: glib/gconvert.c:437 glib/gconvert.c:515 glib/giochannel.c:1404 +#: gio/gcharsetconverter.c:459 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "'%s' ಅಕ್ಷರಗಳಿಂದ '%s' ಗೆ ಪರಿವರ್ತಿಸುವುದು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" -#: ../glib/gconvert.c:441 ../glib/gconvert.c:519 -#: ../gio/gcharsetconverter.c:463 +#: glib/gconvert.c:441 glib/gconvert.c:519 gio/gcharsetconverter.c:463 #, c-format msgid "Could not open converter from '%s' to '%s'" msgstr "'%s' ನಿಂದ '%s'ಗೆ ಪರಿವರ್ತಕವನ್ನು ತೆರೆಯಲಾಗುತ್ತಿಲ್ಲ" -#: ../glib/gconvert.c:638 ../glib/gconvert.c:1031 ../glib/giochannel.c:1576 -#: ../glib/giochannel.c:1618 ../glib/giochannel.c:2462 ../glib/gutf8.c:981 -#: ../glib/gutf8.c:1436 ../gio/gcharsetconverter.c:346 +#: glib/gconvert.c:638 glib/gconvert.c:1031 glib/giochannel.c:1576 +#: glib/giochannel.c:1618 glib/giochannel.c:2462 glib/gutf8.c:981 +#: glib/gutf8.c:1436 gio/gcharsetconverter.c:346 msgid "Invalid byte sequence in conversion input" msgstr "ಪರಿವರ್ತಿತ ಆದಾನದಲ್ಲಿನ ಬೈಟ್ ಅನುಕ್ರಮ ಅಮಾನ್ಯವಾಗಿದೆ" -#: ../glib/gconvert.c:646 ../glib/gconvert.c:956 ../glib/giochannel.c:1583 -#: ../glib/giochannel.c:2474 ../gio/gcharsetconverter.c:351 +#: glib/gconvert.c:646 glib/gconvert.c:956 glib/giochannel.c:1583 +#: glib/giochannel.c:2474 gio/gcharsetconverter.c:351 #, c-format msgid "Error during conversion: %s" msgstr "ಪರಿವರ್ತಿಸುವಾಗ ದೋಷ: %s" -#: ../glib/gconvert.c:678 ../glib/gutf8.c:977 ../glib/gutf8.c:1187 -#: ../glib/gutf8.c:1328 ../glib/gutf8.c:1432 +#: glib/gconvert.c:678 glib/gutf8.c:977 glib/gutf8.c:1187 glib/gutf8.c:1328 +#: glib/gutf8.c:1432 msgid "Partial character sequence at end of input" msgstr "ಆದಾನದ ಕೊನೆಯಲ್ಲಿ ಆಂಶಿಕ ಅಕ್ಷರ ಅನುಕ್ರಮಣೆ" -#: ../glib/gconvert.c:928 +#: glib/gconvert.c:928 #, c-format msgid "Cannot convert fallback '%s' to codeset '%s'" msgstr "fallback '%s' ಅನ್ನು ಸಂಕೇತಸೆಟ್ '%s' ಗೆ ಪರಿವರ್ತಿಸಲಾಗಿಲ್ಲ" -#: ../glib/gconvert.c:1751 +#: glib/gconvert.c:1751 #, c-format msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" msgstr "URI '%s' \"ಕಡತ\" ವಿಧಾನವನ್ನು ಬಳಸುವ ಒಂದು ಪರಿಪೂರ್ಣವಾದ URI ಅಲ್ಲ" -#: ../glib/gconvert.c:1761 +#: glib/gconvert.c:1761 #, c-format msgid "The local file URI '%s' may not include a '#'" msgstr "ಸ್ಥಳೀಯ ಕಡತ URI '%s' ಒಂದು '#' ಅನ್ನು ಹೊಂದಿಲ್ಲದಿರಬಹುದು" -#: ../glib/gconvert.c:1778 +#: glib/gconvert.c:1778 #, c-format msgid "The URI '%s' is invalid" msgstr "URI '%s' ಅಮಾನ್ಯವಾಗಿದೆ" -#: ../glib/gconvert.c:1790 +#: glib/gconvert.c:1790 #, c-format msgid "The hostname of the URI '%s' is invalid" msgstr "URI '%s' ನ ಅತಿಥೇಯದ ಹೆಸರು ಸರಿಯಿಲ್ಲ" -#: ../glib/gconvert.c:1806 +#: glib/gconvert.c:1806 #, c-format msgid "The URI '%s' contains invalidly escaped characters" msgstr "URI '%s' ಅಮಾನ್ಯವಾಗಿ ನುಣುಚಿಕೊಂಡ ಚಿಹ್ನೆಗಳನ್ನು ಒಳಗೊಂಡಿದೆ" -#: ../glib/gconvert.c:1901 +#: glib/gconvert.c:1901 #, c-format msgid "The pathname '%s' is not an absolute path" msgstr "ಪಥದ ಹೆಸರು '%s' ಒಂದು ಪರಿಪೂರ್ಣವಾದ ಪಥವಲ್ಲ" -#: ../glib/gconvert.c:1911 +#: glib/gconvert.c:1911 msgid "Invalid hostname" msgstr "ಅಮಾನ್ಯವಾದ ಅತಿಥೇಯದ ಹೆಸರು" -#: ../glib/gdir.c:112 ../glib/gdir.c:135 +#: glib/gdir.c:112 glib/gdir.c:135 #, c-format msgid "Error opening directory '%s': %s" msgstr "ಕಡತ ಕೋಶ '%s' ವನ್ನು ತೆರೆಯುವಲ್ಲಿ ದೋಷ: %s" -#: ../glib/gfileutils.c:536 ../glib/gfileutils.c:624 +#: glib/gfileutils.c:536 glib/gfileutils.c:624 #, c-format msgid "Could not allocate %lu bytes to read file \"%s\"" msgstr "%lu ಬೈಟ್ಗಳನ್ನು, \"%s\" ಕಡತವನ್ನು ಓದುವಂತೆ ನಿಯೋಜಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" -#: ../glib/gfileutils.c:551 +#: glib/gfileutils.c:551 #, c-format msgid "Error reading file '%s': %s" msgstr "'%s' ಕಡತವನ್ನು ಓದುವಲ್ಲಿ ದೋಷ: %s" -#: ../glib/gfileutils.c:565 +#: glib/gfileutils.c:565 #, c-format msgid "File \"%s\" is too large" msgstr "ಕಡತ \"%s\" ವು ಬಹಳ ದೊಡ್ಡದಾಗಿದೆ" -#: ../glib/gfileutils.c:648 +#: glib/gfileutils.c:648 #, c-format msgid "Failed to read from file '%s': %s" msgstr "'%s' ಕಡತದಿಂದ ಓದುವಲ್ಲಿ ವಿಫಲತೆ: %s" -#: ../glib/gfileutils.c:699 ../glib/gfileutils.c:786 +#: glib/gfileutils.c:699 glib/gfileutils.c:786 #, c-format msgid "Failed to open file '%s': %s" msgstr "'%s' ಅನ್ನು ತೆರೆಯಲು ವಿಫಲವಾಗಿದೆ: %s" -#: ../glib/gfileutils.c:716 ../glib/gmappedfile.c:170 +#: glib/gfileutils.c:716 glib/gmappedfile.c:170 #, c-format msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgstr "'%s' ಕಡತದಿಂದ ಗುಣಲಕ್ಷಣಗಳನ್ನು ಪಡೆಯುವಲ್ಲಿ ವಿಫಲತೆ: fstat() ವಿಫಲಗೊಂಡಿದೆ: %s" -#: ../glib/gfileutils.c:750 +#: glib/gfileutils.c:750 #, c-format msgid "Failed to open file '%s': fdopen() failed: %s" msgstr "'%s' ಕಡತವನ್ನು ಓದುವಲ್ಲಿ ವಿಫಲತೆ: fdopen() ವಿಫಲಗೊಂಡಿದೆ: %s" -#: ../glib/gfileutils.c:858 +#: glib/gfileutils.c:858 #, c-format msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgstr "'%s' ಕಡತವನ್ನು '%s' ಕ್ಕೆ ಪುನರ್ ನಾಮಕರಣ ಮಾಡುವಲ್ಲಿ: g_rename() ವಿಫಲಗೊಂಡಿದೆ: %s" -#: ../glib/gfileutils.c:900 ../glib/gfileutils.c:1366 +#: glib/gfileutils.c:900 glib/gfileutils.c:1366 #, c-format msgid "Failed to create file '%s': %s" msgstr "'%s' ಕಡತವನ್ನು ರಚಿಸುವಲ್ಲಿ ವಿಫಲತೆ: %s" -#: ../glib/gfileutils.c:914 +#: glib/gfileutils.c:914 #, c-format msgid "Failed to open file '%s' for writing: fdopen() failed: %s" msgstr "" "ಕಡತ '%s' ವನ್ನು ಬರೆಯಲು ಅನುವಾಗುವಣ್ತೆ ತೆರೆಯುವಲ್ಲಿ ವಿಫಲತೆ: fdopen() ವಿಫಲಗೊಂಡಿದೆ: %s" -#: ../glib/gfileutils.c:939 +#: glib/gfileutils.c:939 #, c-format msgid "Failed to write file '%s': fwrite() failed: %s" msgstr "ಕಡತ '%s'ವನ್ನು ಬರೆಯುವಲ್ಲಿ ವಿಫಲತೆ: fwrite() ವಿಫಲಗೊಂಡಿದೆ: %s" -#: ../glib/gfileutils.c:958 +#: glib/gfileutils.c:958 #, c-format msgid "Failed to write file '%s': fflush() failed: %s" msgstr "ಕಡತ '%s'ವನ್ನು ಬರೆಯುವಲ್ಲಿ ವಿಫಲತೆ: fflush() ವಿಫಲಗೊಂಡಿದೆ: %s" -#: ../glib/gfileutils.c:987 +#: glib/gfileutils.c:987 #, c-format msgid "Failed to write file '%s': fsync() failed: %s" msgstr "ಕಡತ '%s'ವನ್ನು ಬರೆಯುವಲ್ಲಿ ವಿಫಲತೆ: fsync()) ವಿಫಲಗೊಂಡಿದೆ: %s" -#: ../glib/gfileutils.c:1006 +#: glib/gfileutils.c:1006 #, c-format msgid "Failed to close file '%s': fclose() failed: %s" msgstr "ಕಡತ '%s' ವನ್ನು ಮುಚ್ಚುವಲ್ಲಿ ವಿಫಲತೆ: fclose() ವಿಫಲಗೊಂಡಿದೆ: %s" -#: ../glib/gfileutils.c:1124 +#: glib/gfileutils.c:1124 #, c-format msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgstr "" "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ '%s' ಕಡತವನ್ನು ತೆಗೆದು ಹಾಕಲಾಗುವುದಿಲ್ಲ: g_unlink() ವಿಫಲಗೊಂಡಿದೆ: %s" -#: ../glib/gfileutils.c:1328 +#: glib/gfileutils.c:1328 #, c-format msgid "Template '%s' invalid, should not contain a '%s'" msgstr "ಮಾದರಿ '%s' ಅಮಾನ್ಯವಾಗಿದೆ, ಅದು ಒಂದು '%s' ಅನ್ನು ಹೊಂದಿರುವಂತಿಲ್ಲ" -#: ../glib/gfileutils.c:1341 +#: glib/gfileutils.c:1341 #, c-format msgid "Template '%s' doesn't contain XXXXXX" msgstr "ಮಾದರಿ '%s' ಯು XXXXXX ಅನ್ನು ಹೊಂದಿಲ್ಲ" -#: ../glib/gfileutils.c:1774 +#: glib/gfileutils.c:1774 #, c-format msgid "%u byte" msgid_plural "%u bytes" msgstr[0] "%u ಬೈಟ್" msgstr[1] "%u ಬೈಟ್ಗಳು" -#: ../glib/gfileutils.c:1782 +#: glib/gfileutils.c:1782 #, c-format msgid "%.1f KB" msgstr "%.1f KB" -#: ../glib/gfileutils.c:1787 +#: glib/gfileutils.c:1787 #, c-format msgid "%.1f MB" msgstr "%.1f MB" -#: ../glib/gfileutils.c:1792 +#: glib/gfileutils.c:1792 #, c-format msgid "%.1f GB" msgstr "%.1f GB" -#: ../glib/gfileutils.c:1797 +#: glib/gfileutils.c:1797 #, c-format msgid "%.1f TB" msgstr "%.1f TB" -#: ../glib/gfileutils.c:1802 +#: glib/gfileutils.c:1802 #, c-format msgid "%.1f PB" msgstr "%.1f PB" -#: ../glib/gfileutils.c:1807 +#: glib/gfileutils.c:1807 #, c-format msgid "%.1f EB" msgstr "%.1f EB" -#: ../glib/gfileutils.c:1850 +#: glib/gfileutils.c:1850 #, c-format msgid "Failed to read the symbolic link '%s': %s" msgstr "ಸಾಂಕೇತಿಕ ಲಿಂಕ್ '%s' ಅನ್ನು ಓದುವಲ್ಲಿ ವಿಫಲತೆ: %s" -#: ../glib/gfileutils.c:1871 +#: glib/gfileutils.c:1871 msgid "Symbolic links not supported" msgstr "ಸಾಂಕೇತಿಕ ಲಿಂಕುಗಳು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" -#: ../glib/giochannel.c:1408 +#: glib/giochannel.c:1408 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "'%s' ನಿಂದ '%s' ಗೆ ಪರಿವರ್ತಕವನ್ನು ತೆರೆಯಲು ಆಗಿಲ್ಲ: %s" -#: ../glib/giochannel.c:1753 +#: glib/giochannel.c:1753 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "g_io_channel_read_line_string ನಲ್ಲಿ ಒಂದು ಹಗುರ ಓದನ್ನು ಮಾಡಲಾಗಲಿಲ್ಲ" -#: ../glib/giochannel.c:1800 ../glib/giochannel.c:2058 -#: ../glib/giochannel.c:2145 +#: glib/giochannel.c:1800 glib/giochannel.c:2058 glib/giochannel.c:2145 msgid "Leftover unconverted data in read buffer" msgstr "ಪರಿವರ್ತಿತವಾಗದೆ ಬಾಕಿ ಉಳಿದ ದತ್ತಾಂಶಗಳು ಓದು-ಬಫರಿನಲ್ಲಿ" -#: ../glib/giochannel.c:1881 ../glib/giochannel.c:1958 +#: glib/giochannel.c:1881 glib/giochannel.c:1958 msgid "Channel terminates in a partial character" msgstr "ಮಾರ್ಗವು ಒಂದು ಆಂಶಿಕ ಅಕ್ಷರದಲ್ಲಿ ಕೊನೆಗೊಳ್ಳುತ್ತದೆ" -#: ../glib/giochannel.c:1944 +#: glib/giochannel.c:1944 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "g_io_channel_read_to_end ನಲ್ಲಿ ಒಂದು ಹಗುರ ಓದನ್ನು ಮಾಡಲಾಗಲಿಲ್ಲ" -#: ../glib/gmappedfile.c:151 +#: glib/gmappedfile.c:151 #, c-format msgid "Failed to open file '%s': open() failed: %s" msgstr "ಕಡತ '%s' ವನ್ನು ತೆರೆಯಲು ವಿಫಲವಾಗಿದೆ: ತೆರೆಯುವುದು() ವಿಫಲಗೊಂಡಿದೆ: %s" -#: ../glib/gmappedfile.c:230 +#: glib/gmappedfile.c:230 #, c-format msgid "Failed to map file '%s': mmap() failed: %s" msgstr "'%s' ವನ್ನು ನಕ್ಷೆ ಕಡತಮಾಡುವಲ್ಲಿ ವಿಫಲ: mmap() ವಿಫಲಗೊಂಡಿದೆ: %s" -#: ../glib/gmarkup.c:303 ../glib/gmarkup.c:343 +#: glib/gmarkup.c:303 glib/gmarkup.c:343 #, c-format msgid "Error on line %d char %d: " msgstr "%d ಸಾಲಿನ %d ಚಿಹ್ನೆಯಲ್ಲಿ ದೋಷ: " -#: ../glib/gmarkup.c:363 ../glib/gmarkup.c:441 +#: glib/gmarkup.c:363 glib/gmarkup.c:441 #, c-format msgid "Invalid UTF-8 encoded text in name - not valid '%s'" msgstr "ಹೆಸರಿನಲ್ಲಿ ಅಮಾನ್ಯ UTF-8 ಎನ್ಕೋಡ್ ಆದ ಪಠ್ಯವಿದೆ - ಮಾನ್ಯವಾದ '%s' ಅಲ್ಲ" -#: ../glib/gmarkup.c:374 +#: glib/gmarkup.c:374 #, c-format msgid "'%s' is not a valid name " msgstr "'%s' ಯು ಒಂದು ಮಾನ್ಯವಾದ ಹೆಸರಾಗಿಲ್ಲ" -#: ../glib/gmarkup.c:390 +#: glib/gmarkup.c:390 #, c-format msgid "'%s' is not a valid name: '%c' " msgstr "'%s' ಯು ಒಂದು ಮಾನ್ಯವಾದ ಹೆಸರಾಗಿಲ್ಲ: '%c' " -#: ../glib/gmarkup.c:494 +#: glib/gmarkup.c:494 #, c-format msgid "Error on line %d: %s" msgstr "%d ಸಾಲಿನಲ್ಲಿ ದೋಷ: %s" -#: ../glib/gmarkup.c:578 +#: glib/gmarkup.c:578 #, c-format msgid "" "Failed to parse '%-.*s', which should have been a digit inside a character " @@ -359,7 +357,7 @@ msgstr "" "'%-.*s' ಅನ್ನು parse ಮಾಡುವಲ್ಲಿ ವಿಫಲ, ಇದು ಒಂದು ಉಲ್ಲೇಖ ಅಕ್ಷರದ ಒಳಗಿನ ಒಂದು " "ಅಂಕಿಯಾಗಿರಬೇಕಿತ್ತು(ê ಉದಾಹರಣೆಗೆ) - ಬಹುಷಃ ಅಂಕಿಯು ಬಹಳ ದೊಡ್ಡದಾಗಿರಬೇಕು" -#: ../glib/gmarkup.c:590 +#: glib/gmarkup.c:590 msgid "" "Character reference did not end with a semicolon; most likely you used an " "ampersand character without intending to start an entity - escape ampersand " @@ -369,21 +367,23 @@ msgstr "" "ಘಟಕವನ್ನು ಆರಂಭಿಸುವ ಉದ್ದೇಶವಿಲ್ಲದೇ ampersand ಅಕ್ಷರವನ್ನು ಬಳಸಿದ್ದೀರಿ - ampersand ನಿಂದ " "ಹೊರಬರಲು & ಎಂದು ಮಾಡಿ" -#: ../glib/gmarkup.c:616 +#: glib/gmarkup.c:616 #, c-format msgid "Character reference '%-.*s' does not encode a permitted character" msgstr "ಅಕ್ಷರ ಉಲ್ಲೇಖ '%-.*s' ವು ಒಂದು ಅನುಮತಿ ಇರುವ ಅಕ್ಷರವನ್ನು encode ಮಾಡುವುದಿಲ್ಲ" -#: ../glib/gmarkup.c:654 -msgid "Empty entity '&;' seen; valid entities are: & " < > '" -msgstr "ಖಾಲಿ ಘಟಕ '&;' ಕಂಡು ಬಂದಿದೆ; ಮಾನ್ಯ ನಮೂದುಗಳೆಂದರೆ: & " < > '" +#: glib/gmarkup.c:654 +msgid "" +"Empty entity '&;' seen; valid entities are: & " < > '" +msgstr "" +"ಖಾಲಿ ಘಟಕ '&;' ಕಂಡು ಬಂದಿದೆ; ಮಾನ್ಯ ನಮೂದುಗಳೆಂದರೆ: & " < > '" -#: ../glib/gmarkup.c:662 +#: glib/gmarkup.c:662 #, c-format msgid "Entity name '%-.*s' is not known" msgstr "ನಮೂದಿನ ಹೆಸರು '%-.*s' ತಿಳಿದಿಲ್ಲ" -#: ../glib/gmarkup.c:667 +#: glib/gmarkup.c:667 msgid "" "Entity did not end with a semicolon; most likely you used an ampersand " "character without intending to start an entity - escape ampersand as &" @@ -392,11 +392,11 @@ msgstr "" "ಆರಂಭಿಸುವ ಉದ್ದೇಶವಿಲ್ಲದೇ ampersand ಅಕ್ಷರವನ್ನು ಬಳಸಿದ್ದೀರಿ - ampersand ನಿಂದ ಹೊರಬರಲು " "& ಎಂದು ಮಾಡಿ" -#: ../glib/gmarkup.c:1014 +#: glib/gmarkup.c:1014 msgid "Document must begin with an element (e.g. <book>)" msgstr "ದಸ್ತಾವೇಜುಗಳು ಒಂದು ಅಂಶದಿಂದ ಆರಂಭಗೊಳ್ಳಬೇಕು (e.g. <book>)" -#: ../glib/gmarkup.c:1054 +#: glib/gmarkup.c:1054 #, c-format msgid "" "'%s' is not a valid character following a '<' character; it may not begin an " @@ -405,7 +405,7 @@ msgstr "" "'<' ಅಕ್ಷರವು ಬಂದ ನಂತರ, '%s' ವು ಒಂದು ಮಾನ್ಯವಲ್ಲದ ಅಕ್ಷರವಾಗಿದೆ; ಅದು ಒಂದು ಅಂಶದ ಹೆಸರನ್ನು " "ಆರಂಭಿಸದೇ ಇರಬಹುದು" -#: ../glib/gmarkup.c:1122 +#: glib/gmarkup.c:1122 #, c-format msgid "" "Odd character '%s', expected a '>' character to end the empty-element tag '%" @@ -414,14 +414,15 @@ msgstr "" "ಸರಿಯಲ್ಲದ ಅಕ್ಷರ '%s', '%s' ಖಾಲಿ ಅಂಶದ ಟ್ಯಾಗಿನ ಆರಂಭವು ಒಂದು '>' ಅಕ್ಷರದಿಂದ " "ಕೊನೆಗೊಳ್ಳಬೇಕು ಎಂದು ಅಪೇಕ್ಷಿಸಲಾಗಿತ್ತು" -#: ../glib/gmarkup.c:1206 +#: glib/gmarkup.c:1206 #, c-format -msgid "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" +msgid "" +"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" msgstr "" "ಸರಿಯಲ್ಲದ ಅಕ್ಷರ '%s', '%s'ವು '%s' ಅಂಶದ ಗುಣಲಕ್ಷಣ ಹೆಸರಾಗಿದ್ದು ಅದರ ನಂತರ ಒಂದು '=' " "ಅನ್ನು ಅಪೇಕ್ಷಿಸಲಾಗಿತ್ತು" -#: ../glib/gmarkup.c:1247 +#: glib/gmarkup.c:1247 #, c-format msgid "" "Odd character '%s', expected a '>' or '/' character to end the start tag of " @@ -432,7 +433,7 @@ msgstr "" "ಕೊನೆಗೊಳ್ಳಬೇಕು ಎಂದು ಅಪೇಕ್ಷಿಸಲಾಗಿತ್ತು, ಅಥವ ಆಯ್ಕಾತ್ಮಕವಾಗಿ ಒಂದು ಗುಣಲಕ್ಷಣ; ಬಹುಷಃ ನೀವು " "ಅಮಾನ್ಯ ಅಕ್ಷರವನ್ನು ಒಂದು ಗುಣಲಕ್ಷಣದ ಹೆಸರಿನಲ್ಲಿ ಬಳಸಿದ್ದೀರೆಂದು ತೋರುತ್ತದೆ" -#: ../glib/gmarkup.c:1291 +#: glib/gmarkup.c:1291 #, c-format msgid "" "Odd character '%s', expected an open quote mark after the equals sign when " @@ -441,7 +442,7 @@ msgstr "" "ಸರಿಯಲ್ಲದ ಅಕ್ಷರ '%s', ಗುಣಲಕ್ಷಣ '%s'ವು '%s' ದ ಅಂಶವಾಗಿದ್ದು, ಇದಕ್ಕೆ ಒಂದು ಮೌಲ್ಯವನ್ನು " "ಕೊಡುವಾಗ ಸಮ ಚಿಹ್ನೆಯ ನಂತರ ಒಂದು ಮುಕ್ತ ಉದ್ಧರಣ ಚಿಹ್ನೆಯನ್ನು ನಿರೀಕ್ಷಿಸಲಾಗಿತ್ತು" -#: ../glib/gmarkup.c:1425 +#: glib/gmarkup.c:1425 #, c-format msgid "" "'%s' is not a valid character following the characters '</'; '%s' may not " @@ -450,7 +451,7 @@ msgstr "" "'%s' ವು '</' ಗಳಂತಹ ಅಕ್ಷರಗಳ ನಂತರ ಬರುವ ಒಂದು ಮಾನ್ಯವಾದ ಅಕ್ಷರವಲ್ಲ; ಒಂದು ಅಂಶದ ಹೆಸರು '%" "s' ನಿಂದ ಆರಂಭಗೊಳ್ಳುವುದಿಲ್ಲ" -#: ../glib/gmarkup.c:1461 +#: glib/gmarkup.c:1461 #, c-format msgid "" "'%s' is not a valid character following the close element name '%s'; the " @@ -459,25 +460,25 @@ msgstr "" "'%s' ವು ಮುಚ್ಚಲ್ಪಟ್ಟ ಅಂಶ ಹೆಸರು '%s' ನಂತರ ಬರುವ ಒಂದು ಮಾನ್ಯವಾದ ಅಕ್ಷರವಲ್ಲ; '>' ವು " "ಅನುಮತಿ ಇರುವ ಅಕ್ಷರವಾಗಿರುತ್ತದೆ" -#: ../glib/gmarkup.c:1472 +#: glib/gmarkup.c:1472 #, c-format msgid "Element '%s' was closed, no element is currently open" msgstr "ಅಂಶವು '%s' was closed, no element is currently open" -#: ../glib/gmarkup.c:1481 +#: glib/gmarkup.c:1481 #, c-format msgid "Element '%s' was closed, but the currently open element is '%s'" msgstr "ಅಂಶ '%s' ವು ಮುಚ್ಚಲ್ಪಟ್ಟಿದೆ, ಆದರೆ ಪ್ರಸ್ತುತ ಮುಕ್ತವಾಗಿರುವ ಅಂಶವೆಂದರೆ '%s' ಆಗಿದೆ" -#: ../glib/gmarkup.c:1648 +#: glib/gmarkup.c:1648 msgid "Document was empty or contained only whitespace" msgstr "ದಸ್ತಾವೇಜು ಖಾಲಿಯಾಗಿತ್ತು ಅಥವ ಕೇವಲ ಕೇವಲ ಖಾಲಿ ಜಾಗಗಳನ್ನು ಹೊಂದಿತ್ತು" -#: ../glib/gmarkup.c:1662 +#: glib/gmarkup.c:1662 msgid "Document ended unexpectedly just after an open angle bracket '<'" msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಮುಕ್ತ ಕೋನ ಆವರಣ ಚಿಹ್ನೆ '<' ಯ ನಂತರ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ" -#: ../glib/gmarkup.c:1670 ../glib/gmarkup.c:1715 +#: glib/gmarkup.c:1670 glib/gmarkup.c:1715 #, c-format msgid "" "Document ended unexpectedly with elements still open - '%s' was the last " @@ -486,7 +487,7 @@ msgstr "" "ಅಂಶಗಳು ತೆರೆದಿರುವಾಗಲೇ ದಸ್ತಾವೇಜು ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ - '%s' ಯು ತೆರೆಯಲ್ಪಟ್ಟ " "ಕೊನೆಯ ಅಂಶ" -#: ../glib/gmarkup.c:1678 +#: glib/gmarkup.c:1678 #, c-format msgid "" "Document ended unexpectedly, expected to see a close angle bracket ending " @@ -495,19 +496,19 @@ msgstr "" "ದಸ್ತಾವೇಜು ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ, <%s/> ಟ್ಯಾಗಿನ ಕೊನೆಯಲ್ಲಿ ಒಂದು ಮುಕ್ತ ಕೋನ ಆವರಣ " "ಚಿಹ್ನೆಯನ್ನು ಕಾಣಲು ಅಪೇಕ್ಷಿಸಲಾಗಿತ್ತು" -#: ../glib/gmarkup.c:1684 +#: glib/gmarkup.c:1684 msgid "Document ended unexpectedly inside an element name" msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಅಂಶದ ಹೆಸರಿನಲ್ಲಿ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ" -#: ../glib/gmarkup.c:1690 +#: glib/gmarkup.c:1690 msgid "Document ended unexpectedly inside an attribute name" msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಗುಣಲಕ್ಷಣ ಹೆಸರಿನಲ್ಲಿ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ" -#: ../glib/gmarkup.c:1695 +#: glib/gmarkup.c:1695 msgid "Document ended unexpectedly inside an element-opening tag." msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಅಂಶ ತೆರೆಯುವ ಟ್ಯಾಗಿನ ಒಳಗೆ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ." -#: ../glib/gmarkup.c:1701 +#: glib/gmarkup.c:1701 msgid "" "Document ended unexpectedly after the equals sign following an attribute " "name; no attribute value" @@ -515,391 +516,390 @@ msgstr "" "ದಸ್ತಾವೇಜು ಒಂದು ಗುಣಲಕ್ಷಣದ ಹೆಸರಿನ ನಂತರದ ಸಮ ಚಿಹ್ನೆಯ ನಂತರ ಅನಿರೀಕ್ಷಿತವಾಗಿ " "ಕೊನೆಗೊಂಡಿದೆ; ಯಾವುದೇ ಗುಣಲಕ್ಷಣ ಮೌಲ್ಯವಿಲ್ಲ" -#: ../glib/gmarkup.c:1708 +#: glib/gmarkup.c:1708 msgid "Document ended unexpectedly while inside an attribute value" msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಗುಣಲಕ್ಷಣ ಮೌಲ್ಯದ ಒಳಗಿರುವಾಗ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ" -#: ../glib/gmarkup.c:1724 +#: glib/gmarkup.c:1724 #, c-format msgid "Document ended unexpectedly inside the close tag for element '%s'" msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಅಂಶ'%s'ದ ಮುಚ್ಚಲ್ಪಟ್ಟ ಟ್ಯಾಗಿನ ಒಳಗೆ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ" -#: ../glib/gmarkup.c:1730 +#: glib/gmarkup.c:1730 msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಹೇಳಿಕೆ ಅಥವ ಪ್ರಕ್ರಿಯೆ ಸೂಚನೆಯ ಒಳಗೆ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ" -#: ../glib/gregex.c:131 +#: glib/gregex.c:131 msgid "corrupted object" msgstr "ಭ್ರಷ್ಟಗೊಂಡ ವಸ್ತು" -#: ../glib/gregex.c:133 +#: glib/gregex.c:133 msgid "internal error or corrupted object" msgstr "ಆಂತರಿಕ ದೋಷ ಅಥವ ಭ್ರಷ್ಟಗೊಂಡ ವಸ್ತು" -#: ../glib/gregex.c:135 +#: glib/gregex.c:135 msgid "out of memory" msgstr "ಮೆಮೊರಿ ಖಾಲಿಯಾಗಿದೆ" -#: ../glib/gregex.c:140 +#: glib/gregex.c:140 msgid "backtracking limit reached" msgstr "ಹಿಂಬಾಲಿಸುವ ಮಿತಿ ತಲುಪಿದೆ" -#: ../glib/gregex.c:152 ../glib/gregex.c:160 +#: glib/gregex.c:152 glib/gregex.c:160 msgid "the pattern contains items not supported for partial matching" msgstr "ಆಂಶಿಕ ಹೊಂದಾಣಿಕೆಗೆ ಬೆಂಬಲಿತವಾಗದ ಅಂಶಗಳನ್ನು ಈ ವಿನ್ಯಾಸವು ಹೊಂದಿದೆ" -#: ../glib/gregex.c:154 ../gio/glocalfile.c:2115 +#: glib/gregex.c:154 gio/glocalfile.c:2115 msgid "internal error" msgstr "ಆಂತರಿಕ ದೋಷ" -#: ../glib/gregex.c:162 +#: glib/gregex.c:162 msgid "back references as conditions are not supported for partial matching" msgstr "" "ಆಂಶಿಕ ತಾಳೆಗೆ ಪರಿಸ್ಥಿತಿಯು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ ಆದ್ದರಿಂದ ಹಿಂಬದಿಯ ಉಲ್ಲೇಖಗಳನ್ನು ಬಳಸಲಾಗುವುದು" -#: ../glib/gregex.c:171 +#: glib/gregex.c:171 msgid "recursion limit reached" msgstr "ರಿಕರ್ಶನ್ ಮಿತಿಯನ್ನು ತಲುಪಿದೆ" -#: ../glib/gregex.c:173 +#: glib/gregex.c:173 msgid "workspace limit for empty substrings reached" msgstr "ಖಾಲಿ ಉಪಸಾಲುಗಳಿಗಾಗಿನ ಕಾರ್ಯಕ್ಷೇತ್ರದ ಮಿತಿಯನ್ನು ತಲುಪಲ್ಪಟ್ಟಿದೆ" -#: ../glib/gregex.c:175 +#: glib/gregex.c:175 msgid "invalid combination of newline flags" msgstr "ಹೊಸಸಾಲು ಗುರುತುಗಳ ಅಮಾನ್ಯ ಸಂಯೋಜನೆ" -#: ../glib/gregex.c:179 +#: glib/gregex.c:179 msgid "unknown error" msgstr "ಗೊತ್ತಿರದ ದೋಷ" -#: ../glib/gregex.c:199 +#: glib/gregex.c:199 msgid "\\ at end of pattern" msgstr "\\ ನಮೂನೆಯ ಕೊನೆಯಲ್ಲಿ" -#: ../glib/gregex.c:202 +#: glib/gregex.c:202 msgid "\\c at end of pattern" msgstr "\\c ನಮೂನೆಯ ಕೊನೆಯಲ್ಲಿ" -#: ../glib/gregex.c:205 +#: glib/gregex.c:205 msgid "unrecognized character follows \\" msgstr "ಗುರುತಿಸಲಾಗದ ಅಕ್ಷರಗಳು ಕಂಡುಬರುತ್ತವೆ \\" -#: ../glib/gregex.c:212 +#: glib/gregex.c:212 msgid "case-changing escapes (\\l, \\L, \\u, \\U) are not allowed here" msgstr "ಕೇಸ್-ಬದಲಾವಣೆಗಳ ಎಸ್ಕೇಪ್ಗಳಿಗೆ (\\l, \\L, \\u, \\U) ಅನುಮತಿ ಇಲ್ಲ" -#: ../glib/gregex.c:215 +#: glib/gregex.c:215 msgid "numbers out of order in {} quantifier" msgstr "{} ಕ್ವಾಂಟಿಫೈರಿನಲ್ಲಿ ಸಂಖ್ಯೆಗಳು ಕ್ರಮದಲ್ಲಿ ಇಲ್ಲ" -#: ../glib/gregex.c:218 +#: glib/gregex.c:218 msgid "number too big in {} quantifier" msgstr "{} ಕ್ವಾಂಟಿಫಯರಿನಲ್ಲಿನ ಸಂಖ್ಯೆಯು ಬಹಳ ದೊಡ್ಡದಾಗಿದೆ" -#: ../glib/gregex.c:221 +#: glib/gregex.c:221 msgid "missing terminating ] for character class" msgstr "ಕ್ಯಾರೆಕ್ಟರ್ ವರ್ಗವು ಕೊನೆಗೊಳ್ಳಬೇಕಿದ್ದ ] ಕಾಣೆಯಾಗಿದೆ" -#: ../glib/gregex.c:224 +#: glib/gregex.c:224 msgid "invalid escape sequence in character class" msgstr "ಕ್ಯಾರೆಕ್ಟರ್ ವರ್ಗದಲ್ಲಿನ ಪಾರು ಅನುಕ್ರಮವು ಅಮಾನ್ಯವಾಗಿದೆ" -#: ../glib/gregex.c:227 +#: glib/gregex.c:227 msgid "range out of order in character class" msgstr "ಕ್ಯಾರೆಕ್ಟರ್ ವರ್ಗದಲ್ಲಿ ವ್ಯಾಪ್ತಿಯು ಕೆಲಸ ಮಾಡುತ್ತಿಲ್ಲ" -#: ../glib/gregex.c:230 +#: glib/gregex.c:230 msgid "nothing to repeat" msgstr "ಪುನರಾವರ್ತಿಸಲು ಏನೂ ಇಲ್ಲ" -#: ../glib/gregex.c:233 +#: glib/gregex.c:233 msgid "unrecognized character after (?" msgstr "(? ನ ನಂತರ ಗುರುತಿಸಲಾಗದ ಅಕ್ಷರ" -#: ../glib/gregex.c:237 +#: glib/gregex.c:237 msgid "unrecognized character after (?<" msgstr "(?< ಯ ನಂತರ ಗುರುತಿಸಲಾಗದ ಅಕ್ಷರ" -#: ../glib/gregex.c:241 +#: glib/gregex.c:241 msgid "unrecognized character after (?P" msgstr "(?P ಯ ನಂತರ ಗುರುತಿಸಲಾಗದ ಅಕ್ಷರ" -#: ../glib/gregex.c:244 +#: glib/gregex.c:244 msgid "POSIX named classes are supported only within a class" msgstr "POSIX ಹೆಸರಿಸಲಾದ ವರ್ಗಗಳು ಕೇವಲ ಒಂದು ವರ್ಗದಲ್ಲಿ ಮಾತ್ರ ಬೆಂಬಲ ಹೊಂದಿರುತ್ತವೆ" -#: ../glib/gregex.c:247 +#: glib/gregex.c:247 msgid "missing terminating )" msgstr "ಕೊನೆಗೊಳಿಸುವ ) ಕಾಣೆಯಾಗಿದೆ" -#: ../glib/gregex.c:251 +#: glib/gregex.c:251 msgid ") without opening (" msgstr ") ತೆರೆಯಲ್ಪಡದೆ (" #. translators: '(?R' and '(?[+-]digits' are both meant as (groups of) #. * sequences here, '(?-54' would be an example for the second group. #. -#: ../glib/gregex.c:258 +#: glib/gregex.c:258 msgid "(?R or (?[+-]digits must be followed by )" msgstr "(?R ಅಥವ (?[+-] ಡಿಜಿಟ್ಗಳು ) ಅನ್ನು ಅನುಸರಿಸಬೇಕು" -#: ../glib/gregex.c:261 +#: glib/gregex.c:261 msgid "reference to non-existent subpattern" msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿ ಇರದ ಉಪವಿನ್ಯಾಸದ ಉಲ್ಲೇಖ" -#: ../glib/gregex.c:264 +#: glib/gregex.c:264 msgid "missing ) after comment" msgstr "ಕಮೆಂಟ್ನ ನಂತರ ) ವು ಕಾಣೆಯಾಗಿದೆ" -#: ../glib/gregex.c:267 +#: glib/gregex.c:267 msgid "regular expression too large" msgstr "ಸಾಮಾನ್ಯ ನಿರೂಪಣೆ ಬಹಳ ಉದ್ದವಾಗಿದೆ" -#: ../glib/gregex.c:270 +#: glib/gregex.c:270 msgid "failed to get memory" msgstr "ಮೆಮೊರಿಯನ್ನು ಪಡೆದುಕೊಳ್ಳಲು ವಿಫಲವಾಗಿದೆ" -#: ../glib/gregex.c:273 +#: glib/gregex.c:273 msgid "lookbehind assertion is not fixed length" msgstr "ಹಿಂದೆನೋಡು ಪ್ರತಿಪಾದನೆಯು ನಿಗದಿತ ಉದ್ದವನ್ನು ಹೊಂದಿಲ್ಲ" -#: ../glib/gregex.c:276 +#: glib/gregex.c:276 msgid "malformed number or name after (?(" msgstr "(?( ನಂತರದ ಸಂಖ್ಯೆ ಅಥವ ಹೆಸರು ವಿರೂಪಗೊಂಡಿದೆ" -#: ../glib/gregex.c:279 +#: glib/gregex.c:279 msgid "conditional group contains more than two branches" msgstr "ಶರತ್ತಿನ ಸಮೂಹವು ಎರಡಕ್ಕಿಂತ ಹೆಚ್ಚಿನ ಶಾಖೆಗಳನ್ನು ಹೊಂದಿದೆ" -#: ../glib/gregex.c:282 +#: glib/gregex.c:282 msgid "assertion expected after (?(" msgstr "(?( ನಂತರ ಪ್ರತಿಪಾದನೆಯನ್ನು ನಿರೀಕ್ಷಿಸಲಾಗಿತ್ತು" -#: ../glib/gregex.c:285 +#: glib/gregex.c:285 msgid "unknown POSIX class name" msgstr "ಗೊತ್ತಿರದ POSIX ವರ್ಗದ ಹೆಸರು" -#: ../glib/gregex.c:288 +#: glib/gregex.c:288 msgid "POSIX collating elements are not supported" msgstr "ಘಟಕಗಳ POSIX ಹೋಲಿಕೆಯು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" -#: ../glib/gregex.c:291 +#: glib/gregex.c:291 msgid "character value in \\x{...} sequence is too large" msgstr "\\x{...} ಅನುಕ್ರಮದಲ್ಲಿನ ಅಕ್ಷರ ಮೌಲ್ಯವು ಬಹಳ ದೊಡ್ಡದಾಗಿದೆ" -#: ../glib/gregex.c:294 +#: glib/gregex.c:294 msgid "invalid condition (?(0)" msgstr "ಸರಿಯಲ್ಲದ (?(0) ಸ್ಥಿತಿ" -#: ../glib/gregex.c:297 +#: glib/gregex.c:297 msgid "\\C not allowed in lookbehind assertion" msgstr "ಹಿಂದೆನೋಡು ಪ್ರತಿಪಾದನೆಯಲ್ಲಿ \\C ಗೆ ಅನುಮತಿ ಇಲ್ಲ" -#: ../glib/gregex.c:300 +#: glib/gregex.c:300 msgid "recursive call could loop indefinitely" msgstr "ಪುನರಾವರ್ತಿತ ಕರೆಯು ಅನಿರ್ದಿಷ್ಟವಾಗಿ ಆವರ್ತಿತಗೊಳ್ಳಬಹುದು" -#: ../glib/gregex.c:303 +#: glib/gregex.c:303 msgid "missing terminator in subpattern name" msgstr "ಉಪನಮೂನೆಯ ಹೆಸರಿನಲ್ಲಿ ಟರ್ಮಿನೇಟರ್ ಕಾಣಿಸುತ್ತಿಲ್ಲ" -#: ../glib/gregex.c:306 +#: glib/gregex.c:306 msgid "two named subpatterns have the same name" msgstr "ಹೆಸರಿಸಲಾದ ಎರಡು ಉಪನಮೂನೆಗಳು ಒಂದೇ ಹೆಸರನ್ನು ಹೊಂದಿವೆ" -#: ../glib/gregex.c:309 +#: glib/gregex.c:309 msgid "malformed \\P or \\p sequence" msgstr "ವಿರೂಪಗೊಂಡ\\P ಅಥವ \\p ಅನುಕ್ರಮ" -#: ../glib/gregex.c:312 +#: glib/gregex.c:312 msgid "unknown property name after \\P or \\p" msgstr "\\P ಅಥವ \\p ಯ ನಂತರ ಗೊತ್ತಿರದ ಗುಣಲಕ್ಷಣದ ಹೆಸರು" -#: ../glib/gregex.c:315 +#: glib/gregex.c:315 msgid "subpattern name is too long (maximum 32 characters)" msgstr "ಉಪನಮೂನೆಯ ಹೆಸರು ಬಹಳ ಉದ್ದವಾಗಿದೆ (ಗರಿಷ್ಟ 32 ಅಕ್ಷರಗಳನ್ನು ಹೊಂದಿರಬಹುದು)" -#: ../glib/gregex.c:318 +#: glib/gregex.c:318 msgid "too many named subpatterns (maximum 10,000)" msgstr "ಬಹಳಷ್ಟು ಹೆಸರಿಸಲ್ಪಟ್ಟ ಉಪನಮೂನೆಗಳು (ಗರಿಷ್ಟ 10,000)" -#: ../glib/gregex.c:321 +#: glib/gregex.c:321 msgid "octal value is greater than \\377" msgstr "\\377 ಕ್ಕೂ ದೊಡ್ಡದಾದ ಆಕ್ಟಲ್ ಮೌಲ್ಯ" -#: ../glib/gregex.c:324 +#: glib/gregex.c:324 msgid "DEFINE group contains more than one branch" msgstr "ಒಂದಕ್ಕಿಂತ ಹೆಚ್ಚಿನ ಶಾಖೆಯನ್ನು ಹೊಂದಿರುವ ಸಮೂಹವನ್ನು DEFINE ಮಾಡು" -#: ../glib/gregex.c:327 +#: glib/gregex.c:327 msgid "repeating a DEFINE group is not allowed" msgstr "ಒಂದು ಸಮೂಹವನ್ನು ಮತ್ತೆ ಮತ್ತೆ DEFINE ಮಾಡಲು ಅನುಮತಿ ಇಲ್ಲ" -#: ../glib/gregex.c:330 +#: glib/gregex.c:330 msgid "inconsistent NEWLINE options" msgstr "ಅಸಂಜಸವಾದ NEWLINE ಆಯ್ಕೆಗಳು" -#: ../glib/gregex.c:333 -msgid "\\g is not followed by a braced name or an optionally braced non-zero number" +#: glib/gregex.c:333 +msgid "" +"\\g is not followed by a braced name or an optionally braced non-zero number" msgstr "" "\\g ದ ನಂತರ ಒಂದು ಬ್ರೇಸ್ ಆದ ಹೆಸರು ಅಥವ ಆಯ್ಕಾತ್ಮಕ ಬ್ರೇಸ್ ಆದಂತಹ ಶೂನ್ಯವಲ್ಲದ ಸಂಖ್ಯೆ ಇಲ್ಲ" -#: ../glib/gregex.c:338 +#: glib/gregex.c:338 msgid "unexpected repeat" msgstr "ಅನಿರೀಕ್ಷಿತ ಪುನರಾವರ್ತನೆ" -#: ../glib/gregex.c:342 +#: glib/gregex.c:342 msgid "code overflow" msgstr "ಕೋಡ್ ಓವರ್-ಫ್ಲೋ" -#: ../glib/gregex.c:346 +#: glib/gregex.c:346 msgid "overran compiling workspace" msgstr "ಸಂಕಲಿಸುವ ಕಾರ್ಯಕ್ಷೇತ್ರವು overran ಆಗಿದೆ" -#: ../glib/gregex.c:350 +#: glib/gregex.c:350 msgid "previously-checked referenced subpattern not found" msgstr "ಈ ಮೊದಲು ಪರೀಕ್ಷಿಸಲಾದ ಉಲ್ಲೇಖ ಉಪವಿನ್ಯಾಸ ಕಂಡುಬಂದಿಲ್ಲ" -#: ../glib/gregex.c:522 ../glib/gregex.c:1603 +#: glib/gregex.c:522 glib/gregex.c:1603 #, c-format msgid "Error while matching regular expression %s: %s" msgstr "ಸಾಮಾನ್ಯ ನಿರೂಪಣೆಯ %s ಅನ್ನು ಹೊಂದಾಣಿಸುವಲ್ಲಿ ದೋಷ ಕಂಡುಬಂದಿದೆ: %s" -#: ../glib/gregex.c:1094 +#: glib/gregex.c:1094 msgid "PCRE library is compiled without UTF8 support" msgstr "UTF8 ಬೆಂಬಲವಿಲ್ಲದೆ PCRE ಭಂಡಾರವು ಸಂಕಲಿತಗೊಂಡಿದೆ" -#: ../glib/gregex.c:1103 +#: glib/gregex.c:1103 msgid "PCRE library is compiled without UTF8 properties support" msgstr "UTF8 ಗುಣಲಕ್ಷಣಗಳ ಬೆಂಬಲವಿಲ್ಲದೆ PCRE ಭಂಡಾರವು ಸಂಕಲಿತಗೊಂಡಿದೆ" -#: ../glib/gregex.c:1157 +#: glib/gregex.c:1157 #, c-format msgid "Error while compiling regular expression %s at char %d: %s" msgstr "ಸಾಮಾನ್ಯ ನಿರೂಪಣೆಯ %s ಅನ್ನು char %d ನಲ್ಲಿ ಸಂಕಲಿಸುವಲ್ಲಿ ದೋಷ ಕಂಡುಬಂದಿದೆ: %s" -#: ../glib/gregex.c:1193 +#: glib/gregex.c:1193 #, c-format msgid "Error while optimizing regular expression %s: %s" msgstr "ಸಾಮಾನ್ಯ ನಿರೂಪಣೆಯ %s ಅನ್ನು ಸರಳೀಕರಿಸುವಲ್ಲಿ ದೋಷ ಕಂಡುಬಂದಿದೆ: %s" -#: ../glib/gregex.c:2031 +#: glib/gregex.c:2031 msgid "hexadecimal digit or '}' expected" msgstr "ಷೋಡ-ದಶಮಾನ ಅಂಕಿ ಅಥವ '}' ಅನ್ನು ಅಪೇಕ್ಷಿಸಲಾಗಿದೆ" -#: ../glib/gregex.c:2047 +#: glib/gregex.c:2047 msgid "hexadecimal digit expected" msgstr "ಷೋಡ-ದಶಮಾನ ಅಂಕಿಯನ್ನು ಅಪೇಕ್ಷಿಸಲಾಗಿದೆ" -#: ../glib/gregex.c:2087 +#: glib/gregex.c:2087 msgid "missing '<' in symbolic reference" msgstr "ಸಾಂಕೇತಿಕ ಉಲ್ಲೇಖದಲ್ಲಿ '<' ಕಾಣೆಯಾಗಿದೆ" -#: ../glib/gregex.c:2096 +#: glib/gregex.c:2096 msgid "unfinished symbolic reference" msgstr "ಅಪೂರ್ಣಗೊಂಡಿರುವ ಸಾಂಕೇತಿಕ ಉಲ್ಲೇಖ" -#: ../glib/gregex.c:2103 +#: glib/gregex.c:2103 msgid "zero-length symbolic reference" msgstr "ಶೂನ್ಯ-ಉದ್ದದ ಸಾಂಕೇತಿಕ ಉಲ್ಲೇಖ" -#: ../glib/gregex.c:2114 +#: glib/gregex.c:2114 msgid "digit expected" msgstr "ಅಪೇಕ್ಷಿತ ಅಂಕಿ" -#: ../glib/gregex.c:2132 +#: glib/gregex.c:2132 msgid "illegal symbolic reference" msgstr "ನಿಯಮ ಬಾಹಿರವಾದ ಸಾಂಕೇತಿಕ ಉಲ್ಲೇಖ" -#: ../glib/gregex.c:2194 +#: glib/gregex.c:2194 msgid "stray final '\\'" msgstr "ಅಪರೂಪದ ಅಂತ್ಯ '\\'" -#: ../glib/gregex.c:2198 +#: glib/gregex.c:2198 msgid "unknown escape sequence" msgstr "ಗೊತ್ತಿರದ ಪಾರು ಅನುಕ್ರಮ" -#: ../glib/gregex.c:2208 +#: glib/gregex.c:2208 #, c-format msgid "Error while parsing replacement text \"%s\" at char %lu: %s" msgstr "ಬದಲಾಯಿಸಲ್ಪಟ್ಟ ಪಠ್ಯ \"%s\"ಅನ್ನು char %lu ನಲ್ಲಿ ಪಾರ್ಸಿಂಗ್ ಮಾಡುವಾಗಿನ ದೋಷ: %s" -#: ../glib/gshell.c:92 +#: glib/gshell.c:92 msgid "Quoted text doesn't begin with a quotation mark" msgstr "ಉದ್ಧರಿತ ಪಠ್ಯವು ಒಂದು ಉದ್ಧರನ ಚಿಹ್ನೆಯಿಂದ ಆರಂಭಗೊಳ್ಳುವುದಿಲ್ಲ" -#: ../glib/gshell.c:182 +#: glib/gshell.c:182 msgid "Unmatched quotation mark in command line or other shell-quoted text" msgstr "" "ಆಜ್ಞಾ ಸಾಲಿನಲ್ಲಿ ಅಥವ ಇತರೆ ಶೆಲ್ಲಿನಲ್ಲಿ ಉದ್ಧರಿಸಲಾದ ಪಠ್ಯದಲ್ಲಿ ತಾಳೆಯಾಗದ ಉದ್ಧರಣಚಿಹ್ನೆಗಳು" -#: ../glib/gshell.c:560 +#: glib/gshell.c:560 #, c-format msgid "Text ended just after a '\\' character. (The text was '%s')" msgstr "ಪಠ್ಯವು ಒಂದು '\\' ಅಕ್ಷರದ ನಂತರ ಅಂತ್ಯಗೊಂಡಿತು. (ಪಠ್ಯವು '%s' ಆಗಿತ್ತು)" -#: ../glib/gshell.c:567 +#: glib/gshell.c:567 #, c-format msgid "Text ended before matching quote was found for %c. (The text was '%s')" msgstr "%c ಗಾಗಿನ (ಪಠ್ಯವು '%s' ಆಗಿತ್ತು)" -#: ../glib/gshell.c:579 +#: glib/gshell.c:579 msgid "Text was empty (or contained only whitespace)" msgstr "ಪಠ್ಯವು ಖಾಲಿಯಾಗಿತ್ತು (ಅಥವ ಕೇವಲ ಖಾಲಿಜಾಗಗಳನ್ನು ಹೊಂದಿತ್ತು)" -#: ../glib/gspawn-win32.c:283 +#: glib/gspawn-win32.c:283 msgid "Failed to read data from child process" msgstr "child ಪ್ರಕ್ರಿಯೆಯಿಂದ ದತ್ತಾಂಶವನ್ನು ಓದುವಲ್ಲಿ ವಿಫಲತೆ ಎದುರಾಗಿದೆ" -#: ../glib/gspawn-win32.c:300 ../glib/gspawn.c:1480 +#: glib/gspawn-win32.c:300 glib/gspawn.c:1480 #, c-format msgid "Failed to create pipe for communicating with child process (%s)" msgstr "ಉಪ ಪ್ರಕ್ರಿಯೆಯೊಂದಿಗೆ ಸಂವಹನಕ್ಕೆ ಪೈಪನ್ನು ರಚಿಸುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ (%s)" -#: ../glib/gspawn-win32.c:339 ../glib/gspawn-win32.c:347 ../glib/gspawn.c:1139 +#: glib/gspawn-win32.c:339 glib/gspawn-win32.c:347 glib/gspawn.c:1139 #, c-format msgid "Failed to read from child pipe (%s)" msgstr "child pipe (%s) ನಿಂದ ಓದುವಲ್ಲಿ ವಿಫಲತೆ" -#: ../glib/gspawn-win32.c:370 ../glib/gspawn.c:1346 +#: glib/gspawn-win32.c:370 glib/gspawn.c:1346 #, c-format msgid "Failed to change to directory '%s' (%s)" msgstr "'%s' ಕೋಶಕ್ಕೆ ಬದಲಾಯಿಸುವಲ್ಲಿ ವಿಫಲತೆ ಎದುರಾಗಿದೆ (%s)" -#: ../glib/gspawn-win32.c:376 ../glib/gspawn-win32.c:495 +#: glib/gspawn-win32.c:376 glib/gspawn-win32.c:495 #, c-format msgid "Failed to execute child process (%s)" msgstr "child ಪ್ರಕ್ರಿಯೆ (%s) ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವಲ್ಲಿ ವಿಫಲತೆ" -#: ../glib/gspawn-win32.c:445 +#: glib/gspawn-win32.c:445 #, c-format msgid "Invalid program name: %s" msgstr "ಅಮಾನ್ಯವಾದ ಪ್ರೋಗ್ರಾಂ ಹೆಸರು: %s" -#: ../glib/gspawn-win32.c:455 ../glib/gspawn-win32.c:723 -#: ../glib/gspawn-win32.c:1279 +#: glib/gspawn-win32.c:455 glib/gspawn-win32.c:723 glib/gspawn-win32.c:1279 #, c-format msgid "Invalid string in argument vector at %d: %s" msgstr "%d ದಲ್ಲಿರುವ ಆರ್ಗ್ಯುಮೆಂಟ್ ವೆಕ್ಟರಿನಲ್ಲಿನ ಅಮಾನ್ಯ ಸಾಲು: %s" -#: ../glib/gspawn-win32.c:466 ../glib/gspawn-win32.c:738 -#: ../glib/gspawn-win32.c:1312 +#: glib/gspawn-win32.c:466 glib/gspawn-win32.c:738 glib/gspawn-win32.c:1312 #, c-format msgid "Invalid string in environment: %s" msgstr "ಪರಿಸರದಲ್ಲಿನ ಅಮಾನ್ಯ ಸಾಲು: %s" -#: ../glib/gspawn-win32.c:719 ../glib/gspawn-win32.c:1260 +#: glib/gspawn-win32.c:719 glib/gspawn-win32.c:1260 #, c-format msgid "Invalid working directory: %s" msgstr "ಅಮಾನ್ಯ ಕಾರ್ಯಕಾರಿ ಕೋಶ: %s" -#: ../glib/gspawn-win32.c:784 +#: glib/gspawn-win32.c:784 #, c-format msgid "Failed to execute helper program (%s)" msgstr "ಸಹಾಯಕ ಪ್ರೊಗ್ರಾಂ (%s) ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವಲ್ಲಿ ವಿಫಲತೆ" -#: ../glib/gspawn-win32.c:998 +#: glib/gspawn-win32.c:998 msgid "" "Unexpected error in g_io_channel_win32_poll() reading data from a child " "process" @@ -907,190 +907,192 @@ msgstr "" "child ಪ್ರಕ್ರಿಯೆ ಯಿಂದ ದತ್ತಾಂಶವನ್ನು ಓದುವಾಗ g_io_channel_win32_poll() ನಲ್ಲಿ ಅನಪೇಕ್ಷಿತ " "ದೋಷ" -#: ../glib/gspawn.c:190 +#: glib/gspawn.c:190 #, c-format msgid "Failed to read data from child process (%s)" msgstr "child ಪ್ರಕ್ರಿಯೆ (%s) ಯಿಂದ ದತ್ತಾಂಶವನ್ನು ಓದುವಲ್ಲಿ ವಿಫಲ" -#: ../glib/gspawn.c:329 +#: glib/gspawn.c:329 #, c-format msgid "Unexpected error in select() reading data from a child process (%s)" msgstr "child ಪ್ರಕ್ರಿಯೆ (%s) ಯಿಂದ ದತ್ತಾಂಶವನ್ನು ಓದುವಾಗ select() ನಲ್ಲಿ ಅನಪೇಕ್ಷಿತ ದೋಷ" -#: ../glib/gspawn.c:414 +#: glib/gspawn.c:414 #, c-format msgid "Unexpected error in waitpid() (%s)" msgstr "waitpid() ನಲ್ಲಿ ಅನಪೇಕ್ಷಿತ ದೋಷ (%s)" -#: ../glib/gspawn.c:1206 +#: glib/gspawn.c:1206 #, c-format msgid "Failed to fork (%s)" msgstr "ಕವಲೊಡೆಸುವಲ್ಲಿ ವಿಫಲತೆ (%s)" -#: ../glib/gspawn.c:1356 +#: glib/gspawn.c:1356 #, c-format msgid "Failed to execute child process \"%s\" (%s)" msgstr "child ಪ್ರಕ್ರಿಯೆ \"%s\" (%s) ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವಲ್ಲಿ ವಿಫಲತೆ ಎದುರಾಗಿದೆ" -#: ../glib/gspawn.c:1366 +#: glib/gspawn.c:1366 #, c-format msgid "Failed to redirect output or input of child process (%s)" msgstr "" "child ಪ್ರಕ್ರಿಯೆಯ ಆದಾನ ಅಥವ ಪ್ರದಾನವನ್ನು ಪುನರ್ನಿರ್ದೇಶಿಸುವಲ್ಲಿ ವಿಫಲತೆ ಎದುರಾಗಿದೆ (%s)" -#: ../glib/gspawn.c:1375 +#: glib/gspawn.c:1375 #, c-format msgid "Failed to fork child process (%s)" msgstr "child ಪ್ರಕ್ರಿಯೆಯನ್ನು ಕವಲೊಡೆಯಲು ವಿಫಲಗೊಂಡಿದೆ (%s)" -#: ../glib/gspawn.c:1383 +#: glib/gspawn.c:1383 #, c-format msgid "Unknown error executing child process \"%s\"" msgstr "child ಪ್ರಕ್ರಿಯೆ \"%s\" ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವಾಗ ಗೊತ್ತಿರದ ದೋಷ" -#: ../glib/gspawn.c:1407 +#: glib/gspawn.c:1407 #, c-format msgid "Failed to read enough data from child pid pipe (%s)" msgstr "child pid pipe (%s) ಇಂದ ಸಾಕಷ್ಟು ದತ್ತಾಂಶವನ್ನು ಓದುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ" -#: ../glib/gutf8.c:1055 +#: glib/gutf8.c:1055 msgid "Character out of range for UTF-8" msgstr "ಅಕ್ಷರವು UTF-8 ನ ವ್ಯಾಪ್ತಿ ಇಂದ ಹೊರಗಿದೆ" -#: ../glib/gutf8.c:1155 ../glib/gutf8.c:1164 ../glib/gutf8.c:1296 -#: ../glib/gutf8.c:1305 ../glib/gutf8.c:1446 ../glib/gutf8.c:1542 +#: glib/gutf8.c:1155 glib/gutf8.c:1164 glib/gutf8.c:1296 glib/gutf8.c:1305 +#: glib/gutf8.c:1446 glib/gutf8.c:1542 msgid "Invalid sequence in conversion input" msgstr "ಆದಾನ ಪರಿವರ್ತನೆಯಲ್ಲಿ ಅಮಾನ್ಯ ಅನುಕ್ರಮ" -#: ../glib/gutf8.c:1457 ../glib/gutf8.c:1553 +#: glib/gutf8.c:1457 glib/gutf8.c:1553 msgid "Character out of range for UTF-16" msgstr "ಅಕ್ಷರವು UTF-16 ನ ವ್ಯಾಪ್ತಿ ಇಂದ ಹೊರಗಿದೆ" -#: ../glib/goption.c:755 +#: glib/goption.c:755 msgid "Usage:" msgstr "ಬಳಕೆ:" -#: ../glib/goption.c:755 +#: glib/goption.c:755 msgid "[OPTION...]" msgstr "[OPTION...]" -#: ../glib/goption.c:861 +#: glib/goption.c:861 msgid "Help Options:" msgstr "ಸಹಾಯ ಆಯ್ಕೆಗಳು:" -#: ../glib/goption.c:862 +#: glib/goption.c:862 msgid "Show help options" msgstr "ಸಹಾಯ ಆಯ್ಕೆಯನ್ನು ತೋರಿಸು" -#: ../glib/goption.c:868 +#: glib/goption.c:868 msgid "Show all help options" msgstr "ಎಲ್ಲಾ ಸಹಾಯ ಅಂಶಪಟ್ಟಿಯನ್ನು ತೋರಿಸು" -#: ../glib/goption.c:930 +#: glib/goption.c:930 msgid "Application Options:" msgstr "ಅನ್ವಯದ ಆಯ್ಕೆಗಳು:" -#: ../glib/goption.c:992 ../glib/goption.c:1062 +#: glib/goption.c:992 glib/goption.c:1062 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr " for %s ಕ್ಕಾಗಿನ ಪೂರ್ಣಾಂಕ ಮೌಲ್ಯ '%s' ಅನ್ನು ಶಬ್ಧಲಕ್ಷಣ ಹೇಳಲಾಗಿಲ್ಲ" -#: ../glib/goption.c:1002 ../glib/goption.c:1070 +#: glib/goption.c:1002 glib/goption.c:1070 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "%s ಕ್ಕಾಗಿನ ಪೂರ್ಣಾಂಕ ಮೌಲ್ಯ '%s' ವು ವ್ಯಾಪ್ತಿಯಿಂದ ಹೊರಗಿದೆ" -#: ../glib/goption.c:1027 +#: glib/goption.c:1027 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "'%s' ದ %s ಕ್ಕಾಗಿನ ದ್ವಿಮೌಲ್ಯವನ್ನು parse ಮಾಡಲಾಗಿಲ್ಲ" -#: ../glib/goption.c:1035 +#: glib/goption.c:1035 #, c-format msgid "Double value '%s' for %s out of range" msgstr "%s ಕ್ಕಾಗಿನ '%s' ದ್ವಿ ಮೌಲ್ಯವು ವ್ಯಾಪ್ತಿಯಿಂದ ಹೊರಗಿದೆ" -#: ../glib/goption.c:1298 ../glib/goption.c:1377 +#: glib/goption.c:1298 glib/goption.c:1377 #, c-format msgid "Error parsing option %s" msgstr "%s ಆಯ್ಕೆಯ ಶಬ್ಧಲಕ್ಷಣವನ್ನು ಹೇಳುವಾಗ ದೋಷ" -#: ../glib/goption.c:1408 ../glib/goption.c:1522 +#: glib/goption.c:1408 glib/goption.c:1522 #, c-format msgid "Missing argument for %s" msgstr "%s ಗೆ ಆರ್ಗ್ಯುಮೆಂಟ್ ಕಾಣುತ್ತಿಲ್ಲ" -#: ../glib/goption.c:1917 +#: glib/goption.c:1917 #, c-format msgid "Unknown option %s" msgstr "ಗೊತ್ತಿರದ ಆಯ್ಕೆ %s" -#: ../glib/gkeyfile.c:361 +#: glib/gkeyfile.c:361 msgid "Valid key file could not be found in search dirs" msgstr "ಹುಡುಕು ಕೋಶದಲ್ಲಿ ಮಾನ್ಯ ಕೀಲಿ ಪತ್ತೆಯಾಗಿಲ್ಲ" -#: ../glib/gkeyfile.c:396 +#: glib/gkeyfile.c:396 msgid "Not a regular file" msgstr "ಒಂದು ಸಾಮಾನ್ಯ ಕಡತವಲ್ಲ" -#: ../glib/gkeyfile.c:404 +#: glib/gkeyfile.c:404 msgid "File is empty" msgstr "ಕಡತವು ಖಾಲಿ ಇದೆ" -#: ../glib/gkeyfile.c:763 +#: glib/gkeyfile.c:763 #, 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' ಸಾಲನ್ನು ಹೊಂದಿದೆ, ಇದು ಒಂದು ಕೀಲಿ-ಮೌಲ್ಯ ಜೋಡಿ, ಸಮೂಹ, ಅಥವ ಹೇಳಿಕೆಯಲ್ಲ" -#: ../glib/gkeyfile.c:823 +#: glib/gkeyfile.c:823 #, c-format msgid "Invalid group name: %s" msgstr "ಅಮಾನ್ಯ ಸಮೂಹ ಹೆಸರು: %s" -#: ../glib/gkeyfile.c:845 +#: glib/gkeyfile.c:845 msgid "Key file does not start with a group" msgstr "ಕೀಲಿ ಕಡತವು ಒಂದು ಸಮೂಹದೊಂದಿಗೆ ಆರಂಭಗೊಳ್ಳುವುದಿಲ್ಲ" -#: ../glib/gkeyfile.c:871 +#: glib/gkeyfile.c:871 #, c-format msgid "Invalid key name: %s" msgstr "ಅಮಾನ್ಯ ಕೀಲಿ ಹೆಸರು: %s" -#: ../glib/gkeyfile.c:898 +#: glib/gkeyfile.c:898 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "ಕೀಲಿ ಕಡತವು ಬೆಂಬಲಿತವಲ್ಲದ encoding '%s'ಅನ್ನು ಹೊಂದಿದೆ" -#: ../glib/gkeyfile.c:1114 ../glib/gkeyfile.c:1276 ../glib/gkeyfile.c:2505 -#: ../glib/gkeyfile.c:2571 ../glib/gkeyfile.c:2706 ../glib/gkeyfile.c:2839 -#: ../glib/gkeyfile.c:2992 ../glib/gkeyfile.c:3179 ../glib/gkeyfile.c:3240 +#: glib/gkeyfile.c:1114 glib/gkeyfile.c:1276 glib/gkeyfile.c:2505 +#: glib/gkeyfile.c:2571 glib/gkeyfile.c:2706 glib/gkeyfile.c:2839 +#: glib/gkeyfile.c:2992 glib/gkeyfile.c:3179 glib/gkeyfile.c:3240 #, c-format msgid "Key file does not have group '%s'" msgstr "ಕೀಲಿ ಕಡತವು ಸಮೂಹ '%s'ವನ್ನು ಹೊಂದಿಲ್ಲ" -#: ../glib/gkeyfile.c:1288 +#: glib/gkeyfile.c:1288 #, c-format msgid "Key file does not have key '%s'" msgstr "ಕೀಲಿ ಕಡತವು ಕೀಲಿ '%s'ಯನ್ನು ಹೊಂದಿಲ್ಲ" -#: ../glib/gkeyfile.c:1395 ../glib/gkeyfile.c:1510 +#: glib/gkeyfile.c:1395 glib/gkeyfile.c:1510 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "" "ಕೀಲಿ ಕಡತವು ಕೀಲಿ '%s'ಯನ್ನು ಹೊಂದಿದ್ದು ಅದು UTF-8 ಅಲ್ಲದ ಮೌಲ್ಯವಾದ '%s'ವನ್ನು ಹೊಂದಿದೆ " -#: ../glib/gkeyfile.c:1415 ../glib/gkeyfile.c:1909 +#: glib/gkeyfile.c:1415 glib/gkeyfile.c:1909 #, c-format msgid "Key file contains key '%s' which has value that cannot be interpreted." msgstr "ಕೀಲಿ ಕಡತವು ಕೀಲಿ '%s'ಯನ್ನು ಹೊಂದಿದ್ದು ಅದು ಮೌಲ್ಯವನ್ನು ವಿವರಿಸಲಾಗುವುದಿಲ್ಲ." -#: ../glib/gkeyfile.c:1530 +#: glib/gkeyfile.c:1530 #, c-format -msgid "Key file contains key '%s' which has a value that cannot be interpreted." +msgid "" +"Key file contains key '%s' which has a value that cannot be interpreted." msgstr "ಕೀಲಿ ಕಡತವು ವಿವರಿಸಲು ಸಾಧ್ಯವಾಗದೆ ಇರುವಂತಹ ಕೀಲಿ '%s'ಯ ಮೌಲ್ಯವನ್ನು ಹೊಂದಿದೆ." -#: ../glib/gkeyfile.c:2124 ../glib/gkeyfile.c:2336 +#: glib/gkeyfile.c:2124 glib/gkeyfile.c:2336 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has value that cannot be " @@ -1099,184 +1101,181 @@ msgstr "" "ಕೀಲಿ ಕಡತವು ಕೀಲಿ '%s'ಯನ್ನು ಹೊಂದಿದ್ದು ಅದು ಸಮೂಹ '%s'ದ್ದಾಗಿದ್ದು ಹಾಗು ಅದರ ಮೌಲ್ಯವನ್ನು " "ವಿವರಿಸಲಾಗುವುದಿಲ್ಲ." -#: ../glib/gkeyfile.c:2520 ../glib/gkeyfile.c:2721 ../glib/gkeyfile.c:3251 +#: glib/gkeyfile.c:2520 glib/gkeyfile.c:2721 glib/gkeyfile.c:3251 #, c-format msgid "Key file does not have key '%s' in group '%s'" msgstr "ಕೀಲಿ ಕಡತವು ಕೀಲಿ'%s' ಯನ್ನು ಗುಂಪು '%s'ನಲ್ಲಿ ಹೊಂದಿಲ್ಲ" -#: ../glib/gkeyfile.c:3485 +#: glib/gkeyfile.c:3485 msgid "Key file contains escape character at end of line" msgstr "ಕೀಲಿ ಕಡತವು ಸಾಲಿನ ಕೊನೆಯಲ್ಲಿ ಪಾರು ಅಕ್ಷರಗಳನ್ನು ಹೊಂದಿದೆ" -#: ../glib/gkeyfile.c:3507 +#: glib/gkeyfile.c:3507 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "ಕೀಲಿ ಕಡತವು ಅಮಾನ್ಯ ಪಾರು ಅನುಕ್ರಮವನ್ನು ಹೊಂದಿದೆ '%s'" -#: ../glib/gkeyfile.c:3649 +#: glib/gkeyfile.c:3649 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "ಮೌಲ್ಯ '%s' ವನ್ನು ಒಂದು ಸಂಖ್ಯೆಯಾಗಿ ಸೂಚಿಸಲು ಆಗುವುದಿಲ್ಲ." -#: ../glib/gkeyfile.c:3663 +#: glib/gkeyfile.c:3663 #, c-format msgid "Integer value '%s' out of range" msgstr "ಪೂರ್ಣಾಂಕ ಮೌಲ್ಯ '%s' ವು ವ್ಯಾಪ್ತಿಯನ್ನು ಮೀರಿದೆ" -#: ../glib/gkeyfile.c:3696 +#: glib/gkeyfile.c:3696 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "ಮೌಲ್ಯ '%s' ವನ್ನು ಒಂದು ತೇಲು ಸಂಖ್ಯೆ ಆಗಿ ವಿವರಿಸಲು ಆಗುವುದಿಲ್ಲ." -#: ../glib/gkeyfile.c:3720 +#: glib/gkeyfile.c:3720 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "ಮೌಲ್ಯ '%s' ವನ್ನು ಒಂದು ಬೂಲಿಯನ್ ಆಗಿ ವಿವರಿಸಲು ಆಗುವುದಿಲ್ಲ." -#: ../gio/gbufferedinputstream.c:415 ../gio/gbufferedinputstream.c:496 -#: ../gio/ginputstream.c:186 ../gio/ginputstream.c:318 -#: ../gio/ginputstream.c:557 ../gio/ginputstream.c:682 -#: ../gio/goutputstream.c:198 ../gio/goutputstream.c:657 +#: gio/gbufferedinputstream.c:415 gio/gbufferedinputstream.c:496 +#: gio/ginputstream.c:186 gio/ginputstream.c:318 gio/ginputstream.c:557 +#: gio/ginputstream.c:682 gio/goutputstream.c:198 gio/goutputstream.c:657 #, c-format msgid "Too large count value passed to %s" msgstr "%s ಗೆ ಬಹಳ ದೊಡ್ಡದಾದ ಎಣಿಕೆ ಮೌಲ್ಯವನ್ನು ರವಾನಿಸಲಾಗಿದೆ" -#: ../gio/gbufferedinputstream.c:883 ../gio/ginputstream.c:892 -#: ../gio/giostream.c:305 ../gio/goutputstream.c:1108 +#: gio/gbufferedinputstream.c:883 gio/ginputstream.c:892 gio/giostream.c:305 +#: gio/goutputstream.c:1108 msgid "Stream is already closed" msgstr "ಸ್ಟ್ರೀಮ್ ಈಗಾಗಲೆ ಮುಚ್ಚಲ್ಪಟ್ಟಿದೆ" -#: ../gio/gcancellable.c:433 ../gio/glocalfile.c:2108 -#: ../gio/gsimpleasyncresult.c:651 ../gio/gsimpleasyncresult.c:677 +#: gio/gcancellable.c:433 gio/glocalfile.c:2108 gio/gsimpleasyncresult.c:651 +#: gio/gsimpleasyncresult.c:677 msgid "Operation was cancelled" msgstr "ಕಾರ್ಯವು ರದ್ದುಗೊಂಡಿದೆ" -#: ../gio/gcharsetconverter.c:264 +#: gio/gcharsetconverter.c:264 #, fuzzy msgid "Invalid object, not initialized" msgstr "ಅಮಾನ್ಯವಾದ ಸಾಕೆಟ್, ಆರಂಭಿಸಲಾಗಿಲ್ಲ" -#: ../gio/gcharsetconverter.c:285 ../gio/gcharsetconverter.c:313 +#: gio/gcharsetconverter.c:285 gio/gcharsetconverter.c:313 #, fuzzy msgid "Incomplete multibyte sequence in input" msgstr "ಪರಿವರ್ತಿತ ಆದಾನದಲ್ಲಿನ ಬೈಟ್ ಅನುಕ್ರಮ ಅಮಾನ್ಯವಾಗಿದೆ" -#: ../gio/gcharsetconverter.c:319 ../gio/gcharsetconverter.c:328 +#: gio/gcharsetconverter.c:319 gio/gcharsetconverter.c:328 #, fuzzy msgid "Not enough space in destination" msgstr "ಸಾಕೆಟ್ ವಿಳಾಸಕ್ಕಾಗಿ ಸಾಕಷ್ಟು ಸ್ಥಳವಿಲ್ಲ" -#: ../gio/gcharsetconverter.c:448 ../gio/gsocket.c:772 +#: gio/gcharsetconverter.c:448 gio/gsocket.c:772 msgid "Cancellable initialization not supported" msgstr "ರದ್ದುಗೊಳಿಸಬಹುದಾದ ಆರಂಭಕ್ಕೆ ಬೆಂಬಲವಿಲ್ಲ" -#: ../gio/gcontenttype.c:180 +#: gio/gcontenttype.c:180 msgid "Unknown type" msgstr "ಗೊತ್ತಿರದ ಬಗೆ" -#: ../gio/gcontenttype.c:181 +#: gio/gcontenttype.c:181 #, c-format msgid "%s filetype" msgstr "%s ಕಡತದ ಬಗೆ" -#: ../gio/gcontenttype.c:681 +#: gio/gcontenttype.c:681 #, c-format msgid "%s type" msgstr "%s ಬಗೆ" -#: ../gio/gdatainputstream.c:311 +#: gio/gdatainputstream.c:311 msgid "Unexpected early end-of-stream" msgstr "ಸ್ಟ್ರೀಮ್ನ ಅನಿರೀಕ್ಷಿತ ಕ್ಷಿಪ್ರ ಅಂತ್ಯ" -#: ../gio/gdesktopappinfo.c:468 ../gio/gwin32appinfo.c:222 +#: gio/gdesktopappinfo.c:468 gio/gwin32appinfo.c:222 msgid "Unnamed" msgstr "ಹೆಸರಿಸಲಾಗದ" -#: ../gio/gdesktopappinfo.c:742 +#: gio/gdesktopappinfo.c:742 msgid "Desktop file didn't specify Exec field" msgstr "ಗಣಕತೆರೆ ಕಡತವು Exec ಕ್ಷೇತ್ರವನ್ನು ಸೂಚಿಸಿಲ್ಲ" -#: ../gio/gdesktopappinfo.c:924 +#: gio/gdesktopappinfo.c:924 msgid "Unable to find terminal required for application" msgstr "ಅನ್ವಯಕ್ಕೆ ಅಗತ್ಯವಿರುವ ಟರ್ಮಿನಲ್ ಅನ್ನು ಪತ್ತೆಮಾಡಲಾಗಲಿಲ್ಲ" -#: ../gio/gdesktopappinfo.c:1132 +#: gio/gdesktopappinfo.c:1132 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "ಬಳಕೆದಾರ ಅನ್ವಯ ಸಂರಚನಾ ಫೋಲ್ಡರ್ %s ಅನ್ನು ರಚಿಸಲಾಗಿಲ್ಲ: %s" -#: ../gio/gdesktopappinfo.c:1136 +#: gio/gdesktopappinfo.c:1136 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "ಬಳಕೆದಾರ MIME ಸಂರಚನಾ ಫೋಲ್ಡರ್ %s ಅನ್ನು ರಚಿಸಲಾಗಿಲ್ಲ: %s" -#: ../gio/gdesktopappinfo.c:1544 +#: gio/gdesktopappinfo.c:1544 #, c-format msgid "Can't create user desktop file %s" msgstr "ಬಳಕೆದಾರನ ಡೆಸ್ಕ್ಟಾಪ್ ಕಡತ %s ಅನ್ನು ತೆರೆಯಲಾಗಿಲ್ಲ" -#: ../gio/gdesktopappinfo.c:1658 +#: gio/gdesktopappinfo.c:1658 #, c-format msgid "Custom definition for %s" msgstr "%s ಗಾಗಿನ ಕಸ್ಟಮ್ ವಿವರಣೆ" -#: ../gio/gdrive.c:364 +#: gio/gdrive.c:364 msgid "drive doesn't implement eject" msgstr "ಹೊರತಳ್ಳುವುದನ್ನು ಡ್ರೈವ್ ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ" #. Translators: This is an error #. * message for drive objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gdrive.c:444 +#: gio/gdrive.c:444 msgid "drive doesn't implement eject or eject_with_operation" msgstr "ಡ್ರೈವ್ ಹೊರತಳ್ಳುವುದನ್ನು ಅಥವ eject_with_operation ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ" -#: ../gio/gdrive.c:521 +#: gio/gdrive.c:521 msgid "drive doesn't implement polling for media" msgstr "ಮಾಧ್ಯಮಕ್ಕಾಗಿ ಪೋಲ್ ಮಾಡುವುದನ್ನು ಡ್ರೈವ್ ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ" -#: ../gio/gdrive.c:726 +#: gio/gdrive.c:726 msgid "drive doesn't implement start" msgstr "ಆರಂಭಿಸುದನ್ನು ಡ್ರೈವ್ ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ" -#: ../gio/gdrive.c:828 +#: gio/gdrive.c:828 msgid "drive doesn't implement stop" msgstr "ನಿಲ್ಲಿಸುವುದನ್ನು ಡ್ರೈವ್ ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ" -#: ../gio/gemblem.c:325 +#: gio/gemblem.c:325 #, c-format msgid "Can't handle version %d of GEmblem encoding" msgstr "GEmblem ಎನ್ಕೋಡಿಂಗ್ನ ಆವೃತ್ತಿ %d ಅನ್ನು ನಿಭಾಯಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" -#: ../gio/gemblem.c:335 +#: gio/gemblem.c:335 #, c-format msgid "Malformed number of tokens (%d) in GEmblem encoding" msgstr "GEmblem ಎನ್ಕೋಡಿಂಗಿನಲ್ಲಿ ತಪ್ಪಾದ ಸಂಖ್ಯೆಯ ಟೋಕನ್ಗಳು (%d)" -#: ../gio/gemblemedicon.c:296 +#: gio/gemblemedicon.c:296 #, c-format msgid "Can't handle version %d of GEmblemedIcon encoding" msgstr "GEmblemedIcon ಎನ್ಕೋಡಿಂಗ್ನ ಆವೃತ್ತಿ %d ಅನ್ನು ನಿಭಾಯಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" -#: ../gio/gemblemedicon.c:306 +#: gio/gemblemedicon.c:306 #, c-format msgid "Malformed number of tokens (%d) in GEmblemedIcon encoding" msgstr "GEmblemedIcon ಎನ್ಕೋಡಿಂಗಿನಲ್ಲಿ ತಪ್ಪಾದ ಸಂಖ್ಯೆಯ ಟೋಕನ್ಗಳು (%d)" -#: ../gio/gemblemedicon.c:329 +#: gio/gemblemedicon.c:329 msgid "Expected a GEmblem for GEmblemedIcon" msgstr "GEmblemedIcon ಗಾಗಿ GEmblem ಅನ್ನು ನಿರೀಕ್ಷಿಸಲಾಗಿತ್ತು" -#: ../gio/gfile.c:871 ../gio/gfile.c:1101 ../gio/gfile.c:1236 -#: ../gio/gfile.c:1472 ../gio/gfile.c:1526 ../gio/gfile.c:1583 -#: ../gio/gfile.c:1666 ../gio/gfile.c:1721 ../gio/gfile.c:1781 -#: ../gio/gfile.c:1835 ../gio/gfile.c:3304 ../gio/gfile.c:3358 -#: ../gio/gfile.c:3489 ../gio/gfile.c:3529 ../gio/gfile.c:3856 -#: ../gio/gfile.c:4258 ../gio/gfile.c:4344 ../gio/gfile.c:4433 -#: ../gio/gfile.c:4531 ../gio/gfile.c:4618 ../gio/gfile.c:4711 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5321 ../gio/gfile.c:5390 -#: ../gio/gfile.c:6981 ../gio/gfile.c:7071 ../gio/gfile.c:7157 -#: ../gio/win32/gwinhttpfile.c:441 +#: gio/gfile.c:871 gio/gfile.c:1101 gio/gfile.c:1236 gio/gfile.c:1472 +#: gio/gfile.c:1526 gio/gfile.c:1583 gio/gfile.c:1666 gio/gfile.c:1721 +#: gio/gfile.c:1781 gio/gfile.c:1835 gio/gfile.c:3304 gio/gfile.c:3358 +#: gio/gfile.c:3489 gio/gfile.c:3529 gio/gfile.c:3856 gio/gfile.c:4258 +#: gio/gfile.c:4344 gio/gfile.c:4433 gio/gfile.c:4531 gio/gfile.c:4618 +#: gio/gfile.c:4711 gio/gfile.c:5041 gio/gfile.c:5321 gio/gfile.c:5390 +#: gio/gfile.c:6981 gio/gfile.c:7071 gio/gfile.c:7157 +#: gio/win32/gwinhttpfile.c:441 msgid "Operation not supported" msgstr "ಕಾರ್ಯವು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" @@ -1288,138 +1287,138 @@ msgstr "ಕಾರ್ಯವು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1357 ../gio/glocalfile.c:1065 ../gio/glocalfile.c:1076 -#: ../gio/glocalfile.c:1089 +#: gio/gfile.c:1357 gio/glocalfile.c:1065 gio/glocalfile.c:1076 +#: gio/glocalfile.c:1089 msgid "Containing mount does not exist" msgstr "ಹೊಂದಿರುವ ಮೌಂಟ್ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ" -#: ../gio/gfile.c:2409 ../gio/glocalfile.c:2264 +#: gio/gfile.c:2409 gio/glocalfile.c:2264 msgid "Can't copy over directory" msgstr "ಕೋಶಕ್ಕೆ ನಕಲಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" -#: ../gio/gfile.c:2469 +#: gio/gfile.c:2469 msgid "Can't copy directory over directory" msgstr "ಕೋಶವನ್ನು ಕೋಶಕ್ಕೆ ನಕಲಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" -#: ../gio/gfile.c:2477 ../gio/glocalfile.c:2273 +#: gio/gfile.c:2477 gio/glocalfile.c:2273 msgid "Target file exists" msgstr "ಸೂಚಿತ ಕಡತವು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ" -#: ../gio/gfile.c:2495 +#: gio/gfile.c:2495 msgid "Can't recursively copy directory" msgstr "ಕೋಶವನ್ನು ಪುನರಾವರ್ತಿತವಾಗಿ ನಕಲಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" -#: ../gio/gfile.c:2755 +#: gio/gfile.c:2755 #, fuzzy msgid "Splice not supported" msgstr "ಸಾಂಕೇತಿಕ ಲಿಂಕುಗಳು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" -#: ../gio/gfile.c:2759 +#: gio/gfile.c:2759 #, fuzzy, c-format msgid "Error splicing file: %s" msgstr "ಕಡತವನ್ನು ತೆರೆಯುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/gfile.c:2906 +#: gio/gfile.c:2906 msgid "Can't copy special file" msgstr "ವಿಶೇಷ ಕಡತವನ್ನು ಕಾಪಿ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" -#: ../gio/gfile.c:3479 +#: gio/gfile.c:3479 msgid "Invalid symlink value given" msgstr "ಅಮಾನ್ಯವಾದ ಸಿಮ್ಲಿಂಕ್ ಮೌಲ್ಯವನ್ನು ಒದಗಿಸಲಾಗಿದೆ" -#: ../gio/gfile.c:3572 +#: gio/gfile.c:3572 msgid "Trash not supported" msgstr "ಟ್ರ್ಯಾಶ್ ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" -#: ../gio/gfile.c:3621 +#: gio/gfile.c:3621 #, c-format msgid "File names cannot contain '%c'" msgstr "ಕಡತದ ಹೆಸರುಗಳು '%c' ಅನ್ನು ಹೊಂದುವಂತಿಲ್ಲ" -#: ../gio/gfile.c:6038 ../gio/gvolume.c:331 +#: gio/gfile.c:6038 gio/gvolume.c:331 msgid "volume doesn't implement mount" msgstr "ಪರಿಮಾಣವು ಆರೋಹಿಸುವುದನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ" -#: ../gio/gfile.c:6149 +#: gio/gfile.c:6149 msgid "No application is registered as handling this file" msgstr "ಈ ಪುಟವನ್ನು ನಿಭಾಯಿಸಲು ಯಾವುದೆ ಅನ್ವಯವು ಅನುಸ್ಥಾಪಿತಗೊಂಡಿಲ್ಲ" -#: ../gio/gfileenumerator.c:206 +#: gio/gfileenumerator.c:206 msgid "Enumerator is closed" msgstr "ಎನ್ಯುಮರೇಟರ್ ಮುಚ್ಚಲ್ಪಟ್ಟಿದೆ" -#: ../gio/gfileenumerator.c:213 ../gio/gfileenumerator.c:272 -#: ../gio/gfileenumerator.c:372 ../gio/gfileenumerator.c:481 +#: gio/gfileenumerator.c:213 gio/gfileenumerator.c:272 +#: gio/gfileenumerator.c:372 gio/gfileenumerator.c:481 msgid "File enumerator has outstanding operation" msgstr "ಕಡತ ಎನ್ಯುಮರೇಟರಿನಲ್ಲಿ ಕಾರ್ಯವು ಬಾಕಿ ಇದೆ" -#: ../gio/gfileenumerator.c:362 ../gio/gfileenumerator.c:471 +#: gio/gfileenumerator.c:362 gio/gfileenumerator.c:471 msgid "File enumerator is already closed" msgstr "ಕಡತ ಎನ್ಯುಮರೇಟರ್ ಈಗಾಗಲೆ ಮುಚ್ಚಲ್ಪಟ್ಟಿದೆ" -#: ../gio/gfileicon.c:237 +#: gio/gfileicon.c:237 #, c-format msgid "Can't handle version %d of GFileIcon encoding" msgstr "GFileIcon ಎನ್ಕೋಡಿಂಗ್ನ ಆವೃತ್ತಿ %d ಅನ್ನು ನಿಭಾಯಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" -#: ../gio/gfileicon.c:247 +#: gio/gfileicon.c:247 msgid "Malformed input data for GFileIcon" msgstr "GFileIcon ಗಾಗಿನ ತಪ್ಪಾದ ಇನ್ಪುಟ್ ದತ್ತಾಂಶ" -#: ../gio/gfileinputstream.c:155 ../gio/gfileinputstream.c:422 -#: ../gio/gfileiostream.c:171 ../gio/gfileoutputstream.c:170 -#: ../gio/gfileoutputstream.c:525 +#: gio/gfileinputstream.c:155 gio/gfileinputstream.c:422 +#: gio/gfileiostream.c:171 gio/gfileoutputstream.c:170 +#: gio/gfileoutputstream.c:525 msgid "Stream doesn't support query_info" msgstr "ಸ್ಟ್ರೀಮ್ query_info ಅನ್ನು ಬೆಂಬಲಿಸುವುದಿಲ್ಲ" -#: ../gio/gfileinputstream.c:337 ../gio/gfileiostream.c:389 -#: ../gio/gfileoutputstream.c:383 +#: gio/gfileinputstream.c:337 gio/gfileiostream.c:389 +#: gio/gfileoutputstream.c:383 msgid "Seek not supported on stream" msgstr "ಸ್ಟ್ರೀಮ್ನಲ್ಲಿ ಕೋರುವುದು (seek) ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" -#: ../gio/gfileinputstream.c:381 +#: gio/gfileinputstream.c:381 msgid "Truncate not allowed on input stream" msgstr "ಆದಾನ ಸ್ಟ್ರೀಮ್ನಲ್ಲಿ ಕಡಿತಗೊಳಿಸಲು ಅನುಮತಿಯ ಇಲ್ಲ" -#: ../gio/gfileiostream.c:465 ../gio/gfileoutputstream.c:459 +#: gio/gfileiostream.c:465 gio/gfileoutputstream.c:459 msgid "Truncate not supported on stream" msgstr "ಸ್ಟ್ರೀಮ್ನಲ್ಲಿ ಕಡಿತಗೊಳಿಸಲು ಅನುಮತಿಯ ಇಲ್ಲ" -#: ../gio/gicon.c:286 +#: gio/gicon.c:286 #, c-format msgid "Wrong number of tokens (%d)" msgstr "ಟೋಕನ್ಗಳ ತಪ್ಪಾದ ಸಂಖ್ಯೆ (%d)" -#: ../gio/gicon.c:306 +#: gio/gicon.c:306 #, c-format msgid "No type for class name %s" msgstr "ವರ್ಗದ ಹೆಸರು %s ಗೆ ಪ್ರಕಾರವಿಲ್ಲ" -#: ../gio/gicon.c:316 +#: gio/gicon.c:316 #, c-format msgid "Type %s does not implement the GIcon interface" msgstr "ಪ್ರಕಾರ %s ವು GIcon ಸಂಪರ್ಕಸಾಧನವನ್ನು ಅನ್ವಯಿಸುವುದಿಲ್ಲ" -#: ../gio/gicon.c:327 +#: gio/gicon.c:327 #, c-format msgid "Type %s is not classed" msgstr "ಪ್ರಕಾರ %s ಅನ್ನು ವರ್ಗವಾಗಿಸಿಲ್ಲ" -#: ../gio/gicon.c:341 +#: gio/gicon.c:341 #, c-format msgid "Malformed version number: %s" msgstr "ತಪ್ಪಾದ ಆವೃತ್ತಿ ಸಂಖ್ಯೆ: %s" -#: ../gio/gicon.c:355 +#: gio/gicon.c:355 #, c-format msgid "Type %s does not implement from_tokens() on the GIcon interface" msgstr "ಪ್ರಕಾರ %s ವು from_tokens() ಅನ್ನು GIcon ಸಂಪರ್ಕಸಾಧನದ ಮೇಲೆ ಅನ್ವಯಿಸುವುದಿಲ್ಲ" -#: ../gio/gicon.c:431 +#: gio/gicon.c:431 msgid "Can't handle the supplied version the icon encoding" msgstr "ಒದಗಿಸಲಾದ ಚಿಹ್ನೆಯ ಎನ್ಕೋಡಿಂಗ್ ಅನ್ನು ನಿಭಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ" -#: ../gio/ginputstream.c:195 +#: gio/ginputstream.c:195 msgid "Input stream doesn't implement read" msgstr "ಆದಾನ ಸ್ಟ್ರೀಮ್ನಲ್ಲಿ ಓದುವುದನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ" @@ -1429,354 +1428,353 @@ msgstr "ಆದಾನ ಸ್ಟ್ರೀಮ್ನಲ್ಲಿ ಓದುವು #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:902 ../gio/giostream.c:315 -#: ../gio/goutputstream.c:1118 +#: gio/ginputstream.c:902 gio/giostream.c:315 gio/goutputstream.c:1118 msgid "Stream has outstanding operation" msgstr "ಸ್ಟ್ರೀಮ್ನಲ್ಲಿ ಕಾರ್ಯವು ಬಾಕಿ ಇದೆ" -#: ../gio/ginetsocketaddress.c:182 ../gio/ginetsocketaddress.c:199 -#: ../gio/gunixsocketaddress.c:174 +#: gio/ginetsocketaddress.c:182 gio/ginetsocketaddress.c:199 +#: gio/gunixsocketaddress.c:174 msgid "Not enough space for socket address" msgstr "ಸಾಕೆಟ್ ವಿಳಾಸಕ್ಕಾಗಿ ಸಾಕಷ್ಟು ಸ್ಥಳವಿಲ್ಲ" -#: ../gio/ginetsocketaddress.c:212 +#: gio/ginetsocketaddress.c:212 msgid "Unsupported socket address" msgstr "ಬೆಂಬಲವಿರದ ಸಾಕೆಟ್ ವಿಳಾಸ" -#: ../gio/glocaldirectorymonitor.c:288 +#: gio/glocaldirectorymonitor.c:288 msgid "Unable to find default local directory monitor type" msgstr "ಪೂರ್ವನಿಯೋಜಿತವಾದ ಕೋಶ ಮೇಲ್ವಿಚಾರಕ ಬಗೆಯನ್ನು ಪತ್ತೆ ಮಾಡಲಾಗಲಿಲ್ಲ" -#: ../gio/glocalfile.c:599 ../gio/win32/gwinhttpfile.c:424 +#: gio/glocalfile.c:599 gio/win32/gwinhttpfile.c:424 #, c-format msgid "Invalid filename %s" msgstr "ಅಮಾನ್ಯ ಕಡತದ ಹೆಸರು %s" -#: ../gio/glocalfile.c:973 +#: gio/glocalfile.c:973 #, c-format msgid "Error getting filesystem info: %s" msgstr "ಕಡತವ್ಯವಸ್ಥೆಯ ಮಾಹಿತಿಯನ್ನು ಪಡೆಯುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfile.c:1111 +#: gio/glocalfile.c:1111 msgid "Can't rename root directory" msgstr "ಮೂಲ ಕಡತಕೋಶದ ಹೆಸರನ್ನು ಬದಲಾಯಿಸಲಾಗುವುದಿಲ್ಲ" -#: ../gio/glocalfile.c:1131 ../gio/glocalfile.c:1157 +#: gio/glocalfile.c:1131 gio/glocalfile.c:1157 #, c-format msgid "Error renaming file: %s" msgstr "ಕಡತದ ಹೆಸರನ್ನು ಬದಲಾಯಿಸುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfile.c:1140 +#: gio/glocalfile.c:1140 msgid "Can't rename file, filename already exist" msgstr "ಕಡತದ ಹೆಸರನ್ನು ಬದಲಾಯಿಸಲಾಗಲಿಲ್ಲ, ಈ ಹೆಸರಿನ ಕಡತವು ಈಗಾಗಲೆ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ" -#: ../gio/glocalfile.c:1153 ../gio/glocalfile.c:2137 ../gio/glocalfile.c:2166 -#: ../gio/glocalfile.c:2326 ../gio/glocalfileoutputstream.c:557 -#: ../gio/glocalfileoutputstream.c:610 ../gio/glocalfileoutputstream.c:655 -#: ../gio/glocalfileoutputstream.c:1137 +#: gio/glocalfile.c:1153 gio/glocalfile.c:2137 gio/glocalfile.c:2166 +#: gio/glocalfile.c:2326 gio/glocalfileoutputstream.c:557 +#: gio/glocalfileoutputstream.c:610 gio/glocalfileoutputstream.c:655 +#: gio/glocalfileoutputstream.c:1137 msgid "Invalid filename" msgstr "ಅಮಾನ್ಯ ಕಡತದ ಹೆಸರು" -#: ../gio/glocalfile.c:1314 +#: gio/glocalfile.c:1314 #, c-format msgid "Error opening file: %s" msgstr "ಕಡತವನ್ನು ತೆರೆಯುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfile.c:1324 +#: gio/glocalfile.c:1324 msgid "Can't open directory" msgstr "ಕೋಶವನ್ನು ತೆರೆಯಲಾಗಿಲ್ಲ" -#: ../gio/glocalfile.c:1449 +#: gio/glocalfile.c:1449 #, c-format msgid "Error removing file: %s" msgstr "ಕಡತವನ್ನು ತೆಗೆದು ಹಾಕುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfile.c:1816 +#: gio/glocalfile.c:1816 #, c-format msgid "Error trashing file: %s" msgstr "ಕಡತವನ್ನು ಕಸದ ಬುಟ್ಟಿಗೆ ವರ್ಗಾಯಿಸುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfile.c:1839 +#: gio/glocalfile.c:1839 #, c-format msgid "Unable to create trash dir %s: %s" msgstr "ಕಸದ ಬುಟ್ಟಿ ಕೋಶ %s ಅನ್ನು ರಚಿಸಲಾಗಿಲ್ಲ: %s" -#: ../gio/glocalfile.c:1860 +#: gio/glocalfile.c:1860 msgid "Unable to find toplevel directory for trash" msgstr "ಕಸದ ಬುಟ್ಟಿಗಾಗಿ ಮೇಲ್ಮಟ್ಟದ ಕೋಶವನ್ನು ಪತ್ತೆಮಾಡಲಾಗಲಿಲ್ಲ" -#: ../gio/glocalfile.c:1939 ../gio/glocalfile.c:1959 +#: gio/glocalfile.c:1939 gio/glocalfile.c:1959 msgid "Unable to find or create trash directory" msgstr "ಕಸದ ಬುಟ್ಟಿ ಕಡತಕೋಶವನ್ನು ಪತ್ತೆಮಾಡಲು ಅಥವ ರಚಿಸಲಾಗಿಲ್ಲ" -#: ../gio/glocalfile.c:1993 +#: gio/glocalfile.c:1993 #, c-format msgid "Unable to create trashing info file: %s" msgstr "ಟ್ರ್ಯಾಶಿಂಗ್ ಮಾಹಿತಿ ಕಡತವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" -#: ../gio/glocalfile.c:2022 ../gio/glocalfile.c:2027 ../gio/glocalfile.c:2107 -#: ../gio/glocalfile.c:2114 +#: gio/glocalfile.c:2022 gio/glocalfile.c:2027 gio/glocalfile.c:2107 +#: gio/glocalfile.c:2114 #, c-format msgid "Unable to trash file: %s" msgstr "ಕಡತವನ್ನು ಟ್ರ್ಯಾಶ್ ಮಾಡುವಲ್ಲಿ ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" -#: ../gio/glocalfile.c:2141 +#: gio/glocalfile.c:2141 #, c-format msgid "Error creating directory: %s" msgstr "ಕಡತ ಕೋಶವನ್ನು ರಚಿಸುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfile.c:2170 +#: gio/glocalfile.c:2170 #, fuzzy, c-format msgid "Filesystem does not support symbolic links" msgstr "ಸಾಂಕೇತಿಕ ಲಿಂಕ್ '%s' ಅನ್ನು ಓದುವಲ್ಲಿ ವಿಫಲತೆ: %s" -#: ../gio/glocalfile.c:2174 +#: gio/glocalfile.c:2174 #, c-format msgid "Error making symbolic link: %s" msgstr "ಸಾಂಕೇತಿಕ ಕೊಂಡಿಯನ್ನು ಮಾಡುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfile.c:2236 ../gio/glocalfile.c:2330 +#: gio/glocalfile.c:2236 gio/glocalfile.c:2330 #, c-format msgid "Error moving file: %s" msgstr "ಕಡತವನ್ನು ಸ್ಥಳಾಂತರಿಸುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfile.c:2259 +#: gio/glocalfile.c:2259 msgid "Can't move directory over directory" msgstr "ಕೋಶವನ್ನು ಇನ್ನೊಂದು ಕೋಶಕ್ಕೆ ಸ್ಥಳಾಂತರಿಸಲಾಗುವುದಿಲ್ಲ" -#: ../gio/glocalfile.c:2286 ../gio/glocalfileoutputstream.c:935 -#: ../gio/glocalfileoutputstream.c:949 ../gio/glocalfileoutputstream.c:964 -#: ../gio/glocalfileoutputstream.c:980 ../gio/glocalfileoutputstream.c:994 +#: gio/glocalfile.c:2286 gio/glocalfileoutputstream.c:935 +#: gio/glocalfileoutputstream.c:949 gio/glocalfileoutputstream.c:964 +#: gio/glocalfileoutputstream.c:980 gio/glocalfileoutputstream.c:994 msgid "Backup file creation failed" msgstr "ಬ್ಯಾಕ್ ಕಡತವನ್ನು ನಿರ್ಮಿಸುವಲ್ಲಿ ವಿಫಲತೆ" -#: ../gio/glocalfile.c:2305 +#: gio/glocalfile.c:2305 #, c-format msgid "Error removing target file: %s" msgstr "ಸೂಚಿತ ಕಡತವನ್ನು ತೆಗೆದು ಹಾಕುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfile.c:2319 +#: gio/glocalfile.c:2319 msgid "Move between mounts not supported" msgstr "ಎರಡು ಆರೋಹಣ ತಾಣಗಳ ನಡುವೆ ವರ್ಗಾಯಿಸುವುದು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" -#: ../gio/glocalfileinfo.c:726 +#: gio/glocalfileinfo.c:726 msgid "Attribute value must be non-NULL" msgstr "ವೈಶಿಷ್ಟ್ಯದ ಮೌಲ್ಯವು ಶೂನ್ಯವಲ್ಲದುದಾಗಿರಬೇಕು" -#: ../gio/glocalfileinfo.c:733 +#: gio/glocalfileinfo.c:733 msgid "Invalid attribute type (string expected)" msgstr "ಅಮಾನ್ಯವಾದ ವೈಶಿಷ್ಟ್ಯದ ಬಗೆ (ನಿರೀಕ್ಷಿತ ಸಾಲು)" -#: ../gio/glocalfileinfo.c:740 +#: gio/glocalfileinfo.c:740 msgid "Invalid extended attribute name" msgstr "ಅಮಾನ್ಯವಾದ ವಿಸ್ತರಿಸಲ್ಪಟ್ಟ ವೈಶಿಷ್ಟ್ಯದ ಹೆಸರು" -#: ../gio/glocalfileinfo.c:780 +#: gio/glocalfileinfo.c:780 #, c-format msgid "Error setting extended attribute '%s': %s" msgstr "ವಿಸ್ತರಿಸಲ್ಪಟ್ಟ ವೈಶಿಷ್ಟ್ಯ '%s' ಅನ್ನು ಹೊಂದಿಸುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfileinfo.c:1484 ../gio/glocalfileoutputstream.c:819 +#: gio/glocalfileinfo.c:1484 gio/glocalfileoutputstream.c:819 #, c-format msgid "Error stating file '%s': %s" msgstr "'%s' ಕಡತವನ್ನು ವ್ಯಕ್ತಪಡಿಸುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfileinfo.c:1557 +#: gio/glocalfileinfo.c:1557 msgid " (invalid encoding)" msgstr " (ಅಮಾನ್ಯ ಸಂಕೇತಿಕರಣ)" -#: ../gio/glocalfileinfo.c:1755 +#: gio/glocalfileinfo.c:1755 #, c-format msgid "Error stating file descriptor: %s" msgstr "ಕಡತ ಡಿಸ್ಕ್ರಿಪ್ಟರನ್ನು ವ್ಯಕ್ತಪಡಿಸುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfileinfo.c:1800 +#: gio/glocalfileinfo.c:1800 msgid "Invalid attribute type (uint32 expected)" msgstr "ಅಮಾನ್ಯವಾದ ವೈಶಿಷ್ಟ್ಯದ ಬಗೆ (uint32 ಅನ್ನು ನಿರೀಕ್ಷಿಸಲಾಗಿತ್ತು)" -#: ../gio/glocalfileinfo.c:1818 +#: gio/glocalfileinfo.c:1818 msgid "Invalid attribute type (uint64 expected)" msgstr "ಅಮಾನ್ಯವಾದ ವೈಶಿಷ್ಟ್ಯದ ಬಗೆ (uint64 ಅನ್ನು ನಿರೀಕ್ಷಿಸಲಾಗಿತ್ತು)" -#: ../gio/glocalfileinfo.c:1837 ../gio/glocalfileinfo.c:1856 +#: gio/glocalfileinfo.c:1837 gio/glocalfileinfo.c:1856 msgid "Invalid attribute type (byte string expected)" msgstr "ಅಮಾನ್ಯವಾದ ವೈಶಿಷ್ಟ್ಯದ ಬಗೆ (ಬೈಟ್ ಸಾಲನ್ನು ನಿರೀಕ್ಷಿಸಲಾಗಿತ್ತು)" -#: ../gio/glocalfileinfo.c:1891 +#: gio/glocalfileinfo.c:1891 msgid "Cannot set permissions on symlinks" msgstr "ಸಾಂಕೇತಿಕಕೊಂಡಿಗಳಲ್ಲಿ ಅನುಮತಿಗಳನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ" -#: ../gio/glocalfileinfo.c:1907 +#: gio/glocalfileinfo.c:1907 #, c-format msgid "Error setting permissions: %s" msgstr "ಅನುಮತಿಗಳನ್ನು ಹೊಂದಿಸುವಾಗ ದೋಷ: %s" -#: ../gio/glocalfileinfo.c:1958 +#: gio/glocalfileinfo.c:1958 #, c-format msgid "Error setting owner: %s" msgstr "ಮಾಲಿಕನನ್ನು ಹೊಂದಿಸುವಾಗ ದೋಷ: %s" -#: ../gio/glocalfileinfo.c:1981 +#: gio/glocalfileinfo.c:1981 msgid "symlink must be non-NULL" msgstr "ಸಾಂಕೇತಿಕಕೊಂಡಿಯು ಶೂನ್ಯವಾಗಿರುವಂತಿಲ್ಲ" -#: ../gio/glocalfileinfo.c:1991 ../gio/glocalfileinfo.c:2010 -#: ../gio/glocalfileinfo.c:2021 +#: gio/glocalfileinfo.c:1991 gio/glocalfileinfo.c:2010 +#: gio/glocalfileinfo.c:2021 #, c-format msgid "Error setting symlink: %s" msgstr "ಸಾಂಕೇತಿಕ ಕೊಂಡಿಯನ್ನು ಹೊಂದಿಸುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfileinfo.c:2000 +#: gio/glocalfileinfo.c:2000 msgid "Error setting symlink: file is not a symlink" msgstr "ಸಾಂಕೇತಿಕ ಕೊಂಡಿಯನ್ನು ಹೊಂದಿಸುವಲ್ಲಿ ದೋಷ: ಕಡತವು ಒಂದು ಸಾಂಕೇತಿಕಕೊಂಡಿಯಾಗಿಲ್ಲ" -#: ../gio/glocalfileinfo.c:2126 +#: gio/glocalfileinfo.c:2126 #, c-format msgid "Error setting modification or access time: %s" msgstr "ಮಾರ್ಪಡಣೆ ಅಥವ ನಿಲುಕಣಾ ಸಮಯವನ್ನು ಹೊಂದಿಸುವಾಗ ದೋಷ: %s" -#: ../gio/glocalfileinfo.c:2149 +#: gio/glocalfileinfo.c:2149 msgid "SELinux context must be non-NULL" msgstr "SELinux ಸನ್ನಿವೇಶವು NULL ಆಗಿರಬಾರದು" -#: ../gio/glocalfileinfo.c:2164 +#: gio/glocalfileinfo.c:2164 #, c-format msgid "Error setting SELinux context: %s" msgstr "SELinux ಸನ್ನಿವೇಶವನ್ನು ಹೊಂದಿಸುವಾಗ ದೋಷ: %s" -#: ../gio/glocalfileinfo.c:2171 +#: gio/glocalfileinfo.c:2171 msgid "SELinux is not enabled on this system" msgstr "ಈ ಗಣಕದಲ್ಲಿ SELinux ಶಕ್ತವಾಗಿಲ್ಲ" -#: ../gio/glocalfileinfo.c:2263 +#: gio/glocalfileinfo.c:2263 #, c-format msgid "Setting attribute %s not supported" msgstr "%s ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಹೊಂದಿಸುವುದು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" -#: ../gio/glocalfileinputstream.c:171 ../gio/glocalfileoutputstream.c:708 +#: gio/glocalfileinputstream.c:171 gio/glocalfileoutputstream.c:708 #, c-format msgid "Error reading from file: %s" msgstr "ಕಡತದಿಂದ ಓದುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfileinputstream.c:202 ../gio/glocalfileinputstream.c:214 -#: ../gio/glocalfileinputstream.c:326 ../gio/glocalfileoutputstream.c:456 -#: ../gio/glocalfileoutputstream.c:1012 +#: gio/glocalfileinputstream.c:202 gio/glocalfileinputstream.c:214 +#: gio/glocalfileinputstream.c:326 gio/glocalfileoutputstream.c:456 +#: gio/glocalfileoutputstream.c:1012 #, c-format msgid "Error seeking in file: %s" msgstr "ಕಡತದಲ್ಲಿ ಕೋರುವಾಗ ದೋಷ: %s" -#: ../gio/glocalfileinputstream.c:247 ../gio/glocalfileoutputstream.c:242 -#: ../gio/glocalfileoutputstream.c:337 +#: gio/glocalfileinputstream.c:247 gio/glocalfileoutputstream.c:242 +#: gio/glocalfileoutputstream.c:337 #, c-format msgid "Error closing file: %s" msgstr "ಕಡತವನ್ನು ಮುಚ್ಚುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfilemonitor.c:213 +#: gio/glocalfilemonitor.c:213 msgid "Unable to find default local file monitor type" msgstr "ಪೂರ್ವನಿಯೋಜಿತವಾದ ಸ್ಥಳೀಯ ಕಡತ ಮೇಲ್ವಿಚಾರಕದ ಬಗೆಯನ್ನು ಪತ್ತೆ ಮಾಡಲಾಗಿಲ್ಲ" -#: ../gio/glocalfileoutputstream.c:188 ../gio/glocalfileoutputstream.c:221 -#: ../gio/glocalfileoutputstream.c:729 +#: gio/glocalfileoutputstream.c:188 gio/glocalfileoutputstream.c:221 +#: gio/glocalfileoutputstream.c:729 #, c-format msgid "Error writing to file: %s" msgstr "ಕಡತಕ್ಕೆ ಬರೆಯುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfileoutputstream.c:269 +#: gio/glocalfileoutputstream.c:269 #, c-format msgid "Error removing old backup link: %s" msgstr "ಹಳೆಯ ಬ್ಯಾಕ್ಅಪ್ ಕೊಂಡಿಯನ್ನು ತೆಗೆದುಹಾಕುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfileoutputstream.c:283 ../gio/glocalfileoutputstream.c:296 +#: gio/glocalfileoutputstream.c:283 gio/glocalfileoutputstream.c:296 #, c-format msgid "Error creating backup copy: %s" msgstr "ಬ್ಯಾಕ್ಅಪ್ ಪ್ರತಿಯನ್ನು ನಿರ್ಮಿಸುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfileoutputstream.c:314 +#: gio/glocalfileoutputstream.c:314 #, c-format msgid "Error renaming temporary file: %s" msgstr "ತಾತ್ಕಾಲಿಕ ಕಡತದ ಹೆಸರನ್ನು ಬದಲಾಯಿಸುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfileoutputstream.c:502 ../gio/glocalfileoutputstream.c:1063 +#: gio/glocalfileoutputstream.c:502 gio/glocalfileoutputstream.c:1063 #, c-format msgid "Error truncating file: %s" msgstr "ಕಡತವನ್ನು ಟ್ರಂಕೇಟ್ ಮಾಡುವಲ್ಲಿ ಲಿ ದೋಷ: %s" -#: ../gio/glocalfileoutputstream.c:563 ../gio/glocalfileoutputstream.c:616 -#: ../gio/glocalfileoutputstream.c:661 ../gio/glocalfileoutputstream.c:801 -#: ../gio/glocalfileoutputstream.c:1044 ../gio/glocalfileoutputstream.c:1143 +#: gio/glocalfileoutputstream.c:563 gio/glocalfileoutputstream.c:616 +#: gio/glocalfileoutputstream.c:661 gio/glocalfileoutputstream.c:801 +#: gio/glocalfileoutputstream.c:1044 gio/glocalfileoutputstream.c:1143 #, c-format msgid "Error opening file '%s': %s" msgstr "'%s' ಕಡತವನ್ನು ತೆರೆಯುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/glocalfileoutputstream.c:832 +#: gio/glocalfileoutputstream.c:832 msgid "Target file is a directory" msgstr "ಸೂಚಿತ ಕಡತವು ಒಂದು ಕೋಶವಾಗಿದೆ" -#: ../gio/glocalfileoutputstream.c:837 +#: gio/glocalfileoutputstream.c:837 msgid "Target file is not a regular file" msgstr "ಸೂಚಿತ ಕಡತವು ಒಂದು ಸಾಮಾನ್ಯ ಕಡತವಲ್ಲ" -#: ../gio/glocalfileoutputstream.c:849 +#: gio/glocalfileoutputstream.c:849 msgid "The file was externally modified" msgstr "ಕಡತವು ಹೊರಗಿನಿಂದ ಮಾರ್ಪಡಿಸಲ್ಪಟ್ಟಿದೆ" -#: ../gio/glocalfileoutputstream.c:1028 +#: gio/glocalfileoutputstream.c:1028 #, c-format msgid "Error removing old file: %s" msgstr "ಹಳೆಯ ಕಡತವನ್ನು ತೆಗೆದು ಹಾಕುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/gmemoryinputstream.c:487 ../gio/gmemoryoutputstream.c:718 +#: gio/gmemoryinputstream.c:487 gio/gmemoryoutputstream.c:718 msgid "Invalid GSeekType supplied" msgstr "ಅಮಾನ್ಯವಾದ GSeekType ಅನ್ನು ಒದಗಿಸಲಾಗಿದೆ" -#: ../gio/gmemoryinputstream.c:497 +#: gio/gmemoryinputstream.c:497 msgid "Invalid seek request" msgstr "ಅಮಾನ್ಯವಾದ ಕೋರಿಕೆ" -#: ../gio/gmemoryinputstream.c:521 +#: gio/gmemoryinputstream.c:521 msgid "Cannot truncate GMemoryInputStream" msgstr "GMemoryInputStream ಅನ್ನು ಕಡಿತಗೊಳಿಸಲಾಗಿಲ್ಲ" -#: ../gio/gmemoryoutputstream.c:468 +#: gio/gmemoryoutputstream.c:468 msgid "Memory output stream not resizable" msgstr "ಮೆಮೊರಿ ಪ್ರದಾನ ಸ್ಟ್ರೀಮ್ ಪುನರ್ ಗಾತ್ರಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ" -#: ../gio/gmemoryoutputstream.c:484 +#: gio/gmemoryoutputstream.c:484 msgid "Failed to resize memory output stream" msgstr "ಮೆಮೊರಿ ಪ್ರದಾನ ಸ್ಟ್ರೀಮ್ ಅನ್ನು ಪುನರ್ ಗಾತ್ರಿಸುವಲ್ಲಿ ವಿಫಲತೆ ಉಂಟಾಗಿದೆ" -#: ../gio/gmemoryoutputstream.c:572 +#: gio/gmemoryoutputstream.c:572 msgid "" "Amount of memory required to process the write is larger than available " "address space" msgstr "" -#: ../gio/gmemoryoutputstream.c:728 +#: gio/gmemoryoutputstream.c:728 msgid "Requested seek before the beginning of the stream" msgstr "" -#: ../gio/gmemoryoutputstream.c:737 +#: gio/gmemoryoutputstream.c:737 msgid "Requested seek beyond the end of the stream" msgstr "" #. Translators: This is an error #. * message for mount objects that #. * don't implement unmount. -#: ../gio/gmount.c:364 +#: gio/gmount.c:364 msgid "mount doesn't implement \"unmount\"" msgstr "ಆರೋಹಣವು \"unmount\"ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ" #. Translators: This is an error #. * message for mount objects that #. * don't implement eject. -#: ../gio/gmount.c:443 +#: gio/gmount.c:443 msgid "mount doesn't implement \"eject\"" msgstr "ಆರೋಹಣವು \"eject\" ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ" #. Translators: This is an error #. * message for mount objects that #. * don't implement any of unmount or unmount_with_operation. -#: ../gio/gmount.c:523 +#: gio/gmount.c:523 msgid "mount doesn't implement \"unmount\" or \"unmount_with_operation\"" msgstr "" "ಆರೋಹಣವು \"unmount\" ಅನ್ನು ಅಥವ \"unmount_with_operation ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ" @@ -1784,279 +1782,280 @@ msgstr "" #. Translators: This is an error #. * message for mount objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gmount.c:610 +#: gio/gmount.c:610 msgid "mount doesn't implement \"eject\" or \"eject_with_operation\"" -msgstr "ಆರೋಹಣವು \"eject\" ಅಥವ \"eject_with_operation\" ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ\"" +msgstr "" +"ಆರೋಹಣವು \"eject\" ಅಥವ \"eject_with_operation\" ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ\"" #. Translators: This is an error #. * message for mount objects that #. * don't implement remount. -#: ../gio/gmount.c:699 +#: gio/gmount.c:699 msgid "mount doesn't implement \"remount\"" msgstr "ಆರೋಹಣವು \"remount\" ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ" #. Translators: This is an error #. * message for mount objects that #. * don't implement content type guessing. -#: ../gio/gmount.c:783 +#: gio/gmount.c:783 msgid "mount doesn't implement content type guessing" msgstr "ಆರೋಹಣವು ವಿಷಯದ ಬಗೆಯ ಊಹೆಯನ್ನು ಅನ್ವಯಿಸುವುದಿಲ್ಲ" #. Translators: This is an error #. * message for mount objects that #. * don't implement content type guessing. -#: ../gio/gmount.c:872 +#: gio/gmount.c:872 msgid "mount doesn't implement synchronous content type guessing" msgstr "ಆರೋಹಣವು ಹೊಂದಿಕೊಳ್ಳುವ ವಿಷಯದ ಬಗೆಯ ಊಹೆಯನ್ನು ಅನ್ವಯಿಸುವುದಿಲ್ಲ" -#: ../gio/gnetworkaddress.c:295 +#: gio/gnetworkaddress.c:295 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "ಅತಿಥೇಯದ ಹೆಸರು '%s' '[' ಅನ್ನು ಹೊಂದಿದೆ ಆದರೆ ']' ಅನ್ನು ಹೊಂದಿಲ್ಲ" -#: ../gio/goutputstream.c:207 ../gio/goutputstream.c:408 +#: gio/goutputstream.c:207 gio/goutputstream.c:408 msgid "Output stream doesn't implement write" msgstr "ಪ್ರದಾನ ಸ್ಟ್ರೀಮ್ ಬರೆಯುವುದನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ" -#: ../gio/goutputstream.c:369 ../gio/goutputstream.c:781 +#: gio/goutputstream.c:369 gio/goutputstream.c:781 msgid "Source stream is already closed" msgstr "ಮೂಲ ಸ್ಟ್ರೀಮ್ ಈಗಾಗಲೆ ಮುಚ್ಚಲ್ಪಟ್ಟಿದೆ" -#: ../gio/gresolver.c:736 +#: gio/gresolver.c:736 #, c-format msgid "Error resolving '%s': %s" msgstr "'%s' ಅನ್ನು ಪರಿಹರಿಸುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/gresolver.c:786 +#: gio/gresolver.c:786 #, c-format msgid "Error reverse-resolving '%s': %s" msgstr "'%s' ಅನ್ನು ವಿಲೋಮವಾಗಿ ಪರಿಹರಿಸುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/gresolver.c:821 ../gio/gresolver.c:899 +#: gio/gresolver.c:821 gio/gresolver.c:899 #, c-format msgid "No service record for '%s'" msgstr "'%s' ಗೆ ಯಾವುದೆ ಸೇವಾ ದಾಖಲೆ ಇಲ್ಲ" -#: ../gio/gresolver.c:826 ../gio/gresolver.c:904 +#: gio/gresolver.c:826 gio/gresolver.c:904 #, c-format msgid "Temporarily unable to resolve '%s'" msgstr "'%s' ಅನ್ನು ಪರಿಹರಿಸುವಲ್ಲಿ ತಾತ್ಕಾಲಿಕ ದೋಷ ಉಂಟಾಗಿದೆ" -#: ../gio/gresolver.c:831 ../gio/gresolver.c:909 +#: gio/gresolver.c:831 gio/gresolver.c:909 #, c-format msgid "Error resolving '%s'" msgstr "'%s' ಅನ್ನು ಪರಿಹರಿಸುವಲ್ಲಿ ದೋಷ" -#: ../gio/gsocket.c:277 +#: gio/gsocket.c:277 msgid "Invalid socket, not initialized" msgstr "ಅಮಾನ್ಯವಾದ ಸಾಕೆಟ್, ಆರಂಭಿಸಲಾಗಿಲ್ಲ" -#: ../gio/gsocket.c:284 +#: gio/gsocket.c:284 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "ಅಮಾನ್ಯವಾದ ಸಾಕೆಟ್, ಆರಂಭಿಸುವಿಕೆಯು ವಿಫಲಗೊಂಡಿದೆ ಏಕೆಂದರೆ: %s" -#: ../gio/gsocket.c:292 +#: gio/gsocket.c:292 msgid "Socket is already closed" msgstr "ಸಾಕೆಟ್ ಈಗಾಗಲೆ ಮುಚ್ಚಲ್ಪಟ್ಟಿದೆ" -#: ../gio/gsocket.c:413 +#: gio/gsocket.c:413 #, c-format msgid "creating GSocket from fd: %s" msgstr "fd ಇಂದ GSocket ಅನ್ನು ರಚಿಸಲಾಗುತ್ತಿದೆ: %s" -#: ../gio/gsocket.c:447 ../gio/gsocket.c:461 ../gio/gsocket.c:1925 +#: gio/gsocket.c:447 gio/gsocket.c:461 gio/gsocket.c:1925 #, c-format msgid "Unable to create socket: %s" msgstr "ಸಾಕೆಟ್ ಅನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" -#: ../gio/gsocket.c:447 +#: gio/gsocket.c:447 msgid "Unknown protocol was specified" msgstr "ಅಜ್ಞಾತವಾದ ಪ್ರೊಟೊಕಾಲ್ ಅನ್ನು ಸೂಚಿಸಲಾಗಿದೆ" -#: ../gio/gsocket.c:1126 +#: gio/gsocket.c:1126 #, c-format msgid "could not get local address: %s" msgstr "ಸ್ಥಳೀಯ ವಿಳಾಸವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" -#: ../gio/gsocket.c:1159 +#: gio/gsocket.c:1159 #, c-format msgid "could not get remote address: %s" msgstr "ದೂರಸ್ಥ ವಿಳಾಸವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" -#: ../gio/gsocket.c:1217 +#: gio/gsocket.c:1217 #, c-format msgid "could not listen: %s" msgstr "ಆಲಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" -#: ../gio/gsocket.c:1291 +#: gio/gsocket.c:1291 #, c-format msgid "Error binding to address: %s" msgstr "ವಿಳಾಸಕ್ಕೆ ಬದ್ದವಾಗಿರುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/gsocket.c:1411 +#: gio/gsocket.c:1411 #, c-format msgid "Error accepting connection: %s" msgstr "ಸಂಪರ್ಕವನ್ನು ಅಂಗೀಕರಿಸುವಾಗ ದೋಷ: %s" -#: ../gio/gsocket.c:1524 +#: gio/gsocket.c:1524 msgid "Error connecting: " msgstr "ಸಂಪರ್ಕಸಾಧಿಸುವಲ್ಲಿ ದೋಷ: " -#: ../gio/gsocket.c:1528 +#: gio/gsocket.c:1528 msgid "Connection in progress" msgstr "ಸಂಪರ್ಕವು ಪ್ರಗತಿಯಲ್ಲಿದೆ" -#: ../gio/gsocket.c:1533 +#: gio/gsocket.c:1533 #, c-format msgid "Error connecting: %s" msgstr "ಸಂಪರ್ಕ ಸಾಧಿಸುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/gsocket.c:1573 +#: gio/gsocket.c:1573 #, c-format msgid "Unable to get pending error: %s" msgstr "ಬಾಕಿ ಇರುವ ದೋಷವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" -#: ../gio/gsocket.c:1669 +#: gio/gsocket.c:1669 #, c-format msgid "Error receiving data: %s" msgstr "ದತ್ತಾಂಶವನ್ನು ಸ್ವೀಕರಿಸುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/gsocket.c:1812 +#: gio/gsocket.c:1812 #, c-format msgid "Error sending data: %s" msgstr "ದತ್ತಾಂಶವನ್ನು ಕಳಿಸುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/gsocket.c:2004 +#: gio/gsocket.c:2004 #, c-format msgid "Error closing socket: %s" msgstr "ದತ್ತಾಂಶವನ್ನು ಮುಚ್ಚುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/gsocket.c:2481 +#: gio/gsocket.c:2481 #, c-format msgid "Waiting for socket condition: %s" msgstr "ಸಾಕೆಟ್ ಸ್ಥಿತಿಗಾಗಿ ಕಾಯಲಾಗುತ್ತಿದೆ: %s" -#: ../gio/gsocket.c:2720 ../gio/gsocket.c:2801 +#: gio/gsocket.c:2720 gio/gsocket.c:2801 #, c-format msgid "Error sending message: %s" msgstr "ಸಂದೇಶವನ್ನು ಕಳುಹಿಸುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/gsocket.c:2745 +#: gio/gsocket.c:2745 msgid "GSocketControlMessage not supported on windows" msgstr "ವಿಂಡೋಸ್ನಲ್ಲಿ GSocketControlMessage ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" -#: ../gio/gsocket.c:3003 ../gio/gsocket.c:3141 +#: gio/gsocket.c:3003 gio/gsocket.c:3141 #, c-format msgid "Error receiving message: %s" msgstr "ಸಂದೇಶವನ್ನು ಪಡೆಯುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/gsocketclient.c:521 ../gio/gsocketclient.c:770 +#: gio/gsocketclient.c:521 gio/gsocketclient.c:770 msgid "Unknown error on connect" msgstr "ಸಂಪರ್ಕಸಾಧಿಸುವಲ್ಲಿ ಗೊತ್ತಿರದ ದೋಷ" -#: ../gio/gsocketlistener.c:192 +#: gio/gsocketlistener.c:192 msgid "Listener is already closed" msgstr "ಆಲಿಸುವುವುದನ್ನು ಈಗಾಗಲೆ ಮುಚ್ಚಲಾಗಿದೆ" -#: ../gio/gsocketlistener.c:233 +#: gio/gsocketlistener.c:233 msgid "Added socket is closed" msgstr "ಸೇರಿಸಲಾದ ಸಾಕೆಟ್ ಅನ್ನು ಮುಚ್ಚಲಾಗಿದೆ" -#: ../gio/gthemedicon.c:499 +#: gio/gthemedicon.c:499 #, c-format msgid "Can't handle version %d of GThemedIcon encoding" msgstr "GThemedIcon ಎನ್ಕೋಡಿಂಗ್ನ ಆವೃತ್ತಿ %d ಅನ್ನು ನಿಭಾಯಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" -#: ../gio/gunixconnection.c:151 +#: gio/gunixconnection.c:151 #, c-format msgid "Expecting 1 control message, got %d" msgstr "1 ನಿಯಂತ್ರಣ ಸಂದೇಶವನ್ನು ನಿರೀಕ್ಷಿಸಲಾಗಿತ್ತು, %d ಅನ್ನು ಪಡೆಯಲಾಗಿದೆ" -#: ../gio/gunixconnection.c:164 +#: gio/gunixconnection.c:164 msgid "Unexpected type of ancillary data" msgstr "ಅನಿರೀಕ್ಷಿತ ಬಗೆಯ ಪೂರಕ ದತ್ತಾಂಶ" -#: ../gio/gunixconnection.c:182 +#: gio/gunixconnection.c:182 #, c-format msgid "Expecting one fd, but got %d\n" msgstr "ಒಂದು fd ಅನ್ನು ನಿರೀಕ್ಷಿಸಲಾಗಿತ್ತು, ಆದರೆ %d ಅನ್ನು ಪಡೆಯಲಾಗಿದೆ\n" -#: ../gio/gunixconnection.c:198 +#: gio/gunixconnection.c:198 msgid "Received invalid fd" msgstr "ಅಮಾನ್ಯವಾದ fd ಯನ್ನು ಸ್ವೀಕರಿಸಲಾಗಿದೆ" -#: ../gio/gunixinputstream.c:354 ../gio/gunixinputstream.c:374 -#: ../gio/gunixinputstream.c:452 ../gio/gunixoutputstream.c:439 +#: gio/gunixinputstream.c:354 gio/gunixinputstream.c:374 +#: gio/gunixinputstream.c:452 gio/gunixoutputstream.c:439 #, c-format msgid "Error reading from unix: %s" msgstr "ಯುನಿಕ್ಸ್ನಿಂದ ಓದುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/gunixinputstream.c:407 ../gio/gunixinputstream.c:589 -#: ../gio/gunixoutputstream.c:394 ../gio/gunixoutputstream.c:545 +#: gio/gunixinputstream.c:407 gio/gunixinputstream.c:589 +#: gio/gunixoutputstream.c:394 gio/gunixoutputstream.c:545 #, c-format msgid "Error closing unix: %s" msgstr "ಯುನಿಕ್ಸ್ ಅನ್ನು ಮುಚ್ಚುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/gunixmounts.c:1846 ../gio/gunixmounts.c:1883 +#: gio/gunixmounts.c:1846 gio/gunixmounts.c:1883 msgid "Filesystem root" msgstr "ಕಡತವ್ಯವಸ್ಥೆ ಮೂಲ" -#: ../gio/gunixoutputstream.c:340 ../gio/gunixoutputstream.c:361 +#: gio/gunixoutputstream.c:340 gio/gunixoutputstream.c:361 #, c-format msgid "Error writing to unix: %s" msgstr "ಯುನಿಕ್ಸ್ಗೆ ಬರೆಯುವಲ್ಲೆ ದೋಷ: %s" -#: ../gio/gunixsocketaddress.c:182 +#: gio/gunixsocketaddress.c:182 msgid "Abstract unix domain socket addresses not supported on this system" msgstr "ಅಬ್ಸ್ಟ್ರಾಕ್ಟ್ ಯುನಿಕ್ಸ್ ಡೊಮೈನ್ ಸಾಕೆಟ್ ವಿಳಾಸಗಳಿಗೆ ಈ ವ್ಯವಸ್ಥೆಯಲ್ಲಿ ಬೆಂಬಲವಿಲ್ಲ" -#: ../gio/gvolume.c:407 +#: gio/gvolume.c:407 msgid "volume doesn't implement eject" msgstr "ಪರಿಮಾಣವು ಹೊರ ತಳ್ಳುವುದನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ" #. Translators: This is an error #. * message for volume objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gvolume.c:486 +#: gio/gvolume.c:486 msgid "volume doesn't implement eject or eject_with_operation" msgstr "ಪರಿಮಾಣವು ಹೊರ ತಳ್ಳುವುದನ್ನು ಅಥವ eject_with_operation ಅನ್ನು ಅನ್ವಯಿಸುವುದಿಲ್ಲ" -#: ../gio/gwin32appinfo.c:277 +#: gio/gwin32appinfo.c:277 msgid "Can't find application" msgstr "ಅನ್ವಯವನ್ನು ಪತ್ತೆಮಾಡಲಾಗುವುದಿಲ್ಲ" -#: ../gio/gwin32appinfo.c:300 +#: gio/gwin32appinfo.c:300 #, c-format msgid "Error launching application: %s" msgstr "ಅನ್ವಯವನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ದೋಷ: %s" -#: ../gio/gwin32appinfo.c:336 +#: gio/gwin32appinfo.c:336 msgid "URIs not supported" msgstr "URI ಗಳು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" -#: ../gio/gwin32appinfo.c:358 +#: gio/gwin32appinfo.c:358 msgid "association changes not supported on win32" msgstr "win32 ನಲ್ಲಿ ಅಸೋಸಿಯೇಶನ್ ಬದಲಾವಣೆಗಳು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" -#: ../gio/gwin32appinfo.c:370 +#: gio/gwin32appinfo.c:370 msgid "Association creation not supported on win32" msgstr "win32 ನಲ್ಲಿ ಅಸೋಸಿಯೇಶನ್ ರಚನೆಯು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" -#: ../gio/gzlibcompressor.c:279 ../gio/gzlibdecompressor.c:250 +#: gio/gzlibcompressor.c:279 gio/gzlibdecompressor.c:250 msgid "Not enough memory" msgstr "ಸಾಕಷ್ಟು ಮೆಮೊರಿಯು ಲಭ್ಯವಿಲ್ಲ" -#: ../gio/gzlibcompressor.c:286 ../gio/gzlibdecompressor.c:257 +#: gio/gzlibcompressor.c:286 gio/gzlibdecompressor.c:257 #, c-format msgid "Internal error: %s" msgstr "ಆಂತರಿಕ ದೋಷ: %s" -#: ../gio/gzlibcompressor.c:299 ../gio/gzlibdecompressor.c:271 +#: gio/gzlibcompressor.c:299 gio/gzlibdecompressor.c:271 msgid "Need more input" msgstr "" -#: ../gio/gzlibdecompressor.c:243 +#: gio/gzlibdecompressor.c:243 #, fuzzy msgid "Invalid compressed data" msgstr "ಅಮಾನ್ಯವಾದ ಅತಿಥೇಯದ ಹೆಸರು" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-02-16 03:42+0900\n" "Last-Translator: Changwoo Ryu <cwryu@debian.org>\n" "Language-Team: GNOME Korea <gnome-kr@googlegroups.com>\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.glib-2-8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2006-04-20 17:33+0000\n" "Last-Translator: Erdal Ronahi <erdal.ronahi@gmail.com>\n" "Language-Team: Kurdish <gnu-ku-wergerandin@lists.sourceforge.net>\n" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: lt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-05 11:16+0200\n" "Last-Translator: Rimas Kudelis <rq@akl.lt>\n" "Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2002-12-19 01:04+0200\n" "Last-Translator: Artis Trops <hornet@navigator.lv>\n" "Language-Team: Latvian <ll10nt@os.lv>\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2009-02-27 17:15+0530\n" "Last-Translator: Rajesh Ranjan <rranjan@redhat.com>\n" "Language-Team: maithili <maithili.sf.net>\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: GLIB VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2007-03-03 19:00+0300\n" "Last-Translator: Fanomezana Rajaonarisoa <fano@isvtec.com>\n" "Language-Team: MALAGASY <i18n-malagasy-gnome@gna.org>\n" @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD.mk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2008-02-04 04:11+0100\n" "Last-Translator: Jovan Naumovski <jovan@lugola.net>\n" "Language-Team: Macedonian <mkde-l10n@lists.sourceforge.net>\n" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.master.ml\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2009-09-20 20:08+0530\n" "Last-Translator: \n" "Language-Team: <en@li.org>\n" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2005-05-30 01:07-0800\n" "Last-Translator: Бадрал <badral@openmn.org>\n" "Language-Team: Mongolian <openmn-translation@lists.sf.net>\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2009-09-07 19:13+0530\n" "Last-Translator: Sandeep Shedmake <sshedmak@redhat.com>\n" "Language-Team: Marathi <fedora-trans-mr@redhat.com>\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: glib HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2004-02-03 02:11+0730\n" "Last-Translator: Hasbullah Bin Pit <sebol@my-penguin.org>\n" "Language-Team: Projek Gabai <gabai-penyumbang@lists.sourceforge.org>\n" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.23.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-04 22:56+0100\n" "Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n" "Language-Team: Norwegian bokmal <i18n-nb@lister.ping.uio.no>\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-18 13:53+0100\n" "Last-Translator: Nils-Christoph Fiedler <fiedler@medienkompanie.de>\n" "Language-Team: Low German <nds-lowgerman@lists.sourceforge.net>\n" @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.glib-2-10.ne\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2006-04-27 00:00+0545\n" "Last-Translator: Shyam Krishna Bal <shyamkrishna_bal@yahoo.com>\n" "Language-Team: Nepali <info@mpp.org.np>\n" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2009-02-23 14:07+0100\n" "Last-Translator: Wouter Bolsterlee <wbolster@gnome.org>\n" "Language-Team: Dutch <vertaling@vrijschrift.org>\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2008-02-24 17:33+0100\n" "Last-Translator: Åsmund Skjæveland <aasmunds@ulrik.uio.no>\n" "Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: oc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2008-04-23 10:42+0200\n" "Last-Translator: Yannig Marchegay (Kokoyaya) <yannig@marchegay.org>\n" "Language-Team: Occitan <ubuntu-l10n-oci@lists.ubuntu.com>\n" @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.master.or\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2009-09-15 16:20+0530\n" "Last-Translator: Manoj Kumar Giri <mgiri@redhat.com>\n" "Language-Team: Oriya <oriya-it@googlegroups.com>\n" @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-19 08:18+0530\n" "Last-Translator: A S Alam <aalam@users.sf.net>\n" "Language-Team: Punjabi/Panjabi <kde-i18n-doc@kde.org>\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-08 10:50+0100\n" "Last-Translator: Tomasz Dominikowski <dominikowski@gmail.com>\n" "Language-Team: Polish <gnomepl@aviary.pl>\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.head\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2009-04-12 17:07-0800\n" "Last-Translator: \n" "Language-Team: Pashto <pathanisation@googlegroups.com>\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 2.30\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-08 02:30+0000\n" "Last-Translator: Duarte Loreto <happyguy_pt@hotmail.com>\n" "Language-Team: Portuguese <gnome_pt@yahoogroups.com>\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index a252b8569..9ee29579b 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-04 17:12-0300\n" "Last-Translator: Jonh Wendell <jwendell@gnome.org>\n" "Language-Team: Brazilian Portuguese <gnome-pt_br-list@gnome.org>\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-18 22:47+0200\n" "Last-Translator: Mișu Moldovan <dumol@gnome.ro>\n" "Language-Team: Romanian GNOME Team <gnomero-list@lists.sourceforge.net>\n" @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: ru\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-05 15:48+0200\n" "Last-Translator: Leonid Kanter <leon@asplinux.ru>\n" "Language-Team: Russian <ru@li.org>\n" @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.12\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2005-03-28 19:34-0700\n" "Last-Translator: Steve Murphy <murf@e-tools.com>\n" "Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.si\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2007-06-20 14:56+0530\n" "Last-Translator: Danishka Navin <snavin@redhat.com>\n" "Language-Team: Sinhala <en@li.org>\n" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2008-03-15 15:01+0100\n" "Last-Translator: Marcel Telka <marcel@telka.sk>\n" "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-05 07:21+0100\n" "Last-Translator: Matej Urbančič <mateju@svn.gnome.org>\n" "Language-Team: Slovenian GNOME Translation Team <gnome-si@googlegroups.com>\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: glib HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2008-08-18 10:19+0200\n" "Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n" "Language-Team: albanian <gnome-albanian-perkthyesit@lists.sourceforge.net>\n" @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: 2.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-09 20:28+0100\n" "Last-Translator: Милош Поповић <gpopac@gmail.com>\n" "Language-Team: Serbian <gnome@prevod.org>\n" diff --git a/po/sr@ije.po b/po/sr@ije.po index 53a3d5b14..e26e11163 100644 --- a/po/sr@ije.po +++ b/po/sr@ije.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: 2.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2004-04-29 01:11+0200\n" "Last-Translator: Bojan Suzic <bojans@teol.net>\n" "Language-Team: Serbian (sr) <serbiagnome-lista@nongnu.org>\n" diff --git a/po/sr@latin.po b/po/sr@latin.po index 3cd8d9fd2..8ea0550e9 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: 2.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-09 20:28+0100\n" "Last-Translator: Miloš Popović <gpopac@gmail.com>\n" "Language-Team: Serbian <gnome@prevod.org>\n" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-06 00:28+0100\n" "Last-Translator: Daniel Nylander <po@danielnylander.se>\n" "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n" @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.master.ta\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2009-09-17 15:47+0530\n" "Last-Translator: \n" "Language-Team: <en@li.org>\n" @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: glib.master.te\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2009-09-17 14:15+0530\n" "Last-Translator: Krishna Babu K <kkrothap@redhat.com>\n" "Language-Team: Telugu <en@li.org>\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.14.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-04-06 14:40+0700\n" "Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n" "Language-Team: Thai <thai-l10n@googlegroups.com>\n" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2005-12-01 17:31+0800\n" "Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n" "Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2009-08-25 00:32+0300\n" "Last-Translator: Baris Cicek <baris@teamforce.name.tr>\n" "Language-Team: Turkish <gnome-turk@gnome.org>\n" @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: libgnome\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2005-11-09 13:19+0300\n" "Last-Translator: Albert Fazlí <tatarish.l10n@gmail.com>\n" "Language-Team: Tatarish <tatarish.l10n@gmail.com>\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 20010-03-26 14:56+0300\n" "Last-Translator: Maxim Dziumanenko <dziumanenko@gmail.com>\n" "Language-Team: ukrainian <Ukrainian <uk@li.org>>\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.19.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-22 21:32+0930\n" "Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n" "Language-Team: Vietnamese <vi-VN@googlegroups.com>\n" @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2004-05-03 14:40+0200\n" "Last-Translator: Pablo Saratxaga <pablo@walon.org>\n" "Language-Team: Walloon <linux-wa@walon.org>\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2005-02-08 12:31+0200\n" "Last-Translator: Canonical Ltd <translations@canonical.com>\n" "Language-Team: Xhosa <xh-translate@ubuntu.com>\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2003-03-19\n" "Last-Translator: Raphael Finkel <raphael@cs.uky.edu>\n" "Language-Team: Yiddish <raphael@cs.uky.edu>\n" diff --git a/po/zh_CN.po b/po/zh_CN.po index 835a41aaf..3d697e1ae 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: glib HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-26 11:48-0400\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2009-09-09 20:48+0800\n" "Last-Translator: Hinker <hinkerliu@gmail.com>\n" "Language-Team: Chinese/Simplified <i18n-translation@lists.linux.net.cn>\n" diff --git a/po/zh_HK.po b/po/zh_HK.po index 681dbfec7..60c8f10db 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.24.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-27 20:50+0800\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-27 20:50+0800\n" "Last-Translator: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>\n" "Language-Team: Chinese (Hong Kong) <community@linuxhall.org>\n" @@ -18,1227 +18,1227 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ../glib/gbookmarkfile.c:737 +#: glib/gbookmarkfile.c:737 #, c-format msgid "Unexpected attribute '%s' for element '%s'" msgstr "元件「%2$s」中有未預期的屬性「%1$s」" -#: ../glib/gbookmarkfile.c:748 ../glib/gbookmarkfile.c:819 -#: ../glib/gbookmarkfile.c:829 ../glib/gbookmarkfile.c:936 +#: glib/gbookmarkfile.c:748 glib/gbookmarkfile.c:819 glib/gbookmarkfile.c:829 +#: glib/gbookmarkfile.c:936 #, c-format msgid "Attribute '%s' of element '%s' not found" msgstr "找不到元件「%2$s」中的屬性「%1$s」" -#: ../glib/gbookmarkfile.c:1106 ../glib/gbookmarkfile.c:1171 -#: ../glib/gbookmarkfile.c:1235 ../glib/gbookmarkfile.c:1245 +#: glib/gbookmarkfile.c:1106 glib/gbookmarkfile.c:1171 +#: glib/gbookmarkfile.c:1235 glib/gbookmarkfile.c:1245 #, c-format msgid "Unexpected tag '%s', tag '%s' expected" msgstr "未預期的標籤「%s」,應為標籤「%s」" -#: ../glib/gbookmarkfile.c:1131 ../glib/gbookmarkfile.c:1145 -#: ../glib/gbookmarkfile.c:1213 ../glib/gbookmarkfile.c:1265 +#: glib/gbookmarkfile.c:1131 glib/gbookmarkfile.c:1145 +#: glib/gbookmarkfile.c:1213 glib/gbookmarkfile.c:1265 #, c-format msgid "Unexpected tag '%s' inside '%s'" msgstr "「%2$s」中有未預期的標籤「%1$s」" -#: ../glib/gbookmarkfile.c:1793 +#: glib/gbookmarkfile.c:1793 msgid "No valid bookmark file found in data dirs" msgstr "在資料目錄中找不到有效的書籤檔案" -#: ../glib/gbookmarkfile.c:1994 +#: glib/gbookmarkfile.c:1994 #, c-format msgid "A bookmark for URI '%s' already exists" msgstr "URI「%s」的書籤已經存在" -#: ../glib/gbookmarkfile.c:2040 ../glib/gbookmarkfile.c:2198 -#: ../glib/gbookmarkfile.c:2283 ../glib/gbookmarkfile.c:2363 -#: ../glib/gbookmarkfile.c:2448 ../glib/gbookmarkfile.c:2531 -#: ../glib/gbookmarkfile.c:2609 ../glib/gbookmarkfile.c:2688 -#: ../glib/gbookmarkfile.c:2730 ../glib/gbookmarkfile.c:2827 -#: ../glib/gbookmarkfile.c:2953 ../glib/gbookmarkfile.c:3143 -#: ../glib/gbookmarkfile.c:3219 ../glib/gbookmarkfile.c:3384 -#: ../glib/gbookmarkfile.c:3473 ../glib/gbookmarkfile.c:3563 -#: ../glib/gbookmarkfile.c:3691 +#: glib/gbookmarkfile.c:2040 glib/gbookmarkfile.c:2198 +#: glib/gbookmarkfile.c:2283 glib/gbookmarkfile.c:2363 +#: glib/gbookmarkfile.c:2448 glib/gbookmarkfile.c:2531 +#: glib/gbookmarkfile.c:2609 glib/gbookmarkfile.c:2688 +#: glib/gbookmarkfile.c:2730 glib/gbookmarkfile.c:2827 +#: glib/gbookmarkfile.c:2953 glib/gbookmarkfile.c:3143 +#: glib/gbookmarkfile.c:3219 glib/gbookmarkfile.c:3384 +#: glib/gbookmarkfile.c:3473 glib/gbookmarkfile.c:3563 +#: glib/gbookmarkfile.c:3691 #, c-format msgid "No bookmark found for URI '%s'" msgstr "找不到 URI「%s」的書籤" -#: ../glib/gbookmarkfile.c:2372 +#: glib/gbookmarkfile.c:2372 #, c-format msgid "No MIME type defined in the bookmark for URI '%s'" msgstr "URI「%s」書籤中沒有定義 MIME 類型" -#: ../glib/gbookmarkfile.c:2457 +#: glib/gbookmarkfile.c:2457 #, c-format msgid "No private flag has been defined in bookmark for URI '%s'" msgstr "URI「%s」書籤中沒有私有旗幟" -#: ../glib/gbookmarkfile.c:2836 +#: glib/gbookmarkfile.c:2836 #, c-format msgid "No groups set in bookmark for URI '%s'" msgstr "URI「%s」書籤中沒有設定羣組" -#: ../glib/gbookmarkfile.c:3237 ../glib/gbookmarkfile.c:3394 +#: glib/gbookmarkfile.c:3237 glib/gbookmarkfile.c:3394 #, c-format msgid "No application with name '%s' registered a bookmark for '%s'" msgstr "沒有名為「%s」的應用程式註冊書籤「%s」" -#: ../glib/gbookmarkfile.c:3417 +#: glib/gbookmarkfile.c:3417 #, c-format msgid "Failed to expand exec line '%s' with URI '%s'" msgstr "以 URI‘%2$s’ 展開 exec 行‘%1$s’失敗" -#: ../glib/gconvert.c:437 ../glib/gconvert.c:515 ../glib/giochannel.c:1404 -#: ../gio/gcharsetconverter.c:459 +#: glib/gconvert.c:437 glib/gconvert.c:515 glib/giochannel.c:1404 +#: gio/gcharsetconverter.c:459 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "不支援將字符集‘%s’轉換成‘%s’" -#: ../glib/gconvert.c:441 ../glib/gconvert.c:519 -#: ../gio/gcharsetconverter.c:463 +#: glib/gconvert.c:441 glib/gconvert.c:519 gio/gcharsetconverter.c:463 #, c-format msgid "Could not open converter from '%s' to '%s'" msgstr "無法將‘%s’轉換至‘%s’" -#: ../glib/gconvert.c:638 ../glib/gconvert.c:1031 ../glib/giochannel.c:1576 -#: ../glib/giochannel.c:1618 ../glib/giochannel.c:2462 ../glib/gutf8.c:981 -#: ../glib/gutf8.c:1436 ../gio/gcharsetconverter.c:346 +#: glib/gconvert.c:638 glib/gconvert.c:1031 glib/giochannel.c:1576 +#: glib/giochannel.c:1618 glib/giochannel.c:2462 glib/gutf8.c:981 +#: glib/gutf8.c:1436 gio/gcharsetconverter.c:346 msgid "Invalid byte sequence in conversion input" msgstr "轉換輸入資料時遇到不正確的位元組組合" -#: ../glib/gconvert.c:646 ../glib/gconvert.c:956 ../glib/giochannel.c:1583 -#: ../glib/giochannel.c:2474 ../gio/gcharsetconverter.c:351 +#: glib/gconvert.c:646 glib/gconvert.c:956 glib/giochannel.c:1583 +#: glib/giochannel.c:2474 gio/gcharsetconverter.c:351 #, c-format msgid "Error during conversion: %s" msgstr "轉換時發生錯誤:%s" -#: ../glib/gconvert.c:678 ../glib/gutf8.c:977 ../glib/gutf8.c:1187 -#: ../glib/gutf8.c:1328 ../glib/gutf8.c:1432 +#: glib/gconvert.c:678 glib/gutf8.c:977 glib/gutf8.c:1187 glib/gutf8.c:1328 +#: glib/gutf8.c:1432 msgid "Partial character sequence at end of input" msgstr "輸入資料結束時字符仍未完整" -#: ../glib/gconvert.c:928 +#: glib/gconvert.c:928 #, c-format msgid "Cannot convert fallback '%s' to codeset '%s'" msgstr "無法將後備字串‘%s’的字符集轉換成‘%s’" -#: ../glib/gconvert.c:1751 +#: glib/gconvert.c:1751 #, c-format msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" msgstr "URI‘%s’不是使用“file”格式的絕對 URI" -#: ../glib/gconvert.c:1761 +#: glib/gconvert.c:1761 #, c-format msgid "The local file URI '%s' may not include a '#'" msgstr "本機檔案的 URI‘%s’不應含有‘#’" -#: ../glib/gconvert.c:1778 +#: glib/gconvert.c:1778 #, c-format msgid "The URI '%s' is invalid" msgstr "URI‘%s’無效" -#: ../glib/gconvert.c:1790 +#: glib/gconvert.c:1790 #, c-format msgid "The hostname of the URI '%s' is invalid" msgstr "URI‘%s’中的主機名稱無效" -#: ../glib/gconvert.c:1806 +#: glib/gconvert.c:1806 #, c-format msgid "The URI '%s' contains invalidly escaped characters" msgstr "URI‘%s’含有「不正確跳出」的字符" -#: ../glib/gconvert.c:1901 +#: glib/gconvert.c:1901 #, c-format msgid "The pathname '%s' is not an absolute path" msgstr "路徑名稱‘%s’不是絕對路徑" -#: ../glib/gconvert.c:1911 +#: glib/gconvert.c:1911 msgid "Invalid hostname" msgstr "主機名稱無效" -#: ../glib/gdir.c:112 ../glib/gdir.c:135 +#: glib/gdir.c:112 glib/gdir.c:135 #, c-format msgid "Error opening directory '%s': %s" msgstr "開啟目錄‘%s’時發生錯誤:%s" -#: ../glib/gfileutils.c:536 ../glib/gfileutils.c:624 +#: glib/gfileutils.c:536 glib/gfileutils.c:624 #, c-format msgid "Could not allocate %lu bytes to read file \"%s\"" msgstr "無法配置 %lu 位元來讀取檔案“%s”" -#: ../glib/gfileutils.c:551 +#: glib/gfileutils.c:551 #, c-format msgid "Error reading file '%s': %s" msgstr "讀取檔案‘%s’時發生錯誤:%s" -#: ../glib/gfileutils.c:565 +#: glib/gfileutils.c:565 #, c-format msgid "File \"%s\" is too large" msgstr "檔案「%s」太過巨大" -#: ../glib/gfileutils.c:648 +#: glib/gfileutils.c:648 #, c-format msgid "Failed to read from file '%s': %s" msgstr "讀取檔案‘%s’失敗:%s" -#: ../glib/gfileutils.c:699 ../glib/gfileutils.c:786 +#: glib/gfileutils.c:699 glib/gfileutils.c:786 #, c-format msgid "Failed to open file '%s': %s" msgstr "開啟檔案「%s」失敗:%s" -#: ../glib/gfileutils.c:716 ../glib/gmappedfile.c:170 +#: glib/gfileutils.c:716 glib/gmappedfile.c:170 #, c-format msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgstr "獲取檔案‘%s’的屬性失敗:fstat() 失敗:%s" -#: ../glib/gfileutils.c:750 +#: glib/gfileutils.c:750 #, c-format msgid "Failed to open file '%s': fdopen() failed: %s" msgstr "開啟檔案‘%s’失敗:fdopen() 失敗:%s" -#: ../glib/gfileutils.c:858 +#: glib/gfileutils.c:858 #, c-format msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgstr "檔案名稱由‘%s’改為‘%s’失敗:g_rename() 失敗:%s" -#: ../glib/gfileutils.c:900 ../glib/gfileutils.c:1366 +#: glib/gfileutils.c:900 glib/gfileutils.c:1366 #, c-format msgid "Failed to create file '%s': %s" msgstr "建立檔案‘%s’失敗:%s" -#: ../glib/gfileutils.c:914 +#: glib/gfileutils.c:914 #, c-format msgid "Failed to open file '%s' for writing: fdopen() failed: %s" msgstr "開啟檔案‘%s’作寫入失敗:fdopen() 失敗:%s" -#: ../glib/gfileutils.c:939 +#: glib/gfileutils.c:939 #, c-format msgid "Failed to write file '%s': fwrite() failed: %s" msgstr "寫入檔案‘%s’失敗:fwrite() 失敗:%s" -#: ../glib/gfileutils.c:958 +#: glib/gfileutils.c:958 #, c-format msgid "Failed to write file '%s': fflush() failed: %s" msgstr "無法寫入檔案「%s」:fflush() 失敗:%s" -#: ../glib/gfileutils.c:987 +#: glib/gfileutils.c:987 #, c-format msgid "Failed to write file '%s': fsync() failed: %s" msgstr "無法寫入檔案「%s」:fsync() 失敗:%s" -#: ../glib/gfileutils.c:1006 +#: glib/gfileutils.c:1006 #, c-format msgid "Failed to close file '%s': fclose() failed: %s" msgstr "關閉檔案‘%s’失敗:fclose() 失敗:%s" -#: ../glib/gfileutils.c:1124 +#: glib/gfileutils.c:1124 #, c-format msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgstr "現存檔案‘%s’無法移除:g_unlink() 失敗:%s" -#: ../glib/gfileutils.c:1328 +#: glib/gfileutils.c:1328 #, c-format msgid "Template '%s' invalid, should not contain a '%s'" msgstr "樣式‘%s’無效,不應含有‘%s’" # (Abel) this is file template for mktemp/mkstemp -#: ../glib/gfileutils.c:1341 +#: glib/gfileutils.c:1341 #, c-format msgid "Template '%s' doesn't contain XXXXXX" msgstr "檔案樣式‘%s’沒有包含 XXXXXX" -#: ../glib/gfileutils.c:1774 +#: glib/gfileutils.c:1774 #, c-format msgid "%u byte" msgid_plural "%u bytes" msgstr[0] "%u 位元組" -#: ../glib/gfileutils.c:1782 +#: glib/gfileutils.c:1782 #, c-format msgid "%.1f KB" msgstr "%.1f KB" -#: ../glib/gfileutils.c:1787 +#: glib/gfileutils.c:1787 #, c-format msgid "%.1f MB" msgstr "%.1f MB" -#: ../glib/gfileutils.c:1792 +#: glib/gfileutils.c:1792 #, c-format msgid "%.1f GB" msgstr "%.1f GB" -#: ../glib/gfileutils.c:1797 +#: glib/gfileutils.c:1797 #, c-format msgid "%.1f TB" msgstr "%.1f TB" -#: ../glib/gfileutils.c:1802 +#: glib/gfileutils.c:1802 #, c-format msgid "%.1f PB" msgstr "%.1f PB" -#: ../glib/gfileutils.c:1807 +#: glib/gfileutils.c:1807 #, c-format msgid "%.1f EB" msgstr "%.1f EB" -#: ../glib/gfileutils.c:1850 +#: glib/gfileutils.c:1850 #, c-format msgid "Failed to read the symbolic link '%s': %s" msgstr "讀取符號連結‘%s’失敗:%s" -#: ../glib/gfileutils.c:1871 +#: glib/gfileutils.c:1871 msgid "Symbolic links not supported" msgstr "不支援符號連結" -#: ../glib/giochannel.c:1408 +#: glib/giochannel.c:1408 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "無法開啟將‘%s’轉換至‘%s’的轉換器:%s" -#: ../glib/giochannel.c:1753 +#: glib/giochannel.c:1753 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "在 g_io_channel_read_line_string 中無法讀取原始資料" -#: ../glib/giochannel.c:1800 ../glib/giochannel.c:2058 -#: ../glib/giochannel.c:2145 +#: glib/giochannel.c:1800 glib/giochannel.c:2058 glib/giochannel.c:2145 msgid "Leftover unconverted data in read buffer" msgstr "用來讀取資料的緩衝區中仍有未轉換的資料" -#: ../glib/giochannel.c:1881 ../glib/giochannel.c:1958 +#: glib/giochannel.c:1881 glib/giochannel.c:1958 msgid "Channel terminates in a partial character" msgstr "在字符未完整之前,輸入管道已經結束" -#: ../glib/giochannel.c:1944 +#: glib/giochannel.c:1944 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "g_io_channel_read_to_end 中無法讀取原始資料" -#: ../glib/gmappedfile.c:151 +#: glib/gmappedfile.c:151 #, c-format msgid "Failed to open file '%s': open() failed: %s" msgstr "開啟檔案‘%s’失敗:open() 失敗:%s" -#: ../glib/gmappedfile.c:230 +#: glib/gmappedfile.c:230 #, c-format msgid "Failed to map file '%s': mmap() failed: %s" msgstr "對應檔案‘%s’失敗:mmap() 失敗:%s" -#: ../glib/gmarkup.c:303 ../glib/gmarkup.c:343 +#: glib/gmarkup.c:303 glib/gmarkup.c:343 #, c-format msgid "Error on line %d char %d: " msgstr "第 %d 行第 %d 個字發生錯誤:" -#: ../glib/gmarkup.c:363 ../glib/gmarkup.c:441 +#: glib/gmarkup.c:363 glib/gmarkup.c:441 #, c-format msgid "Invalid UTF-8 encoded text in name - not valid '%s'" msgstr "名稱中無效的 UTF-8 編碼文字 - 不是合法的「%s」" -#: ../glib/gmarkup.c:374 +#: glib/gmarkup.c:374 #, c-format msgid "'%s' is not a valid name " msgstr "「%s」不是一個有效的名稱" -#: ../glib/gmarkup.c:390 +#: glib/gmarkup.c:390 #, c-format msgid "'%s' is not a valid name: '%c' " msgstr "「%s」不是一個有效的名稱:「%c」" -#: ../glib/gmarkup.c:494 +#: glib/gmarkup.c:494 #, c-format msgid "Error on line %d: %s" msgstr "第 %d 行發生錯誤:%s" -#: ../glib/gmarkup.c:578 +#: glib/gmarkup.c:578 #, c-format msgid "" "Failed to parse '%-.*s', which should have been a digit inside a character " "reference (ê for example) - perhaps the digit is too large" msgstr "無法解析‘%-.*s’,字符參引內應該含有數字(例如 ê)─ 可能是數字太大" -#: ../glib/gmarkup.c:590 +#: glib/gmarkup.c:590 msgid "" "Character reference did not end with a semicolon; most likely you used an " "ampersand character without intending to start an entity - escape ampersand " "as &" -msgstr "字符參引的結束部分不是分號;很可能你想使用 & 字符但未將它變為實體 ─ 請將 & 轉換為 &" +msgstr "" +"字符參引的結束部分不是分號;很可能你想使用 & 字符但未將它變為實體 ─ 請將 & 轉" +"換為 &" -#: ../glib/gmarkup.c:616 +#: glib/gmarkup.c:616 #, c-format msgid "Character reference '%-.*s' does not encode a permitted character" msgstr "字符參引‘%-.*s’無法表示任何能接受的字符" -#: ../glib/gmarkup.c:654 +#: glib/gmarkup.c:654 msgid "" "Empty entity '&;' seen; valid entities are: & " < > '" msgstr "出現空白的實體‘&;’;可用的實體為:& " < > '" -#: ../glib/gmarkup.c:662 +#: glib/gmarkup.c:662 #, c-format msgid "Entity name '%-.*s' is not known" msgstr "實體名稱 '%-.*s' 意義不明" -#: ../glib/gmarkup.c:667 +#: glib/gmarkup.c:667 msgid "" "Entity did not end with a semicolon; most likely you used an ampersand " "character without intending to start an entity - escape ampersand as &" -msgstr "實體的結束部分不是分號;很可能你想使用 & 字符但未將它變為實體 ─ 請將 & 轉換為 &" +msgstr "" +"實體的結束部分不是分號;很可能你想使用 & 字符但未將它變為實體 ─ 請將 & 轉換" +"為 &" -#: ../glib/gmarkup.c:1014 +#: glib/gmarkup.c:1014 msgid "Document must begin with an element (e.g. <book>)" msgstr "文件開始必須為一元素(例如 <book>)" -#: ../glib/gmarkup.c:1054 +#: glib/gmarkup.c:1054 #, c-format msgid "" "'%s' is not a valid character following a '<' character; it may not begin an " "element name" msgstr "‘<’字符後的‘%s’不是有效的字符;這樣不可能是元素名稱的開始部份" -#: ../glib/gmarkup.c:1122 +#: glib/gmarkup.c:1122 #, c-format msgid "" "Odd character '%s', expected a '>' character to end the empty-element tag '%" "s'" msgstr "字符「%s」只有一半,空元素標籤「%s」的結尾應該以‘>’字符結束" -#: ../glib/gmarkup.c:1206 +#: glib/gmarkup.c:1206 #, c-format msgid "" "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" msgstr "不尋常的字符‘%s’,屬性名稱‘%s’(屬於元素‘%s’)後應該是‘=’字符" -#: ../glib/gmarkup.c:1247 +#: glib/gmarkup.c:1247 #, c-format msgid "" "Odd character '%s', expected a '>' or '/' character to end the start tag of " "element '%s', or optionally an attribute; perhaps you used an invalid " "character in an attribute name" -msgstr "不尋常的字符‘%s’,元素‘%s’的開始標籤應該以‘>’或‘/’字符終結,也可以是屬性;或許你在屬性名稱中使用了無效的字符" +msgstr "" +"不尋常的字符‘%s’,元素‘%s’的開始標籤應該以‘>’或‘/’字符終結,也可以是屬性;或" +"許你在屬性名稱中使用了無效的字符" -#: ../glib/gmarkup.c:1291 +#: glib/gmarkup.c:1291 #, c-format msgid "" "Odd character '%s', expected an open quote mark after the equals sign when " "giving value for attribute '%s' of element '%s'" -msgstr "不尋常的字符‘%s’,當指定屬性‘%s’的值(屬於元素‘%s’)時,等號後應該出現開引號" +msgstr "" +"不尋常的字符‘%s’,當指定屬性‘%s’的值(屬於元素‘%s’)時,等號後應該出現開引號" -#: ../glib/gmarkup.c:1425 +#: glib/gmarkup.c:1425 #, c-format msgid "" "'%s' is not a valid character following the characters '</'; '%s' may not " "begin an element name" msgstr "‘</’字符後的‘%s’不是有效的字符;‘%s’不可能是元素名稱的開始部份" -#: ../glib/gmarkup.c:1461 +#: glib/gmarkup.c:1461 #, c-format msgid "" "'%s' is not a valid character following the close element name '%s'; the " "allowed character is '>'" msgstr "字符‘%s’是無效的(位置在關閉元素‘%s’末端);允許的字符為「>」" -#: ../glib/gmarkup.c:1472 +#: glib/gmarkup.c:1472 #, c-format msgid "Element '%s' was closed, no element is currently open" msgstr "元素‘%s’已關閉,沒有開啟中的元素" -#: ../glib/gmarkup.c:1481 +#: glib/gmarkup.c:1481 #, c-format msgid "Element '%s' was closed, but the currently open element is '%s'" msgstr "元素‘%s’已關閉,但開啟中的元素是‘%s’" -#: ../glib/gmarkup.c:1648 +#: glib/gmarkup.c:1648 msgid "Document was empty or contained only whitespace" msgstr "文件完全空白或只含有空白字符" -#: ../glib/gmarkup.c:1662 +#: glib/gmarkup.c:1662 msgid "Document ended unexpectedly just after an open angle bracket '<'" msgstr "文件在尖角括號‘<’後突然終止" -#: ../glib/gmarkup.c:1670 ../glib/gmarkup.c:1715 +#: glib/gmarkup.c:1670 glib/gmarkup.c:1715 #, c-format msgid "" "Document ended unexpectedly with elements still open - '%s' was the last " "element opened" msgstr "在仍然有開啟中的元素時,文件突然結束 ─‘%s’是最後一個開啟的元素" -#: ../glib/gmarkup.c:1678 +#: glib/gmarkup.c:1678 #, c-format msgid "" "Document ended unexpectedly, expected to see a close angle bracket ending " "the tag <%s/>" msgstr "文件突然結束,本來應該出現用來關閉標籤 <%s/> 的尖角括號" -#: ../glib/gmarkup.c:1684 +#: glib/gmarkup.c:1684 msgid "Document ended unexpectedly inside an element name" msgstr "在元素的名稱內,文件突然結束" -#: ../glib/gmarkup.c:1690 +#: glib/gmarkup.c:1690 msgid "Document ended unexpectedly inside an attribute name" msgstr "在屬性名稱內,文件突然結束" -#: ../glib/gmarkup.c:1695 +#: glib/gmarkup.c:1695 msgid "Document ended unexpectedly inside an element-opening tag." msgstr "在元素的開啟標籤內,文件突然結束" -#: ../glib/gmarkup.c:1701 +#: glib/gmarkup.c:1701 msgid "" "Document ended unexpectedly after the equals sign following an attribute " "name; no attribute value" msgstr "在屬性名稱的等號後,文件突然結束;沒有屬性值" -#: ../glib/gmarkup.c:1708 +#: glib/gmarkup.c:1708 msgid "Document ended unexpectedly while inside an attribute value" msgstr "在屬性值內,文件突然結束" -#: ../glib/gmarkup.c:1724 +#: glib/gmarkup.c:1724 #, c-format msgid "Document ended unexpectedly inside the close tag for element '%s'" msgstr "在元素‘%s’的關閉標籤內,文件突然結束" -#: ../glib/gmarkup.c:1730 +#: glib/gmarkup.c:1730 msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "在註解或處理指示內,文件突然結束" -#: ../glib/gregex.c:131 +#: glib/gregex.c:131 msgid "corrupted object" msgstr "損毀的物件" -#: ../glib/gregex.c:133 +#: glib/gregex.c:133 msgid "internal error or corrupted object" msgstr "內部錯誤或損毀的物件" -#: ../glib/gregex.c:135 +#: glib/gregex.c:135 msgid "out of memory" msgstr "記憶體耗盡" -#: ../glib/gregex.c:140 +#: glib/gregex.c:140 msgid "backtracking limit reached" msgstr "已達回溯上限" -#: ../glib/gregex.c:152 ../glib/gregex.c:160 +#: glib/gregex.c:152 glib/gregex.c:160 msgid "the pattern contains items not supported for partial matching" msgstr "此模式包含了不支援部分比對的項目" -#: ../glib/gregex.c:154 ../gio/glocalfile.c:2115 +#: glib/gregex.c:154 gio/glocalfile.c:2115 msgid "internal error" msgstr "內部的錯誤" -#: ../glib/gregex.c:162 +#: glib/gregex.c:162 msgid "back references as conditions are not supported for partial matching" msgstr "部分比對不支援以反向參照為條件" -#: ../glib/gregex.c:171 +#: glib/gregex.c:171 msgid "recursion limit reached" msgstr "已達遞廻上限" -#: ../glib/gregex.c:173 +#: glib/gregex.c:173 msgid "workspace limit for empty substrings reached" msgstr "已達空白子字串的工作區上限" -#: ../glib/gregex.c:175 +#: glib/gregex.c:175 msgid "invalid combination of newline flags" msgstr "無效的換行旗標組合" -#: ../glib/gregex.c:179 +#: glib/gregex.c:179 msgid "unknown error" msgstr "不明的錯誤" -#: ../glib/gregex.c:199 +#: glib/gregex.c:199 msgid "\\ at end of pattern" msgstr "\\ 於模式結尾" -#: ../glib/gregex.c:202 +#: glib/gregex.c:202 msgid "\\c at end of pattern" msgstr "\\c 於模式結尾" -#: ../glib/gregex.c:205 +#: glib/gregex.c:205 msgid "unrecognized character follows \\" msgstr "無法辨識的字符接着 \\" -#: ../glib/gregex.c:212 +#: glib/gregex.c:212 msgid "case-changing escapes (\\l, \\L, \\u, \\U) are not allowed here" msgstr "這裏不允許使用改變大小寫的轉義符(\\l, \\L, \\u, \\U)" -#: ../glib/gregex.c:215 +#: glib/gregex.c:215 msgid "numbers out of order in {} quantifier" msgstr "{} 裏的數字次序顛倒了" -#: ../glib/gregex.c:218 +#: glib/gregex.c:218 msgid "number too big in {} quantifier" msgstr "{} 裏的數字太大了" -#: ../glib/gregex.c:221 +#: glib/gregex.c:221 msgid "missing terminating ] for character class" msgstr "字符類別缺少結束的 ]" -#: ../glib/gregex.c:224 +#: glib/gregex.c:224 msgid "invalid escape sequence in character class" msgstr "字符類別中無效的跳脫序列" -#: ../glib/gregex.c:227 +#: glib/gregex.c:227 msgid "range out of order in character class" msgstr "字符類別的範圍次序顛倒" -#: ../glib/gregex.c:230 +#: glib/gregex.c:230 msgid "nothing to repeat" msgstr "沒有東西可重複" -#: ../glib/gregex.c:233 +#: glib/gregex.c:233 msgid "unrecognized character after (?" msgstr "在 (? 後有無法辨識的字符" -#: ../glib/gregex.c:237 +#: glib/gregex.c:237 msgid "unrecognized character after (?<" msgstr "在 (?< 後有無法辨識的字符" -#: ../glib/gregex.c:241 +#: glib/gregex.c:241 msgid "unrecognized character after (?P" msgstr "在 (?P 後有無法辨識的字符" -#: ../glib/gregex.c:244 +#: glib/gregex.c:244 msgid "POSIX named classes are supported only within a class" msgstr "POSIX 命名類別只在單一類別中支援" -#: ../glib/gregex.c:247 +#: glib/gregex.c:247 msgid "missing terminating )" msgstr "缺少結束的 )" -#: ../glib/gregex.c:251 +#: glib/gregex.c:251 msgid ") without opening (" msgstr ") 沒有開頭的 (" #. translators: '(?R' and '(?[+-]digits' are both meant as (groups of) #. * sequences here, '(?-54' would be an example for the second group. #. -#: ../glib/gregex.c:258 +#: glib/gregex.c:258 msgid "(?R or (?[+-]digits must be followed by )" msgstr "(?R 或 (?[+-]數字必須接着 )" -#: ../glib/gregex.c:261 +#: glib/gregex.c:261 msgid "reference to non-existent subpattern" msgstr "參照不存在的子模式" -#: ../glib/gregex.c:264 +#: glib/gregex.c:264 msgid "missing ) after comment" msgstr "註解後缺少 )" -#: ../glib/gregex.c:267 +#: glib/gregex.c:267 msgid "regular expression too large" msgstr "正規表示式太長" -#: ../glib/gregex.c:270 +#: glib/gregex.c:270 msgid "failed to get memory" msgstr "取得記憶體失敗" -#: ../glib/gregex.c:273 +#: glib/gregex.c:273 msgid "lookbehind assertion is not fixed length" msgstr "lookbehind 判斷提示(assertion) 不是固定的長度" -#: ../glib/gregex.c:276 +#: glib/gregex.c:276 msgid "malformed number or name after (?(" msgstr "(?( 之後有格式不正確的數字或名稱" -#: ../glib/gregex.c:279 +#: glib/gregex.c:279 msgid "conditional group contains more than two branches" msgstr "條件式羣組包含了兩個以上的分支" -#: ../glib/gregex.c:282 +#: glib/gregex.c:282 msgid "assertion expected after (?(" msgstr "(?( 後應該有判斷提示(assertion)" -#: ../glib/gregex.c:285 +#: glib/gregex.c:285 msgid "unknown POSIX class name" msgstr "未知的 POSIX 類別名稱" -#: ../glib/gregex.c:288 +#: glib/gregex.c:288 msgid "POSIX collating elements are not supported" msgstr "不支援 POSIX 整理元件" -#: ../glib/gregex.c:291 +#: glib/gregex.c:291 msgid "character value in \\x{...} sequence is too large" msgstr "\\x{...} 序列中的字符值太大" -#: ../glib/gregex.c:294 +#: glib/gregex.c:294 msgid "invalid condition (?(0)" msgstr "無效的條件 (?(0)" -#: ../glib/gregex.c:297 +#: glib/gregex.c:297 msgid "\\C not allowed in lookbehind assertion" msgstr "在 lookbehind 判斷提示(assertion) 中不支援\\C" -#: ../glib/gregex.c:300 +#: glib/gregex.c:300 msgid "recursive call could loop indefinitely" msgstr "遞廻呼叫可能變成無限廻圈" -#: ../glib/gregex.c:303 +#: glib/gregex.c:303 msgid "missing terminator in subpattern name" msgstr "子模式名稱中缺少結束字符" -#: ../glib/gregex.c:306 +#: glib/gregex.c:306 msgid "two named subpatterns have the same name" msgstr "兩個命名的子模式具有相同的名稱" -#: ../glib/gregex.c:309 +#: glib/gregex.c:309 msgid "malformed \\P or \\p sequence" msgstr "格式不正確的 \\P 或 \\p 序列" -#: ../glib/gregex.c:312 +#: glib/gregex.c:312 msgid "unknown property name after \\P or \\p" msgstr "在 \\P 或 \\p 後有未知的屬性名稱" -#: ../glib/gregex.c:315 +#: glib/gregex.c:315 msgid "subpattern name is too long (maximum 32 characters)" msgstr "子模式名稱太長(最多 32 字符)" -#: ../glib/gregex.c:318 +#: glib/gregex.c:318 msgid "too many named subpatterns (maximum 10,000)" msgstr "太多命名的子模式(最大值 10,000)" -#: ../glib/gregex.c:321 +#: glib/gregex.c:321 msgid "octal value is greater than \\377" msgstr "8 進位值大於 \\377" -#: ../glib/gregex.c:324 +#: glib/gregex.c:324 msgid "DEFINE group contains more than one branch" msgstr "DEFINE 羣組包含一個以上的分支" -#: ../glib/gregex.c:327 +#: glib/gregex.c:327 msgid "repeating a DEFINE group is not allowed" msgstr "不允許重複 DEFINE 羣組" -#: ../glib/gregex.c:330 +#: glib/gregex.c:330 msgid "inconsistent NEWLINE options" msgstr "不一致的 NEWLINE 選項" -#: ../glib/gregex.c:333 +#: glib/gregex.c:333 msgid "" "\\g is not followed by a braced name or an optionally braced non-zero number" msgstr "\\g 並未隨着具有大括弧的名稱或選用的具大括弧的非零數值" -#: ../glib/gregex.c:338 +#: glib/gregex.c:338 msgid "unexpected repeat" msgstr "未預期的重複" -#: ../glib/gregex.c:342 +#: glib/gregex.c:342 msgid "code overflow" msgstr "程式碼溢流" -#: ../glib/gregex.c:346 +#: glib/gregex.c:346 msgid "overran compiling workspace" msgstr "編譯工作區超出範圍" -#: ../glib/gregex.c:350 +#: glib/gregex.c:350 msgid "previously-checked referenced subpattern not found" msgstr "找不到預先核取的參照子字串" -#: ../glib/gregex.c:522 ../glib/gregex.c:1603 +#: glib/gregex.c:522 glib/gregex.c:1603 #, c-format msgid "Error while matching regular expression %s: %s" msgstr "比對正規表示式 %s 發生錯誤:%s" -#: ../glib/gregex.c:1094 +#: glib/gregex.c:1094 msgid "PCRE library is compiled without UTF8 support" msgstr "PCRE 程式庫並未編譯對 UTF8 的支援" -#: ../glib/gregex.c:1103 +#: glib/gregex.c:1103 msgid "PCRE library is compiled without UTF8 properties support" msgstr "PCRE 程式庫並未編譯對 UTF8 屬性的支援" -#: ../glib/gregex.c:1157 +#: glib/gregex.c:1157 #, c-format msgid "Error while compiling regular expression %s at char %d: %s" msgstr "編譯正規表示式 %s 時於第 %d 個字發生錯誤:%s" -#: ../glib/gregex.c:1193 +#: glib/gregex.c:1193 #, c-format msgid "Error while optimizing regular expression %s: %s" msgstr "最佳化正規表示式 %s 時發生錯誤:%s" -#: ../glib/gregex.c:2031 +#: glib/gregex.c:2031 msgid "hexadecimal digit or '}' expected" msgstr "應為 16 進位數字或「}」" -#: ../glib/gregex.c:2047 +#: glib/gregex.c:2047 msgid "hexadecimal digit expected" msgstr "應為 16 進位數字" -#: ../glib/gregex.c:2087 +#: glib/gregex.c:2087 msgid "missing '<' in symbolic reference" msgstr "在符號參照中缺少「<」" -#: ../glib/gregex.c:2096 +#: glib/gregex.c:2096 msgid "unfinished symbolic reference" msgstr "未完成的符號參照" -#: ../glib/gregex.c:2103 +#: glib/gregex.c:2103 msgid "zero-length symbolic reference" msgstr "零-長度的符號參照" -#: ../glib/gregex.c:2114 +#: glib/gregex.c:2114 msgid "digit expected" msgstr "預期數字" -#: ../glib/gregex.c:2132 +#: glib/gregex.c:2132 msgid "illegal symbolic reference" msgstr "不合法的符號參照" -#: ../glib/gregex.c:2194 +#: glib/gregex.c:2194 msgid "stray final '\\'" msgstr "缺少最後的「\\」" -#: ../glib/gregex.c:2198 +#: glib/gregex.c:2198 msgid "unknown escape sequence" msgstr "不明的跳脫序列" -#: ../glib/gregex.c:2208 +#: glib/gregex.c:2208 #, c-format msgid "Error while parsing replacement text \"%s\" at char %lu: %s" msgstr "當分析於字符 %2$lu 的取代文字「%1$s」時發生錯誤:%3$s" -#: ../glib/gshell.c:92 +#: glib/gshell.c:92 msgid "Quoted text doesn't begin with a quotation mark" msgstr "應該用引號括起來的文字不是以括號為開始" -#: ../glib/gshell.c:182 +#: glib/gshell.c:182 msgid "Unmatched quotation mark in command line or other shell-quoted text" msgstr "指令列或其它標為指令的字串內有不對稱的引號" -#: ../glib/gshell.c:560 +#: glib/gshell.c:560 #, c-format msgid "Text ended just after a '\\' character. (The text was '%s')" msgstr "文字在‘\\’字符後就終止了。(文字為‘%s’)" -#: ../glib/gshell.c:567 +#: glib/gshell.c:567 #, c-format msgid "Text ended before matching quote was found for %c. (The text was '%s')" msgstr "字串完結前仍沒有對應於 %c 的引號(字串為‘%s’)" -#: ../glib/gshell.c:579 +#: glib/gshell.c:579 msgid "Text was empty (or contained only whitespace)" msgstr "文字是空白的(或只含有空白字符)" -#: ../glib/gspawn-win32.c:283 +#: glib/gspawn-win32.c:283 msgid "Failed to read data from child process" msgstr "無法從副進程讀取資料" -#: ../glib/gspawn-win32.c:300 ../glib/gspawn.c:1480 +#: glib/gspawn-win32.c:300 glib/gspawn.c:1480 #, c-format msgid "Failed to create pipe for communicating with child process (%s)" msgstr "無法建立管道來和副進程溝通 (%s)" -#: ../glib/gspawn-win32.c:339 ../glib/gspawn-win32.c:347 ../glib/gspawn.c:1139 +#: glib/gspawn-win32.c:339 glib/gspawn-win32.c:347 glib/gspawn.c:1139 #, c-format msgid "Failed to read from child pipe (%s)" msgstr "無法從管道讀取資料 (%s)" -#: ../glib/gspawn-win32.c:370 ../glib/gspawn.c:1346 +#: glib/gspawn-win32.c:370 glib/gspawn.c:1346 #, c-format msgid "Failed to change to directory '%s' (%s)" msgstr "無法進入目錄‘%s’(%s)" -#: ../glib/gspawn-win32.c:376 ../glib/gspawn-win32.c:495 +#: glib/gspawn-win32.c:376 glib/gspawn-win32.c:495 #, c-format msgid "Failed to execute child process (%s)" msgstr "無法執行副進程 (%s)" -#: ../glib/gspawn-win32.c:445 +#: glib/gspawn-win32.c:445 #, c-format msgid "Invalid program name: %s" msgstr "程式名稱無效:%s" -#: ../glib/gspawn-win32.c:455 ../glib/gspawn-win32.c:723 -#: ../glib/gspawn-win32.c:1279 +#: glib/gspawn-win32.c:455 glib/gspawn-win32.c:723 glib/gspawn-win32.c:1279 #, c-format msgid "Invalid string in argument vector at %d: %s" msgstr "第 %d 個引數中含無效的字串:%s" -#: ../glib/gspawn-win32.c:466 ../glib/gspawn-win32.c:738 -#: ../glib/gspawn-win32.c:1312 +#: glib/gspawn-win32.c:466 glib/gspawn-win32.c:738 glib/gspawn-win32.c:1312 #, c-format msgid "Invalid string in environment: %s" msgstr "環境變數中的字串無效:%s" -#: ../glib/gspawn-win32.c:719 ../glib/gspawn-win32.c:1260 +#: glib/gspawn-win32.c:719 glib/gspawn-win32.c:1260 #, c-format msgid "Invalid working directory: %s" msgstr "無效的工作目錄:%s" -#: ../glib/gspawn-win32.c:784 +#: glib/gspawn-win32.c:784 #, c-format msgid "Failed to execute helper program (%s)" msgstr "無法執行協助程式 (%s)" -#: ../glib/gspawn-win32.c:998 +#: glib/gspawn-win32.c:998 msgid "" "Unexpected error in g_io_channel_win32_poll() reading data from a child " "process" msgstr "當 g_io_channel_win32_poll() 從副進程讀取資料時發生無法預計的錯誤" -#: ../glib/gspawn.c:190 +#: glib/gspawn.c:190 #, c-format msgid "Failed to read data from child process (%s)" msgstr "無法從副進程讀取資料 (%s)" -#: ../glib/gspawn.c:329 +#: glib/gspawn.c:329 #, c-format msgid "Unexpected error in select() reading data from a child process (%s)" msgstr "當 select() 從子程序讀取資料時發生未預期的錯誤 (%s)" -#: ../glib/gspawn.c:414 +#: glib/gspawn.c:414 #, c-format msgid "Unexpected error in waitpid() (%s)" msgstr "waitpid() 發生未預期的錯誤 (%s)" -#: ../glib/gspawn.c:1206 +#: glib/gspawn.c:1206 #, c-format msgid "Failed to fork (%s)" msgstr "無法衍生進程 (%s)" -#: ../glib/gspawn.c:1356 +#: glib/gspawn.c:1356 #, c-format msgid "Failed to execute child process \"%s\" (%s)" msgstr "無法執行副進程“%s”(%s)" -#: ../glib/gspawn.c:1366 +#: glib/gspawn.c:1366 #, c-format msgid "Failed to redirect output or input of child process (%s)" msgstr "無法將副進程的輸出或輸入重新導向 (%s)" -#: ../glib/gspawn.c:1375 +#: glib/gspawn.c:1375 #, c-format msgid "Failed to fork child process (%s)" msgstr "無法衍生副進程 (%s)" -#: ../glib/gspawn.c:1383 +#: glib/gspawn.c:1383 #, c-format msgid "Unknown error executing child process \"%s\"" msgstr "執行副進程“%s”時發生不明的錯誤" -#: ../glib/gspawn.c:1407 +#: glib/gspawn.c:1407 #, c-format msgid "Failed to read enough data from child pid pipe (%s)" msgstr "無法從 child pid pipe 讀取足夠的資料 (%s)" -#: ../glib/gutf8.c:1055 +#: glib/gutf8.c:1055 msgid "Character out of range for UTF-8" msgstr "字符不在 UTF-8 範圍之內" -#: ../glib/gutf8.c:1155 ../glib/gutf8.c:1164 ../glib/gutf8.c:1296 -#: ../glib/gutf8.c:1305 ../glib/gutf8.c:1446 ../glib/gutf8.c:1542 +#: glib/gutf8.c:1155 glib/gutf8.c:1164 glib/gutf8.c:1296 glib/gutf8.c:1305 +#: glib/gutf8.c:1446 glib/gutf8.c:1542 msgid "Invalid sequence in conversion input" msgstr "轉換輸入資料時出現無效的字符次序" -#: ../glib/gutf8.c:1457 ../glib/gutf8.c:1553 +#: glib/gutf8.c:1457 glib/gutf8.c:1553 msgid "Character out of range for UTF-16" msgstr "字符不在 UTF-16 範圍之內" -#: ../glib/goption.c:755 +#: glib/goption.c:755 msgid "Usage:" msgstr "用法:" -#: ../glib/goption.c:755 +#: glib/goption.c:755 msgid "[OPTION...]" msgstr "[選項...]" -#: ../glib/goption.c:861 +#: glib/goption.c:861 msgid "Help Options:" msgstr "說明選項:" -#: ../glib/goption.c:862 +#: glib/goption.c:862 msgid "Show help options" msgstr "顯示說明的選項" -#: ../glib/goption.c:868 +#: glib/goption.c:868 msgid "Show all help options" msgstr "顯示所有的說明選項" -#: ../glib/goption.c:930 +#: glib/goption.c:930 msgid "Application Options:" msgstr "應用程式選項:" -#: ../glib/goption.c:992 ../glib/goption.c:1062 +#: glib/goption.c:992 glib/goption.c:1062 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "無法給 %2$s 解析整數值‘%1$s’" -#: ../glib/goption.c:1002 ../glib/goption.c:1070 +#: glib/goption.c:1002 glib/goption.c:1070 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "%2$s 的整數值‘%1$s’超出範圍" -#: ../glib/goption.c:1027 +#: glib/goption.c:1027 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "無法給 %2$s 解析雙精度浮點數‘%1$s’" -#: ../glib/goption.c:1035 +#: glib/goption.c:1035 #, c-format msgid "Double value '%s' for %s out of range" msgstr "%2$s 的雙精度浮點數‘%1$s’超出範圍" -#: ../glib/goption.c:1298 ../glib/goption.c:1377 +#: glib/goption.c:1298 glib/goption.c:1377 #, c-format msgid "Error parsing option %s" msgstr "解析 %s 選項時發生錯誤" -#: ../glib/goption.c:1408 ../glib/goption.c:1522 +#: glib/goption.c:1408 glib/goption.c:1522 #, c-format msgid "Missing argument for %s" msgstr "缺少 %s 的參數" -#: ../glib/goption.c:1917 +#: glib/goption.c:1917 #, c-format msgid "Unknown option %s" msgstr "未知的選項 %s" -#: ../glib/gkeyfile.c:361 +#: glib/gkeyfile.c:361 msgid "Valid key file could not be found in search dirs" msgstr "在資料目錄中找不到有效的設定鍵檔案" -#: ../glib/gkeyfile.c:396 +#: glib/gkeyfile.c:396 msgid "Not a regular file" msgstr "不是正規的檔案" -#: ../glib/gkeyfile.c:404 +#: glib/gkeyfile.c:404 msgid "File is empty" msgstr "檔案是空白的" -#: ../glib/gkeyfile.c:763 +#: glib/gkeyfile.c:763 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" msgstr "設定鍵檔案中‘%s’行並非設定鍵值配對、羣組或註解" -#: ../glib/gkeyfile.c:823 +#: glib/gkeyfile.c:823 #, c-format msgid "Invalid group name: %s" msgstr "無效的羣組名稱:%s" -#: ../glib/gkeyfile.c:845 +#: glib/gkeyfile.c:845 msgid "Key file does not start with a group" msgstr "設定鍵檔案並非以羣組開頭" -#: ../glib/gkeyfile.c:871 +#: glib/gkeyfile.c:871 #, c-format msgid "Invalid key name: %s" msgstr "無效的設定鍵名稱:%s" -#: ../glib/gkeyfile.c:898 +#: glib/gkeyfile.c:898 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "設定鍵檔案包含不支援的編碼‘%s’" -#: ../glib/gkeyfile.c:1114 ../glib/gkeyfile.c:1276 ../glib/gkeyfile.c:2505 -#: ../glib/gkeyfile.c:2571 ../glib/gkeyfile.c:2706 ../glib/gkeyfile.c:2839 -#: ../glib/gkeyfile.c:2992 ../glib/gkeyfile.c:3179 ../glib/gkeyfile.c:3240 +#: glib/gkeyfile.c:1114 glib/gkeyfile.c:1276 glib/gkeyfile.c:2505 +#: glib/gkeyfile.c:2571 glib/gkeyfile.c:2706 glib/gkeyfile.c:2839 +#: glib/gkeyfile.c:2992 glib/gkeyfile.c:3179 glib/gkeyfile.c:3240 #, c-format msgid "Key file does not have group '%s'" msgstr "設定鍵檔案沒有羣組‘%s’" -#: ../glib/gkeyfile.c:1288 +#: glib/gkeyfile.c:1288 #, c-format msgid "Key file does not have key '%s'" msgstr "設定鍵檔案沒有設定鍵‘%s’" -#: ../glib/gkeyfile.c:1395 ../glib/gkeyfile.c:1510 +#: glib/gkeyfile.c:1395 glib/gkeyfile.c:1510 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "設定鍵檔案包含的設定鍵‘%s’(數值為‘%s’)並非 UTF-8" -#: ../glib/gkeyfile.c:1415 ../glib/gkeyfile.c:1909 +#: glib/gkeyfile.c:1415 glib/gkeyfile.c:1909 #, c-format msgid "Key file contains key '%s' which has value that cannot be interpreted." msgstr "設定鍵檔案包含的設定鍵‘%s’的數值無法解譯。" -#: ../glib/gkeyfile.c:1530 +#: glib/gkeyfile.c:1530 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." msgstr "設定鍵檔案包含的設定鍵「%s」的數值無法解譯。" -#: ../glib/gkeyfile.c:2124 ../glib/gkeyfile.c:2336 +#: glib/gkeyfile.c:2124 glib/gkeyfile.c:2336 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has value that cannot be " "interpreted." msgstr "設定鍵檔案包含的羣組‘%2$s’中設定鍵‘%1$s’數值無法解譯" -#: ../glib/gkeyfile.c:2520 ../glib/gkeyfile.c:2721 ../glib/gkeyfile.c:3251 +#: glib/gkeyfile.c:2520 glib/gkeyfile.c:2721 glib/gkeyfile.c:3251 #, c-format msgid "Key file does not have key '%s' in group '%s'" msgstr "設定鍵檔案的羣組‘%2$s’中沒有設定鍵‘%1$s’" -#: ../glib/gkeyfile.c:3485 +#: glib/gkeyfile.c:3485 msgid "Key file contains escape character at end of line" msgstr "設定鍵檔案在行尾包含跳出字符" -#: ../glib/gkeyfile.c:3507 +#: glib/gkeyfile.c:3507 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "設定鍵檔案含有不正確的「跳出字符」‘%s’" -#: ../glib/gkeyfile.c:3649 +#: glib/gkeyfile.c:3649 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "數值‘%s’不能被解譯為數字。" -#: ../glib/gkeyfile.c:3663 +#: glib/gkeyfile.c:3663 #, c-format msgid "Integer value '%s' out of range" msgstr "整數值‘%s’超出範圍" -#: ../glib/gkeyfile.c:3696 +#: glib/gkeyfile.c:3696 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "數值‘%s’不能被解譯為浮點數。" -#: ../glib/gkeyfile.c:3720 +#: glib/gkeyfile.c:3720 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "數值‘%s’不能被解譯為邏輯值。" -#: ../gio/gbufferedinputstream.c:415 ../gio/gbufferedinputstream.c:496 -#: ../gio/ginputstream.c:186 ../gio/ginputstream.c:318 -#: ../gio/ginputstream.c:557 ../gio/ginputstream.c:682 -#: ../gio/goutputstream.c:198 ../gio/goutputstream.c:657 +#: gio/gbufferedinputstream.c:415 gio/gbufferedinputstream.c:496 +#: gio/ginputstream.c:186 gio/ginputstream.c:318 gio/ginputstream.c:557 +#: gio/ginputstream.c:682 gio/goutputstream.c:198 gio/goutputstream.c:657 #, c-format msgid "Too large count value passed to %s" msgstr "傳給 %s 的計數值太大" -#: ../gio/gbufferedinputstream.c:883 ../gio/ginputstream.c:892 -#: ../gio/giostream.c:305 ../gio/goutputstream.c:1108 +#: gio/gbufferedinputstream.c:883 gio/ginputstream.c:892 gio/giostream.c:305 +#: gio/goutputstream.c:1108 msgid "Stream is already closed" msgstr "串流已經關閉" -#: ../gio/gcancellable.c:433 ../gio/glocalfile.c:2108 -#: ../gio/gsimpleasyncresult.c:651 ../gio/gsimpleasyncresult.c:677 +#: gio/gcancellable.c:433 gio/glocalfile.c:2108 gio/gsimpleasyncresult.c:651 +#: gio/gsimpleasyncresult.c:677 msgid "Operation was cancelled" msgstr "操作已被取消" -#: ../gio/gcharsetconverter.c:264 +#: gio/gcharsetconverter.c:264 msgid "Invalid object, not initialized" msgstr "無效的物件,尚未初始化" -#: ../gio/gcharsetconverter.c:285 ../gio/gcharsetconverter.c:313 +#: gio/gcharsetconverter.c:285 gio/gcharsetconverter.c:313 msgid "Incomplete multibyte sequence in input" msgstr "在輸入中出現不完整的多位元組次序" -#: ../gio/gcharsetconverter.c:319 ../gio/gcharsetconverter.c:328 +#: gio/gcharsetconverter.c:319 gio/gcharsetconverter.c:328 msgid "Not enough space in destination" msgstr "在目的端中沒有足夠的空間" -#: ../gio/gcharsetconverter.c:448 ../gio/gsocket.c:772 +#: gio/gcharsetconverter.c:448 gio/gsocket.c:772 msgid "Cancellable initialization not supported" msgstr "不支援可取消的初始化" -#: ../gio/gcontenttype.c:180 +#: gio/gcontenttype.c:180 msgid "Unknown type" msgstr "不明的類型" -#: ../gio/gcontenttype.c:181 +#: gio/gcontenttype.c:181 #, c-format msgid "%s filetype" msgstr "%s 檔案類型" -#: ../gio/gcontenttype.c:681 +#: gio/gcontenttype.c:681 #, c-format msgid "%s type" msgstr "%s 類型" -#: ../gio/gdatainputstream.c:311 +#: gio/gdatainputstream.c:311 msgid "Unexpected early end-of-stream" msgstr "未預期的串流過早結束" -#: ../gio/gdesktopappinfo.c:468 ../gio/gwin32appinfo.c:222 +#: gio/gdesktopappinfo.c:468 gio/gwin32appinfo.c:222 msgid "Unnamed" msgstr "未命名的" -#: ../gio/gdesktopappinfo.c:742 +#: gio/gdesktopappinfo.c:742 msgid "Desktop file didn't specify Exec field" msgstr "桌面(Desktop)檔案未指定 Exec 欄位" -#: ../gio/gdesktopappinfo.c:924 +#: gio/gdesktopappinfo.c:924 msgid "Unable to find terminal required for application" msgstr "無法找到應用程式要求的終端機" -#: ../gio/gdesktopappinfo.c:1132 +#: gio/gdesktopappinfo.c:1132 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "不能建立使用者應用程式組態資料夾 %s:%s" -#: ../gio/gdesktopappinfo.c:1136 +#: gio/gdesktopappinfo.c:1136 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "不能建立使用者 MIME 組態資料夾 %s:%s" -#: ../gio/gdesktopappinfo.c:1544 +#: gio/gdesktopappinfo.c:1544 #, c-format msgid "Can't create user desktop file %s" msgstr "不能建立使用者桌面檔案 %s" -#: ../gio/gdesktopappinfo.c:1658 +#: gio/gdesktopappinfo.c:1658 #, c-format msgid "Custom definition for %s" msgstr "自選 %s 的定義" -#: ../gio/gdrive.c:364 +#: gio/gdrive.c:364 msgid "drive doesn't implement eject" msgstr "裝置無法實作退出功能(eject)" #. Translators: This is an error #. * message for drive objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gdrive.c:444 +#: gio/gdrive.c:444 msgid "drive doesn't implement eject or eject_with_operation" msgstr "裝置無法實作退出功能(eject) 或 eject_with_operation" -#: ../gio/gdrive.c:521 +#: gio/gdrive.c:521 msgid "drive doesn't implement polling for media" msgstr "裝置無法實作媒體的輪詢" -#: ../gio/gdrive.c:726 +#: gio/gdrive.c:726 msgid "drive doesn't implement start" msgstr "裝置無法實作啟動功能(start)" -#: ../gio/gdrive.c:828 +#: gio/gdrive.c:828 msgid "drive doesn't implement stop" msgstr "裝置無法實作停止功能(stop)" -#: ../gio/gemblem.c:325 +#: gio/gemblem.c:325 #, c-format msgid "Can't handle version %d of GEmblem encoding" msgstr "不能處理版本為 %d 的 GEmblem 編碼" -#: ../gio/gemblem.c:335 +#: gio/gemblem.c:335 #, c-format msgid "Malformed number of tokens (%d) in GEmblem encoding" msgstr "GEmblem 編碼中記號 (%d) 的數量格式不正確" -#: ../gio/gemblemedicon.c:296 +#: gio/gemblemedicon.c:296 #, c-format msgid "Can't handle version %d of GEmblemedIcon encoding" msgstr "不能處理版本為 %d 的 GEmblemedIcon 編碼" -#: ../gio/gemblemedicon.c:306 +#: gio/gemblemedicon.c:306 #, c-format msgid "Malformed number of tokens (%d) in GEmblemedIcon encoding" msgstr "GEmblemedIcon 編碼中記號 (%d) 的數量格式不正確" -#: ../gio/gemblemedicon.c:329 +#: gio/gemblemedicon.c:329 msgid "Expected a GEmblem for GEmblemedIcon" msgstr "預期為 GEmblemedIcon 的 GEmblem" -#: ../gio/gfile.c:871 ../gio/gfile.c:1101 ../gio/gfile.c:1236 -#: ../gio/gfile.c:1472 ../gio/gfile.c:1526 ../gio/gfile.c:1583 -#: ../gio/gfile.c:1666 ../gio/gfile.c:1721 ../gio/gfile.c:1781 -#: ../gio/gfile.c:1835 ../gio/gfile.c:3304 ../gio/gfile.c:3358 -#: ../gio/gfile.c:3489 ../gio/gfile.c:3529 ../gio/gfile.c:3856 -#: ../gio/gfile.c:4258 ../gio/gfile.c:4344 ../gio/gfile.c:4433 -#: ../gio/gfile.c:4531 ../gio/gfile.c:4618 ../gio/gfile.c:4711 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5321 ../gio/gfile.c:5390 -#: ../gio/gfile.c:6981 ../gio/gfile.c:7071 ../gio/gfile.c:7157 -#: ../gio/win32/gwinhttpfile.c:441 +#: gio/gfile.c:871 gio/gfile.c:1101 gio/gfile.c:1236 gio/gfile.c:1472 +#: gio/gfile.c:1526 gio/gfile.c:1583 gio/gfile.c:1666 gio/gfile.c:1721 +#: gio/gfile.c:1781 gio/gfile.c:1835 gio/gfile.c:3304 gio/gfile.c:3358 +#: gio/gfile.c:3489 gio/gfile.c:3529 gio/gfile.c:3856 gio/gfile.c:4258 +#: gio/gfile.c:4344 gio/gfile.c:4433 gio/gfile.c:4531 gio/gfile.c:4618 +#: gio/gfile.c:4711 gio/gfile.c:5041 gio/gfile.c:5321 gio/gfile.c:5390 +#: gio/gfile.c:6981 gio/gfile.c:7071 gio/gfile.c:7157 +#: gio/win32/gwinhttpfile.c:441 msgid "Operation not supported" msgstr "不支援的操作" @@ -1250,137 +1250,137 @@ msgstr "不支援的操作" #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1357 ../gio/glocalfile.c:1065 ../gio/glocalfile.c:1076 -#: ../gio/glocalfile.c:1089 +#: gio/gfile.c:1357 gio/glocalfile.c:1065 gio/glocalfile.c:1076 +#: gio/glocalfile.c:1089 msgid "Containing mount does not exist" msgstr "包含了不存在的掛載點" -#: ../gio/gfile.c:2409 ../gio/glocalfile.c:2264 +#: gio/gfile.c:2409 gio/glocalfile.c:2264 msgid "Can't copy over directory" msgstr "不能複製整個目錄" -#: ../gio/gfile.c:2469 +#: gio/gfile.c:2469 msgid "Can't copy directory over directory" msgstr "不能將目錄複製到目錄上" -#: ../gio/gfile.c:2477 ../gio/glocalfile.c:2273 +#: gio/gfile.c:2477 gio/glocalfile.c:2273 msgid "Target file exists" msgstr "目標檔案已存在" -#: ../gio/gfile.c:2495 +#: gio/gfile.c:2495 msgid "Can't recursively copy directory" msgstr "不能遞廻複製目錄" -#: ../gio/gfile.c:2755 +#: gio/gfile.c:2755 msgid "Splice not supported" msgstr "不支援拼接" -#: ../gio/gfile.c:2759 +#: gio/gfile.c:2759 #, c-format msgid "Error splicing file: %s" msgstr "拼接檔案時發生錯誤:%s" -#: ../gio/gfile.c:2906 +#: gio/gfile.c:2906 msgid "Can't copy special file" msgstr "不能複製特殊的檔案" -#: ../gio/gfile.c:3479 +#: gio/gfile.c:3479 msgid "Invalid symlink value given" msgstr "提供了無效的符號連結值" -#: ../gio/gfile.c:3572 +#: gio/gfile.c:3572 msgid "Trash not supported" msgstr "不支援回收筒" -#: ../gio/gfile.c:3621 +#: gio/gfile.c:3621 #, c-format msgid "File names cannot contain '%c'" msgstr "檔案名稱不能包含「%c」" -#: ../gio/gfile.c:6038 ../gio/gvolume.c:331 +#: gio/gfile.c:6038 gio/gvolume.c:331 msgid "volume doesn't implement mount" msgstr "儲存區尚未實作掛載功能" -#: ../gio/gfile.c:6149 +#: gio/gfile.c:6149 msgid "No application is registered as handling this file" msgstr "沒有應用程式註冊為用以處理這個檔案" -#: ../gio/gfileenumerator.c:206 +#: gio/gfileenumerator.c:206 msgid "Enumerator is closed" msgstr "檔案列舉器(enumerator)已關閉" -#: ../gio/gfileenumerator.c:213 ../gio/gfileenumerator.c:272 -#: ../gio/gfileenumerator.c:372 ../gio/gfileenumerator.c:481 +#: gio/gfileenumerator.c:213 gio/gfileenumerator.c:272 +#: gio/gfileenumerator.c:372 gio/gfileenumerator.c:481 msgid "File enumerator has outstanding operation" msgstr "檔案列舉器(enumerator)有異常操作" -#: ../gio/gfileenumerator.c:362 ../gio/gfileenumerator.c:471 +#: gio/gfileenumerator.c:362 gio/gfileenumerator.c:471 msgid "File enumerator is already closed" msgstr "檔案列舉器(enumerator)已經關閉" -#: ../gio/gfileicon.c:237 +#: gio/gfileicon.c:237 #, c-format msgid "Can't handle version %d of GFileIcon encoding" msgstr "不能處理版本為 %d 的 GFileIcon 編碼" -#: ../gio/gfileicon.c:247 +#: gio/gfileicon.c:247 msgid "Malformed input data for GFileIcon" msgstr "給 GFileIcon 的輸入資料格式不良" -#: ../gio/gfileinputstream.c:155 ../gio/gfileinputstream.c:422 -#: ../gio/gfileiostream.c:171 ../gio/gfileoutputstream.c:170 -#: ../gio/gfileoutputstream.c:525 +#: gio/gfileinputstream.c:155 gio/gfileinputstream.c:422 +#: gio/gfileiostream.c:171 gio/gfileoutputstream.c:170 +#: gio/gfileoutputstream.c:525 msgid "Stream doesn't support query_info" msgstr "串流不支援 query_info" -#: ../gio/gfileinputstream.c:337 ../gio/gfileiostream.c:389 -#: ../gio/gfileoutputstream.c:383 +#: gio/gfileinputstream.c:337 gio/gfileiostream.c:389 +#: gio/gfileoutputstream.c:383 msgid "Seek not supported on stream" msgstr "不支援在串流中搜尋" -#: ../gio/gfileinputstream.c:381 +#: gio/gfileinputstream.c:381 msgid "Truncate not allowed on input stream" msgstr "在輸入串流中不允許截短(truncate)" -#: ../gio/gfileiostream.c:465 ../gio/gfileoutputstream.c:459 +#: gio/gfileiostream.c:465 gio/gfileoutputstream.c:459 msgid "Truncate not supported on stream" msgstr "在串流中不支援截短(truncate)" -#: ../gio/gicon.c:286 +#: gio/gicon.c:286 #, c-format msgid "Wrong number of tokens (%d)" msgstr "記號數量 (%d) 錯誤" -#: ../gio/gicon.c:306 +#: gio/gicon.c:306 #, c-format msgid "No type for class name %s" msgstr "類別名稱 %s 沒有類型" -#: ../gio/gicon.c:316 +#: gio/gicon.c:316 #, c-format msgid "Type %s does not implement the GIcon interface" msgstr "類型 %s 沒有實作 GIcon 介面" -#: ../gio/gicon.c:327 +#: gio/gicon.c:327 #, c-format msgid "Type %s is not classed" msgstr "類型 %s 尚未歸類" -#: ../gio/gicon.c:341 +#: gio/gicon.c:341 #, c-format msgid "Malformed version number: %s" msgstr "格式不良的版本號碼:%s" -#: ../gio/gicon.c:355 +#: gio/gicon.c:355 #, c-format msgid "Type %s does not implement from_tokens() on the GIcon interface" msgstr "類型 %s 沒有實作 GIcon 介面的 from_tokens()" -#: ../gio/gicon.c:431 +#: gio/gicon.c:431 msgid "Can't handle the supplied version the icon encoding" msgstr "不能處理提供的圖示編碼版本" -#: ../gio/ginputstream.c:195 +#: gio/ginputstream.c:195 msgid "Input stream doesn't implement read" msgstr "輸入串流尚未實作讀取" @@ -1390,633 +1390,632 @@ msgstr "輸入串流尚未實作讀取" #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:902 ../gio/giostream.c:315 -#: ../gio/goutputstream.c:1118 +#: gio/ginputstream.c:902 gio/giostream.c:315 gio/goutputstream.c:1118 msgid "Stream has outstanding operation" msgstr "串流有異常操作" -#: ../gio/ginetsocketaddress.c:182 ../gio/ginetsocketaddress.c:199 -#: ../gio/gunixsocketaddress.c:174 +#: gio/ginetsocketaddress.c:182 gio/ginetsocketaddress.c:199 +#: gio/gunixsocketaddress.c:174 msgid "Not enough space for socket address" msgstr "socket 位址沒有足夠的空間" -#: ../gio/ginetsocketaddress.c:212 +#: gio/ginetsocketaddress.c:212 msgid "Unsupported socket address" msgstr "不支援的 socket 位址" -#: ../gio/glocaldirectorymonitor.c:288 +#: gio/glocaldirectorymonitor.c:288 msgid "Unable to find default local directory monitor type" msgstr "無法找到預設的本地端目錄監視器類型" -#: ../gio/glocalfile.c:599 ../gio/win32/gwinhttpfile.c:424 +#: gio/glocalfile.c:599 gio/win32/gwinhttpfile.c:424 #, c-format msgid "Invalid filename %s" msgstr "無效的檔案名稱 %s" -#: ../gio/glocalfile.c:973 +#: gio/glocalfile.c:973 #, c-format msgid "Error getting filesystem info: %s" msgstr "取得檔案系統資訊時發生錯誤:%s" -#: ../gio/glocalfile.c:1111 +#: gio/glocalfile.c:1111 msgid "Can't rename root directory" msgstr "不能重新命名根目錄" -#: ../gio/glocalfile.c:1131 ../gio/glocalfile.c:1157 +#: gio/glocalfile.c:1131 gio/glocalfile.c:1157 #, c-format msgid "Error renaming file: %s" msgstr "重新命名檔案時發生錯誤:%s" -#: ../gio/glocalfile.c:1140 +#: gio/glocalfile.c:1140 msgid "Can't rename file, filename already exist" msgstr "不能重新命名檔案,該檔案名稱已存在" -#: ../gio/glocalfile.c:1153 ../gio/glocalfile.c:2137 ../gio/glocalfile.c:2166 -#: ../gio/glocalfile.c:2326 ../gio/glocalfileoutputstream.c:557 -#: ../gio/glocalfileoutputstream.c:610 ../gio/glocalfileoutputstream.c:655 -#: ../gio/glocalfileoutputstream.c:1137 +#: gio/glocalfile.c:1153 gio/glocalfile.c:2137 gio/glocalfile.c:2166 +#: gio/glocalfile.c:2326 gio/glocalfileoutputstream.c:557 +#: gio/glocalfileoutputstream.c:610 gio/glocalfileoutputstream.c:655 +#: gio/glocalfileoutputstream.c:1137 msgid "Invalid filename" msgstr "無效的檔案名稱" -#: ../gio/glocalfile.c:1314 +#: gio/glocalfile.c:1314 #, c-format msgid "Error opening file: %s" msgstr "開啓檔案時發生錯誤:%s" -#: ../gio/glocalfile.c:1324 +#: gio/glocalfile.c:1324 msgid "Can't open directory" msgstr "不能開啟目錄" -#: ../gio/glocalfile.c:1449 +#: gio/glocalfile.c:1449 #, c-format msgid "Error removing file: %s" msgstr "移除檔案時發生錯誤:%s" -#: ../gio/glocalfile.c:1816 +#: gio/glocalfile.c:1816 #, c-format msgid "Error trashing file: %s" msgstr "移動檔案至回收筒時發生錯誤:%s" -#: ../gio/glocalfile.c:1839 +#: gio/glocalfile.c:1839 #, c-format msgid "Unable to create trash dir %s: %s" msgstr "無法建立回收筒目錄 %s:%s" -#: ../gio/glocalfile.c:1860 +#: gio/glocalfile.c:1860 msgid "Unable to find toplevel directory for trash" msgstr "無法找到回收筒的頂端層級目錄" -#: ../gio/glocalfile.c:1939 ../gio/glocalfile.c:1959 +#: gio/glocalfile.c:1939 gio/glocalfile.c:1959 msgid "Unable to find or create trash directory" msgstr "無法找到或建立回收筒目錄" -#: ../gio/glocalfile.c:1993 +#: gio/glocalfile.c:1993 #, c-format msgid "Unable to create trashing info file: %s" msgstr "無法建立回收筒資訊檔案:%s" -#: ../gio/glocalfile.c:2022 ../gio/glocalfile.c:2027 ../gio/glocalfile.c:2107 -#: ../gio/glocalfile.c:2114 +#: gio/glocalfile.c:2022 gio/glocalfile.c:2027 gio/glocalfile.c:2107 +#: gio/glocalfile.c:2114 #, c-format msgid "Unable to trash file: %s" msgstr "無法將檔案移至回收筒:%s" -#: ../gio/glocalfile.c:2141 +#: gio/glocalfile.c:2141 #, c-format msgid "Error creating directory: %s" msgstr "建立目錄發生錯誤:%s" -#: ../gio/glocalfile.c:2170 +#: gio/glocalfile.c:2170 #, c-format msgid "Filesystem does not support symbolic links" msgstr "檔案系統不支援符號連結" -#: ../gio/glocalfile.c:2174 +#: gio/glocalfile.c:2174 #, c-format msgid "Error making symbolic link: %s" msgstr "建立符號連結時發生錯誤:%s" -#: ../gio/glocalfile.c:2236 ../gio/glocalfile.c:2330 +#: gio/glocalfile.c:2236 gio/glocalfile.c:2330 #, c-format msgid "Error moving file: %s" msgstr "移動檔案時發生錯誤:%s" -#: ../gio/glocalfile.c:2259 +#: gio/glocalfile.c:2259 msgid "Can't move directory over directory" msgstr "不能將目錄移動至目錄上" -#: ../gio/glocalfile.c:2286 ../gio/glocalfileoutputstream.c:935 -#: ../gio/glocalfileoutputstream.c:949 ../gio/glocalfileoutputstream.c:964 -#: ../gio/glocalfileoutputstream.c:980 ../gio/glocalfileoutputstream.c:994 +#: gio/glocalfile.c:2286 gio/glocalfileoutputstream.c:935 +#: gio/glocalfileoutputstream.c:949 gio/glocalfileoutputstream.c:964 +#: gio/glocalfileoutputstream.c:980 gio/glocalfileoutputstream.c:994 msgid "Backup file creation failed" msgstr "建立備份檔案失敗" -#: ../gio/glocalfile.c:2305 +#: gio/glocalfile.c:2305 #, c-format msgid "Error removing target file: %s" msgstr "移除目標檔案時發生錯誤:%s" -#: ../gio/glocalfile.c:2319 +#: gio/glocalfile.c:2319 msgid "Move between mounts not supported" msgstr "不支援在掛載點之間移動" -#: ../gio/glocalfileinfo.c:726 +#: gio/glocalfileinfo.c:726 msgid "Attribute value must be non-NULL" msgstr "屬性數值必須為非-NULL" -#: ../gio/glocalfileinfo.c:733 +#: gio/glocalfileinfo.c:733 msgid "Invalid attribute type (string expected)" msgstr "無效的屬性類型(應為字串值)" -#: ../gio/glocalfileinfo.c:740 +#: gio/glocalfileinfo.c:740 msgid "Invalid extended attribute name" msgstr "無效的延伸屬性名稱" -#: ../gio/glocalfileinfo.c:780 +#: gio/glocalfileinfo.c:780 #, c-format msgid "Error setting extended attribute '%s': %s" msgstr "設定延伸屬性「%s」時發生錯誤:%s" -#: ../gio/glocalfileinfo.c:1484 ../gio/glocalfileoutputstream.c:819 +#: gio/glocalfileinfo.c:1484 gio/glocalfileoutputstream.c:819 #, c-format msgid "Error stating file '%s': %s" msgstr "取得檔案「%s」狀態時發生錯誤:%s" -#: ../gio/glocalfileinfo.c:1557 +#: gio/glocalfileinfo.c:1557 msgid " (invalid encoding)" msgstr "(無效的編碼)" -#: ../gio/glocalfileinfo.c:1755 +#: gio/glocalfileinfo.c:1755 #, c-format msgid "Error stating file descriptor: %s" msgstr "取得檔案描述狀態時發生錯誤:%s" -#: ../gio/glocalfileinfo.c:1800 +#: gio/glocalfileinfo.c:1800 msgid "Invalid attribute type (uint32 expected)" msgstr "無效的屬性類型(應為 uint32 值)" -#: ../gio/glocalfileinfo.c:1818 +#: gio/glocalfileinfo.c:1818 msgid "Invalid attribute type (uint64 expected)" msgstr "無效的屬性類型(應為 uint64 值)" -#: ../gio/glocalfileinfo.c:1837 ../gio/glocalfileinfo.c:1856 +#: gio/glocalfileinfo.c:1837 gio/glocalfileinfo.c:1856 msgid "Invalid attribute type (byte string expected)" msgstr "無效的屬性類型(應為 byte string 值)" -#: ../gio/glocalfileinfo.c:1891 +#: gio/glocalfileinfo.c:1891 msgid "Cannot set permissions on symlinks" msgstr "不能設定符號連結的權限" -#: ../gio/glocalfileinfo.c:1907 +#: gio/glocalfileinfo.c:1907 #, c-format msgid "Error setting permissions: %s" msgstr "設定權限時發生錯誤:%s" -#: ../gio/glocalfileinfo.c:1958 +#: gio/glocalfileinfo.c:1958 #, c-format msgid "Error setting owner: %s" msgstr "設定擁有者時發生錯誤:%s" -#: ../gio/glocalfileinfo.c:1981 +#: gio/glocalfileinfo.c:1981 msgid "symlink must be non-NULL" msgstr "符號連結必須為非-NULL" -#: ../gio/glocalfileinfo.c:1991 ../gio/glocalfileinfo.c:2010 -#: ../gio/glocalfileinfo.c:2021 +#: gio/glocalfileinfo.c:1991 gio/glocalfileinfo.c:2010 +#: gio/glocalfileinfo.c:2021 #, c-format msgid "Error setting symlink: %s" msgstr "設定符號連結時發生錯誤:%s" -#: ../gio/glocalfileinfo.c:2000 +#: gio/glocalfileinfo.c:2000 msgid "Error setting symlink: file is not a symlink" msgstr "設定符號連結時發生錯誤:檔案不是符號連結" -#: ../gio/glocalfileinfo.c:2126 +#: gio/glocalfileinfo.c:2126 #, c-format msgid "Error setting modification or access time: %s" msgstr "設定修改或存取時刻時發生錯誤:%s" -#: ../gio/glocalfileinfo.c:2149 +#: gio/glocalfileinfo.c:2149 msgid "SELinux context must be non-NULL" msgstr "SELinux 關聯必須為非-NULL" -#: ../gio/glocalfileinfo.c:2164 +#: gio/glocalfileinfo.c:2164 #, c-format msgid "Error setting SELinux context: %s" msgstr "設定 SELinux 關聯時發生錯誤:%s" -#: ../gio/glocalfileinfo.c:2171 +#: gio/glocalfileinfo.c:2171 msgid "SELinux is not enabled on this system" msgstr "SELinux 在這個系統上並未啟用" -#: ../gio/glocalfileinfo.c:2263 +#: gio/glocalfileinfo.c:2263 #, c-format msgid "Setting attribute %s not supported" msgstr "不支援設定屬性 %s" -#: ../gio/glocalfileinputstream.c:171 ../gio/glocalfileoutputstream.c:708 +#: gio/glocalfileinputstream.c:171 gio/glocalfileoutputstream.c:708 #, c-format msgid "Error reading from file: %s" msgstr "從檔案讀取時發生錯誤:%s" -#: ../gio/glocalfileinputstream.c:202 ../gio/glocalfileinputstream.c:214 -#: ../gio/glocalfileinputstream.c:326 ../gio/glocalfileoutputstream.c:456 -#: ../gio/glocalfileoutputstream.c:1012 +#: gio/glocalfileinputstream.c:202 gio/glocalfileinputstream.c:214 +#: gio/glocalfileinputstream.c:326 gio/glocalfileoutputstream.c:456 +#: gio/glocalfileoutputstream.c:1012 #, c-format msgid "Error seeking in file: %s" msgstr "在檔案中搜尋時發生錯誤:%s" -#: ../gio/glocalfileinputstream.c:247 ../gio/glocalfileoutputstream.c:242 -#: ../gio/glocalfileoutputstream.c:337 +#: gio/glocalfileinputstream.c:247 gio/glocalfileoutputstream.c:242 +#: gio/glocalfileoutputstream.c:337 #, c-format msgid "Error closing file: %s" msgstr "關閉檔案時發生錯誤:%s" -#: ../gio/glocalfilemonitor.c:213 +#: gio/glocalfilemonitor.c:213 msgid "Unable to find default local file monitor type" msgstr "無法找到預設的本地端檔案監視器類型" -#: ../gio/glocalfileoutputstream.c:188 ../gio/glocalfileoutputstream.c:221 -#: ../gio/glocalfileoutputstream.c:729 +#: gio/glocalfileoutputstream.c:188 gio/glocalfileoutputstream.c:221 +#: gio/glocalfileoutputstream.c:729 #, c-format msgid "Error writing to file: %s" msgstr "寫入至檔案時發生錯誤:%s" -#: ../gio/glocalfileoutputstream.c:269 +#: gio/glocalfileoutputstream.c:269 #, c-format msgid "Error removing old backup link: %s" msgstr "移除舊備份連結時發生錯誤:%s" -#: ../gio/glocalfileoutputstream.c:283 ../gio/glocalfileoutputstream.c:296 +#: gio/glocalfileoutputstream.c:283 gio/glocalfileoutputstream.c:296 #, c-format msgid "Error creating backup copy: %s" msgstr "建立備份複本時發生錯誤:%s" -#: ../gio/glocalfileoutputstream.c:314 +#: gio/glocalfileoutputstream.c:314 #, c-format msgid "Error renaming temporary file: %s" msgstr "重新命名暫存檔案時發生錯誤:%s" -#: ../gio/glocalfileoutputstream.c:502 ../gio/glocalfileoutputstream.c:1063 +#: gio/glocalfileoutputstream.c:502 gio/glocalfileoutputstream.c:1063 #, c-format msgid "Error truncating file: %s" msgstr "截短檔案時發生錯誤:%s" -#: ../gio/glocalfileoutputstream.c:563 ../gio/glocalfileoutputstream.c:616 -#: ../gio/glocalfileoutputstream.c:661 ../gio/glocalfileoutputstream.c:801 -#: ../gio/glocalfileoutputstream.c:1044 ../gio/glocalfileoutputstream.c:1143 +#: gio/glocalfileoutputstream.c:563 gio/glocalfileoutputstream.c:616 +#: gio/glocalfileoutputstream.c:661 gio/glocalfileoutputstream.c:801 +#: gio/glocalfileoutputstream.c:1044 gio/glocalfileoutputstream.c:1143 #, c-format msgid "Error opening file '%s': %s" msgstr "開啟檔案「%s」時發生錯誤:%s" -#: ../gio/glocalfileoutputstream.c:832 +#: gio/glocalfileoutputstream.c:832 msgid "Target file is a directory" msgstr "目標檔案是一個目錄" -#: ../gio/glocalfileoutputstream.c:837 +#: gio/glocalfileoutputstream.c:837 msgid "Target file is not a regular file" msgstr "目標檔案不是正規的檔案" -#: ../gio/glocalfileoutputstream.c:849 +#: gio/glocalfileoutputstream.c:849 msgid "The file was externally modified" msgstr "該檔案已被外部程式修改過" -#: ../gio/glocalfileoutputstream.c:1028 +#: gio/glocalfileoutputstream.c:1028 #, c-format msgid "Error removing old file: %s" msgstr "移除舊檔案時發生錯誤:%s" -#: ../gio/gmemoryinputstream.c:487 ../gio/gmemoryoutputstream.c:718 +#: gio/gmemoryinputstream.c:487 gio/gmemoryoutputstream.c:718 msgid "Invalid GSeekType supplied" msgstr "提供了無效的 GSeek 類型" -#: ../gio/gmemoryinputstream.c:497 +#: gio/gmemoryinputstream.c:497 msgid "Invalid seek request" msgstr "無效的搜尋要求" -#: ../gio/gmemoryinputstream.c:521 +#: gio/gmemoryinputstream.c:521 msgid "Cannot truncate GMemoryInputStream" msgstr "不能截短 GMemoryInputStream" -#: ../gio/gmemoryoutputstream.c:468 +#: gio/gmemoryoutputstream.c:468 msgid "Memory output stream not resizable" msgstr "記憶體輸出串流不能改變大小" -#: ../gio/gmemoryoutputstream.c:484 +#: gio/gmemoryoutputstream.c:484 msgid "Failed to resize memory output stream" msgstr "改變記憶體輸出串流的大小失敗" -#: ../gio/gmemoryoutputstream.c:572 +#: gio/gmemoryoutputstream.c:572 msgid "" "Amount of memory required to process the write is larger than available " "address space" msgstr "進行寫入所需的記憶體總額大於可用的位址空間" -#: ../gio/gmemoryoutputstream.c:728 +#: gio/gmemoryoutputstream.c:728 msgid "Requested seek before the beginning of the stream" msgstr "在串流的開頭之前要求的搜索" -#: ../gio/gmemoryoutputstream.c:737 +#: gio/gmemoryoutputstream.c:737 msgid "Requested seek beyond the end of the stream" msgstr "在串流的開頭之後要求的搜索" #. Translators: This is an error #. * message for mount objects that #. * don't implement unmount. -#: ../gio/gmount.c:364 +#: gio/gmount.c:364 msgid "mount doesn't implement \"unmount\"" msgstr "掛載點尚未實作卸載(umount)" #. Translators: This is an error #. * message for mount objects that #. * don't implement eject. -#: ../gio/gmount.c:443 +#: gio/gmount.c:443 msgid "mount doesn't implement \"eject\"" msgstr "掛載點尚未實作退出(eject)" #. Translators: This is an error #. * message for mount objects that #. * don't implement any of unmount or unmount_with_operation. -#: ../gio/gmount.c:523 +#: gio/gmount.c:523 msgid "mount doesn't implement \"unmount\" or \"unmount_with_operation\"" msgstr "掛載點尚未實作卸載(umount)或「umount_with_operation」" #. Translators: This is an error #. * message for mount objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gmount.c:610 +#: gio/gmount.c:610 msgid "mount doesn't implement \"eject\" or \"eject_with_operation\"" msgstr "掛載點尚未實作退出(eject)或「eject_with_operation」" #. Translators: This is an error #. * message for mount objects that #. * don't implement remount. -#: ../gio/gmount.c:699 +#: gio/gmount.c:699 msgid "mount doesn't implement \"remount\"" msgstr "掛載點尚未實作重新掛載(remount)" #. Translators: This is an error #. * message for mount objects that #. * don't implement content type guessing. -#: ../gio/gmount.c:783 +#: gio/gmount.c:783 msgid "mount doesn't implement content type guessing" msgstr "掛載點尚未實作內容類型預測" #. Translators: This is an error #. * message for mount objects that #. * don't implement content type guessing. -#: ../gio/gmount.c:872 +#: gio/gmount.c:872 msgid "mount doesn't implement synchronous content type guessing" msgstr "掛載點尚未實作同步內容類型預測" -#: ../gio/gnetworkaddress.c:295 +#: gio/gnetworkaddress.c:295 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "主機名稱「%s」含有 '[' but not ']'" -#: ../gio/goutputstream.c:207 ../gio/goutputstream.c:408 +#: gio/goutputstream.c:207 gio/goutputstream.c:408 msgid "Output stream doesn't implement write" msgstr "輸出串流尚未實作寫入" -#: ../gio/goutputstream.c:369 ../gio/goutputstream.c:781 +#: gio/goutputstream.c:369 gio/goutputstream.c:781 msgid "Source stream is already closed" msgstr "來源串流已經關閉" -#: ../gio/gresolver.c:736 +#: gio/gresolver.c:736 #, c-format msgid "Error resolving '%s': %s" msgstr "解析「%s」時發生錯誤:%s" -#: ../gio/gresolver.c:786 +#: gio/gresolver.c:786 #, c-format msgid "Error reverse-resolving '%s': %s" msgstr "反向解析「%s」時發生錯誤:%s" -#: ../gio/gresolver.c:821 ../gio/gresolver.c:899 +#: gio/gresolver.c:821 gio/gresolver.c:899 #, c-format msgid "No service record for '%s'" msgstr "沒有「%s」的服務紀錄" -#: ../gio/gresolver.c:826 ../gio/gresolver.c:904 +#: gio/gresolver.c:826 gio/gresolver.c:904 #, c-format msgid "Temporarily unable to resolve '%s'" msgstr "暫時無法解析「%s」" -#: ../gio/gresolver.c:831 ../gio/gresolver.c:909 +#: gio/gresolver.c:831 gio/gresolver.c:909 #, c-format msgid "Error resolving '%s'" msgstr "解析「%s」時發生錯誤" -#: ../gio/gsocket.c:277 +#: gio/gsocket.c:277 msgid "Invalid socket, not initialized" msgstr "無效的 socket,尚未初始化" -#: ../gio/gsocket.c:284 +#: gio/gsocket.c:284 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "無效的 socket,初始化失敗原因為:%s" -#: ../gio/gsocket.c:292 +#: gio/gsocket.c:292 msgid "Socket is already closed" msgstr "Socket 已經關閉" -#: ../gio/gsocket.c:413 +#: gio/gsocket.c:413 #, c-format msgid "creating GSocket from fd: %s" msgstr "正在從 fd 建立 GSocket:%s" -#: ../gio/gsocket.c:447 ../gio/gsocket.c:461 ../gio/gsocket.c:1925 +#: gio/gsocket.c:447 gio/gsocket.c:461 gio/gsocket.c:1925 #, c-format msgid "Unable to create socket: %s" msgstr "無法建立 socket:%s" -#: ../gio/gsocket.c:447 +#: gio/gsocket.c:447 msgid "Unknown protocol was specified" msgstr "指定了不明的通訊協定" -#: ../gio/gsocket.c:1126 +#: gio/gsocket.c:1126 #, c-format msgid "could not get local address: %s" msgstr "無法取得本地端位址:%s" -#: ../gio/gsocket.c:1159 +#: gio/gsocket.c:1159 #, c-format msgid "could not get remote address: %s" msgstr "無法取得遠端位址:%s" -#: ../gio/gsocket.c:1217 +#: gio/gsocket.c:1217 #, c-format msgid "could not listen: %s" msgstr "無法聽取:%s" -#: ../gio/gsocket.c:1291 +#: gio/gsocket.c:1291 #, c-format msgid "Error binding to address: %s" msgstr "綁定至位址時發生錯誤:%s" -#: ../gio/gsocket.c:1411 +#: gio/gsocket.c:1411 #, c-format msgid "Error accepting connection: %s" msgstr "接受連線時發生錯誤:%s" -#: ../gio/gsocket.c:1524 +#: gio/gsocket.c:1524 msgid "Error connecting: " msgstr "連線錯誤:" -#: ../gio/gsocket.c:1528 +#: gio/gsocket.c:1528 msgid "Connection in progress" msgstr "連線進行中" -#: ../gio/gsocket.c:1533 +#: gio/gsocket.c:1533 #, c-format msgid "Error connecting: %s" msgstr "連線錯誤:%s" -#: ../gio/gsocket.c:1573 +#: gio/gsocket.c:1573 #, c-format msgid "Unable to get pending error: %s" msgstr "無法取得未處理的錯誤:%s" -#: ../gio/gsocket.c:1669 +#: gio/gsocket.c:1669 #, c-format msgid "Error receiving data: %s" msgstr "接收資料時發生錯誤:%s" -#: ../gio/gsocket.c:1812 +#: gio/gsocket.c:1812 #, c-format msgid "Error sending data: %s" msgstr "傳送資料時發生錯誤:%s" -#: ../gio/gsocket.c:2004 +#: gio/gsocket.c:2004 #, c-format msgid "Error closing socket: %s" msgstr "關閉 socket 時發生錯誤:%s" -#: ../gio/gsocket.c:2481 +#: gio/gsocket.c:2481 #, c-format msgid "Waiting for socket condition: %s" msgstr "等候 socket 情況:%s" -#: ../gio/gsocket.c:2720 ../gio/gsocket.c:2801 +#: gio/gsocket.c:2720 gio/gsocket.c:2801 #, c-format msgid "Error sending message: %s" msgstr "傳送訊息時發生錯誤:%s" -#: ../gio/gsocket.c:2745 +#: gio/gsocket.c:2745 msgid "GSocketControlMessage not supported on windows" msgstr "視窗不支援 GSocketControlMessage" -#: ../gio/gsocket.c:3003 ../gio/gsocket.c:3141 +#: gio/gsocket.c:3003 gio/gsocket.c:3141 #, c-format msgid "Error receiving message: %s" msgstr "取回郵件發生錯誤:%s" -#: ../gio/gsocketclient.c:521 ../gio/gsocketclient.c:770 +#: gio/gsocketclient.c:521 gio/gsocketclient.c:770 msgid "Unknown error on connect" msgstr "連線時有不明的錯誤" -#: ../gio/gsocketlistener.c:192 +#: gio/gsocketlistener.c:192 msgid "Listener is already closed" msgstr "聽取程式已經關閉" -#: ../gio/gsocketlistener.c:233 +#: gio/gsocketlistener.c:233 msgid "Added socket is closed" msgstr "加入的 socket 已經關閉" -#: ../gio/gthemedicon.c:499 +#: gio/gthemedicon.c:499 #, c-format msgid "Can't handle version %d of GThemedIcon encoding" msgstr "不能處理版本為 %d 的 GThemedIcon 編碼" -#: ../gio/gunixconnection.c:151 +#: gio/gunixconnection.c:151 #, c-format msgid "Expecting 1 control message, got %d" msgstr "預期有 1 個控制訊息,卻收到 %d" -#: ../gio/gunixconnection.c:164 +#: gio/gunixconnection.c:164 msgid "Unexpected type of ancillary data" msgstr "輔助資料的未預期類型" -#: ../gio/gunixconnection.c:182 +#: gio/gunixconnection.c:182 #, c-format msgid "Expecting one fd, but got %d\n" msgstr "預期有 1 個 fd,卻收到 %d\n" -#: ../gio/gunixconnection.c:198 +#: gio/gunixconnection.c:198 msgid "Received invalid fd" msgstr "收到無效的 fd" -#: ../gio/gunixinputstream.c:354 ../gio/gunixinputstream.c:374 -#: ../gio/gunixinputstream.c:452 ../gio/gunixoutputstream.c:439 +#: gio/gunixinputstream.c:354 gio/gunixinputstream.c:374 +#: gio/gunixinputstream.c:452 gio/gunixoutputstream.c:439 #, c-format msgid "Error reading from unix: %s" msgstr "從 unix 讀取時發生錯誤:%s" -#: ../gio/gunixinputstream.c:407 ../gio/gunixinputstream.c:589 -#: ../gio/gunixoutputstream.c:394 ../gio/gunixoutputstream.c:545 +#: gio/gunixinputstream.c:407 gio/gunixinputstream.c:589 +#: gio/gunixoutputstream.c:394 gio/gunixoutputstream.c:545 #, c-format msgid "Error closing unix: %s" msgstr "關閉 unix 時發生錯誤:%s" -#: ../gio/gunixmounts.c:1846 ../gio/gunixmounts.c:1883 +#: gio/gunixmounts.c:1846 gio/gunixmounts.c:1883 msgid "Filesystem root" msgstr "根檔案系統" -#: ../gio/gunixoutputstream.c:340 ../gio/gunixoutputstream.c:361 +#: gio/gunixoutputstream.c:340 gio/gunixoutputstream.c:361 #, c-format msgid "Error writing to unix: %s" msgstr "寫入至 unix 時發生錯誤:%s" -#: ../gio/gunixsocketaddress.c:182 +#: gio/gunixsocketaddress.c:182 msgid "Abstract unix domain socket addresses not supported on this system" msgstr "這個系統不支授抽象 unix 網域 socket 位址" -#: ../gio/gvolume.c:407 +#: gio/gvolume.c:407 msgid "volume doesn't implement eject" msgstr "儲存區尚未實作退出(eject)" #. Translators: This is an error #. * message for volume objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gvolume.c:486 +#: gio/gvolume.c:486 msgid "volume doesn't implement eject or eject_with_operation" msgstr "儲存區尚未實作退出(eject) 或 eject_with_operation" -#: ../gio/gwin32appinfo.c:277 +#: gio/gwin32appinfo.c:277 msgid "Can't find application" msgstr "找不到應用程式" -#: ../gio/gwin32appinfo.c:300 +#: gio/gwin32appinfo.c:300 #, c-format msgid "Error launching application: %s" msgstr "執行應用程式時發生錯誤:%s" -#: ../gio/gwin32appinfo.c:336 +#: gio/gwin32appinfo.c:336 msgid "URIs not supported" msgstr "不支援 URIs" -#: ../gio/gwin32appinfo.c:358 +#: gio/gwin32appinfo.c:358 msgid "association changes not supported on win32" msgstr "關聯更改在 win32 上不支援" -#: ../gio/gwin32appinfo.c:370 +#: gio/gwin32appinfo.c:370 msgid "Association creation not supported on win32" msgstr "關聯建立在 win32 上不支援" -#: ../gio/gzlibcompressor.c:279 ../gio/gzlibdecompressor.c:250 +#: gio/gzlibcompressor.c:279 gio/gzlibdecompressor.c:250 msgid "Not enough memory" msgstr "沒有足夠的記憶體" -#: ../gio/gzlibcompressor.c:286 ../gio/gzlibdecompressor.c:257 +#: gio/gzlibcompressor.c:286 gio/gzlibdecompressor.c:257 #, c-format msgid "Internal error: %s" msgstr "內部的錯誤:%s" -#: ../gio/gzlibcompressor.c:299 ../gio/gzlibdecompressor.c:271 +#: gio/gzlibcompressor.c:299 gio/gzlibdecompressor.c:271 msgid "Need more input" msgstr "需要更多輸入" -#: ../gio/gzlibdecompressor.c:243 +#: gio/gzlibdecompressor.c:243 msgid "Invalid compressed data" msgstr "無效的壓縮資料" diff --git a/po/zh_TW.po b/po/zh_TW.po index 83e1f6970..205654861 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: glib 2.24.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-27 20:50+0800\n" +"POT-Creation-Date: 2010-05-02 21:22-0400\n" "PO-Revision-Date: 2010-03-27 14:14+0800\n" "Last-Translator: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>\n" "Language-Team: Chinese (traditional)\n" @@ -18,345 +18,343 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ../glib/gbookmarkfile.c:737 +#: glib/gbookmarkfile.c:737 #, c-format msgid "Unexpected attribute '%s' for element '%s'" msgstr "元件「%2$s」中有未預期的屬性「%1$s」" -#: ../glib/gbookmarkfile.c:748 ../glib/gbookmarkfile.c:819 -#: ../glib/gbookmarkfile.c:829 ../glib/gbookmarkfile.c:936 +#: glib/gbookmarkfile.c:748 glib/gbookmarkfile.c:819 glib/gbookmarkfile.c:829 +#: glib/gbookmarkfile.c:936 #, c-format msgid "Attribute '%s' of element '%s' not found" msgstr "找不到元件「%2$s」中的屬性「%1$s」" -#: ../glib/gbookmarkfile.c:1106 ../glib/gbookmarkfile.c:1171 -#: ../glib/gbookmarkfile.c:1235 ../glib/gbookmarkfile.c:1245 +#: glib/gbookmarkfile.c:1106 glib/gbookmarkfile.c:1171 +#: glib/gbookmarkfile.c:1235 glib/gbookmarkfile.c:1245 #, c-format msgid "Unexpected tag '%s', tag '%s' expected" msgstr "未預期的標籤「%s」,應為標籤「%s」" -#: ../glib/gbookmarkfile.c:1131 ../glib/gbookmarkfile.c:1145 -#: ../glib/gbookmarkfile.c:1213 ../glib/gbookmarkfile.c:1265 +#: glib/gbookmarkfile.c:1131 glib/gbookmarkfile.c:1145 +#: glib/gbookmarkfile.c:1213 glib/gbookmarkfile.c:1265 #, c-format msgid "Unexpected tag '%s' inside '%s'" msgstr "「%2$s」中有未預期的標籤「%1$s」" -#: ../glib/gbookmarkfile.c:1793 +#: glib/gbookmarkfile.c:1793 msgid "No valid bookmark file found in data dirs" msgstr "在資料目錄中找不到有效的書籤檔案" -#: ../glib/gbookmarkfile.c:1994 +#: glib/gbookmarkfile.c:1994 #, c-format msgid "A bookmark for URI '%s' already exists" msgstr "URI「%s」的書籤已經存在" -#: ../glib/gbookmarkfile.c:2040 ../glib/gbookmarkfile.c:2198 -#: ../glib/gbookmarkfile.c:2283 ../glib/gbookmarkfile.c:2363 -#: ../glib/gbookmarkfile.c:2448 ../glib/gbookmarkfile.c:2531 -#: ../glib/gbookmarkfile.c:2609 ../glib/gbookmarkfile.c:2688 -#: ../glib/gbookmarkfile.c:2730 ../glib/gbookmarkfile.c:2827 -#: ../glib/gbookmarkfile.c:2953 ../glib/gbookmarkfile.c:3143 -#: ../glib/gbookmarkfile.c:3219 ../glib/gbookmarkfile.c:3384 -#: ../glib/gbookmarkfile.c:3473 ../glib/gbookmarkfile.c:3563 -#: ../glib/gbookmarkfile.c:3691 +#: glib/gbookmarkfile.c:2040 glib/gbookmarkfile.c:2198 +#: glib/gbookmarkfile.c:2283 glib/gbookmarkfile.c:2363 +#: glib/gbookmarkfile.c:2448 glib/gbookmarkfile.c:2531 +#: glib/gbookmarkfile.c:2609 glib/gbookmarkfile.c:2688 +#: glib/gbookmarkfile.c:2730 glib/gbookmarkfile.c:2827 +#: glib/gbookmarkfile.c:2953 glib/gbookmarkfile.c:3143 +#: glib/gbookmarkfile.c:3219 glib/gbookmarkfile.c:3384 +#: glib/gbookmarkfile.c:3473 glib/gbookmarkfile.c:3563 +#: glib/gbookmarkfile.c:3691 #, c-format msgid "No bookmark found for URI '%s'" msgstr "找不到 URI「%s」的書籤" -#: ../glib/gbookmarkfile.c:2372 +#: glib/gbookmarkfile.c:2372 #, c-format msgid "No MIME type defined in the bookmark for URI '%s'" msgstr "URI「%s」書籤中沒有定義 MIME 類型" -#: ../glib/gbookmarkfile.c:2457 +#: glib/gbookmarkfile.c:2457 #, c-format msgid "No private flag has been defined in bookmark for URI '%s'" msgstr "URI「%s」書籤中沒有私有旗幟" -#: ../glib/gbookmarkfile.c:2836 +#: glib/gbookmarkfile.c:2836 #, c-format msgid "No groups set in bookmark for URI '%s'" msgstr "URI「%s」書籤中沒有設定群組" -#: ../glib/gbookmarkfile.c:3237 ../glib/gbookmarkfile.c:3394 +#: glib/gbookmarkfile.c:3237 glib/gbookmarkfile.c:3394 #, c-format msgid "No application with name '%s' registered a bookmark for '%s'" msgstr "沒有名為「%s」的應用程式註冊書籤「%s」" -#: ../glib/gbookmarkfile.c:3417 +#: glib/gbookmarkfile.c:3417 #, c-format msgid "Failed to expand exec line '%s' with URI '%s'" msgstr "以 URI‘%2$s’ 展開 exec 行‘%1$s’失敗" -#: ../glib/gconvert.c:437 ../glib/gconvert.c:515 ../glib/giochannel.c:1404 -#: ../gio/gcharsetconverter.c:459 +#: glib/gconvert.c:437 glib/gconvert.c:515 glib/giochannel.c:1404 +#: gio/gcharsetconverter.c:459 #, c-format msgid "Conversion from character set '%s' to '%s' is not supported" msgstr "不支援將字元集‘%s’轉換成‘%s’" -#: ../glib/gconvert.c:441 ../glib/gconvert.c:519 -#: ../gio/gcharsetconverter.c:463 +#: glib/gconvert.c:441 glib/gconvert.c:519 gio/gcharsetconverter.c:463 #, c-format msgid "Could not open converter from '%s' to '%s'" msgstr "無法將‘%s’轉換至‘%s’" -#: ../glib/gconvert.c:638 ../glib/gconvert.c:1031 ../glib/giochannel.c:1576 -#: ../glib/giochannel.c:1618 ../glib/giochannel.c:2462 ../glib/gutf8.c:981 -#: ../glib/gutf8.c:1436 ../gio/gcharsetconverter.c:346 +#: glib/gconvert.c:638 glib/gconvert.c:1031 glib/giochannel.c:1576 +#: glib/giochannel.c:1618 glib/giochannel.c:2462 glib/gutf8.c:981 +#: glib/gutf8.c:1436 gio/gcharsetconverter.c:346 msgid "Invalid byte sequence in conversion input" msgstr "轉換輸入資料時遇到不正確的位元組組合" -#: ../glib/gconvert.c:646 ../glib/gconvert.c:956 ../glib/giochannel.c:1583 -#: ../glib/giochannel.c:2474 ../gio/gcharsetconverter.c:351 +#: glib/gconvert.c:646 glib/gconvert.c:956 glib/giochannel.c:1583 +#: glib/giochannel.c:2474 gio/gcharsetconverter.c:351 #, c-format msgid "Error during conversion: %s" msgstr "轉換時發生錯誤:%s" -#: ../glib/gconvert.c:678 ../glib/gutf8.c:977 ../glib/gutf8.c:1187 -#: ../glib/gutf8.c:1328 ../glib/gutf8.c:1432 +#: glib/gconvert.c:678 glib/gutf8.c:977 glib/gutf8.c:1187 glib/gutf8.c:1328 +#: glib/gutf8.c:1432 msgid "Partial character sequence at end of input" msgstr "輸入資料結束時字元仍未完整" -#: ../glib/gconvert.c:928 +#: glib/gconvert.c:928 #, c-format msgid "Cannot convert fallback '%s' to codeset '%s'" msgstr "無法將後備字串‘%s’的字元集轉換成‘%s’" -#: ../glib/gconvert.c:1751 +#: glib/gconvert.c:1751 #, c-format msgid "The URI '%s' is not an absolute URI using the \"file\" scheme" msgstr "URI‘%s’不是使用“file”格式的絕對 URI" -#: ../glib/gconvert.c:1761 +#: glib/gconvert.c:1761 #, c-format msgid "The local file URI '%s' may not include a '#'" msgstr "本機檔案的 URI‘%s’不應含有‘#’" -#: ../glib/gconvert.c:1778 +#: glib/gconvert.c:1778 #, c-format msgid "The URI '%s' is invalid" msgstr "URI‘%s’無效" -#: ../glib/gconvert.c:1790 +#: glib/gconvert.c:1790 #, c-format msgid "The hostname of the URI '%s' is invalid" msgstr "URI‘%s’中的主機名稱無效" -#: ../glib/gconvert.c:1806 +#: glib/gconvert.c:1806 #, c-format msgid "The URI '%s' contains invalidly escaped characters" msgstr "URI‘%s’含有「不正確跳出」的字元" -#: ../glib/gconvert.c:1901 +#: glib/gconvert.c:1901 #, c-format msgid "The pathname '%s' is not an absolute path" msgstr "路徑名稱‘%s’不是絕對路徑" -#: ../glib/gconvert.c:1911 +#: glib/gconvert.c:1911 msgid "Invalid hostname" msgstr "主機名稱無效" -#: ../glib/gdir.c:112 ../glib/gdir.c:135 +#: glib/gdir.c:112 glib/gdir.c:135 #, c-format msgid "Error opening directory '%s': %s" msgstr "開啟目錄‘%s’時發生錯誤:%s" -#: ../glib/gfileutils.c:536 ../glib/gfileutils.c:624 +#: glib/gfileutils.c:536 glib/gfileutils.c:624 #, c-format msgid "Could not allocate %lu bytes to read file \"%s\"" msgstr "無法配置 %lu 位元來讀取檔案“%s”" -#: ../glib/gfileutils.c:551 +#: glib/gfileutils.c:551 #, c-format msgid "Error reading file '%s': %s" msgstr "讀取檔案‘%s’時發生錯誤:%s" -#: ../glib/gfileutils.c:565 +#: glib/gfileutils.c:565 #, c-format msgid "File \"%s\" is too large" msgstr "檔案「%s」太過巨大" -#: ../glib/gfileutils.c:648 +#: glib/gfileutils.c:648 #, c-format msgid "Failed to read from file '%s': %s" msgstr "讀取檔案‘%s’失敗:%s" -#: ../glib/gfileutils.c:699 ../glib/gfileutils.c:786 +#: glib/gfileutils.c:699 glib/gfileutils.c:786 #, c-format msgid "Failed to open file '%s': %s" msgstr "開啟檔案「%s」失敗:%s" -#: ../glib/gfileutils.c:716 ../glib/gmappedfile.c:170 +#: glib/gfileutils.c:716 glib/gmappedfile.c:170 #, c-format msgid "Failed to get attributes of file '%s': fstat() failed: %s" msgstr "獲取檔案‘%s’的屬性失敗:fstat() 失敗:%s" -#: ../glib/gfileutils.c:750 +#: glib/gfileutils.c:750 #, c-format msgid "Failed to open file '%s': fdopen() failed: %s" msgstr "開啟檔案‘%s’失敗:fdopen() 失敗:%s" -#: ../glib/gfileutils.c:858 +#: glib/gfileutils.c:858 #, c-format msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s" msgstr "檔案名稱由‘%s’改為‘%s’失敗:g_rename() 失敗:%s" -#: ../glib/gfileutils.c:900 ../glib/gfileutils.c:1366 +#: glib/gfileutils.c:900 glib/gfileutils.c:1366 #, c-format msgid "Failed to create file '%s': %s" msgstr "建立檔案‘%s’失敗:%s" -#: ../glib/gfileutils.c:914 +#: glib/gfileutils.c:914 #, c-format msgid "Failed to open file '%s' for writing: fdopen() failed: %s" msgstr "開啟檔案‘%s’作寫入失敗:fdopen() 失敗:%s" -#: ../glib/gfileutils.c:939 +#: glib/gfileutils.c:939 #, c-format msgid "Failed to write file '%s': fwrite() failed: %s" msgstr "寫入檔案‘%s’失敗:fwrite() 失敗:%s" -#: ../glib/gfileutils.c:958 +#: glib/gfileutils.c:958 #, c-format msgid "Failed to write file '%s': fflush() failed: %s" msgstr "無法寫入檔案「%s」:fflush() 失敗:%s" -#: ../glib/gfileutils.c:987 +#: glib/gfileutils.c:987 #, c-format msgid "Failed to write file '%s': fsync() failed: %s" msgstr "無法寫入檔案「%s」:fsync() 失敗:%s" -#: ../glib/gfileutils.c:1006 +#: glib/gfileutils.c:1006 #, c-format msgid "Failed to close file '%s': fclose() failed: %s" msgstr "關閉檔案‘%s’失敗:fclose() 失敗:%s" -#: ../glib/gfileutils.c:1124 +#: glib/gfileutils.c:1124 #, c-format msgid "Existing file '%s' could not be removed: g_unlink() failed: %s" msgstr "現存檔案‘%s’無法移除:g_unlink() 失敗:%s" -#: ../glib/gfileutils.c:1328 +#: glib/gfileutils.c:1328 #, c-format msgid "Template '%s' invalid, should not contain a '%s'" msgstr "樣式‘%s’無效,不應含有‘%s’" # (Abel) this is file template for mktemp/mkstemp -#: ../glib/gfileutils.c:1341 +#: glib/gfileutils.c:1341 #, c-format msgid "Template '%s' doesn't contain XXXXXX" msgstr "檔案樣式‘%s’沒有包含 XXXXXX" -#: ../glib/gfileutils.c:1774 +#: glib/gfileutils.c:1774 #, c-format msgid "%u byte" msgid_plural "%u bytes" msgstr[0] "%u 位元組" -#: ../glib/gfileutils.c:1782 +#: glib/gfileutils.c:1782 #, c-format msgid "%.1f KB" msgstr "%.1f KB" -#: ../glib/gfileutils.c:1787 +#: glib/gfileutils.c:1787 #, c-format msgid "%.1f MB" msgstr "%.1f MB" -#: ../glib/gfileutils.c:1792 +#: glib/gfileutils.c:1792 #, c-format msgid "%.1f GB" msgstr "%.1f GB" -#: ../glib/gfileutils.c:1797 +#: glib/gfileutils.c:1797 #, c-format msgid "%.1f TB" msgstr "%.1f TB" -#: ../glib/gfileutils.c:1802 +#: glib/gfileutils.c:1802 #, c-format msgid "%.1f PB" msgstr "%.1f PB" -#: ../glib/gfileutils.c:1807 +#: glib/gfileutils.c:1807 #, c-format msgid "%.1f EB" msgstr "%.1f EB" -#: ../glib/gfileutils.c:1850 +#: glib/gfileutils.c:1850 #, c-format msgid "Failed to read the symbolic link '%s': %s" msgstr "讀取符號連結‘%s’失敗:%s" -#: ../glib/gfileutils.c:1871 +#: glib/gfileutils.c:1871 msgid "Symbolic links not supported" msgstr "不支援符號連結" -#: ../glib/giochannel.c:1408 +#: glib/giochannel.c:1408 #, c-format msgid "Could not open converter from '%s' to '%s': %s" msgstr "無法開啟將‘%s’轉換至‘%s’的轉換器:%s" -#: ../glib/giochannel.c:1753 +#: glib/giochannel.c:1753 msgid "Can't do a raw read in g_io_channel_read_line_string" msgstr "在 g_io_channel_read_line_string 中無法讀取原始資料" -#: ../glib/giochannel.c:1800 ../glib/giochannel.c:2058 -#: ../glib/giochannel.c:2145 +#: glib/giochannel.c:1800 glib/giochannel.c:2058 glib/giochannel.c:2145 msgid "Leftover unconverted data in read buffer" msgstr "用來讀取資料的緩衝區中仍有未轉換的資料" -#: ../glib/giochannel.c:1881 ../glib/giochannel.c:1958 +#: glib/giochannel.c:1881 glib/giochannel.c:1958 msgid "Channel terminates in a partial character" msgstr "在字元未完整之前,輸入管道已經結束" -#: ../glib/giochannel.c:1944 +#: glib/giochannel.c:1944 msgid "Can't do a raw read in g_io_channel_read_to_end" msgstr "g_io_channel_read_to_end 中無法讀取原始資料" -#: ../glib/gmappedfile.c:151 +#: glib/gmappedfile.c:151 #, c-format msgid "Failed to open file '%s': open() failed: %s" msgstr "開啟檔案‘%s’失敗:open() 失敗:%s" -#: ../glib/gmappedfile.c:230 +#: glib/gmappedfile.c:230 #, c-format msgid "Failed to map file '%s': mmap() failed: %s" msgstr "對應檔案‘%s’失敗:mmap() 失敗:%s" -#: ../glib/gmarkup.c:303 ../glib/gmarkup.c:343 +#: glib/gmarkup.c:303 glib/gmarkup.c:343 #, c-format msgid "Error on line %d char %d: " msgstr "第 %d 行第 %d 個字發生錯誤:" -#: ../glib/gmarkup.c:363 ../glib/gmarkup.c:441 +#: glib/gmarkup.c:363 glib/gmarkup.c:441 #, c-format msgid "Invalid UTF-8 encoded text in name - not valid '%s'" msgstr "名稱中無效的 UTF-8 編碼文字 - 不是合法的「%s」" -#: ../glib/gmarkup.c:374 +#: glib/gmarkup.c:374 #, c-format msgid "'%s' is not a valid name " msgstr "「%s」不是一個有效的名稱" -#: ../glib/gmarkup.c:390 +#: glib/gmarkup.c:390 #, c-format msgid "'%s' is not a valid name: '%c' " msgstr "「%s」不是一個有效的名稱:「%c」" -#: ../glib/gmarkup.c:494 +#: glib/gmarkup.c:494 #, c-format msgid "Error on line %d: %s" msgstr "第 %d 行發生錯誤:%s" -#: ../glib/gmarkup.c:578 +#: glib/gmarkup.c:578 #, c-format msgid "" "Failed to parse '%-.*s', which should have been a digit inside a character " "reference (ê for example) - perhaps the digit is too large" msgstr "無法解析‘%-.*s’,字元參引內應該含有數字(例如 ê)─ 可能是數字太大" -#: ../glib/gmarkup.c:590 +#: glib/gmarkup.c:590 msgid "" "Character reference did not end with a semicolon; most likely you used an " "ampersand character without intending to start an entity - escape ampersand " @@ -365,22 +363,22 @@ msgstr "" "字元參引的結束部分不是分號;很可能您想使用 & 字元但未將它變為實體 ─ 請將 & 轉" "換為 &" -#: ../glib/gmarkup.c:616 +#: glib/gmarkup.c:616 #, c-format msgid "Character reference '%-.*s' does not encode a permitted character" msgstr "字元參引‘%-.*s’無法表示任何能接受的字元" -#: ../glib/gmarkup.c:654 +#: glib/gmarkup.c:654 msgid "" "Empty entity '&;' seen; valid entities are: & " < > '" msgstr "出現空白的實體‘&;’;可用的實體為:& " < > '" -#: ../glib/gmarkup.c:662 +#: glib/gmarkup.c:662 #, c-format msgid "Entity name '%-.*s' is not known" msgstr "實體名稱 '%-.*s' 意義不明" -#: ../glib/gmarkup.c:667 +#: glib/gmarkup.c:667 msgid "" "Entity did not end with a semicolon; most likely you used an ampersand " "character without intending to start an entity - escape ampersand as &" @@ -388,31 +386,31 @@ msgstr "" "實體的結束部分不是分號;很可能您想使用 & 字元但未將它變為實體 ─ 請將 & 轉換" "為 &" -#: ../glib/gmarkup.c:1014 +#: glib/gmarkup.c:1014 msgid "Document must begin with an element (e.g. <book>)" msgstr "文件開始必須為一元素(例如 <book>)" -#: ../glib/gmarkup.c:1054 +#: glib/gmarkup.c:1054 #, c-format msgid "" "'%s' is not a valid character following a '<' character; it may not begin an " "element name" msgstr "‘<’字元後的‘%s’不是有效的字元;這樣不可能是元素名稱的開始部份" -#: ../glib/gmarkup.c:1122 +#: glib/gmarkup.c:1122 #, c-format msgid "" "Odd character '%s', expected a '>' character to end the empty-element tag '%" "s'" msgstr "字元「%s」只有一半,空元素標籤「%s」的結尾應該以‘>’字元結束" -#: ../glib/gmarkup.c:1206 +#: glib/gmarkup.c:1206 #, c-format msgid "" "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'" msgstr "不尋常的字元‘%s’,屬性名稱‘%s’(屬於元素‘%s’)後應該是‘=’字元" -#: ../glib/gmarkup.c:1247 +#: glib/gmarkup.c:1247 #, c-format msgid "" "Odd character '%s', expected a '>' or '/' character to end the start tag of " @@ -422,7 +420,7 @@ msgstr "" "不尋常的字元‘%s’,元素‘%s’的開始標籤應該以‘>’或‘/’字元終結,也可以是屬性;或" "許您在屬性名稱中使用了無效的字元" -#: ../glib/gmarkup.c:1291 +#: glib/gmarkup.c:1291 #, c-format msgid "" "Odd character '%s', expected an open quote mark after the equals sign when " @@ -430,822 +428,817 @@ msgid "" msgstr "" "不尋常的字元‘%s’,當指定屬性‘%s’的值(屬於元素‘%s’)時,等號後應該出現開引號" -#: ../glib/gmarkup.c:1425 +#: glib/gmarkup.c:1425 #, c-format msgid "" "'%s' is not a valid character following the characters '</'; '%s' may not " "begin an element name" msgstr "‘</’字元後的‘%s’不是有效的字元;‘%s’不可能是元素名稱的開始部份" -#: ../glib/gmarkup.c:1461 +#: glib/gmarkup.c:1461 #, c-format msgid "" "'%s' is not a valid character following the close element name '%s'; the " "allowed character is '>'" msgstr "字元‘%s’是無效的(位置在關閉元素‘%s’末端);允許的字元為「>」" -#: ../glib/gmarkup.c:1472 +#: glib/gmarkup.c:1472 #, c-format msgid "Element '%s' was closed, no element is currently open" msgstr "元素‘%s’已關閉,沒有開啟中的元素" -#: ../glib/gmarkup.c:1481 +#: glib/gmarkup.c:1481 #, c-format msgid "Element '%s' was closed, but the currently open element is '%s'" msgstr "元素‘%s’已關閉,但開啟中的元素是‘%s’" -#: ../glib/gmarkup.c:1648 +#: glib/gmarkup.c:1648 msgid "Document was empty or contained only whitespace" msgstr "文件完全空白或只含有空白字元" -#: ../glib/gmarkup.c:1662 +#: glib/gmarkup.c:1662 msgid "Document ended unexpectedly just after an open angle bracket '<'" msgstr "文件在尖角括號‘<’後突然終止" -#: ../glib/gmarkup.c:1670 ../glib/gmarkup.c:1715 +#: glib/gmarkup.c:1670 glib/gmarkup.c:1715 #, c-format msgid "" "Document ended unexpectedly with elements still open - '%s' was the last " "element opened" msgstr "在仍然有開啟中的元素時,文件突然結束 ─‘%s’是最後一個開啟的元素" -#: ../glib/gmarkup.c:1678 +#: glib/gmarkup.c:1678 #, c-format msgid "" "Document ended unexpectedly, expected to see a close angle bracket ending " "the tag <%s/>" msgstr "文件突然結束,本來應該出現用來關閉標籤 <%s/> 的尖角括號" -#: ../glib/gmarkup.c:1684 +#: glib/gmarkup.c:1684 msgid "Document ended unexpectedly inside an element name" msgstr "在元素的名稱內,文件突然結束" -#: ../glib/gmarkup.c:1690 +#: glib/gmarkup.c:1690 msgid "Document ended unexpectedly inside an attribute name" msgstr "在屬性名稱內,文件突然結束" -#: ../glib/gmarkup.c:1695 +#: glib/gmarkup.c:1695 msgid "Document ended unexpectedly inside an element-opening tag." msgstr "在元素的開啟標籤內,文件突然結束" -#: ../glib/gmarkup.c:1701 +#: glib/gmarkup.c:1701 msgid "" "Document ended unexpectedly after the equals sign following an attribute " "name; no attribute value" msgstr "在屬性名稱的等號後,文件突然結束;沒有屬性值" -#: ../glib/gmarkup.c:1708 +#: glib/gmarkup.c:1708 msgid "Document ended unexpectedly while inside an attribute value" msgstr "在屬性值內,文件突然結束" -#: ../glib/gmarkup.c:1724 +#: glib/gmarkup.c:1724 #, c-format msgid "Document ended unexpectedly inside the close tag for element '%s'" msgstr "在元素‘%s’的關閉標籤內,文件突然結束" -#: ../glib/gmarkup.c:1730 +#: glib/gmarkup.c:1730 msgid "Document ended unexpectedly inside a comment or processing instruction" msgstr "在註解或處理指示內,文件突然結束" -#: ../glib/gregex.c:131 +#: glib/gregex.c:131 msgid "corrupted object" msgstr "損毀的物件" -#: ../glib/gregex.c:133 +#: glib/gregex.c:133 msgid "internal error or corrupted object" msgstr "內部錯誤或損毀的物件" -#: ../glib/gregex.c:135 +#: glib/gregex.c:135 msgid "out of memory" msgstr "記憶體耗盡" -#: ../glib/gregex.c:140 +#: glib/gregex.c:140 msgid "backtracking limit reached" msgstr "已達回溯上限" -#: ../glib/gregex.c:152 ../glib/gregex.c:160 +#: glib/gregex.c:152 glib/gregex.c:160 msgid "the pattern contains items not supported for partial matching" msgstr "此模式包含了不支援部分比對的項目" -#: ../glib/gregex.c:154 ../gio/glocalfile.c:2115 +#: glib/gregex.c:154 gio/glocalfile.c:2115 msgid "internal error" msgstr "內部的錯誤" -#: ../glib/gregex.c:162 +#: glib/gregex.c:162 msgid "back references as conditions are not supported for partial matching" msgstr "部分比對不支援以反向參照為條件" -#: ../glib/gregex.c:171 +#: glib/gregex.c:171 msgid "recursion limit reached" msgstr "已達遞廻上限" -#: ../glib/gregex.c:173 +#: glib/gregex.c:173 msgid "workspace limit for empty substrings reached" msgstr "已達空白子字串的工作區上限" -#: ../glib/gregex.c:175 +#: glib/gregex.c:175 msgid "invalid combination of newline flags" msgstr "無效的換行旗標組合" -#: ../glib/gregex.c:179 +#: glib/gregex.c:179 msgid "unknown error" msgstr "不明的錯誤" -#: ../glib/gregex.c:199 +#: glib/gregex.c:199 msgid "\\ at end of pattern" msgstr "\\ 於模式結尾" -#: ../glib/gregex.c:202 +#: glib/gregex.c:202 msgid "\\c at end of pattern" msgstr "\\c 於模式結尾" -#: ../glib/gregex.c:205 +#: glib/gregex.c:205 msgid "unrecognized character follows \\" msgstr "無法辨識的字元接著 \\" -#: ../glib/gregex.c:212 +#: glib/gregex.c:212 msgid "case-changing escapes (\\l, \\L, \\u, \\U) are not allowed here" msgstr "這裡不允許使用改變大小寫的轉義符(\\l, \\L, \\u, \\U)" -#: ../glib/gregex.c:215 +#: glib/gregex.c:215 msgid "numbers out of order in {} quantifier" msgstr "{} 裡的數字次序顛倒了" -#: ../glib/gregex.c:218 +#: glib/gregex.c:218 msgid "number too big in {} quantifier" msgstr "{} 裡的數字太大了" -#: ../glib/gregex.c:221 +#: glib/gregex.c:221 msgid "missing terminating ] for character class" msgstr "字元類別缺少結束的 ]" -#: ../glib/gregex.c:224 +#: glib/gregex.c:224 msgid "invalid escape sequence in character class" msgstr "字元類別中無效的跳脫序列" -#: ../glib/gregex.c:227 +#: glib/gregex.c:227 msgid "range out of order in character class" msgstr "字元類別的範圍次序顛倒" -#: ../glib/gregex.c:230 +#: glib/gregex.c:230 msgid "nothing to repeat" msgstr "沒有東西可重複" -#: ../glib/gregex.c:233 +#: glib/gregex.c:233 msgid "unrecognized character after (?" msgstr "在 (? 後有無法辨識的字元" -#: ../glib/gregex.c:237 +#: glib/gregex.c:237 msgid "unrecognized character after (?<" msgstr "在 (?< 後有無法辨識的字元" -#: ../glib/gregex.c:241 +#: glib/gregex.c:241 msgid "unrecognized character after (?P" msgstr "在 (?P 後有無法辨識的字元" -#: ../glib/gregex.c:244 +#: glib/gregex.c:244 msgid "POSIX named classes are supported only within a class" msgstr "POSIX 命名類別只在單一類別中支援" -#: ../glib/gregex.c:247 +#: glib/gregex.c:247 msgid "missing terminating )" msgstr "缺少結束的 )" -#: ../glib/gregex.c:251 +#: glib/gregex.c:251 msgid ") without opening (" msgstr ") 沒有開頭的 (" #. translators: '(?R' and '(?[+-]digits' are both meant as (groups of) #. * sequences here, '(?-54' would be an example for the second group. #. -#: ../glib/gregex.c:258 +#: glib/gregex.c:258 msgid "(?R or (?[+-]digits must be followed by )" msgstr "(?R 或 (?[+-]數字必須接著 )" -#: ../glib/gregex.c:261 +#: glib/gregex.c:261 msgid "reference to non-existent subpattern" msgstr "參照不存在的子模式" -#: ../glib/gregex.c:264 +#: glib/gregex.c:264 msgid "missing ) after comment" msgstr "註解後缺少 )" -#: ../glib/gregex.c:267 +#: glib/gregex.c:267 msgid "regular expression too large" msgstr "正規表示式太長" -#: ../glib/gregex.c:270 +#: glib/gregex.c:270 msgid "failed to get memory" msgstr "取得記憶體失敗" -#: ../glib/gregex.c:273 +#: glib/gregex.c:273 msgid "lookbehind assertion is not fixed length" msgstr "lookbehind 判斷提示(assertion) 不是固定的長度" -#: ../glib/gregex.c:276 +#: glib/gregex.c:276 msgid "malformed number or name after (?(" msgstr "(?( 之後有格式不正確的數字或名稱" -#: ../glib/gregex.c:279 +#: glib/gregex.c:279 msgid "conditional group contains more than two branches" msgstr "條件式群組包含了兩個以上的分支" -#: ../glib/gregex.c:282 +#: glib/gregex.c:282 msgid "assertion expected after (?(" msgstr "(?( 後應該有判斷提示(assertion)" -#: ../glib/gregex.c:285 +#: glib/gregex.c:285 msgid "unknown POSIX class name" msgstr "未知的 POSIX 類別名稱" -#: ../glib/gregex.c:288 +#: glib/gregex.c:288 msgid "POSIX collating elements are not supported" msgstr "不支援 POSIX 整理元件" -#: ../glib/gregex.c:291 +#: glib/gregex.c:291 msgid "character value in \\x{...} sequence is too large" msgstr "\\x{...} 序列中的字元值太大" -#: ../glib/gregex.c:294 +#: glib/gregex.c:294 msgid "invalid condition (?(0)" msgstr "無效的條件 (?(0)" -#: ../glib/gregex.c:297 +#: glib/gregex.c:297 msgid "\\C not allowed in lookbehind assertion" msgstr "在 lookbehind 判斷提示(assertion) 中不支援\\C" -#: ../glib/gregex.c:300 +#: glib/gregex.c:300 msgid "recursive call could loop indefinitely" msgstr "遞廻呼叫可能變成無限廻圈" -#: ../glib/gregex.c:303 +#: glib/gregex.c:303 msgid "missing terminator in subpattern name" msgstr "子模式名稱中缺少結束字元" -#: ../glib/gregex.c:306 +#: glib/gregex.c:306 msgid "two named subpatterns have the same name" msgstr "兩個命名的子模式具有相同的名稱" -#: ../glib/gregex.c:309 +#: glib/gregex.c:309 msgid "malformed \\P or \\p sequence" msgstr "格式不正確的 \\P 或 \\p 序列" -#: ../glib/gregex.c:312 +#: glib/gregex.c:312 msgid "unknown property name after \\P or \\p" msgstr "在 \\P 或 \\p 後有未知的屬性名稱" -#: ../glib/gregex.c:315 +#: glib/gregex.c:315 msgid "subpattern name is too long (maximum 32 characters)" msgstr "子模式名稱太長(最多 32 字元)" -#: ../glib/gregex.c:318 +#: glib/gregex.c:318 msgid "too many named subpatterns (maximum 10,000)" msgstr "太多命名的子模式(最大值 10,000)" -#: ../glib/gregex.c:321 +#: glib/gregex.c:321 msgid "octal value is greater than \\377" msgstr "8 進位值大於 \\377" -#: ../glib/gregex.c:324 +#: glib/gregex.c:324 msgid "DEFINE group contains more than one branch" msgstr "DEFINE 群組包含一個以上的分支" -#: ../glib/gregex.c:327 +#: glib/gregex.c:327 msgid "repeating a DEFINE group is not allowed" msgstr "不允許重複 DEFINE 群組" -#: ../glib/gregex.c:330 +#: glib/gregex.c:330 msgid "inconsistent NEWLINE options" msgstr "不一致的 NEWLINE 選項" -#: ../glib/gregex.c:333 +#: glib/gregex.c:333 msgid "" "\\g is not followed by a braced name or an optionally braced non-zero number" msgstr "\\g 並未隨著具有大括弧的名稱或選用的具大括弧的非零數值" -#: ../glib/gregex.c:338 +#: glib/gregex.c:338 msgid "unexpected repeat" msgstr "未預期的重複" -#: ../glib/gregex.c:342 +#: glib/gregex.c:342 msgid "code overflow" msgstr "程式碼溢流" -#: ../glib/gregex.c:346 +#: glib/gregex.c:346 msgid "overran compiling workspace" msgstr "編譯工作區超出範圍" -#: ../glib/gregex.c:350 +#: glib/gregex.c:350 msgid "previously-checked referenced subpattern not found" msgstr "找不到預先核取的參照子字串" -#: ../glib/gregex.c:522 ../glib/gregex.c:1603 +#: glib/gregex.c:522 glib/gregex.c:1603 #, c-format msgid "Error while matching regular expression %s: %s" msgstr "比對正規表示式 %s 發生錯誤:%s" -#: ../glib/gregex.c:1094 +#: glib/gregex.c:1094 msgid "PCRE library is compiled without UTF8 support" msgstr "PCRE 程式庫並未編譯對 UTF8 的支援" -#: ../glib/gregex.c:1103 +#: glib/gregex.c:1103 msgid "PCRE library is compiled without UTF8 properties support" msgstr "PCRE 程式庫並未編譯對 UTF8 屬性的支援" -#: ../glib/gregex.c:1157 +#: glib/gregex.c:1157 #, c-format msgid "Error while compiling regular expression %s at char %d: %s" msgstr "編譯正規表示式 %s 時於第 %d 個字發生錯誤:%s" -#: ../glib/gregex.c:1193 +#: glib/gregex.c:1193 #, c-format msgid "Error while optimizing regular expression %s: %s" msgstr "最佳化正規表示式 %s 時發生錯誤:%s" -#: ../glib/gregex.c:2031 +#: glib/gregex.c:2031 msgid "hexadecimal digit or '}' expected" msgstr "應為 16 進位數字或「}」" -#: ../glib/gregex.c:2047 +#: glib/gregex.c:2047 msgid "hexadecimal digit expected" msgstr "應為 16 進位數字" -#: ../glib/gregex.c:2087 +#: glib/gregex.c:2087 msgid "missing '<' in symbolic reference" msgstr "在符號參照中缺少「<」" -#: ../glib/gregex.c:2096 +#: glib/gregex.c:2096 msgid "unfinished symbolic reference" msgstr "未完成的符號參照" -#: ../glib/gregex.c:2103 +#: glib/gregex.c:2103 msgid "zero-length symbolic reference" msgstr "零-長度的符號參照" -#: ../glib/gregex.c:2114 +#: glib/gregex.c:2114 msgid "digit expected" msgstr "預期數字" -#: ../glib/gregex.c:2132 +#: glib/gregex.c:2132 msgid "illegal symbolic reference" msgstr "不合法的符號參照" -#: ../glib/gregex.c:2194 +#: glib/gregex.c:2194 msgid "stray final '\\'" msgstr "缺少最後的「\\」" -#: ../glib/gregex.c:2198 +#: glib/gregex.c:2198 msgid "unknown escape sequence" msgstr "不明的跳脫序列" -#: ../glib/gregex.c:2208 +#: glib/gregex.c:2208 #, c-format msgid "Error while parsing replacement text \"%s\" at char %lu: %s" msgstr "當分析於字元 %2$lu 的取代文字「%1$s」時發生錯誤:%3$s" -#: ../glib/gshell.c:92 +#: glib/gshell.c:92 msgid "Quoted text doesn't begin with a quotation mark" msgstr "應該用引號括起來的文字不是以括號為開始" -#: ../glib/gshell.c:182 +#: glib/gshell.c:182 msgid "Unmatched quotation mark in command line or other shell-quoted text" msgstr "指令列或其它標為指令的字串內有不對稱的引號" -#: ../glib/gshell.c:560 +#: glib/gshell.c:560 #, c-format msgid "Text ended just after a '\\' character. (The text was '%s')" msgstr "文字在‘\\’字元後就終止了。(文字為‘%s’)" -#: ../glib/gshell.c:567 +#: glib/gshell.c:567 #, c-format msgid "Text ended before matching quote was found for %c. (The text was '%s')" msgstr "字串完結前仍沒有對應於 %c 的引號(字串為‘%s’)" -#: ../glib/gshell.c:579 +#: glib/gshell.c:579 msgid "Text was empty (or contained only whitespace)" msgstr "文字是空白的(或只含有空白字元)" -#: ../glib/gspawn-win32.c:283 +#: glib/gspawn-win32.c:283 msgid "Failed to read data from child process" msgstr "無法從副進程讀取資料" -#: ../glib/gspawn-win32.c:300 ../glib/gspawn.c:1480 +#: glib/gspawn-win32.c:300 glib/gspawn.c:1480 #, c-format msgid "Failed to create pipe for communicating with child process (%s)" msgstr "無法建立管道來和副進程溝通 (%s)" -#: ../glib/gspawn-win32.c:339 ../glib/gspawn-win32.c:347 ../glib/gspawn.c:1139 +#: glib/gspawn-win32.c:339 glib/gspawn-win32.c:347 glib/gspawn.c:1139 #, c-format msgid "Failed to read from child pipe (%s)" msgstr "無法從管道讀取資料 (%s)" -#: ../glib/gspawn-win32.c:370 ../glib/gspawn.c:1346 +#: glib/gspawn-win32.c:370 glib/gspawn.c:1346 #, c-format msgid "Failed to change to directory '%s' (%s)" msgstr "無法進入目錄‘%s’(%s)" -#: ../glib/gspawn-win32.c:376 ../glib/gspawn-win32.c:495 +#: glib/gspawn-win32.c:376 glib/gspawn-win32.c:495 #, c-format msgid "Failed to execute child process (%s)" msgstr "無法執行副進程 (%s)" -#: ../glib/gspawn-win32.c:445 +#: glib/gspawn-win32.c:445 #, c-format msgid "Invalid program name: %s" msgstr "程式名稱無效:%s" -#: ../glib/gspawn-win32.c:455 ../glib/gspawn-win32.c:723 -#: ../glib/gspawn-win32.c:1279 +#: glib/gspawn-win32.c:455 glib/gspawn-win32.c:723 glib/gspawn-win32.c:1279 #, c-format msgid "Invalid string in argument vector at %d: %s" msgstr "第 %d 個引數中含無效的字串:%s" -#: ../glib/gspawn-win32.c:466 ../glib/gspawn-win32.c:738 -#: ../glib/gspawn-win32.c:1312 +#: glib/gspawn-win32.c:466 glib/gspawn-win32.c:738 glib/gspawn-win32.c:1312 #, c-format msgid "Invalid string in environment: %s" msgstr "環境變數中的字串無效:%s" -#: ../glib/gspawn-win32.c:719 ../glib/gspawn-win32.c:1260 +#: glib/gspawn-win32.c:719 glib/gspawn-win32.c:1260 #, c-format msgid "Invalid working directory: %s" msgstr "無效的工作目錄:%s" -#: ../glib/gspawn-win32.c:784 +#: glib/gspawn-win32.c:784 #, c-format msgid "Failed to execute helper program (%s)" msgstr "無法執行協助程式 (%s)" -#: ../glib/gspawn-win32.c:998 +#: glib/gspawn-win32.c:998 msgid "" "Unexpected error in g_io_channel_win32_poll() reading data from a child " "process" msgstr "當 g_io_channel_win32_poll() 從副進程讀取資料時發生無法預計的錯誤" -#: ../glib/gspawn.c:190 +#: glib/gspawn.c:190 #, c-format msgid "Failed to read data from child process (%s)" msgstr "無法從副進程讀取資料 (%s)" -#: ../glib/gspawn.c:329 +#: glib/gspawn.c:329 #, c-format msgid "Unexpected error in select() reading data from a child process (%s)" msgstr "當 select() 從子程序讀取資料時發生未預期的錯誤 (%s)" -#: ../glib/gspawn.c:414 +#: glib/gspawn.c:414 #, c-format msgid "Unexpected error in waitpid() (%s)" msgstr "waitpid() 發生未預期的錯誤 (%s)" -#: ../glib/gspawn.c:1206 +#: glib/gspawn.c:1206 #, c-format msgid "Failed to fork (%s)" msgstr "無法衍生進程 (%s)" -#: ../glib/gspawn.c:1356 +#: glib/gspawn.c:1356 #, c-format msgid "Failed to execute child process \"%s\" (%s)" msgstr "無法執行副進程“%s”(%s)" -#: ../glib/gspawn.c:1366 +#: glib/gspawn.c:1366 #, c-format msgid "Failed to redirect output or input of child process (%s)" msgstr "無法將副進程的輸出或輸入重新導向 (%s)" -#: ../glib/gspawn.c:1375 +#: glib/gspawn.c:1375 #, c-format msgid "Failed to fork child process (%s)" msgstr "無法衍生副進程 (%s)" -#: ../glib/gspawn.c:1383 +#: glib/gspawn.c:1383 #, c-format msgid "Unknown error executing child process \"%s\"" msgstr "執行副進程“%s”時發生不明的錯誤" -#: ../glib/gspawn.c:1407 +#: glib/gspawn.c:1407 #, c-format msgid "Failed to read enough data from child pid pipe (%s)" msgstr "無法從 child pid pipe 讀取足夠的資料 (%s)" -#: ../glib/gutf8.c:1055 +#: glib/gutf8.c:1055 msgid "Character out of range for UTF-8" msgstr "字元不在 UTF-8 範圍之內" -#: ../glib/gutf8.c:1155 ../glib/gutf8.c:1164 ../glib/gutf8.c:1296 -#: ../glib/gutf8.c:1305 ../glib/gutf8.c:1446 ../glib/gutf8.c:1542 +#: glib/gutf8.c:1155 glib/gutf8.c:1164 glib/gutf8.c:1296 glib/gutf8.c:1305 +#: glib/gutf8.c:1446 glib/gutf8.c:1542 msgid "Invalid sequence in conversion input" msgstr "轉換輸入資料時出現無效的字元次序" -#: ../glib/gutf8.c:1457 ../glib/gutf8.c:1553 +#: glib/gutf8.c:1457 glib/gutf8.c:1553 msgid "Character out of range for UTF-16" msgstr "字元不在 UTF-16 範圍之內" -#: ../glib/goption.c:755 +#: glib/goption.c:755 msgid "Usage:" msgstr "用法:" -#: ../glib/goption.c:755 +#: glib/goption.c:755 msgid "[OPTION...]" msgstr "[選項...]" -#: ../glib/goption.c:861 +#: glib/goption.c:861 msgid "Help Options:" msgstr "說明選項:" -#: ../glib/goption.c:862 +#: glib/goption.c:862 msgid "Show help options" msgstr "顯示說明的選項" -#: ../glib/goption.c:868 +#: glib/goption.c:868 msgid "Show all help options" msgstr "顯示所有的說明選項" -#: ../glib/goption.c:930 +#: glib/goption.c:930 msgid "Application Options:" msgstr "應用程式選項:" -#: ../glib/goption.c:992 ../glib/goption.c:1062 +#: glib/goption.c:992 glib/goption.c:1062 #, c-format msgid "Cannot parse integer value '%s' for %s" msgstr "無法給 %2$s 解析整數值‘%1$s’" -#: ../glib/goption.c:1002 ../glib/goption.c:1070 +#: glib/goption.c:1002 glib/goption.c:1070 #, c-format msgid "Integer value '%s' for %s out of range" msgstr "%2$s 的整數值‘%1$s’超出範圍" -#: ../glib/goption.c:1027 +#: glib/goption.c:1027 #, c-format msgid "Cannot parse double value '%s' for %s" msgstr "無法給 %2$s 解析雙精度浮點數‘%1$s’" -#: ../glib/goption.c:1035 +#: glib/goption.c:1035 #, c-format msgid "Double value '%s' for %s out of range" msgstr "%2$s 的雙精度浮點數‘%1$s’超出範圍" -#: ../glib/goption.c:1298 ../glib/goption.c:1377 +#: glib/goption.c:1298 glib/goption.c:1377 #, c-format msgid "Error parsing option %s" msgstr "解析 %s 選項時發生錯誤" -#: ../glib/goption.c:1408 ../glib/goption.c:1522 +#: glib/goption.c:1408 glib/goption.c:1522 #, c-format msgid "Missing argument for %s" msgstr "缺少 %s 的參數" -#: ../glib/goption.c:1917 +#: glib/goption.c:1917 #, c-format msgid "Unknown option %s" msgstr "未知的選項 %s" -#: ../glib/gkeyfile.c:361 +#: glib/gkeyfile.c:361 msgid "Valid key file could not be found in search dirs" msgstr "在資料目錄中找不到有效的設定鍵檔案" -#: ../glib/gkeyfile.c:396 +#: glib/gkeyfile.c:396 msgid "Not a regular file" msgstr "不是正規的檔案" -#: ../glib/gkeyfile.c:404 +#: glib/gkeyfile.c:404 msgid "File is empty" msgstr "檔案是空白的" -#: ../glib/gkeyfile.c:763 +#: glib/gkeyfile.c:763 #, c-format msgid "" "Key file contains line '%s' which is not a key-value pair, group, or comment" msgstr "設定鍵檔案中‘%s’行並非設定鍵值配對、群組或註解" -#: ../glib/gkeyfile.c:823 +#: glib/gkeyfile.c:823 #, c-format msgid "Invalid group name: %s" msgstr "無效的群組名稱:%s" -#: ../glib/gkeyfile.c:845 +#: glib/gkeyfile.c:845 msgid "Key file does not start with a group" msgstr "設定鍵檔案並非以群組開頭" -#: ../glib/gkeyfile.c:871 +#: glib/gkeyfile.c:871 #, c-format msgid "Invalid key name: %s" msgstr "無效的設定鍵名稱:%s" -#: ../glib/gkeyfile.c:898 +#: glib/gkeyfile.c:898 #, c-format msgid "Key file contains unsupported encoding '%s'" msgstr "設定鍵檔案包含不支援的編碼‘%s’" -#: ../glib/gkeyfile.c:1114 ../glib/gkeyfile.c:1276 ../glib/gkeyfile.c:2505 -#: ../glib/gkeyfile.c:2571 ../glib/gkeyfile.c:2706 ../glib/gkeyfile.c:2839 -#: ../glib/gkeyfile.c:2992 ../glib/gkeyfile.c:3179 ../glib/gkeyfile.c:3240 +#: glib/gkeyfile.c:1114 glib/gkeyfile.c:1276 glib/gkeyfile.c:2505 +#: glib/gkeyfile.c:2571 glib/gkeyfile.c:2706 glib/gkeyfile.c:2839 +#: glib/gkeyfile.c:2992 glib/gkeyfile.c:3179 glib/gkeyfile.c:3240 #, c-format msgid "Key file does not have group '%s'" msgstr "設定鍵檔案沒有群組‘%s’" -#: ../glib/gkeyfile.c:1288 +#: glib/gkeyfile.c:1288 #, c-format msgid "Key file does not have key '%s'" msgstr "設定鍵檔案沒有設定鍵‘%s’" -#: ../glib/gkeyfile.c:1395 ../glib/gkeyfile.c:1510 +#: glib/gkeyfile.c:1395 glib/gkeyfile.c:1510 #, c-format msgid "Key file contains key '%s' with value '%s' which is not UTF-8" msgstr "設定鍵檔案包含的設定鍵‘%s’(數值為‘%s’)並非 UTF-8" -#: ../glib/gkeyfile.c:1415 ../glib/gkeyfile.c:1909 +#: glib/gkeyfile.c:1415 glib/gkeyfile.c:1909 #, c-format msgid "Key file contains key '%s' which has value that cannot be interpreted." msgstr "設定鍵檔案包含的設定鍵‘%s’的數值無法解譯。" -#: ../glib/gkeyfile.c:1530 +#: glib/gkeyfile.c:1530 #, c-format msgid "" "Key file contains key '%s' which has a value that cannot be interpreted." msgstr "設定鍵檔案包含的設定鍵「%s」的數值無法解譯。" -#: ../glib/gkeyfile.c:2124 ../glib/gkeyfile.c:2336 +#: glib/gkeyfile.c:2124 glib/gkeyfile.c:2336 #, c-format msgid "" "Key file contains key '%s' in group '%s' which has value that cannot be " "interpreted." msgstr "設定鍵檔案包含的群組‘%2$s’中設定鍵‘%1$s’數值無法解譯" -#: ../glib/gkeyfile.c:2520 ../glib/gkeyfile.c:2721 ../glib/gkeyfile.c:3251 +#: glib/gkeyfile.c:2520 glib/gkeyfile.c:2721 glib/gkeyfile.c:3251 #, c-format msgid "Key file does not have key '%s' in group '%s'" msgstr "設定鍵檔案的群組‘%2$s’中沒有設定鍵‘%1$s’" -#: ../glib/gkeyfile.c:3485 +#: glib/gkeyfile.c:3485 msgid "Key file contains escape character at end of line" msgstr "設定鍵檔案在行尾包含跳出字元" -#: ../glib/gkeyfile.c:3507 +#: glib/gkeyfile.c:3507 #, c-format msgid "Key file contains invalid escape sequence '%s'" msgstr "設定鍵檔案含有不正確的「跳出字元」‘%s’" -#: ../glib/gkeyfile.c:3649 +#: glib/gkeyfile.c:3649 #, c-format msgid "Value '%s' cannot be interpreted as a number." msgstr "數值‘%s’不能被解譯為數字。" -#: ../glib/gkeyfile.c:3663 +#: glib/gkeyfile.c:3663 #, c-format msgid "Integer value '%s' out of range" msgstr "整數值‘%s’超出範圍" -#: ../glib/gkeyfile.c:3696 +#: glib/gkeyfile.c:3696 #, c-format msgid "Value '%s' cannot be interpreted as a float number." msgstr "數值‘%s’不能被解譯為浮點數。" -#: ../glib/gkeyfile.c:3720 +#: glib/gkeyfile.c:3720 #, c-format msgid "Value '%s' cannot be interpreted as a boolean." msgstr "數值‘%s’不能被解譯為邏輯值。" -#: ../gio/gbufferedinputstream.c:415 ../gio/gbufferedinputstream.c:496 -#: ../gio/ginputstream.c:186 ../gio/ginputstream.c:318 -#: ../gio/ginputstream.c:557 ../gio/ginputstream.c:682 -#: ../gio/goutputstream.c:198 ../gio/goutputstream.c:657 +#: gio/gbufferedinputstream.c:415 gio/gbufferedinputstream.c:496 +#: gio/ginputstream.c:186 gio/ginputstream.c:318 gio/ginputstream.c:557 +#: gio/ginputstream.c:682 gio/goutputstream.c:198 gio/goutputstream.c:657 #, c-format msgid "Too large count value passed to %s" msgstr "傳給 %s 的計數值太大" -#: ../gio/gbufferedinputstream.c:883 ../gio/ginputstream.c:892 -#: ../gio/giostream.c:305 ../gio/goutputstream.c:1108 +#: gio/gbufferedinputstream.c:883 gio/ginputstream.c:892 gio/giostream.c:305 +#: gio/goutputstream.c:1108 msgid "Stream is already closed" msgstr "串流已經關閉" -#: ../gio/gcancellable.c:433 ../gio/glocalfile.c:2108 -#: ../gio/gsimpleasyncresult.c:651 ../gio/gsimpleasyncresult.c:677 +#: gio/gcancellable.c:433 gio/glocalfile.c:2108 gio/gsimpleasyncresult.c:651 +#: gio/gsimpleasyncresult.c:677 msgid "Operation was cancelled" msgstr "操作已被取消" -#: ../gio/gcharsetconverter.c:264 +#: gio/gcharsetconverter.c:264 msgid "Invalid object, not initialized" msgstr "無效的物件,尚未初始化" -#: ../gio/gcharsetconverter.c:285 ../gio/gcharsetconverter.c:313 +#: gio/gcharsetconverter.c:285 gio/gcharsetconverter.c:313 msgid "Incomplete multibyte sequence in input" msgstr "在輸入中出現不完整的多位元組次序" -#: ../gio/gcharsetconverter.c:319 ../gio/gcharsetconverter.c:328 +#: gio/gcharsetconverter.c:319 gio/gcharsetconverter.c:328 msgid "Not enough space in destination" msgstr "在目的端中沒有足夠的空間" -#: ../gio/gcharsetconverter.c:448 ../gio/gsocket.c:772 +#: gio/gcharsetconverter.c:448 gio/gsocket.c:772 msgid "Cancellable initialization not supported" msgstr "不支援可取消的初始化" -#: ../gio/gcontenttype.c:180 +#: gio/gcontenttype.c:180 msgid "Unknown type" msgstr "不明的類型" -#: ../gio/gcontenttype.c:181 +#: gio/gcontenttype.c:181 #, c-format msgid "%s filetype" msgstr "%s 檔案類型" -#: ../gio/gcontenttype.c:681 +#: gio/gcontenttype.c:681 #, c-format msgid "%s type" msgstr "%s 類型" -#: ../gio/gdatainputstream.c:311 +#: gio/gdatainputstream.c:311 msgid "Unexpected early end-of-stream" msgstr "未預期的串流過早結束" -#: ../gio/gdesktopappinfo.c:468 ../gio/gwin32appinfo.c:222 +#: gio/gdesktopappinfo.c:468 gio/gwin32appinfo.c:222 msgid "Unnamed" msgstr "未命名的" -#: ../gio/gdesktopappinfo.c:742 +#: gio/gdesktopappinfo.c:742 msgid "Desktop file didn't specify Exec field" msgstr "桌面(Desktop)檔案未指定 Exec 欄位" -#: ../gio/gdesktopappinfo.c:924 +#: gio/gdesktopappinfo.c:924 msgid "Unable to find terminal required for application" msgstr "無法找到應用程式要求的終端機" -#: ../gio/gdesktopappinfo.c:1132 +#: gio/gdesktopappinfo.c:1132 #, c-format msgid "Can't create user application configuration folder %s: %s" msgstr "不能建立使用者應用程式組態資料夾 %s:%s" -#: ../gio/gdesktopappinfo.c:1136 +#: gio/gdesktopappinfo.c:1136 #, c-format msgid "Can't create user MIME configuration folder %s: %s" msgstr "不能建立使用者 MIME 組態資料夾 %s:%s" -#: ../gio/gdesktopappinfo.c:1544 +#: gio/gdesktopappinfo.c:1544 #, c-format msgid "Can't create user desktop file %s" msgstr "不能建立使用者桌面檔案 %s" -#: ../gio/gdesktopappinfo.c:1658 +#: gio/gdesktopappinfo.c:1658 #, c-format msgid "Custom definition for %s" msgstr "自訂 %s 的定義" -#: ../gio/gdrive.c:364 +#: gio/gdrive.c:364 msgid "drive doesn't implement eject" msgstr "裝置無法實作退出功能(eject)" #. Translators: This is an error #. * message for drive objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gdrive.c:444 +#: gio/gdrive.c:444 msgid "drive doesn't implement eject or eject_with_operation" msgstr "裝置無法實作退出功能(eject) 或 eject_with_operation" -#: ../gio/gdrive.c:521 +#: gio/gdrive.c:521 msgid "drive doesn't implement polling for media" msgstr "裝置無法實作媒體的輪詢" -#: ../gio/gdrive.c:726 +#: gio/gdrive.c:726 msgid "drive doesn't implement start" msgstr "裝置無法實作啟動功能(start)" -#: ../gio/gdrive.c:828 +#: gio/gdrive.c:828 msgid "drive doesn't implement stop" msgstr "裝置無法實作停止功能(stop)" -#: ../gio/gemblem.c:325 +#: gio/gemblem.c:325 #, c-format msgid "Can't handle version %d of GEmblem encoding" msgstr "不能處理版本為 %d 的 GEmblem 編碼" -#: ../gio/gemblem.c:335 +#: gio/gemblem.c:335 #, c-format msgid "Malformed number of tokens (%d) in GEmblem encoding" msgstr "GEmblem 編碼中記號 (%d) 的數量格式不正確" -#: ../gio/gemblemedicon.c:296 +#: gio/gemblemedicon.c:296 #, c-format msgid "Can't handle version %d of GEmblemedIcon encoding" msgstr "不能處理版本為 %d 的 GEmblemedIcon 編碼" -#: ../gio/gemblemedicon.c:306 +#: gio/gemblemedicon.c:306 #, c-format msgid "Malformed number of tokens (%d) in GEmblemedIcon encoding" msgstr "GEmblemedIcon 編碼中記號 (%d) 的數量格式不正確" -#: ../gio/gemblemedicon.c:329 +#: gio/gemblemedicon.c:329 msgid "Expected a GEmblem for GEmblemedIcon" msgstr "預期為 GEmblemedIcon 的 GEmblem" -#: ../gio/gfile.c:871 ../gio/gfile.c:1101 ../gio/gfile.c:1236 -#: ../gio/gfile.c:1472 ../gio/gfile.c:1526 ../gio/gfile.c:1583 -#: ../gio/gfile.c:1666 ../gio/gfile.c:1721 ../gio/gfile.c:1781 -#: ../gio/gfile.c:1835 ../gio/gfile.c:3304 ../gio/gfile.c:3358 -#: ../gio/gfile.c:3489 ../gio/gfile.c:3529 ../gio/gfile.c:3856 -#: ../gio/gfile.c:4258 ../gio/gfile.c:4344 ../gio/gfile.c:4433 -#: ../gio/gfile.c:4531 ../gio/gfile.c:4618 ../gio/gfile.c:4711 -#: ../gio/gfile.c:5041 ../gio/gfile.c:5321 ../gio/gfile.c:5390 -#: ../gio/gfile.c:6981 ../gio/gfile.c:7071 ../gio/gfile.c:7157 -#: ../gio/win32/gwinhttpfile.c:441 +#: gio/gfile.c:871 gio/gfile.c:1101 gio/gfile.c:1236 gio/gfile.c:1472 +#: gio/gfile.c:1526 gio/gfile.c:1583 gio/gfile.c:1666 gio/gfile.c:1721 +#: gio/gfile.c:1781 gio/gfile.c:1835 gio/gfile.c:3304 gio/gfile.c:3358 +#: gio/gfile.c:3489 gio/gfile.c:3529 gio/gfile.c:3856 gio/gfile.c:4258 +#: gio/gfile.c:4344 gio/gfile.c:4433 gio/gfile.c:4531 gio/gfile.c:4618 +#: gio/gfile.c:4711 gio/gfile.c:5041 gio/gfile.c:5321 gio/gfile.c:5390 +#: gio/gfile.c:6981 gio/gfile.c:7071 gio/gfile.c:7157 +#: gio/win32/gwinhttpfile.c:441 msgid "Operation not supported" msgstr "不支援的操作" @@ -1257,137 +1250,137 @@ msgstr "不支援的操作" #. Translators: This is an error message when trying to find #. * the enclosing (user visible) mount of a file, but none #. * exists. -#: ../gio/gfile.c:1357 ../gio/glocalfile.c:1065 ../gio/glocalfile.c:1076 -#: ../gio/glocalfile.c:1089 +#: gio/gfile.c:1357 gio/glocalfile.c:1065 gio/glocalfile.c:1076 +#: gio/glocalfile.c:1089 msgid "Containing mount does not exist" msgstr "包含了不存在的掛載點" -#: ../gio/gfile.c:2409 ../gio/glocalfile.c:2264 +#: gio/gfile.c:2409 gio/glocalfile.c:2264 msgid "Can't copy over directory" msgstr "不能複製整個目錄" -#: ../gio/gfile.c:2469 +#: gio/gfile.c:2469 msgid "Can't copy directory over directory" msgstr "不能將目錄複製到目錄上" -#: ../gio/gfile.c:2477 ../gio/glocalfile.c:2273 +#: gio/gfile.c:2477 gio/glocalfile.c:2273 msgid "Target file exists" msgstr "目標檔案已存在" -#: ../gio/gfile.c:2495 +#: gio/gfile.c:2495 msgid "Can't recursively copy directory" msgstr "不能遞廻複製目錄" -#: ../gio/gfile.c:2755 +#: gio/gfile.c:2755 msgid "Splice not supported" msgstr "不支援拼接" -#: ../gio/gfile.c:2759 +#: gio/gfile.c:2759 #, c-format msgid "Error splicing file: %s" msgstr "拼接檔案時發生錯誤:%s" -#: ../gio/gfile.c:2906 +#: gio/gfile.c:2906 msgid "Can't copy special file" msgstr "不能複製特殊的檔案" -#: ../gio/gfile.c:3479 +#: gio/gfile.c:3479 msgid "Invalid symlink value given" msgstr "提供了無效的符號連結值" -#: ../gio/gfile.c:3572 +#: gio/gfile.c:3572 msgid "Trash not supported" msgstr "不支援回收筒" -#: ../gio/gfile.c:3621 +#: gio/gfile.c:3621 #, c-format msgid "File names cannot contain '%c'" msgstr "檔案名稱不能包含「%c」" -#: ../gio/gfile.c:6038 ../gio/gvolume.c:331 +#: gio/gfile.c:6038 gio/gvolume.c:331 msgid "volume doesn't implement mount" msgstr "儲存區尚未實作掛載功能" -#: ../gio/gfile.c:6149 +#: gio/gfile.c:6149 msgid "No application is registered as handling this file" msgstr "沒有應用程式註冊為用以處理這個檔案" -#: ../gio/gfileenumerator.c:206 +#: gio/gfileenumerator.c:206 msgid "Enumerator is closed" msgstr "檔案列舉器(enumerator)已關閉" -#: ../gio/gfileenumerator.c:213 ../gio/gfileenumerator.c:272 -#: ../gio/gfileenumerator.c:372 ../gio/gfileenumerator.c:481 +#: gio/gfileenumerator.c:213 gio/gfileenumerator.c:272 +#: gio/gfileenumerator.c:372 gio/gfileenumerator.c:481 msgid "File enumerator has outstanding operation" msgstr "檔案列舉器(enumerator)有異常操作" -#: ../gio/gfileenumerator.c:362 ../gio/gfileenumerator.c:471 +#: gio/gfileenumerator.c:362 gio/gfileenumerator.c:471 msgid "File enumerator is already closed" msgstr "檔案列舉器(enumerator)已經關閉" -#: ../gio/gfileicon.c:237 +#: gio/gfileicon.c:237 #, c-format msgid "Can't handle version %d of GFileIcon encoding" msgstr "不能處理版本為 %d 的 GFileIcon 編碼" -#: ../gio/gfileicon.c:247 +#: gio/gfileicon.c:247 msgid "Malformed input data for GFileIcon" msgstr "給 GFileIcon 的輸入資料格式不良" -#: ../gio/gfileinputstream.c:155 ../gio/gfileinputstream.c:422 -#: ../gio/gfileiostream.c:171 ../gio/gfileoutputstream.c:170 -#: ../gio/gfileoutputstream.c:525 +#: gio/gfileinputstream.c:155 gio/gfileinputstream.c:422 +#: gio/gfileiostream.c:171 gio/gfileoutputstream.c:170 +#: gio/gfileoutputstream.c:525 msgid "Stream doesn't support query_info" msgstr "串流不支援 query_info" -#: ../gio/gfileinputstream.c:337 ../gio/gfileiostream.c:389 -#: ../gio/gfileoutputstream.c:383 +#: gio/gfileinputstream.c:337 gio/gfileiostream.c:389 +#: gio/gfileoutputstream.c:383 msgid "Seek not supported on stream" msgstr "不支援在串流中搜尋" -#: ../gio/gfileinputstream.c:381 +#: gio/gfileinputstream.c:381 msgid "Truncate not allowed on input stream" msgstr "在輸入串流中不允許截短(truncate)" -#: ../gio/gfileiostream.c:465 ../gio/gfileoutputstream.c:459 +#: gio/gfileiostream.c:465 gio/gfileoutputstream.c:459 msgid "Truncate not supported on stream" msgstr "在串流中不支援截短(truncate)" -#: ../gio/gicon.c:286 +#: gio/gicon.c:286 #, c-format msgid "Wrong number of tokens (%d)" msgstr "記號數量 (%d) 錯誤" -#: ../gio/gicon.c:306 +#: gio/gicon.c:306 #, c-format msgid "No type for class name %s" msgstr "類別名稱 %s 沒有類型" -#: ../gio/gicon.c:316 +#: gio/gicon.c:316 #, c-format msgid "Type %s does not implement the GIcon interface" msgstr "類型 %s 沒有實作 GIcon 介面" -#: ../gio/gicon.c:327 +#: gio/gicon.c:327 #, c-format msgid "Type %s is not classed" msgstr "類型 %s 尚未歸類" -#: ../gio/gicon.c:341 +#: gio/gicon.c:341 #, c-format msgid "Malformed version number: %s" msgstr "格式不良的版本號碼:%s" -#: ../gio/gicon.c:355 +#: gio/gicon.c:355 #, c-format msgid "Type %s does not implement from_tokens() on the GIcon interface" msgstr "類型 %s 沒有實作 GIcon 介面的 from_tokens()" -#: ../gio/gicon.c:431 +#: gio/gicon.c:431 msgid "Can't handle the supplied version the icon encoding" msgstr "不能處理提供的圖示編碼版本" -#: ../gio/ginputstream.c:195 +#: gio/ginputstream.c:195 msgid "Input stream doesn't implement read" msgstr "輸入串流尚未實作讀取" @@ -1397,633 +1390,632 @@ msgstr "輸入串流尚未實作讀取" #. Translators: This is an error you get if there is #. * already an operation running against this stream when #. * you try to start one -#: ../gio/ginputstream.c:902 ../gio/giostream.c:315 -#: ../gio/goutputstream.c:1118 +#: gio/ginputstream.c:902 gio/giostream.c:315 gio/goutputstream.c:1118 msgid "Stream has outstanding operation" msgstr "串流有異常操作" -#: ../gio/ginetsocketaddress.c:182 ../gio/ginetsocketaddress.c:199 -#: ../gio/gunixsocketaddress.c:174 +#: gio/ginetsocketaddress.c:182 gio/ginetsocketaddress.c:199 +#: gio/gunixsocketaddress.c:174 msgid "Not enough space for socket address" msgstr "socket 位址沒有足夠的空間" -#: ../gio/ginetsocketaddress.c:212 +#: gio/ginetsocketaddress.c:212 msgid "Unsupported socket address" msgstr "不支援的 socket 位址" -#: ../gio/glocaldirectorymonitor.c:288 +#: gio/glocaldirectorymonitor.c:288 msgid "Unable to find default local directory monitor type" msgstr "無法找到預設的本地端目錄監視器類型" -#: ../gio/glocalfile.c:599 ../gio/win32/gwinhttpfile.c:424 +#: gio/glocalfile.c:599 gio/win32/gwinhttpfile.c:424 #, c-format msgid "Invalid filename %s" msgstr "無效的檔案名稱 %s" -#: ../gio/glocalfile.c:973 +#: gio/glocalfile.c:973 #, c-format msgid "Error getting filesystem info: %s" msgstr "取得檔案系統資訊時發生錯誤:%s" -#: ../gio/glocalfile.c:1111 +#: gio/glocalfile.c:1111 msgid "Can't rename root directory" msgstr "不能重新命名根目錄" -#: ../gio/glocalfile.c:1131 ../gio/glocalfile.c:1157 +#: gio/glocalfile.c:1131 gio/glocalfile.c:1157 #, c-format msgid "Error renaming file: %s" msgstr "重新命名檔案時發生錯誤:%s" -#: ../gio/glocalfile.c:1140 +#: gio/glocalfile.c:1140 msgid "Can't rename file, filename already exist" msgstr "不能重新命名檔案,該檔案名稱已存在" -#: ../gio/glocalfile.c:1153 ../gio/glocalfile.c:2137 ../gio/glocalfile.c:2166 -#: ../gio/glocalfile.c:2326 ../gio/glocalfileoutputstream.c:557 -#: ../gio/glocalfileoutputstream.c:610 ../gio/glocalfileoutputstream.c:655 -#: ../gio/glocalfileoutputstream.c:1137 +#: gio/glocalfile.c:1153 gio/glocalfile.c:2137 gio/glocalfile.c:2166 +#: gio/glocalfile.c:2326 gio/glocalfileoutputstream.c:557 +#: gio/glocalfileoutputstream.c:610 gio/glocalfileoutputstream.c:655 +#: gio/glocalfileoutputstream.c:1137 msgid "Invalid filename" msgstr "無效的檔案名稱" -#: ../gio/glocalfile.c:1314 +#: gio/glocalfile.c:1314 #, c-format msgid "Error opening file: %s" msgstr "開啓檔案時發生錯誤:%s" -#: ../gio/glocalfile.c:1324 +#: gio/glocalfile.c:1324 msgid "Can't open directory" msgstr "不能開啟目錄" -#: ../gio/glocalfile.c:1449 +#: gio/glocalfile.c:1449 #, c-format msgid "Error removing file: %s" msgstr "移除檔案時發生錯誤:%s" -#: ../gio/glocalfile.c:1816 +#: gio/glocalfile.c:1816 #, c-format msgid "Error trashing file: %s" msgstr "移動檔案至回收筒時發生錯誤:%s" -#: ../gio/glocalfile.c:1839 +#: gio/glocalfile.c:1839 #, c-format msgid "Unable to create trash dir %s: %s" msgstr "無法建立回收筒目錄 %s:%s" -#: ../gio/glocalfile.c:1860 +#: gio/glocalfile.c:1860 msgid "Unable to find toplevel directory for trash" msgstr "無法找到回收筒的頂端層級目錄" -#: ../gio/glocalfile.c:1939 ../gio/glocalfile.c:1959 +#: gio/glocalfile.c:1939 gio/glocalfile.c:1959 msgid "Unable to find or create trash directory" msgstr "無法找到或建立回收筒目錄" -#: ../gio/glocalfile.c:1993 +#: gio/glocalfile.c:1993 #, c-format msgid "Unable to create trashing info file: %s" msgstr "無法建立回收筒資訊檔案:%s" -#: ../gio/glocalfile.c:2022 ../gio/glocalfile.c:2027 ../gio/glocalfile.c:2107 -#: ../gio/glocalfile.c:2114 +#: gio/glocalfile.c:2022 gio/glocalfile.c:2027 gio/glocalfile.c:2107 +#: gio/glocalfile.c:2114 #, c-format msgid "Unable to trash file: %s" msgstr "無法將檔案移至回收筒:%s" -#: ../gio/glocalfile.c:2141 +#: gio/glocalfile.c:2141 #, c-format msgid "Error creating directory: %s" msgstr "建立目錄發生錯誤:%s" -#: ../gio/glocalfile.c:2170 +#: gio/glocalfile.c:2170 #, c-format msgid "Filesystem does not support symbolic links" msgstr "檔案系統不支援符號連結" -#: ../gio/glocalfile.c:2174 +#: gio/glocalfile.c:2174 #, c-format msgid "Error making symbolic link: %s" msgstr "建立符號連結時發生錯誤:%s" -#: ../gio/glocalfile.c:2236 ../gio/glocalfile.c:2330 +#: gio/glocalfile.c:2236 gio/glocalfile.c:2330 #, c-format msgid "Error moving file: %s" msgstr "移動檔案時發生錯誤:%s" -#: ../gio/glocalfile.c:2259 +#: gio/glocalfile.c:2259 msgid "Can't move directory over directory" msgstr "不能將目錄移動至目錄上" -#: ../gio/glocalfile.c:2286 ../gio/glocalfileoutputstream.c:935 -#: ../gio/glocalfileoutputstream.c:949 ../gio/glocalfileoutputstream.c:964 -#: ../gio/glocalfileoutputstream.c:980 ../gio/glocalfileoutputstream.c:994 +#: gio/glocalfile.c:2286 gio/glocalfileoutputstream.c:935 +#: gio/glocalfileoutputstream.c:949 gio/glocalfileoutputstream.c:964 +#: gio/glocalfileoutputstream.c:980 gio/glocalfileoutputstream.c:994 msgid "Backup file creation failed" msgstr "建立備份檔案失敗" -#: ../gio/glocalfile.c:2305 +#: gio/glocalfile.c:2305 #, c-format msgid "Error removing target file: %s" msgstr "移除目標檔案時發生錯誤:%s" -#: ../gio/glocalfile.c:2319 +#: gio/glocalfile.c:2319 msgid "Move between mounts not supported" msgstr "不支援在掛載點之間移動" -#: ../gio/glocalfileinfo.c:726 +#: gio/glocalfileinfo.c:726 msgid "Attribute value must be non-NULL" msgstr "屬性數值必須為非-NULL" -#: ../gio/glocalfileinfo.c:733 +#: gio/glocalfileinfo.c:733 msgid "Invalid attribute type (string expected)" msgstr "無效的屬性類型(應為字串值)" -#: ../gio/glocalfileinfo.c:740 +#: gio/glocalfileinfo.c:740 msgid "Invalid extended attribute name" msgstr "無效的延伸屬性名稱" -#: ../gio/glocalfileinfo.c:780 +#: gio/glocalfileinfo.c:780 #, c-format msgid "Error setting extended attribute '%s': %s" msgstr "設定延伸屬性「%s」時發生錯誤:%s" -#: ../gio/glocalfileinfo.c:1484 ../gio/glocalfileoutputstream.c:819 +#: gio/glocalfileinfo.c:1484 gio/glocalfileoutputstream.c:819 #, c-format msgid "Error stating file '%s': %s" msgstr "取得檔案「%s」狀態時發生錯誤:%s" -#: ../gio/glocalfileinfo.c:1557 +#: gio/glocalfileinfo.c:1557 msgid " (invalid encoding)" msgstr "(無效的編碼)" -#: ../gio/glocalfileinfo.c:1755 +#: gio/glocalfileinfo.c:1755 #, c-format msgid "Error stating file descriptor: %s" msgstr "取得檔案描述狀態時發生錯誤:%s" -#: ../gio/glocalfileinfo.c:1800 +#: gio/glocalfileinfo.c:1800 msgid "Invalid attribute type (uint32 expected)" msgstr "無效的屬性類型(應為 uint32 值)" -#: ../gio/glocalfileinfo.c:1818 +#: gio/glocalfileinfo.c:1818 msgid "Invalid attribute type (uint64 expected)" msgstr "無效的屬性類型(應為 uint64 值)" -#: ../gio/glocalfileinfo.c:1837 ../gio/glocalfileinfo.c:1856 +#: gio/glocalfileinfo.c:1837 gio/glocalfileinfo.c:1856 msgid "Invalid attribute type (byte string expected)" msgstr "無效的屬性類型(應為 byte string 值)" -#: ../gio/glocalfileinfo.c:1891 +#: gio/glocalfileinfo.c:1891 msgid "Cannot set permissions on symlinks" msgstr "不能設定符號連結的權限" -#: ../gio/glocalfileinfo.c:1907 +#: gio/glocalfileinfo.c:1907 #, c-format msgid "Error setting permissions: %s" msgstr "設定權限時發生錯誤:%s" -#: ../gio/glocalfileinfo.c:1958 +#: gio/glocalfileinfo.c:1958 #, c-format msgid "Error setting owner: %s" msgstr "設定擁有者時發生錯誤:%s" -#: ../gio/glocalfileinfo.c:1981 +#: gio/glocalfileinfo.c:1981 msgid "symlink must be non-NULL" msgstr "符號連結必須為非-NULL" -#: ../gio/glocalfileinfo.c:1991 ../gio/glocalfileinfo.c:2010 -#: ../gio/glocalfileinfo.c:2021 +#: gio/glocalfileinfo.c:1991 gio/glocalfileinfo.c:2010 +#: gio/glocalfileinfo.c:2021 #, c-format msgid "Error setting symlink: %s" msgstr "設定符號連結時發生錯誤:%s" -#: ../gio/glocalfileinfo.c:2000 +#: gio/glocalfileinfo.c:2000 msgid "Error setting symlink: file is not a symlink" msgstr "設定符號連結時發生錯誤:檔案不是符號連結" -#: ../gio/glocalfileinfo.c:2126 +#: gio/glocalfileinfo.c:2126 #, c-format msgid "Error setting modification or access time: %s" msgstr "設定修改或存取時刻時發生錯誤:%s" -#: ../gio/glocalfileinfo.c:2149 +#: gio/glocalfileinfo.c:2149 msgid "SELinux context must be non-NULL" msgstr "SELinux 關聯必須為非-NULL" -#: ../gio/glocalfileinfo.c:2164 +#: gio/glocalfileinfo.c:2164 #, c-format msgid "Error setting SELinux context: %s" msgstr "設定 SELinux 關聯時發生錯誤:%s" -#: ../gio/glocalfileinfo.c:2171 +#: gio/glocalfileinfo.c:2171 msgid "SELinux is not enabled on this system" msgstr "SELinux 在這個系統上並未啟用" -#: ../gio/glocalfileinfo.c:2263 +#: gio/glocalfileinfo.c:2263 #, c-format msgid "Setting attribute %s not supported" msgstr "不支援設定屬性 %s" -#: ../gio/glocalfileinputstream.c:171 ../gio/glocalfileoutputstream.c:708 +#: gio/glocalfileinputstream.c:171 gio/glocalfileoutputstream.c:708 #, c-format msgid "Error reading from file: %s" msgstr "從檔案讀取時發生錯誤:%s" -#: ../gio/glocalfileinputstream.c:202 ../gio/glocalfileinputstream.c:214 -#: ../gio/glocalfileinputstream.c:326 ../gio/glocalfileoutputstream.c:456 -#: ../gio/glocalfileoutputstream.c:1012 +#: gio/glocalfileinputstream.c:202 gio/glocalfileinputstream.c:214 +#: gio/glocalfileinputstream.c:326 gio/glocalfileoutputstream.c:456 +#: gio/glocalfileoutputstream.c:1012 #, c-format msgid "Error seeking in file: %s" msgstr "在檔案中搜尋時發生錯誤:%s" -#: ../gio/glocalfileinputstream.c:247 ../gio/glocalfileoutputstream.c:242 -#: ../gio/glocalfileoutputstream.c:337 +#: gio/glocalfileinputstream.c:247 gio/glocalfileoutputstream.c:242 +#: gio/glocalfileoutputstream.c:337 #, c-format msgid "Error closing file: %s" msgstr "關閉檔案時發生錯誤:%s" -#: ../gio/glocalfilemonitor.c:213 +#: gio/glocalfilemonitor.c:213 msgid "Unable to find default local file monitor type" msgstr "無法找到預設的本地端檔案監視器類型" -#: ../gio/glocalfileoutputstream.c:188 ../gio/glocalfileoutputstream.c:221 -#: ../gio/glocalfileoutputstream.c:729 +#: gio/glocalfileoutputstream.c:188 gio/glocalfileoutputstream.c:221 +#: gio/glocalfileoutputstream.c:729 #, c-format msgid "Error writing to file: %s" msgstr "寫入至檔案時發生錯誤:%s" -#: ../gio/glocalfileoutputstream.c:269 +#: gio/glocalfileoutputstream.c:269 #, c-format msgid "Error removing old backup link: %s" msgstr "移除舊備份連結時發生錯誤:%s" -#: ../gio/glocalfileoutputstream.c:283 ../gio/glocalfileoutputstream.c:296 +#: gio/glocalfileoutputstream.c:283 gio/glocalfileoutputstream.c:296 #, c-format msgid "Error creating backup copy: %s" msgstr "建立備份複本時發生錯誤:%s" -#: ../gio/glocalfileoutputstream.c:314 +#: gio/glocalfileoutputstream.c:314 #, c-format msgid "Error renaming temporary file: %s" msgstr "重新命名暫存檔案時發生錯誤:%s" -#: ../gio/glocalfileoutputstream.c:502 ../gio/glocalfileoutputstream.c:1063 +#: gio/glocalfileoutputstream.c:502 gio/glocalfileoutputstream.c:1063 #, c-format msgid "Error truncating file: %s" msgstr "截短檔案時發生錯誤:%s" -#: ../gio/glocalfileoutputstream.c:563 ../gio/glocalfileoutputstream.c:616 -#: ../gio/glocalfileoutputstream.c:661 ../gio/glocalfileoutputstream.c:801 -#: ../gio/glocalfileoutputstream.c:1044 ../gio/glocalfileoutputstream.c:1143 +#: gio/glocalfileoutputstream.c:563 gio/glocalfileoutputstream.c:616 +#: gio/glocalfileoutputstream.c:661 gio/glocalfileoutputstream.c:801 +#: gio/glocalfileoutputstream.c:1044 gio/glocalfileoutputstream.c:1143 #, c-format msgid "Error opening file '%s': %s" msgstr "開啟檔案「%s」時發生錯誤:%s" -#: ../gio/glocalfileoutputstream.c:832 +#: gio/glocalfileoutputstream.c:832 msgid "Target file is a directory" msgstr "目標檔案是一個目錄" -#: ../gio/glocalfileoutputstream.c:837 +#: gio/glocalfileoutputstream.c:837 msgid "Target file is not a regular file" msgstr "目標檔案不是正規的檔案" -#: ../gio/glocalfileoutputstream.c:849 +#: gio/glocalfileoutputstream.c:849 msgid "The file was externally modified" msgstr "該檔案已被外部程式修改過" -#: ../gio/glocalfileoutputstream.c:1028 +#: gio/glocalfileoutputstream.c:1028 #, c-format msgid "Error removing old file: %s" msgstr "移除舊檔案時發生錯誤:%s" -#: ../gio/gmemoryinputstream.c:487 ../gio/gmemoryoutputstream.c:718 +#: gio/gmemoryinputstream.c:487 gio/gmemoryoutputstream.c:718 msgid "Invalid GSeekType supplied" msgstr "提供了無效的 GSeek 類型" -#: ../gio/gmemoryinputstream.c:497 +#: gio/gmemoryinputstream.c:497 msgid "Invalid seek request" msgstr "無效的搜尋要求" -#: ../gio/gmemoryinputstream.c:521 +#: gio/gmemoryinputstream.c:521 msgid "Cannot truncate GMemoryInputStream" msgstr "不能截短 GMemoryInputStream" -#: ../gio/gmemoryoutputstream.c:468 +#: gio/gmemoryoutputstream.c:468 msgid "Memory output stream not resizable" msgstr "記憶體輸出串流不能改變大小" -#: ../gio/gmemoryoutputstream.c:484 +#: gio/gmemoryoutputstream.c:484 msgid "Failed to resize memory output stream" msgstr "改變記憶體輸出串流的大小失敗" -#: ../gio/gmemoryoutputstream.c:572 +#: gio/gmemoryoutputstream.c:572 msgid "" "Amount of memory required to process the write is larger than available " "address space" msgstr "進行寫入所需的記憶體總額大於可用的位址空間" -#: ../gio/gmemoryoutputstream.c:728 +#: gio/gmemoryoutputstream.c:728 msgid "Requested seek before the beginning of the stream" msgstr "在串流的開頭之前要求的搜索" -#: ../gio/gmemoryoutputstream.c:737 +#: gio/gmemoryoutputstream.c:737 msgid "Requested seek beyond the end of the stream" msgstr "在串流的開頭之後要求的搜索" #. Translators: This is an error #. * message for mount objects that #. * don't implement unmount. -#: ../gio/gmount.c:364 +#: gio/gmount.c:364 msgid "mount doesn't implement \"unmount\"" msgstr "掛載點尚未實作卸載(umount)" #. Translators: This is an error #. * message for mount objects that #. * don't implement eject. -#: ../gio/gmount.c:443 +#: gio/gmount.c:443 msgid "mount doesn't implement \"eject\"" msgstr "掛載點尚未實作退出(eject)" #. Translators: This is an error #. * message for mount objects that #. * don't implement any of unmount or unmount_with_operation. -#: ../gio/gmount.c:523 +#: gio/gmount.c:523 msgid "mount doesn't implement \"unmount\" or \"unmount_with_operation\"" msgstr "掛載點尚未實作卸載(umount)或「umount_with_operation」" #. Translators: This is an error #. * message for mount objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gmount.c:610 +#: gio/gmount.c:610 msgid "mount doesn't implement \"eject\" or \"eject_with_operation\"" msgstr "掛載點尚未實作退出(eject)或「eject_with_operation」" #. Translators: This is an error #. * message for mount objects that #. * don't implement remount. -#: ../gio/gmount.c:699 +#: gio/gmount.c:699 msgid "mount doesn't implement \"remount\"" msgstr "掛載點尚未實作重新掛載(remount)" #. Translators: This is an error #. * message for mount objects that #. * don't implement content type guessing. -#: ../gio/gmount.c:783 +#: gio/gmount.c:783 msgid "mount doesn't implement content type guessing" msgstr "掛載點尚未實作內容類型預測" #. Translators: This is an error #. * message for mount objects that #. * don't implement content type guessing. -#: ../gio/gmount.c:872 +#: gio/gmount.c:872 msgid "mount doesn't implement synchronous content type guessing" msgstr "掛載點尚未實作同步內容類型預測" -#: ../gio/gnetworkaddress.c:295 +#: gio/gnetworkaddress.c:295 #, c-format msgid "Hostname '%s' contains '[' but not ']'" msgstr "主機名稱「%s」含有 '[' but not ']'" -#: ../gio/goutputstream.c:207 ../gio/goutputstream.c:408 +#: gio/goutputstream.c:207 gio/goutputstream.c:408 msgid "Output stream doesn't implement write" msgstr "輸出串流尚未實作寫入" -#: ../gio/goutputstream.c:369 ../gio/goutputstream.c:781 +#: gio/goutputstream.c:369 gio/goutputstream.c:781 msgid "Source stream is already closed" msgstr "來源串流已經關閉" -#: ../gio/gresolver.c:736 +#: gio/gresolver.c:736 #, c-format msgid "Error resolving '%s': %s" msgstr "解析「%s」時發生錯誤:%s" -#: ../gio/gresolver.c:786 +#: gio/gresolver.c:786 #, c-format msgid "Error reverse-resolving '%s': %s" msgstr "反向解析「%s」時發生錯誤:%s" -#: ../gio/gresolver.c:821 ../gio/gresolver.c:899 +#: gio/gresolver.c:821 gio/gresolver.c:899 #, c-format msgid "No service record for '%s'" msgstr "沒有「%s」的服務紀錄" -#: ../gio/gresolver.c:826 ../gio/gresolver.c:904 +#: gio/gresolver.c:826 gio/gresolver.c:904 #, c-format msgid "Temporarily unable to resolve '%s'" msgstr "暫時無法解析「%s」" -#: ../gio/gresolver.c:831 ../gio/gresolver.c:909 +#: gio/gresolver.c:831 gio/gresolver.c:909 #, c-format msgid "Error resolving '%s'" msgstr "解析「%s」時發生錯誤" -#: ../gio/gsocket.c:277 +#: gio/gsocket.c:277 msgid "Invalid socket, not initialized" msgstr "無效的 socket,尚未初始化" -#: ../gio/gsocket.c:284 +#: gio/gsocket.c:284 #, c-format msgid "Invalid socket, initialization failed due to: %s" msgstr "無效的 socket,初始化失敗原因為:%s" -#: ../gio/gsocket.c:292 +#: gio/gsocket.c:292 msgid "Socket is already closed" msgstr "Socket 已經關閉" -#: ../gio/gsocket.c:413 +#: gio/gsocket.c:413 #, c-format msgid "creating GSocket from fd: %s" msgstr "正在從 fd 建立 GSocket:%s" -#: ../gio/gsocket.c:447 ../gio/gsocket.c:461 ../gio/gsocket.c:1925 +#: gio/gsocket.c:447 gio/gsocket.c:461 gio/gsocket.c:1925 #, c-format msgid "Unable to create socket: %s" msgstr "無法建立 socket:%s" -#: ../gio/gsocket.c:447 +#: gio/gsocket.c:447 msgid "Unknown protocol was specified" msgstr "指定了不明的通訊協定" -#: ../gio/gsocket.c:1126 +#: gio/gsocket.c:1126 #, c-format msgid "could not get local address: %s" msgstr "無法取得本地端位址:%s" -#: ../gio/gsocket.c:1159 +#: gio/gsocket.c:1159 #, c-format msgid "could not get remote address: %s" msgstr "無法取得遠端位址:%s" -#: ../gio/gsocket.c:1217 +#: gio/gsocket.c:1217 #, c-format msgid "could not listen: %s" msgstr "無法聽取:%s" -#: ../gio/gsocket.c:1291 +#: gio/gsocket.c:1291 #, c-format msgid "Error binding to address: %s" msgstr "綁定至位址時發生錯誤:%s" -#: ../gio/gsocket.c:1411 +#: gio/gsocket.c:1411 #, c-format msgid "Error accepting connection: %s" msgstr "接受連線時發生錯誤:%s" -#: ../gio/gsocket.c:1524 +#: gio/gsocket.c:1524 msgid "Error connecting: " msgstr "連線錯誤:" -#: ../gio/gsocket.c:1528 +#: gio/gsocket.c:1528 msgid "Connection in progress" msgstr "連線進行中" -#: ../gio/gsocket.c:1533 +#: gio/gsocket.c:1533 #, c-format msgid "Error connecting: %s" msgstr "連線錯誤:%s" -#: ../gio/gsocket.c:1573 +#: gio/gsocket.c:1573 #, c-format msgid "Unable to get pending error: %s" msgstr "無法取得未處理的錯誤:%s" -#: ../gio/gsocket.c:1669 +#: gio/gsocket.c:1669 #, c-format msgid "Error receiving data: %s" msgstr "接收資料時發生錯誤:%s" -#: ../gio/gsocket.c:1812 +#: gio/gsocket.c:1812 #, c-format msgid "Error sending data: %s" msgstr "傳送資料時發生錯誤:%s" -#: ../gio/gsocket.c:2004 +#: gio/gsocket.c:2004 #, c-format msgid "Error closing socket: %s" msgstr "關閉 socket 時發生錯誤:%s" -#: ../gio/gsocket.c:2481 +#: gio/gsocket.c:2481 #, c-format msgid "Waiting for socket condition: %s" msgstr "等候 socket 情況:%s" -#: ../gio/gsocket.c:2720 ../gio/gsocket.c:2801 +#: gio/gsocket.c:2720 gio/gsocket.c:2801 #, c-format msgid "Error sending message: %s" msgstr "傳送訊息時發生錯誤:%s" -#: ../gio/gsocket.c:2745 +#: gio/gsocket.c:2745 msgid "GSocketControlMessage not supported on windows" msgstr "視窗不支援 GSocketControlMessage" -#: ../gio/gsocket.c:3003 ../gio/gsocket.c:3141 +#: gio/gsocket.c:3003 gio/gsocket.c:3141 #, c-format msgid "Error receiving message: %s" msgstr "取回郵件發生錯誤:%s" -#: ../gio/gsocketclient.c:521 ../gio/gsocketclient.c:770 +#: gio/gsocketclient.c:521 gio/gsocketclient.c:770 msgid "Unknown error on connect" msgstr "連線時有不明的錯誤" -#: ../gio/gsocketlistener.c:192 +#: gio/gsocketlistener.c:192 msgid "Listener is already closed" msgstr "聽取程式已經關閉" -#: ../gio/gsocketlistener.c:233 +#: gio/gsocketlistener.c:233 msgid "Added socket is closed" msgstr "加入的 socket 已經關閉" -#: ../gio/gthemedicon.c:499 +#: gio/gthemedicon.c:499 #, c-format msgid "Can't handle version %d of GThemedIcon encoding" msgstr "不能處理版本為 %d 的 GThemedIcon 編碼" -#: ../gio/gunixconnection.c:151 +#: gio/gunixconnection.c:151 #, c-format msgid "Expecting 1 control message, got %d" msgstr "預期有 1 個控制訊息,卻收到 %d" -#: ../gio/gunixconnection.c:164 +#: gio/gunixconnection.c:164 msgid "Unexpected type of ancillary data" msgstr "輔助資料的未預期類型" -#: ../gio/gunixconnection.c:182 +#: gio/gunixconnection.c:182 #, c-format msgid "Expecting one fd, but got %d\n" msgstr "預期有 1 個 fd,卻收到 %d\n" -#: ../gio/gunixconnection.c:198 +#: gio/gunixconnection.c:198 msgid "Received invalid fd" msgstr "收到無效的 fd" -#: ../gio/gunixinputstream.c:354 ../gio/gunixinputstream.c:374 -#: ../gio/gunixinputstream.c:452 ../gio/gunixoutputstream.c:439 +#: gio/gunixinputstream.c:354 gio/gunixinputstream.c:374 +#: gio/gunixinputstream.c:452 gio/gunixoutputstream.c:439 #, c-format msgid "Error reading from unix: %s" msgstr "從 unix 讀取時發生錯誤:%s" -#: ../gio/gunixinputstream.c:407 ../gio/gunixinputstream.c:589 -#: ../gio/gunixoutputstream.c:394 ../gio/gunixoutputstream.c:545 +#: gio/gunixinputstream.c:407 gio/gunixinputstream.c:589 +#: gio/gunixoutputstream.c:394 gio/gunixoutputstream.c:545 #, c-format msgid "Error closing unix: %s" msgstr "關閉 unix 時發生錯誤:%s" -#: ../gio/gunixmounts.c:1846 ../gio/gunixmounts.c:1883 +#: gio/gunixmounts.c:1846 gio/gunixmounts.c:1883 msgid "Filesystem root" msgstr "根檔案系統" -#: ../gio/gunixoutputstream.c:340 ../gio/gunixoutputstream.c:361 +#: gio/gunixoutputstream.c:340 gio/gunixoutputstream.c:361 #, c-format msgid "Error writing to unix: %s" msgstr "寫入至 unix 時發生錯誤:%s" -#: ../gio/gunixsocketaddress.c:182 +#: gio/gunixsocketaddress.c:182 msgid "Abstract unix domain socket addresses not supported on this system" msgstr "這個系統不支授抽象 unix 網域 socket 位址" -#: ../gio/gvolume.c:407 +#: gio/gvolume.c:407 msgid "volume doesn't implement eject" msgstr "儲存區尚未實作退出(eject)" #. Translators: This is an error #. * message for volume objects that #. * don't implement any of eject or eject_with_operation. -#: ../gio/gvolume.c:486 +#: gio/gvolume.c:486 msgid "volume doesn't implement eject or eject_with_operation" msgstr "儲存區尚未實作退出(eject) 或 eject_with_operation" -#: ../gio/gwin32appinfo.c:277 +#: gio/gwin32appinfo.c:277 msgid "Can't find application" msgstr "找不到應用程式" -#: ../gio/gwin32appinfo.c:300 +#: gio/gwin32appinfo.c:300 #, c-format msgid "Error launching application: %s" msgstr "執行應用程式時發生錯誤:%s" -#: ../gio/gwin32appinfo.c:336 +#: gio/gwin32appinfo.c:336 msgid "URIs not supported" msgstr "不支援 URIs" -#: ../gio/gwin32appinfo.c:358 +#: gio/gwin32appinfo.c:358 msgid "association changes not supported on win32" msgstr "關聯變更在 win32 上不支援" -#: ../gio/gwin32appinfo.c:370 +#: gio/gwin32appinfo.c:370 msgid "Association creation not supported on win32" msgstr "關聯建立在 win32 上不支援" -#: ../gio/gzlibcompressor.c:279 ../gio/gzlibdecompressor.c:250 +#: gio/gzlibcompressor.c:279 gio/gzlibdecompressor.c:250 msgid "Not enough memory" msgstr "沒有足夠的記憶體" -#: ../gio/gzlibcompressor.c:286 ../gio/gzlibdecompressor.c:257 +#: gio/gzlibcompressor.c:286 gio/gzlibdecompressor.c:257 #, c-format msgid "Internal error: %s" msgstr "內部的錯誤:%s" -#: ../gio/gzlibcompressor.c:299 ../gio/gzlibdecompressor.c:271 +#: gio/gzlibcompressor.c:299 gio/gzlibdecompressor.c:271 msgid "Need more input" msgstr "需要更多輸入" -#: ../gio/gzlibdecompressor.c:243 +#: gio/gzlibdecompressor.c:243 msgid "Invalid compressed data" msgstr "無效的壓縮資料" |