Release 2.21.0

This commit is contained in:
Matthias Clasen 2009-05-03 18:04:31 -04:00
parent 4e694faa33
commit a28215fa90
95 changed files with 13270 additions and 15260 deletions

View File

@ -130,4 +130,7 @@
<index role="2.20">
<title>Index of new symbols in 2.20</title>
</index>
<index role="2.22">
<title>Index of new symbols in 2.20</title>
</index>
</book>

View File

@ -244,5 +244,8 @@ synchronize their operation.
<index role="2.20">
<title>Index of new symbols in 2.20</title>
</index>
<index role="2.22">
<title>Index of new symbols in 2.22</title>
</index>
</book>

View File

@ -155,5 +155,8 @@
<index role="2.18">
<title>Index of new symbols in 2.18</title>
</index>
<index role="2.22">
<title>Index of new symbols in 2.22</title>
</index>
</book>

View File

@ -483,7 +483,7 @@ g_cancellable_cancel (GCancellable *cancellable)
gboolean cancel;
cancel = FALSE;
G_LOCK(cancellable);
if (cancellable != NULL &&
!cancellable->cancelled)
@ -503,14 +503,14 @@ g_cancellable_cancel (GCancellable *cancellable)
g_signal_emit (cancellable, signals[CANCELLED], 0);
G_LOCK(cancellable);
cancellable->cancelled_running = FALSE;
if (cancellable->cancelled_running_waiting)
g_cond_broadcast (cancellable_cond);
cancellable->cancelled_running_waiting = FALSE;
G_UNLOCK(cancellable);
g_object_unref (cancellable);
}
}
@ -524,8 +524,8 @@ g_cancellable_cancel (GCancellable *cancellable)
*
* Convenience function to connect to the #GCancellable::cancelled
* signal. Also handles the race condition that may happen
* if the cancellable is cancelled right before connecting.
*
* if the cancellable is cancelled right before connecting.
*
* @callback is called at most once, either directly at the
* time of the connect if @cancellable is already cancelled,
* or when @cancellable is cancelled in some thread.
@ -535,11 +535,11 @@ g_cancellable_cancel (GCancellable *cancellable)
* cancelled.
*
* See #GCancellable::cancelled for details on how to use this.
*
*
* Returns: The id of the signal handler or 0 if @cancellable has already
* been cancelled.
*
* Since: 2.20
* Since: 2.22
*/
gulong
g_cancellable_connect (GCancellable *cancellable,
@ -550,30 +550,30 @@ g_cancellable_connect (GCancellable *cancellable,
gulong id;
g_return_val_if_fail (G_IS_CANCELLABLE (cancellable), 0);
G_LOCK(cancellable);
G_LOCK (cancellable);
if (cancellable->cancelled)
{
void (*_callback) (GCancellable *cancellable,
gpointer user_data);
gpointer user_data);
_callback = (void *)callback;
id = 0;
_callback (cancellable, data);
if (data_destroy_func)
data_destroy_func (data);
data_destroy_func (data);
}
else
{
id = g_signal_connect_data (cancellable, "cancelled",
callback, data,
(GClosureNotify) data_destroy_func,
0);
callback, data,
(GClosureNotify) data_destroy_func,
0);
}
G_UNLOCK(cancellable);
G_UNLOCK (cancellable);
return id;
}
@ -585,17 +585,17 @@ g_cancellable_connect (GCancellable *cancellable,
*
* Disconnects a handler from an cancellable instance similar to
* g_signal_handler_disconnect() but ensures that once this
* function returns the handler will not run anymore in any thread.
* function returns the handler will not run anymore in any thread.
*
* This avoids a race condition where a thread cancels at the
* same time as the cancellable operation is finished and the
* same time as the cancellable operation is finished and the
* signal handler is removed. See #GCancellable::cancelled for
* details on how to use this.
*
* If @cancellable is %NULL or @handler_id is %0 this function does
* nothing.
*
* Since: 2.20
*
* Since: 2.22
*/
void
g_cancellable_disconnect (GCancellable *cancellable,
@ -604,16 +604,16 @@ g_cancellable_disconnect (GCancellable *cancellable,
if (handler_id == 0 || cancellable == NULL)
return;
G_LOCK(cancellable);
G_LOCK (cancellable);
while (cancellable->cancelled_running)
{
cancellable->cancelled_running_waiting = TRUE;
cancellable->cancelled_running_waiting = TRUE;
g_cond_wait (cancellable_cond,
g_static_mutex_get_mutex (& G_LOCK_NAME (cancellable)));
g_static_mutex_get_mutex (& G_LOCK_NAME (cancellable)));
}
g_signal_handler_disconnect (cancellable, handler_id);
G_UNLOCK(cancellable);
G_UNLOCK (cancellable);
}
#define __G_CANCELLABLE_C__

View File

@ -1,7 +1,7 @@
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
/* GIO - GLib Input, Output and Streaming Library
*
*
* Copyright (C) 2008 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
@ -56,7 +56,7 @@
* #GNetworkAddress and #GNetworkService provide wrappers around
* #GResolver functionality that also implement #GSocketConnectable,
* making it easy to connect to a remote host/service.
**/
*/
/**
* GResolver:
@ -89,7 +89,6 @@ g_resolver_class_init (GResolverClass *resolver_class)
static void
g_resolver_init (GResolver *resolver)
{
;
}
static GResolver *default_resolver;
@ -141,7 +140,7 @@ g_resolver_get_default (void)
* itself as the default resolver for all later code to use.
*
* Since: 2.22
**/
*/
void
g_resolver_set_default (GResolver *resolver)
{
@ -184,7 +183,7 @@ g_resolver_set_default (GResolver *resolver)
* done with it. (You can use g_resolver_free_addresses() to do this.)
*
* Since: 2.22
**/
*/
GList *
g_resolver_lookup_by_name (GResolver *resolver,
const gchar *hostname,
@ -223,11 +222,11 @@ g_resolver_lookup_by_name (GResolver *resolver,
*
* Begins asynchronously resolving @hostname to determine its
* associated IP address(es), and eventually calls @callback, which
* must call g_resolver_lookup_by_name_finish() to get the result. See
* g_resolver_lookup_by_name() for more details.
* must call g_resolver_lookup_by_name_finish() to get the result.
* See g_resolver_lookup_by_name() for more details.
*
* Since: 2.22
**/
*/
void
g_resolver_lookup_by_name_async (GResolver *resolver,
const gchar *hostname,
@ -285,7 +284,7 @@ g_resolver_lookup_by_name_async (GResolver *resolver,
* g_resolver_lookup_by_name() for more details.
*
* Since: 2.22
**/
*/
GList *
g_resolver_lookup_by_name_finish (GResolver *resolver,
GAsyncResult *result,
@ -325,7 +324,7 @@ g_resolver_lookup_by_name_finish (GResolver *resolver,
* by hand.)
*
* Since: 2.22
**/
*/
void
g_resolver_free_addresses (GList *addresses)
{
@ -357,7 +356,7 @@ g_resolver_free_addresses (GList *addresses)
* form), or %NULL on error.
*
* Since: 2.22
**/
*/
gchar *
g_resolver_lookup_by_address (GResolver *resolver,
GInetAddress *address,
@ -384,7 +383,7 @@ g_resolver_lookup_by_address (GResolver *resolver,
* call g_resolver_lookup_by_address_finish() to get the final result.
*
* Since: 2.22
**/
*/
void
g_resolver_lookup_by_address_async (GResolver *resolver,
GInetAddress *address,
@ -416,7 +415,7 @@ g_resolver_lookup_by_address_async (GResolver *resolver,
* form), or %NULL on error.
*
* Since: 2.22
**/
*/
gchar *
g_resolver_lookup_by_address_finish (GResolver *resolver,
GAsyncResult *result,
@ -489,7 +488,7 @@ g_resolver_get_service_rrname (const char *service,
* (You can use g_resolver_free_targets() to do this.)
*
* Since: 2.22
**/
*/
GList *
g_resolver_lookup_service (GResolver *resolver,
const gchar *service,
@ -532,7 +531,7 @@ g_resolver_lookup_service (GResolver *resolver,
* details.
*
* Since: 2.22
**/
*/
void
g_resolver_lookup_service_async (GResolver *resolver,
const gchar *service,
@ -574,7 +573,7 @@ g_resolver_lookup_service_async (GResolver *resolver,
* g_resolver_lookup_service() for more details.
*
* Since: 2.22
**/
*/
GList *
g_resolver_lookup_service_finish (GResolver *resolver,
GAsyncResult *result,
@ -604,7 +603,7 @@ g_resolver_lookup_service_finish (GResolver *resolver,
* results by hand.)
*
* Since: 2.22
**/
*/
void
g_resolver_free_targets (GList *targets)
{
@ -617,13 +616,13 @@ g_resolver_free_targets (GList *targets)
/**
* g_resolver_error_quark:
*
*
* Gets the #GResolver Error Quark.
*
* Return value: a #GQuark.
*
* Since: 2.22
**/
*/
GQuark
g_resolver_error_quark (void)
{

View File

@ -97,7 +97,7 @@ g_srv_target_get_type (void)
* Return value: a new #GSrvTarget.
*
* Since: 2.22
**/
*/
GSrvTarget *
g_srv_target_new (const gchar *hostname,
guint16 port,
@ -123,7 +123,7 @@ g_srv_target_new (const gchar *hostname,
* Return value: a copy of @target
*
* Since: 2.22
**/
*/
GSrvTarget *
g_srv_target_copy (GSrvTarget *target)
{
@ -138,7 +138,7 @@ g_srv_target_copy (GSrvTarget *target)
* Frees @target
*
* Since: 2.22
**/
*/
void
g_srv_target_free (GSrvTarget *target)
{
@ -158,7 +158,7 @@ g_srv_target_free (GSrvTarget *target)
* Return value: @target's hostname
*
* Since: 2.22
**/
*/
const gchar *
g_srv_target_get_hostname (GSrvTarget *target)
{
@ -174,7 +174,7 @@ g_srv_target_get_hostname (GSrvTarget *target)
* Return value: @target's port
*
* Since: 2.22
**/
*/
guint16
g_srv_target_get_port (GSrvTarget *target)
{
@ -192,7 +192,7 @@ g_srv_target_get_port (GSrvTarget *target)
* Return value: @target's priority
*
* Since: 2.22
**/
*/
guint16
g_srv_target_get_priority (GSrvTarget *target)
{
@ -210,7 +210,7 @@ g_srv_target_get_priority (GSrvTarget *target)
* Return value: @target's weight
*
* Since: 2.22
**/
*/
guint16
g_srv_target_get_weight (GSrvTarget *target)
{
@ -249,7 +249,7 @@ compare_target (gconstpointer a, gconstpointer b)
* Return value: the head of the sorted list.
*
* Since: 2.22
**/
*/
GList *
g_srv_target_list_sort (GList *targets)
{

View File

@ -1,7 +1,7 @@
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
/* GIO - GLib Input, Output and Streaming Library
*
*
* Copyright (C) 2008 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
@ -44,10 +44,8 @@ static void
g_threaded_resolver_init (GThreadedResolver *gtr)
{
if (g_thread_supported ())
{
gtr->thread_pool = g_thread_pool_new (threaded_resolver_thread, gtr,
-1, FALSE, NULL);
}
gtr->thread_pool = g_thread_pool_new (threaded_resolver_thread, gtr,
-1, FALSE, NULL);
}
static void
@ -311,7 +309,7 @@ threaded_resolver_thread (gpointer thread_data,
req->resolve_func (req, &req->error);
g_threaded_resolver_request_complete (req, FALSE);
g_threaded_resolver_request_unref (req);
}
}
static void
resolve_sync (GThreadedResolver *gtr,

View File

@ -1,7 +1,7 @@
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
/* GIO - GLib Input, Output and Streaming Library
*
*
* Copyright (C) 2008 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or

238
po/am.po
View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -297,116 +297,91 @@ msgstr ""
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr ""
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr ""
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "የማይሰራ የUTF-8 ጽሑፍ"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr ""
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr ""
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr ""
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (&#234; for example) - perhaps the digit is too large"
msgstr ""
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr ""
#: glib/gmarkup.c:685
#: 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 &amp;"
msgstr ""
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "የማይሰራ የUTF-8 ጽሑፍ"
#: glib/gmarkup.c:662
#, c-format
msgid "Entity name '%-.*s' is not known"
msgstr ""
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "የማይሰራ የUTF-8 ጽሑፍ"
#: 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 &amp;"
msgstr ""
#: glib/gmarkup.c:1130
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "የማይሰራ የUTF-8 ጽሑፍ"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr ""
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr ""
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr ""
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -414,87 +389,87 @@ msgid ""
"character in an attribute name"
msgstr ""
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, 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 ""
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
msgstr ""
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
msgstr ""
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr ""
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr ""
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr ""
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr ""
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr ""
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
@ -929,61 +904,61 @@ msgstr ""
msgid "Character out of range for UTF-16"
msgstr ""
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr ""
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr ""
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr ""
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr ""
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr ""
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr ""
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr ""
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, fuzzy, c-format
msgid "Error parsing option %s"
msgstr "ፋይል '%s'ን ለማንበብ ስህተት አለ፦ %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr ""
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr ""
@ -1100,8 +1075,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1241,7 +1216,7 @@ msgstr ""
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1262,14 +1237,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr ""
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1680,54 +1647,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr ""
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "ፋይል '%s'ን ለማንበብ ስህተት አለ፦ %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1744,16 +1668,12 @@ msgstr "ፋይል '%s'ን ለማንበብ ስህተት አለ፦ %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "ፋይል '%s'ን ለማንበብ ስህተት አለ፦ %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1790,6 +1710,18 @@ msgstr ""
msgid "[FILE...]"
msgstr ""
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "የማይሰራ የUTF-8 ጽሑፍ"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "የማይሰራ የUTF-8 ጽሑፍ"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "ፋይል '%s'ን ለማንበብ ስህተት አለ፦ %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "ፋይል '%s'ን ለማንበብ ስህተት አለ፦ %s"

298
po/ar.po
View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -303,50 +303,32 @@ msgstr "فشل فتح الملف '%s': فشل open(): %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "فشل في مقابلة الملف '%s': mmap() فشل: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "خطأ في السطر %Id الرمز %Id: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "نص مرمّز بـ UTF-8 غير سليم - غير سليم '%s'"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "خطأ في السطر %Id: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "رُؤي كيان فارغ '&;'، الكيانات السليمة هي:&amp; &quot; &lt; &gt; &apos; "
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"المحرف '%s' غير سليم عند بداية اسم الكيان؛ المحرف & يبدأ كيانا، ان كان علامة "
"اﻻمبارساند هذه غير موضوعة على انها كيان، تخطاها باعتبارها &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "المحرف '%s' غير موجود داخل اسم أي كيان"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "اسم الكيان '%s' غير معروف"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"اسم الكيان لم ينته بفاصلة منقوطة؛ الأرجح أنك استخدمت علامة & دون أن تنوي بدء "
"كيان - تخطى العلامة عن طريق اعتبارها &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -355,16 +337,7 @@ msgstr ""
"فشل في تحليل '%-.*s'، والتي كان لابد من كتبتها بالأرقام داخل مرجع محرف "
"(&#234; كمثال) - ربما الرقم كبير جدًا"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "مرجع المحرف '%-.*s' لا يقوم بترميز محرف مسموح به"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "مرجع محرف فارغ؛ يجب أن يتضمن رقما مثل &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -373,52 +346,54 @@ msgstr ""
"مرجع المحرف لم ينته بفاصلة منقوطة؛ الأرجح أنك استخدمت علامة امبارساند دون أن "
"تنوي بدء كيان - تخطا العلامت عن طريق اعتبارها &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "مرجع كيان غير مكتمل"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "مرجع محرف غير مكتمل"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "نص مرمّز بـ UTF-8 غير سليم - سلسة طويلة جدا"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "نص مرمّز بـ UTF-8 غير سليم - ليس محرف بداية"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "نص مرمّز بـ UTF-8 غير سليم - غير سليم '%s'"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "مرجع المحرف '%-.*s' لا يقوم بترميز محرف مسموح به"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "رُؤي كيان فارغ '&;'، الكيانات السليمة هي:&amp; &quot; &lt; &gt; &apos; "
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "اسم الكيان '%s' غير معروف"
#: 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 &amp;"
msgstr ""
"اسم الكيان لم ينته بفاصلة منقوطة؛ الأرجح أنك استخدمت علامة & دون أن تنوي بدء "
"كيان - تخطى العلامة عن طريق اعتبارها &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "يجب أن يبدأ المستند بعنصر (<book> مثلا)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "'%s' محرف غير سليم بعد المحرف '<'؛ ربما لا يبدأ هذا المحرف اسم عنصر"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr "محرف غريب '%s'، توقعت محرف '>' لإنهاء بداية وسم العنصر '%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "محرف غريب '%s'، توقعت '=' بعد اسم الصفة '%s' للعنصر '%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -428,7 +403,7 @@ msgstr ""
"محرف غريب '%s'، توقعت المحرف '>' أو '/' لإنهاء علامة البداية للعنصر '%s'، أو "
"بشكل اختياري صفة؛ ربما استخدمت محرفًا غير صالح في اسم صفة"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -437,39 +412,39 @@ msgstr ""
"محرف غريب '%s'، توقعت علامة اقتباس مفتوحة بعد علامة التساوي عند إعطاء قيمة "
"من الصفة '%s' للعنصر '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, 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:1675
#: glib/gmarkup.c:1453
#, 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:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "العنصر '%s' كان مغلقا، لا عنصر مفتوح حاليا"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "العنصر '%s' كان مغلقا، لكن العنصر المفتوح حاليا هو '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "المستند كان فارغا أو كان يحتوي فقط على مساحات فارغة"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "انتهى المستند بشكل غير متوقع بعد قوس بزاوية '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -478,7 +453,7 @@ msgstr ""
"انتهى المستند بشكل غير متوقع مع عناصر لا زالت مفتوحة - '%s' كان آخر عنصر "
"مفتوح"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -486,19 +461,19 @@ msgid ""
msgstr ""
"انتهى المستند بشكل غير متوقع، توقعت رؤية قوس ذا زاوية لينهي العلامة‪<%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "انتهى المستند بشكل غير متوقع داخل اسم عنصر"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "انتهى المستند بشكل غير متوقع داخل اسم صفة"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "انتهى المستند بشكل غير متوقع بعد علامة فتح عنصر."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -506,16 +481,16 @@ msgstr ""
"انتهى المستند بشكل غير متوقع بعد علامة التساوي اثر اسم صفة؛ لا توجد قيمة "
"للصفة"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "انتهى المستند بشكل غير متوقع وهو داخلَ قيمة صفة"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "انتهى المستند بشكل غير متوقع داخل علامة انهاء للعنصر '%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "انتهى المستند بشكل غير متوقع داخل تعليق أو تعليمات معالجة"
@ -950,61 +925,61 @@ msgstr "تتابع غير سليم في دخْل التحويل"
msgid "Character out of range for UTF-16"
msgstr "محرف خارج حدود UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "الاستخدام:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "خيارات المساعدة:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "اعرض خيارات المساعدة"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "اعرض كل خيارات المساعدة"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "خيارات التطبيق:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "تعذّر تحليل قيمة العدد الصحيح '%s' ل %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "قيمة الرقم الصحيح '%s' ل %s خارج المجال"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "تعذّر تحليل القيمة المزدوجة '%s' ل %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "القيمة المزدوجة '%s' ل %s خارج المجال"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "خطأ أثناء تحليل الخيار %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "معامل %s مفقود"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "خيار مجهول %s"
@ -1124,8 +1099,8 @@ msgstr "مُرِّرت قيمة كبيرة جدّا إلى %s"
msgid "Stream is already closed"
msgstr "سبق إغلاق الدَفق "
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "أُلغيت العملية "
@ -1266,7 +1241,7 @@ msgstr "المهملات غير مدعومة"
msgid "File names cannot contain '%c'"
msgstr "لا يمكن لأسماء الملفات أن تحتوي على '%c' "
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "الجهاز لا ينفذ الوَصل"
@ -1287,14 +1262,6 @@ msgstr "مُعدد الملف له عملية عالقة"
msgid "File enumerator is already closed"
msgstr "مُعدد الملف سبق إغلاقه"
#: gio/gfileicon.c:145
msgid "file"
msgstr "ملف"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "الملف الذي يحتوي على الأيقونة"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1703,56 +1670,11 @@ msgstr "دَفْقُ الاخراج لا يدعم الكتابة"
msgid "Source stream is already closed"
msgstr "دَفْقُ المَصدر سبق إغلاقه"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "اسم"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "اسم الأيقونة"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "أسماء"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "مصفوفة تحتوي أسماء الأيقونات"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "استخدم الاحتياط المبدئي"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"ما إذا سيستخدم الاحتياط المبدئي الموجود بقص الأسماء عند محارف '-'. تجاهل "
"الأسماء بعد الأول إذا خدد أكثر من اسم."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "خطأ فى تناول واصف الملف: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1769,16 +1691,12 @@ msgstr "خطأ عند غلق يونكس: %s"
msgid "Filesystem root"
msgstr "جذر نظام الملفّات"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "خطأ أثناء الكتابة إلى يونكس: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "الجزء لا يدعم الإخراج"
@ -1814,3 +1732,61 @@ msgstr "استخدم تهيئة العرض المسترسل"
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[ملف...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "المحرف '%s' غير سليم عند بداية اسم الكيان؛ المحرف & يبدأ كيانا، ان كان "
#~ "علامة اﻻمبارساند هذه غير موضوعة على انها كيان، تخطاها باعتبارها &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "المحرف '%s' غير موجود داخل اسم أي كيان"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "مرجع محرف فارغ؛ يجب أن يتضمن رقما مثل &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "مرجع كيان غير مكتمل"
#~ msgid "Unfinished character reference"
#~ msgstr "مرجع محرف غير مكتمل"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "نص مرمّز بـ UTF-8 غير سليم - سلسة طويلة جدا"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "نص مرمّز بـ UTF-8 غير سليم - ليس محرف بداية"
#~ msgid "file"
#~ msgstr "ملف"
#~ msgid "The file containing the icon"
#~ msgstr "الملف الذي يحتوي على الأيقونة"
#~ msgid "name"
#~ msgstr "اسم"
#~ msgid "The name of the icon"
#~ msgstr "اسم الأيقونة"
#~ msgid "names"
#~ msgstr "أسماء"
#~ msgid "An array containing the icon names"
#~ msgstr "مصفوفة تحتوي أسماء الأيقونات"
#~ msgid "use default fallbacks"
#~ msgstr "استخدم الاحتياط المبدئي"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "ما إذا سيستخدم الاحتياط المبدئي الموجود بقص الأسماء عند محارف '-'. تجاهل "
#~ "الأسماء بعد الأول إذا خدد أكثر من اسم."
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "خطأ فى تناول واصف الملف: %s"

312
po/as.po
View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: as\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-18 11:59+0530\n"
"Last-Translator: Amitakhya Phukan <aphukan@fedoraproject.org>\n"
"Language-Team: Assamese <fedora-trans-as@redhat.com>\n"
@ -299,51 +299,32 @@ msgstr "'%s' নথিপত্ৰ খোলোঁতে বিফল: open()
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' নথিপত্ৰ map কৰোঁতে বিফল: mmap() বিফল: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "%d শাৰীৰ %d আখৰত ভুল:"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "অৱৈধ UTF-8 সাঙ্কেতিক লিপি - অৱৈধ '%s'"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "%d শাৰীত ভুল: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"ৰিক্ত পদাৰ্থ '&;' দেখা গ'ল; বৈধ পদাৰ্থসমূহ হ'ল: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"'%s' আখৰ পদাৰ্থৰ নামৰ আৰম্ভনিৰ বাবে বৈধ নহয়; & আখৰে এটা পদাৰ্থ আৰম্ভ কৰে; যদি এই "
"এম্পাৰছেন্দ এটা পদাৰ্থ ন'হ'বলাগে, তাক &amp; হিচাপে নিৰ্গমন কৰক"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "'%s' আখৰ পদাৰ্থৰ নামৰ ভিতৰত বৈধ নহয়"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "পদাৰ্থৰ নাম '%s' অজ্ঞাত"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"পদাৰ্থ এটা ছেমিকলনেৰে অন্ত ন'হ'ল; পদাৰ্থ এটা আৰম্ভ কৰিব নিবিচাৰিও অতি সম্ভৱ আপুনি "
"এটা এম্পাৰছেন্দ আখৰ ব্যৱহাৰ কৰিছে - এম্পাৰছেন্দক &amp; হিচাপে নিৰ্গমন কৰক"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -352,17 +333,7 @@ msgstr ""
"'%-.*s' বিশ্লেষণ কৰোঁতে ভুল, যি কোনো আখৰৰ উল্লেখৰ ভিতৰৰ এটা সংখ্যা হ'ব লাগিছিল "
"(&#২৩৪; যেনে) - হয়তো সংখ্যাটো বৰ ডাঙৰ"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
"আখৰৰ উল্লেখ থকা '%-.*s' এ এটা আজ্ঞা থকা আখৰক সাঙ্কেতিক লিপিলৈ পৰিবৰ্তিত নকৰে"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "ৰিক্ত আখৰৰ সঙ্কেত; এটা সংখ্যা থাকিব লাগে যেনে &#৪৫৪;"
#: glib/gmarkup.c:685
#: 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 "
@ -371,32 +342,36 @@ msgstr ""
"আখৰৰ উল্লেখ এটা ছেমিকলনেৰে অন্ত ন'হ'ল; পদাৰ্থ এটা আৰম্ভ কৰিব নিবিচাৰিও অতি সম্ভৱ "
"আপুনি এটা এম্পাৰছেন্দ আখৰ ব্যৱহাৰ কৰিছে - এম্পাৰছেন্দক &amp; হিচাপে নিৰ্গমন কৰক"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "অসম্পূৰ্ণ পদাৰ্থৰ উল্লেখ"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "অসম্পূৰ্ণ আখৰৰ উল্লেখ"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "অৱৈধ UTF-8 সাঙ্কেতিক লিপি - overlong ক্ৰম"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "অৱৈধ UTF-8 সাঙ্কেতিক লিপি - এটা আৰম্ভৰ আখৰ নহয়"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "অৱৈধ UTF-8 সাঙ্কেতিক লিপি - অৱৈধ '%s'"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
"আখৰৰ উল্লেখ থকা '%-.*s' এ এটা আজ্ঞা থকা আখৰক সাঙ্কেতিক লিপিলৈ পৰিবৰ্তিত নকৰে"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"ৰিক্ত পদাৰ্থ '&;' দেখা গ'ল; বৈধ পদাৰ্থসমূহ হ'ল: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "পদাৰ্থৰ নাম '%s' অজ্ঞাত"
#: 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 &amp;"
msgstr ""
"পদাৰ্থ এটা ছেমিকলনেৰে অন্ত ন'হ'ল; পদাৰ্থ এটা আৰম্ভ কৰিব নিবিচাৰিও অতি সম্ভৱ আপুনি "
"এটা এম্পাৰছেন্দ আখৰ ব্যৱহাৰ কৰিছে - এম্পাৰছেন্দক &amp; হিচাপে নিৰ্গমন কৰক"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "প্ৰলেক্ষ এটা পদাৰ্থৰ সৈতে আৰম্ভ হ'ব লাগিব (যেনে <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -404,14 +379,14 @@ msgid ""
msgstr ""
"'%s' এটা বৈধ আখৰ নহয় '<' আখৰৰ পিছত; ইয়াৰ দ্বাৰা পদাৰ্থৰ নাম আৰম্ভ ন'হ'বও পাৰে"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr "ভুল আখৰ '%s', এটা '>' আখৰ প্ৰত্যাশিত ৰিক্ত পদাৰ্থৰ টেগ '%s' শেষ কৰিবলৈ"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -419,7 +394,7 @@ msgstr ""
"'%s' অক্ষৰ প্ৰত্যাশিত নহয়, এটা '=' চিহ্ন প্ৰত্যাশিত গুণৰ নাম '%s', পদাৰ্থ '%s' ৰ, "
"পিছত"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -430,7 +405,7 @@ msgstr ""
"'/' চিহ্ন বা কোনো বৈশিষ্ট্যৰ উপস্থিতি কাম্য; সম্ভৱতঃ কোনো বৈশিষ্ট্যৰ নামত অৱৈধ অক্ষৰ "
"ব্যৱহৃত হৈছে"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -439,7 +414,7 @@ msgstr ""
"'%s' অক্ষৰ অপ্ৰত্যাশিত, '%s' গুণৰ, পদাৰ্থ '%s' ৰ, মান নিৰ্ধাৰণৰ উদ্দেশ্যে সমান চিহ্নৰ "
"পিছত এটা উদ্ধৃতি চিহ্নৰ প্ৰাৰম্ভিক অংশ উপস্থিতি প্ৰত্যাশিত"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -448,7 +423,7 @@ msgstr ""
"'%s' অক্ষৰৰ ব্যৱহাৰ '</' ৰ পিছত বৈধ নহয়; '%s' দ্বাৰা কোনো পদাৰ্থৰ নাম আৰম্ভ কৰা "
"নাযাব"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -456,25 +431,25 @@ msgid ""
msgstr ""
"'%s' অক্ষৰৰ ব্যৱহাৰ বৈধ নহয় '%s' বদ্ধ পদাৰ্থৰ নামৰ পিছত; অনুমোদিত অক্ষৰ হ'ল '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "'%s' পদাৰ্থ বদ্ধ অৱস্থাত, বৰ্তমানে কোনো পদাৰ্থ খোলা অৱস্থাত নাই"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "'%s' পদাৰ্থ বদ্ধ অৱস্থাত, বৰ্তমানে '%s' পদাৰ্থ খোলা অৱস্থাত আছে"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "প্ৰলেক্ষ ৰিক্ত বা অকল ৰিক্ত স্থান আছিলে"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "খোলা বন্ধনীৰ প্ৰাৰম্ভিক চিহ্নৰ '<' ঠিক পিছত আলেখ্যন অপ্ৰত্যাশিতৰূপে সমাপ্ত হৈছে"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -482,7 +457,7 @@ msgid ""
msgstr ""
"খোলা পদাৰ্থসহ আলেখ্যন অপ্ৰত্যাশিতৰূপে সমাপ্ত হৈছে - '%s' পদাৰ্থ সৰ্বশেষ খোলা হৈছিল"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -491,19 +466,19 @@ msgstr ""
"নথি অপ্ৰত্যাশিতৰূপে সমাপ্ত হৈছে, <%s/> টেগ সমাপ্তিৰ বাবে খোলা বন্ধনী চিহ্নৰ অন্তিম "
"অংশৰ উপস্থিতি প্ৰত্যাশিত"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "পদাৰ্থৰ নামত আলেখ্যন অপ্ৰত্যাশিতৰূপে সমাপ্ত হৈছে"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "বৈশিষ্ট্যৰ নামত আলেখ্যন অপ্ৰত্যাশিতৰূপে সমাপ্ত হৈছে"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "পদাৰ্থৰ প্ৰাৰম্ভিক টেগত আলেখ্যন অপ্ৰত্যাশিতৰূপে সমাপ্ত হৈছে"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -511,16 +486,16 @@ msgstr ""
"বৈশিষ্ট্যৰ নামৰ পিছত উপস্থিত সমান চিহ্নৰ পিছত আলেখ্যন অপ্ৰত্যাশিতৰূপে সমাপ্ত হৈছে; "
"বৈশিষ্ট্যৰ মান অনুপস্থিত"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "বৈশিষ্ট্যৰ মানত আলেখ্যন অপ্ৰত্যাশিতৰূপে সমাপ্ত হৈছে"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "'%s' পদাৰ্থৰ অন্তিম টেগত আলেখ্যন অপ্ৰত্যাশিতৰূপে সমাপ্ত হৈছে"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "কোনো মন্তব্য বা প্ৰক্ৰিয়াকৰণৰ নিৰ্দেশত আলেখ্যন অপ্ৰত্যাশিতৰূপে সমাপ্ত হৈছে"
@ -957,61 +932,61 @@ msgstr "ৰূপান্তৰ কৰাৰ উদ্দেশ্যে প্
msgid "Character out of range for UTF-16"
msgstr "অক্ষৰ UTF-16 ৰ আয়ত্বৰ বাহিৰত"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "ব্যৱহাৰপ্ৰণালী:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "সহায়তা সংক্ৰান্ত বিকল্প:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "সহায়তা সংক্ৰান্ত বিকল্প প্ৰদৰ্শন কৰা হ'ব"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "সহায়তা সংক্ৰান্ত সমস্ত বিকল্প প্ৰদৰ্শন কৰা হ'ব"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "অনুপ্ৰয়োগ সংক্ৰান্ত বিকল্প:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "'%s' পূৰ্ণসংখ্যাৰ মান %s ৰ বাবে বিশ্লেষণ কৰিবলৈ ব্যৰ্থ"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "'%s' পূৰ্ণসংখ্যাৰ মান %s ৰ বাবে সীমাৰ বহিৰ্ভূত"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "'%s' ৰ দ্বীগুণ মান %s ৰ বাবে বিশ্লেষণ কৰিবলৈ ব্যৰ্থ"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "'%s' ৰ দ্বীগুণ মান %s ৰ বাবে সীমা বহিৰ্ভূত"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "%s বিকল্প বিশ্লেষণ কৰিবলৈ ব্যৰ্থ"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s ৰ তৰ্ক অনুপস্থিত"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "অজ্ঞাত বিকল্প %s"
@ -1128,8 +1103,8 @@ msgstr "%s লৈ বহুত ডাঙৰ count মান দিয়া হৈ
msgid "Stream is already closed"
msgstr "স্ৰোত ইতিমধ্যে বন্ধ"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "কৰ্ম বাতিল কৰা হৈছে"
@ -1269,7 +1244,7 @@ msgstr "আবৰ্জনা সমৰ্থিত নহয়"
msgid "File names cannot contain '%c'"
msgstr "নথিপত্ৰৰ নামত '%c' ব্যৱহাৰ কৰা নাযাব"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "ভলিউম দ্বাৰা mount প্ৰয়োগ কৰা নহয়"
@ -1290,14 +1265,6 @@ msgstr "নথিপত্ৰ enumerator-ত অসমাপ্ত কৰ্ম
msgid "File enumerator is already closed"
msgstr "নথিপত্ৰ enumerator ৰ বন্ধ"
#: gio/gfileicon.c:145
msgid "file"
msgstr "নথিপত্ৰ"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "আইকন ধাৰণকাৰী নথিপত্ৰ"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1707,55 +1674,11 @@ msgstr "নিৰ্গমৰ স্ৰোতে লিখা কাৰ্য
msgid "Source stream is already closed"
msgstr "উৎসৰ স্ৰোত ইতিমধ্যে বন্ধ"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "নাম"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "আইকনৰ নাম"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "নাম"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "আইকনৰ নাম ধাৰণকাৰী এটা শাৰী"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "অবিকল্পিত fallbacks ব্যৱহাৰ কৰক"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"'-' আখৰত নাম সৰু কৰি পোৱা অবিকল্পিত fallbacks ব্যৱহাৰ কৰা হ'ব নে নহয় । বহুত নাম "
"দিলে প্ৰথম নামৰ পিছৰ নাম আওকাণ কৰা হয় ।"
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "GThemedIcon encoding ৰ %d সংস্কৰণ পৰিচালন কৰিব নোৱাৰি"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "নথিপত্ৰৰ দেস্ক্ৰিপ্টৰ"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "পঢ়িব লগা নথিপত্ৰৰ দেস্ক্ৰিপ্টৰ"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "নথিপত্ৰৰ দেস্ক্ৰিপ্টৰ নিৰ্ব্বাচন কৰক"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "স্ৰোত বন্ধ কৰিলে নথিপত্ৰৰ দেস্ক্ৰিপ্টৰ বন্ধ কৰা হ'ব নে নহয়"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1772,16 +1695,12 @@ msgstr "unix বন্ধ কৰিবলৈ সমস্যা: %s"
msgid "Filesystem root"
msgstr "নথিপত্ৰপ্ৰণালীৰ root"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "নথিপত্ৰ দেস্ক্ৰিপ্টৰ য'ত লিখিব লাগে"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "unix লৈ লিখিবলৈ সমস্যা: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "ভলিউম দ্বাৰা ইজেক্ট প্ৰয়োগ কৰা নহয়"
@ -1817,3 +1736,72 @@ msgstr "দীঘল তালিকাৰ আকৃতি ব্যৱহাৰ
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[FILE...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "'%s' আখৰ পদাৰ্থৰ নামৰ আৰম্ভনিৰ বাবে বৈধ নহয়; & আখৰে এটা পদাৰ্থ আৰম্ভ কৰে; যদি "
#~ "এই এম্পাৰছেন্দ এটা পদাৰ্থ ন'হ'বলাগে, তাক &amp; হিচাপে নিৰ্গমন কৰক"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "'%s' আখৰ পদাৰ্থৰ নামৰ ভিতৰত বৈধ নহয়"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "ৰিক্ত আখৰৰ সঙ্কেত; এটা সংখ্যা থাকিব লাগে যেনে &#৪৫৪;"
#~ msgid "Unfinished entity reference"
#~ msgstr "অসম্পূৰ্ণ পদাৰ্থৰ উল্লেখ"
#~ msgid "Unfinished character reference"
#~ msgstr "অসম্পূৰ্ণ আখৰৰ উল্লেখ"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "অৱৈধ UTF-8 সাঙ্কেতিক লিপি - overlong ক্ৰম"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "অৱৈধ UTF-8 সাঙ্কেতিক লিপি - এটা আৰম্ভৰ আখৰ নহয়"
#~ msgid "file"
#~ msgstr "নথিপত্ৰ"
#~ msgid "The file containing the icon"
#~ msgstr "আইকন ধাৰণকাৰী নথিপত্ৰ"
#~ msgid "name"
#~ msgstr "নাম"
#~ msgid "The name of the icon"
#~ msgstr "আইকনৰ নাম"
#~ msgid "names"
#~ msgstr "নাম"
#~ msgid "An array containing the icon names"
#~ msgstr "আইকনৰ নাম ধাৰণকাৰী এটা শাৰী"
#~ msgid "use default fallbacks"
#~ msgstr "অবিকল্পিত fallbacks ব্যৱহাৰ কৰক"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "'-' আখৰত নাম সৰু কৰি পোৱা অবিকল্পিত fallbacks ব্যৱহাৰ কৰা হ'ব নে নহয় । বহুত "
#~ "নাম দিলে প্ৰথম নামৰ পিছৰ নাম আওকাণ কৰা হয় ।"
#~ msgid "File descriptor"
#~ msgstr "নথিপত্ৰৰ দেস্ক্ৰিপ্টৰ"
#~ msgid "The file descriptor to read from"
#~ msgstr "পঢ়িব লগা নথিপত্ৰৰ দেস্ক্ৰিপ্টৰ"
#~ msgid "Close file descriptor"
#~ msgstr "নথিপত্ৰৰ দেস্ক্ৰিপ্টৰ নিৰ্ব্বাচন কৰক"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "স্ৰোত বন্ধ কৰিলে নথিপত্ৰৰ দেস্ক্ৰিপ্টৰ বন্ধ কৰা হ'ব নে নহয়"
#~ msgid "The file descriptor to write to"
#~ msgstr "নথিপত্ৰ দেস্ক্ৰিপ্টৰ য'ত লিখিব লাগে"

288
po/az.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib.HEAD.az\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -298,53 +298,32 @@ msgstr "Fayl açma iflası '%s': fdopen() iflası: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Fayl açma iflası '%s': fdopen() iflası: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "%d. sətir %d. xarakterində xəta: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Hökmsüz UTF-8 kodlanmış mətn"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "%d sətirində xəta : %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Boş element '&;' tapldı; hökmlü elementlər: &amp; &quot; &lt; &qt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Element adının başındakı hərf '%s' hökmlü deyil; & hərf bir elementlə "
"başlayar; əgər bu ampersand bir element olaraq var sayılmazsa, &amp olaraq "
"işlədə bilərsiniz"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Xarakter '%s' bir element adının içində hökmlü deyildir"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Element adı '%s' bilinmir"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Element nöqtəli vergül ilə qurtarmır; böyük ehtimalla bir ampersand "
"işlətdiniz bir element başlanğıcı ola bilməyən hərf üçün ampersandı &amp "
"olaraq işlədin"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, fuzzy, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -353,16 +332,7 @@ msgstr ""
"'%s' i şərhləndirmə xətası, hərf içində bir rəqəm olmalıdır referens (məs; "
"&#234) - belki rəqəm çok böyükdür"
#: glib/gmarkup.c:660
#, fuzzy, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Xarakter referens '%s' icazə verilən xarakteri kodlaya bilmir"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Boş hərf referens; &#454 kimi bir rəqəm daxil etməlidir;"
#: glib/gmarkup.c:685
#: 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 "
@ -372,34 +342,36 @@ msgstr ""
"xarakteri elementə başlamaq üçün işlətmədiniz - ampersand yerinə &amp işlədə "
"bilərsiniz"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Bitirilməmiş varlıq mə'lumatı"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Bitirilməmiş xarakter mə'lumatı"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Hökmsüz UTF-8 kodlanmış mətn"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Hökmsüz UTF-8 kodlanmış mətn"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Hökmsüz UTF-8 kodlanmış mətn"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Xarakter referens '%s' icazə verilən xarakteri kodlaya bilmir"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Boş element '&;' tapldı; hökmlü elementlər: &amp; &quot; &lt; &qt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Element adı '%s' bilinmir"
#: 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 &amp;"
msgstr ""
"Element nöqtəli vergül ilə qurtarmır; böyük ehtimalla bir ampersand "
"işlətdiniz bir element başlanğıcı ola bilməyən hərf üçün ampersandı &amp "
"olaraq işlədin"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Sənəd bir element ilə başlamalıdır (məs. <kitab>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -408,7 +380,7 @@ msgstr ""
"'<' xarakterindən sonra gələn '%s' hökmlü bir xarakter deyil; bir element "
"adı olmaya bilər"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -417,14 +389,14 @@ msgstr ""
"Tək hərf '%s', Elementın başlanğıç etiketinin sonuna '>' xarakteri "
"gözlənilir '%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"Tək hərf '%s', xüsusiyyət adı '%s' olan element '%s' dən sonra '=' gözlənilir"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -435,7 +407,7 @@ msgstr ""
"gözlənilir, və ya bir xüsusiyyət; xüsusiyyət adında hökmsüz bir hərf "
"işlədilmiş ola bilərsiniz"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -444,7 +416,7 @@ msgstr ""
"Tək hərf '%s',element '%s'in xüsusiyyəti '%s''ə qiymət verilirkən bərabərdir "
"işarətindən sonra açıq alıntı işarəti gözlənilir"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -453,7 +425,7 @@ msgstr ""
"'</' xarakterlərini təqib edən '%s' hökmlü bir xarakter deyildir; '%s' bir "
"element adı ilə başlamır dəyəsən"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -462,26 +434,26 @@ msgstr ""
"Bağlı element '%s' dən sonra gələn '%s' hökmlü bir hərf deyildir; icazə "
"verilən hərf isə '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element '%s' bağlanıb, heç bir element açıq deyildir"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Element '%s' bağlanıb, fəqət indi açıq element '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Sənəd boşdur və ya təkcə boşluq xarakteri daxil etməkdədir"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Sənəd açıq üçbucaq mötərizə '<'den sonra gözlənilməz bir şəkildə qurtardı"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -490,7 +462,7 @@ msgstr ""
"Sənəd elementləri hələ açıq olaraq gözlənilməz bir şəkildə qurtardı - son "
"element '%s' açıq idi"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -499,19 +471,19 @@ msgstr ""
"Sənəd gözlənilməz bir şəkildə qurtardı, etiket <%s/> ilə qurtaran qapalı "
"üçbucaq mötərizə gözlənilir"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Sənəd bir elementin içində gözlənilməz bir şəkildə qurtardı"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Sənəd bir xüsusiyyət adı içində gözlənilməz bir şəkildə qurtardı"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Sənəd bir element-açma etiketi içində gözlənilməz bir şəkildə qurtardı"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -519,17 +491,17 @@ msgstr ""
"Sənəd xüsusiyyət adını təqib edən bərabərdir işarətindən sonra gözlənilməz "
"bir şəkildə qurtardı: xüsusiyyət qiyməti yoxdur"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
"Sənəd bir xüsusiyyət qiyməti içində ikən gözlənilməz bir şəkildə qurtardı"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Sənəd bağlı etiket '%s' içində gözlənilməz bir şəkildə qurtardı"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Sənəd bir şərh və ya gedişat göstərişi içində ikən gözlənilməz bir şəkildə "
@ -974,61 +946,61 @@ msgstr "dönüşdürmə girişi içində hökmsüz qatar"
msgid "Character out of range for UTF-16"
msgstr "UTF-16 üçün hərf sərhədinin xaricindədir"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr ""
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr ""
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr ""
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr ""
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr ""
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr ""
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr ""
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, fuzzy, c-format
msgid "Error parsing option %s"
msgstr "Dönüşdürmə sırasında xəta yarandı: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr ""
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr ""
@ -1145,8 +1117,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1288,7 +1260,7 @@ msgstr "Simvolik körpülər dəstəklənmir"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1309,15 +1281,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "`%s' URI-sinin qovşaq adı səhv qaçırılmış"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1729,55 +1692,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "`%s' URI-sinin qovşaq adı səhv qaçırılmış"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Fayl oxuma xətası: '%s': %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1794,16 +1713,12 @@ msgstr "%d sətirində xəta : %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Dönüşdürmə sırasında xəta yarandı: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1841,6 +1756,47 @@ msgstr ""
msgid "[FILE...]"
msgstr ""
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Element adının başındakı hərf '%s' hökmlü deyil; & hərf bir elementlə "
#~ "başlayar; əgər bu ampersand bir element olaraq var sayılmazsa, &amp "
#~ "olaraq işlədə bilərsiniz"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Xarakter '%s' bir element adının içində hökmlü deyildir"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Boş hərf referens; &#454 kimi bir rəqəm daxil etməlidir;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Bitirilməmiş varlıq mə'lumatı"
#~ msgid "Unfinished character reference"
#~ msgstr "Bitirilməmiş xarakter mə'lumatı"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Hökmsüz UTF-8 kodlanmış mətn"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Hökmsüz UTF-8 kodlanmış mətn"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "`%s' URI-sinin qovşaq adı səhv qaçırılmış"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "`%s' URI-sinin qovşaq adı səhv qaçırılmış"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Fayl oxuma xətası: '%s': %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Dönüşdürmə sırasında xəta yarandı: %s"

308
po/be.po
View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -347,59 +347,35 @@ msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Збой мапаваньня файлу '%s': збой mmap(): %s"
# glib/gmarkup.c:219
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Памылка ў радку %d сымбаль %d: %s"
# glib/gmarkup.c:837 glib/gmarkup.c:865 glib/gmarkup.c:896
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Недапушчальна закадаваны тэкст UTF-8"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
# glib/gmarkup.c:303
#: glib/gmarkup.c:389
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Памылка ў радку %d: %s"
# glib/gmarkup.c:382
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Пусты запіс \"&;\" адшуканы; дапушчальныя: &amp; &quot; &lt; &gt; &apos;"
# glib/gmarkup.c:392
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Сымбаль \"%s\" ня зьяўляецца дапушчальным напачатку назвы сутнасьці; сымбаль "
"& пачынае пасьлядоўнасьць; калі гэты сымбаль ня мусіць быць часткай запісу, "
"тады экрануйце яго запісам &amp;"
# glib/gmarkup.c:428
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Сымбаль \"%s\" недапушчальны ўнутры назвы сутнасьці"
# glib/gmarkup.c:472
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Невядомая назва сутнасьці \"%s\""
# glib/gmarkup.c:482
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Запіс не канчаецца кропкай з коскай; здаецца, што сымбаль & быў выкарыстаны "
"не для пазначэньня пачатку сутнасьці - экрануйце яго як &amp;"
# glib/gmarkup.c:528
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -408,19 +384,8 @@ msgstr ""
"Збой разбору \"%-.*s\", дзе мусіць быць нумар унутры лучыва да сымбалю "
"(&#234; напрыклад) - мажліва, нумар завялікі"
# glib/gmarkup.c:553
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Лучыва на сымбаль '%-.*s' не вызначае дазволены сымбаль"
# glib/gmarkup.c:570
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Пустое лучыва да сымбалю: мусіць уключаць нумар, напрыклад &#454;"
# glib/gmarkup.c:580
#: glib/gmarkup.c:685
#: 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 "
@ -429,39 +394,41 @@ msgstr ""
"Лучыва да сымбалю не канчаецца кропкай з коскай; здаецца, што сымбаль & быў "
"выкарыстаны ня для пазначэньня пачатка сутнасьці - экрануйце яго як &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Незавершанае лучыва сутнасьці"
# glib/gmarkup.c:553
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Лучыва на сымбаль '%-.*s' не вызначае дазволены сымбаль"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Незавершанае лучыва сымбалю"
# glib/gmarkup.c:382
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Пусты запіс \"&;\" адшуканы; дапушчальныя: &amp; &quot; &lt; &gt; &apos;"
# glib/gmarkup.c:837 glib/gmarkup.c:865 glib/gmarkup.c:896
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Недапушчальна закадаваны тэкст UTF-8"
# glib/gmarkup.c:837 glib/gmarkup.c:865 glib/gmarkup.c:896
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Недапушчальна закадаваны тэкст UTF-8"
# glib/gmarkup.c:837 glib/gmarkup.c:865 glib/gmarkup.c:896
#: glib/gmarkup.c:1130
# glib/gmarkup.c:472
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Недапушчальна закадаваны тэкст UTF-8"
msgid "Entity name '%-.*s' is not known"
msgstr "Невядомая назва сутнасьці \"%s\""
# glib/gmarkup.c:482
#: 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 &amp;"
msgstr ""
"Запіс не канчаецца кропкай з коскай; здаецца, што сымбаль & быў выкарыстаны "
"не для пазначэньня пачатку сутнасьці - экрануйце яго як &amp;"
# glib/gmarkup.c:932
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Дакумэнт мусіць пачынацца з элемэнту (напрыклад <book>)"
# glib/gmarkup.c:970
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -471,7 +438,7 @@ msgstr ""
"сымбаль ня можа пачынаць назву элемэнту"
# glib/gmarkup.c:1033
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -481,7 +448,7 @@ msgstr ""
"\""
# glib/gmarkup.c:1120
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -490,7 +457,7 @@ msgstr ""
"элемэнту \"%s\""
# glib/gmarkup.c:1161
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -502,7 +469,7 @@ msgstr ""
"выкарыстаны недапушчальны сымбаль у назве атрыбуту"
# glib/gmarkup.c:1244
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -512,7 +479,7 @@ msgstr ""
"надаецца значэньне атрыбуту \"%s\" элемэнту \"%s\""
# glib/gmarkup.c:1384
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -522,7 +489,7 @@ msgstr ""
"s\" ня можа пачынаць назву элемэнту"
# glib/gmarkup.c:1422
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -532,30 +499,30 @@ msgstr ""
"\"; дапушчальным сымбалем зьяўляецца \">\""
# glib/gmarkup.c:1433
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
"Элемэнт \"%s\" быў закрыты, аніводны элемэнт у бягучы момант не адкрыты"
# glib/gmarkup.c:1442
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Элемэнт \"%s\" быў закрыты, але ў гэты час адкрыты \"%s\""
# glib/gmarkup.c:1574
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Дакумэнт быў пусты ці утрымліваў толькі прагалы"
# glib/gmarkup.c:1588
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Дакумэнт нечакана скончыўся адразу пасьля вуглавой дужкі \"<\""
# glib/gmarkup.c:1596 glib/gmarkup.c:1640
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -565,7 +532,7 @@ msgstr ""
"апошнім адкрытым элемэнтам"
# glib/gmarkup.c:1604
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -574,22 +541,22 @@ msgstr ""
"Дакумэнт нечакана скончыўся, чакаецца вуглавая дужка якая закрывае тэг <%s/>"
# glib/gmarkup.c:1610
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Дакумэнт нечакана скончыўся ўнутры назвы элемэнту"
# glib/gmarkup.c:1615
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Дакумэнт нечакана скончыўся ўнутры назвы атрыбуту"
# glib/gmarkup.c:1620
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Дакумэнт нечакана скончыўся ўнутры элемэнту які адкрывае тэг."
# glib/gmarkup.c:1626
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -598,18 +565,18 @@ msgstr ""
"атрыбуту: не пазначана значэньне атрыбуту"
# glib/gmarkup.c:1633
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Дакумэнт нечакана скончыўся ўнутры значэньня атрыбуту"
# glib/gmarkup.c:1648
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Дакумэнт нечакана скончыўся ўнутры элемэнту \"%s\" які закрывае тэг"
# glib/gmarkup.c:1654
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Дакумэнт нечакана скончыўся ўнутры камэнтару ці інструкцыі"
@ -1088,63 +1055,63 @@ msgstr "Недапушчальная пасьлядоўнасьць на ўва
msgid "Character out of range for UTF-16"
msgstr "Сымбаль па-за дыяпазонам UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Выкарыстаньне:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[МОЖНАСЬЦЬ...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Можнасьці дапамогі:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Адлюстраваць можнасьці дапамогі"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Адлюстраваць усе можнасьці дапамогі"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Можнасьці дастасаваньня:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Немагчыма разабраць цэлае значэньне '%s' для %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Цэлае значэньне '%s' для %s па-за межамі"
#: glib/goption.c:885
#: glib/goption.c:994
#, fuzzy, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Немагчыма разабраць цэлае значэньне '%s' для %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, fuzzy, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Цэлае значэньне '%s' для %s па-за межамі"
# glib/gconvert.c:597 glib/gconvert.c:813 glib/giochannel.c:1289
# glib/giochannel.c:2175
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, fuzzy, c-format
msgid "Error parsing option %s"
msgstr "Памылка ў часе пераўтварэньня: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Нестае аргумэнту для %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Невядомая можнасьць %s"
@ -1272,8 +1239,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1416,7 +1383,7 @@ msgstr "Сымбалічныя спасылкі не падтрымліваюц
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1437,16 +1404,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
# glib/gconvert.c:1632
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Назва вузлу ў URI \"%s\" недапушчальная"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1897,57 +1854,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
# glib/gconvert.c:1632
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "Назва вузлу ў URI \"%s\" недапушчальная"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
# glib/gfileutils.c:348
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Памылка чытаньня файлу \"%s\": %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
# glib/gfileutils.c:348
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
@ -1966,10 +1877,6 @@ msgstr "Памылка ў радку %d: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
# glib/gconvert.c:597 glib/gconvert.c:813 glib/giochannel.c:1289
# glib/giochannel.c:2175
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
@ -1977,7 +1884,7 @@ msgstr ""
msgid "Error writing to unix: %s"
msgstr "Памылка ў часе пераўтварэньня: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -2018,6 +1925,55 @@ msgstr ""
msgid "[FILE...]"
msgstr "[МОЖНАСЬЦЬ...]"
# glib/gmarkup.c:392
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Сымбаль \"%s\" ня зьяўляецца дапушчальным напачатку назвы сутнасьці; "
#~ "сымбаль & пачынае пасьлядоўнасьць; калі гэты сымбаль ня мусіць быць "
#~ "часткай запісу, тады экрануйце яго запісам &amp;"
# glib/gmarkup.c:428
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Сымбаль \"%s\" недапушчальны ўнутры назвы сутнасьці"
# glib/gmarkup.c:570
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Пустое лучыва да сымбалю: мусіць уключаць нумар, напрыклад &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Незавершанае лучыва сутнасьці"
#~ msgid "Unfinished character reference"
#~ msgstr "Незавершанае лучыва сымбалю"
# glib/gmarkup.c:837 glib/gmarkup.c:865 glib/gmarkup.c:896
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Недапушчальна закадаваны тэкст UTF-8"
# glib/gmarkup.c:837 glib/gmarkup.c:865 glib/gmarkup.c:896
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Недапушчальна закадаваны тэкст UTF-8"
# glib/gconvert.c:1632
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Назва вузлу ў URI \"%s\" недапушчальная"
# glib/gconvert.c:1632
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "Назва вузлу ў URI \"%s\" недапушчальная"
# glib/gfileutils.c:348
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Памылка чытаньня файлу \"%s\": %s"
# glib/gconvert.c:597 glib/gconvert.c:813 glib/giochannel.c:1289
# glib/giochannel.c:2175
#, fuzzy

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -352,57 +352,35 @@ msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Niemahčyma zmapavać fajł '%s': funkcyja mmap() vyvieła: %s"
# glib/gmarkup.c:219
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Pamyłka ŭ %d radku pry znaku %d: "
# glib/gmarkup.c:837 glib/gmarkup.c:865 glib/gmarkup.c:896
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Niapravilna kadavany tekst UTF-8 - niapravilny \"%s\""
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
# glib/gmarkup.c:303
#: glib/gmarkup.c:389
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Pamyłka ŭ radku %d: %s"
# glib/gmarkup.c:382
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "Pusty zapis '&;' adšukany; dapuščalnyja: &amp; &quot; &lt; &gt; &apos;"
# glib/gmarkup.c:392
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Znak '%s' niedapuščalny na pačatku nazvy adzinki; znak & pačynaje adzinku; "
"kali hety znak nie pavinien pačynać adzinki, zamianicie jaho na znak &amp;"
# glib/gmarkup.c:428
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Znak '%s' niedapuščalny ŭnutry nazvy adzinki"
# glib/gmarkup.c:472
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Nieviadomaja nazva adzinki '%s'"
# glib/gmarkup.c:482
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Zapis nie kančajecca kropkaj z koskaj; zdajecca, vykarystali znak &, jaki "
"nia mieŭ aznačać pačatku adzinki — zamianicie jaho na &amp;"
# glib/gmarkup.c:528
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -411,19 +389,8 @@ msgstr ""
"Niemahčyma pierapracavać '%-.*s', dzie musić być ličba unutry łučyva da "
"znaku (naprykład &#234;) — mahčyma, ličba zavialikaja"
# glib/gmarkup.c:553
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Spasyłka na znak '%-.*s' nie źjaŭlajecca zapisam dazvolenaha znaku"
# glib/gmarkup.c:570
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Pustaja spasyłka na znak: u joj pavinien być numar, naprykład &#454;"
# glib/gmarkup.c:580
#: glib/gmarkup.c:685
#: 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 "
@ -433,37 +400,40 @@ msgstr ""
"nie dla paznačeńnia pačatku adzinki — u takim vypadku zamianicie jaho jak "
"&amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Niezavieršanaja spasyłka na adzinku"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Niezavieršanaja spasyłka na znak"
# glib/gmarkup.c:837 glib/gmarkup.c:865 glib/gmarkup.c:896
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Niapravilna kadavany tekst UTF-8 - zadoŭhaja paśladoŭnaść"
# glib/gmarkup.c:837 glib/gmarkup.c:865 glib/gmarkup.c:896
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Niapravilna kadavany tekst UTF-8 - nie pačatkovy znak"
# glib/gmarkup.c:837 glib/gmarkup.c:865 glib/gmarkup.c:896
#: glib/gmarkup.c:1130
# glib/gmarkup.c:553
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Niapravilna kadavany tekst UTF-8 - niapravilny \"%s\""
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Spasyłka na znak '%-.*s' nie źjaŭlajecca zapisam dazvolenaha znaku"
# glib/gmarkup.c:382
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "Pusty zapis '&;' adšukany; dapuščalnyja: &amp; &quot; &lt; &gt; &apos;"
# glib/gmarkup.c:472
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Nieviadomaja nazva adzinki '%s'"
# glib/gmarkup.c:482
#: 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 &amp;"
msgstr ""
"Zapis nie kančajecca kropkaj z koskaj; zdajecca, vykarystali znak &, jaki "
"nia mieŭ aznačać pačatku adzinki — zamianicie jaho na &amp;"
# glib/gmarkup.c:932
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dakument musić pačynacca z elementu (naprykład <book>)"
# glib/gmarkup.c:970
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -473,7 +443,7 @@ msgstr ""
"pačynać nazvy adzinki"
# glib/gmarkup.c:1033
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -482,7 +452,7 @@ msgstr ""
"Dziŭny znak '%s', čakaŭsia znak '>' dla zakančeńnia značnika elementu '%s'"
# glib/gmarkup.c:1120
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -490,7 +460,7 @@ msgstr ""
"Dziŭny znak '%s', čakaŭsia znak '=' paśla nazvy atrybutu '%s' elementu '%s'"
# glib/gmarkup.c:1161
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -502,7 +472,7 @@ msgstr ""
"niedapuščalny znak u nazovie atrybutu"
# glib/gmarkup.c:1244
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -512,7 +482,7 @@ msgstr ""
"nadajecca značeńnie atrybutu '%s' elementu '%s'"
# glib/gmarkup.c:1384
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -522,7 +492,7 @@ msgstr ""
"pačynać nazovu elementu"
# glib/gmarkup.c:1422
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -532,29 +502,29 @@ msgstr ""
"dapuščalnym znakam źjaŭlajecca '>'"
# glib/gmarkup.c:1433
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element '%s' byŭ začynieny, dziejna niama adčynienych elementaŭ"
# glib/gmarkup.c:1442
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Element '%s' byŭ začynieny, ale dziejna adčynieny '%s'"
# glib/gmarkup.c:1574
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Dakument byŭ pusty albo ŭtrymlivaŭ tolki prabieły"
# glib/gmarkup.c:1588
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Adrazu paśla znaku '%s' dakument niečakana skončyŭsia"
# glib/gmarkup.c:1596 glib/gmarkup.c:1640
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -564,7 +534,7 @@ msgstr ""
"— '%s' byŭ apošnim adčynienym elementam"
# glib/gmarkup.c:1604
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -574,22 +544,22 @@ msgstr ""
"značnik <%s/>"
# glib/gmarkup.c:1610
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Dakument niečakana skončyŭsia ŭnutry nazvy elementu"
# glib/gmarkup.c:1615
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dakument niečakana skončyŭsia ŭnutry nazvy atrybutu"
# glib/gmarkup.c:1620
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dakument niečakana skončyŭsia ŭnutry elementu, jaki adkryvaje značnik."
# glib/gmarkup.c:1626
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -598,18 +568,18 @@ msgstr ""
"atrybutu: niama vartaści atrybutu"
# glib/gmarkup.c:1633
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dakument niečakana skončyŭsia ŭnutry vartaści atrybutu"
# glib/gmarkup.c:1648
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Dakument niečakana skončyŭsia ŭnutry značnika zamykańnia elementu '%s'"
# glib/gmarkup.c:1654
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Dakument niečakana skončyŭsia ŭnutry kamentara albo instrukcyi"
@ -1092,63 +1062,63 @@ msgstr "Niapravilny paradak na ŭvachodzie kanversii"
msgid "Character out of range for UTF-16"
msgstr "Znak pa-za dyjapazonam UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Vykarystańnie:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPCYJA...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Opcyi dapamohi:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Pakažy opcyi dapamohi"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Pakažy ŭsie opcyi dapamohi"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Opcyi aplikacyi:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Niemahčyma pierapracavać ličbavaj vartaści '%s' dla %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Ličbavaja vartaść '%s' dla %s pa-za dapuščalnymi miežami"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Nielha pierapracavać padvojnuju ličbavuju vartaść '%s' dla %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Padvojnaja ličbavaja vartaść '%s' dla %s pa-za dapuščalnymi miežami"
# glib/gconvert.c:597 glib/gconvert.c:813 glib/giochannel.c:1289
# glib/giochannel.c:2175
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Pamyłka padčas pierapracoŭki %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Adsutny parametar dla %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Nieviadomaja opcyja %s"
@ -1277,8 +1247,8 @@ msgstr "Funkcyi %s pieradadzieny nadta vialiki ličylnik"
msgid "Stream is already closed"
msgstr "Płyń užo začynienaja"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Aperacyja anulavanaja"
@ -1420,7 +1390,7 @@ msgstr "Śmietnica nie padtrymlivajacca"
msgid "File names cannot contain '%c'"
msgstr "Nazvy fajłaŭ nia mohuć utrymlivać \"%c\""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "masiŭ nie zaimplementavaŭ mantavańnia (mount)"
@ -1441,16 +1411,6 @@ msgstr "U fajłavaha ličylnika jość važkaja aperacyja"
msgid "File enumerator is already closed"
msgstr "Fajłavy ličylnik užo začynieny"
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
# glib/gconvert.c:1632
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Niapravilnaja nazva hostu ŭ URI '%s' "
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1902,59 +1862,11 @@ msgstr "Vyjściovaja płyń nie zaimplementavała zapisu (write)"
msgid "Source stream is already closed"
msgstr "Kryničnaja płyń užo začynienaja"
#: gio/gthemedicon.c:211
#, fuzzy
msgid "name"
msgstr "Nienazvany"
# glib/gconvert.c:1632
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "Niapravilnaja nazva hostu ŭ URI '%s' "
#: gio/gthemedicon.c:223
#, fuzzy
msgid "names"
msgstr "Nienazvany"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
# glib/gfileutils.c:348
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Pamyłka atrymańnia stat() dla fajłavaha deskryptara: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
# glib/gfileutils.c:348
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
@ -1973,10 +1885,6 @@ msgstr "Pamyłka začynieńnia unix: %s"
msgid "Filesystem root"
msgstr "Korań fajłavaj systemy"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
# glib/gconvert.c:597 glib/gconvert.c:813 glib/giochannel.c:1289
# glib/giochannel.c:2175
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
@ -1984,7 +1892,7 @@ msgstr ""
msgid "Error writing to unix: %s"
msgstr "Pamyłka zapisu ŭ unix: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "masiŭ nie zaimplementavaŭ vysoŭvańnia (eject)"
@ -2023,6 +1931,62 @@ msgstr "užyj daŭhi śpiskavy farmat"
msgid "[FILE...]"
msgstr "[FAJŁ...]"
# glib/gmarkup.c:392
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Znak '%s' niedapuščalny na pačatku nazvy adzinki; znak & pačynaje "
#~ "adzinku; kali hety znak nie pavinien pačynać adzinki, zamianicie jaho na "
#~ "znak &amp;"
# glib/gmarkup.c:428
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Znak '%s' niedapuščalny ŭnutry nazvy adzinki"
# glib/gmarkup.c:570
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr ""
#~ "Pustaja spasyłka na znak: u joj pavinien być numar, naprykład &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Niezavieršanaja spasyłka na adzinku"
#~ msgid "Unfinished character reference"
#~ msgstr "Niezavieršanaja spasyłka na znak"
# glib/gmarkup.c:837 glib/gmarkup.c:865 glib/gmarkup.c:896
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Niapravilna kadavany tekst UTF-8 - zadoŭhaja paśladoŭnaść"
# glib/gmarkup.c:837 glib/gmarkup.c:865 glib/gmarkup.c:896
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Niapravilna kadavany tekst UTF-8 - nie pačatkovy znak"
# glib/gconvert.c:1632
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Niapravilnaja nazva hostu ŭ URI '%s' "
#, fuzzy
#~ msgid "name"
#~ msgstr "Nienazvany"
# glib/gconvert.c:1632
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "Niapravilnaja nazva hostu ŭ URI '%s' "
#, fuzzy
#~ msgid "names"
#~ msgstr "Nienazvany"
# glib/gfileutils.c:348
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Pamyłka atrymańnia stat() dla fajłavaha deskryptara: %s"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u bajt"

319
po/bg.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib trunk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-17 14:06+0200\n"
"Last-Translator: Alexander Shopov <ash@contact.bg>\n"
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
@ -312,54 +312,32 @@ msgstr ""
"Неуспех при отваряне на файл в паметта „%s“: неуспешно изпълнение на mmap(): "
"%s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Грешка на ред %d, знак %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Неправилно кодиран текст в UTF-8 — „%s“ е грешен"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Грешка на ред %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Намерена е празна заместваща последователност: „&;“. Валидни "
"последователности са: „&amp;“, „&quot;“, „&lt;“, „&gt;“, „&apos;“"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Заместваща последователност не може да започва със знака „%s“. Тя трябва да "
"започва със знака „&“. Ако той не трябва да започва заместваща "
"последователност, той може да се екранира така: „&amp;“"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Знакът „%s“ не може да се съдържа в заместваща последователност"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Заместващата последователност „%s“ е неизвестна"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Заместващата последователност не завършва с „;“. Най-вероятно сте използвали "
"амперсанд, без той да е начало на заместваща последователност. Представете "
"амперсанда чрез „&amp;“"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -368,16 +346,7 @@ msgstr ""
"Грешка при анализ на „%-.*s“, което трябва да е число в указател на знак "
"(напр. &#234;). Вероятно числото е твърде голямо"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Указателят на знак „%-.*s“ не представя разрешен знак при декодиране"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Празен указател на знак. Трябва да включва число, напр. &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -387,32 +356,37 @@ msgstr ""
"без той да е начало на заместваща последователност. Представете амперсанда "
"чрез „&amp;“"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Незавършена заместваща последователност"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Незавършен указател на знак"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Неправилно кодиран текст в UTF-8 — прекалено дълга последователност"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Неправилно кодиран текст в UTF-8 — не може да се започва с този знак"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Неправилно кодиран текст в UTF-8 — „%s“ е грешен"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Указателят на знак „%-.*s“ не представя разрешен знак при декодиране"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Намерена е празна заместваща последователност: „&;“. Валидни "
"последователности са: „&amp;“, „&quot;“, „&lt;“, „&gt;“, „&apos;“"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Заместващата последователност „%s“ е неизвестна"
#: 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 &amp;"
msgstr ""
"Заместващата последователност не завършва с „;“. Най-вероятно сте използвали "
"амперсанд, без той да е начало на заместваща последователност. Представете "
"амперсанда чрез „&amp;“"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Документът трябва да започва с елемент (напр. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -420,7 +394,7 @@ msgid ""
msgstr ""
"„%s“ е неправилен знак след „<“. Името на елемент не може да започне с него"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -429,7 +403,7 @@ msgstr ""
"Неподходящ знак „%s“, очаква се етикетът на празния елемент „%s“ да завърши "
"с „>“"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -437,7 +411,7 @@ msgstr ""
"Неподходящ знак „%s“, очаква се „=“ след името на атрибут „%s“ на елемент „%"
"s“"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -448,7 +422,7 @@ msgstr ""
"завърши със знак „>“ или „/“, или евентуално да продължи с атрибут. Най-"
"вероятно използвате неправилен знак в името на атрибут"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -457,7 +431,7 @@ msgstr ""
"Неподходящ знак „%s“, очаква се знакът „\"“ след знака за равенство, когато "
"се присвоява стойност на атрибута „%s“ на елемент „%s“"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -465,7 +439,7 @@ msgid ""
msgstr ""
"„%s“ е неправилен знак след „</“. Името на елемент не може да започва с „%s“"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -474,26 +448,26 @@ msgstr ""
"„%s“ е неправилен знак при завършването на затварящ етикет с име „%s“. "
"Позволен е знакът „>“"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Елементът „%s“ е затворен, няма текущо отворен елемент"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Елементът „%s“ е затворен, но текущо е отворен елемент „%s“"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Документът е празен или съдържа само празни знаци"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Документът завършва неочаквано веднага след отваряща счупена скоба — „<“"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -502,7 +476,7 @@ msgstr ""
"Документът завършва неочаквано — има отворени елементи. Последно отворен е „%"
"s“"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -511,19 +485,19 @@ msgstr ""
"Документът завършва неочаквано, очаква се затваряща счупена скоба да завърши "
"етикета <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Документът завършва неочаквано в името на елемент"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Документът завършва неочаквано в името на атрибут"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Документът завършва неочаквано в отварящ етикет на елемент "
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -531,16 +505,16 @@ msgstr ""
"Документът завършва неочаквано след знака за равенство следващ името на "
"атрибута. Атрибутът няма стойност"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Документът завършва неочаквано вътре в стойността на атрибут"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Документът завършва неочаквано в затварящия етикет на елемент „%s“"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Документът завършва неочаквано в коментар или инструкция за обработка"
@ -988,65 +962,65 @@ msgstr "Неправилна последователност на входа з
msgid "Character out of range for UTF-16"
msgstr "Знак извън обхвата на UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Употреба:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[ОПЦИЯ…]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Настройки на помощта:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Показване на настройките на помощта"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Показване на всички настройки на помощта"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Настройки на приложението:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Не може да се анализира целочислената стойност „%s“ за %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr ""
"Целочислената стойност „%s“ за %s е извън интервала на допустимите стойности"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
"Не може да се анализира стойността с повишена точност double „%s“ за %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
"Стойността с повишена точност — double „%s“ за %s е извън интервала на "
"допустимите стойности"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Грешка при анализа на опцията: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Липсва аргумент за %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Непозната опция %s"
@ -1170,8 +1144,8 @@ msgstr "Подадена е прекалено голяма стойност н
msgid "Stream is already closed"
msgstr "Потокът вече е затворен"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Действието е прекратено"
@ -1311,7 +1285,7 @@ msgstr "Не се поддържа кошче"
msgid "File names cannot contain '%c'"
msgstr "Файловите имена не могат да съдържат „%c“"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "томът не поддържа монтиране"
@ -1332,14 +1306,6 @@ msgstr "Файловият брояч все още е е привършил"
msgid "File enumerator is already closed"
msgstr "Файловият брояч вече е затворен"
#: gio/gfileicon.c:145
msgid "file"
msgstr "файл"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "Файлът съдържащ иконата"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1749,56 +1715,11 @@ msgstr "Изходният поток не поддържа запис"
msgid "Source stream is already closed"
msgstr "Изходният поток вече е затворен"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "име"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Името на иконата"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "имена"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Масив с имена на икони"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "използване на стандартните резервни настройки"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Дали да се използват стандартните резервни настройки, които се намират при "
"съкращаване на името при знаците „-“. Ако са дадени множество имена, се "
"взема само първото."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Версия %d на кодирането GThemedIcon не се поддържа"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Файлов дескриптор"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "Файловият дескриптор от който да се чете"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Затваряне на файловия дескриптор"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "Дали файловият дескриптор да се затваря със затварянето на потока"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1815,16 +1736,12 @@ msgstr "Грешка при затваряне на ЮНИКС: %s"
msgid "Filesystem root"
msgstr "Коренова папка на файловата система"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "Дескрипторът на файла, в който да се записва"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Грешка при запис към ЮНИКС: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "томът не поддържа изваждане"
@ -1860,3 +1777,75 @@ msgstr "ползване на дълъг формат"
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[ФАЙЛ…]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Заместваща последователност не може да започва със знака „%s“. Тя трябва "
#~ "да започва със знака „&“. Ако той не трябва да започва заместваща "
#~ "последователност, той може да се екранира така: „&amp;“"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Знакът „%s“ не може да се съдържа в заместваща последователност"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Празен указател на знак. Трябва да включва число, напр. &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Незавършена заместваща последователност"
#~ msgid "Unfinished character reference"
#~ msgstr "Незавършен указател на знак"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Неправилно кодиран текст в UTF-8 — прекалено дълга последователност"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr ""
#~ "Неправилно кодиран текст в UTF-8 — не може да се започва с този знак"
#~ msgid "file"
#~ msgstr "файл"
#~ msgid "The file containing the icon"
#~ msgstr "Файлът съдържащ иконата"
#~ msgid "name"
#~ msgstr "име"
#~ msgid "The name of the icon"
#~ msgstr "Името на иконата"
#~ msgid "names"
#~ msgstr "имена"
#~ msgid "An array containing the icon names"
#~ msgstr "Масив с имена на икони"
#~ msgid "use default fallbacks"
#~ msgstr "използване на стандартните резервни настройки"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Дали да се използват стандартните резервни настройки, които се намират "
#~ "при съкращаване на името при знаците „-“. Ако са дадени множество имена, "
#~ "се взема само първото."
#~ msgid "File descriptor"
#~ msgstr "Файлов дескриптор"
#~ msgid "The file descriptor to read from"
#~ msgstr "Файловият дескриптор от който да се чете"
#~ msgid "Close file descriptor"
#~ msgstr "Затваряне на файловия дескриптор"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "Дали файловият дескриптор да се затваря със затварянето на потока"
#~ msgid "The file descriptor to write to"
#~ msgstr "Дескрипторът на файла, в който да се записва"

279
po/bn.po
View File

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib 0.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2006-08-31 21:21+0600\n"
"Last-Translator: Khandakar Mujahidul Islam <suzan@bengalinux.org>\n"
"Language-Team: Bengali <gnome-translation@bengalinux.org>\n"
@ -299,50 +299,32 @@ msgstr "ফাইল '%s' খুলতে ব্যর্থ: open() ব্য
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "ফাইল '%s' ম্যাপ করতে ব্যর্থ: mmap() ব্যর্থ: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "লাইন %d ক্যর %d এ ভুল: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "অগ্রহনযোগ্য ইউটিএফ-৮ টেক্সট"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "লাইন %d এ ভুল: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "শূন্য '&;' দেখা গিয়েছে; গ্রহনযোগ্য হচ্ছে: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"কোন বস্তু (entity) এর নামের শুরুতে '%s' অক্ষরটি গ্রহনযোগ্য নয়; & অক্ষরটি একটি বস্তুর "
"নাম শুরু করে; এই এমপারস্যান্ড যদি কোনো বস্তু না হয়, তাহলে এটাকে &amp হিসাবে লিখুন"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "'%s' অক্ষরটি কোনো বস্তুর মাঝখানে গ্রহনযোগ্য নয়"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "'%s' নামের বস্তুটি অজানা"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"একটি বস্তু (entity) সেমিকোলন দিয়ে শেষ হয়নি; আপনি সম্ভবত এমপারস্যান্ড অক্ষরটি কোন "
"বস্তু শুরু করার জন্য ব্যবহার করেনি - সেক্ষেত্রে এস্কেপ এমপারস্যান্ড কে লিখুন &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -351,16 +333,7 @@ msgstr ""
"পার্স করতে অক্ষম '%-.*s', যা অক্ষর তথ্যসূত্র অভ্যন্তরে একটি অংক (উদাহরণ সরূপ; &#234) "
"- হয়তোবা অংকটি অতি দীর্ঘ"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "অক্ষর তথ্যসূত্র '%-.*s' অনুমতিপ্রাপ্ত অক্ষর এনকোড করেনা"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "শূন্য অক্ষরের রেফারেন্স; &#454 এর মত সংখা থাকতে হবে"
#: glib/gmarkup.c:685
#: 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,41 +342,41 @@ msgstr ""
"অক্ষরের রেফারেন্স সেমিকোলন দিয়ে শেষ হয়নি; আপনি সম্ভবত এমপারস্যান্ড অক্ষরটি কোন বস্তু "
"শুরু করার জন্য ব্যবহার করেনি - সেক্ষেত্রে এস্কেপ এমপারস্যান্ড কে লিখুন &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "অসম্পূর্ণ বস্তুর রেফারেন্স"
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "অক্ষর তথ্যসূত্র '%-.*s' অনুমতিপ্রাপ্ত অক্ষর এনকোড করেনা"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "অসম্পূর্ণ অক্ষরের রেফারেন্স"
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "শূন্য '&;' দেখা গিয়েছে; গ্রহনযোগ্য হচ্ছে: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "অগ্রহনযোগ্য ইউটিএফ-৮ টেক্সট"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "অগ্রহনযোগ্য ইউটিএফ-৮ টেক্সট"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "অগ্রহনযোগ্য ইউটিএফ-৮ টেক্সট"
msgid "Entity name '%-.*s' is not known"
msgstr "'%s' নামের বস্তুটি অজানা"
#: glib/gmarkup.c:1168
#: 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 &amp;"
msgstr ""
"একটি বস্তু (entity) সেমিকোলন দিয়ে শেষ হয়নি; আপনি সম্ভবত এমপারস্যান্ড অক্ষরটি কোন "
"বস্তু শুরু করার জন্য ব্যবহার করেনি - সেক্ষেত্রে এস্কেপ এমপারস্যান্ড কে লিখুন &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "ডকুউমেন্ট একটি এলিমেন্ট দিয়ে শুরু "
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "'<' অক্ষরটির পরে '%s' গ্রহনযোগ্য নয়; এটি কোন এলিমেন্টের নাম শুরু করতে পারেনা"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -411,7 +384,7 @@ msgid ""
msgstr ""
"অসামঞ্জস্যকর অক্ষর '%s', এলিমেন্ট '%s' এর ট্যগ শেষ করার জন্য '>' অক্ষরটি আশা করা হয়"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -419,7 +392,7 @@ msgstr ""
"বেজোড় অক্ষর '%1$s', এলিমেন্ট '%3$s' এর অ্যাট্রিবিউট নাম '%2$s' এর পর একটি '=' "
"প্রত্যাশিত"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -430,7 +403,7 @@ msgstr ""
"প্রত্যাশিত, অথবা একটি ঐচ্ছিক অ্যাট্রিবিউট; সম্ভবত আপনি বৈশিষ্ট্য নামে অবৈধ অক্ষর "
"ব্যবহার করেছেন"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -439,7 +412,7 @@ msgstr ""
"বেজোড় অক্ষর '%1$s', এলিমেন্ট '%3$s' এর অ্যাট্রিবিউট নাম '%2$s' এর মান দেয়ার সময়, "
"'=' চিহ্নটির পর একটি খোলা উদ্ধৃতি চিহ্ন আব্যশক"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -448,7 +421,7 @@ msgstr ""
"অক্ষর '</' কে অনুসরণকারী '%s' একটি বৈধ অক্ষর নয়; '%s' দিয়ে কোনো এলিমেন্টের নাম "
"শুরু করা বৈধ নয়"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -457,25 +430,25 @@ msgstr ""
"বন্ধ এলিমেন্ট নাম '%2$s' কে অনুসরণকারী '%1$s' একটি বৈধ অক্ষর নয়; সমর্থিত অক্ষর "
"হচ্ছে '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "'%s' এলিমেন্টটি বন্ধ ছিল, এখন খোলা এলিমেন্ট নেই"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "'%s' এলিমেন্টটি বন্ধ ছিল, কিন্তু এখন '%s' এলিমেন্টটি খোলা"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "ডকুউমেন্ট শূণ্য ছিল অথবা সুধু ওয়াইটস্পেইস ছিল"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "একটি কোণ বন্ধনী '<' খোলা থাকায় নথী অপ্রত্যাশিতভাবে শেষ হয়েছে"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -483,7 +456,7 @@ msgid ""
msgstr ""
"উপাদান খোলা অবস্থায় নথী অপ্রত্যাশিতভাবে শেষ হয়েছে - '%s' ছিল শেষ খোলা উপাদান"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -492,19 +465,19 @@ msgstr ""
"নথী অপ্রত্যাশিতভাবে শেষ হয়েছে, প্রত্যাশিতভাবে দৃষ্ট কারণ একটি কোণ বন্ধনী যার শেষে <%"
"s/> ট্যাগ রয়েছে"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "একটি এলিমেন্ট নাম অভ্যন্তরে নথী অপ্রত্যাশিতভাবে শেষ হয়েছে"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "একটি বৈশিষ্ট্য নাম অভ্যন্তরে নথী অপ্রত্যাশিতভাবে শেষ হয়েছে"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "একটি এলিমেন্ট-ওপেনিং ট্যাগ অভ্যন্তরে নথী অপ্রত্যাশিতভাবে শেষ হয়েছে"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -512,16 +485,16 @@ msgstr ""
"বৈশিষ্ট্য নাম অনুসরণকরী সমান চিহ্নের পর নথী অপ্রত্যাশিতভাবে শেষ হয়েছে; কোন বৈশিষ্ট্য "
"মান নয়"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "একটি বৈশিষ্ট্য মান এর অভ্যন্তরে নথী অপ্রত্যাশিতভাবে শেষ হয়েছে"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "নথী অপ্রত্যাশিতভাবে শেষ হয়েছে উপাদান '%s' এর বন্ধ ট্যাগ এর অভ্যন্তরে"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "নথী অপ্রত্যাশিতভাবে শেষ হয়েছে একটি মন্তব্য বা প্রসেসরত নির্দেশের অভ্যন্তরে"
@ -964,61 +937,61 @@ msgstr "পরিবর্তন করার জন্য দেয়া তথ
msgid "Character out of range for UTF-16"
msgstr "অক্ষর ইউটিএফ-১৬ আয়তার বাইরে"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "ব্যবহার:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[অপশন]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "সহায়ক তথ্যের অপশন:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "সহায়ক তথ্যের অপশন দেখাও"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "সমস্ত সহায়ক তথ্যের অপশন দেখাও"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "অ্যাপলিকেশন অপশন:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "ইন্টিজার মান %s এর জন্য '%s' পার্স করতে পারেনা"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "ইন্টিজার মান %s এর জন্য '%s' সীমার বাহিরে"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "%2$s-র জন্য '%1$s'-র দ্বীগুণ মান পার্স করতে ব্যর্থ"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "%2$s-র জন্য '%1$s'-র দ্বীগুণ মান সীমা বহির্ভূত"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "%s বিকল্প পার্স করতে ব্যর্থ"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s এর জন্য প্রেরিত মান নিরুদ্দেশ"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "অজানা অপশন %s"
@ -1136,8 +1109,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1280,7 +1253,7 @@ msgstr "প্রতীকী লিঙ্ক সমর্থিত নয়"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1302,15 +1275,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "ইউআরআই '%s' এর হোস্ট নাম গ্রহনযোগ্য নয়"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1723,55 +1687,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "ইউআরআই '%s' এর হোস্ট নাম গ্রহনযোগ্য নয়"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "ফাইল \"%s\" পড়ার সময়কালীন ভুল: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1788,16 +1708,12 @@ msgstr "লাইন %d এ ভুল: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "%s বিকল্প পার্স করতে ব্যর্থ"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1836,6 +1752,47 @@ msgstr ""
msgid "[FILE...]"
msgstr "[অপশন]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "কোন বস্তু (entity) এর নামের শুরুতে '%s' অক্ষরটি গ্রহনযোগ্য নয়; & অক্ষরটি একটি "
#~ "বস্তুর নাম শুরু করে; এই এমপারস্যান্ড যদি কোনো বস্তু না হয়, তাহলে এটাকে &amp "
#~ "হিসাবে লিখুন"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "'%s' অক্ষরটি কোনো বস্তুর মাঝখানে গ্রহনযোগ্য নয়"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "শূন্য অক্ষরের রেফারেন্স; &#454 এর মত সংখা থাকতে হবে"
#~ msgid "Unfinished entity reference"
#~ msgstr "অসম্পূর্ণ বস্তুর রেফারেন্স"
#~ msgid "Unfinished character reference"
#~ msgstr "অসম্পূর্ণ অক্ষরের রেফারেন্স"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "অগ্রহনযোগ্য ইউটিএফ-৮ টেক্সট"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "অগ্রহনযোগ্য ইউটিএফ-৮ টেক্সট"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "ইউআরআই '%s' এর হোস্ট নাম গ্রহনযোগ্য নয়"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "ইউআরআই '%s' এর হোস্ট নাম গ্রহনযোগ্য নয়"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "ফাইল \"%s\" পড়ার সময়কালীন ভুল: %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "%s বিকল্প পার্স করতে ব্যর্থ"

View File

@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bn_IN\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-09 12:38+0530\n"
"Last-Translator: Runa Bhattacharjee <runab@redhat.com>\n"
"Language-Team: Bengali INDIA <discuss@lists.ankur.org.in>\n"
@ -305,52 +305,32 @@ msgstr "'%s' খুলতে ব্যর্থ: open() বিফল: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' ফাইল ম্যাপ করতে ব্যর্থ: mmap() বিফল: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "পংক্তি %d অক্ষর %d'এ ত্রুটি: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "অবৈধ UTF-8 এনকোডিং সহ টেক্সট - বৈধ '%s' নয়"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "পংক্তি %d'এ ত্রুটি: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"তথ্যবিহীন স্বত্বা '&;' প্রদর্শিত; বৈধ স্বত্বা হল: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"স্বত্বার নামের প্রারম্ভে '%s'-র ব্যবহার বৈধ নয়; & অক্ষর দ্বারা স্বত্বা আরম্ভ করা হয়; "
"এই অ্যাম্পারসেন্ড চিহ্নটি স্বত্বার ক্ষেত্রে ব্যবহৃত না হলে &amp; রূপে এটিকে এস্কেপ করানো "
"যাবে"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "স্বতার নামে '%s' অক্ষরের ব্যবহার বৈধ নয়"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "'%s' নামের স্বত্বা অজানা"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"স্বত্বার নাম সেমিকোলোন চিহ্ন দ্বারা সমাপ্ত হয়নি; সম্ভবত আপনি স্বত্বা হিসাবে ব্যবহারের "
"উদ্দেশ্যে এম্পারসেন্ড চিহ্ন প্রয়োগ করেননি - &amp; রূপে এম্পারসেন্ড এস্কেপ করানো যাবে"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -359,16 +339,7 @@ msgstr ""
"'%-.*s' পার্স করতে ব্যর্থ, এটি কোনো অক্ষরের রেফারেন্সের মধ্যে একটি সংখ্যা হওয়া উচিত "
"(উদাহরণস্বরূপ &#234;) - সম্ভবত সংখ্যাটি অত্যাধিক বড়"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "'%-.*s' অক্ষরের রেফারেন্সের মধ্যে অনুমোদিত অক্ষর এনকোড করা হয়নি"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "অক্ষর রেফারেন্স ফাঁকা; &#454;'র অনুরূপ সংখ্যা উপস্থিত আবশ্যক"
#: glib/gmarkup.c:685
#: 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 "
@ -378,32 +349,35 @@ msgstr ""
"ব্যবহারের উদ্দেশ্যে এম্পারসেন্ড চিহ্ন প্রয়োগ করেননি - &amp; রূপে এম্পারসেন্ড এস্কেপ "
"করানো যাবে"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "স্বত্বার রেফারেন্স অসম্পূর্ণ"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "অক্ষরের রেফারেন্স অসম্পূর্ণ"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "অবৈধ UTF-8 এনকোডিং সহ টেক্সট - অত্যাধিক লম্বা পংক্তি"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "অবৈধ UTF-8 এনকোডিং সহ টেক্সট - প্রারম্ভিক অক্ষর নয়"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "অবৈধ UTF-8 এনকোডিং সহ টেক্সট - বৈধ '%s' নয়"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "'%-.*s' অক্ষরের রেফারেন্সের মধ্যে অনুমোদিত অক্ষর এনকোড করা হয়নি"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"তথ্যবিহীন স্বত্বা '&;' প্রদর্শিত; বৈধ স্বত্বা হল: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "'%s' নামের স্বত্বা অজানা"
#: 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 &amp;"
msgstr ""
"স্বত্বার নাম সেমিকোলোন চিহ্ন দ্বারা সমাপ্ত হয়নি; সম্ভবত আপনি স্বত্বা হিসাবে ব্যবহারের "
"উদ্দেশ্যে এম্পারসেন্ড চিহ্ন প্রয়োগ করেননি - &amp; রূপে এম্পারসেন্ড এস্কেপ করানো যাবে"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "নথি কোনো এলিমেন্ট দ্বারা আরম্ভ হওয়া আবশ্যক (উদাহরণস্বরূপ <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -411,7 +385,7 @@ msgid ""
msgstr ""
"'<' অক্ষরের পরে '%s'-র ব্যবহার বৈধ নয়; এর দ্বারা এলিমেন্টের নাম আরম্ভ করা যাবে না"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -420,7 +394,7 @@ msgstr ""
"'%s' অক্ষর প্রত্যাশিত নয়, '%s' ফাঁকা এলিমেন্টের প্রারম্ভিক ট্যাগ সমাপ্ত করার উদ্দেশ্যে "
"'>' চিহ্ন প্রত্যাশিত"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -428,7 +402,7 @@ msgstr ""
"'%1$s' অক্ষর প্রত্যাশিত নয়, '%3$s' এলিমেন্টের '%2$s' নামক বৈশিষ্ট্যের নামের পরে "
"একটি '=' চিহ্ন প্রত্যাশিত"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -439,7 +413,7 @@ msgstr ""
"অথবা '/' চিহ্ন অথবা কোনো বৈশিষ্ট্যর উপস্থিতি কাম্য; সম্ভবত কোনো বৈশিষ্ট্যের নামের "
"মধ্যে অবৈধ অক্ষর ব্যবহৃত হয়েছে"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -448,7 +422,7 @@ msgstr ""
"'%1$s' অক্ষর অপ্রত্যাশিত, '%3$s' এলিমেন্টের '%2$s' বৈশিষ্ট্যের মান নির্ধারণের "
"উদ্দেশ্যে সমান চিহ্নের (=) পরে একটি উদ্ধৃতি চিহ্নের প্রারম্ভিক অংশ উপস্থিতি প্রত্যাশিত"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -457,7 +431,7 @@ msgstr ""
"'%s' অক্ষরের ব্যবহার '</'-র পশ্চাত বৈধ নয়; '%s' দ্বারা কোনো এলিমেন্টের নাম আরম্ভ "
"করা যাবে না"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -466,26 +440,26 @@ msgstr ""
"'%2$s' বদ্ধ এলিমেন্টের নামের পশ্চাত '%1$s' অক্ষরের ব্যবহার বৈধ নয়; অনুমোদিত অক্ষর "
"হল '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "'%s' এলিমেন্ট বদ্ধ অবস্থায়, বর্তমানে কোনো এলিমেন্ট খোলা অবস্থায় নেই"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "'%s' এলিমেন্ট বদ্ধ অবস্থায়, বর্তমানে '%s' এলিমেন্ট খোলা অবস্থায় রয়েছে"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "ডকুমেন্ট সম্ভবত ফাঁকা অথবা শুধুমাত্র শূণ্যস্থান উপস্থিত"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"তেরছা বন্ধনীর প্রারম্ভিক চিহ্নের '<' ঠিক পরে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -494,7 +468,7 @@ msgstr ""
"খোলা এলিমেন্টসহ ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে - '%s' এলিমেন্ট সর্বশেষ খোলা "
"হয়েছিল"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -503,19 +477,19 @@ msgstr ""
"নথি অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে, <%s/> ট্যাগ সমাপ্তির জন্য তেরছা বন্ধনী চিহ্নের "
"অন্তিম অংশের উপস্থিতি প্রত্যাশিত"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "এলিমেন্টের নামের মধ্যে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "বৈশিষ্ট্যের নামের মধ্যে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "এলিমেন্টের প্রারম্ভিক ট্যাগের মধ্যে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -523,16 +497,16 @@ msgstr ""
"বৈশিষ্ট্যের নামের পরে উপস্থিত সমান চিহ্নের (=) পরে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত "
"হয়েছে; বৈশিষ্ট্যের মান অনুপস্থিত"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "বৈশিষ্ট্যের মানের মধ্যে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "'%s' এলিমেন্টের অন্তিম ট্যাগের মধ্যে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"কোনো মন্তব্য অথবা প্রক্রিয়াকরণের নির্দেশের মধ্যে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে"
@ -971,61 +945,61 @@ msgstr "রূপান্তর করার উদ্দেশ্যে প্
msgid "Character out of range for UTF-16"
msgstr "অক্ষরটি UTF-16'র আয়ত্বের বাইরে"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "ব্যবহারপ্রণালী:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "সহায়তা সংক্রান্ত বিকল্প:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "সহায়তা সংক্রান্ত বিকল্প প্রদর্শন করা হবে"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "সহায়তা সংক্রান্ত সমস্ত বিকল্প প্রদর্শন করা হবে"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "অ্যাপ্লিকেশন সংক্রান্ত বিকল্প:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "%2$s-র জন্য '%1$s'-র পূর্ণসংখ্যা মান পার্স করতে ব্যর্থ"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "%2$s-র জন্য '%1$s'-র পূর্ণসংখ্যা মান সীমা বহির্ভূত"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "%2$s-র জন্য '%1$s'-র দ্বীগুণ মান পার্স করতে ব্যর্থ"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "%2$s-র জন্য '%1$s'-র দ্বীগুণ মান সীমা বহির্ভূত"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "%s বিকল্প পার্স করতে ব্যর্থ"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s'র আর্গুমেন্ট অনুপস্থিত"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "অজানা বিকল্প %s"
@ -1145,8 +1119,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr "স্ট্রিম বর্তমান বন্ধ হয়েছে"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "কর্ম বাতিল করা হয়েছে"
@ -1286,7 +1260,7 @@ msgstr "আবর্জনা সমর্থিত হয় না"
msgid "File names cannot contain '%c'"
msgstr "ফাইলের নামের মধ্যে '%c' ব্যবহার করা যাবে না"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "ভলিউম দ্বারা mount প্রয়োগ করা হয় না"
@ -1307,14 +1281,6 @@ msgstr "ফাইল enumerator-র মধ্যে অসমাপ্ত কর
msgid "File enumerator is already closed"
msgstr "ফাইল enumerator-র বন্ধ"
#: gio/gfileicon.c:145
msgid "file"
msgstr "ফাইল"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "আইকন ধারণকারী ফাইল"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1724,53 +1690,11 @@ msgstr "আউটপুট স্ট্রিম দ্বারা write বা
msgid "Source stream is already closed"
msgstr "মূল স্ট্রিম বর্তমানে বন্ধ করা হয়েছে"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "নাম"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "আইকনের নাম"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "নাম"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "আইকনের নাম ধারণকারী একটি অ্যারে"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "ডিফল্ট ফল-ব্যাক ব্যবহার করা হবে"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "GEmblemedIcon এনকোডিং-র %d সংস্করণ ব্যবস্থাপনা করা সম্ভব নয়"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "ফাইল ডেসক্রিপটর"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "যে ফাইল ডেসক্রিপটর থেকে পড়া হবে"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "ফাইল ডিস্ক্রিপটর বন্ধ করা হবে"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "স্ট্রিম বন্ধ করা হলে ফাইল ডেসক্রিপটর বন্ধ করা হবে কি না"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1787,16 +1711,12 @@ msgstr "unix বন্ধ করতে সমস্যা: %s"
msgid "Filesystem root"
msgstr "ফাইল-সিস্টেমের root"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "যে ফাইল ডেসক্রিপটরে লেখা হবে"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "unix-এ লিখতে সমস্যা: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "ভলিউম দ্বারা eject প্রয়োগ করা সম্ভব নয়"
@ -1832,3 +1752,66 @@ msgstr "লং লিস্টিং বিন্যাস ব্যবহার
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[FILE...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "স্বত্বার নামের প্রারম্ভে '%s'-র ব্যবহার বৈধ নয়; & অক্ষর দ্বারা স্বত্বা আরম্ভ করা "
#~ "হয়; এই অ্যাম্পারসেন্ড চিহ্নটি স্বত্বার ক্ষেত্রে ব্যবহৃত না হলে &amp; রূপে এটিকে "
#~ "এস্কেপ করানো যাবে"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "স্বতার নামে '%s' অক্ষরের ব্যবহার বৈধ নয়"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "অক্ষর রেফারেন্স ফাঁকা; &#454;'র অনুরূপ সংখ্যা উপস্থিত আবশ্যক"
#~ msgid "Unfinished entity reference"
#~ msgstr "স্বত্বার রেফারেন্স অসম্পূর্ণ"
#~ msgid "Unfinished character reference"
#~ msgstr "অক্ষরের রেফারেন্স অসম্পূর্ণ"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "অবৈধ UTF-8 এনকোডিং সহ টেক্সট - অত্যাধিক লম্বা পংক্তি"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "অবৈধ UTF-8 এনকোডিং সহ টেক্সট - প্রারম্ভিক অক্ষর নয়"
#~ msgid "file"
#~ msgstr "ফাইল"
#~ msgid "The file containing the icon"
#~ msgstr "আইকন ধারণকারী ফাইল"
#~ msgid "name"
#~ msgstr "নাম"
#~ msgid "The name of the icon"
#~ msgstr "আইকনের নাম"
#~ msgid "names"
#~ msgstr "নাম"
#~ msgid "An array containing the icon names"
#~ msgstr "আইকনের নাম ধারণকারী একটি অ্যারে"
#~ msgid "use default fallbacks"
#~ msgstr "ডিফল্ট ফল-ব্যাক ব্যবহার করা হবে"
#~ msgid "File descriptor"
#~ msgstr "ফাইল ডেসক্রিপটর"
#~ msgid "The file descriptor to read from"
#~ msgstr "যে ফাইল ডেসক্রিপটর থেকে পড়া হবে"
#~ msgid "Close file descriptor"
#~ msgstr "ফাইল ডিস্ক্রিপটর বন্ধ করা হবে"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "স্ট্রিম বন্ধ করা হলে ফাইল ডেসক্রিপটর বন্ধ করা হবে কি না"
#~ msgid "The file descriptor to write to"
#~ msgstr "যে ফাইল ডেসক্রিপটরে লেখা হবে"

288
po/bs.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib.glib-2-4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -297,53 +297,32 @@ msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Greška u %d. redu, znak %d: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Neispravno UTF-8 kodirani tekst"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Greška u %d. redu: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Primijećen prazan entitet '&;'; važeći entiteti su: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Znak '%s' je nevažeći na početku imena entiteta; znak & započinje entitet; "
"ako znak & ovdje ne označava početak entiteta, koristite &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Znak '%s' je nevažeći u imenu entiteta"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Nepoznato ime entiteta '%s'"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Znak na kraju entiteta nije tačka-zarez; vjerovatno je korišten znak & bez "
"namjere započinjanja entiteta - izbjegnite korištenje znaka & upisivanjem "
"&amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, fuzzy, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -352,16 +331,7 @@ msgstr ""
"Neuspješno tumačenje '%s', što je trebalo biti cifra unutar reference znaka "
"(na primjer: &#234;) - možda je broj prevelik"
#: glib/gmarkup.c:660
#, fuzzy, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Referenca znaka '%s' ne kodira dopušteni znak"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Prazna referenca znaka; trebala bi sadržavati broj kao npr. &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -371,34 +341,37 @@ msgstr ""
"bez namjere započinjanja entiteta - izbjegnite korištenje znaka & "
"upisivanjem &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Nedovršena referenca entiteta"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Nedovršena referenca znaka"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Neispravno UTF-8 kodirani tekst"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Neispravno UTF-8 kodirani tekst"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Neispravno UTF-8 kodirani tekst"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Referenca znaka '%s' ne kodira dopušteni znak"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Primijećen prazan entitet '&;'; važeći entiteti su: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Nepoznato ime entiteta '%s'"
#: 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 &amp;"
msgstr ""
"Znak na kraju entiteta nije tačka-zarez; vjerovatno je korišten znak & bez "
"namjere započinjanja entiteta - izbjegnite korištenje znaka & upisivanjem "
"&amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokument mora početi elementom (npr. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -407,7 +380,7 @@ msgstr ""
"'%s' je nevažeći prateći znak nakon znaka '<'; ne može započeti naziv "
"elementa"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -416,13 +389,13 @@ msgstr ""
"Čudan znak '%s', očekivan znak '>' radi okončanja početne oznake elementa '%"
"s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "Čudan znak '%s', očekivan znak '=' nakon osobine '%s' elementa '%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -433,7 +406,7 @@ msgstr ""
"elementa '%s' ili eventualno osobine; možda je korišten nevažeći znak u "
"imenu osobine"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -442,7 +415,7 @@ msgstr ""
"Čudan znak '%s', očekivan navodni znak nakon znaka jednakosti pri davanju "
"vrijednosti osobini '%s' elementa '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -451,7 +424,7 @@ msgstr ""
"'%s' je nevažeći prateći znak nakon znakova '</'; '%s' ne može započeti "
"naziv elementa"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -460,25 +433,25 @@ msgstr ""
"'%s' je nevažeći prateći znak nakon zatvaranja elementa '%s'; dopušteni znak "
"je '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element '%s' je zatvoren, trenutno nema otvorenih elemenata"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Element '%s' je zatvoren ali trenutno je otvoren element '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Dokument je bio prazan ili je sadržavao samo prazna polja"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Neočekivan kraj dokumenta nakon otvorene zagrade '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -487,7 +460,7 @@ msgstr ""
"Neočekivan kraj dokumenta uz još otvorene elemente - element '%s' je otvoren "
"posljednji"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -496,19 +469,19 @@ msgstr ""
"Neočekivan kraj dokumenta, očekivano zatvaranje zagrade radi okončanja "
"oznake <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Neočekivan kraj dokumenta unutar imena elementa"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Neočekivan kraj dokumenta unutar imena osobine"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Neočekivan kraj dokumenta unutar oznake za otvaranje elementa"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -516,16 +489,16 @@ msgstr ""
"Neočekivan kraj dokumenta nakon pratećeg znaka jednakosti iza naziva "
"osobine; nedostaje vrijednost osobine"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Neočekivan kraj dokumenta unutar vrijednosti atributa"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Neočekivan kraj dokumenta unutar oznake za zatvaranje elementa '%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Neočekivan kraj dokumenta unutar komentara ili instrukcije procesiranja"
@ -973,61 +946,61 @@ msgstr "Nevažeći niz u unosu za pretvaranje"
msgid "Character out of range for UTF-16"
msgstr "Znak izvan raspona za UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr ""
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr ""
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr ""
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr ""
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr ""
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr ""
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr ""
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, fuzzy, c-format
msgid "Error parsing option %s"
msgstr "Greška tokom pretvaranja: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr ""
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr ""
@ -1144,8 +1117,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1287,7 +1260,7 @@ msgstr "Simbolički linkovi nisu podržani"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1308,15 +1281,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Ime računara URI-ja '%s' je nevažeće"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1728,55 +1692,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "Ime računara URI-ja '%s' je nevažeće"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Greška tokom čitanja datoteke '%s': %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1793,16 +1713,12 @@ msgstr "Greška u %d. redu: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Greška tokom pretvaranja: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1840,6 +1756,46 @@ msgstr ""
msgid "[FILE...]"
msgstr ""
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Znak '%s' je nevažeći na početku imena entiteta; znak & započinje "
#~ "entitet; ako znak & ovdje ne označava početak entiteta, koristite &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Znak '%s' je nevažeći u imenu entiteta"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Prazna referenca znaka; trebala bi sadržavati broj kao npr. &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Nedovršena referenca entiteta"
#~ msgid "Unfinished character reference"
#~ msgstr "Nedovršena referenca znaka"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Neispravno UTF-8 kodirani tekst"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Neispravno UTF-8 kodirani tekst"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Ime računara URI-ja '%s' je nevažeće"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "Ime računara URI-ja '%s' je nevažeće"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Greška tokom čitanja datoteke '%s': %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Greška tokom pretvaranja: %s"

929
po/ca.po

File diff suppressed because it is too large Load Diff

801
po/cs.po

File diff suppressed because it is too large Load Diff

282
po/cy.po
View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2006-06-29 19:38+0100\n"
"Last-Translator: Rhys Jones <rhys@sucs.org>\n"
"Language-Team: Welsh <gnome-cy@pengwyn.linux.org.uk>\n"
@ -298,52 +298,32 @@ msgstr "Methwyd agor y ffeil '%s': methodd open(): %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Methwyd mapio'r ffeil '%s': methodd mmap(): %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Gwall ar linell %d golofn %d: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Testun annilys wedi ei amgodio fel UTF-8"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Gwall ar linell %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Gwelwyd endid gwag '&;'; mae &amp; &quot; &lt; &gt; a &apos; yn endidau dilys"
# c-format
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Mae'r nod '%s' yn annilys ar ddechrau endid; mae'r nod & yn dechrau endid; "
"os nad yw'r & yma i fod yn endid, defnyddiwch &amp; yn ei le"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Nid yw'r nod '%s' yn ddilys o fewn enw endid"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Mae'r enw endid '%s' yn anhysbys"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Ni orffennwyd yr endid gyda hanner-colon - mwy na thebyg y defnyddiwyd "
"ampersand heb fwriadu dechrau endid - dylid defnyddio &amp; yn lle"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -352,16 +332,7 @@ msgstr ""
"Methwyd adnabod '%-.*s', a ddylai fod yn ddigid o fewn cyfeiriant nod "
"(&#234; er enghraifft) - hwyrach fod y digid yn rhy fawr"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Nid yw'r cyfeiriant nod '%-.*s' yn amgodio nod a ganiateir"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Cyfeiriant nod gwag; dylai gynnwys digid megis &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -370,34 +341,35 @@ msgstr ""
"Ni orffennwyd cyfeiriant nod gyda hanner-colon - mwy na thebyg y defnyddiwyd "
"ampersand heb fwriadu dechrau endid - dylid defnyddio &amp; yn lle"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Cyfeiriant endid heb ei orffen"
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Nid yw'r cyfeiriant nod '%-.*s' yn amgodio nod a ganiateir"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Cyfeiriant nod heb ei orffen"
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Gwelwyd endid gwag '&;'; mae &amp; &quot; &lt; &gt; a &apos; yn endidau dilys"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Testun annilys wedi ei amgodio fel UTF-8"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Testun annilys wedi ei amgodio fel UTF-8"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Testun annilys wedi ei amgodio fel UTF-8"
msgid "Entity name '%-.*s' is not known"
msgstr "Mae'r enw endid '%s' yn anhysbys"
#: glib/gmarkup.c:1168
#: 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 &amp;"
msgstr ""
"Ni orffennwyd yr endid gyda hanner-colon - mwy na thebyg y defnyddiwyd "
"ampersand heb fwriadu dechrau endid - dylid defnyddio &amp; yn lle"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Rhaid i'r ddogfen ddechrau gydag elfen (e.e. <llyfr>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -405,14 +377,14 @@ msgid ""
msgstr ""
"Nid yw '%s' yn nod dilys yn dilyn '<'; nid yw'n gallu dechrau enw elfen"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr "Nod od '%s', disgwyliwyd '>' er mwyn gorffen tag dechrau'r elfen '%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -420,7 +392,7 @@ msgstr ""
"Nod od '%s', disgwyliwyd '=' ar ôl yr enw priodoledd '%s' o'r elfen '%s'"
# c-format
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -431,7 +403,7 @@ msgstr ""
"s', neu briodoledd ddewisol; efallai defnyddiwyd nod annilys mewn enw "
"priodoledd"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -440,7 +412,7 @@ msgstr ""
"Nod od '%s', disgwyliwyd dyfynnod agored ar ôl y '=' wrth roi gwerth i'r "
"priodoledd '%s' o'r elfen '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -449,7 +421,7 @@ msgstr ""
"Nid yw '%s' yn nod ddilys yn dilyn y nodau '</'; nid yw '%s' yn gallu "
"dechrau enw elfen."
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -458,26 +430,26 @@ msgstr ""
"Nid yw '%s' yn nod ddilys yn dilyn y nodau '</'; nid yw '%s' yn gallu "
"dechrau enw elfen."
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Cafodd yr elfen '%s' ei gau, nid oes elfen ar agor ar hyn o bryd"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
"Cafodd yr elfen '%s' ei gau, ond yr elfen sydd ar agor ar hyn o bryd yw '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Roedd y ddogfen yn wag neu'n cynnwys gofod yn unig"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Gorffennodd y ddogfen yn annisgwyl ar ôl '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -486,7 +458,7 @@ msgstr ""
"Gorffennodd y ddogfen yn annisgwyl tra roedd elfennau ar agor - '%s' oedd yr "
"elfen ddiwethaf a agorwyd"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -495,19 +467,19 @@ msgstr ""
"Gorffennodd y ddogfen yn annisgwyl, disgwyliwyd ongl-fraced caeedig i "
"ddiweddu'r tag <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Gorffennodd y ddogfen yn annisgwyl y tu fewn i enw elfen"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Gorffennodd y ddogfen yn annisgwyl y tu fewn i enw priodoledd"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Gorffennodd y ddogfen yn annisgwyl y tu fewn i dag agor elfen"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -515,16 +487,16 @@ msgstr ""
"Gorffennodd y ddogfen yn annisgwyl ar ôl yr hafalnod yn dilyn enw "
"priodoledd; dim gwerth priodoledd"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Gorffennodd y ddogfen yn annisgwyl y tu fewn i werth priodoledd"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Gorffennodd y ddogfen yn annisgwyl y tu fewn i dag cau'r elfen '%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Gorffennodd y ddogfen yn annisgwyl y tu fewn i sylw neu gyfarwyddiad brosesu"
@ -973,61 +945,61 @@ msgstr "Dilyniant annilys ym mewnbwn trawsnewidiad"
msgid "Character out of range for UTF-16"
msgstr "Nod y tu allan i ystod ddilys UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Defnydd:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPSIWN...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Cymorth Opsiynau:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Dangos opsiynau cymorth"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Dangos bob opsiwn cymorth"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Opsiynau Rhaglen:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Methu gramadegu'r gwerth cyfanrif '%s' ar gyfer %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Mae'r gwerth cyfanrif '%s' ar gyfer %s y tu allan i'r cwmpas"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Methu gramadegu'r gwerth dwbl '%s' ar gyfer %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Mae'r gwerth dwbl '%s' ar gyfer %s y tu allan i'r cwmpas"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Gwall wrth ramadegu opsiwn %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Arg ar goll ar gyfer %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Opsiwn anhysbys %s"
@ -1151,8 +1123,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1295,7 +1267,7 @@ msgstr "Ni chynhelir cysylltion symbolaidd"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1317,15 +1289,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Mae'r enw gwesteiwr yn y LAU '%s' yn annilys"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1738,55 +1701,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "Mae'r enw gwesteiwr yn y LAU '%s' yn annilys"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Gwall wrth ddarllen ffeil '%s': %s "
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1803,16 +1722,12 @@ msgstr "Gwall ar linell %d: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Gwall wrth ramadegu opsiwn %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1851,6 +1766,47 @@ msgstr ""
msgid "[FILE...]"
msgstr "[OPSIWN...]"
# c-format
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Mae'r nod '%s' yn annilys ar ddechrau endid; mae'r nod & yn dechrau "
#~ "endid; os nad yw'r & yma i fod yn endid, defnyddiwch &amp; yn ei le"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Nid yw'r nod '%s' yn ddilys o fewn enw endid"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Cyfeiriant nod gwag; dylai gynnwys digid megis &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Cyfeiriant endid heb ei orffen"
#~ msgid "Unfinished character reference"
#~ msgstr "Cyfeiriant nod heb ei orffen"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Testun annilys wedi ei amgodio fel UTF-8"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Testun annilys wedi ei amgodio fel UTF-8"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Mae'r enw gwesteiwr yn y LAU '%s' yn annilys"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "Mae'r enw gwesteiwr yn y LAU '%s' yn annilys"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Gwall wrth ddarllen ffeil '%s': %s "
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Gwall wrth ramadegu opsiwn %s"

316
po/da.po
View File

@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-04-09 13:36+0200\n"
"Last-Translator: Ask Hjorth Larsen <asklarsen@gmail.com>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
@ -307,54 +307,32 @@ msgstr "Kunne ikke åbne filen \"%s\": open() mislykkedes: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Kunne ikke kortlægge filen \"%s\": mmap() mislykkedes: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: 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:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Ugyldig UTF-8-kodet tekst - ikke gyldig \"%s\""
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Fejl på linje %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Tom entitet \"&;\" fundet; gyldige entiteter er: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Tegnet \"%s\" er ikke gyldigt ved starten af et entitetnavn; &-tegnet "
"starter en entitet; hvis dette og-tegn ikke er beregnet på at være en "
"entitet, så undgå dette ved at bruge &amp; i stedet"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Tegnet \"%s\" er ikke gyldigt inde i et entitetsnavn"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entitetsnavnet \"%s\" er ikke kendt"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entiteten sluttede ikke med et semikolon; du har sandsynligvis brugt et og-"
"tegn uden at det var beregnet på at starte en entitet - dette undgås ved at "
"bruge &amp; i stedet"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -363,16 +341,7 @@ msgstr ""
"Fejl ved fortolkning af \"%-.*s\" som skulle have været et ciffer i en "
"tegnreference (&#234; for eksempel) - måske er cifret for stort"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Tegnreferencen \"%-.*s\" koder ikke et tilladt tegn"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Tom tegnreference; skulle indeholde et tal såsom &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -382,32 +351,37 @@ msgstr ""
"og-tegn uden at det var beregnet på at starte en entitet - undgå dette ved "
"at bruge &amp; i stedet"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Ufærdig entitetsreference"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Ufærdig tegnreference"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Ugyldig UTF-8-kodet tekst - for lang sekvens"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Ugyldig UTF-8-kodet tekst - ikke et starttegn"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Ugyldig UTF-8-kodet tekst - ikke gyldig \"%s\""
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Tegnreferencen \"%-.*s\" koder ikke et tilladt tegn"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Tom entitet \"&;\" fundet; gyldige entiteter er: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Entitetsnavnet \"%s\" er ikke kendt"
#: 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 &amp;"
msgstr ""
"Entiteten sluttede ikke med et semikolon; du har sandsynligvis brugt et og-"
"tegn uden at det var beregnet på at starte en entitet - dette undgås ved at "
"bruge &amp; i stedet"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumentet skal begynde med et element (f.eks <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -416,7 +390,7 @@ msgstr ""
"\"%s\" er ikke et gyldigt tegn efter et \"<\"-tegn; det kan ikke være "
"begyndelsen på et elementnavn"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -425,7 +399,7 @@ msgstr ""
"Mærkeligt tegn \"%s\", forventede et \">\"-tegn for at afslutte det tomme "
"elementmærke \"%s\""
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -433,7 +407,7 @@ msgstr ""
"Mærkeligt tegn \"%s\", forventede et \"=\" efter egenskabsnavn \"%s\" for "
"elementet \"%s\""
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -444,7 +418,7 @@ msgstr ""
"begyndelsesmærket til elementet \"%s\" eller alternativt en egenskab; måske "
"brugte du et ugyldigt tegn i egenskabsnavnet"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -453,7 +427,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:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -462,7 +436,7 @@ msgstr ""
"\"%s\" er ikke et gyldigt tegn efter tegnene \"</\"; \"%s\" er måske ikke "
"begyndelsen på et elementnavn"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -471,25 +445,25 @@ msgstr ""
"\"%s\" er ikke et gyldigt tegn efter det lukkende elementnavn \"%s\"; "
"tilladt tegn er \">\""
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element \"%s\" blev lukket, ingen åbne elementer nu"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, 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:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Dokumentet var tomt eller indeholdt kun blanke tegn"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokumentet sluttede uventet lige efter en åben vinkelparantes \"<\""
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -498,7 +472,7 @@ msgstr ""
"Dokumentet sluttede uventet med åbne elementer - \"%s\" var sidste åbne "
"element"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -507,19 +481,19 @@ msgstr ""
"Dokumentet sluttede uventet, forventede at se en vinkelparantes for at "
"afslutte det sidste mærke <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumentet sluttede uventet inden i et elementnavn"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokumentet sluttede uventet inden i et egenskabsnavn"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokumentet sluttede uventet inden i et element-åbnende mærke."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -527,17 +501,17 @@ msgstr ""
"Dokumentet sluttede uventet efter lighedstegnet efter et egenskabsnavn; "
"ingen egenskabsværdi"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokumentet sluttede uventet inden i en egenskabsværdi"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, 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:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokumentet sluttede uventet inden i en kommentar eller behandlingsinstruktion"
@ -988,61 +962,61 @@ msgstr "Ugyldig sekvens i konverteringsinddata"
msgid "Character out of range for UTF-16"
msgstr "Tegn uden for gyldigt interval for UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Brug:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[TILVALG...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Flag for hjælp:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Vis flag for hjælp"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Vis alle flag for hjælp"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Flag for programmet:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Kan ikke fortolke heltalsværdien \"%s\" for %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, 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:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Kan ikke fortolke double-værdien \"%s\" for %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, 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:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Kunne ikke fortolke tilvalg %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Mangler argument for %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Ukendt flag %s"
@ -1165,8 +1139,8 @@ msgstr "For stor talværdi givet til %s"
msgid "Stream is already closed"
msgstr "Strømmen er allerede lukket"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Operationen blev afbrudt"
@ -1307,7 +1281,7 @@ msgstr "Affald understøttes ikke"
msgid "File names cannot contain '%c'"
msgstr "Filnavne kan ikke indeholder \"%c\""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "drevet implementerer ikke montering"
@ -1329,14 +1303,6 @@ msgstr "Filoptæller arbejder stadig"
msgid "File enumerator is already closed"
msgstr "Filoptæller er allerede lukket"
#: gio/gfileicon.c:145
msgid "file"
msgstr "fil"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "Filen som indeholder ikonet"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1748,55 +1714,11 @@ msgstr "Uddatastrøm implementerer ikke write"
msgid "Source stream is already closed"
msgstr "Kildestrømmen er allerede lukket"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "navn"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Navnet på ikonet"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "navne"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Et array som indeholder ikonnavnene"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "brug forvalgte reserve"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Om der skal bruges de forvalgte reserver som findes ved at afkorte navnet "
"ved \"-\"-tegn. Ignorerer navne efter det første hvis der giver flere."
#: 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/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Fildeskriptor"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "Fildeskriptoren, hvorfra der skal læses"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Luk fildeskriptor"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "Om fildeskriptoren skal lukkes, når strømmen lukkes"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1813,16 +1735,12 @@ msgstr "Fejl ved lukningaf unix: %s"
msgid "Filesystem root"
msgstr "Filsystemets rod"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "Fildeskriptoren, der skal skrives til"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Fejl ved skrivning til unix: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "drev implementerer ikke eject"
@ -1859,6 +1777,76 @@ msgstr "brug langt listeformat"
msgid "[FILE...]"
msgstr "[FIL...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Tegnet \"%s\" er ikke gyldigt ved starten af et entitetnavn; &-tegnet "
#~ "starter en entitet; hvis dette og-tegn ikke er beregnet på at være en "
#~ "entitet, så undgå dette ved at bruge &amp; i stedet"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Tegnet \"%s\" er ikke gyldigt inde i et entitetsnavn"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Tom tegnreference; skulle indeholde et tal såsom &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Ufærdig entitetsreference"
#~ msgid "Unfinished character reference"
#~ msgstr "Ufærdig tegnreference"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Ugyldig UTF-8-kodet tekst - for lang sekvens"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Ugyldig UTF-8-kodet tekst - ikke et starttegn"
#~ msgid "file"
#~ msgstr "fil"
#~ msgid "The file containing the icon"
#~ msgstr "Filen som indeholder ikonet"
#~ msgid "name"
#~ msgstr "navn"
#~ msgid "The name of the icon"
#~ msgstr "Navnet på ikonet"
#~ msgid "names"
#~ msgstr "navne"
#~ msgid "An array containing the icon names"
#~ msgstr "Et array som indeholder ikonnavnene"
#~ msgid "use default fallbacks"
#~ msgstr "brug forvalgte reserve"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Om der skal bruges de forvalgte reserver som findes ved at afkorte navnet "
#~ "ved \"-\"-tegn. Ignorerer navne efter det første hvis der giver flere."
#~ msgid "File descriptor"
#~ msgstr "Fildeskriptor"
#~ msgid "The file descriptor to read from"
#~ msgstr "Fildeskriptoren, hvorfra der skal læses"
#~ msgid "Close file descriptor"
#~ msgstr "Luk fildeskriptor"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "Om fildeskriptoren skal lukkes, når strømmen lukkes"
#~ msgid "The file descriptor to write to"
#~ msgstr "Fildeskriptoren, der skal skrives til"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u byte"

324
po/de.po
View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-17 13:08+0100\n"
"Last-Translator: Hendrik Richter <hendrikr@gnome.org>\n"
"Language-Team: German <gnome-de@gnome.org>\n"
@ -319,55 +319,32 @@ msgstr "Datei »%s« konnte nicht geöffnet werden: open() ist gescheitert: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Datei »%s« konnte nicht gemappt werden: mmap() ist gescheitert: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Fehler in Zeile %d, Zeichen %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Ungültiger UTF-8-kodierter Text - »%s« ist nicht gültig"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Fehler in Zeile %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Leere Entität »&;« gefunden; gültige Entitäten sind &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Zeichen »%s« ist am Anfang eines Entitätsnamens ungültig; eine Entität "
"beginnt mit dem Zeichen &; wenn das Et keine Entität sein soll, es als &amp; "
"umschreiben"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Zeichen »%s« ist in einem Entitätsnamen ungültig"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entitätsname »%s« ist unbekannt"
# CHECK
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entität endete nicht mit einem Semikolon; wahrscheinlich haben Sie ein Et "
"benutzt, ohne eine Entity beginnen zu wollen - umschreiben Sie das Et als "
"&amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -376,16 +353,7 @@ msgstr ""
"»%-.*s«, was eine Zahl in einer Zeichenreferenz (wie &#234;) sein sollte, "
"konnte nicht analysiert werden - vielleicht ist die Zahl zu groß"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Zeichenreferenz »%-.*s« kodiert kein zulässiges Zeichen"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Leere Zeichenangabe; sollte eine Zahl wie z.B. &#454; enthalten"
#: glib/gmarkup.c:685
#: 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 "
@ -395,32 +363,38 @@ msgstr ""
"Et-Zeichen benutzt, ohne eine Entität beginnen zu wollen - umschreiben Sie "
"das Et als &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Unvollendete Entitätsreferenz"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Unvollendete Zeichenreferenz"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Ungültiger UTF-8-kodierter Text - überlange Sequenz"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Ungültiger UTF-8-kodierter Text - Kein Anfangszeichen"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Ungültiger UTF-8-kodierter Text - »%s« ist nicht gültig"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Zeichenreferenz »%-.*s« kodiert kein zulässiges Zeichen"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Leere Entität »&;« gefunden; gültige Entitäten sind &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Entitätsname »%s« ist unbekannt"
# CHECK
#: 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 &amp;"
msgstr ""
"Entität endete nicht mit einem Semikolon; wahrscheinlich haben Sie ein Et "
"benutzt, ohne eine Entity beginnen zu wollen - umschreiben Sie das Et als "
"&amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokument muss mit einem Element beginnen (e.g. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -429,7 +403,7 @@ msgstr ""
"»%s« ist kein gültiges Zeichen nach einem »<«-Zeichen; es darf keinen "
"Elementnamen beginnen"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -438,14 +412,14 @@ msgstr ""
"Seltsames Zeichen »%s«, »>« erwartet um Start-Tag des leeren Elements »%s« "
"abzuschließen"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"Seltsames Zeichen »%s«, »=« erwartet nach Attributname »%s« des Elements »%s«"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -456,7 +430,7 @@ msgstr ""
"erwartet, um das Start-Tag des Elements »%s« abzuschließen; vielleicht haben "
"Sie ein ungültiges Zeichen in einem Attributnamen benutzt"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -465,7 +439,7 @@ msgstr ""
"Seltsames Zeichen »%s«; bei der Wertangabe für das Attribut »%s« des Elemente "
"»%s« wurde ein Anführungszeichen nach dem Gleichheitszeichen erwartet"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -474,7 +448,7 @@ msgstr ""
"»%s« ist kein gültiges Zeichen, wenn es auf die Zeichen »</« folgt; »%s« darf "
"keinen Elementnamen beginnen"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -483,25 +457,25 @@ msgstr ""
"»%s« ist kein gültiges Zeichen, wenn es auf den schließenden Elementnamen »%s« "
"folgt; das erlaubte Zeichen ist »>«"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element »%s« wurde geschlossen, kein Element ist derzeit offen"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Element »%s« wurde geschlossen, aber das derzeit offene Element ist »%s«"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Dokument ist leer oder enthält nur Leerraum"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokument endete unerwartet nach einer offenen spitzen Klammer »<«"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -510,7 +484,7 @@ msgstr ""
"Dokument endete unerwartet mit noch offenen Elementen - »%s« war das letzte "
"offene Element"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -519,19 +493,19 @@ msgstr ""
"Dokument endete unerwartet, es wurde eine spitze Klammer »>«, die das Tag <%s/"
"> schließt, erwartet"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokument endete unerwartet innerhalb eines Elementnamens"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokument endete unerwartet innerhalb eines Attributnamens"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokument endete unerwartet innerhalb eines Element-öffnenden Tags."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -539,18 +513,18 @@ msgstr ""
"Dokument endete unerwartet nach dem Gleichheitszeichen, das einem "
"Attributnamen folgt; kein Attributwert"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokument endete unerwartet innerhalb eines Attributwertes"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Dokument endete unerwartet innerhalb eines schließenden Tags für das Element "
"»%s«"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokument endete unerwartet innerhalb eines Kommentars oder "
@ -1010,61 +984,61 @@ msgstr "Ungültige Folge in Umwandlungseingabe"
msgid "Character out of range for UTF-16"
msgstr "Zeichen außerhalb des Bereiches für UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Aufruf:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION …]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Hilfeoptionen"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Hilfeoptionen anzeigen"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Alle Hilfeoptionen anzeigen"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Anwendungsoptionen"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "»%s« konnte nicht als ganzzahliger Wert für %s interpretiert werden."
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Ganzzahliger Wert »%s« für %s ist außerhalb des Bereiches."
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "»%s« konnte nicht als »double«-Wert für %s interpretiert werden."
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "»double«-Wert »%s« für %s ist außerhalb des Bereiches."
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Fehler beim Analysieren der Option: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Für %s wird ein Argument benötigt"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Unbekannte Option %s"
@ -1192,8 +1166,8 @@ msgstr "Zu großer Zählwert an %s übermittelt"
msgid "Stream is already closed"
msgstr "Datenstrom ist bereits geschlossen"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Vorgang wurde abgebrochen"
@ -1336,7 +1310,7 @@ msgstr "Müll nicht unterstützt"
msgid "File names cannot contain '%c'"
msgstr "Dateinamen dürfen kein »%c« enthalten"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "Datenträger unterstützt Einhängen nicht"
@ -1357,14 +1331,6 @@ msgstr "Datei-Enumerator hat noch einen ausstehenden Vorgang"
msgid "File enumerator is already closed"
msgstr "Datei-Enumerator ist bereits geschlossen"
#: gio/gfileicon.c:145
msgid "file"
msgstr "datei"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "Die Datei, die das Symbol enthält"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1777,58 +1743,11 @@ msgstr "Ausgabedatenstrom unterstützt kein Schreiben"
msgid "Source stream is already closed"
msgstr "Quelldatenstrom ist bereits geschlossen"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "Name"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Der Name des Symbols"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "Namen"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Ein Datenfeld, das die Symbolnamen enthält"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "Standard-Alternativen benutzen"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Legt fest, ob die Standard-Alternativen benutzt werden sollen, indem der "
"Name bei »-«-Zeichen abgeschnitten wird. Alle Namen nach dem ersten werden "
"ignoriert falls mehrere angegeben sind."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Version %d der GThemedIcon-Kodierung kann nicht verarbeitet werden"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Datei-Deskriptor"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "Der zu lesende Datei-Deskriptor"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Datei-Deskriptors schließen"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
"Legt fest, ob der Datei-Deskriptor beim Schließen des Datenstroms "
"geschlossen wird"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1845,16 +1764,12 @@ msgstr "Fehler beim Schließen des Unix-Datenstroms: %s"
msgid "Filesystem root"
msgstr "Wurzelverzeichnis des Dateisystems"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "Der zu schreibende Datei-Deskriptor"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Fehler beim Schreiben in Unix-Datenstrom: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "Datenträger unterstützt Auswerfen nicht"
@ -1891,6 +1806,79 @@ msgstr "langes Listenformat verwenden"
msgid "[FILE...]"
msgstr "[DATEI …]]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Zeichen »%s« ist am Anfang eines Entitätsnamens ungültig; eine Entität "
#~ "beginnt mit dem Zeichen &; wenn das Et keine Entität sein soll, es als "
#~ "&amp; umschreiben"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Zeichen »%s« ist in einem Entitätsnamen ungültig"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Leere Zeichenangabe; sollte eine Zahl wie z.B. &#454; enthalten"
#~ msgid "Unfinished entity reference"
#~ msgstr "Unvollendete Entitätsreferenz"
#~ msgid "Unfinished character reference"
#~ msgstr "Unvollendete Zeichenreferenz"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Ungültiger UTF-8-kodierter Text - überlange Sequenz"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Ungültiger UTF-8-kodierter Text - Kein Anfangszeichen"
#~ msgid "file"
#~ msgstr "datei"
#~ msgid "The file containing the icon"
#~ msgstr "Die Datei, die das Symbol enthält"
#~ msgid "name"
#~ msgstr "Name"
#~ msgid "The name of the icon"
#~ msgstr "Der Name des Symbols"
#~ msgid "names"
#~ msgstr "Namen"
#~ msgid "An array containing the icon names"
#~ msgstr "Ein Datenfeld, das die Symbolnamen enthält"
#~ msgid "use default fallbacks"
#~ msgstr "Standard-Alternativen benutzen"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Legt fest, ob die Standard-Alternativen benutzt werden sollen, indem der "
#~ "Name bei »-«-Zeichen abgeschnitten wird. Alle Namen nach dem ersten werden "
#~ "ignoriert falls mehrere angegeben sind."
#~ msgid "File descriptor"
#~ msgstr "Datei-Deskriptor"
#~ msgid "The file descriptor to read from"
#~ msgstr "Der zu lesende Datei-Deskriptor"
#~ msgid "Close file descriptor"
#~ msgstr "Datei-Deskriptors schließen"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr ""
#~ "Legt fest, ob der Datei-Deskriptor beim Schließen des Datenstroms "
#~ "geschlossen wird"
#~ msgid "The file descriptor to write to"
#~ msgstr "Der zu schreibende Datei-Deskriptor"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u Byte"

280
po/dz.po
View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib.HEAD.dz\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -300,51 +300,32 @@ msgstr "ཡིག་སྣོད་ %s ཁ་ཕྱེ་མ་ཚུག
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "ཡིག་སྣོད་’%s གི་ས་ཁྲ་འབྲི་མ་ཚུགས་: mmap() མ་བཏུབ་:%s།"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "གྱལ་རིམ་%d ཡིག་འབྲུ་ %d:%s ལུ་འཛོལ་བ།"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "ནུས་མེད་ཡུ་ཊི་ཨེཕ་-༨ ཀྱི ཨིན་ཀོ་དེཌི་ཚིག་ཡིག"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "གྱལ་རིམ་ %d་: %s ལུ་འཛོལ་བ།"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"ངོ་བོ་སྟོང་པ་ &; མཐོང་ཅི། ནུས་ཅན་ངོ་བོ་ཚུ་: &amp; &quot; &lt; &gt; &apos; ཚུ་ཨིན།"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"ངོ་བོའི་མིང་ འགོ་བཙུགས་སར ཡིག་འབྲུ་་ %s ནུས་མེད་ཨིན་པས། ཡིག་འབྲུ་ & འདི་གིས་ངོ་བོ་ཅིག་ འགོ་"
"བཙུགསཔ་ཨིན། གལ་སྲིད་ དང་རྟགས་འདི་ ངོ་བོ་མིནམ་ཅིག་དགོ་པཅིན་ &amp; བཟུམ་ཅིག་སྦེ་ གྲོས་ཐར་འབད།"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "ཡིག་འབྲུ་ %s དེ་ ངོ་བོའི་མིང་ཅིག་གི་ ནང་འཁོད་ལུ་ ནུས་མེད་ཨིན། "
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "ངོ་བོའི་མིང་ '%s' ཧ་མ་གོ"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"ངོ་བོ་འདི་ སེ་མི་ཀོ་ལཱོན་ ; གིས་འབད་ མཇུག་མ་བསྡུ་བས། ཁྱོད་ཀྱིས་ངོ་བོ་ཅིག་ འགོ་མ་བཙུགས་པར་ དང་རྟགས་"
"ཡིག་འབྲུ་ཅིག་ ལག་ལེན་འཐབ་འཐབ་བཟུམ་ཅིག་འདུག དང་རྟགས་་ &amp; བཟུམ་ཅིག་སྦེ་ གྲོས་ཐར་འབད།"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -353,16 +334,7 @@ msgstr ""
"'%-.*s'ལུ་ མིང་དཔྱད་འབད་མ་ཚུགས། འདི་ཡིག་འབྲུ་གཞི་བསྟུན་ (དཔེར་ན་ (&#234; ) ཅིག་ནང་གི་ ཨང་"
"ཡིག་ཅིག་འོང་དགོཔ་ཨིན་ - ཨང་ཡིག་དེ་ སྦོམ་དྲགསཔ་འོང་ནི་མས།"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "ཡིག་འབྲུ་གཞི་བསྟུན་ '%-.*s' དེ་གིས་ གནང་བ་ཅན་གྱི་ཡིག་འབྲུ་ཅིག་ལུ་ ཨིན་ཀོཌི་མི་འབད་བས།"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "ཡིག་འབྲུ་སྟོང་པའི་འབྲེལ་བ་འདི་ནང་ &#454; བཟུམ་མའི་ ཨང་ཡིག་ཅིག་འོང་དགོ"
#: glib/gmarkup.c:685
#: 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 "
@ -372,34 +344,35 @@ msgstr ""
"མེད་པར་ དང་རྟགས་ ཡིག་འབྲུ་ ལག་ལེན་འཐབ་འཐབ་འོང་ནི་མས། དང་རྟགས་དེ་ &amp; བཟུམ་སྦེ་ གྲོས་ཐར་"
"འབད།"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "མཇུག་མ་བསྡུ་བའི་ ངོ་བོའི་གཞི་བསྟུན།"
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "ཡིག་འབྲུ་གཞི་བསྟུན་ '%-.*s' དེ་གིས་ གནང་བ་ཅན་གྱི་ཡིག་འབྲུ་ཅིག་ལུ་ ཨིན་ཀོཌི་མི་འབད་བས།"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "མཇུག་མ་བསྡུ་བའི་ ཡིག་འབྲུའི་གཞི་བསྟུན།"
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"ངོ་བོ་སྟོང་པ་ &; མཐོང་ཅི། ནུས་ཅན་ངོ་བོ་ཚུ་: &amp; &quot; &lt; &gt; &apos; ཚུ་ཨིན།"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "ནུས་མེད་ཡུ་ཊི་ཨེཕ་-༨ ཀྱི ཨིན་ཀོ་དེཌི་ཚིག་ཡིག"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "ནུས་མེད་ཡུ་ཊི་ཨེཕ་-༨ ཀྱི ཨིན་ཀོ་དེཌི་ཚིག་ཡིག"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "ནུས་མེད་ཡུ་ཊི་ཨེཕ་-༨ ཀྱི ཨིན་ཀོ་དེཌི་ཚིག་ཡིག"
msgid "Entity name '%-.*s' is not known"
msgstr "ངོ་བོའི་མིང་ '%s' ཧ་མ་གོ"
#: glib/gmarkup.c:1168
#: 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 &amp;"
msgstr ""
"ངོ་བོ་འདི་ སེ་མི་ཀོ་ལཱོན་ ; གིས་འབད་ མཇུག་མ་བསྡུ་བས། ཁྱོད་ཀྱིས་ངོ་བོ་ཅིག་ འགོ་མ་བཙུགས་པར་ དང་རྟགས་"
"ཡིག་འབྲུ་ཅིག་ ལག་ལེན་འཐབ་འཐབ་བཟུམ་ཅིག་འདུག དང་རྟགས་་ &amp; བཟུམ་ཅིག་སྦེ་ གྲོས་ཐར་འབད།"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "ཡིག་ཆ་དེ་ (དཔེར་ན་ <book>) བཟུམ་མའི་ཆ་ཤས་ཅིག་གིས་ འགོ་བཙུགས་དགོ"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -408,7 +381,7 @@ msgstr ""
"ཡིག་འབྲུ་ %s དེ་ ཡིག་འབྲུ་’< ཅིག་གི་རྗེས་སུ་འོངམ་ད་ ནུས་པ་ཡོད་པའི་ཡིག་འབྲུ་ཅིག་མིན། འདི་གིས་ཆ་ཤས་"
"ཀྱི་མིང་ཅིག་ འགོ་མི་བཙུགསཔ་འོང༌།"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -417,7 +390,7 @@ msgstr ""
"%s དེ་རྐྱང་ཡིག་ཨིན་པས། ཆ་ཤས་ཀྱི་ འགོ་བཙུགས་ངོ་རྟགས་ %s དེ་མཇུག་བསྡུ་ནི་ལུ་ ཡིག་འབྲུ་ > ཅིག་ "
"ཨིན་པའི་རེ་བ་ཡོད།"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -425,7 +398,7 @@ msgstr ""
"%s དེ་རྐྱང་ཡིག་ཨིན་པས། = ཅིག་ཡོད་པའི་ རེ་བ་ཡོད་ ཁྱད་ཆོས་ཀྱི་མིང་ %s ཆ་ཤས་ %s གི་རྗེས་"
"སུ།"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -435,7 +408,7 @@ msgstr ""
"%s དེ་རྐྱང་ཡིག་ཨིན་པས། ཆ་ཤས་ %s གི་འགོ་བཙུགས་ངོ་རྟགས་ མཇུག་བསྡུ་ནི་ལུ་ ཡིག་འབྲུ་ > ཡང་ན་ "
"/ གི་རེ་བ་ཡོད།"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -444,7 +417,7 @@ msgstr ""
"%s དེ་རྐྱང་ཡིག་ཨིན་པས། ཁྱད་ཆོས་’%s གི་ ཆ་ཤས’%s གི་དོན་ལུ་ བེ་ལུ་བྱིནམ་ད་ མཉམ་རྟགས་ཀྱི་ཤུལ་"
"ལུ་ འགོ་བཙུགས་འདྲེན་རྟགས་ཅིག་ ཚུད་ཡོད་པའི་རེ་བ་ཡོད།"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -453,7 +426,7 @@ msgstr ""
"%s དེ་ ཡིག་འབྲུ་ནུས་ཅན་ཅིག་མེན་ ཡིག་འབྲུ་ </; %s ཚུ་གི་རྗེས་ཤུལ་ལུ་འོངམ་ ཆ་ཤས་ཀྱི་མིང་ཅིག་ "
"འགོ་མི་བཙུགསཔ་འོང༌།"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -462,25 +435,25 @@ msgstr ""
"%s དེ་ ཡིག་འབྲུ་ནུས་ཅན་ཅིག་མེན། ཁ་བསྡམ་ནིའི་ཆ་ཤས་མིང་ %s; གི་རྟིང་བདའ་འོངམ་ད་ ཆོག་པའི་ཡིག་"
"འབྲུ་དེ་ > ཨིན།"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "ཆ་ཤས་ %s དེ་ ཁ་བསྡམས་ཏེ་ཡོདཔ་ལས་ ད་ལྟོ་ཆ་ཤས་གཅིག་ཡང་ ཁ་ཕྱེ་ཕྱེཝ་མིན་འདུག"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "ཆ་ཤས་ %s དེ་ ཁ་བསྡམས་ནུག དེ་འབདཝ་ད་ ད་ལྟོ་ཁ་ཕྱེ་སྟེ་ཡོད་མི་ཆ་ཤས་དེ་ %s ཨིན།"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "ཡིག་ཆ་དེ་སྟོང་པའམ་ ཡང་ཅིན་ ནང་ན་ས་སྟོང་དཀརཔོ་མ་གཏོགས་ མེདཔ་འོང་ནི་མས།"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "ཡིག་ཆ་དེ་ ཟུར་ཁུག་གུག་ཤད་ < ཅིག་གི་ཤུལ་ལས་ རེ་བ་མེད་པར་ རྫོགས་སོ་ཡི།"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -489,7 +462,7 @@ msgstr ""
"ཡིག་ཆ་དེ་ རེ་བ་མེད་པར་རྫོགས་སོ་རུང་ ཆ་ཤས་དེ་ ཁ་ཕྱེ་སྟེ་རང་འདུག མཐའ་མཇུག་ཁ་ཕྱེ་མི་ ཆ་ཤས་དེ་ -%"
"s ཨིན་པས།"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -498,19 +471,19 @@ msgstr ""
"ཡིག་ཆ་དེ་ རེ་བ་མེད་པར་རྫོགས་སོ་ནུག ངོ་རྟགས་ <%s/> མཇུག་བསྡུ་བའི་ ཁ་བསྡམ་ཟུར་ཁུག་གུག་ཤད་ཅིག་ "
"མཐོང་བའི་རེ་བ་ཡོད།"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "ཡིག་ཆ་དེ་ ཆ་ཤས་ཅིག་གི་ མིང་གི་ནང་ན་ རེ་བ་མེད་པར་རྫོགས་སོ་ནུག"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "ཡིག་ཆ་དེ་ ཁྱད་ཆོས་ཀྱི་མིང་ཅིག་གི་ནང་ན་ རེ་བ་མེད་པར་རྫོགས་སོ་ནུག"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "ཡིག་ཆ་དེ་ ཆ་ཤས་ཁ་ཕྱེ་ནིའི་ ངོ་རྟགས་ཅིག་གི་ནང་ན་ རེ་བ་མེད་པར་ རྫོགས་སོ་ནུག"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -518,16 +491,16 @@ msgstr ""
"ཡིག་ཆ་དེ་ ཁྱད་ཆོས་ཀྱི་མིང་ཅིག་གི་ཤུལ་ལས་ མཉམ་རྟགས་ཀྱི་རྗེས་སུ་ རེ་བ་མེད་པར་ རྫོགས་སོ་ནུག ཁྱད་ཆོས་ཀྱི་བེ་"
"ལུ་མིན་འདུག"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "ཡིག་ཆ་དེ་ ཁྱད་ཆོས་ཀྱི་ བེ་ལུ་ཅིག་གི་ནང་ན་སྡོད་པའི་སྐབས་ལུ་ རེ་བ་མེད་པར་ རྫོགས་སོ་ནུག"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "ཡིག་ཆ་དེ་ ཆ་ཤས་ %s གི་དོན་ལུ་ ཁ་བསྡམ་ངོ་རྟགས་ནང་ན་ རེ་བ་མེད་པར་ རྫོགས་སོ་ནུག"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "ཡིག་ཆ་དེ་ བསམ་བཀོད་ ཡང་ན་ ལས་སྦྱོར་བཀོད་རྒྱ་ཅིག་གི་ནང་ན་ རེ་བ་མེད་པར་ རྫོགས་སོ་ནུག"
@ -977,61 +950,61 @@ msgstr "བསྒྱུར་བཅོས་ཀྱི་ ཨིན་པུཊ
msgid "Character out of range for UTF-16"
msgstr "ཡིག་འབྲུ་ ཡུ་ཊི་ཨེཕ་- ༡༦ གི་ ཁྱབ་ཚད་ཀྱི་ཕྱི་ཁར་ཨིན་མས།"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "ལག་ལེན:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[ གདམ་ཁ... ] "
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "གྲོགས་རམ་གདམ་ཁ་ཚུ།"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "གྲོགས་རམ་གདམ་ཁ་ཚུ་སྟོན།"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "གྲོགས་རམ་གདམ་ཁ་ཚུ་ ཆ་མཉམ་སྟོན།"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "གློག་རིམ་གྱི་གདམ་ཁ།"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "ཧྲིལ་ཨང་བེ་ལུ་ %sདེ་%s གི་དོན་ལུ་ མིང་དཔྱད་འབད་མི་ཚུགས།"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "%s གི་དོན་ལུ་ ཧྲིལ་ཨང་བེ་ལུ་ %s དེ་ ཁྱབ་ཚད་ཀྱི་ཕྱི་ཁར་ཨིན་པས།"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "བེ་ལུ་གཉིས་བལྟབ་%s'མིང་དཔྱད་འབད་མི་ཚུགས། %sགི་དོན་ལུ།"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "བེ་ལུ་གཉིས་བལྟབ་'%s' དེ་%s གི་དོན་ལུ་ ཁྱབ་ཚད་ཀྱི་ཕྱི་ཁར་ཨིན་པས།"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "གདམ་ཁ་%s མིང་དཔྱད་འབད་ནི་ལུ་འཛོལ་བ།"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s གི་དོན་ལུ་ སྒྲུབ་རྟགས་བརླག་སྟོར་ཞུགས་ནུག"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "ཤེས་མ་ཚུགས་པའི་གདམ་ཁ་ %s།"
@ -1149,8 +1122,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1293,7 +1266,7 @@ msgstr "བརྡ་མཚོན་འགྲེལ་ལམ་ལུ་ རྒ
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1315,15 +1288,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "ཡུ་ཨར་ཨའི་ %s གི་ ཧོསཊི་ནེམ་དེ་ ནུས་མེད་ཨིན་པས།"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1736,55 +1700,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "ཡུ་ཨར་ཨའི་ %s གི་ ཧོསཊི་ནེམ་དེ་ ནུས་མེད་ཨིན་པས།"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "ཡིག་སྣོད་ %s: %s ལྷག་ནི་ལུ་འཛོལ་བ།"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1801,16 +1721,12 @@ msgstr "གྱལ་རིམ་ %d་: %s ལུ་འཛོལ་བ།"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "གདམ་ཁ་%s མིང་དཔྱད་འབད་ནི་ལུ་འཛོལ་བ།"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1849,6 +1765,46 @@ msgstr ""
msgid "[FILE...]"
msgstr "[ གདམ་ཁ... ] "
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "ངོ་བོའི་མིང་ འགོ་བཙུགས་སར ཡིག་འབྲུ་་ %s ནུས་མེད་ཨིན་པས། ཡིག་འབྲུ་ & འདི་གིས་ངོ་བོ་ཅིག་ འགོ་"
#~ "བཙུགསཔ་ཨིན། གལ་སྲིད་ དང་རྟགས་འདི་ ངོ་བོ་མིནམ་ཅིག་དགོ་པཅིན་ &amp; བཟུམ་ཅིག་སྦེ་ གྲོས་ཐར་འབད།"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "ཡིག་འབྲུ་ %s དེ་ ངོ་བོའི་མིང་ཅིག་གི་ ནང་འཁོད་ལུ་ ནུས་མེད་ཨིན། "
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "ཡིག་འབྲུ་སྟོང་པའི་འབྲེལ་བ་འདི་ནང་ &#454; བཟུམ་མའི་ ཨང་ཡིག་ཅིག་འོང་དགོ"
#~ msgid "Unfinished entity reference"
#~ msgstr "མཇུག་མ་བསྡུ་བའི་ ངོ་བོའི་གཞི་བསྟུན།"
#~ msgid "Unfinished character reference"
#~ msgstr "མཇུག་མ་བསྡུ་བའི་ ཡིག་འབྲུའི་གཞི་བསྟུན།"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "ནུས་མེད་ཡུ་ཊི་ཨེཕ་-༨ ཀྱི ཨིན་ཀོ་དེཌི་ཚིག་ཡིག"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "ནུས་མེད་ཡུ་ཊི་ཨེཕ་-༨ ཀྱི ཨིན་ཀོ་དེཌི་ཚིག་ཡིག"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "ཡུ་ཨར་ཨའི་ %s གི་ ཧོསཊི་ནེམ་དེ་ ནུས་མེད་ཨིན་པས།"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "ཡུ་ཨར་ཨའི་ %s གི་ ཧོསཊི་ནེམ་དེ་ ནུས་མེད་ཨིན་པས།"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "ཡིག་སྣོད་ %s: %s ལྷག་ནི་ལུ་འཛོལ་བ།"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "གདམ་ཁ་%s མིང་དཔྱད་འབད་ནི་ལུ་འཛོལ་བ།"

316
po/el.po
View File

@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-04-02 00:15+0200\n"
"Last-Translator: Thanos Lefteris <alefteris@gmail.com>\n"
"Language-Team: Greek\n"
@ -331,54 +331,33 @@ msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Αδυναμία χαρτογράφησης αρχείου '%s': mmap() απέτυχε: %s"
# gconf/gconfd.c:1676
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: 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
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Μη έγκυρα κωδικοποιημένο κείμενο UTF-8 - not valid '%s'"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#
#: glib/gmarkup.c:389
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Σφάλμα στη γραμμή %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Κενή καταχώρηση '&;'· έγκυρες οντότητες είναι: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Ο χαρακτήρας '%s' δεν επιτρέπεται στην αρχή ονόματος οντότητας, ο χαρακτήρας "
"& ξεκινά οντότητα. Αν δεν επιθυμείτε να ξεκινήσετε οντότητα, χρησιμοποιήστε "
"το συνδυασμό διαφυγής &amp; στη θέση του &"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Ο χαρακτήρας '%s' δεν επιτρέπεται να περιέχεται σε όνομα οντότητας"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Το όνομα οντότητας '%s' δεν είναι γνωστό"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Η οντότητα δεν τελειώνει με ερωτηματικό (;)· πιθανόν να χρησιμοποιήσατε το & "
"χωρίς να θέλετε να ξεκινήσετε οντότητα - διαφυγή συμπλεκτικού χαρακτήρα ως "
"&amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -388,16 +367,7 @@ msgstr ""
"αναφορά χαρακτήρα (&#234; για παράδειγμα) - ίσως το ψηφίο να είναι πολύ "
"μεγάλο"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Η αναφορά χαρακτήρα'%-.*s' δεν κωδικοποιεί έναν επιτρεπόμενο χαρακτήρα"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Κενή αναφορά χαρακτήρα· πρέπει να περιέχει ένα ψηφίο όπως &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -407,32 +377,36 @@ msgstr ""
"χρησιμοποιήσατε το & χωρίς να θέλετε να ξεκινήσετε μια οντότητα - διαφυγή "
"συμπλεκτικού χαρακτήρα ως &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Ημιτελής αναφορά οντότητας"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Ημιτελής αναφορά χαρακτήρα"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Μη έγκυρα κωδικοποιημένο κείμενο UTF-8 - overlong sequence"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Μη έγκυρα κωδικοποιημένο κείμενο UTF-8 - not a start char"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Μη έγκυρα κωδικοποιημένο κείμενο UTF-8 - not valid '%s'"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Η αναφορά χαρακτήρα'%-.*s' δεν κωδικοποιεί έναν επιτρεπόμενο χαρακτήρα"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Κενή καταχώρηση '&;'· έγκυρες οντότητες είναι: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Το όνομα οντότητας '%s' δεν είναι γνωστό"
#: 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 &amp;"
msgstr ""
"Η οντότητα δεν τελειώνει με ερωτηματικό (;)· πιθανόν να χρησιμοποιήσατε το & "
"χωρίς να θέλετε να ξεκινήσετε οντότητα - διαφυγή συμπλεκτικού χαρακτήρα ως "
"&amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Το έγγραφο πρέπει να ξεκινάει με ένα στοιχείο (π.χ. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -440,7 +414,7 @@ msgid ""
msgstr ""
"Το '%s' δεν είναι έγκυρος χαρακτήρας όταν ακολουθείται από ένα χαρακτήρα '<'."
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -449,7 +423,7 @@ msgstr ""
"Περίεργος χαρακτήρας '%s', αναμενόταν ο χαρακτήρας '>' στο τέλος της "
"ετικέτας του κενού-στοιχείου '%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -457,7 +431,7 @@ msgstr ""
"Περίεργος χαρακτήρας '%s', αναμενόταν ένα '=' μετά το όνομα γνωρίσματος '%s' "
"του στοιχείου '%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -468,7 +442,7 @@ msgstr ""
"της ετικέτας έναρξης του στοιχείου '%s' ή προαιρετικά ένα γνώρισμα· πιθανόν "
"να χρησιμοποιήσατε ένα μη έγκυρο χαρακτήρα σε ένα όνομα γνωρίσματος"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -477,7 +451,7 @@ msgstr ""
"Περίεργος χαρακτήρας '%s', αναμενόταν ένα ανοικτό εισαγωγικό μετά το σημείο "
"ίσον κατά την απόδοση τιμής για το γνώρισμα '%s' του στοιχείου '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -486,7 +460,7 @@ msgstr ""
"Το '%s' δεν είναι έγκυρος χαρακτήρας ακολουθούμενος από χαρακτήρες '</'· το "
"'%s' μπορεί να μην αρχίζει όνομα στοιχείου"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -495,27 +469,27 @@ msgstr ""
"Το '%s' δεν είναι ένας έγκυρος χαρακτήρας ακολουθούμενος από το όνομα "
"στοιχείου κλεισίματος '%s'· ο επιτρεπόμενος χαρακτήρας είναι '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Το στοιχείο '%s' έκλεισε, κανένα στοιχείο δεν είναι ανοικτό"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Το στοιχείο '%s' έκλεισε, αλλά το τρέχον ανοικτό στοιχείο είναι '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Το έγγραφο ήταν κενό ή περιέχει μόνο λευκό κενό"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Το έγγραφο τερματίστηκε απρόσμενα αμέσως μετά από μια ανοικτή γωνιακή "
"παρένθεση '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -524,7 +498,7 @@ msgstr ""
"Το έγγραφο τερματίστηκε απρόσμενα με στοιχεία ακόμα ανοικτά - '%s' ήταν το "
"τελευταίο στοιχείο που ανοίχθηκε"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -533,19 +507,19 @@ msgstr ""
"Το έγγραφο τερματίστηκε απρόσμενα, αναμενόταν μια παρένθεση κλεισίματος στο "
"τέλος του tag <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Το έγγραφο τερματίστηκε απρόσμενα μέσα σε όνομα στοιχείου"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Το έγγραφο τερματίστηκε απρόσμενα μέσα σε όνομα γνωρίσματος"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Το έγγραφο τερματίστηκε απρόσμενα μέσα σε tag ανοίγματος στοιχείου."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -553,17 +527,17 @@ msgstr ""
"Το έγγραφο τερματίστηκε απρόσμενα λόγω του ότι μετά του σημείου ίσον "
"ακολουθεί ένα όνομα γνωρίσματος· δεν υπάρχει τιμή γνωρίσματος"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Το έγγραφο τερματίστηκε απρόσμενα μέσα σε τιμή γνωρίσματος"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Το έγγραφο τερματίστηκε απρόσμενα μέσα σε tag κλεισίματος για στοιχείο '%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Το έγγραφο τερματίστηκε απρόσμενα μέσα σε σχόλιο ή εντολή σε διεργασία"
@ -1033,62 +1007,62 @@ msgstr "Μη έγκυρη σειρά στην είσοδο μετατροπής"
msgid "Character out of range for UTF-16"
msgstr "Ο χαρακτήρας είναι έξω από την εμβέλεια για UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Χρήση:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[ΕΠΙΛΟΓΗ...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Επιλογές βοήθειας:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Εμφάνιση επιλογών βοήθειας"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Εμφάνιση όλων των επιλογών βοήθειας"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Επιλογές εφαρμογής:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Αδυναμία ανάλυσης integer value '%s' για %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Integer value '%s' για %s είναι εκτός εύρους"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Αδυναμία ανάλυσης της τιμής του double '%s' για %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Η τιμή του double '%s' για %s είναι εκτός εύρους"
# gconf/gconftool.c:1181
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Σφάλμα επιλογής ανάλυσης %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Λείπει όρισμα για %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Άγνωστη επιλογή %s"
@ -1209,8 +1183,8 @@ msgstr "Η τιμή που διαβιβάστηκε στο %s είναι υπε
msgid "Stream is already closed"
msgstr "Η ροή έχει ήδη κλείσει"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Η λειτουργία ακυρώθηκε"
@ -1351,7 +1325,7 @@ msgstr "Δεν υποστηρίζεται η ύπαρξη απορριμάτων
msgid "File names cannot contain '%c'"
msgstr "Τα ονόματα των αρχείων δεν επιτρέπεται να περιέχουν '%c'"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "ο τόμος δεν υποστηρίζει την προσάρτηση"
@ -1372,14 +1346,6 @@ msgstr "Εκκρεμεί μία ενέργεια του μετρητή αρχε
msgid "File enumerator is already closed"
msgstr "Ο μετρητής αρχείων έχει ήδη κλείσει"
#: gio/gfileicon.c:145
msgid "file"
msgstr "αρχείο"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "Το αρχείο που περιέχει το εικονίδιο"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1806,57 +1772,12 @@ msgstr "Η ροή εξόδου δεν υποστηρίζει την εγγραφ
msgid "Source stream is already closed"
msgstr "Η ροή πηγής έχει ήδη κλείσει"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "όνομα"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Το όνομα του εικονιδίου"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "ονόματα"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Πίνακας που περιέχει τα ονόματα των εικονιδίων"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "χρήση των προεπιλεγμένων εφεδρικών"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Αν θα χρησιμοποιούνται τα προεπιλεγμένα εφεδρικά που προκύπτουν από τη "
"συντόμευση του ονόματος στους χαρακτήρες '-'. Αγνοεί όλα τα ονόματα μετά το "
"πρώτο, αν έχουν δοθεί πολλαπλά ονόματα."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
"Δεν είναι δυνατός ο χειρισμός της έκδοσης %d της κωδικοποίησης GThemedIcon"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Περιγραφέας αρχείου"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "Ο περιγραφέας αρχείου από τον οποίο θα γίνει η ανάγνωση"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Κλείσιμο περιγραφέα αρχείου"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "Αν θα κλείσει ο περιγραφέας αρχείου όταν κλείσει η ροή"
#
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
@ -1875,17 +1796,13 @@ msgstr "Σφάλμα κλεισίματος unix: %s"
msgid "Filesystem root"
msgstr "Root συστήματος αρχείων"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "Ο περιγραφέας αρχείου στον οποίο θα γίνει η εγγραφή"
# gconf/gconftool.c:1181
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Σφάλμα εγγραφής σε unix: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "ο τόμος δεν υποστηρίζει την εξαγωγή"
@ -1922,3 +1839,74 @@ msgstr "χρήση αναπτυγμένης μορφής λιστών"
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[ΑΡΧΕΙΟ...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Ο χαρακτήρας '%s' δεν επιτρέπεται στην αρχή ονόματος οντότητας, ο "
#~ "χαρακτήρας & ξεκινά οντότητα. Αν δεν επιθυμείτε να ξεκινήσετε οντότητα, "
#~ "χρησιμοποιήστε το συνδυασμό διαφυγής &amp; στη θέση του &"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Ο χαρακτήρας '%s' δεν επιτρέπεται να περιέχεται σε όνομα οντότητας"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Κενή αναφορά χαρακτήρα· πρέπει να περιέχει ένα ψηφίο όπως &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Ημιτελής αναφορά οντότητας"
#~ msgid "Unfinished character reference"
#~ msgstr "Ημιτελής αναφορά χαρακτήρα"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Μη έγκυρα κωδικοποιημένο κείμενο UTF-8 - overlong sequence"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Μη έγκυρα κωδικοποιημένο κείμενο UTF-8 - not a start char"
#~ msgid "file"
#~ msgstr "αρχείο"
#~ msgid "The file containing the icon"
#~ msgstr "Το αρχείο που περιέχει το εικονίδιο"
#~ msgid "name"
#~ msgstr "όνομα"
#~ msgid "The name of the icon"
#~ msgstr "Το όνομα του εικονιδίου"
#~ msgid "names"
#~ msgstr "ονόματα"
#~ msgid "An array containing the icon names"
#~ msgstr "Πίνακας που περιέχει τα ονόματα των εικονιδίων"
#~ msgid "use default fallbacks"
#~ msgstr "χρήση των προεπιλεγμένων εφεδρικών"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Αν θα χρησιμοποιούνται τα προεπιλεγμένα εφεδρικά που προκύπτουν από τη "
#~ "συντόμευση του ονόματος στους χαρακτήρες '-'. Αγνοεί όλα τα ονόματα μετά "
#~ "το πρώτο, αν έχουν δοθεί πολλαπλά ονόματα."
#~ msgid "File descriptor"
#~ msgstr "Περιγραφέας αρχείου"
#~ msgid "The file descriptor to read from"
#~ msgstr "Ο περιγραφέας αρχείου από τον οποίο θα γίνει η ανάγνωση"
#~ msgid "Close file descriptor"
#~ msgstr "Κλείσιμο περιγραφέα αρχείου"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "Αν θα κλείσει ο περιγραφέας αρχείου όταν κλείσει η ροή"
#~ msgid "The file descriptor to write to"
#~ msgstr "Ο περιγραφέας αρχείου στον οποίο θα γίνει η εγγραφή"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -298,52 +298,32 @@ msgstr "Failed to open file '%s': open() failed: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Failed to map file '%s': mmap() failed: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Error on line %d char %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Invalid UTF-8 encoded text - not valid '%s'"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Error on line %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand is not supposed to be an entity, escape "
"it as &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Character '%s' is not valid inside an entity name"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entity name '%s' is not known"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -352,51 +332,45 @@ msgstr ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (&#234; for example) - perhaps the digit is too large"
#: glib/gmarkup.c:660
#: 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 &amp;"
msgstr ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"as &amp;"
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Character reference '%-.*s' does not encode a permitted character"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Empty character reference; should include a digit such as &#454;"
#: glib/gmarkup.c:685
#: glib/gmarkup.c:654
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 &amp;"
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"as &amp;"
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Unfinished entity reference"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Entity name '%s' is not known"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Unfinished character reference"
#: 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 &amp;"
msgstr ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Invalid UTF-8 encoded text - overlong sequence"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Invalid UTF-8 encoded text - not a start char"
#: glib/gmarkup.c:1130
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Invalid UTF-8 encoded text - not valid '%s'"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Document must begin with an element (e.g. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -405,7 +379,7 @@ msgstr ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -414,14 +388,14 @@ msgstr ""
"Odd character '%s', expected a '>' character to end the start tag of element "
"'%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -432,7 +406,7 @@ msgstr ""
"element '%s', or optionally an attribute; perhaps you used an invalid "
"character in an attribute name"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -441,7 +415,7 @@ msgstr ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"giving value for attribute '%s' of element '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -450,7 +424,7 @@ msgstr ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -459,25 +433,25 @@ msgstr ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element '%s' was closed, no element is currently open"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Element '%s' was closed, but the currently open element is '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Document was empty or contained only whitespace"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Document ended unexpectedly just after an open angle bracket '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -486,7 +460,7 @@ msgstr ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -495,19 +469,19 @@ msgstr ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Document ended unexpectedly inside an element name"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Document ended unexpectedly inside an attribute name"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Document ended unexpectedly inside an element-opening tag."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -515,16 +489,16 @@ msgstr ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Document ended unexpectedly while inside an attribute value"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Document ended unexpectedly inside the close tag for element '%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Document ended unexpectedly inside a comment or processing instruction"
@ -962,61 +936,61 @@ msgstr "Invalid sequence in conversion input"
msgid "Character out of range for UTF-16"
msgstr "Character out of range for UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Usage:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Help Options:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Show help options"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Show all help options"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Application Options:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Cannot parse integer value '%s' for %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Integer value '%s' for %s out of range"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Cannot parse double value '%s' for %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Double value '%s' for %s out of range"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Error parsing option %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Missing argument for %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Unknown option %s"
@ -1136,8 +1110,8 @@ msgstr "Too large count value passed to %s"
msgid "Stream is already closed"
msgstr "Stream is already closed"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Operation was cancelled"
@ -1278,7 +1252,7 @@ msgstr "Trash not supported"
msgid "File names cannot contain '%c'"
msgstr "File names cannot contain '%c'"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "volume doesn't implement mount"
@ -1299,15 +1273,6 @@ msgstr "File enumerator has outstanding operation"
msgid "File enumerator is already closed"
msgstr "File enumerator is already closed"
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "An array containing the icon names"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1719,56 +1684,11 @@ msgstr "Output stream doesn't implement write"
msgid "Source stream is already closed"
msgstr "Source stream is already closed"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "name"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "The name of the icon"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "names"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "An array containing the icon names"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "use default fallbacks"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Error stating file descriptor: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1785,16 +1705,12 @@ msgstr "Error closing UNIX: %s"
msgid "Filesystem root"
msgstr "Filesystem root"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Error writing to UNIX: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "volume doesn't implement eject"
@ -1831,6 +1747,63 @@ msgstr "use a long listing format"
msgid "[FILE...]"
msgstr "[FILE...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand is not supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Character '%s' is not valid inside an entity name"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Empty character reference; should include a digit such as &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Unfinished entity reference"
#~ msgid "Unfinished character reference"
#~ msgstr "Unfinished character reference"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Invalid UTF-8 encoded text - overlong sequence"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Invalid UTF-8 encoded text - not a start char"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "An array containing the icon names"
#~ msgid "name"
#~ msgstr "name"
#~ msgid "The name of the icon"
#~ msgstr "The name of the icon"
#~ msgid "names"
#~ msgstr "names"
#~ msgid "An array containing the icon names"
#~ msgstr "An array containing the icon names"
#~ msgid "use default fallbacks"
#~ msgstr "use default fallbacks"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Error stating file descriptor: %s"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u byte"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: GLIB\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-02-23 19:30+0000\n"
"Last-Translator: David Lodge <dave@cirt.net>\n"
"Language-Team: <>\n"
@ -297,52 +297,32 @@ msgstr "Failed to open file '%s': open() failed: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Failed to map file '%s': mmap() failed: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Error on line %d char %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Invalid UTF-8 encoded text - not valid '%s'"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Error on line %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Character '%s' is not valid inside an entity name"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entity name '%s' is not known"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -351,51 +331,45 @@ msgstr ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (&#234; for example) - perhaps the digit is too large"
#: glib/gmarkup.c:660
#: 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 &amp;"
msgstr ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"as &amp;"
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Character reference '%-.*s' does not encode a permitted character"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Empty character reference; should include a digit such as &#454;"
#: glib/gmarkup.c:685
#: glib/gmarkup.c:654
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 &amp;"
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"as &amp;"
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Unfinished entity reference"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Entity name '%s' is not known"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Unfinished character reference"
#: 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 &amp;"
msgstr ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Invalid UTF-8 encoded text - overlong sequence"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Invalid UTF-8 encoded text - not a start char"
#: glib/gmarkup.c:1130
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Invalid UTF-8 encoded text - not valid '%s'"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Document must begin with an element (e.g. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -404,7 +378,7 @@ msgstr ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -413,14 +387,14 @@ msgstr ""
"Odd character '%s': expected a '>' character to end the empty-element tag '%"
"s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -431,7 +405,7 @@ msgstr ""
"element '%s', or optionally an attribute; perhaps you used an invalid "
"character in an attribute name"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -440,7 +414,7 @@ msgstr ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"giving value for attribute '%s' of element '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -449,7 +423,7 @@ msgstr ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -458,25 +432,25 @@ msgstr ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element '%s' was closed, no element is currently open"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Element '%s' was closed, but the currently open element is '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Document was empty or contained only whitespace"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Document ended unexpectedly just after an open angle bracket '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -485,7 +459,7 @@ msgstr ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -494,19 +468,19 @@ msgstr ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Document ended unexpectedly inside an element name"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Document ended unexpectedly inside an attribute name"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Document ended unexpectedly inside an element-opening tag."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -514,16 +488,16 @@ msgstr ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Document ended unexpectedly while inside an attribute value"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Document ended unexpectedly inside the close tag for element '%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Document ended unexpectedly inside a comment or processing instruction"
@ -961,61 +935,61 @@ msgstr "Invalid sequence in conversion input"
msgid "Character out of range for UTF-16"
msgstr "Character out of range for UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Usage:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Help Options:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Show help options"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Show all help options"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Application Options:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Cannot parse integer value '%s' for %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Integer value '%s' for %s out of range"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Cannot parse double value '%s' for %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Double value '%s' for %s out of range"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Error parsing option %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Missing argument for %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Unknown option %s"
@ -1135,8 +1109,8 @@ msgstr "Too large count value passed to %s"
msgid "Stream is already closed"
msgstr "Stream is already closed"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Operation was cancelled"
@ -1276,7 +1250,7 @@ msgstr "Wastebasket not supported"
msgid "File names cannot contain '%c'"
msgstr "File names cannot contain '%c'"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "volume doesn't implement mount"
@ -1297,14 +1271,6 @@ msgstr "File enumerator has outstanding operation"
msgid "File enumerator is already closed"
msgstr "File enumerator is already closed"
#: gio/gfileicon.c:145
msgid "file"
msgstr "file"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "The file containing the icon"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1713,55 +1679,11 @@ msgstr "Output stream doesn't implement write"
msgid "Source stream is already closed"
msgstr "Source stream is already closed"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "name"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "The name of the icon"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "names"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "An array containing the icon names"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "use default fallbacks"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Can't handle version %d of GThemedIcon encoding"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "File descriptor"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "The file descriptor from which to read"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Close file descriptor"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "Whether to close the file descriptor when the stream is closed"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1778,16 +1700,12 @@ msgstr "Error closing unix: %s"
msgid "Filesystem root"
msgstr "Filesystem root"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "The file descriptor to which to write"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Error writing to unix: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "volume doesn't implement eject"
@ -1824,6 +1742,76 @@ msgstr "use a long listing format"
msgid "[FILE...]"
msgstr "[FILE...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Character '%s' is not valid inside an entity name"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Empty character reference; should include a digit such as &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Unfinished entity reference"
#~ msgid "Unfinished character reference"
#~ msgstr "Unfinished character reference"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Invalid UTF-8 encoded text - overlong sequence"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Invalid UTF-8 encoded text - not a start char"
#~ msgid "file"
#~ msgstr "file"
#~ msgid "The file containing the icon"
#~ msgstr "The file containing the icon"
#~ msgid "name"
#~ msgstr "name"
#~ msgid "The name of the icon"
#~ msgstr "The name of the icon"
#~ msgid "names"
#~ msgstr "names"
#~ msgid "An array containing the icon names"
#~ msgstr "An array containing the icon names"
#~ msgid "use default fallbacks"
#~ msgstr "use default fallbacks"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgid "File descriptor"
#~ msgstr "File descriptor"
#~ msgid "The file descriptor to read from"
#~ msgstr "The file descriptor from which to read"
#~ msgid "Close file descriptor"
#~ msgstr "Close file descriptor"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "Whether to close the file descriptor when the stream is closed"
#~ msgid "The file descriptor to write to"
#~ msgstr "The file descriptor to which to write"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u byte"

282
po/eo.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib 2.3.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -298,50 +298,32 @@ msgstr "Malsukcesis malfermi dosieron '%s': fdopen() malsukcesis: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Malsukcesis malfermi dosieron '%s': fdopen() malsukcesis: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Eraro ĉe linio %d signo %d: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Nevalida UTF-8 kodiginta teksto"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Eraro ĉe linio %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "Malplena ero '&;'; validaj eroj estas : &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Signo '%s' ne estas valida en la komenco de eronomo; la & signo komencas unu "
"ero;se la kaj-signo ne estas ero, eskapu ĝin kiel &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Signo '%s' ne estas valida en unu eronomo"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Eronomo '%s' ne estas konata"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Ero ne finis kun punktokomo; vi eble uzis kaj-signo sen voli komenci eron."
"Eskapu kaj-signon kiel &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, fuzzy, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -350,16 +332,7 @@ msgstr ""
"Analizo de '%s' malsuksesis. Une cifero devus esti en la signoreferenco "
"(&#234; ekzemple)- eble la cifero estas tro granda"
#: glib/gmarkup.c:660
#, fuzzy, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Signorefrenco '%s' ne faras kodigu permesatan signon"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Malplena signa referenco; devus enhavi ciferon kiel &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -368,34 +341,34 @@ msgstr ""
"Signa referenco ne finis kun punktokomo; vi verŝajne uzas kaj-signon sen "
"volikomenci eron - eskapu kaj-signon kiel &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Nefinita erorefrenco"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Nefinita signorefrenco"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Nevalida UTF-8 kodiginta teksto"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Nevalida UTF-8 kodiginta teksto"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Nevalida UTF-8 kodiginta teksto"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Signorefrenco '%s' ne faras kodigu permesatan signon"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "Malplena ero '&;'; validaj eroj estas : &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Eronomo '%s' ne estas konata"
#: 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 &amp;"
msgstr ""
"Ero ne finis kun punktokomo; vi eble uzis kaj-signo sen voli komenci eron."
"Eskapu kaj-signon kiel &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumento devas komenci kun elemento (ekz. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -404,7 +377,7 @@ msgstr ""
"'%s' ne estas valida signo post la signo '<'; ĝi ne eblas "
"komcencielementnomon"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -413,7 +386,7 @@ msgstr ""
"Malbona signo '%s', unu '>' signo estas atendita por fini la "
"komencetikedonde elemento '%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -421,7 +394,7 @@ msgstr ""
"Malbona signo '%s', unu '>' signo estas atendita post atributnomo '%s' "
"deelemento '%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -432,7 +405,7 @@ msgstr ""
"lakomencetikedon de elemento '%s' aŭ unu atributo; eble vi uzas nevalidan "
"signon enunu atributnomo"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -441,7 +414,7 @@ msgstr ""
"Malbona signo '%s', malferma citilo estas atendita post la egalsigno "
"kiamdonita valoro por atributo '%s' de elemento '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -450,7 +423,7 @@ msgstr ""
"'%s' ne estas valida signo post la signoj '</'; '%s' ne eblas "
"komcencielementnomon"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -459,26 +432,26 @@ msgstr ""
"'%s' ne estas valida signo post la ferma elementnomo '%s'; la valida signo "
"estas'>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Elemento '%s' estis fermita, neniu elemento estas malfermita"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
"Elemento '%s' estis fermita, sed la momente malfermita elemento estas '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Dokumento estis malpena aŭ enhavis nur blankspaco"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokumento neatendite finis post malfermi-angulkrampon '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -487,7 +460,7 @@ msgstr ""
"Dokumento neatendite finis kun elementoj ankoraŭ malfermi - '%s' estis la "
"lasta elemento malfermita"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -496,19 +469,19 @@ msgstr ""
"Dokumento neatendite finis, atendis vidi etikedon finiĝanta je fermi-"
"angulkrampo <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumento neatendite finis en elementa nomo"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokumento neatendite finis en atributa nomo"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokumento neatendite finis en elemento-malfermanta etikedo."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -516,16 +489,16 @@ msgstr ""
"Dokumento neatendite finis post le egalsigno sekvita de atributnomo; ne "
"atributvaloro"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokumento neatendite finis dum en atributvaloro"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Dokumento neatendite finis en la fermetikedo por elemento '%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Dokumento neatendite finis en komento aŭ komputanta instrukcio"
@ -967,61 +940,61 @@ msgstr "Nevalida sekvenco en konverta enigo"
msgid "Character out of range for UTF-16"
msgstr "Signo ne estas en la UTF-16 intervalo"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr ""
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr ""
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr ""
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr ""
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr ""
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr ""
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr ""
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, fuzzy, c-format
msgid "Error parsing option %s"
msgstr "Eraro dum konverto: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr ""
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr ""
@ -1138,8 +1111,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1279,7 +1252,7 @@ msgstr ""
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1300,15 +1273,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "La komputilnomo de la URI '%s' ne estas valida"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1720,55 +1684,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "La komputilnomo de la URI '%s' ne estas valida"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Eraro dum legado de dosiero '%s': %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1785,16 +1705,12 @@ msgstr "Eraro ĉe linio %d: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Eraro dum konverto: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1831,6 +1747,46 @@ msgstr ""
msgid "[FILE...]"
msgstr ""
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Signo '%s' ne estas valida en la komenco de eronomo; la & signo komencas "
#~ "unu ero;se la kaj-signo ne estas ero, eskapu ĝin kiel &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Signo '%s' ne estas valida en unu eronomo"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Malplena signa referenco; devus enhavi ciferon kiel &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Nefinita erorefrenco"
#~ msgid "Unfinished character reference"
#~ msgstr "Nefinita signorefrenco"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Nevalida UTF-8 kodiginta teksto"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Nevalida UTF-8 kodiginta teksto"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "La komputilnomo de la URI '%s' ne estas valida"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "La komputilnomo de la URI '%s' ne estas valida"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Eraro dum legado de dosiero '%s': %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Eraro dum konverto: %s"

806
po/es.po

File diff suppressed because it is too large Load Diff

402
po/et.po

File diff suppressed because it is too large Load Diff

322
po/eu.po
View File

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: eu\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-17 18:55+0100\n"
"Last-Translator: Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>\n"
"Language-Team: Basque <itzulpena@euskalgnu.org>\n"
@ -315,53 +315,32 @@ msgid "Failed to map file '%s': mmap() failed: %s"
msgstr ""
"Ezin izan da '%s' fitxategi-mapa ireki, mmap() funtzioak huts egin du: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Errorea %d lerroko %d karakterean: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "UTF-8 gisa kodetutako testu baliogabea - '%s' ez da baliozkoa"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Errorea %d lerroan: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"'&;' entitatea hutsik dago; baliozko entitateak hauek dira: &amp; &quot; "
"&lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"'%s' karakterea ezin da jarri entitate-izenen hasieran; & karaktereak "
"entitate bat hasten du; & ikurrak entitatea izan behar ez badu, izenda ezazu "
"&amp; gisa"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "'%s' karakterea ezin da erabili entitate-izenen barruan"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "'%s' entitate-izena ezezaguna da"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entitatea ez da puntu eta komaz bukatzen; normalean & ikurra erabiltzen da "
"entitatea hasteko asmorik gabe; izendatu & karakterea &amp; gisa;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -370,18 +349,7 @@ msgstr ""
"Ezin izan da '%-.*s' analizatu, digitu bat izan behar zuen karaktere-"
"erreferentzia baten barruan (&#234; adibidez); agian digitua handiegia da"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
"'%-.*s' karaktere-erreferentziak ez du baimendutako karaktere bat kodetzen"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr ""
"Karaktere-erreferentzia hutsa, digitu bat eduki beharko luke; adibidez &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -391,32 +359,37 @@ msgstr ""
"erabiliko zenuen entitatea hasteko asmorik gabe. Izendatu & karakterea &amp; "
"gisa;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Amaitu gabeko entitate-erreferentzia"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Amaitu gabeko karaktere-erreferentzia"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "UTF-8 gisa kodetutako testu baliogabea - sekuentzia luzeegia"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "UTF-8 gisa kodetutako testu baliogabea - hasierako karaktererik gabe"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "UTF-8 gisa kodetutako testu baliogabea - '%s' ez da baliozkoa"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
"'%-.*s' karaktere-erreferentziak ez du baimendutako karaktere bat kodetzen"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"'&;' entitatea hutsik dago; baliozko entitateak hauek dira: &amp; &quot; "
"&lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "'%s' entitate-izena ezezaguna da"
#: 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 &amp;"
msgstr ""
"Entitatea ez da puntu eta komaz bukatzen; normalean & ikurra erabiltzen da "
"entitatea hasteko asmorik gabe; izendatu & karakterea &amp; gisa;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumentuak elementu batez hasi behar du (adibidez, <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -425,7 +398,7 @@ msgstr ""
"'%s' ez da karaktere balioduna '<' karakterearen atzetik; baliteke elementu "
"baten izena ez hastea"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -434,7 +407,7 @@ msgstr ""
"'%s' karaktere bitxia, '>' karakterea espero zen '%s' elementuaren etiketa "
"hutsa amaitzeko"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -442,7 +415,7 @@ msgstr ""
"'%s' karaktere bitxia, '=' espero zen '$2%s' elementuaren '$1%s' "
"atributuaren ondoren"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -453,7 +426,7 @@ msgstr ""
"hasiera-etiketa bukatzeko, edo bestela atributu bat. Agian karaktere "
"baliogabea erabili duzu atributu-izen batean"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -462,7 +435,7 @@ msgstr ""
"'%s' karaktere bitxia, komatxo irekia espero zen berdin ikurraren ondoren "
"'$2%s' elementuaren '$1%s' atributuari balioa ematean"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -471,7 +444,7 @@ msgstr ""
"'%s' ez da karaktere balioduna '</'; karaktereen atzetik; baliteke '%s'e(k) "
"elementu baten izena ez hastea"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -480,25 +453,25 @@ msgstr ""
"'%s' karaktere baliogabea da '%s' itxiera-elementuaren izenaren atzetik; "
"baimendutako karakterea '>' da"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "'%s' elementua itxi egin da, unean ez dago elementurik irekita"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "'%s' elementua itxi egin da, baina unean '%s' elementua dago irekita"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Dokumentua hutsik dago edo zuriuneak bakarrik ditu"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokumentua ustekabean itxi da angelu-parentesi ireki baten ondoren '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -507,7 +480,7 @@ msgstr ""
"Dokumentua ustekabean amaitu da oraindik irekita zeuden elementuekin. '%s' "
"irekitako azken elementua da"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -516,20 +489,20 @@ msgstr ""
"Dokumentua ustekabean amaitu da, angelu-parentesi itxia ikustea espero nuen <"
"%s/> etiketa amaitzen"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumentua ustekabean amaitu da elementu-izen baten barruan"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokumentua ustekabean amaitu da atributu-izen baten barruan"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"Dokumentua ustekabean amaitu da elementua irekitzeko etiketa baten barruan."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -537,17 +510,17 @@ msgstr ""
"Dokumentua ustekabean amaitu da atributu-izen baten ondorengo berdin "
"ikurraren atzetik; ez dago atributu-baliorik"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokumentua ustekabean amaitu da atributu-balio baten barruan"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Dokumentua ustekabean amaitu da '%s' elementuaren itxiera-etiketaren barruan"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokumentua ustekabean amaitu da iruzkin baten barruan edo prozesatzen ari "
@ -998,61 +971,61 @@ msgstr "Sekuentzia baliogabea bihurketa-sarreran"
msgid "Character out of range for UTF-16"
msgstr "Karakterea UTF-16 barrutitik kanpo"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Erabilera:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[AUKERA...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Laguntzako aukerak:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Erakutsi laguntzako aukerak"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Erakutsi laguntzako aukera guztiak"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Aplikazio-aukerak:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Ezin da '%2$s'(r)en '%1$s' osoko balioa analizatu"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "%2$s(r)en '%1$s' osoko balioa barrutitik kanpo"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Ezin da '%2$s'(r)en '%1$s' balio bikoitza analizatu"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "%2$s(r)en '%1$s' balio bikoitza barrutitik kanpo"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Errorea %s aukera analizatzean"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s(e)ko argumentua falta da"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "%s aukera ezezaguna"
@ -1177,8 +1150,8 @@ msgstr "Zenbaketaren balio handiegia honi pasatuta: %s"
msgid "Stream is already closed"
msgstr "Korrontea jadanik itxita dago"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Eragiketa bertan behera utzi da"
@ -1319,7 +1292,7 @@ msgstr "Zakarrontzira botatzea ez dago onartuta"
msgid "File names cannot contain '%c'"
msgstr "Fitxategi-izenek ezin dute '%c' eduki"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "bolumenak ez dauka muntatzea inplementatuta"
@ -1340,14 +1313,6 @@ msgstr "Fitxategiaren zerrendatzaileak eragiketa bat du lanean"
msgid "File enumerator is already closed"
msgstr "Fitxategiaren zerrendatzailea itxi da jadanik"
#: gio/gfileicon.c:145
msgid "file"
msgstr "fitxategia"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "Ikonoa duen fitxategia"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1760,56 +1725,11 @@ msgstr "Irteerako korronteak ez dauka idaztea inplementatuta"
msgid "Source stream is already closed"
msgstr "Iturburuko korrontea jadanik itxi da"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "izena"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Ikonoaren izena"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "izenak"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Ikonoen izenak dituen matrizea"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "erabili ikono lehenetsiak"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"'-' karaktereekin ordenatutako izenen arabera aurkitutako ikono lehenetsiak "
"erabiliko diren ala ez. Aurrenekoaren ondoren dauden izenak baztertzen ditu "
"hainbat izen ematen badira."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Ezin da GThemedIcon kodeketaren %d bertsioa kudeatu"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Fitxategi-deskriptorea"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "Fitxategi-deskriptorea bertatik irakurtzeko"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Itxi fitxategi-deskriptorea"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "Fitxategi-deskriptorea ixtea korrontea ixtean edo ez."
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1826,16 +1746,12 @@ msgstr "Errorea UNIX ixtean: %s"
msgid "Filesystem root"
msgstr "Fitxategi-sistemaren erroa"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "Fitxategi-deskriptorea bertan idazteko"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Errorea UNIXen idaztean: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "bolumenak ez dauka egoztea inplementatuta"
@ -1871,3 +1787,77 @@ msgstr "erabili zerrenda-formatu luzea"
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[FITXATEGIA...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "'%s' karakterea ezin da jarri entitate-izenen hasieran; & karaktereak "
#~ "entitate bat hasten du; & ikurrak entitatea izan behar ez badu, izenda "
#~ "ezazu &amp; gisa"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "'%s' karakterea ezin da erabili entitate-izenen barruan"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr ""
#~ "Karaktere-erreferentzia hutsa, digitu bat eduki beharko luke; adibidez "
#~ "&#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Amaitu gabeko entitate-erreferentzia"
#~ msgid "Unfinished character reference"
#~ msgstr "Amaitu gabeko karaktere-erreferentzia"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "UTF-8 gisa kodetutako testu baliogabea - sekuentzia luzeegia"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr ""
#~ "UTF-8 gisa kodetutako testu baliogabea - hasierako karaktererik gabe"
#~ msgid "file"
#~ msgstr "fitxategia"
#~ msgid "The file containing the icon"
#~ msgstr "Ikonoa duen fitxategia"
#~ msgid "name"
#~ msgstr "izena"
#~ msgid "The name of the icon"
#~ msgstr "Ikonoaren izena"
#~ msgid "names"
#~ msgstr "izenak"
#~ msgid "An array containing the icon names"
#~ msgstr "Ikonoen izenak dituen matrizea"
#~ msgid "use default fallbacks"
#~ msgstr "erabili ikono lehenetsiak"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "'-' karaktereekin ordenatutako izenen arabera aurkitutako ikono "
#~ "lehenetsiak erabiliko diren ala ez. Aurrenekoaren ondoren dauden izenak "
#~ "baztertzen ditu hainbat izen ematen badira."
#~ msgid "File descriptor"
#~ msgstr "Fitxategi-deskriptorea"
#~ msgid "The file descriptor to read from"
#~ msgstr "Fitxategi-deskriptorea bertatik irakurtzeko"
#~ msgid "Close file descriptor"
#~ msgstr "Itxi fitxategi-deskriptorea"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "Fitxategi-deskriptorea ixtea korrontea ixtean edo ez."
#~ msgid "The file descriptor to write to"
#~ msgstr "Fitxategi-deskriptorea bertan idazteko"

284
po/fa.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2006-09-04 18:36+0330\n"
"Last-Translator: Roozbeh Pournader <roozbeh@farsiweb.info>\n"
"Language-Team: Persian\n"
@ -297,53 +297,32 @@ msgstr "باز کردن پروندهٔ «‎%s» شکست خورد: open() ش
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "تهیهٔ نقشه از پروندهٔ «‎%s» شکست خورد: mmap() شکست خورد: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "خطا در سطر %Id نویسهٔ %Id: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "متن کدگذاری‌شدهٔ UTF-8 نامعتبر"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "خطا در سطر %Id: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"نهاد خالی «‎&;‎» مشاهده شد؛ نهادهای معتبر عبارتند از: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"نویسهٔ «%s» در ابتدای نام نهادها مجاز نیست؛ نویسهٔ & نهاد را آغاز می‌کند؛ اگر "
"این علامت & قرار نیست نهاد شود، به‌جای آن از &amp; استفاده کنید"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "نویسهٔ «%s» داخل نام نهادها مجاز نیست"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "نام نهاد «%s» شناخته نیست"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"نهاد با یک نقطه‌ویرگول لاتین تمام نشده است؛ به احتمال زیاد بدون این که "
"بخواهید نهادی را آغاز کنید از نویسهٔ & استفاده کرده‌اید - برای نوشتن علامت & "
"از &amp; استفاده کنید"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -352,16 +331,7 @@ msgstr ""
"تجزیهٔ «‎%-.*s»، که باید رقمی داخل یک ارجاع نویسه‌ای (مثل &#234;) می‌بود شکست "
"خورد - شاید رقم خیلی بزرگ است"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "ارجاع نویسه‌ای «‎%-.*s» به نویسهٔ مجاز اشاره نمی‌کند"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "ارجاع نویسه‌ای خالی؛ باید یک رقم داشته باشد، مثل &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -371,34 +341,37 @@ msgstr ""
"بخواهید نهادی را آغاز کنید از نویسهٔ & استفاده کرده‌اید - برای نوشتن علامت & "
"از &amp; استفاده کنید"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "ارجاع نهادی ناتمام"
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "ارجاع نویسه‌ای «‎%-.*s» به نویسهٔ مجاز اشاره نمی‌کند"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "ارجاع نویسه‌ای ناتمام"
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"نهاد خالی «‎&;‎» مشاهده شد؛ نهادهای معتبر عبارتند از: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "متن کدگذاری‌شدهٔ UTF-8 نامعتبر"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "متن کدگذاری‌شدهٔ UTF-8 نامعتبر"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "متن کدگذاری‌شدهٔ UTF-8 نامعتبر"
msgid "Entity name '%-.*s' is not known"
msgstr "نام نهاد «%s» شناخته نیست"
#: glib/gmarkup.c:1168
#: 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 &amp;"
msgstr ""
"نهاد با یک نقطه‌ویرگول لاتین تمام نشده است؛ به احتمال زیاد بدون این که "
"بخواهید نهادی را آغاز کنید از نویسهٔ & استفاده کرده‌اید - برای نوشتن علامت & "
"از &amp; استفاده کنید"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "نوشتار باید با یک عنصر (مثلاً <book>) شروع شود"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -406,7 +379,7 @@ msgid ""
msgstr ""
"‏«%s» پس از یک نویسهٔ '<' نویسهٔ مجازی نیست؛ نمی‌شود ابتدای نام یک عنصر باشد"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -415,14 +388,14 @@ msgstr ""
"نویسهٔ غیرعادی «%s»، برای پایان دادن به برچسب شروع عنصر «%s» انتظار یک نویسهٔ «‎>‎» "
"می‌رفت"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"نویسهٔ غیرعادی «%s»، بعد از نام مشخصهٔ «%s» عنصر «%s» انتظار یک نویسهٔ «=» می‌رفت"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -433,7 +406,7 @@ msgstr ""
"انتظار یک نویسهٔ «‎>‎» یا «/» می‌رفت؛ شاید از یک نویسهٔ نامعتبر در نام مشخصه‌ای "
"استفاده کرده باشید"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -442,7 +415,7 @@ msgstr ""
"نویسهٔ غیرعادی «%s»، هنگام مقدار دادن به مشخصهٔ «%s» از عنصر «%s» پس از علامت "
"تساوی انتظار یک علامت نقل قول باز می‌رفت"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -451,32 +424,32 @@ msgstr ""
"‏«%s» بعد از نویسه‌های «‎</‎» نویسهٔ معتبری نیست؛ «%s» نمی‌تواند ابتدای نام عناصر "
"قرار بگیرد"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, 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:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "عنصر «%s» بسته بود، در حال حاضر هیچ عنصری باز نیست"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "عنصر «%s» بسته بود، ولی عنصری که در حال حاضر باز است «%s» است"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "نوشتار خالی است یا فقط فاصلهٔ خالی دارد"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "نوشتار به‌طور غیرمنتظره‌ای درست بعد از یک علامت کوچکتر '<' پایان یافت"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -485,7 +458,7 @@ msgstr ""
"نوشتار وقتی که هنوز عناصری باز بودند به‌طور غیرمنتظره‌ای پایان یافت آخرین "
"عنصر باز شده «%s» بود"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -494,19 +467,19 @@ msgstr ""
"نوشتار به‌طور غیرمنتظره‌ای پایان یافت، یک علامت بزرگتر برای بستن برچسب <%s/> "
"انتظار می‌رفت"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "نوشتار به‌طور غیرمنتظره‌ای داخل نام یک عنصر به‌پایان رسید"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "نوشتار به‌طور غیرمنتظره‌ای داخل نام یک مشخصه به‌پایان رسید"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "نوشتار به‌طور غیرمنتظره‌ای داخل یک برچسب عنصربازکن پایان یافت."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -514,16 +487,16 @@ msgstr ""
"نوشتار به‌طور غیرمنتظره‌ای بعد از علامت تساوی‌ای که پس از نام مشخصه‌ای آمده بود "
"تمام شد؛ بدون مقدار برای مشخصه"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "نوشتار به‌طور غیرمنتظره‌ای داخل مقدار یک مشخصه به‌پایان رسید"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "نوشتار به‌طور غیرمنتظره‌ای داخل برچسب بستن عنصر «%s» پایان یافت"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"نوشتار به‌طور غیرمنتظره‌ای داخل یک توضیح یا دستورالعمل پردازشی پایان یافت"
@ -971,61 +944,61 @@ msgstr "دنبالهٔ نامعتبر در ورودی تبدیل"
msgid "Character out of range for UTF-16"
msgstr "نویسهٔ خارج از محدوده برای UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "روش استفاده:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[گزینه...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "گزینه‌های راهنما:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "نمایش گزینه‌های راهنما"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "نمایش همهٔ گزینه‌های راهنما"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "گزینه‌های برنامه:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "نمی‌توان مقدار صحیح «%s» برای %s را تجزیه کرد"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "مقدار صحیح «%s» خارج از محدودهٔ %s است"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "نمی‌توان مقدار صحیح با دقت مضاعف «%s» برای %s را تجزیه کرد"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "مقدار صحیح با دقت مضاعف «%s» خارج از محدودهٔ %s است"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "خطا در تجزیهٔ گزینهٔ %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s یک آرگومان کم دارد"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "گزینهٔ نامعلوم %s"
@ -1144,8 +1117,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1288,7 +1261,7 @@ msgstr "پیوندهای نمادی پشتیبانی نمی‌شوند"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1310,15 +1283,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "نام میزبان نشانی اینترنتی «‎%s» نامعتبر است"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1731,55 +1695,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "نام میزبان نشانی اینترنتی «‎%s» نامعتبر است"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "خطا در خواندن پروندهٔ «‎%s»: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1796,16 +1716,12 @@ msgstr "خطا در سطر %Id: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "خطا در تجزیهٔ گزینهٔ %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1844,6 +1760,46 @@ msgstr ""
msgid "[FILE...]"
msgstr "[گزینه...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "نویسهٔ «%s» در ابتدای نام نهادها مجاز نیست؛ نویسهٔ & نهاد را آغاز می‌کند؛ اگر "
#~ "این علامت & قرار نیست نهاد شود، به‌جای آن از &amp; استفاده کنید"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "نویسهٔ «%s» داخل نام نهادها مجاز نیست"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "ارجاع نویسه‌ای خالی؛ باید یک رقم داشته باشد، مثل &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "ارجاع نهادی ناتمام"
#~ msgid "Unfinished character reference"
#~ msgstr "ارجاع نویسه‌ای ناتمام"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "متن کدگذاری‌شدهٔ UTF-8 نامعتبر"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "متن کدگذاری‌شدهٔ UTF-8 نامعتبر"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "نام میزبان نشانی اینترنتی «‎%s» نامعتبر است"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "نام میزبان نشانی اینترنتی «‎%s» نامعتبر است"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "خطا در خواندن پروندهٔ «‎%s»: %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "خطا در تجزیهٔ گزینهٔ %s"

316
po/fi.po
View File

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-02 20:52+0200\n"
"Last-Translator: Ilkka Tuohela <hile@iki.fi>\n"
"Language-Team: Finnish <gnome-fi-laatu@lists.sourceforge.net>\n"
@ -309,53 +309,32 @@ msgstr "Tiedoston \"%s\" avaaminen epäonnistui: open() epäonnistui: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Tiedoston \"%s\" mappaaminen epäonnistui: mmap() epäonnistui: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Virhe rivillä %d merkissä %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Virheellinen UTF-8-koodattu teksti - epäkelpo \"%s\""
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Virhe rivillä %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Havaittu tyhjä entiteetti \"&;\"; kelvolliset ovat: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Merkki \"%s\" ei ole kelvollinen entiteetin nimen alussa; &-merkki aloittaa "
"entiteetin. Jos tämän &-merkin ei ole tarkoitus olla entiteetti, käytä "
"merkintää &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Merkki \"%s\" ei ole kelvollinen entiteetin nimessä"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entiteetin nimi \"%s\" on tuntematon"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entiteetti ei päättynyt puolipisteeseen; todennäköisesti käytit &-merkkiä "
"aikomatta aloittaa entiteettiä - käytä merkintää &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -364,16 +343,7 @@ msgstr ""
"Merkkijonon \"%-.*s\" piti olla luku merkkiviitteen sisällä (esim. &#234;), "
"mutta sen jäsentäminen epäonnistui - ehkä luku on liian suuri"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Merkkiviite \"%-.*s\" ei ole sallitun merkin koodaus"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Tyhjä merkkiviite; viitteen tulee sisältää luku, esim &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -382,32 +352,36 @@ msgstr ""
"Merkkiviite ei päättynyt puolipisteeseen; todennäköisesti käytit &-merkkiä "
"aikomatta aloittaa entiteettiä - käytä merkintää &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Päättämätön entiteettiviite"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Päättämätön merkkiviite"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Virheellinen UTF-8-koodattu teksti - ylipitkä sekvenssi"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Virheellinen UTF-8-koodattu teksti - ei aloitusmerkki"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Virheellinen UTF-8-koodattu teksti - epäkelpo \"%s\""
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Merkkiviite \"%-.*s\" ei ole sallitun merkin koodaus"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Havaittu tyhjä entiteetti \"&;\"; kelvolliset ovat: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Entiteetin nimi \"%s\" on tuntematon"
#: 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 &amp;"
msgstr ""
"Entiteetti ei päättynyt puolipisteeseen; todennäköisesti käytit &-merkkiä "
"aikomatta aloittaa entiteettiä - käytä merkintää &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Asiakirjan on alettava elementillä (esim. <kirja>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -416,7 +390,7 @@ msgstr ""
"\"%s\" ei ole kelvollinen merkki \"<\"-merkin jälkeen; se ei voi aloittaa "
"elementin nimeä"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -424,7 +398,7 @@ msgid ""
msgstr ""
"Pariton merkki \"%s\", odotettiin \">\"-merkkiä päättämään elementin \"%s\""
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -432,7 +406,7 @@ msgstr ""
"Pariton merkki \"%1$s\", odotettiin \"=\"-merkkiä elementin \"%3$s\" "
"ominaisuuden \"%2$s\" jälkeen"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -443,7 +417,7 @@ msgstr ""
"elementin \"%s\" aloituslippu, tai mahdollista ominaisuutta; käytit ehkä "
"ominaisuuden nimessä siihen kelpaamatonta merkkiä"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -452,7 +426,7 @@ msgstr ""
"Pariton merkki \"%1$s\", odotettiin avaavaa lainausmerkkiä yhtäsuuruusmerkin "
"jälkeen annettaessa elementin \"%3$s\" ominaisuuden \"%2$s\" arvoa"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -461,7 +435,7 @@ msgstr ""
"\"%s\" ei ole kelvollinen merkki merkkien \"</\" jälkeen; \"%s\" ei voi olla "
"elementin nimen alussa"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -470,28 +444,28 @@ msgstr ""
"\"%s\" ei ole kelvollinen merkki sulkuelementin \"%s\" jälkeen; sallittu "
"merkki on \">\""
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Elementti \"%s\" on suljettu, ei avoimia elementtejä"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
"Elementti \"%s\" on suljettu, mutta tällä hetkellä on avoinna elementti \"%s"
"\""
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Asiakirja oli tyhjä tai sisälsi vain tyhjiä merkkejä"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Asiakirja loppui odottamattomasti heti avoimen kulmasulkeen \"<\" jälkeen"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -500,7 +474,7 @@ msgstr ""
"Asiakirja loppui odottamattomasti elementtien ollessa sulkematta - \"%s\" "
"oli viimeinen avattu elementti"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -509,19 +483,19 @@ msgstr ""
"Asiakirja loppui odottamattomasti, odotettiin lipun <%s/> sulkevaa "
"kulmasuljetta"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Asiakirja loppui odottamattomasti elementin nimen kohdalla"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Asiakirja loppui odottamattomasti ominaisuuden nimen kohdalla"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Asiakirja loppui odottamattomasti elementin avauslipun kohdalla"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -529,16 +503,16 @@ msgstr ""
"Asiakirja loppui odottamattomasti ominaisuuden nimen jälkeisen "
"yhtäsuuruusmerkin jälkeen; ominaisuudella ei ole arvoa"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Asiakirja loppui odottamattomasti ominaisuuden arvon kohdalla"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Asiakirja loppui odottamattomasti elementin \"%s\" sulkulipun kohdalla"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Asiakirja loppui odottamattomasti kommentin tai käsittelykomennon kohdalla"
@ -984,61 +958,61 @@ msgstr "Virheellinen sarja muunnettavassa syötteessä"
msgid "Character out of range for UTF-16"
msgstr "Merkki on sallitun UTF-16-välin ulkopuolella"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Käyttö:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[VALITSIN...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Ohjevalitsimet:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Näytä ohjevalitsimet"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Näytä kaikki ohjevalitsimet"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Sovelluksen valitsimet:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Kokonaislukua \"%s\" ei voida tulkita kohteelle %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Kokonaisluku \"%s\" kohteelle %s on ylittää sallitun alueen"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Kokonaislukua \"%s\" ei voida tulkita kohteelle %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Double-arvo \"%s\" kohteelle %s ylittää sallitun alueen"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Virhe käsiteltäessä valitsinta %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Puuttuva argumentti kohteelle %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Tuntematon optio %s"
@ -1161,8 +1135,8 @@ msgstr "Liian suuri laskuriarvo välitetty kohteelle %s"
msgid "Stream is already closed"
msgstr "Virta on jo suljettu"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Toiminto oli peruttu"
@ -1302,7 +1276,7 @@ msgstr "Roskakori ei ole tuettu"
msgid "File names cannot contain '%c'"
msgstr "Tiedostonimi ei voi sisältää merkkiä \"%c\""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "taltio ei toteuta liittämistä"
@ -1323,14 +1297,6 @@ msgstr "Tiedoston numeraattorilla on odottavia toimintoja"
msgid "File enumerator is already closed"
msgstr "Numeraattori on jo suljettu"
#: gio/gfileicon.c:145
msgid "file"
msgstr "tiedosto"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "Kuvakkeiden sisältävä tiedosto"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1740,56 +1706,11 @@ msgstr "Tulostevirta ei toteuta kirjoitusta"
msgid "Source stream is already closed"
msgstr "Lähdevirta on jo suljettu"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "nimi"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Kuvakkeen nimi"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "nimet"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Kuvakkeiden nimiä sisältävä jono"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "käytä oletusvarmistuksia"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Käytetäänkö oletusvarmistuksia, jotka on löydetty lyhentämällä nimeä \"-\"-"
"merkkien kohdilta. Jättää huomiotta ensimmäisen jälkeiset nimet, jos useita "
"on annettu."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "GThemeIcon-koodauksen versiota %d ei voi käsitellä"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Tiedostokuvaaja"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "Tiedostokuvaaja, josta luetaan"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Sulje tiedostokuvaaja"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "Suljetaanko tiedostokuvaaja, kun virta on suljettu"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1806,16 +1727,12 @@ msgstr "Virhe suljettaessa UNIX:ia: %s"
msgid "Filesystem root"
msgstr "Tiedostojärjestelmän juuri"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "Tiedostokuvaaja, johon kirjoitetaan"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Virhe käsiteltäessä UNIX:iin: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "taltio ei toteuta aseman avausta"
@ -1852,6 +1769,77 @@ msgstr "käytä pitkää listausmuotoa"
msgid "[FILE...]"
msgstr "[TIEDOSTO...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Merkki \"%s\" ei ole kelvollinen entiteetin nimen alussa; &-merkki "
#~ "aloittaa entiteetin. Jos tämän &-merkin ei ole tarkoitus olla entiteetti, "
#~ "käytä merkintää &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Merkki \"%s\" ei ole kelvollinen entiteetin nimessä"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Tyhjä merkkiviite; viitteen tulee sisältää luku, esim &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Päättämätön entiteettiviite"
#~ msgid "Unfinished character reference"
#~ msgstr "Päättämätön merkkiviite"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Virheellinen UTF-8-koodattu teksti - ylipitkä sekvenssi"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Virheellinen UTF-8-koodattu teksti - ei aloitusmerkki"
#~ msgid "file"
#~ msgstr "tiedosto"
#~ msgid "The file containing the icon"
#~ msgstr "Kuvakkeiden sisältävä tiedosto"
#~ msgid "name"
#~ msgstr "nimi"
#~ msgid "The name of the icon"
#~ msgstr "Kuvakkeen nimi"
#~ msgid "names"
#~ msgstr "nimet"
#~ msgid "An array containing the icon names"
#~ msgstr "Kuvakkeiden nimiä sisältävä jono"
#~ msgid "use default fallbacks"
#~ msgstr "käytä oletusvarmistuksia"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Käytetäänkö oletusvarmistuksia, jotka on löydetty lyhentämällä nimeä \"-"
#~ "\"-merkkien kohdilta. Jättää huomiotta ensimmäisen jälkeiset nimet, jos "
#~ "useita on annettu."
#~ msgid "File descriptor"
#~ msgstr "Tiedostokuvaaja"
#~ msgid "The file descriptor to read from"
#~ msgstr "Tiedostokuvaaja, josta luetaan"
#~ msgid "Close file descriptor"
#~ msgstr "Sulje tiedostokuvaaja"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "Suljetaanko tiedostokuvaaja, kun virta on suljettu"
#~ msgid "The file descriptor to write to"
#~ msgstr "Tiedostokuvaaja, johon kirjoitetaan"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u tavu"

324
po/fr.po
View File

@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-17 09:21+0100\n"
"Last-Translator: Claude Paroz <claude@2xlibre.net>\n"
"Language-Team: GNOME French Team <gnomefr@traduc.org>\n"
@ -318,54 +318,32 @@ msgstr "L'ouverture du fichier « %s » a échoué : open() a échoué : %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Le mappage du fichier « %s » a échoué : mmap() a échoué : %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Erreur à la ligne %d, caractère %d : "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Texte codé en UTF-8 non valide - « %s » est non valide"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Erreur à la ligne %d : %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Entité vide « &; » vue : les entités valides sont : &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Le caractère « %s » n'est pas valide au début d'un nom d'entité ; le "
"caractère & commence une entité ; si l'esperluette n'est pas supposée être "
"une entité, échappez-le comme &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Le caractère « %s » n'est pas valide à l'intérieur d'un nom d'entité"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Le nom d'entité « %s » n'est pas connu"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"L'entité ne se termine pas avec un point-virgule ; vous avez probablement "
"utilisé une esperluette sans l'avoir marquée comme entité - échappez "
"l'esperluette comme &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -375,17 +353,7 @@ msgstr ""
"référence de caractère (&#234; par exemple) - peut-être que le nombre est "
"trop grand"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "La référence de caractère « %-.*s » ne code pas un caractère autorisé"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr ""
"Référence de caractère vide ; elle devrait inclure un nombre comme &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -395,32 +363,37 @@ msgstr ""
"avez vraisemblablement utilisé une esperluette sans intention de commencer "
"une entité - échappez l'esperluette comme &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Référence d'entité non terminée"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Référence de caractère non terminée"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Texte codé en UTF-8 non valide - séquence trop longue"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Texte codé en UTF-8 non valide - n'est pas un caractère de début"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Texte codé en UTF-8 non valide - « %s » est non valide"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "La référence de caractère « %-.*s » ne code pas un caractère autorisé"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Entité vide « &; » vue : les entités valides sont : &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Le nom d'entité « %s » n'est pas connu"
#: 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 &amp;"
msgstr ""
"L'entité ne se termine pas avec un point-virgule ; vous avez probablement "
"utilisé une esperluette sans l'avoir marquée comme entité - échappez "
"l'esperluette comme &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Le document doit commencer avec un élément (par ex. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -429,7 +402,7 @@ msgstr ""
"« %s » n'est pas un caractère valide suivant le caractère « < » ; il ne semble "
"pas commencer un nom d'élément"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -438,7 +411,7 @@ msgstr ""
"Caractère bizarre « %s », un caractère « > » est requis pour terminer la "
"balise d'élément vide « %s »"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -446,7 +419,7 @@ msgstr ""
"Caractère bizarre « %s », un caractère « = » est requis après le nom de "
"l'attribut « %s » de l'élément « %s »"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -457,7 +430,7 @@ msgstr ""
"la balise de début de l'élément « %s », ou optionnellement un attribut ; peut-"
"être que vous utilisez un caractère non valide dans un nom d'attribut"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -466,7 +439,7 @@ msgstr ""
"Caractère bizarre « %s », un guillemet d'ouverture après le signe égal est "
"requis quand on donne une valeur pour l'attribut « %s » de l'élément « %s »"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -475,7 +448,7 @@ msgstr ""
"« %s » n'est pas un caractère valide suivant les caractères « </ » ; « %s » ne "
"peut pas commencer un nom d'élément"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -484,28 +457,28 @@ msgstr ""
"« %s » n'est pas un caractère valide suivant le nom l'élément de fermeture « %"
"s » ; le caractère autorisé est « > »"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "L'élément « %s » a été fermé, aucun élément est actuellement ouvert"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
"L'élément « %s » a été fermé, mais l'élément actuellement ouvert est « %s »"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Le document était vide ou ne contenait que des espaces"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Le document s'est terminé de manière inattendue juste après un crochet "
"ouvrant « < »"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -514,7 +487,7 @@ msgstr ""
"Le document s'est terminé de manière inattendue avec des éléments encore "
"ouverts - « %s » était le dernier élément ouvert"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -523,25 +496,25 @@ msgstr ""
"Le document s'est terminé de manière inattendue, un crochet fermant pour la "
"balise <%s/> est requis"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr ""
"Le document s'est terminé de manière inattendue à l'intérieur d'un nom "
"d'élément"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
"Le document s'est terminé de manière inattendue à l'intérieur d'un nom "
"d'attribut"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"Le document s'est terminé de manière inattendue à l'intérieur d'une balise "
"d'ouverture d'élément."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -549,20 +522,20 @@ msgstr ""
"Le document s'est terminé de manière inattendue après le signe égal suivant "
"un nom d'attribut ; aucune valeur d'attribut"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
"Le document s'est terminé de manière inattendue alors qu'il était à "
"l'intérieur d'une valeur d'attribut"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Le document s'est terminé de manière inattendue à l'intérieur de la balise "
"de fermeture pour l'élément « %s »"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Le document s'est terminé de manière inattendue à l'intérieur d'un "
@ -1025,61 +998,61 @@ msgstr "Séquence non valide dans l'entrée du convertisseur"
msgid "Character out of range for UTF-16"
msgstr "Caractère hors plage pour UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Utilisation :"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Options de l'aide :"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Affiche les options de l'aide"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Affiche toutes les options de l'aide"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Options de l'application :"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Impossible d'analyser la valeur entière « %s » pour %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "La valeur entière « %s » pour %s est hors plage"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Impossible d'analyser la valeur double « %s » pour %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "La valeur double « %s » pour %s est hors plage"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Erreur lors de l'analyse de l'option %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Argument manquant pour %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Option inconnue %s"
@ -1210,8 +1183,8 @@ msgstr "La valeur de comptage fournie à %s est trop grande"
msgid "Stream is already closed"
msgstr "Le flux est déjà fermé"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "L'opération a été annulée"
@ -1355,7 +1328,7 @@ msgstr "La corbeille n'est pas prise en charge"
msgid "File names cannot contain '%c'"
msgstr "Les noms de fichiers ne peuvent contenir « %c »"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "le volume n'implémente pas « mount »"
@ -1376,14 +1349,6 @@ msgstr "L'énumérateur du fichier a une opération en cours"
msgid "File enumerator is already closed"
msgstr "L'énumérateur du fichier est déjà fermé"
#: gio/gfileicon.c:145
msgid "file"
msgstr "fichier"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "Le fichier contenant l'icône"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1797,58 +1762,11 @@ msgstr "Le flux de sortie n'implémente pas « write »"
msgid "Source stream is already closed"
msgstr "Le flux source est déjà fermé"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "nom"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Le nom de l'icône"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "noms"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Un tableau contenant les noms des icônes"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "utiliser les valeurs de repli par défaut"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Indique s'il faut utiliser les valeurs de repli par défaut obtenues par "
"raccourcissement du nom aux caractères « - ». Si plusieurs noms sont donnés, "
"seul le premier est pris en compte."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Impossible de gérer la version %d du codage GThemedIcon"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Descripteur de fichier"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "Le descripteur de fichier à lire"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Fermer le descripteur de fichier"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
"Indique si le descripteur de fichier doit être fermé lorsque le flux est "
"fermé"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1865,16 +1783,12 @@ msgstr "Erreur lors de la fermeture d'unix : %s"
msgid "Filesystem root"
msgstr "Racine du système de fichiers"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "Le descripteur de fichier à écrire"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Erreur lors de l'écriture vers unix : %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "le volume n'implémente pas l'éjection (« eject »)"
@ -1911,3 +1825,77 @@ msgstr "utilise le format de liste détaillé"
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[FICHIER...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Le caractère « %s » n'est pas valide au début d'un nom d'entité ; le "
#~ "caractère & commence une entité ; si l'esperluette n'est pas supposée "
#~ "être une entité, échappez-le comme &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Le caractère « %s » n'est pas valide à l'intérieur d'un nom d'entité"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr ""
#~ "Référence de caractère vide ; elle devrait inclure un nombre comme &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Référence d'entité non terminée"
#~ msgid "Unfinished character reference"
#~ msgstr "Référence de caractère non terminée"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Texte codé en UTF-8 non valide - séquence trop longue"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Texte codé en UTF-8 non valide - n'est pas un caractère de début"
#~ msgid "file"
#~ msgstr "fichier"
#~ msgid "The file containing the icon"
#~ msgstr "Le fichier contenant l'icône"
#~ msgid "name"
#~ msgstr "nom"
#~ msgid "The name of the icon"
#~ msgstr "Le nom de l'icône"
#~ msgid "names"
#~ msgstr "noms"
#~ msgid "An array containing the icon names"
#~ msgstr "Un tableau contenant les noms des icônes"
#~ msgid "use default fallbacks"
#~ msgstr "utiliser les valeurs de repli par défaut"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Indique s'il faut utiliser les valeurs de repli par défaut obtenues par "
#~ "raccourcissement du nom aux caractères « - ». Si plusieurs noms sont "
#~ "donnés, seul le premier est pris en compte."
#~ msgid "File descriptor"
#~ msgstr "Descripteur de fichier"
#~ msgid "The file descriptor to read from"
#~ msgstr "Le descripteur de fichier à lire"
#~ msgid "Close file descriptor"
#~ msgstr "Fermer le descripteur de fichier"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr ""
#~ "Indique si le descripteur de fichier doit être fermé lorsque le flux est "
#~ "fermé"
#~ msgid "The file descriptor to write to"
#~ msgstr "Le descripteur de fichier à écrire"

262
po/ga.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2007-12-20 21:28-0700\n"
"Last-Translator: Seán de Búrca <leftmostcat@gmail.com>\n"
"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"
@ -298,114 +298,91 @@ msgstr "Theip ar oscailt comhad '%s': theip open(): %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Theip ar mapáil comhad '%s': theip mmap(): %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Earraidh ar líne %d carachtar %d:"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Téacs UTF-8-ionchódaithe neamhbhailí - is neamhbhailí '%s'"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Earráid ar líne %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr ""
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr ""
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (&#234; for example) - perhaps the digit is too large"
msgstr ""
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr ""
#: glib/gmarkup.c:685
#: 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 &amp;"
msgstr ""
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr ""
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr ""
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Téacs UTF-8-ionchódaithe neamhbhailí - seicheamh rófhada"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Téacs UTF-8-ionchódaithe neamhbhailí - ní carachtar tosaithe"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Téacs UTF-8-ionchódaithe neamhbhailí - is neamhbhailí '%s'"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
#: glib/gmarkup.c:662
#, c-format
msgid "Entity name '%-.*s' is not known"
msgstr ""
#: 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 &amp;"
msgstr ""
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr ""
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr ""
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr ""
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -413,87 +390,87 @@ msgid ""
"character in an attribute name"
msgstr ""
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, 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 ""
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
msgstr ""
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
msgstr ""
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr ""
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr ""
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr ""
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr ""
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr ""
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
@ -928,61 +905,61 @@ msgstr ""
msgid "Character out of range for UTF-16"
msgstr ""
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Úsáid:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[ROGHA...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Roghanna Cabhrach:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Taispeáin roghanna cabhrach"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Taispeáin gach rogha cabhrach"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Roghanna Feidhmchláir:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr ""
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Earráid agus rogha %s á pharsáil"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr ""
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Rogha anaithnid %s"
@ -1099,8 +1076,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1240,7 +1217,7 @@ msgstr ""
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1261,15 +1238,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Is neamhbhailí an t-óstainm an URI '%s'"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1679,57 +1647,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
#, fuzzy
msgid "name"
msgstr "Gan ainm"
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "Is neamhbhailí an t-óstainm an URI '%s'"
#: gio/gthemedicon.c:223
#, fuzzy
msgid "names"
msgstr "Gan ainm"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Earráid agus comhad '%s' á léamh: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1746,16 +1668,12 @@ msgstr "Earráid agus unix á dhúnadh: %s"
msgid "Filesystem root"
msgstr "Fréamh an chóras comhad"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Earráid agus unix á scríobh: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1792,6 +1710,32 @@ msgstr ""
msgid "[FILE...]"
msgstr "[COMHAD...]"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Téacs UTF-8-ionchódaithe neamhbhailí - seicheamh rófhada"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Téacs UTF-8-ionchódaithe neamhbhailí - ní carachtar tosaithe"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Is neamhbhailí an t-óstainm an URI '%s'"
#, fuzzy
#~ msgid "name"
#~ msgstr "Gan ainm"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "Is neamhbhailí an t-óstainm an URI '%s'"
#, fuzzy
#~ msgid "names"
#~ msgstr "Gan ainm"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Earráid agus comhad '%s' á léamh: %s"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "beart amháin"

318
po/gl.po
View File

@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gl\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-16 23:39+0100\n"
"Last-Translator: Suso Baleato <suso.baleato@xunta.es>\n"
"Language-Team: Galego <proxecto@trasno.net>\n"
@ -309,53 +309,32 @@ msgstr "Fallo ao abrir o ficheiro '%s': open() fallou: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Fallo ao mapear o ficheiro '%s': mmap() fallou: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Erro na liña %d carácter %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Texto codificado en UTF-8 non válido - '%s' non válido"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Erro na liña %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Detectada unha entidade baleira '&;'; as entidades válidas son: &amp; &quot; "
"&lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"O carácter '%s' non é válido no inicio do nome dunha entidade, o carácter & "
"comeza unha entidade; se non se quere que sexa unha entidade escriba o & "
"como &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "O carácter '%s' non é válido dentro do nome dunha entidade"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Non se coñece o nome de entidade '%s'"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"A entidade non remata cun punto e coma, probabelmente usou o carácter & sen "
"a intención de comezar unha entidade, escriba o & como &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -364,16 +343,7 @@ msgstr ""
"Fallo ao analizar '%-.*s', que debería ser un díxito dentro dunha referencia "
"de carácter (por exemplo &#234;) - pode que o díxito sexa grande de máis"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "A referencia de carácter '%-.*s' non codifica un carácter permitido"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Referencia de carácter baleira; debería incluír un díxito como &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -383,32 +353,36 @@ msgstr ""
"utilizou un carácter & sen intención de comezar unha entidade - escape o & "
"como &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Referencia de entidade sen terminar"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Referencia de carácter sen terminar"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Texto codificado en UTF-8 non válido - secuencia demasiado longa"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Texto codificado en UTF-8 non válido - sen carácter de comezo"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Texto codificado en UTF-8 non válido - '%s' non válido"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "A referencia de carácter '%-.*s' non codifica un carácter permitido"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Detectada unha entidade baleira '&;'; as entidades válidas son: &amp; &quot; "
"&lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Non se coñece o nome de entidade '%s'"
#: 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 &amp;"
msgstr ""
"A entidade non remata cun punto e coma, probabelmente usou o carácter & sen "
"a intención de comezar unha entidade, escriba o & como &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "O documento debe comezar cun elemento (por exemplo <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -417,7 +391,7 @@ msgstr ""
"'%s' non é un carácter válido despois dun carácter '<'; non pode iniciar un "
"nome de elemento"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -426,7 +400,7 @@ msgstr ""
"Carácter estraño '%s', esperábase un carácter '>' para pechar a etiqueta de "
"elemento baleiro '%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -434,7 +408,7 @@ msgstr ""
"Carácter estraño '%s', esperábase un '=' despois do nome do atributo '%s' do "
"elemento '%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -445,7 +419,7 @@ msgstr ""
"etiqueta de comezo do elemento '%s' ou opcionalmente un atributo; quizais "
"usou un carácter non válido no nome dun atributo"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -454,7 +428,7 @@ msgstr ""
"Carácter estraño '%s', esperábase unhas comiñas de apertura despois do signo "
"igual para dar un valor ao atributo '%s' do elemento '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -463,7 +437,7 @@ msgstr ""
"'%s' non é un carácter válido despois dos caracteres '</'; '%s' non pode "
"comezar o nome dun elemento"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -472,25 +446,25 @@ msgstr ""
"'%s' non é un carácter válido despois do nome de elemento de peche '%s'; o "
"carácter permitido é '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Pechouse o elemento '%s', actualmente non hai ningún elemento aberto"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Pechouse o elemento '%s', mais o elemento aberto actualmente é '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "O documento estaba baleiro ou só contiña espazos en branco"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "O documento terminou inesperadamente despois dun símbolo menor que '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -499,7 +473,7 @@ msgstr ""
"O documento terminou inesperadamente con elementos aínda abertos - '%s' foi "
"o último elemento aberto"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -508,21 +482,21 @@ msgstr ""
"O documento terminou inesperadamente, esperábase ver un símbolo maior que "
"'>' que pechase a etiqueta <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "O documento terminou inesperadamente dentro dun nome de elemento"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "O documento terminou inesperadamente dentro dun nome de atributo"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"O documento terminou inesperadamente dentro dunha etiqueta de comezo de "
"elemento."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -530,18 +504,18 @@ msgstr ""
"O documento terminou inesperadamente despois do signo igual que segue a un "
"nome de atributo; non hai valor de atributo"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "O documento terminou inesperadamente dentro dun valor de atributo"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"O documento terminou inesperadamente dentro da etiqueta que pechaba o "
"elemento '%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"O documento terminou inesperadamente dentro dun comentario ou instrución de "
@ -991,61 +965,61 @@ msgstr "Secuencia non válida na entrada da conversión"
msgid "Character out of range for UTF-16"
msgstr "Carácter fóra de intervalo para UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Uso:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPCIÓN...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Opcións de axuda:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Mostrar as opcións de axuda"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Mostrar todas as opcións de axuda"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Opcións da aplicación:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Non se pode analizar o valor enteiro '%s' para %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "O valor enteiro '%s' para %s está fóra do intervalo"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Non se pode analizar o valor \"double\" '%s' para %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "O valor \"double\" '%s' para %s está fóra do intervalo"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Erro ao analizar a opción %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Argumento que falta para %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Opción %s descoñecida"
@ -1169,8 +1143,8 @@ msgstr "O valor de conta pasado a %s é demasiado longo"
msgid "Stream is already closed"
msgstr "O fluxo xa se pechou"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "A operación foi cancelada"
@ -1314,7 +1288,7 @@ msgstr "Non se soporta o Lixo"
msgid "File names cannot contain '%c'"
msgstr "Os nomes de ficheiro non poden conter '%c'"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "o volume non implementa o montado"
@ -1335,14 +1309,6 @@ msgstr "O enumerador do ficheiro ten unha operación excepcional"
msgid "File enumerator is already closed"
msgstr "O enumerador do ficheiro xa está pechado"
#: gio/gfileicon.c:145
msgid "file"
msgstr "ficheiro"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "O ficheiro que contén a icona"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1755,56 +1721,11 @@ msgstr "O fluxo de saída non implementa a escritura"
msgid "Source stream is already closed"
msgstr "O fluxo de orixe xa está pechado"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "nome"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "O nome da icona"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "nomes"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Unha matriz que contén nomes de iconas"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "usar os valores predeterminados de reserva"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Indica se se deben usar os valores de reserva encontrados ao acurtar o nome "
"nos caracteres '-'. Se se proporcionan varios nomes ignoraranse despois do "
"primeiro."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Non é posíbel manipular a versión %d da codificación de GThemedIcon"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Descritor de ficheiro"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "O descritor de ficheiro desde o que ler"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Pechar o descritor de ficheiro"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "Se hai que pechar o descritor de ficheiro cando o fluxo está pechado"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1821,16 +1742,12 @@ msgstr "Erro ao pechar unix: %s"
msgid "Filesystem root"
msgstr "Raíz do sistema de ficheiros"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "O descritor de ficheiro no que escribir"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Erro ao escribir a unix: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "o volume non implementa a expulsión"
@ -1867,6 +1784,79 @@ msgstr "usar un formato de listaxe longo"
msgid "[FILE...]"
msgstr "[FICHEIRO...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "O carácter '%s' non é válido no inicio do nome dunha entidade, o carácter "
#~ "& comeza unha entidade; se non se quere que sexa unha entidade escriba o "
#~ "& como &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "O carácter '%s' non é válido dentro do nome dunha entidade"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr ""
#~ "Referencia de carácter baleira; debería incluír un díxito como &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Referencia de entidade sen terminar"
#~ msgid "Unfinished character reference"
#~ msgstr "Referencia de carácter sen terminar"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Texto codificado en UTF-8 non válido - secuencia demasiado longa"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Texto codificado en UTF-8 non válido - sen carácter de comezo"
#~ msgid "file"
#~ msgstr "ficheiro"
#~ msgid "The file containing the icon"
#~ msgstr "O ficheiro que contén a icona"
#~ msgid "name"
#~ msgstr "nome"
#~ msgid "The name of the icon"
#~ msgstr "O nome da icona"
#~ msgid "names"
#~ msgstr "nomes"
#~ msgid "An array containing the icon names"
#~ msgstr "Unha matriz que contén nomes de iconas"
#~ msgid "use default fallbacks"
#~ msgstr "usar os valores predeterminados de reserva"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Indica se se deben usar os valores de reserva encontrados ao acurtar o "
#~ "nome nos caracteres '-'. Se se proporcionan varios nomes ignoraranse "
#~ "despois do primeiro."
#~ msgid "File descriptor"
#~ msgstr "Descritor de ficheiro"
#~ msgid "The file descriptor to read from"
#~ msgstr "O descritor de ficheiro desde o que ler"
#~ msgid "Close file descriptor"
#~ msgstr "Pechar o descritor de ficheiro"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr ""
#~ "Se hai que pechar o descritor de ficheiro cando o fluxo está pechado"
#~ msgid "The file descriptor to write to"
#~ msgstr "O descritor de ficheiro no que escribir"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u byte"

308
po/gu.po
View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib.HEAD.gu\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-02-25 12:08+0530\n"
"Last-Translator: Sweta Kothari <swkothar@redhat.com>\n"
"Language-Team: Gujarati\n"
@ -310,50 +310,32 @@ msgstr "ફાઈલ '%s' ખોલવામાં નિષ્ફળ: open()
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "ફાઈલ '%s' નો નકશો કરવામાં નિષ્ફળ: mmap() નિષ્ફળ: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "%d લીટી પર %d અક્ષરમાં ભૂલ: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "અયોગ્ય UTF-8 સંગ્રહપદ્ધતિવાળું લખાણ - માન્ય '%s' નથી"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "%d લીટી પર ભૂલ: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "'&;' વસ્તુ ખાલી દેખાય છે: યોગ્ય વસ્તુઓ છે:&amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"વસ્તુ નામ શરુ થાય ત્યાં %s' અક્ષર યોગ્ય નથી: & અક્ષર વસ્તુની શરુઆત કરે છે; જો તે એમપરસંડ "
"વસ્તુ ને આધાર ન આપે તો તે &amp; તરીકે દર્શાવો"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr " વસ્તુ નામની અંદર '%s' અક્ષર યોગ્ય નથી"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "'%s' વસ્તુ નામ જાણીતુ નથી"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"વસ્તુ નો સેમીકોલન સાથે અંત થતો નથી; ઘણી વખતે એમપરસંડ (&) અક્ષર ચિન્હ વગર તમે વસ્તુ વાપરી "
"શકો છો - એમપરસંડ &amp; તરીકે લો"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -362,16 +344,7 @@ msgstr ""
"'%-.*s' નું પદચ્છેદન કરવામાં નિષ્ફળ, કે જે અક્ષર સંદર્ભમાં અંક હોવો જોઈએ (&#234; ઉદાહરણ "
"તરીકે) - કદાચ અંક ખૂબ લાંબો હોય"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "અક્ષર સંદર્ભ '%-.*s' પરવાનગી આપેલ અક્ષરને એનકોડ કરતો નથી"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "ખાલી અક્ષર સંદર્ભ; સંખ્યા જેવી કે &#454; ને સમાવતી હોવી જોઇએ "
#: glib/gmarkup.c:685
#: 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 "
@ -380,52 +353,54 @@ msgstr ""
"અક્ષર સંદર્ભ અર્ધવિરામ થી અંત થતો નથી; તમે વસ્તુ શરુ કરવા એમપરસંડ અક્ષર ને વાપરો એમપરસંડ "
"ને &amp; તરીકે લો"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "અપુર્ણ વસ્તુ સંદર્ભ "
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "અપુર્ણ અક્ષર સંદર્ભ "
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "અયોગ્ય UTF-8 સંગ્રહપદ્ધતિવાળું લખાણ - overlong ક્રમ"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "અયોગ્ય UTF-8 સંગ્રપદ્ધતિવાળું લખાણ - સ્ટાર અક્ષર નથી"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "અયોગ્ય UTF-8 સંગ્રહપદ્ધતિવાળું લખાણ - માન્ય '%s' નથી"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "અક્ષર સંદર્ભ '%-.*s' પરવાનગી આપેલ અક્ષરને એનકોડ કરતો નથી"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "'&;' વસ્તુ ખાલી દેખાય છે: યોગ્ય વસ્તુઓ છે:&amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "'%s' વસ્તુ નામ જાણીતુ નથી"
#: 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 &amp;"
msgstr ""
"વસ્તુ નો સેમીકોલન સાથે અંત થતો નથી; ઘણી વખતે એમપરસંડ (&) અક્ષર ચિન્હ વગર તમે વસ્તુ વાપરી "
"શકો છો - એમપરસંડ &amp; તરીકે લો"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "દસ્તાવેજ કોઈ વસ્તુ સાથે શરુ થાય તે જરુરી છે(ઉદાહરણ <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "'%s' એ '<' અક્ષર પછી આવતો યોગ્ય અક્ષર નથી; તે કોઈ વસ્તુના નામથી શરુ થતુ નથી"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr "અસંગત અક્ષર '%s', વસ્તુ ટેગ '%s' નાં ખાલી ઘટક ને સમાપ્ત કરવા '>' અક્ષર ની આશા છે"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "અસંગત અક્ષર '%s', '%s' વસ્તુના '%s' લાક્ષણિકતા નામ પછી '=' જરુરી છે"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -435,7 +410,7 @@ msgstr ""
"અસંગત અક્ષર '%s': '%s' વસ્તુના અંતમાં '>' અથવા '/' અથવા પરીમાણનો વિકલ્પ જરુરી છે; તમે "
"કદાય અયોગ્ય અક્ષર લાક્ષણિકતાના નામો વાપર્યો છે"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -444,46 +419,46 @@ msgstr ""
"અસંગત અક્ષર '%s, '%s' વસ્તુ માટે '%s' લાક્ષણિકતાના મુલ્ય આપતી વખતે બરાબરની નિશાની "
"પછી શરુ થતો અવતરણ ચિહ્ન જરુરી છે"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, 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:1675
#: glib/gmarkup.c:1453
#, 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:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "'%s' વસ્તુ બંધ હતી, અત્યારે એક પણ વસ્તુ ખુલ્લી નથી"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "'%s' વસ્તુ બંધ હતી, પણ અત્યારે '%s'એ ખુલ્લી વસ્તુ છે"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "દસ્તાવેજ ખાલી છે અથવા ફક્ત ખાલી જ્ગ્યા ધરાવે છે"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "'<' ચિન્હ વાપરતા પછી દસ્તાવેજનો અણધારી રીતે અંત આવે છે"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr "વસ્તુ ખુલ્લી હોવા છતાં દસ્તાવેજનો અણધારી રીતે અંત આવે છે- છેલ્લે ખોલેલ વસ્તુ '%s' છે"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -492,19 +467,19 @@ msgstr ""
"દસ્તાવેજનો અણધારી રીતે અંત થાય છે, તે અંતિમ ટેગ <%s/> માં કૌંસને બંધ કરતુ ખૂણાનુ ચિન્હ "
"જોવા માગે છે"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "વસ્તુ નામની અંદર દસ્તાવેજનો અણધારી રીતે અંત થાય છે"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "લાક્ષણિકતાના નામની અંદર દસ્તાવેજનો અણધારી રીતે અંત થાય છે"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "વસ્તુની શરુઆતની ટેગમા દસ્તાવેજનો અણધારી રીતે અંત થાય છે."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -512,16 +487,16 @@ msgstr ""
"લાક્ષણિકતા નામ પછીની બરાબરની નિશાની પછી દસ્તાવેજ નો અણધારી રીતે અંત થાય છે. "
"લાક્ષણિકતાના મુલ્ય નથી"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "લાક્ષણિકતા મુલ્ય અંદર હોવા છતાં દસ્તાવેજ નો અણધારી રીતે અંત થાય છે"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "'%s' વસ્તુના બંદ ટેગની અંદર દસ્તાવેજનો અણધારી રીતે અંત થાય છે"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "ટિપ્પણી અથવા પ્રક્રિયા સુચનાની અંદર અણધારી રીતે દસ્તાવેજનો અંત થાય છે"
@ -958,61 +933,61 @@ msgstr "પરીવર્તિત ઈનપુટની અંદર અયો
msgid "Character out of range for UTF-16"
msgstr "UTF-૧૬ ની સીમાની બહાર નો અક્ષર"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "વપરાશ:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "મદદ વિકલ્પો:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "મદદ વિકલ્પો બતાવો"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "બધા મદદ વિકલ્પો બતાવો"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "કાર્યક્રમ વિકલ્પો:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "પૂર્ણાંક કિંમત '%s' ને %s માટે પદચ્છેદન કરી શકતા નથી"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "પૂર્ણાંક કિંમત '%s' એ %s માટે મર્યાદા બહાર છે"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "બમણી કિંમત '%s' ને %s માટે પદચ્છેદિત કરી શકતા નથી"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "બમણી કિંમત '%s' જે %s માટે છે તે વિસ્તારની બહાર છે"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "ભૂલ પદચ્છેદન વિકલ્પ %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s માટેની દલીલ ગુમ થયેલ છે"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "અજ્ઞાત વિકલ્પ %s"
@ -1131,8 +1106,8 @@ msgstr "%s ને ખૂબ મોટી ગણક કિંમત પસાર
msgid "Stream is already closed"
msgstr "સ્ટ્રીમ પહેલાથી જ બંધ થઈ ગયેલ છે"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "પ્રક્રિયા રદ થઈ ગઈ હતી"
@ -1272,7 +1247,7 @@ msgstr "કચરાપેટી આધારભૂત નથી"
msgid "File names cannot contain '%c'"
msgstr "ફાઈલ નામો '%c' સમાવી શકતા નથી"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "વોલ્યુમ માઉન્ટ અમલમાં મૂકતું નથી"
@ -1293,14 +1268,6 @@ msgstr "ફાઈલ ઈન્યૂમેરેટરને ભરપૂર પ
msgid "File enumerator is already closed"
msgstr "ફાઈલ ઈન્યૂમેરેટર પહેલાથી જ બંધ થયેલ છે"
#: gio/gfileicon.c:145
msgid "file"
msgstr "ફાઇલ"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "ફાઇલ આઇકોનને સમાવી રહ્યુ છે"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1709,55 +1676,11 @@ msgstr "આઉટપુટ સ્ટ્રીમ લેખનને અમલમ
msgid "Source stream is already closed"
msgstr "સ્રોત સ્ટ્રીમ પહેલાથી જ બંધ થઈ ગયેલ છે"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "નામ"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "આઇકોનનું નામ"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "નામો"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "એરે એ આઇકોન નામો ને સમાવી રહ્યુ છે"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "મૂળભૂત ફોલબેકો ને વાપરો"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"ક્યાં તો '-' અક્ષરો પર નામ ને ટૂંકું કરવા દ્રારા મૂળભૂત ફોલબેકો ને વાપર્યો હોય. પહેલા પછીનાં "
"નામો ને અવગણો જો ઘણાબધા નામો આપેલ હોય તો."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "GThemedIcon એનકોડીંગ ની આવૃત્તિ %d ને સંભાળી શકાતુ નથી"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "ફાઇલ વર્ણનકર્તા"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "માંથી વાંચવા માટે ફાઇલ વર્ણનકર્તા"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "ફાઇલ વર્ણનકર્તાને બંધ કરો"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "ક્યાંતો ફાઇલ વર્ણનકર્તા ને બંધ કરો જ્યારે સ્ટ્રીમ એ બંધ થયેલ છે"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1774,16 +1697,12 @@ msgstr "unix બંધ કરતી વખતે ભૂલ: %s"
msgid "Filesystem root"
msgstr "ફાઈલસિસ્ટમ રુટ"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "લખવા માટે ફાઇલ વર્ણનકર્તા"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "unix માં લખતી વખતે ભૂલ: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "વોલ્યુમ બહાર કાઢોને અમલમાં મૂકતું નથી"
@ -1819,3 +1738,72 @@ msgstr "લાંબી યાદી બંધારણ વાપરો"
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[FILE...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "વસ્તુ નામ શરુ થાય ત્યાં %s' અક્ષર યોગ્ય નથી: & અક્ષર વસ્તુની શરુઆત કરે છે; જો તે એમપરસંડ "
#~ "વસ્તુ ને આધાર ન આપે તો તે &amp; તરીકે દર્શાવો"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr " વસ્તુ નામની અંદર '%s' અક્ષર યોગ્ય નથી"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "ખાલી અક્ષર સંદર્ભ; સંખ્યા જેવી કે &#454; ને સમાવતી હોવી જોઇએ "
#~ msgid "Unfinished entity reference"
#~ msgstr "અપુર્ણ વસ્તુ સંદર્ભ "
#~ msgid "Unfinished character reference"
#~ msgstr "અપુર્ણ અક્ષર સંદર્ભ "
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "અયોગ્ય UTF-8 સંગ્રહપદ્ધતિવાળું લખાણ - overlong ક્રમ"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "અયોગ્ય UTF-8 સંગ્રપદ્ધતિવાળું લખાણ - સ્ટાર અક્ષર નથી"
#~ msgid "file"
#~ msgstr "ફાઇલ"
#~ msgid "The file containing the icon"
#~ msgstr "ફાઇલ આઇકોનને સમાવી રહ્યુ છે"
#~ msgid "name"
#~ msgstr "નામ"
#~ msgid "The name of the icon"
#~ msgstr "આઇકોનનું નામ"
#~ msgid "names"
#~ msgstr "નામો"
#~ msgid "An array containing the icon names"
#~ msgstr "એરે એ આઇકોન નામો ને સમાવી રહ્યુ છે"
#~ msgid "use default fallbacks"
#~ msgstr "મૂળભૂત ફોલબેકો ને વાપરો"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "ક્યાં તો '-' અક્ષરો પર નામ ને ટૂંકું કરવા દ્રારા મૂળભૂત ફોલબેકો ને વાપર્યો હોય. પહેલા "
#~ "પછીનાં નામો ને અવગણો જો ઘણાબધા નામો આપેલ હોય તો."
#~ msgid "File descriptor"
#~ msgstr "ફાઇલ વર્ણનકર્તા"
#~ msgid "The file descriptor to read from"
#~ msgstr "માંથી વાંચવા માટે ફાઇલ વર્ણનકર્તા"
#~ msgid "Close file descriptor"
#~ msgstr "ફાઇલ વર્ણનકર્તાને બંધ કરો"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "ક્યાંતો ફાઇલ વર્ણનકર્તા ને બંધ કરો જ્યારે સ્ટ્રીમ એ બંધ થયેલ છે"
#~ msgid "The file descriptor to write to"
#~ msgstr "લખવા માટે ફાઇલ વર્ણનકર્તા"

316
po/he.po
View File

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib.HEAD.he\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2006-04-27 18:48+0300\n"
"Last-Translator: Yair Hershkovitz <yairhr@gmail.com>\n"
"Language-Team: Hebrew <he@li.org>\n"
@ -304,52 +304,32 @@ msgstr "Failed to open file '%s': open() failed: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Failed to map file '%s': mmap() failed: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Error on line %d char %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Invalid UTF-8 encoded text - not valid '%s'"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Error on line %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Character '%s' is not valid inside an entity name"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entity name '%s' is not known"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -358,51 +338,45 @@ msgstr ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (&#234; for example) - perhaps the digit is too large"
#: glib/gmarkup.c:660
#: 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 &amp;"
msgstr ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"as &amp;"
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Character reference '%-.*s' does not encode a permitted character"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Empty character reference; should include a digit such as &#454;"
#: glib/gmarkup.c:685
#: glib/gmarkup.c:654
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 &amp;"
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"as &amp;"
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Unfinished entity reference"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Entity name '%s' is not known"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Unfinished character reference"
#: 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 &amp;"
msgstr ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Invalid UTF-8 encoded text - overlong sequence"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Invalid UTF-8 encoded text - not a start char"
#: glib/gmarkup.c:1130
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Invalid UTF-8 encoded text - not valid '%s'"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Document must begin with an element (e.g. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -412,7 +386,7 @@ msgstr ""
"element name"
# c-format
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -421,14 +395,14 @@ msgstr ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -439,7 +413,7 @@ msgstr ""
"element '%s', or optionally an attribute; perhaps you used an invalid "
"character in an attribute name"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -448,7 +422,7 @@ msgstr ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"giving value for attribute '%s' of element '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -457,7 +431,7 @@ msgstr ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -466,25 +440,25 @@ msgstr ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element '%s' was closed, no element is currently open"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Element '%s' was closed, but the currently open element is '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Document was empty or contained only whitespace"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Document ended unexpectedly just after an open angle bracket '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -493,7 +467,7 @@ msgstr ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -502,19 +476,19 @@ msgstr ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Document ended unexpectedly inside an element name"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Document ended unexpectedly inside an attribute name"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Document ended unexpectedly inside an element-opening tag."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -522,16 +496,16 @@ msgstr ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Document ended unexpectedly while inside an attribute value"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Document ended unexpectedly inside the close tag for element '%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Document ended unexpectedly inside a comment or processing instruction"
@ -969,61 +943,61 @@ msgstr "Invalid sequence in conversion input"
msgid "Character out of range for UTF-16"
msgstr "Character out of range for UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Usage:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Help Options:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Show help options"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Show all help options"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Application Options:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Cannot parse integer value '%s' for %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Integer value '%s' for %s out of range"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Cannot parse double value '%s' for %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Double value '%s' for %s out of range"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Error parsing option %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Missing·argument·for·%s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Unknown option %s"
@ -1143,8 +1117,8 @@ msgstr "Too large count value passed to %s"
msgid "Stream is already closed"
msgstr "Stream is already closed"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Operation was cancelled"
@ -1284,7 +1258,7 @@ msgstr "Trash not supported"
msgid "File names cannot contain '%c'"
msgstr "File names cannot contain '%c'"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "volume doesn't implement mount"
@ -1305,14 +1279,6 @@ msgstr "File enumerator has outstanding operation"
msgid "File enumerator is already closed"
msgstr "File enumerator is already closed"
#: gio/gfileicon.c:145
msgid "file"
msgstr "file"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "The file containing the icon"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1722,55 +1688,11 @@ msgstr "Output stream doesn't implement write"
msgid "Source stream is already closed"
msgstr "Source stream is already closed"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "name"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "The name of the icon"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "names"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "An array containing the icon names"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "use default fallbacks"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Can't handle version %d of GThemedIcon encoding"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "File descriptor"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "The file descriptor to read from"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Close file descriptor"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "Whether to close the file descriptor when the stream is closed"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1787,16 +1709,12 @@ msgstr "Error closing unix: %s"
msgid "Filesystem root"
msgstr "Filesystem root"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "The file descriptor to write to"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Error writing to unix: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "volume doesn't implement eject"
@ -1833,6 +1751,76 @@ msgstr "use a long listing format"
msgid "[FILE...]"
msgstr "[FILE...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Character '%s' is not valid inside an entity name"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Empty character reference; should include a digit such as &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Unfinished entity reference"
#~ msgid "Unfinished character reference"
#~ msgstr "Unfinished character reference"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Invalid UTF-8 encoded text - overlong sequence"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Invalid UTF-8 encoded text - not a start char"
#~ msgid "file"
#~ msgstr "file"
#~ msgid "The file containing the icon"
#~ msgstr "The file containing the icon"
#~ msgid "name"
#~ msgstr "name"
#~ msgid "The name of the icon"
#~ msgstr "The name of the icon"
#~ msgid "names"
#~ msgstr "names"
#~ msgid "An array containing the icon names"
#~ msgstr "An array containing the icon names"
#~ msgid "use default fallbacks"
#~ msgstr "use default fallbacks"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgid "File descriptor"
#~ msgstr "File descriptor"
#~ msgid "The file descriptor to read from"
#~ msgstr "The file descriptor to read from"
#~ msgid "Close file descriptor"
#~ msgstr "Close file descriptor"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "Whether to close the file descriptor when the stream is closed"
#~ msgid "The file descriptor to write to"
#~ msgstr "The file descriptor to write to"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u byte"

308
po/hi.po
View File

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: hi\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-05 13:18+0530\n"
"Last-Translator: Rajesh Ranjan <rranjan@redhat.com>\n"
"Language-Team: Hindi <hindi.sf.net>\n"
@ -309,50 +309,32 @@ msgstr "फ़ाइल '%s' खोलने में असफल: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' फ़ाइल चित्रित करने में विफल: mmap() विफल: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "पंक्ति %d वर्ण %d पर त्रुटि:"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "अवैध यूटीएफ़-8 एनकोडेड पाठ - वैध '%s' नहीं"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "पंक्ति %d: पर त्रुटि %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "खाली एंटिटी '&;' देखा; वैध एंटिटी हैं: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"एक एंटिटी के प्रारंभ में वर्ण '%s' वैध नहीं है, तथा & वर्ण एक एंटिटी को प्रारंभ करता है; "
"यदि यह एम्परसेंड एक एंटिटी नहीं है, तो इसे ऐसे एस्केप करें &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr " वर्ण '%s' एक एंटिटी नाम के भीतर वैध नहीं है"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "एंटिटी नाम '%s' ज्ञात नहीं है"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"एंटिटी अर्धविराम पर समाप्त नहीं होता, बहुत संभव है कि आपने एम्परसेन्ड वर्ण का प्रयोग किया "
"है और एक एंटिटी प्रारंभ नहीं करना चाहते- एम्परसेंड को ऐसे एस्केप करें: &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -361,16 +343,7 @@ msgstr ""
"'%-.*s' के विश्लेषण करने में असफल, जो कि वर्ण संदर्भ के भीतर एक अंक होना चाहिए (उदाहरण "
"के लिए, &#234) - शायद अंक काफी बड़ा है"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "संप्रतीक संदर्भ '%-.*s' एक अनुमति प्राप्त संप्रतीक को एनकोड नहीं करता"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "रिक्त वर्ण संदर्भ, अंक जैसे &#454 सम्मिलित अवश्य होने चाहिएँ;"
#: glib/gmarkup.c:685
#: 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 "
@ -380,52 +353,54 @@ msgstr ""
"वर्ण का उपयोग किया है पर एक एंटिटी को प्रारंभ करना नहीं चाहते - एम्परसेंड को एस्केप करें "
"ऐसे &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "अपूर्ण एंटिटी संदर्भ"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "अपूर्ण वर्ण संदर्भ"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "अवैध यूटीएफ़-8 एनकोडेड पाठ - अत्यधिक लंबी शृंखला"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "अवैध यूटीएफ़-8 एनकोडेड पाठ - एक आरंभिक वर्ण नहीं"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "अवैध यूटीएफ़-8 एनकोडेड पाठ - वैध '%s' नहीं"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "संप्रतीक संदर्भ '%-.*s' एक अनुमति प्राप्त संप्रतीक को एनकोड नहीं करता"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "खाली एंटिटी '&;' देखा; वैध एंटिटी हैं: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "एंटिटी नाम '%s' ज्ञात नहीं है"
#: 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 &amp;"
msgstr ""
"एंटिटी अर्धविराम पर समाप्त नहीं होता, बहुत संभव है कि आपने एम्परसेन्ड वर्ण का प्रयोग किया "
"है और एक एंटिटी प्रारंभ नहीं करना चाहते- एम्परसेंड को ऐसे एस्केप करें: &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "दस्तावेज़ एक अवयव के नाम से प्रारंभ होना चाहिए (उदाहरण के लिए- <पुस्तक>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "< के पश्चात आया '%s' एक वैध वर्ण नहीं है; यह अवयव नाम से प्रारंभ नहीं होता"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr "'%s' विसम वर्ण, एक '>' संप्रतीक प्रत्याशित रिक्त तत्व टैग '%s' समाप्त करने के लिए"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "विसम वर्ण '%s', प्रत्याशित है एक '=' लक्षण नाम '%s' अवयव '%s' के पश्चात्"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -435,7 +410,7 @@ msgstr ""
"'%s' विसम संप्रतीक, एक '>' या '/' संप्रतीक को '%s' तत्व के आरंभ टैग को खत्म करना "
"प्रत्याशित, या विकल्पतः एक गुण; शायद आपने गुण नाम में एक अमान्य संप्रतीक का प्रयोग किया है"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -444,39 +419,39 @@ msgstr ""
"पुराना वर्ण '%s', जब विशेषता '%s', अवयव '%s' का मान दिया जाता है तो बराबर चिह्न के "
"बाद एक खुला कोट चिह्न वांछित है"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, 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:1675
#: glib/gmarkup.c:1453
#, 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:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "अवयव '%s' बन्द था, कोई अवयव वर्तमान में खुला नहीं है"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "दस्तावेज़ '%s' बन्द था, परन्तु वर्तमान खुला अवयव है '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "दस्तावेज़ खाली था या उसमें सिर्फ श्वेत रिक्ति ही था"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से एक खुला एंगल ब्रेकेट '<' के पश्चात ही हो गया"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -485,7 +460,7 @@ msgstr ""
"दस्तावेज़ का अंत अप्रत्याशित रूप से अवयवों के खुला होने पर भी हो गया - '%s' अंतिम खुला हुआ "
"अवयव था"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -494,19 +469,19 @@ msgstr ""
"दस्तावेज़ का अंत अप्रत्याशित रूप से हो गया, वांछित था देखना एक क्लोज़ एंगल ब्रेकेट टैग को बन्द "
"करता हुआ <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से अवयव नाम के भीतर हो गया"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से विशेषता नाम के भीतर हो गया"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से अवयव-खोलने के टैग के भीतर हो गया."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -514,16 +489,16 @@ msgstr ""
"दस्तावेज़ का अंत अप्रत्याशित रूप से बराबर के चिह्न के बाद एक विशेषता नाम के पश्चात् हो गया; "
"कोई विशेषता मूल्य नहीं"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से विशेषता मान के भीतर हो गया"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से अवयव '%s' हेतु बन्द टैग के भीतर हो गया"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से टिप्पणी या प्रक्रिया निर्देश के भीतर हो गया"
@ -958,61 +933,61 @@ msgstr "परिवर्तन इनपुट में अवैध अन
msgid "Character out of range for UTF-16"
msgstr "यूटीएफ-16 हेतु वर्ण सीमा से बाहर"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "प्रयोग:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[विकल्प...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "मदद विकल्प:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "मदद विकल्प दिखाएँ"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "सभी मदद विकल्प दिखाएँ"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "अनुप्रयोग विकल्प:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "पूर्णांक मान '%s' को %s के लिए विश्लेषण नहीं कर सकता"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "पूर्णांक मान '%s' %s के लिए दायरा के बाहर है"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "'%s' दोहरे मान का विश्लेषण %s के लिए नहीं कर सकता है"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "'%s' दोहरा मान %s के लिए परिसर से बाहर है"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "%s विकल्प विश्लेषण में त्रुटि"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s के लिए गुम तर्क"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "अनजान विकल्प %s"
@ -1130,8 +1105,8 @@ msgstr "बड़ी गणना मान को %s में भेजा ग
msgid "Stream is already closed"
msgstr "धारा पहले से बंद है"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "ऑपरेशन रद्द था"
@ -1271,7 +1246,7 @@ msgstr "रद्दी समर्थित नहीं है"
msgid "File names cannot contain '%c'"
msgstr "फ़ाइल नाम में '%c' नहीं हो सकता है"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "आवाज माउंट लागू नहीं कर सकता है"
@ -1292,14 +1267,6 @@ msgstr "फ़ाइल इन्यूमेरेटर में बचा
msgid "File enumerator is already closed"
msgstr "फ़ाइल इन्यूमेरेटर पहले से बंद है"
#: gio/gfileicon.c:145
msgid "file"
msgstr "फ़ाइल"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "इस फ़ाइल में प्रतीक समाहित है"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1708,55 +1675,11 @@ msgstr "आउटपुट स्ट्रीम लेखन लागू न
msgid "Source stream is already closed"
msgstr "स्रोत स्ट्रीम पहले से बंद है"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "नाम"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "इस प्रतीक का नाम"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "नाम"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "प्रतीक नाम समाहित करती एक सरणी"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "तयशुदा फ़ॉलबैक का प्रयोग करें"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"नाम को '-' वर्ण पर छोटा करने के द्वारा मिले तयशुदा फ़ॉलबैक का क्या प्रयोग करना है. पहले "
"के बाद के नाम अनदेखा करता है यदि कई नाम दिए गए हैं."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "GThemedIcon एन्कोडिंग का %d संस्करण नियंत्रित नहीं कर सकता है"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "फ़ाइल विवरक"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "फ़ाइल विवरक जिससे पढ़ा जाना है"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "फ़ाइल विवरक बंद करें"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "क्या फ़ाइल विवरक बंद किया जाना है जब यह स्ट्रीम बंद है"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1773,16 +1696,12 @@ msgstr "यूनिक्स बंद करने में त्रुट
msgid "Filesystem root"
msgstr "फ़ाइलतंत्र रूट"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "फ़ाइल विवरक जिसमें लिखा जाना है"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "यूनिक्स में लिखने में त्रुटि: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "आवाज बाहर करें लागू नहीं करता है"
@ -1818,3 +1737,72 @@ msgstr "लंबी सूची प्रारूप का प्रयो
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[फ़ाइल...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "एक एंटिटी के प्रारंभ में वर्ण '%s' वैध नहीं है, तथा & वर्ण एक एंटिटी को प्रारंभ करता है; "
#~ "यदि यह एम्परसेंड एक एंटिटी नहीं है, तो इसे ऐसे एस्केप करें &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr " वर्ण '%s' एक एंटिटी नाम के भीतर वैध नहीं है"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "रिक्त वर्ण संदर्भ, अंक जैसे &#454 सम्मिलित अवश्य होने चाहिएँ;"
#~ msgid "Unfinished entity reference"
#~ msgstr "अपूर्ण एंटिटी संदर्भ"
#~ msgid "Unfinished character reference"
#~ msgstr "अपूर्ण वर्ण संदर्भ"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "अवैध यूटीएफ़-8 एनकोडेड पाठ - अत्यधिक लंबी शृंखला"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "अवैध यूटीएफ़-8 एनकोडेड पाठ - एक आरंभिक वर्ण नहीं"
#~ msgid "file"
#~ msgstr "फ़ाइल"
#~ msgid "The file containing the icon"
#~ msgstr "इस फ़ाइल में प्रतीक समाहित है"
#~ msgid "name"
#~ msgstr "नाम"
#~ msgid "The name of the icon"
#~ msgstr "इस प्रतीक का नाम"
#~ msgid "names"
#~ msgstr "नाम"
#~ msgid "An array containing the icon names"
#~ msgstr "प्रतीक नाम समाहित करती एक सरणी"
#~ msgid "use default fallbacks"
#~ msgstr "तयशुदा फ़ॉलबैक का प्रयोग करें"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "नाम को '-' वर्ण पर छोटा करने के द्वारा मिले तयशुदा फ़ॉलबैक का क्या प्रयोग करना है. "
#~ "पहले के बाद के नाम अनदेखा करता है यदि कई नाम दिए गए हैं."
#~ msgid "File descriptor"
#~ msgstr "फ़ाइल विवरक"
#~ msgid "The file descriptor to read from"
#~ msgstr "फ़ाइल विवरक जिससे पढ़ा जाना है"
#~ msgid "Close file descriptor"
#~ msgstr "फ़ाइल विवरक बंद करें"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "क्या फ़ाइल विवरक बंद किया जाना है जब यह स्ट्रीम बंद है"
#~ msgid "The file descriptor to write to"
#~ msgstr "फ़ाइल विवरक जिसमें लिखा जाना है"

280
po/hr.po
View File

@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib 0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2008-05-18 15:38+0000\n"
"Last-Translator: Launchpad Translations Administrators <rosetta@launchpad."
"net>\n"
@ -301,51 +301,32 @@ msgstr "Greška pri otvaranju datoteke '%s': open() nije uspio: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Greška pri mapiranju datoteke '%s': mmap() nije uspio: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Greška na retku %d znak %d: %s "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Neispravno šifrirani UTF-8 tekst"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Greška na retku %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Prazan entitet '&;' ; ispravni entiteti su: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Znak '%s' nije dozvoljen na početku imena entiteta; znak & počinje entitet; "
"ako ovaj & nije entitet onda ga označite sa &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Znak '%s' nije dozvoljen unutar imena entiteta"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Ime entiteta '%s' nije poznato"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entitet nije zavšio sa točka-zarezom; vjerojatno ste koristili ampersand "
"znak bez namjere da započnete entitet - escapirajte ampersand sa &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -354,16 +335,7 @@ msgstr ""
"Nisam uspio izanalizirati '%-.*s', koji je trebao biti broj unutar znakovne "
"reference (npr. &#234;) - možda je broj prevelik"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Znakovna referenca '%-.*s' ne kodira dozvoljeni znak"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Prazna znakovna referenca; treba uključivati broj kao &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -373,34 +345,35 @@ msgstr ""
"ampersand znakbez namjere da počnete entitet - escapirajte ampersand kao "
"&amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Nezavršena referenca entiteta"
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Znakovna referenca '%-.*s' ne kodira dozvoljeni znak"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Nezavršena znakovna referenca"
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Prazan entitet '&;' ; ispravni entiteti su: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Neispravno šifrirani UTF-8 tekst"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Neispravno šifrirani UTF-8 tekst"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Neispravno šifrirani UTF-8 tekst"
msgid "Entity name '%-.*s' is not known"
msgstr "Ime entiteta '%s' nije poznato"
#: glib/gmarkup.c:1168
#: 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 &amp;"
msgstr ""
"Entitet nije zavšio sa točka-zarezom; vjerojatno ste koristili ampersand "
"znak bez namjere da započnete entitet - escapirajte ampersand sa &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokument mora početi sa elementom(npr. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -409,7 +382,7 @@ msgstr ""
"'%s' nije dozvoljeni znak koji smije slijediti nakon '<' znaka; ne smije "
"započeti ime elementa"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -417,14 +390,14 @@ msgid ""
msgstr ""
"Neparan znak '%s', očekuje se da '>' znak završi početni tag elementa'%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"Neparan znak '%s', očekuje se '=' poslije imena atributa '%s' elementa '%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -435,7 +408,7 @@ msgstr ""
"'%s', ili opcionalno atributa; možda ste koristili neispravan znaku imenu "
"atributa"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -444,7 +417,7 @@ msgstr ""
"Čudan znak '%s', očekuje se otvoreni navodnik nakon znaka jednakostikada se "
"daje vrijednost atributa '%s' elementa '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -452,7 +425,7 @@ msgid ""
msgstr ""
"'%s' nije znak koji smije slijediti '</'; '%s' ne smije započetiime elementa"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -461,25 +434,25 @@ msgstr ""
"'%s' nije ispravan znak koji može slijediti nakon imena završnog elementa '%"
"s'; dozvoljeni znak je '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element '%s' je zatvoren, trenutno nema otvorenog elementa"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Element '%s' je zatvoren, ali trenutno otvoreni element je '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Dokument je bio prazan ili je sadržavao samo znakove prazne znakove"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokument je završio neočekivano nakon otvaranja zagrade '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -488,7 +461,7 @@ msgstr ""
"Dokument je završio neočekivano sa još uvijek otvorenim elementima- '%s' je "
"bio zadnjiotvoreni element"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -497,19 +470,19 @@ msgstr ""
"Dokument je završio neočekivano, očekivalo se da zatvorena šiljata "
"zagradazavrši tag<%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokument je završio neočekivano unutar imena elementa"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokument je završio neočekivano unutar imena atributa"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokument je završio neočekivano unutar taga koji započinje element"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -517,17 +490,17 @@ msgstr ""
"Dokument je završio neočekivano nakon što je znak jednakosti slijedioime "
"atributa; nema vrijednosti atributa"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokument je završio neočekivano unutar vrijednosti atributa"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Dokument je završio neočekivano unutar taga koji završava za element '%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokument je završio neočekivano unutar komentara ili izvršavanja instrukcije"
@ -974,61 +947,61 @@ msgstr "Neispravna sekvenca u pretvaranju ulaza"
msgid "Character out of range for UTF-16"
msgstr "Znak je izvan raspona za UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Uporaba:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Opcije pomoći:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Prikaži opcije pomoći"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Prikaži sve opcije pomoći"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Prikaži sve opcije pomoći"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Analiza brojčane vrijednosti '%s' za %s nije uspjela"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Brojčana vrijednost '%s' za '%s' izvan opsega"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Greška prilikom analize opcije %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Nedostaje parametar za %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Nepoznata opcija %s"
@ -1150,8 +1123,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1293,7 +1266,7 @@ msgstr "Nisu podržane simboličke veze"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1314,15 +1287,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Ime računala URI-ja '%s' je neispravno"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1734,55 +1698,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "Ime računala URI-ja '%s' je neispravno"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Greška pri čitanju datoteke '%s': %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1799,16 +1719,12 @@ msgstr "Greška na retku %d: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Greška prilikom konverzije: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1845,3 +1761,43 @@ msgstr ""
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr ""
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Znak '%s' nije dozvoljen na početku imena entiteta; znak & počinje "
#~ "entitet; ako ovaj & nije entitet onda ga označite sa &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Znak '%s' nije dozvoljen unutar imena entiteta"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Prazna znakovna referenca; treba uključivati broj kao &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Nezavršena referenca entiteta"
#~ msgid "Unfinished character reference"
#~ msgstr "Nezavršena znakovna referenca"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Neispravno šifrirani UTF-8 tekst"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Neispravno šifrirani UTF-8 tekst"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Ime računala URI-ja '%s' je neispravno"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "Ime računala URI-ja '%s' je neispravno"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Greška pri čitanju datoteke '%s': %s"

317
po/hu.po
View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-18 01:05+0100\n"
"Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome@fsf.hu>\n"
@ -310,52 +310,32 @@ msgstr "Nem sikerült megnyitni a(z) „%s” fájlt: az open() sikertelen: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Nem sikerült leképezni a(z) „%s” fájlt: Az mmap() sikertelen: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Hiba a(z) %d. sor %d. karakterénél: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Érvénytelen UTF-8 kódolású szöveg - nem érvényes „%s”"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Hiba a(z) %d. sorban: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Üres „&;” entitás; az érvényes entitások: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"A(z) „%s” karakter nem érvényes az entitások nevének elején; az entitások "
"nevét az & karakter kezdi. Ha ez az & karakter nem lehet entitás, akkor "
"&amp; módon kell írni."
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "A(z) „%s” karakter nem érvényes egy entitás nevén belül"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "A(z) „%s” entitásnév ismeretlen"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Az entitás neve nem pontosvesszővel ért véget; valószínűleg egy &-jelet "
"használt anélkül, hogy entitást akart volna kezdeni - írja &amp; formában."
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -364,17 +344,7 @@ msgstr ""
"Nem sikerült feldolgozni ezt: „%-.*s”. Valószínűleg számjegy lett volna egy "
"karakterhivatkozáson (mint az &#234) belül - lehet, hogy túl nagy a számjegy"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "A(z) „%-.*s” karakterhivatkozás nem engedélyezett karaktert kódol"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr ""
"Üres karakterhivatkozás; számjegyet is kell tartalmaznia, például így: &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -383,32 +353,35 @@ msgstr ""
"A karakterhivatkozás nem pontosvesszővel ért véget; valószínűleg egy &-jelet "
"használt anélkül, hogy entitást akart volna kezdeni - írja &amp; formában."
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Befejezetlen entitáshivatkozás"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Befejezetlen karakterhivatkozás"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Érvénytelen UTF-8 kódolású szöveg - túl hosszú sorozat"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Érvénytelen UTF-8 kódolású szöveg - ez nem kezdőkarakter"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Érvénytelen UTF-8 kódolású szöveg - nem érvényes „%s”"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "A(z) „%-.*s” karakterhivatkozás nem engedélyezett karaktert kódol"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Üres „&;” entitás; az érvényes entitások: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "A(z) „%s” entitásnév ismeretlen"
#: 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 &amp;"
msgstr ""
"Az entitás neve nem pontosvesszővel ért véget; valószínűleg egy &-jelet "
"használt anélkül, hogy entitást akart volna kezdeni - írja &amp; formában."
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "A dokumentumnak egy elemmel kell kezdődnie (például: <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -416,7 +389,7 @@ msgid ""
msgstr ""
"„%s” nem érvényes karakter a „<” karakter után; elem neve nem kezdődhet vele"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -425,7 +398,7 @@ msgstr ""
"Furcsa karakter („%s”), „>” karakternek kellett volna jönnie, hogy lezárja a"
"(z) „%s” üres elemcímkét"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -433,7 +406,7 @@ msgstr ""
"Furcsa karakter („%s”) - „=” karakternek kellett volna jönnie a(z) „%s” elem "
"„%s” attribútumneve után"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -444,7 +417,7 @@ msgstr ""
"„%s” elem kezdő címkéje után, esetleg egy attribútumnak; lehet, hogy "
"érvénytelen karaktert használt az attribútum nevében"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -453,7 +426,7 @@ msgstr ""
"Furcsa karakter („%s”) - egy nyitó idézőjelnek kellene jönnie az "
"egyenlőségjel után, ha értéket ad a(z) „%s” attribútumnak „%s” elemben"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -462,7 +435,7 @@ msgstr ""
"„%s” nem érvényes karakter a „</” karakterek után; „%s” karakterrel nem "
"kezdődhet egy elem neve"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -471,26 +444,26 @@ msgstr ""
"„%s” nem érvényes karakter a „%s” lezáró elemnév után; az engedélyezett "
"karakter egyedül a „>”."
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "A(z) „%s” elem le lett lezárva, jelenleg egy elem sincs nyitva"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "A(z) „%s” elem le lett lezárva, de a jelenleg nyitott elem a(z) „%s”"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "A dokumentum üres volt, vagy csak üreshely karaktereket tartalmazott"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"A dokumentum váratlanul véget ért egy nyitott hegyes zárójel („<”) után"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -499,7 +472,7 @@ msgstr ""
"A dokumentum váratlanul véget ért, pedig még nyitva vannak elemek - „%s” az "
"utoljára megnyitott elem"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -508,19 +481,19 @@ msgstr ""
"A dokumentum váratlanul véget ért; a(z) <%s/> elemet lezáró hegyes "
"zárójelnek kellett volna következnie"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "A dokumentum váratlanul véget ért egy elemnéven belül"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "A dokumentum váratlanul véget ért egy attribútumnéven belül"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "A dokumentum váratlanul véget ért egy elemnyitó címkén belül"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -528,16 +501,16 @@ msgstr ""
"A dokumentum váratlanul véget ért egy az attribútumnevet követő "
"egyenlőségjel után; az attribútum értéke nem lett megadva"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "A dokumentum váratlanul véget ért egy attribútumértéken belül"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "A dokumentum váratlanul véget ért a(z) „%s” elem lezáró címkéjén belül"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"A dokumentum váratlanul véget ért egy megjegyzésen vagy feldolgozási "
@ -994,63 +967,63 @@ msgstr "Érvénytelen sorozat az átalakítási bemenetben"
msgid "Character out of range for UTF-16"
msgstr "A karakter az UTF-16 tartományon kívülre esik"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Használat:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[KAPCSOLÓ...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Súgólehetőségek:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Súgólehetőségek megjelenítése"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Minden súgólehetőség megjelenítése"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Alkalmazás kapcsolói:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Nem dolgozható fel a(z) „%s” egész érték a következőhöz: %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "A(z) „%s” egész érték a tartományon kívülre esik a következőhöz: %s"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Nem dolgozható fel a(z) „%s” dupla hosszúságú érték a következőhöz: %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
"A(z) „%s” dupla hosszúságú érték a tartományon kívülre esik a következőhöz: %"
"s"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Hiba a kapcsoló feldolgozása során: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Hiányzó paraméter a következőhöz: %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Ismeretlen kapcsoló: %s"
@ -1175,8 +1148,8 @@ msgstr "Túl nagy számérték került átadásra ennek: %s"
msgid "Stream is already closed"
msgstr "Az adatfolyam már le van zárva"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "A művelet megszakítva"
@ -1317,7 +1290,7 @@ msgstr "A Kuka nem támogatott"
msgid "File names cannot contain '%c'"
msgstr "A fájlnevek nem tartalmazhatnak „%c” karaktert"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "a kötet nem valósítja meg a csatolást"
@ -1338,14 +1311,6 @@ msgstr "A fájlenumerátor hátralévő művelettel rendelkezik"
msgid "File enumerator is already closed"
msgstr "A fájlenumerátor már le van zárva"
#: gio/gfileicon.c:145
msgid "file"
msgstr "fájl"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "Az ikont tartalmazó fájl"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1755,56 +1720,11 @@ msgstr "A kimeneti adatfolyam nem valósítja meg az írást"
msgid "Source stream is already closed"
msgstr "A forrás adatfolyam már le van zárva"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "név"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Az ikon neve"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "nevek"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Az ikonneveket tartalmazó tömb"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "alapértelmezett tartalékok használata"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Használandók-e az alapértelmezett, a név „-” karaktereknél történt "
"rövidítésével talált tartalékok. Több név megadása esetén az első utániakat "
"figyelmen kívül hagyja."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "A GThemedIcon kódolás %d. verziója nem kezelhető"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Fájlleíró"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "Az olvasandó fájlleíró"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Fájlleíró lezárása"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "A fájlleíró lezárandó-e az adatfolyam lezárásakor"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1821,16 +1741,12 @@ msgstr "Hiba a unix lezárásakor: %s"
msgid "Filesystem root"
msgstr "Fájlrendszer gyökere"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "Az írandó fájlleíró"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Hiba a unix írásakor: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "a kötet nem valósítja meg a kiadást"
@ -1866,3 +1782,76 @@ msgstr "hosszú felsorolási formátum használata"
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[FÁJL...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "A(z) „%s” karakter nem érvényes az entitások nevének elején; az entitások "
#~ "nevét az & karakter kezdi. Ha ez az & karakter nem lehet entitás, akkor "
#~ "&amp; módon kell írni."
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "A(z) „%s” karakter nem érvényes egy entitás nevén belül"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr ""
#~ "Üres karakterhivatkozás; számjegyet is kell tartalmaznia, például így: "
#~ "&#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Befejezetlen entitáshivatkozás"
#~ msgid "Unfinished character reference"
#~ msgstr "Befejezetlen karakterhivatkozás"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Érvénytelen UTF-8 kódolású szöveg - túl hosszú sorozat"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Érvénytelen UTF-8 kódolású szöveg - ez nem kezdőkarakter"
#~ msgid "file"
#~ msgstr "fájl"
#~ msgid "The file containing the icon"
#~ msgstr "Az ikont tartalmazó fájl"
#~ msgid "name"
#~ msgstr "név"
#~ msgid "The name of the icon"
#~ msgstr "Az ikon neve"
#~ msgid "names"
#~ msgstr "nevek"
#~ msgid "An array containing the icon names"
#~ msgstr "Az ikonneveket tartalmazó tömb"
#~ msgid "use default fallbacks"
#~ msgstr "alapértelmezett tartalékok használata"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Használandók-e az alapértelmezett, a név „-” karaktereknél történt "
#~ "rövidítésével talált tartalékok. Több név megadása esetén az első "
#~ "utániakat figyelmen kívül hagyja."
#~ msgid "File descriptor"
#~ msgstr "Fájlleíró"
#~ msgid "The file descriptor to read from"
#~ msgstr "Az olvasandó fájlleíró"
#~ msgid "Close file descriptor"
#~ msgstr "Fájlleíró lezárása"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "A fájlleíró lezárandó-e az adatfolyam lezárásakor"
#~ msgid "The file descriptor to write to"
#~ msgstr "Az írandó fájlleíró"

238
po/hy.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -296,116 +296,91 @@ msgstr "Չի հաջողվել բացել '%s' ֆայլը՝ open() խափանվե
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr ""
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Սխալ %d տողի %d տառում՝ %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Սխալ UTF-8 կոդավորված տեքստ"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Սխալ %d տողում՝ %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr ""
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr ""
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (&#234; for example) - perhaps the digit is too large"
msgstr ""
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr ""
#: glib/gmarkup.c:685
#: 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 &amp;"
msgstr ""
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Սխալ UTF-8 կոդավորված տեքստ"
#: glib/gmarkup.c:662
#, c-format
msgid "Entity name '%-.*s' is not known"
msgstr ""
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Սխալ UTF-8 կոդավորված տեքստ"
#: 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 &amp;"
msgstr ""
#: glib/gmarkup.c:1130
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Սխալ UTF-8 կոդավորված տեքստ"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Փաստաթուղթը պետք է սկսվի որևէ էլէմենտով (օրինակ <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr ""
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr ""
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -413,87 +388,87 @@ msgid ""
"character in an attribute name"
msgstr ""
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, 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 ""
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
msgstr ""
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
msgstr ""
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr ""
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr ""
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr ""
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr ""
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr ""
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
@ -929,62 +904,62 @@ msgstr ""
msgid "Character out of range for UTF-16"
msgstr ""
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Կիրառում՝"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr ""
#: glib/goption.c:719
#: glib/goption.c:828
#, fuzzy
msgid "Help Options:"
msgstr "Ցուցադրել Ձեռնարկի հատկությունները"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Ցուցադրել Ձեռնարկի հատկությունները"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr ""
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr ""
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr ""
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr ""
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr ""
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr ""
@ -1101,8 +1076,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1244,7 +1219,7 @@ msgstr "Սիմվոլիկ հղումները չեն ապահովվում"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1265,14 +1240,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr ""
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1681,54 +1648,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr ""
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "'%s' ֆայլը կարդալու սխալ՝ %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1745,16 +1669,12 @@ msgstr "Սխալ %d տողում՝ %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "'%s' ֆայլը կարդալու սխալ՝ %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1792,6 +1712,18 @@ msgstr ""
msgid "[FILE...]"
msgstr ""
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Սխալ UTF-8 կոդավորված տեքստ"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Սխալ UTF-8 կոդավորված տեքստ"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "'%s' ֆայլը կարդալու սխալ՝ %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "'%s' ֆայլը կարդալու սխալ՝ %s"

288
po/id.po
View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -306,54 +306,32 @@ msgid "Failed to map file '%s': mmap() failed: %s"
msgstr ""
"Gagal saat memetakan berkas '%s': fungsi mmap() mengalami kegagalan: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Error pada baris %d huruf ke %d: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Teks UTF-8 tidak benar"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Error pada baris ke %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Ada entitas '&;' yang kosong; Entitas yang benar antara lain adalah: &amp; "
"&quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Karakter '%s' tidak benar apabila ada pada awal nama entitas; Karakter & "
"yang boleh ada pada awal entitas; Bila ampersand ini dianggap bukan sebuah "
"entitas, Beri kode escape dan tulis sebagai &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Karakter '%s' tidak boleh digunakan pada nama entitas"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Nama entitas '%s' tidak diketahui"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entitas tidak diakhiri dengan titik koma. Mungkin Anda menggunakan karakter "
"ampersand tanpa bermaksud menjadikannya sebagai entitas - silakan pakai "
"&amp; saja"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -362,17 +340,7 @@ msgstr ""
"Gagal saat mengurai '%-.*s'. yang seharusnya sebuah digit dalam referensi "
"karakter (misalnya &#234;) - mungkin digitnya terlalu besar"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
"Referensi karakter '%-.*s' tidak mengencodekan karakter yang diperbolehkan"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Refensi karakter kosong. Seharusnya berisi digit, mislanya &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -382,34 +350,38 @@ msgstr ""
"menggunakan karakter ampersand tanpa bermaksud menjadikannya sebagai "
"entitas. Silakan gunakan &amp; saja"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Referensi entitas yang tidak sempurna"
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
"Referensi karakter '%-.*s' tidak mengencodekan karakter yang diperbolehkan"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Refersi karakter yang tidak sempurna"
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Ada entitas '&;' yang kosong; Entitas yang benar antara lain adalah: &amp; "
"&quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Teks UTF-8 tidak benar"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Teks UTF-8 tidak benar"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Teks UTF-8 tidak benar"
msgid "Entity name '%-.*s' is not known"
msgstr "Nama entitas '%s' tidak diketahui"
#: glib/gmarkup.c:1168
#: 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 &amp;"
msgstr ""
"Entitas tidak diakhiri dengan titik koma. Mungkin Anda menggunakan karakter "
"ampersand tanpa bermaksud menjadikannya sebagai entitas - silakan pakai "
"&amp; saja"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumen harus dimulai dengan elemen (misalnya <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -418,7 +390,7 @@ msgstr ""
"'%s' bukanlah karakter yang benar bila diikuti dengan karakter '<'. Ini "
"tidak boleh menjadi nama elemen"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -427,7 +399,7 @@ msgstr ""
"Ada karakter aneh '%s'. Seharusnya ada '>' untuk mengakhiri tag awal pada "
"elemen '%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -435,7 +407,7 @@ msgstr ""
"Ada karakter aneh '%s'. Seharusnya ada karakter '=' setelah nama atribut '%"
"s' pada elemen '%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -446,7 +418,7 @@ msgstr ""
"padaelemen '%s', atau bisa juga ada atribut lain. Mungkin Anda menggunakan "
"karakter yang tidak diperbolehkan pada nama atribut."
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -455,7 +427,7 @@ msgstr ""
"Ada karakter aneh '%s'. Seharusnya ada tanda kutip buka setelah tanda sama "
"dengan saat memberikan nilai atribut '%s' pada elemen '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -464,7 +436,7 @@ msgstr ""
"'%s' bukan karakter yang benar bila diikuti dengan karakter '</'. Karena itu "
"'%s' tidak boleh dijadikan awal nama elemen"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -473,26 +445,26 @@ msgstr ""
"'%s' bukan karakter yang benar bila diikuti elemen penutup '%s'. Karakter "
"yang diperbolehkan adalah '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Elemen '%s' sudah ditutup, tidak ada elemen yang masih terbuka"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Elemen '%s' sudah ditutup, tapi elemen yang masih terbuka adalah '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Dokumen kosong atau berisi whitespace saja"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Dokumen terpotong tidak sempurna sesaat setelah membuka kurung siku '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -501,7 +473,7 @@ msgstr ""
"Dokumen terpotong tidak sempurna dengan elemen yang masih terbuka - '%s' "
"adalah elemen terakhir yang dibuka"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -510,19 +482,19 @@ msgstr ""
"Dokumen terpotong tidak sempurna, seharusnya ada kurung siku penutup untuk "
"mengakhiri tag <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumen terpotong tidak sempurna pada dalam nama elemen"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokumen terpotong tidak sempurna di dalam nama atribut"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokumen terpotong tidak sempurna di dalam tag pembukaan elemen."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -530,16 +502,16 @@ msgstr ""
"Dokumen terpotong tidak sempurna setelah tanda sama dengan mengikuti nama "
"atribut. Tidak ada nilai atribut yang diperoleh"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokumen tidak sempura saat ada dalam nilai atribut"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Dokumen terpotong tidak sempurna di dalam tag penutup elemen '%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokumen terpotong tidak sempurna di dalam keterangan atau instruksi "
@ -991,61 +963,61 @@ msgstr "Rangkaian input konversi salah"
msgid "Character out of range for UTF-16"
msgstr "Karakter di luar jangkauan UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Gunakan:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[PILIHAN...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Pilihan Bantuan:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Tampilkan pilihan bantuan"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Tampilkan seluruh pilihan bantuan"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Pilihan Aplikasi:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Tidak dapat menguraikan nilai integer '%s' untuk %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Nilai integer '%s' untuk %s di luar jangkauan"
#: glib/goption.c:885
#: glib/goption.c:994
#, fuzzy, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Tidak dapat menguraikan nilai integer '%s' untuk %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, fuzzy, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Nilai integer '%s' untuk %s di luar jangkauan"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, fuzzy, c-format
msgid "Error parsing option %s"
msgstr "Error saat melakukan konversi: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Argumen untuk %s tidak lengkap"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Pilihan tidak diketahui %s"
@ -1169,8 +1141,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1313,7 +1285,7 @@ msgstr "Link simbolik tidak didukung oleh sistem"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1334,15 +1306,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Nama host pada URI '%s' tidak benar"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1755,55 +1718,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "Nama host pada URI '%s' tidak benar"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Error saat membaca file '%s': %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1820,16 +1739,12 @@ msgstr "Error pada baris ke %d: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Error saat melakukan konversi: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1868,6 +1783,47 @@ msgstr ""
msgid "[FILE...]"
msgstr "[PILIHAN...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Karakter '%s' tidak benar apabila ada pada awal nama entitas; Karakter & "
#~ "yang boleh ada pada awal entitas; Bila ampersand ini dianggap bukan "
#~ "sebuah entitas, Beri kode escape dan tulis sebagai &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Karakter '%s' tidak boleh digunakan pada nama entitas"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Refensi karakter kosong. Seharusnya berisi digit, mislanya &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Referensi entitas yang tidak sempurna"
#~ msgid "Unfinished character reference"
#~ msgstr "Refersi karakter yang tidak sempurna"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Teks UTF-8 tidak benar"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Teks UTF-8 tidak benar"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Nama host pada URI '%s' tidak benar"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "Nama host pada URI '%s' tidak benar"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Error saat membaca file '%s': %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Error saat melakukan konversi: %s"

285
po/is.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -297,51 +297,32 @@ msgstr "Gat ekki opnað skrána '%s': fdopen() brást: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Gat ekki opnað skrána '%s': fdopen() brást: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Villa á línu %d tákn %d: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Ógildur UTF-8 þýddur texti"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Villa á línu %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Tómt viðfang '&;' fannst; gild viðföng eru: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Táknið '%s' er ógilt í upphafi heiti viðfanga; & táknið byrjar viðfang; ef "
"Þetta og-merki á ekki að vera byrjun viðfangs ættir þú að rita það sem &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Táknið '%s' er ekki gilt í heitum viðfanga"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Viðfangið '%s' er óþekkt"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Viðfangið endar ekki á semikommu; líklega notaðir þú og-merkið án þess að "
"ætla að byrja viðfang. Ritaðu það sem &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, fuzzy, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -350,16 +331,7 @@ msgstr ""
"Gat ekki þáttað '%s' sem ætti að vera tölustafur innan í tilvísun í tákn "
"(til dæmis &#234;). Ef til vill er talan of stór"
#: glib/gmarkup.c:660
#, fuzzy, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Tákntilvísunin '%s' vísar ekki í leyfilegt tákn"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Tóm tákntilvísun; hún ætti að innihalda tölur eins og &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -368,34 +340,35 @@ msgstr ""
"Viðfangið endar ekki á semikommu; líklega notaðir þú og-merkið án þess að "
"ætla að byrja viðfang. Ritaðu það sem &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Hálfkláruð viðfangatilvísun"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Hálfkláruð tákntilvísun"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Ógildur UTF-8 þýddur texti"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Ógildur UTF-8 þýddur texti"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Ógildur UTF-8 þýddur texti"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Tákntilvísunin '%s' vísar ekki í leyfilegt tákn"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Tómt viðfang '&;' fannst; gild viðföng eru: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Viðfangið '%s' er óþekkt"
#: 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 &amp;"
msgstr ""
"Viðfangið endar ekki á semikommu; líklega notaðir þú og-merkið án þess að "
"ætla að byrja viðfang. Ritaðu það sem &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Skjalið verður að byrja á viðfangi (t.d. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -404,21 +377,21 @@ msgstr ""
"'%s' er ekki gilt tákn strax á eftir '<' tákninu; það má ekki byrja á heiti "
"viðfangs"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr "Undarlegt tákn '%s', átti von á '>' tákninu til að enda viðfangið '%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"Undarlegt tákn '%s', átti von á '=' eftir heiti eiginleika '%s' af mengi '%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -429,7 +402,7 @@ msgstr ""
"viðfangi '%s', eða eiginleika; Þú notaðir ef til vill ógilt tákn í heiti "
"eiginleika"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -438,7 +411,7 @@ msgstr ""
"Undarlegt tákn '%s', átti von á tilvísunarmerki eftir samasem merkinu þegar "
"gildi er gefið með eiginleikanum '%s' af menginu '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -447,7 +420,7 @@ msgstr ""
"'%s' er ekki gilt tákn strax á eftir '</'; '%s' má ekki vera fyrsta tákn í "
"heiti mengis"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -455,25 +428,25 @@ msgid ""
msgstr ""
"'%s' er ekki gilt tákn strax á eftir lokun mengis '%s'. Leyfilegt tákn er '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Mengið '%s' var lokað og engin önnur mengi eru opin"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Mengið '%s' var lokað en mengið sem nú er opið er '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Skjalið var tómt eða innihélt einungis orðabil"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Skjalið endar óvænt rétt eftir opið minna en merki '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -482,7 +455,7 @@ msgstr ""
"Skjalið endar óvænt með mengi sem enn eru opin. '%s' var mengið sem síðast "
"var opnað"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -490,19 +463,19 @@ msgid ""
msgstr ""
"Skjalið endar óvænt. Átti von á að sjá stærraen merki sem lokar taginu <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Skjalið endar óvænt inn í heiti mengis"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Skjalið endar óvænt inn í heiti eiginleika"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Skjalið endar óvænt inn í tagi sem opnar mengi."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -510,16 +483,16 @@ msgstr ""
"Skjalið endar óvænt eftir samasem merkið sem fylgir heiti eiginleika og það "
"er ekkert gildi"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Skjalið endar óvænt inn í gildi eiginleika"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Skjalið endar óvænt inni í lokunartagi fyrir mengið '%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Skjalið endar óvænt inni í athugasemd eða í miðri skipun"
@ -961,61 +934,61 @@ msgstr "Ógild runa í ílagi umbreytingar"
msgid "Character out of range for UTF-16"
msgstr "Táknið er utan UTF-16 sviðsins"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr ""
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr ""
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr ""
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr ""
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr ""
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr ""
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr ""
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, fuzzy, c-format
msgid "Error parsing option %s"
msgstr "Villa við umbreytingu: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr ""
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr ""
@ -1132,8 +1105,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1275,7 +1248,7 @@ msgstr "Tákntengi eru ekki studd"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1296,15 +1269,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Vélarheitið í URI '%s' er ógilt"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1716,55 +1680,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "Vélarheitið í URI '%s' er ógilt"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Villa við lestur skráarinnar '%s': %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1781,16 +1701,12 @@ msgstr "Villa á línu %d: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Villa við umbreytingu: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1828,6 +1744,47 @@ msgstr ""
msgid "[FILE...]"
msgstr ""
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Táknið '%s' er ógilt í upphafi heiti viðfanga; & táknið byrjar viðfang; "
#~ "ef Þetta og-merki á ekki að vera byrjun viðfangs ættir þú að rita það sem "
#~ "&amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Táknið '%s' er ekki gilt í heitum viðfanga"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Tóm tákntilvísun; hún ætti að innihalda tölur eins og &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Hálfkláruð viðfangatilvísun"
#~ msgid "Unfinished character reference"
#~ msgstr "Hálfkláruð tákntilvísun"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Ógildur UTF-8 þýddur texti"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Ógildur UTF-8 þýddur texti"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Vélarheitið í URI '%s' er ógilt"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "Vélarheitið í URI '%s' er ógilt"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Villa við lestur skráarinnar '%s': %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Villa við umbreytingu: %s"

321
po/it.po
View File

@ -18,7 +18,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib 2.19.x\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-16 22:09+0100\n"
"Last-Translator: Luca Ferretti <elle.uca@libero.it>\n"
"Language-Team: Italian <tp@lists.linux.it>\n"
@ -333,53 +333,32 @@ msgstr "Apertura del file \"%s\" non riuscita: open() non riuscita: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Mappatura del file \"%s\" non riuscita: mmap() non riuscita: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Errore alla riga %d carattere %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Testo in codifica UTF-8 non valido - \"%s\" non valido"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Errore alla riga %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Rilevata entità vuota '&;' (sono entità valide &amp; &quot; &lt; &gt; &apos;)"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Il carattere '%s' non è valido all'inizio di un nome di entità: il carattere "
"'&' dà inizio a un'entità; se questo simbolo \"e commerciale\" non vuole "
"essere l'inizio di una entità, ricorrere a &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Il carattere '%s' non è valido all'interno di un nome di entità"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Il nome di entità '%s' è sconosciuto"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"L'entità non termina con un punto e virgola; probabilmente è stata "
"utilizzata una \"e commerciale\" senza l'intento di iniziare una entità. In "
"tal caso ricorrere a &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -389,17 +368,7 @@ msgstr ""
"di un riferimento a carattere (es. &#234;) - probabilmente il numero è "
"troppo grande"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Il riferimento a carattere '%-.*s' non codifica un carattere permesso"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr ""
"Riferimento a carattere vuoto; dovrebbe includere un numero, come &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -409,33 +378,36 @@ msgstr ""
"si è utilizzato un carattere \"e commerciale\" senza l'intenzione di "
"iniziare una nuova entità. In tal caso ricorrere a &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Riferimento a entità non terminato"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Riferimento a carattere non terminato"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Testo in codifica UTF-8 non valido - sequenza troppo lunga"
# anche gradevole "di apertura" come da discussione su TP
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Testo in codifica UTF-8 non valido - non è un carattere di avvio"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Testo in codifica UTF-8 non valido - \"%s\" non valido"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Il riferimento a carattere '%-.*s' non codifica un carattere permesso"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Rilevata entità vuota '&;' (sono entità valide &amp; &quot; &lt; &gt; &apos;)"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Il nome di entità '%s' è sconosciuto"
#: 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 &amp;"
msgstr ""
"L'entità non termina con un punto e virgola; probabilmente è stata "
"utilizzata una \"e commerciale\" senza l'intento di iniziare una entità. In "
"tal caso ricorrere a &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Il documento deve iniziare con un elemento (es. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -444,7 +416,7 @@ msgstr ""
"'%s' non è un carattere valido dopo un carattere '<'; non può dare inizio a "
"un nome di elemento"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -453,7 +425,7 @@ msgstr ""
"Carattere '%s' spaiato, era atteso un carattere '>' per terminare il tag "
"dell'elemento-vuoto \"%s\""
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -461,7 +433,7 @@ msgstr ""
"Carattere '%s' spaiato, era atteso un carattere '=' dopo il nome "
"dell'attributo \"%s\" dell'elemento \"%s\""
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -472,7 +444,7 @@ msgstr ""
"il tag di partenza dell'elemento \"%s\", oppure opzionalmente un attributo. "
"Probabilmente è stato usato un carattere non valido in un nome di attributo"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -482,7 +454,7 @@ msgstr ""
"segno di uguale per attribuire un valore all'attributo \"%s\" dell'elemento "
"\"%s\""
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -491,7 +463,7 @@ msgstr ""
"'%s' non è un carattere valido dopo i caratteri '</'; '%s' non può dare "
"inizio a un nome di elemento"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -500,30 +472,30 @@ msgstr ""
"'%s' non è un carattere valido dopo la chiusura del nome dell'elemento \"%s"
"\"; il carattere permesso è '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
"È stato chiuso l'elemento \"%s\", nessun elemento risulta correntemente "
"aperto"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
"È stato chiuso l'elemento \"%s\", ma l'elemento correntemente aperto è \"%s\""
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Il documento era vuoto oppure conteneva unicamente spazi"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Il documento è terminato in modo inatteso subito dopo una parentesi angolare "
"d'apertura '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -532,7 +504,7 @@ msgstr ""
"Il documento è terminato in modo inatteso con elementi ancora aperti - \"%s"
"\" era l'ultimo elemento aperto"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -541,23 +513,23 @@ msgstr ""
"Il documento è terminato in modo inatteso, mancando la parentesi angolare di "
"chiusura per il tag <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr ""
"Il documento è terminato in modo inatteso all'interno di un nome di elemento"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
"Il documento è terminato in modo inatteso all'interno di un nome di attributo"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"Il documento è terminato in modo inatteso all'interno di un tag di apertura "
"elemento."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -565,13 +537,13 @@ msgstr ""
"Il documento è terminato in modo inatteso dopo il segno di uguale che segue "
"un nome di attributo; nessun valore per l'attributo"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
"Il documento è terminato in modo inatteso all'interno di un valore di "
"attributo"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
@ -579,7 +551,7 @@ msgstr ""
"per l'elemento \"%s\""
# di elaborazione? in elaborazione ?
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Il documento è terminato in modo inatteso all'interno di un commento o "
@ -1070,61 +1042,61 @@ msgstr "Sequenza non valida in ingresso per la conversione"
msgid "Character out of range for UTF-16"
msgstr "Carattere fuori dall'intervallo per UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Uso:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPZIONE...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Opzioni di aiuto:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Mostra le opzioni di aiuto"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Mostra tutte le opzioni di aiuto"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Opzioni dell'applicazione:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Impossibile analizzare il valore intero \"%s\" per %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Il valore intero \"%s\" per %s è fuori dall'intervallo"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Impossibile analizzare il valore double \"%s\" per %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Il valore double \"%s\" per %s è fuori dall'intervallo"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Errore nell'analizzare l'opzione %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Argomento mancante per %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Opzione %s sconosciuta"
@ -1252,8 +1224,8 @@ msgstr "Valore count troppo grande passato a %s"
msgid "Stream is already closed"
msgstr "Lo stream è già chiuso"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "L'operazione è stata annullata"
@ -1400,7 +1372,7 @@ msgstr "Cestino non supportato"
msgid "File names cannot contain '%c'"
msgstr "I nomi di file non possono contenere '%c'"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "il volume non implementa il montaggio"
@ -1422,14 +1394,6 @@ msgstr "L'enumeratore di file presenta un'operazione in sospeso"
msgid "File enumerator is already closed"
msgstr "L'enumeratore di file è già chiuso"
#: gio/gfileicon.c:145
msgid "file"
msgstr "file"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "Il file contenente l'icona"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1855,56 +1819,11 @@ msgstr "Lo stream di output non implementa la scrittura"
msgid "Source stream is already closed"
msgstr "Lo stream sorgente è già chiuso"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "nome"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Il nome dell'icona"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "nomi"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Un array contenente i nomi delle icone"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "usare alternative predefinite"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Indica se usare le icone alternative predefinite trovate accorciando il nome "
"ai caratteri '-'. Ignora i nomi successivi al primo nel caso in cui ne siano "
"stati forniti più di uno."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Impossibile gestire la versione %d della codifica GThemedIcon"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Descrittore di file"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "Il descrittore di file da cui leggere"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Chiude il descrittore di file"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "Indica se chiudere il descrittore di file quando si chiude lo stream"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1921,16 +1840,12 @@ msgstr "Errore nel chiudere unix: %s"
msgid "Filesystem root"
msgstr "File system radice"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "Il descrittore di file su cui scrivere"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Errore nello scrivere su unix: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "il volume non implementa l'espulsione"
@ -1966,3 +1881,77 @@ msgstr "usare un formato di elencazione esteso"
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[FILE...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Il carattere '%s' non è valido all'inizio di un nome di entità: il "
#~ "carattere '&' dà inizio a un'entità; se questo simbolo \"e commerciale\" "
#~ "non vuole essere l'inizio di una entità, ricorrere a &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Il carattere '%s' non è valido all'interno di un nome di entità"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr ""
#~ "Riferimento a carattere vuoto; dovrebbe includere un numero, come &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Riferimento a entità non terminato"
#~ msgid "Unfinished character reference"
#~ msgstr "Riferimento a carattere non terminato"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Testo in codifica UTF-8 non valido - sequenza troppo lunga"
# anche gradevole "di apertura" come da discussione su TP
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Testo in codifica UTF-8 non valido - non è un carattere di avvio"
#~ msgid "file"
#~ msgstr "file"
#~ msgid "The file containing the icon"
#~ msgstr "Il file contenente l'icona"
#~ msgid "name"
#~ msgstr "nome"
#~ msgid "The name of the icon"
#~ msgstr "Il nome dell'icona"
#~ msgid "names"
#~ msgstr "nomi"
#~ msgid "An array containing the icon names"
#~ msgstr "Un array contenente i nomi delle icone"
#~ msgid "use default fallbacks"
#~ msgstr "usare alternative predefinite"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Indica se usare le icone alternative predefinite trovate accorciando il "
#~ "nome ai caratteri '-'. Ignora i nomi successivi al primo nel caso in cui "
#~ "ne siano stati forniti più di uno."
#~ msgid "File descriptor"
#~ msgstr "Descrittore di file"
#~ msgid "The file descriptor to read from"
#~ msgstr "Il descrittore di file da cui leggere"
#~ msgid "Close file descriptor"
#~ msgstr "Chiude il descrittore di file"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr ""
#~ "Indica se chiudere il descrittore di file quando si chiude lo stream"
#~ msgid "The file descriptor to write to"
#~ msgstr "Il descrittore di file su cui scrivere"

317
po/ja.po
View File

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib trunk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-17 22:18+0900\n"
"Last-Translator: Takeshi AIHANA <takeshi.aihana@gmail.com>\n"
"Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n"
@ -304,54 +304,32 @@ msgstr "ファイル '%s' を開けません: open() が失敗: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "ファイル '%s' のマップに失敗しました: mmap() が失敗: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "%d 行の %d 文字目でエラー:"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "UTF-8 として正しくない文字列です ('%s' は妥当ではありません)"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "%d 行目でエラー: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"空のエンティティ '&;' があります; 正しいエンティティは: &amp; &quot; &lt; "
"&gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"文字 '%s' はエンティティ名の最初には使えません。文字 & はエンティティの開始を"
"表わします。もしアンパサンドがエンティティでなければ、&amp; のようにエスケー"
"プしてください"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "文字 '%s' はエンティティ名として使えません"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "エンティティ名 '%s' というのは不明です"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"エンティティがセミコロンで終わってません。エンティティでもないのにアンパサン"
"ドを使ったのではないでしょうか。アンパサンドは &amp; のようにエスケープしてく"
"ださい"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -360,16 +338,7 @@ msgstr ""
"'%-.*s' をパースできません。文字参照には数字が含まれなくてはなりません (例: "
"&#234;) おそらく数字が大きすぎます"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "文字参照 '%-.*s' が使用可能な文字をエンコードしていません"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "空の文字参照です。&#454; のように数字がなくてはなりません"
#: glib/gmarkup.c:685
#: 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 "
@ -379,32 +348,37 @@ msgstr ""
"サンド文字を使っているのかもしれません。アンパサンドは &amp; とエスケープして"
"ください"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "中途半端な実体参照です"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "中途半端な文字参照です"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "UTF-8 として正しくない文字列です (シーケンスが長すぎます)"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "UTF-8 として正しくない文字列です (文字で始まっていません)"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "UTF-8 として正しくない文字列です ('%s' は妥当ではありません)"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "文字参照 '%-.*s' が使用可能な文字をエンコードしていません"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"空のエンティティ '&;' があります; 正しいエンティティは: &amp; &quot; &lt; "
"&gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "エンティティ名 '%s' というのは不明です"
#: 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 &amp;"
msgstr ""
"エンティティがセミコロンで終わってません。エンティティでもないのにアンパサン"
"ドを使ったのではないでしょうか。アンパサンドは &amp; のようにエスケープしてく"
"ださい"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "ドキュメントは要素 (例 <book>) で始まってなくてはなりません"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -413,7 +387,7 @@ msgstr ""
"'%s' は '<' に続く文字としては正しくありません。おそらく要素名の開始になって"
"いません"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -422,13 +396,13 @@ msgstr ""
"おかしな文字 '%s' があります。空の要素のタグ '%s' の最後は '>' でなくてはなり"
"ません"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "おかしな文字 '%s' です。属性名'%s' (要素 '%s') の後には '=' が必要です"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -439,7 +413,7 @@ msgstr ""
"はなりません。あるいは属性になります。おかしな文字を属性名に使ったのかもしれ"
"ません"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -448,7 +422,7 @@ msgstr ""
"おかしな文字 '%s' です。属性 '%s' (要素 '%s') の値を設定するには等号記号の後"
"は引用記号で始まってなくてはなりません"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -457,7 +431,7 @@ msgstr ""
"'%s' は '</' に続く文字としては正しくありません。'%s' では要素名は始まってま"
"せん"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -466,25 +440,25 @@ msgstr ""
"'%s' は閉じ要素名 '%s' に続く文字としては正しくありあません。'>' のみが使用で"
"きます"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "要素 '%s' は閉じています。要素は何も開かれてません"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "要素'%s' が閉ました。しかし現在開いている要素は '%s' です"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "ドキュメントが空か、空白だけが含まれています"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "ドキュメントが開きカギカッコ '<' の直後で終了しています"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -493,7 +467,7 @@ msgstr ""
"ドキュメントが突然終了しています。要素が開きっぱなしです。最後に開いた要素は "
"'%s' です。"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -502,19 +476,19 @@ msgstr ""
"ドキュメントはタグ <%s/> で終了しているものと想定していましたが、突然終了して"
"います。"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "要素名の途中でドキュメントが突然終了しています"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "属性名の途中でドキュメントが突然終了しています"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "要素の開始タグの途中でドキュメントが突然終了しています"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -522,16 +496,16 @@ msgstr ""
"属性名の後にある等号記号の次でドキュメントが突然終了しています: 属性値があり"
"ません"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "ドキュメントが属性値の途中で突然終了しています"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "ドキュメントが要素 '%s' の閉じタグの途中で突然終了しています"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"ドキュメントがコメントあるいはプロセシング指示子の途中で突然終了しています"
@ -973,61 +947,61 @@ msgstr "変換する入力で無効なシーケンスがあります"
msgid "Character out of range for UTF-16"
msgstr "UTF-16 の範囲外の文字です"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "用法:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[オプション...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "ヘルプのオプション:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "ヘルプのオプションを表示する"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "ヘルプのオプションを全て表示する"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "アプリケーションのオプション:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "%2$s の整数値 '%1$s' を解析できません"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "%2$s の整数値 '%1$s' は範囲外の値です"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "%2$s の実数値 '%1$s' を解析できません"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "%2$s の実数値 '%1$s' は範囲外の値です"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "オプション %s の解析中にエラー"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s の引数がありません"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "%s は不明なオプションです"
@ -1147,8 +1121,8 @@ msgstr "%s に引き渡した値が大きすぎます"
msgid "Stream is already closed"
msgstr "既にストリームは閉じています"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "操作がキャンセルされました"
@ -1290,7 +1264,7 @@ msgstr "ゴミ箱はサポートしていません"
msgid "File names cannot contain '%c'"
msgstr "ファイル名に '%c' を含めることはできません"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "ボリュームはマウントを実装していません"
@ -1311,14 +1285,6 @@ msgstr "File enumerator has outstanding operation"
msgid "File enumerator is already closed"
msgstr "ファイルの Enumerator は既に閉じています"
#: gio/gfileicon.c:145
msgid "file"
msgstr "ファイル"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "アイコンの情報を格納したファイルです"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1729,55 +1695,11 @@ msgstr "出力ストリームは書き込みを実装していません"
msgid "Source stream is already closed"
msgstr "ソース・ストリームは既に閉じています"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "名前"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "アイコンの名前です"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "名前の集合"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "アイコンの名前を格納した配列です"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "デフォルトのフォールバックを使用する"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"'-' という代替え文字で名前を省略するデフォルトのフォールバックを使用するかど"
"うかです (複数の名前を指定すると一番最初の名前より後ろの名前を全て無視します)"
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "バージョン %d の GThemedIcon のエンコーディングはサポートしていません"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "ファイル・ディスクリプタ"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "読み込むファイルのファイル・ディスクリプタです"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "ファイル・ディスクリプタを閉じるかどうか"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "ストリームが閉じたらファイル・ディスクリプタを閉じるかどうかです"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1794,16 +1716,12 @@ msgstr "unix を閉じる際にエラー: %s"
msgid "Filesystem root"
msgstr "ファイルシステムのルート"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "書き込むファイルのファイル・ディスクリプタです"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "unix に書き込む際にエラー: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "ボリュームは取り出しを実装していません"
@ -1839,3 +1757,74 @@ msgstr "長い形式で一覧表示する"
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[ファイル...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "文字 '%s' はエンティティ名の最初には使えません。文字 & はエンティティの開"
#~ "始を表わします。もしアンパサンドがエンティティでなければ、&amp; のようにエ"
#~ "スケープしてください"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "文字 '%s' はエンティティ名として使えません"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "空の文字参照です。&#454; のように数字がなくてはなりません"
#~ msgid "Unfinished entity reference"
#~ msgstr "中途半端な実体参照です"
#~ msgid "Unfinished character reference"
#~ msgstr "中途半端な文字参照です"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "UTF-8 として正しくない文字列です (シーケンスが長すぎます)"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "UTF-8 として正しくない文字列です (文字で始まっていません)"
#~ msgid "file"
#~ msgstr "ファイル"
#~ msgid "The file containing the icon"
#~ msgstr "アイコンの情報を格納したファイルです"
#~ msgid "name"
#~ msgstr "名前"
#~ msgid "The name of the icon"
#~ msgstr "アイコンの名前です"
#~ msgid "names"
#~ msgstr "名前の集合"
#~ msgid "An array containing the icon names"
#~ msgstr "アイコンの名前を格納した配列です"
#~ msgid "use default fallbacks"
#~ msgstr "デフォルトのフォールバックを使用する"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "'-' という代替え文字で名前を省略するデフォルトのフォールバックを使用するか"
#~ "どうかです (複数の名前を指定すると一番最初の名前より後ろの名前を全て無視し"
#~ "ます)"
#~ msgid "File descriptor"
#~ msgstr "ファイル・ディスクリプタ"
#~ msgid "The file descriptor to read from"
#~ msgstr "読み込むファイルのファイル・ディスクリプタです"
#~ msgid "Close file descriptor"
#~ msgstr "ファイル・ディスクリプタを閉じるかどうか"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "ストリームが閉じたらファイル・ディスクリプタを閉じるかどうかです"
#~ msgid "The file descriptor to write to"
#~ msgstr "書き込むファイルのファイル・ディスクリプタです"

284
po/ka.po
View File

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ka\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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-"
@ -304,52 +304,32 @@ msgstr "ვერ მოხერხდა '%s' ფაილის გახს
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "ვერ მოხერხდა '%s' ფაილის განთავსება: mmap() ვერ შედგა: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "შეცდომა სტრიქონში %d სიმბოლო %d: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "ტექსტი მიუღებელი UTF-8 კოდირებით - მიუღებელი '%s'"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "შეცდომა სტრიქონში %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"ცარიელი ერთეული \"&;\"; შესაძლო ერთეულებია: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"სიმბოლო \"%s\" დაუშვებელია ერთეულის დასაწყისში; ერთეულიიწყება \"&\" "
"სიმბოლოთი; თუ ეს სიმბოლო სიმბოლო ერთეულის ნაწილი უნდა იყოს გამოსახეთ იგი, "
"როგორც &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "სიმბოლო \"%s\" ერთეულის სახელში დაუშვებელია"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "ერთეულის სახელი \"%s\" უცნობია"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"ერთეული არ მთავრდება წერტილ-მძიმით; როგორც ჩანს, სახელის დასაწყისში "
"გამოყენებულია სიმბოლო \"&\". გამოსახეთ იგი, როგორც &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -358,17 +338,7 @@ msgstr ""
"ვერ მუშავდება სტრიქონი '%-.*s', რომელშიც უნდა იყოს სიმბოლოს ნომერი "
"(მაგალითად, &#234;): შესაძლოა რიცხვი მეტისმეტად დიდია"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "სიმბოლოს ნომერი '%-.*s' დაუშვებელია"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr ""
"სიმბოლოს დამოწმება ცარიელია; იგი ნომერს უნდა შეიცავდეს, მაგალითად, &#454;"
#: glib/gmarkup.c:685
#: 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,32 +347,35 @@ msgstr ""
"სიმბოლოს ნომერი არ მთავრდება წერტილ-მძიმით; როგორც ჩანს, სახელის დასაწყისში "
"გამოყენებულია სიმბოლო \"&\". გამოსახეთ იგი, როგორც &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "ერთეულის დამოწმება არაა დასრულებული"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "სიმბოლოს დამოწმება არაა დასრულებული"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "ტექსტი მიუღებელი UTF-8 კოდირებით - overlong sequence"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "ტექსტი მიუღებელი UTF-8 კოდირებით - not a start char"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "ტექსტი მიუღებელი UTF-8 კოდირებით - მიუღებელი '%s'"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "სიმბოლოს ნომერი '%-.*s' დაუშვებელია"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"ცარიელი ერთეული \"&;\"; შესაძლო ერთეულებია: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "ერთეულის სახელი \"%s\" უცნობია"
#: 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 &amp;"
msgstr ""
"ერთეული არ მთავრდება წერტილ-მძიმით; როგორც ჩანს, სახელის დასაწყისში "
"გამოყენებულია სიმბოლო \"&\". გამოსახეთ იგი, როგორც &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "დოკუმენტი უნდა დაიწყოს ელემეტით (მაგალითად <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -411,7 +384,7 @@ msgstr ""
"სიმბოლო \"%s\" დაუშვებელია \"<\" სიმბოლოს შემდეგ; ამ სიმბოლოთი ელემენტის "
"სახელის დაწყება არ შეიძლება"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -420,7 +393,7 @@ msgstr ""
"ზედმეტი სიმბოლო \"%s\", მოსალოდნელია \">\" სიმბოლო ელემენტის \"%s\" ჭდის "
"დასახურად"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -428,7 +401,7 @@ msgstr ""
"ზედმეტი სიმბოლო \"%s\", მოსალოდნელია \"=\"ატრიბუტის სახელის \"%s\" შემდეგ "
"ელემენტისთვის \"%s\""
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -439,7 +412,7 @@ msgstr ""
"გამხსნელი ჭდის დასახურად ან დამატებითი ატრიბუტი; ასევე, შესაძლოა მცდარი "
"სიმბოლო ატრიბუტის სახელში"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -448,7 +421,7 @@ msgstr ""
"ზედმეტი სიმბოლო \"%s\", მოსალოდნელია გახსნილი ბრჭყალები ტოლობის ნიშნის "
"შემდეგ ატრიბუტისთვის \"%s\" მნიშვნელობის მისანიჭებლად ელემენტისთვის \"%s\""
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -457,7 +430,7 @@ msgstr ""
"სიმბოლო \"%s\" დაუშვებელია \"</\" შემდეგ; სიმბოლო \"%s\" არ შეიძლება იყოს "
"ელემენტის სახელის დასაწყისში"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -466,25 +439,25 @@ msgstr ""
"სიმბოლო \"%s\" დაუშვებელია ელემენტის \"%s\" დახურვის ჭდის შემდეგ; დასაშვები "
"სიმბოლოა \">\""
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "ელემენტი \"%s\" დაიხურა, არცერთი ელემენტი არაა გახსნილი"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "ელემენტი \"%s\" დაიხურა, მაგრამ გახსნილია ელემენტი \"%s\""
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "დოკუმენტი ცარიელია ან მხოლოდ ხარეებს შეიცავს"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "დოკუმენტი დასრულდა უშუალოდ კუთხოვანი ფრჩხილის \"<\" შემდეგ"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -493,7 +466,7 @@ msgstr ""
"დოკუმენტი მოულოდნელად დასრულდა გახსნილი ელემენტებით - \"%s\" ბოლო გახსნილი "
"ელემენტია"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -501,19 +474,19 @@ msgid ""
msgstr ""
"დოკუმენტი მოულოდნელად დასრულდა, მოსალოდნელია ჩამკეტი კუთხოვანი ფრჩხილი <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "დოკუმენტი მოულოდნელად დასრულდა ელემენტის სახელის შიგნით"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "დოკუმენტი მოულოდნელად დასრულდა ატრიბუტის სახელის შიგნით"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "დოკუმენტი მოულოდნელად დასრულდა ელემენტის გამხსნელი ჭდის შიგნით."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -521,16 +494,16 @@ msgstr ""
"დოკუმენტი მოულოდნელად დასრულდა ატრიბუტის სახელის შემდგომი ტოლობის ნიშნის "
"შემდეგ; ატრიბუტის მნიშვნელობა არ მითითებულა"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "დოკუმენტი მოულოდნელად დასრულდა ატრიბუტის მნიშვნელობის შიგნით"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "დოკუმენტი მოულოდნელად დასრულდა ელემენტის \"%s\" ჩამკეტი ჭდის შიგნით"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"დოკუმენტი მოულოდნელად დასრულდა კომენტარის ან დამუშავების ინსტრუქციის შიგნით"
@ -980,61 +953,61 @@ msgstr "შეტანის ტექსტის გარდაქმნი
msgid "Character out of range for UTF-16"
msgstr "სიმბოლო UTF-16 რანგს გარეთაა"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "გამოყენება:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[ოპცია...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "დახმარების პარამეტრები:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "დახმარების პარამეტრების ჩვენება"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "დახმარების ყველა პარამეტრის ჩვენება"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "პროგრამის პარამეტრები:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "ვერ ვახერხებ მნიშვნელობის წაკითხვას '%s' ელემენტისთვის %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "მთელი მნიშვნელობა '%s' ელემენტისთვის %s რანგს გარეთაა"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "ვერ ვახერხებ მთელ მნიშვნელობის '%s' წაკითხვას %s ელემენტისთვის"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "მთელი მნიშვნელობა '%s' ელემენტისთვის %s რანგს გარეთაა"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "შეცდომის გაანალიზების პარამეტრი: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "არ არსებული არგუმენტი - %s-თვის"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "უცნობი პარამეტრი %s"
@ -1157,8 +1130,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1301,7 +1274,7 @@ msgstr "სიმბოლური ბმების გამოყენე
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1323,15 +1296,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "URI იდენტიფიკატორის \"%s\" მასპინძლის სახელი მცდარია"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1744,55 +1708,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "URI იდენტიფიკატორის \"%s\" მასპინძლის სახელი მცდარია"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "ფაილის \"%s\" წაკითხვის შეცდომა: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1809,16 +1729,12 @@ msgstr "შეცდომა სტრიქონში %d: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "შეცდომის გაანალიზების პარამეტრი: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1857,6 +1773,46 @@ msgstr ""
msgid "[FILE...]"
msgstr "[ოპცია...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "სიმბოლო \"%s\" დაუშვებელია ერთეულის დასაწყისში; ერთეულიიწყება \"&\" "
#~ "სიმბოლოთი; თუ ეს სიმბოლო სიმბოლო ერთეულის ნაწილი უნდა იყოს გამოსახეთ "
#~ "იგი, როგორც &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "სიმბოლო \"%s\" ერთეულის სახელში დაუშვებელია"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr ""
#~ "სიმბოლოს დამოწმება ცარიელია; იგი ნომერს უნდა შეიცავდეს, მაგალითად, &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "ერთეულის დამოწმება არაა დასრულებული"
#~ msgid "Unfinished character reference"
#~ msgstr "სიმბოლოს დამოწმება არაა დასრულებული"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "ტექსტი მიუღებელი UTF-8 კოდირებით - overlong sequence"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "ტექსტი მიუღებელი UTF-8 კოდირებით - not a start char"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "URI იდენტიფიკატორის \"%s\" მასპინძლის სახელი მცდარია"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "URI იდენტიფიკატორის \"%s\" მასპინძლის სახელი მცდარია"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "ფაილის \"%s\" წაკითხვის შეცდომა: %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "შეცდომის გაანალიზების პარამეტრი: %s"

314
po/kn.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib.HEAD.kn\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-26 11:04+0530\n"
"Last-Translator: Shankar Prasad <svenkate@redhat.com>\n"
"Language-Team: Kannada <en@li.org>\n"
@ -300,52 +300,32 @@ msgstr "ಕಡತ '%s' ವನ್ನು ತೆರೆಯಲು ವಿಫಲವಾ
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' ವನ್ನು ನಕ್ಷೆ ಕಡತಮಾಡುವಲ್ಲಿ ವಿಫಲ: mmap() ವಿಫಲಗೊಂಡಿದೆ: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "%d ಸಾಲಿನ %d ಚಿಹ್ನೆಯಲ್ಲಿ ದೋಷ: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "ಅಮಾನ್ಯ UTF-8 ಎನ್ಕೋಡ್ ಆದ ಪಠ್ಯ - ಮಾನ್ಯವಾದ '%s' ಅಲ್ಲ"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "%d ಸಾಲಿನಲ್ಲಿ ದೋಷ: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"ಖಾಲಿ ಘಟಕ '&;' ಕಂಡು ಬಂದಿದೆ; ಮಾನ್ಯ ನಮೂದುಗಳೆಂದರೆ: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"'%s' ವು ಒಂದು ಘಟಕದ ಹೆಸರಿನ ಒಂದು ಆರಂಭದಲ್ಲಿ ಇರುವಂತಿಲ್ಲ; & ಅಕ್ಷರವು ಒಂದು ಘಟಕದ "
"ಆರಂಭದಲ್ಲಿರಬೇಕು ಇದರಿಂದ ಹೊರಬರಲು &amp; ಮಾಡಿ"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "ಒಂದು ಘಟಕದ ಹೆಸರಿನಲ್ಲಿ ಅಕ್ಷರ '%s' ವು ಮಾನ್ಯವಾದುದಲ್ಲ"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "ತಿಳಿದಿಲ್ಲದ ಘಟಕದ ಹೆಸರು '%s'"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"ಘಟಕವು ಒಂದು ಅರ್ಧವಿರಾಮ ಚಿಹ್ನೆಯಿಂದ ಕೊನೆಗೊಂಡಿಲ್ಲ; ಹೆಚ್ಚಿನ ಪಕ್ಷ ನೀವು ಒಂದು ಘಟಕವನ್ನು "
"ಆರಂಭಿಸುವ ಉದ್ದೇಶವಿಲ್ಲದೇ ampersand ಅಕ್ಷರವನ್ನು ಬಳಸಿದ್ದೀರಿ - ampersand ನಿಂದ ಹೊರಬರಲು "
"&amp; ಎಂದು ಮಾಡಿ"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -354,16 +334,7 @@ msgstr ""
"'%-.*s' ಅನ್ನು parse ಮಾಡುವಲ್ಲಿ ವಿಫಲ, ಇದು ಒಂದು ಉಲ್ಲೇಖ ಅಕ್ಷರದ ಒಳಗಿನ ಒಂದು "
"ಅಂಕಿಯಾಗಿರಬೇಕಿತ್ತು(&#234; ಉದಾಹರಣೆಗೆ) - ಬಹುಷಃ ಅಂಕಿಯು ಬಹಳ ದೊಡ್ಡದಾಗಿರಬೇಕು"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "ಅಕ್ಷರ ಉಲ್ಲೇಖ '%-.*s' ವು ಒಂದು ಅನುಮತಿ ಇರುವ ಅಕ್ಷರವನ್ನು encode ಮಾಡುವುದಿಲ್ಲ"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "ಖಾಲಿ ಉಲ್ಲೇಖ ಅಕ್ಷರ; &#454; ನಂತಹ ಅಂಕಿಗಳನ್ನು ಒಳಗೊಂಡಿರಬೇಕು"
#: glib/gmarkup.c:685
#: 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 "
@ -373,32 +344,36 @@ msgstr ""
"ಘಟಕವನ್ನು ಆರಂಭಿಸುವ ಉದ್ದೇಶವಿಲ್ಲದೇ ampersand ಅಕ್ಷರವನ್ನು ಬಳಸಿದ್ದೀರಿ - ampersand ನಿಂದ "
"ಹೊರಬರಲು &amp; ಎಂದು ಮಾಡಿ"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "ಪೂರ್ಣಗೊಳಿಸದ ಘಟಕ ಉಲ್ಲೇಖ"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "ಪೂರ್ಣಗೊಳಿಸದ ಅಕ್ಷರ ಉಲ್ಲೇಖ"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "ಅಮಾನ್ಯ UTF-8 ಎನ್ಕೋಡ್ ಆದ ಪಠ್ಯ - ಬಹಳ ಉದ್ದವಾದ ಅನುಕ್ರಮ"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "ಅಮಾನ್ಯ UTF-8 ಎನ್ಕೋಡ್ ಆದ ಪಠ್ಯ - ಒಂದು ಆರಂಭ char ಅಲ್ಲ"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "ಅಮಾನ್ಯ UTF-8 ಎನ್ಕೋಡ್ ಆದ ಪಠ್ಯ - ಮಾನ್ಯವಾದ '%s' ಅಲ್ಲ"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "ಅಕ್ಷರ ಉಲ್ಲೇಖ '%-.*s' ವು ಒಂದು ಅನುಮತಿ ಇರುವ ಅಕ್ಷರವನ್ನು encode ಮಾಡುವುದಿಲ್ಲ"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"ಖಾಲಿ ಘಟಕ '&;' ಕಂಡು ಬಂದಿದೆ; ಮಾನ್ಯ ನಮೂದುಗಳೆಂದರೆ: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "ತಿಳಿದಿಲ್ಲದ ಘಟಕದ ಹೆಸರು '%s'"
#: 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 &amp;"
msgstr ""
"ಘಟಕವು ಒಂದು ಅರ್ಧವಿರಾಮ ಚಿಹ್ನೆಯಿಂದ ಕೊನೆಗೊಂಡಿಲ್ಲ; ಹೆಚ್ಚಿನ ಪಕ್ಷ ನೀವು ಒಂದು ಘಟಕವನ್ನು "
"ಆರಂಭಿಸುವ ಉದ್ದೇಶವಿಲ್ಲದೇ ampersand ಅಕ್ಷರವನ್ನು ಬಳಸಿದ್ದೀರಿ - ampersand ನಿಂದ ಹೊರಬರಲು "
"&amp; ಎಂದು ಮಾಡಿ"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "ದಸ್ತಾವೇಜುಗಳು ಒಂದು ಅಂಶದಿಂದ ಆರಂಭಗೊಳ್ಳಬೇಕು (e.g. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -407,7 +382,7 @@ msgstr ""
"'<' ಅಕ್ಷರವು ಬಂದ ನಂತರ, '%s' ವು ಒಂದು ಮಾನ್ಯವಲ್ಲದ ಅಕ್ಷರವಾಗಿದೆ; ಅದು ಒಂದು ಅಂಶದ ಹೆಸರನ್ನು "
"ಆರಂಭಿಸದೇ ಇರಬಹುದು"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -416,7 +391,7 @@ msgstr ""
"ಸರಿಯಲ್ಲದ ಅಕ್ಷರ '%s', '%s' ಖಾಲಿ ಅಂಶದ ಟ್ಯಾಗಿನ ಆರಂಭವು ಒಂದು '>' ಅಕ್ಷರದಿಂದ "
"ಕೊನೆಗೊಳ್ಳಬೇಕು ಎಂದು ಅಪೇಕ್ಷಿಸಲಾಗಿತ್ತು"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -424,7 +399,7 @@ msgstr ""
"ಸರಿಯಲ್ಲದ ಅಕ್ಷರ '%s', '%s'ವು '%s' ಅಂಶದ ಗುಣಲಕ್ಷಣ ಹೆಸರಾಗಿದ್ದು ಅದರ ನಂತರ ಒಂದು '=' "
"ಅನ್ನು ಅಪೇಕ್ಷಿಸಲಾಗಿತ್ತು"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -435,7 +410,7 @@ msgstr ""
"ಕೊನೆಗೊಳ್ಳಬೇಕು ಎಂದು ಅಪೇಕ್ಷಿಸಲಾಗಿತ್ತು, ಅಥವ ಆಯ್ಕಾತ್ಮಕವಾಗಿ ಒಂದು ಗುಣಲಕ್ಷಣ; ಬಹುಷಃ ನೀವು "
"ಅಮಾನ್ಯ ಅಕ್ಷರವನ್ನು ಒಂದು ಗುಣಲಕ್ಷಣದ ಹೆಸರಿನಲ್ಲಿ ಬಳಸಿದ್ದೀರೆಂದು ತೋರುತ್ತದೆ"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -444,7 +419,7 @@ msgstr ""
"ಸರಿಯಲ್ಲದ ಅಕ್ಷರ '%s', ಗುಣಲಕ್ಷಣ '%s'ವು '%s' ದ ಅಂಶವಾಗಿದ್ದು, ಇದಕ್ಕೆ ಒಂದು ಮೌಲ್ಯವನ್ನು "
"ಕೊಡುವಾಗ ಸಮ ಚಿಹ್ನೆಯ ನಂತರ ಒಂದು ಮುಕ್ತ ಉದ್ಧರಣ ಚಿಹ್ನೆಯನ್ನು ನಿರೀಕ್ಷಿಸಲಾಗಿತ್ತು"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -453,7 +428,7 @@ msgstr ""
"'%s' ವು '</' ಗಳಂತಹ ಅಕ್ಷರಗಳ ನಂತರ ಬರುವ ಒಂದು ಮಾನ್ಯವಾದ ಅಕ್ಷರವಲ್ಲ; ಒಂದು ಅಂಶದ ಹೆಸರು '%"
"s' ನಿಂದ ಆರಂಭಗೊಳ್ಳುವುದಿಲ್ಲ"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -462,25 +437,25 @@ msgstr ""
"'%s' ವು ಮುಚ್ಚಲ್ಪಟ್ಟ ಅಂಶ ಹೆಸರು '%s' ನಂತರ ಬರುವ ಒಂದು ಮಾನ್ಯವಾದ ಅಕ್ಷರವಲ್ಲ; '>' ವು "
"ಅನುಮತಿ ಇರುವ ಅಕ್ಷರವಾಗಿರುತ್ತದೆ"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "ಅಂಶವು '%s' was closed, no element is currently open"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "ಅಂಶ '%s' ವು ಮುಚ್ಚಲ್ಪಟ್ಟಿದೆ, ಆದರೆ ಪ್ರಸ್ತುತ ಮುಕ್ತವಾಗಿರುವ ಅಂಶವೆಂದರೆ '%s' ಆಗಿದೆ"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "ದಸ್ತಾವೇಜು ಖಾಲಿಯಾಗಿತ್ತು ಅಥವ ಕೇವಲ ಕೇವಲ ಖಾಲಿ ಜಾಗಗಳನ್ನು ಹೊಂದಿತ್ತು"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಮುಕ್ತ ಕೋನ ಆವರಣ ಚಿಹ್ನೆ '<' ಯ ನಂತರ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -489,7 +464,7 @@ msgstr ""
"ಅಂಶಗಳು ತೆರೆದಿರುವಾಗಲೇ ದಸ್ತಾವೇಜು ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ - '%s' ಯು ತೆರೆಯಲ್ಪಟ್ಟ "
"ಕೊನೆಯ ಅಂಶ"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -498,19 +473,19 @@ msgstr ""
"ದಸ್ತಾವೇಜು ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ, <%s/> ಟ್ಯಾಗಿನ ಕೊನೆಯಲ್ಲಿ ಒಂದು ಮುಕ್ತ ಕೋನ ಆವರಣ "
"ಚಿಹ್ನೆಯನ್ನು ಕಾಣಲು ಅಪೇಕ್ಷಿಸಲಾಗಿತ್ತು"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಅಂಶದ ಹೆಸರಿನಲ್ಲಿ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಗುಣಲಕ್ಷಣ ಹೆಸರಿನಲ್ಲಿ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಅಂಶ ತೆರೆಯುವ ಟ್ಯಾಗಿನ ಒಳಗೆ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -518,16 +493,16 @@ msgstr ""
"ದಸ್ತಾವೇಜು ಒಂದು ಗುಣಲಕ್ಷಣದ ಹೆಸರಿನ ನಂತರದ ಸಮ ಚಿಹ್ನೆಯ ನಂತರ ಅನಿರೀಕ್ಷಿತವಾಗಿ "
"ಕೊನೆಗೊಂಡಿದೆ; ಯಾವುದೇ ಗುಣಲಕ್ಷಣ ಮೌಲ್ಯವಿಲ್ಲ"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಗುಣಲಕ್ಷಣ ಮೌಲ್ಯದ ಒಳಗಿರುವಾಗ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಅಂಶ'%s'ದ ಮುಚ್ಚಲ್ಪಟ್ಟ ಟ್ಯಾಗಿನ ಒಳಗೆ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಹೇಳಿಕೆ ಅಥವ ಪ್ರಕ್ರಿಯೆ ಸೂಚನೆಯ ಒಳಗೆ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
@ -968,61 +943,61 @@ msgstr "ಆದಾನ ಪರಿವರ್ತನೆಯಲ್ಲಿ ಅಮಾನ್
msgid "Character out of range for UTF-16"
msgstr "ಅಕ್ಷರವು UTF-16 ನ ವ್ಯಾಪ್ತಿ ಇಂದ ಹೊರಗಿದೆ"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "ಬಳಕೆ:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "ಸಹಾಯ ಆಯ್ಕೆಗಳು:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "ಸಹಾಯ ಆಯ್ಕೆಯನ್ನು ತೋರಿಸು"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "ಎಲ್ಲಾ ಸಹಾಯ ಅಂಶಪಟ್ಟಿಯನ್ನು ತೋರಿಸು"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "ಅನ್ವಯದ ಆಯ್ಕೆಗಳು:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr " for %s ಕ್ಕಾಗಿನ ಪೂರ್ಣಾಂಕ ಮೌಲ್ಯ '%s' ಅನ್ನು ಶಬ್ಧಲಕ್ಷಣ ಹೇಳಲಾಗಿಲ್ಲ"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "%s ಕ್ಕಾಗಿನ ಪೂರ್ಣಾಂಕ ಮೌಲ್ಯ '%s' ವು ವ್ಯಾಪ್ತಿಯಿಂದ ಹೊರಗಿದೆ"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "'%s' ದ %s ಕ್ಕಾಗಿನ ದ್ವಿಮೌಲ್ಯವನ್ನು parse ಮಾಡಲಾಗಿಲ್ಲ"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "%s ಕ್ಕಾಗಿನ '%s' ದ್ವಿ ಮೌಲ್ಯವು ವ್ಯಾಪ್ತಿಯಿಂದ ಹೊರಗಿದೆ"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "%s ಆಯ್ಕೆಯ ಶಬ್ಧಲಕ್ಷಣವನ್ನು ಹೇಳುವಾಗ ದೋಷ"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s ಗೆ ಆರ್ಗ್ಯುಮೆಂಟ್ ಕಾಣುತ್ತಿಲ್ಲ"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "ಗೊತ್ತಿರದ ಆಯ್ಕೆ %s"
@ -1143,8 +1118,8 @@ msgstr "%s ಗೆ ಬಹಳ ದೊಡ್ಡದಾದ ಎಣಿಕೆ ಮೌಲ
msgid "Stream is already closed"
msgstr "ಸ್ಟ್ರೀಮ್ ಈಗಾಗಲೆ ಮುಚ್ಚಲ್ಪಟ್ಟಿದೆ"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "ಕಾರ್ಯವು ರದ್ದುಗೊಂಡಿದೆ"
@ -1284,7 +1259,7 @@ msgstr "ಟ್ರ್ಯಾಶ್ ಬೆಂಬಲಿತವಾಗಿಲ್ಲ"
msgid "File names cannot contain '%c'"
msgstr "ಕಡತದ ಹೆಸರುಗಳು '%c' ಅನ್ನು ಹೊಂದುವಂತಿಲ್ಲ"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "ಪರಿಮಾಣವು ಆರೋಹಿಸುವುದನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ"
@ -1305,14 +1280,6 @@ msgstr "ಕಡತ ಎನ್ಯುಮರೇಟರಿನಲ್ಲಿ ಕಾರ್
msgid "File enumerator is already closed"
msgstr "ಕಡತ ಎನ್ಯುಮರೇಟರ್ ಈಗಾಗಲೆ ಮುಚ್ಚಲ್ಪಟ್ಟಿದೆ"
#: gio/gfileicon.c:145
msgid "file"
msgstr "ಕಡತ"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "ಕಡತವು ಒಂದು ಚಿಹ್ನೆಯನ್ನು ಹೊಂದಿದೆ"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1721,56 +1688,11 @@ msgstr "ಪ್ರದಾನ ಸ್ಟ್ರೀಮ್ ಬರೆಯುವುದನ
msgid "Source stream is already closed"
msgstr "ಮೂಲ ಸ್ಟ್ರೀಮ್ ಈಗಾಗಲೆ ಮುಚ್ಚಲ್ಪಟ್ಟಿದೆ"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "ಹೆಸರು"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "ಚಿಹ್ನೆಯ ಹೆಸರು"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "ಹೆಸರುಗಳು"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "ಚಿಹ್ನೆಯ ಹೆಸರುಗಳನ್ನು ಹೊಂದಿರುವ ವ್ಯೂಹ"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "ಪೂರ್ವನಿಯೋಜಿತ ಹಿಮ್ಮರಳಿಕೆಯನ್ನು ಬಳಸು"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"'-' ಅಕ್ಷರಗಳಲ್ಲಿನ ಹೆಸರುಗಳನ್ನು ಸಂಕ್ಷಿಪ್ತಗೊಳಿಸುವುದರಿಂದ ದೊರೆಯುವ ಪೂರ್ವನಿಯೋಜಿತ "
"ಹಿಮ್ಮರಳಿಕೆಯನ್ನು ಬಳಸಬೇಕೆ. ಅನೇಕ ಹೆಸರುಗಳನ್ನು ಒದಗಿಸಿದ್ದಲ್ಲಿ, ಮೊದಲನೆಯದರ ನಂತರ "
"ಉಳಿದವುಗಳನ್ನು ಆಲಕ್ಷಿಸಲಾಗುತ್ತದೆ."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "GThemedIcon ಎನ್ಕೋಡಿಂಗ್‌ನ ಆವೃತ್ತಿ %d ಅನ್ನು ನಿಭಾಯಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "ಕಡತದ ವಿವರಣೆಗಾರ"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "ಓದಬೇಕಿರುವ ಕಡತದ ವಿವರಣೆಗಾರ"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "ಕಡತ ವಿವರಣೆಗಾರನನ್ನು ಮುಚ್ಚು"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "ಸ್ಟ್ರೀಮನ್ನು ಮುಚ್ಚಿದಾಗ ಕಡತದ ವಿವರಣೆಗಾರನನ್ನು ಮುಚ್ಚಬೇಕೆ"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1787,16 +1709,12 @@ msgstr "ಯುನಿಕ್ಸ್ ಅನ್ನು ಮುಚ್ಚುವಲ್ಲ
msgid "Filesystem root"
msgstr "ಕಡತವ್ಯವಸ್ಥೆ ಮೂಲ"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "ಬರೆಯಬೇಕಿರುವ ಕಡತದ ವಿವರಣೆಗಾರ"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "ಯುನಿಕ್ಸ್‍ಗೆ ಬರೆಯುವಲ್ಲೆ ದೋಷ: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "ಪರಿಮಾಣವು ಹೊರ ತಳ್ಳುವುದನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ"
@ -1832,3 +1750,73 @@ msgstr "ದೊಡ್ಡದಾದ ಪಟ್ಟಿಯ ನಮೂನೆಯನ್ನ
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[FILE...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "'%s' ವು ಒಂದು ಘಟಕದ ಹೆಸರಿನ ಒಂದು ಆರಂಭದಲ್ಲಿ ಇರುವಂತಿಲ್ಲ; & ಅಕ್ಷರವು ಒಂದು ಘಟಕದ "
#~ "ಆರಂಭದಲ್ಲಿರಬೇಕು ಇದರಿಂದ ಹೊರಬರಲು &amp; ಮಾಡಿ"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "ಒಂದು ಘಟಕದ ಹೆಸರಿನಲ್ಲಿ ಅಕ್ಷರ '%s' ವು ಮಾನ್ಯವಾದುದಲ್ಲ"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "ಖಾಲಿ ಉಲ್ಲೇಖ ಅಕ್ಷರ; &#454; ನಂತಹ ಅಂಕಿಗಳನ್ನು ಒಳಗೊಂಡಿರಬೇಕು"
#~ msgid "Unfinished entity reference"
#~ msgstr "ಪೂರ್ಣಗೊಳಿಸದ ಘಟಕ ಉಲ್ಲೇಖ"
#~ msgid "Unfinished character reference"
#~ msgstr "ಪೂರ್ಣಗೊಳಿಸದ ಅಕ್ಷರ ಉಲ್ಲೇಖ"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "ಅಮಾನ್ಯ UTF-8 ಎನ್ಕೋಡ್ ಆದ ಪಠ್ಯ - ಬಹಳ ಉದ್ದವಾದ ಅನುಕ್ರಮ"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "ಅಮಾನ್ಯ UTF-8 ಎನ್ಕೋಡ್ ಆದ ಪಠ್ಯ - ಒಂದು ಆರಂಭ char ಅಲ್ಲ"
#~ msgid "file"
#~ msgstr "ಕಡತ"
#~ msgid "The file containing the icon"
#~ msgstr "ಕಡತವು ಒಂದು ಚಿಹ್ನೆಯನ್ನು ಹೊಂದಿದೆ"
#~ msgid "name"
#~ msgstr "ಹೆಸರು"
#~ msgid "The name of the icon"
#~ msgstr "ಚಿಹ್ನೆಯ ಹೆಸರು"
#~ msgid "names"
#~ msgstr "ಹೆಸರುಗಳು"
#~ msgid "An array containing the icon names"
#~ msgstr "ಚಿಹ್ನೆಯ ಹೆಸರುಗಳನ್ನು ಹೊಂದಿರುವ ವ್ಯೂಹ"
#~ msgid "use default fallbacks"
#~ msgstr "ಪೂರ್ವನಿಯೋಜಿತ ಹಿಮ್ಮರಳಿಕೆಯನ್ನು ಬಳಸು"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "'-' ಅಕ್ಷರಗಳಲ್ಲಿನ ಹೆಸರುಗಳನ್ನು ಸಂಕ್ಷಿಪ್ತಗೊಳಿಸುವುದರಿಂದ ದೊರೆಯುವ ಪೂರ್ವನಿಯೋಜಿತ "
#~ "ಹಿಮ್ಮರಳಿಕೆಯನ್ನು ಬಳಸಬೇಕೆ. ಅನೇಕ ಹೆಸರುಗಳನ್ನು ಒದಗಿಸಿದ್ದಲ್ಲಿ, ಮೊದಲನೆಯದರ ನಂತರ "
#~ "ಉಳಿದವುಗಳನ್ನು ಆಲಕ್ಷಿಸಲಾಗುತ್ತದೆ."
#~ msgid "File descriptor"
#~ msgstr "ಕಡತದ ವಿವರಣೆಗಾರ"
#~ msgid "The file descriptor to read from"
#~ msgstr "ಓದಬೇಕಿರುವ ಕಡತದ ವಿವರಣೆಗಾರ"
#~ msgid "Close file descriptor"
#~ msgstr "ಕಡತ ವಿವರಣೆಗಾರನನ್ನು ಮುಚ್ಚು"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "ಸ್ಟ್ರೀಮನ್ನು ಮುಚ್ಚಿದಾಗ ಕಡತದ ವಿವರಣೆಗಾರನನ್ನು ಮುಚ್ಚಬೇಕೆ"
#~ msgid "The file descriptor to write to"
#~ msgstr "ಬರೆಯಬೇಕಿರುವ ಕಡತದ ವಿವರಣೆಗಾರ"

320
po/ko.po
View File

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-02-26 15:45+0900\n"
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
"Language-Team: GNOME Korea <gnome-kr-hackers@lists.kldp.net>\n"
@ -299,56 +299,32 @@ msgstr "파일 '%s' 열기 실패: dopen() 실패: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "파일 '%s' 매핑 실패: mmap() 실패: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "%d째 줄 %d 문자에서 오류: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "잘못된 UTF-8 인코딩된 텍스트 - '%s' 부분이 올바르지 않습니다"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "%d째 줄에서 오류: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"비어있는 엔티티 '&;'를 찾았습니다; 올바른 엔티티는 : &amp; &quot; &lt; &gt; "
"&apos; 입니다"
# FIXME: "escape"라는 동사를 번역?
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"'%s' 문자는 엔티티 이름의 시작에 쓸 수 없는 문자입니다. 엔티티는 & 문자로 시"
"작합니다. 이 & 기호가 엔티티에 사용되는 것이 아닌 경우에는, &amp; 라고 쓰십"
"시오"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "문자 '%s'은(는) 엔티티 이름에서 올바르지 않습니다"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "엔티티 이름 '%s'이(가) 알려져 있지 않습니다"
# FIXME: "escape"라는 동사를 번역?
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"엔티티가 세미콜론으로 끝나지 않습니다; 대부분의 경우 엔티티 시작에 사용하려"
"고 하지 않은 곳에서 & 기호를 사용한 경우일 것입니다 - 이런 경우 &amp; 라고쓰"
"십시오"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -357,16 +333,7 @@ msgstr ""
"'%-.*s'의 구문 해석에 실패했습니다. 문자 참조에는 숫자를 써야 합니다 (예를 "
"들어 &#234;) - 숫자가 너무 클 수도 있습니다"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "문자 참조 '%-*s'에 대응되는 문자는 허용되지 않습니다"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "문자 참조가 비어 있습니다; &#454;처럼 숫자를 써야 합니다"
#: glib/gmarkup.c:685
#: 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 "
@ -376,32 +343,38 @@ msgstr ""
"려고 하지 않은 곳에서 & 기호를 사용한 경우일 것입니다 - 이런 경우 &amp; 라고"
"쓰십시오"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "엔티티 참조가 미완성입니다"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "문자 참조가 미완성입니다"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "잘못된 UTF-8 인코딩된 텍스트 - 너무 시퀀스가 깁니다"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "잘못된 UTF-8 인코딩된 텍스트 - 시작 문자가 아닙니다"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "잘못된 UTF-8 인코딩된 텍스트 - '%s' 부분이 올바르지 않습니다"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "문자 참조 '%-*s'에 대응되는 문자는 허용되지 않습니다"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"비어있는 엔티티 '&;'를 찾았습니다; 올바른 엔티티는 : &amp; &quot; &lt; &gt; "
"&apos; 입니다"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "엔티티 이름 '%s'이(가) 알려져 있지 않습니다"
# FIXME: "escape"라는 동사를 번역?
#: 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 &amp;"
msgstr ""
"엔티티가 세미콜론으로 끝나지 않습니다; 대부분의 경우 엔티티 시작에 사용하려"
"고 하지 않은 곳에서 & 기호를 사용한 경우일 것입니다 - 이런 경우 &amp; 라고쓰"
"십시오"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "문서는 엘리먼트로 시작하여야 합니다 (예 <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -410,7 +383,7 @@ msgstr ""
"'%s'은(는) '<' 문자 다음에 쓸 수 없습니다; 이 문자로는 엘리먼트 이름을 시작"
"할 수 없습니다"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -418,7 +391,7 @@ msgid ""
msgstr ""
"이상한 문자 '%s'. 빈 엘리먼트 '%s' 태그를 끝내는 '>' 문자가 나타나야 합니다"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -426,7 +399,7 @@ msgstr ""
"이상한 문자 '%1$s'. 엘리먼트 '%3$s'의 애트리뷰트 이름 '%2$s' 다음에 '='이 나"
"타나야 합니다"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -437,7 +410,7 @@ msgstr ""
"나, 애트리뷰트가 나와야 합니다; 아마도 애트리뷰트 이름에 잘못된 문자를 쓴 경"
"우일 것입니다"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -446,7 +419,7 @@ msgstr ""
"이상한 문자 '%1$s'. 엘리먼트 '%3$s'의 애트리뷰트 '%2$s'의 값을 부여할 때 = "
"기호 다음에 따옴표가 나타나야 합니다"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -455,7 +428,7 @@ msgstr ""
"'%s'은(는) '</' 다음에 쓸 수 있는 문자가 아닙니다; '%s'은(는) 엘리먼트 이름"
"을 시작할 수 없습니다"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -464,25 +437,25 @@ msgstr ""
"'%s'은(는) 엘리먼트 '%s'을(를) 닫은 다음에 쓸 수 있는 문자가 아닙니다; '>' 문"
"자를 쓸 수 있습니다"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "'%s' 엘리먼트는 닫혔고, 현재 아무 엘리먼트도 열려 있지 않습니다"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "'%s' 엘리먼트는 닫혔고, 현재 열려 있는 엘리먼트는 '%s'입니다"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "문서가 비어있거나 공백문자만 들어 있습니다"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "'<' 바로 다음에 문서가 갑작스럽게 끝났습니다"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -491,7 +464,7 @@ msgstr ""
"엘리먼트가 열려 있는 상태로 문서가 갑작스럽게 끝났습니다 - 마지막에 열려 있"
"던 엘리먼트는 '%s'입니다"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -499,19 +472,19 @@ msgid ""
msgstr ""
"문서가 갑작스럽게 끝났습니다. <%s/> 태그를 끝내는 > 기호가 나타나야 합니다"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "엘리먼트 이름에서 문서가 갑작스럽게 끝났습니다"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "에트리뷰트 이름에서 문서가 갑작스럽게 끝났습니다"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "엘리먼트의 열기 태그 안에서 문서가 갑작스럽게 끝났습니다."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -519,17 +492,17 @@ msgstr ""
"애트리뷰트 이름 다음의 = 기호 다음에서 문서가 갑작스럽게 끝났습니다; 애트리뷰"
"트 값이 없습니다"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "애트리뷰트 값 안에서 문서가 갑작스럽게 끝났습니다"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "엘리먼트 '%s'의 닫기 태그 안에서 문서가 갑작스럽게 끝났습니다"
# FIXME: processing instruction?
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "주석문 혹은 처리 안내자 태그 안에서 문서가 갑작스럽게 끝났습니다"
@ -976,61 +949,61 @@ msgstr "변환 입력에서 잘못된 순서"
msgid "Character out of range for UTF-16"
msgstr "UTF-16 범위 밖의 문자"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "사용법:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[옵션...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "도움말 옵션:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "도움말 옵션을 봅니다"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "모든 도움말 옵션을 봅니다"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "프로그램 옵션:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "%2$s에 대한 정수 값 '%1$s'을(를) 분석할 수 없습니다"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "%2$s에 대한 정수 값 '%1$s'이(가) 범위를 벗어났습니다"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "%2$s에 대한 배정도 실수 값 '%1$s'을(를) 분석할 수 없습니다"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "%2$s에 대한 배정도 실수 값 '%1$s'이(가) 범위를 벗어났습니다"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "옵션 읽는 중에 오류: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s에 대한 인자가 빠졌습니다"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "알 수 없는 옵션 %s"
@ -1149,8 +1122,8 @@ msgstr "%s에 넘긴 카운트 값이 너무 큽니다"
msgid "Stream is already closed"
msgstr "스트림을 이미 닫았습니다"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "동작이 취소되었습니다"
@ -1290,7 +1263,7 @@ msgstr "휴지통을 지원하지 않습니다"
msgid "File names cannot contain '%c'"
msgstr "파일 이름에 '%c' 문자가 들어갈 수 없습니다"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "볼륨이 mount를 구현하지 않았습니다"
@ -1311,14 +1284,6 @@ msgstr "파일 이뉴머레이터에 진행 중인 동작이 있습니다"
msgid "File enumerator is already closed"
msgstr "파일 이뉴머레이터를 이미 닫았습니다"
#: gio/gfileicon.c:145
msgid "file"
msgstr "파일"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "아이콘이 들어 있는 파일"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1727,55 +1692,11 @@ msgstr "출력 스트림이 write를 구현하지 않았습니다"
msgid "Source stream is already closed"
msgstr "원본 스트림을 이미 닫았습니다"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "이름"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "아이콘의 이름"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "이름 목록"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "아이콘 이름이 들어 있는 배열"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "기본값 대체 사용"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"이름의 '-' 문자로 줄인 기본값 대체 이름을 사용할 지 여부. 이름이 여러 개 주어"
"진 경우, 처음 나오는 처음 이름 다음은 무시합니다."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "GThemedIcon 인코딩의 %d 버전을 처리할 수 없습니다"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "파일 디스크립터"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "데이터를 읽을 파일 디스크립터"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "파일 디스크립터 닫기"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "스트림을 닫을 때 파일 디스크립터를 닫을 지 여부"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1792,16 +1713,12 @@ msgstr "유닉스 소켓을 닫는 중 오류: %s"
msgid "Filesystem root"
msgstr "파일 시스템 루트"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "데이터를 쓸 파일 디스크립터"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "유닉스 소켓에 쓰는 중 오류: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "볼륨이 eject를 구현하지 않았습니다"
@ -1838,6 +1755,77 @@ msgstr "긴 목록 형식을 사용합니다"
msgid "[FILE...]"
msgstr "[파일...]"
# FIXME: "escape"라는 동사를 번역?
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "'%s' 문자는 엔티티 이름의 시작에 쓸 수 없는 문자입니다. 엔티티는 & 문자"
#~ "로 시작합니다. 이 & 기호가 엔티티에 사용되는 것이 아닌 경우에는, &amp; 라"
#~ "고 쓰십시오"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "문자 '%s'은(는) 엔티티 이름에서 올바르지 않습니다"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "문자 참조가 비어 있습니다; &#454;처럼 숫자를 써야 합니다"
#~ msgid "Unfinished entity reference"
#~ msgstr "엔티티 참조가 미완성입니다"
#~ msgid "Unfinished character reference"
#~ msgstr "문자 참조가 미완성입니다"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "잘못된 UTF-8 인코딩된 텍스트 - 너무 시퀀스가 깁니다"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "잘못된 UTF-8 인코딩된 텍스트 - 시작 문자가 아닙니다"
#~ msgid "file"
#~ msgstr "파일"
#~ msgid "The file containing the icon"
#~ msgstr "아이콘이 들어 있는 파일"
#~ msgid "name"
#~ msgstr "이름"
#~ msgid "The name of the icon"
#~ msgstr "아이콘의 이름"
#~ msgid "names"
#~ msgstr "이름 목록"
#~ msgid "An array containing the icon names"
#~ msgstr "아이콘 이름이 들어 있는 배열"
#~ msgid "use default fallbacks"
#~ msgstr "기본값 대체 사용"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "이름의 '-' 문자로 줄인 기본값 대체 이름을 사용할 지 여부. 이름이 여러 개 "
#~ "주어진 경우, 처음 나오는 처음 이름 다음은 무시합니다."
#~ msgid "File descriptor"
#~ msgstr "파일 디스크립터"
#~ msgid "The file descriptor to read from"
#~ msgstr "데이터를 읽을 파일 디스크립터"
#~ msgid "Close file descriptor"
#~ msgstr "파일 디스크립터 닫기"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "스트림을 닫을 때 파일 디스크립터를 닫을 지 여부"
#~ msgid "The file descriptor to write to"
#~ msgstr "데이터를 쓸 파일 디스크립터"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u 바이트"

234
po/ku.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib.glib-2-8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -297,114 +297,91 @@ msgstr ""
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr ""
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Di rêza %d tîpa %d de çewtî: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr ""
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Di rêza %d de çewtî: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr ""
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr ""
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (&#234; for example) - perhaps the digit is too large"
msgstr ""
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr ""
#: glib/gmarkup.c:685
#: 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 &amp;"
msgstr ""
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr ""
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr ""
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr ""
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr ""
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
#: glib/gmarkup.c:662
#, c-format
msgid "Entity name '%-.*s' is not known"
msgstr ""
#: 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 &amp;"
msgstr ""
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr ""
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr ""
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr ""
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -412,87 +389,87 @@ msgid ""
"character in an attribute name"
msgstr ""
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, 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 ""
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
msgstr ""
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
msgstr ""
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr ""
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr ""
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr ""
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr ""
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr ""
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
@ -927,61 +904,61 @@ msgstr ""
msgid "Character out of range for UTF-16"
msgstr ""
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Bikaranîn:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr ""
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr ""
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr ""
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr ""
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Vebijêrkên Sepanê:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr ""
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr ""
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr ""
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Vebijêrka nenas %s"
@ -1098,8 +1075,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1240,7 +1217,7 @@ msgstr ""
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1261,14 +1238,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr ""
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1679,54 +1648,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr ""
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Di xwendina dosyeya '%s' de çewtî: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1743,16 +1669,12 @@ msgstr "Di rêza %d de çewtî: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Di xwendina dosyeya '%s' de çewtî: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1789,6 +1711,10 @@ msgstr ""
msgid "[FILE...]"
msgstr ""
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Di xwendina dosyeya '%s' de çewtî: %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Di xwendina dosyeya '%s' de çewtî: %s"

316
po/lt.po
View File

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: lt\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-26 15:52+0200\n"
"Last-Translator: Vytautas Rėkus <v.rekus@gmail.com>\n"
"Language-Team: Lithuanian <gnome-lt@lists.akl.lt>\n"
@ -302,53 +302,32 @@ msgstr "Nepavyko atverti failo „%s“: open() klaida: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Nepavyko rasti failo „%s“: mmap() klaida: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Klaida eilutėje %d simbolyje %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Klaidingai koduotas UTF-8 tekstas netinkamas „%s“"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Klaida eilutėje %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Aptiktas tuščias elementas '&;'; galimi elementai yra: &amp; &quot; &lt; "
"&gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Simbolis „%s“ nepriimtinas elemento vardo pradžioje; & simbolis pradeda "
"elemento įvedimą; jei šis ampersendas nėra elemento pradžia, apeikite jį su "
"&amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Simbolis „%s“ nepriimtinas elemento varde"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Nežinomas elemento vardas „%s“"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Elementas nepasibaigė kabliataškiu; greičiausiai Jūs panaudojote ampersendo "
"simbolį nepradėdami elemento įvedimo - apeikite ampersendą įvesdami &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -357,16 +336,7 @@ msgstr ""
"Nepavyko apdoroti „%-.*s“, kuris galėjo turėti skaičius simbolio aprašyme "
"(pvz. &#234;) - gal skaičius per didelis"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Simbolio aprašymas „%-.*s“ neatitinka leistinus simbolius"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Tuščias simbolio aprašymas; ten turėtų būti skaičiai, pvz. &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -376,32 +346,36 @@ msgstr ""
"ampersendo simbolį nepradėdami elemento įvedimo - apeikite ampersendą "
"įvesdami &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Nebaigtas elemento aprašymas"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Nebaigtas simbolio aprašymas"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Klaidingai koduotas UTF-8 tekstas per ilga seka"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Klaidingai koduotas UTF-8 tekstas ne pradžios simbolis"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Klaidingai koduotas UTF-8 tekstas netinkamas „%s“"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Simbolio aprašymas „%-.*s“ neatitinka leistinus simbolius"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Aptiktas tuščias elementas '&;'; galimi elementai yra: &amp; &quot; &lt; "
"&gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Nežinomas elemento vardas „%s“"
#: 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 &amp;"
msgstr ""
"Elementas nepasibaigė kabliataškiu; greičiausiai Jūs panaudojote ampersendo "
"simbolį nepradėdami elemento įvedimo - apeikite ampersendą įvesdami &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumentas turėtų prasidėti elementu (pvz. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -409,7 +383,7 @@ msgid ""
msgstr ""
"„%s“ negali būti rašomas po „<“ simbolio; jis nepradeda jokio elemento vardo"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -418,7 +392,7 @@ msgstr ""
"Neįprastas simbolis „%s“, tikėtasi sulaukti „>“ simbolio, užbaigiančio "
"tuščią elementą „%s“"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -426,7 +400,7 @@ msgstr ""
"Neįprastas simbolis „%1$s“, tikėtasi sulaukti „=“ po elemento „%3$s“ požymio "
"vardo „%2$s“"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -437,7 +411,7 @@ msgstr ""
"užbaigiančių elementą „%s“, arba papildomo požymio; gal Jūs panaudojote "
"netinkama simbolį požymio varde"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -446,7 +420,7 @@ msgstr ""
"Neįprastas simbolis „%1$s“, po lygybės tikėtasi sulaukti atidarančio "
"citavimo simbolio pradedant „%3$s“ elemento „%2$s“ požymio reikšmę"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -455,7 +429,7 @@ msgstr ""
"„%s“ negali būti rašomas po simbolių „</“; „%s“ negali būti kokio nors "
"elemento vardu"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -464,29 +438,29 @@ msgstr ""
"„%s“ negali būti rašomas po uždarančio elemento vardo „%s“; leistinas "
"simbolis yra „>“"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
"Elemento „%s“ uždarymo simbolis sutiktas anksčiau už elemento atidarymo "
"simbolį"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
"Sutiktas elemento „%s“ uždarymo simbolis, tačiau šiuo metu atidarytas kitas "
"elementas „%s“"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Dokumentas tuščias arba susideda tik iš tarpų"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokumentas netikėtai pasibaigė tuoj po atidarančių skliaustų '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -495,7 +469,7 @@ msgstr ""
"Dokumentas netikėtai pasibaigė neuždarius dalies elementų - „%s“ yra "
"paskutinis atviras elementas"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -504,19 +478,19 @@ msgstr ""
"Dokumentas netikėtai pasibaigė, nesulaukta uždarančių skliaustų simbolio <%s/"
">"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumentas netikėtai pasibaigė elemento varde"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokumentas netikėtai pasibaigė požymio varde"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokumentas netikėtai pasibaigė elemento atvėrimo žyme."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -524,16 +498,16 @@ msgstr ""
"Dokumentas netikėtai pasibaigė lygybės simboliu einančio po požymio vardo; "
"nerasta požymio reikšmė"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokumentas netikėtai pasibaigė požymio verte"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Dokumentas netikėtai pasibaigė elemento „%s“ uždarančiame simbolyje"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokumentas netikėtai pasibaigė komentaruose arba apdorojimo instrukcijose"
@ -980,61 +954,61 @@ msgstr "Klaidinga seka keitimo įvestyje"
msgid "Character out of range for UTF-16"
msgstr "Simbolis neatitinka UTF-16 simbolių diapazono"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Naudojimas:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[PARINKTIS...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Pagalbos parinktys:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Rodyti pagalbos parinktis"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Rodyti visas pagalbos parinktis"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Programos parinktys:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Nepavyko apdoroti sveikosios reikšmės „%s“, reikalingos %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Sveikoji reikšmė „%s“, reikalinga %s, viršija ribas"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Nepavyko apdoroti dvigubos reikšmės „%s“, reikalingos %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Dviguboji reikšmė „%s“, reikalinga %s, viršija ribas"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Klaida apdorojant parinktį %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s trūksta argumento"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Nežinoma parinktis %s"
@ -1157,8 +1131,8 @@ msgstr "Per didelė skaičiavimo reikšmė perduota %s"
msgid "Stream is already closed"
msgstr "Srautas jau užvertas"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Operacija nutraukta"
@ -1298,7 +1272,7 @@ msgstr "Šiukšlės nepalaikomos"
msgid "File names cannot contain '%c'"
msgstr "Failų varduose negali būti '%c'"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "skirsnis nepalaiko prijungimo"
@ -1319,14 +1293,6 @@ msgstr "Failų enumeratoriui liko neatlikta operacija"
msgid "File enumerator is already closed"
msgstr "Failų enumeratorius jau užvertas"
#: gio/gfileicon.c:145
msgid "file"
msgstr "failas"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "Failas, kuriame yra piktograma"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1735,56 +1701,11 @@ msgstr "Išvedimo srautas nepalaiko rašymo"
msgid "Source stream is already closed"
msgstr "Šaltinio srautas jau užvertas"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "pavadinimas"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Piktogramos pavadinimas"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "pavadinimai"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Masyvas iš piktogramų pavadinimų"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "naudoti numatytuosius atsarginius variantus"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Ar naudoti numatytuosius atsarginius variantus, rastus sutrumpinant "
"pavadinimą ties „-“ simboliais. Pavadinimai po pirmojo, jei duoti keli, "
"ignoruojami."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Nepavyko apdoroti GThemedIcon koduotės versijos %d"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Failo deskriptorius"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "Failo deskriptorius skaitymui"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Užverti failo deskriptorių"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "Ar užverti failo deskriptorių užvėrus srautą"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1801,16 +1722,12 @@ msgstr "Klaida užveriant unix: %s"
msgid "Filesystem root"
msgstr "Failų sistemos šaknis"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "Failo deskriptorius rašymui"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Klaida rašant į unix: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "skirsnis nerealizuoja išstūmimo"
@ -1847,6 +1764,77 @@ msgstr "naudoti išsamų sąrašo formatą"
msgid "[FILE...]"
msgstr "[FAILAS...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Simbolis „%s“ nepriimtinas elemento vardo pradžioje; & simbolis pradeda "
#~ "elemento įvedimą; jei šis ampersendas nėra elemento pradžia, apeikite jį "
#~ "su &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Simbolis „%s“ nepriimtinas elemento varde"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Tuščias simbolio aprašymas; ten turėtų būti skaičiai, pvz. &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Nebaigtas elemento aprašymas"
#~ msgid "Unfinished character reference"
#~ msgstr "Nebaigtas simbolio aprašymas"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Klaidingai koduotas UTF-8 tekstas per ilga seka"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Klaidingai koduotas UTF-8 tekstas ne pradžios simbolis"
#~ msgid "file"
#~ msgstr "failas"
#~ msgid "The file containing the icon"
#~ msgstr "Failas, kuriame yra piktograma"
#~ msgid "name"
#~ msgstr "pavadinimas"
#~ msgid "The name of the icon"
#~ msgstr "Piktogramos pavadinimas"
#~ msgid "names"
#~ msgstr "pavadinimai"
#~ msgid "An array containing the icon names"
#~ msgstr "Masyvas iš piktogramų pavadinimų"
#~ msgid "use default fallbacks"
#~ msgstr "naudoti numatytuosius atsarginius variantus"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Ar naudoti numatytuosius atsarginius variantus, rastus sutrumpinant "
#~ "pavadinimą ties „-“ simboliais. Pavadinimai po pirmojo, jei duoti keli, "
#~ "ignoruojami."
#~ msgid "File descriptor"
#~ msgstr "Failo deskriptorius"
#~ msgid "The file descriptor to read from"
#~ msgstr "Failo deskriptorius skaitymui"
#~ msgid "Close file descriptor"
#~ msgstr "Užverti failo deskriptorių"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "Ar užverti failo deskriptorių užvėrus srautą"
#~ msgid "The file descriptor to write to"
#~ msgstr "Failo deskriptorius rašymui"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u baitas"

288
po/lv.po
View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -296,53 +296,32 @@ msgstr "Nevarēju atvērt '%s': fdopen() neizdevās: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Nevarēju atvērt '%s': fdopen() neizdevās: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Kļūda rindā %d rakstzīme %d: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Nepareizi kodēts UTF-8 teksts"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Kļūda rindā %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Pamanīta tukša entītija '&;'; derīgas entītijas ir: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Rakstzīme '%s' nav derīga entītijas nosaukuma sākumā; rakstzīme & sāk "
"entītiju; ja šī zīme netiek atbalstīta, lai būtu entītija, aizvieto to ar "
"&amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Rakstzīme '%s' nav derīga entītijas nosaukumā"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entītijas nosaukums \"%s\" nav zināms"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entītija nebeidzās ar semikolu; visdrīzāk jūs lietojāt & zīmi bez nodoma "
"sākt entītiju - aizvieto & zīmes ar &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, fuzzy, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -351,16 +330,7 @@ msgstr ""
"Nevarēju parsēt '%s', kur vajadzētu būt ciparam iekš rakstzīmes atsauces "
"(&#234; piemēram) - iespējams, ka cipars ir pārāk liels"
#: glib/gmarkup.c:660
#, fuzzy, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Rakstzīmes atsauce '%s' nešifrē atļautu rakstzīmi"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Tukša rakstzīmes atsauce; būtu jāiekļauj cipars, kā &#454;"
#: glib/gmarkup.c:685
#: 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,34 +339,36 @@ msgstr ""
"Rakstzīmes atsauce nebeidzās ar semikolu; visdrīzāk jūs lietojāt & zīmi bez "
"nodoma sākt entītiju - aizvieto & zīmes ar &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Nepabeigta entītijas atsauce"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Nepabeigta rakstzīmes atsauce"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Nepareizi kodēts UTF-8 teksts"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Nepareizi kodēts UTF-8 teksts"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Nepareizi kodēts UTF-8 teksts"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Rakstzīmes atsauce '%s' nešifrē atļautu rakstzīmi"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Pamanīta tukša entītija '&;'; derīgas entītijas ir: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Entītijas nosaukums \"%s\" nav zināms"
#: 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 &amp;"
msgstr ""
"Entītija nebeidzās ar semikolu; visdrīzāk jūs lietojāt & zīmi bez nodoma "
"sākt entītiju - aizvieto & zīmes ar &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumentam jāsākās ar elementu (piem., <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -405,7 +377,7 @@ msgstr ""
"'%s' nav atļauta rakstzīme, sekojoša aiz rakstzīmes '<'; tā nedrīkst iesākt "
"elementa vārdu."
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -414,14 +386,14 @@ msgstr ""
"Savāda rakstzīme '%s', gaidīju '>' rakstzīmi, kas nobeigtu sākuma tagu "
"elementam '%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"Savāda rakstzīme '%s', gaidīju '=' aiz atribūta nosaukuma '%s' elementam '%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -432,7 +404,7 @@ msgstr ""
"tagu elementam '%s' vai fakultatīvi atribūtu; iespējams, jūs lietojāt "
"nepareizu rakstzīmi atribūta nosaukumā"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -441,7 +413,7 @@ msgstr ""
"Savāda rakstzīme '%s', gaidīju atvērtās pēdiņas pēc vienādības zīmes, "
"nosakot vērtību atribūtam '%s' no elementa '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -450,7 +422,7 @@ msgstr ""
"'%s' nav derīga rakstzīme, sekojot rakstzīmēm '</'; '%s' nevar sākt elementa "
"nosaukumu"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -459,25 +431,25 @@ msgstr ""
"'%s' nav derīga rakstzīme, sekojot aizverošā eementa nosaukumam '%s'; "
"atļautā rakstzīme ir '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Elements '%s' tika aizvērts, neviens elements pašlaik nav atvērts"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Elements '%s' tika aizvērts, bet pašlaik atvērtais elements ir '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Dokuments bija tukšs vai saturēja tikai tukšu atstarpi"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokuments negaidīti izbeidzās tieši pēc atvērtās stūra iekavas '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -486,7 +458,7 @@ msgstr ""
"Dokuments negaidīti izbeidzās ar joprojām atvērtiem elementiem - '%s' bija "
"pēdējais atvērtais elements"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -495,19 +467,19 @@ msgstr ""
"Dokuments negaidīti izbeidzās, cerēju ieraudzīt aizverošo stūra iekavu, "
"beidzoties ar tagu <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokuments negaidīti izbeidzās iekšā elementa nosaukumā"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokuments negaidīti izbeidzās iekšā atribūta nosaukumā"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokuments negaidīti izbeidzās elementa-atverošajā tagā."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -515,16 +487,16 @@ msgstr ""
"Dokuments negaidīti izbeidzās aiz vienādības zīmes, sekojot atribūta "
"nosaukumam; nav atribūta vētības"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokuments negaidīti izbeidzās kamēr iekšā atribūta vērtībā"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Dokuments negaidīti izbeidzās iekšā elementa '%s' aizverošajā tagā"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokuments negaidīti izbeidzās iekšā komentārā vai apstrādes instrukcijā"
@ -970,61 +942,61 @@ msgstr "Nepareiza secība konversijas ievadē "
msgid "Character out of range for UTF-16"
msgstr "Rakstzīme nav UTF-16 laukā"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr ""
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr ""
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr ""
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr ""
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr ""
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr ""
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr ""
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, fuzzy, c-format
msgid "Error parsing option %s"
msgstr "Kļūda konversējot: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr ""
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr ""
@ -1141,8 +1113,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1282,7 +1254,7 @@ msgstr ""
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1303,15 +1275,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Hostdatora nosaukuma URI '%s' ir nepareizs"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1723,55 +1686,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "Hostdatora nosaukuma URI '%s' ir nepareizs"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Kļūda nolasot failu '%s': %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1788,16 +1707,12 @@ msgstr "Kļūda rindā %d: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Kļūda konversējot: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1834,6 +1749,47 @@ msgstr ""
msgid "[FILE...]"
msgstr ""
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Rakstzīme '%s' nav derīga entītijas nosaukuma sākumā; rakstzīme & sāk "
#~ "entītiju; ja šī zīme netiek atbalstīta, lai būtu entītija, aizvieto to ar "
#~ "&amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Rakstzīme '%s' nav derīga entītijas nosaukumā"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Tukša rakstzīmes atsauce; būtu jāiekļauj cipars, kā &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Nepabeigta entītijas atsauce"
#~ msgid "Unfinished character reference"
#~ msgstr "Nepabeigta rakstzīmes atsauce"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Nepareizi kodēts UTF-8 teksts"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Nepareizi kodēts UTF-8 teksts"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Hostdatora nosaukuma URI '%s' ir nepareizs"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "Hostdatora nosaukuma URI '%s' ir nepareizs"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Kļūda nolasot failu '%s': %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Kļūda konversējot: %s"

302
po/mai.po
View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -303,50 +303,32 @@ msgstr "फाइल '%s' खोलबामे असफल: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' फाइल चित्रित करबामे विफल: mmap() विफल: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr ""
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr ""
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "पँक्ति %d पर त्रुटि: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "रिक्त एंटिटी '&;' देखलक; वैध एंटिटी अछि: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"एकटा एंटिटी क' प्रारंभमे अक्षर '%s' वैध नहि अछि आओर & अक्षर एकटा एंटिटीकेँ प्रारंभ करैत "
"अछि. जँ ई एम्परसेंड एकटा एंटिटी नहि अछि तँ एकरा एहिना एस्केप करू &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "अक्षर '%s' एकटा एंटिटी नाम क' भीतर वैध नहि अछि"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "एंटिटी नाम '%s' ज्ञात नहि अछि"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"एंटिटी अर्धविराम पर समाप्त नहि होइछ, बेसी संभव अछि जे अहाँ एम्परसेन्ड अक्षर क' प्रयोग "
"कएनए छी आओर एकटा एंटिटी प्रारंभ नहि कएनाइ चाहैत छी- एम्परसेंड केँ एहिना एस्केप करू: &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -355,16 +337,7 @@ msgstr ""
"'%-.*s' क' विश्लेषण करबामे असफल, जे अक्षर संदर्भ क' भीतर एकटा अँक होनाइ चाही (उदाहरण "
"क लेल, &#234) - साइत अँक बेसी पैघ अछि"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "संप्रतीक संदर्भ '%-.*s' एकटा अनुमति प्राप्त संप्रतीक केँ एनकोड नहि करैत अछि"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "रिक्त अक्षर संदर्भ, अँक जहिना &#454 सम्मिलित अवश्य होएबाक चाही;"
#: glib/gmarkup.c:685
#: 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,52 +347,54 @@ msgstr ""
"अक्षर क' उपयोग कएनए छी पर एकटा एंटिटी केँ प्रारंभ कएनाइ नहि चाहैत छी - एम्परसेंड केँ "
"एस्केप करू एहिना &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "अपूर्ण एंटिटी संदर्भ"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "अपूर्ण अक्षर संदर्भ"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr ""
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr ""
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr ""
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "संप्रतीक संदर्भ '%-.*s' एकटा अनुमति प्राप्त संप्रतीक केँ एनकोड नहि करैत अछि"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "रिक्त एंटिटी '&;' देखलक; वैध एंटिटी अछि: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "एंटिटी नाम '%s' ज्ञात नहि अछि"
#: 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 &amp;"
msgstr ""
"एंटिटी अर्धविराम पर समाप्त नहि होइछ, बेसी संभव अछि जे अहाँ एम्परसेन्ड अक्षर क' प्रयोग "
"कएनए छी आओर एकटा एंटिटी प्रारंभ नहि कएनाइ चाहैत छी- एम्परसेंड केँ एहिना एस्केप करू: &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "दस्ताबेज एकटा अवयव क' नामसँ प्रारंभ होनाइ चाही (उदाहरण क' लेल- <पुस्तक>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "< क' पश्चात आबल '%s' एकटा वैध वर्ण नहि अछि. ई अवयव नामसँ प्रारंभ नहि होइछ"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr ""
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "विषम अक्षर '%s', प्रत्याशित अछि एकटा '=' लक्षण नाम '%s' अवयव '%s' क' पश्चात"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -430,7 +405,7 @@ msgstr ""
"प्रत्याशित, अथवा विकल्पतः एकटा गुण; साइत अहाँ गुण नाममे एकटा अमान्य संप्रतीक क' प्रयोग "
"कएनए छी"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -439,7 +414,7 @@ msgstr ""
"पुरान अक्षर '%s', जखन विशेषता '%s', अवयव '%s' क' मान देल जाइत अछि तँ बराबर चिह्नक "
"बाद एकटा खुलल कोट चिह्न वांछित अछि"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -448,7 +423,7 @@ msgstr ""
"'%s' एकटा वैध अक्षर नहि अछि अक्षर '</' क' बाद; '%s' एकटा अवयव नाम सँ प्रारंभ नहि "
"होइछ"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -456,25 +431,25 @@ msgid ""
msgstr ""
"'%s' एकटा वैध अक्षर नहि अछि क्लोज़ अवयव नाम '%s' क' बाद; स्वीकार्य अक्षर अछि '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "अवयव '%s' बन्द छला, कोनो अवयव वर्तमानमे खुलल नहि अछि"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "दस्ताबेज '%s' बन्द छला, मुदा वर्तमान खुलल अवयव अछि '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "दस्ताबेज खाली छला अथवा ओकरामे सिर्फ श्वेत रिक्ति छला"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "दस्ताबेज क' अंत अप्रत्याशित रूप सँ एकटा खुलल एंगल ब्रेकेट '<' क' पश्चाते भ' गेल"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -483,7 +458,7 @@ msgstr ""
"दस्ताबेज क' अंत अप्रत्याशित रूप सँ अवयवसभ क' खुलल हए पर भ' गेल - '%s' अंतिम खुलल अवयव "
"छला"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -492,19 +467,19 @@ msgstr ""
"दस्ताबेज क' अंत अप्रत्याशित रूप सँ भ' गेल, वांछित छला देखनाइ टैगकेँ बन्द करैत एकटा क्लोज एंगल "
"ब्रेकेट <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "दस्ताबेज क' अंत अप्रत्याशित रूपसँ अवयव नाम क' भीतर भ' गेल"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "दस्ताबेज क' अंत अप्रत्याशित रूप सँ विशेषता नाम क' भीतर भ' गेल"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "दस्ताबेज क' अंत अप्रत्याशित रूपसँ अवयव-खोलबाक टैगक भीतर भ' गेल."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -512,16 +487,16 @@ msgstr ""
"दस्ताबेज क' अंत अप्रत्याशित रूपसँ बराबर क' चिह्न क' बाद एकटा विशेषता नाम क' पश्चात भ' "
"गेल; कोनो विशेषता मान नहि"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "दस्ताबेज क' अंत अप्रत्याशित रूपसँ विशेषता मान क' भीतर भ' गेल"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "दस्ताबेज क' अंत अप्रत्याशित रूपसँ अवयव '%s' लेल बन्द टैग क' भीतर भ' गेल"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "दस्ताबेज क' अंत अप्रत्याशित रूपसँ टिप्पणी अथवा प्रक्रिया निर्देश क' भीतर भ' गेल"
@ -957,61 +932,61 @@ msgstr "परिवर्तन इनपुटमे अवैध अनुक
msgid "Character out of range for UTF-16"
msgstr "यूटीएफ-16 लेल अक्षर सीमासँ बाहर"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "प्रयोग:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[विकल्प...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "मद्दति विकल्प:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "मद्दति विकल्प देखाबू"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "सभटा मद्दति विकल्प देखाबू"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "अनुप्रयोग विकल्प:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "पूर्णांक मान '%s' केँ %s क' लेल विश्लेषण नहि कए सकैत अछि"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "पूर्णांक मान '%s' %s क' लेल रेंज क' बाहर अछि"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "'%s' दोहराएल मान क' विश्लेषण %s क' लेल नहि कए सकैत अछि"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "'%s' दोहराएल मान %s क' लेल परिसरसँ बाहर अछि"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "%s विकल्प विश्लेषणमे त्रुटि"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s क' लेल गुम तर्क"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "अनजान विकल्प %s"
@ -1130,8 +1105,8 @@ msgstr "Too large count value passed to %s"
msgid "Stream is already closed"
msgstr "स्ट्रीन पहिनेसँ बन्न अछि"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "ऑपरेशन रद्द छल"
@ -1271,7 +1246,7 @@ msgstr ""
msgid "File names cannot contain '%c'"
msgstr "फाइल नाम मे '%c' नहि रहि सकैत अछि"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "आवाज माउंटकेँ लागू नहि करैत अछि"
@ -1292,14 +1267,6 @@ msgstr "File enumerator has outstanding operation"
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr "फाइल"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "फाइल जे प्रतीक राखने अछि"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1708,55 +1675,11 @@ msgstr "आउटपुट स्ट्रीम लेखन केँ ला
msgid "Source stream is already closed"
msgstr "स्रोत स्ट्रीम पहिनेसँ बन्न अछि"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "नाम"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "प्रतीक कए नाम"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "नाम"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "प्रतीक नामक संग सरणी"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "पूर्वनिर्धारित फालबैक प्रयोग करू"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "%d संस्करण GThemedIcon एन्कोडिंगकेँ नियंत्रित नहि कए सकल"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "फाइल विवरक"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "फाइल विवरक जकरासँ पढ़नाइ अछि"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "फाइल विवरक बन्न करू"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "फाइल विवरक केँ बन्न कएनाइ अछि जखन स्ट्रीम बन्न अछि"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1773,16 +1696,12 @@ msgstr "unix केँ बन्न करबामे त्रुटि: %s"
msgid "Filesystem root"
msgstr "फाइल सिस्टम रूट"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "फाइल विवरक जकरामे लिखनाइ अछि"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "unix मे लिखबामे त्रुटि: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "आवाज बाहर निकालबकेँ लागू नहि करैछ"
@ -1818,3 +1737,66 @@ msgstr "नमहर सूची प्रारूपक प्रयोग
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[फाइल...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "एकटा एंटिटी क' प्रारंभमे अक्षर '%s' वैध नहि अछि आओर & अक्षर एकटा एंटिटीकेँ प्रारंभ "
#~ "करैत अछि. जँ ई एम्परसेंड एकटा एंटिटी नहि अछि तँ एकरा एहिना एस्केप करू &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "अक्षर '%s' एकटा एंटिटी नाम क' भीतर वैध नहि अछि"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "रिक्त अक्षर संदर्भ, अँक जहिना &#454 सम्मिलित अवश्य होएबाक चाही;"
#~ msgid "Unfinished entity reference"
#~ msgstr "अपूर्ण एंटिटी संदर्भ"
#~ msgid "Unfinished character reference"
#~ msgstr "अपूर्ण अक्षर संदर्भ"
#~ msgid "file"
#~ msgstr "फाइल"
#~ msgid "The file containing the icon"
#~ msgstr "फाइल जे प्रतीक राखने अछि"
#~ msgid "name"
#~ msgstr "नाम"
#~ msgid "The name of the icon"
#~ msgstr "प्रतीक कए नाम"
#~ msgid "names"
#~ msgstr "नाम"
#~ msgid "An array containing the icon names"
#~ msgstr "प्रतीक नामक संग सरणी"
#~ msgid "use default fallbacks"
#~ msgstr "पूर्वनिर्धारित फालबैक प्रयोग करू"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgid "File descriptor"
#~ msgstr "फाइल विवरक"
#~ msgid "The file descriptor to read from"
#~ msgstr "फाइल विवरक जकरासँ पढ़नाइ अछि"
#~ msgid "Close file descriptor"
#~ msgstr "फाइल विवरक बन्न करू"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "फाइल विवरक केँ बन्न कएनाइ अछि जखन स्ट्रीम बन्न अछि"
#~ msgid "The file descriptor to write to"
#~ msgstr "फाइल विवरक जकरामे लिखनाइ अछि"

284
po/mg.po
View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: GLIB VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -300,53 +300,32 @@ msgstr "Tsy voasokatra ny rakitra '%s': tsy nahomby ny open(): %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Tsy voamap ny rakitra '%s': tsy nahomby ny mmap(): %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Misy tsy fetezana amin'ny andalana %d marika %d: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Lahabolana voafango UTF-8 tsy mitombina"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Misy tsy fetezana amin'ny andalana %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Nahita ary '&;' foana; ireto no fidirana ekena: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Tsy mety atao fiantomboham-pidirana ny marika '%s'; ny & no manomboka ny "
"anaran'ny ary. Raha toa ka tsy raisin'ny ary iray an-tànana io marika io "
"(&), dia ataovy &amp; mba ialana izany"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Tsy mety atao amin'ny anaran'ary ny marika '%s'"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Tsy fantatra ny anaran'ary '%s'"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Tsy nifarana tamin'ny teboka amam-paingo ilay ary. Mety tsy nihevitra "
"hampiasa esperluette hanombohana ary angamba ianao - esperluette fialana toy "
"ny &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -355,16 +334,7 @@ msgstr ""
"Tsy voazarazara ny '%-.*s' izay tokony ho isa anaty fiantsoana marika "
"(&#234, ohatra). Mety lehibe loatra angamba ilay isa."
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Tsy manafango marika azo ampiasaina ny fiantsoana marika '%-.*s'"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Fiantsoana marika foana; tokony hisy isa toy ny &#454;"
#: glib/gmarkup.c:685
#: 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,35 +344,37 @@ msgstr ""
"nihevitra hampiasa esperluette hanombohana ary angamba ianao - esperluette "
"fialana toy ny &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Fiantsoana ary tsy vita"
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Tsy manafango marika azo ampiasaina ny fiantsoana marika '%-.*s'"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Fiantsoana marika tsy vita"
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Nahita ary '&;' foana; ireto no fidirana ekena: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Lahabolana voafango UTF-8 tsy mitombina"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Lahabolana voafango UTF-8 tsy mitombina"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Lahabolana voafango UTF-8 tsy mitombina"
msgid "Entity name '%-.*s' is not known"
msgstr "Tsy fantatra ny anaran'ary '%s'"
#: glib/gmarkup.c:1168
#: 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 &amp;"
msgstr ""
"Tsy nifarana tamin'ny teboka amam-paingo ilay ary. Mety tsy nihevitra "
"hampiasa esperluette hanombohana ary angamba ianao - esperluette fialana toy "
"ny &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr ""
"Tsy maintsy manomboka amina singantaharo ilay tahirin-kevitra (oh. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -411,7 +383,7 @@ msgstr ""
"Tsy mety atao aorian'ny marika '<' ny marika '%s'. Tsy mety anombohana "
"anaran-tsingataharo io"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -420,7 +392,7 @@ msgstr ""
"Marika '%s' hafahafa; nanantena marika '>' hamarana ny tag manomboka ny "
"singantaharo '%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -428,7 +400,7 @@ msgstr ""
"Marika '%s' hafahafa; nanantena '=' aorian'ny anaran'ny marika manokana '%s' "
"amin'ny singantaharo '%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -439,7 +411,7 @@ msgstr ""
"ny singantaharo '%s', na koa marika manokana iray. Mety nampiasa marika tsy "
"ekena amin'ny anarana marika manokana angamba ianao."
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -448,7 +420,7 @@ msgstr ""
"Marika '%s' hafahafa; nanantena farango manokatra aorian'ny mira rehefa "
"manome ny sanda ny marika manokana '%s' amin'ny singantaharo '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -457,7 +429,7 @@ msgstr ""
"Tsy mety atao aorian'ny marika '</' ny marika '%s'. Tsy mety anombohana "
"anaran-tsingantaharo ny '%s'."
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -466,27 +438,27 @@ msgstr ""
"'%s' dia tsy mety atao aorian'ny anaran'ny singantaharo mamarana ny marika '%"
"s'. '>' no marika mety atao eo"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Nofaranana ny singantaharo '%s'; tsy misy singantaharo misokatra izao"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
"Nofaranana ny singantaharo '%s', fa '%s' no singantaharo misokatra izao"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Foana na tsy misy afa-tsy elanelana ilay tahirin-kevitra"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Nifarana tampoka taoriana fonon-teny kitso loha '<' ilay tahirin-kevitra"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -495,7 +467,7 @@ msgstr ""
"Nifarana tampoka ilay tahirin-kevitra nefa misy singantaharo mbola "
"misokatra; '%s' no singantaharo farany nisokatra"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -504,20 +476,20 @@ msgstr ""
"Nifarana tampoka ilay singantaharo; nanantena fonon-teny kitso loha mamarana "
"ny tag <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Nifarana tampoka tanaty anaran-tsingataharo ilay tahirin-kevitra"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Nifarana tampoka tanaty anarana marika manokana ilay tahirin-kevitra"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"Nifarana tampoka tanaty tag manomboka singantaharo ilay tahirin-kevitra."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -525,19 +497,19 @@ msgstr ""
"Nifarana tampoka taorian'ny mira manaraka anarana marika manokana ilay "
"tahirin-kevitra; tsy misy sanda-marika manokana"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
"Nifarana tampoka ilay tahirin-kevitra raha mbola tanaty sanda-marika manokana"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Nifarana tampoka tanatin'ny tag mamarana ny singantaharo '%s' ilay tahirin-"
"kevitra"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Nifarana tampoka tanaty teny fanampiny na torolàlana fikirakirana ilay "
@ -991,61 +963,61 @@ msgstr "Tsy mitombina ny filaharana amin'ny fidiran'ny fanovana"
msgid "Character out of range for UTF-16"
msgstr "Mihoatra ny fetran'ny UTF-16 ilay marika"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Fampiasa:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[SAFIDY...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Safidy momba ny toro-làlana:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Asehoy ny safidy momba ny toro-làlana"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Asehoy ny safidy rehetra momba ny toro-làlana"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Safidy momba ny rindranasa:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Tsy afaka mizarazara ny sanda feno '%s' ho an'ny %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Mihoatra ny fetra ny sanda feno '%s' ho an'ny '%s'"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Tsy afaka mizarazara sanda roa '%s' ho an'ny '%s'"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Mihoatra ny fetra ny sanda roa '%s' ho an'ny '%s'"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Nisy olana teo am-pizarazarana ny safidy %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Tondrikin'ny %s tsy eo"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Safidy %s tsy fantatra"
@ -1171,8 +1143,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1315,7 +1287,7 @@ msgstr "Tsy raisina an-tànana ny rohy misolotena"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1338,15 +1310,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Tsy mitombina ny anaram-mpampiantranon'ny URI '%s'"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1759,55 +1722,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "Tsy mitombina ny anaram-mpampiantranon'ny URI '%s'"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Nisy olana teo am-pamakiana ny rakitra '%s': %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1824,16 +1743,12 @@ msgstr "Misy tsy fetezana amin'ny andalana %d: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Nisy olana teo am-pizarazarana ny safidy %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1872,6 +1787,47 @@ msgstr ""
msgid "[FILE...]"
msgstr "[SAFIDY...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Tsy mety atao fiantomboham-pidirana ny marika '%s'; ny & no manomboka ny "
#~ "anaran'ny ary. Raha toa ka tsy raisin'ny ary iray an-tànana io marika io "
#~ "(&), dia ataovy &amp; mba ialana izany"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Tsy mety atao amin'ny anaran'ary ny marika '%s'"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Fiantsoana marika foana; tokony hisy isa toy ny &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Fiantsoana ary tsy vita"
#~ msgid "Unfinished character reference"
#~ msgstr "Fiantsoana marika tsy vita"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Lahabolana voafango UTF-8 tsy mitombina"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Lahabolana voafango UTF-8 tsy mitombina"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Tsy mitombina ny anaram-mpampiantranon'ny URI '%s'"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "Tsy mitombina ny anaram-mpampiantranon'ny URI '%s'"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Nisy olana teo am-pamakiana ny rakitra '%s': %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Nisy olana teo am-pizarazarana ny safidy %s"

293
po/mk.po
View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib.HEAD.mk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -308,52 +308,32 @@ msgstr "Не успеав да ја отворам датотеката „%s“
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Не успеав да ја означам датотеката „%s“: mmap() не успеа: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Грешка на линија %d знак %d"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Невалиден UTF-8 енкодиран текст - невалидно „%s“"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Грешка на линија %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Празен ентитет '&;' видени; валидни ентитети се: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Карактерот „%s“ претставува невалиден почеток на име на ентитет, карактерот "
"& го започнува ентитетот;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Карактерот „%s“ не е валиден внатре во името на ентитетот"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Името на ентитетот „%s“ е познато"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Ентитетот не заврши со полуколоната; најверојатно сте користеле симбол без "
"намера да започнете ентитет - избегнете го симболот со &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -363,16 +343,7 @@ msgstr ""
"внатрешен дигитален карактер (на пример, &#234) - најверојатно бројот е "
"преголем"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Параметарот на карактерот '%-.*s' не енкодира забранет карактер"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Параметар за празен карактер; треба да содржи бројка како што е &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -382,32 +353,36 @@ msgstr ""
"користеле симбол без намера да започнете ентитет - одбегнете го симболот со "
"&amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Недовршен параметар за ентитет"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Недовршен параметар за карактер"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Невалиден UTF-8 енкодиран текст - предолга секвенца"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Невалиден UTF-8 енкодиран текст - нема почетен знак"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Невалиден UTF-8 енкодиран текст - невалидно „%s“"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Параметарот на карактерот '%-.*s' не енкодира забранет карактер"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Празен ентитет '&;' видени; валидни ентитети се: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Името на ентитетот „%s“ е познато"
#: 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 &amp;"
msgstr ""
"Ентитетот не заврши со полуколоната; најверојатно сте користеле симбол без "
"намера да започнете ентитет - избегнете го симболот со &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Документите мора да започнуваат со елемент (пр. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -415,7 +390,7 @@ msgid ""
msgstr ""
"„%s“ не е валиден карактер по '<' карактер; не може да започне име на елемент"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -424,7 +399,7 @@ msgstr ""
"Чуден карактер „%s“, очекував '>' карактер да го заврши почетниот таг на "
"елементот „%s“"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -432,7 +407,7 @@ msgstr ""
"Чуден карактер „%s“, очекував '=' по името на атрибутот „%s“ од елементот '%"
"s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -442,7 +417,7 @@ msgstr ""
"Чуден карактер „%s“, очекував '>' или '/' за да го затворам почетниот таг на "
"елементот „%s“; можеби сте користеле невалиден карактер во името на атрибутот"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -451,7 +426,7 @@ msgstr ""
"Чуден карактер „%s“, се очекува отворен забележан цитат по еднаквите знаци "
"кога се даваат вредности за атрибутот „%s“· од елементот „%s“·"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -460,7 +435,7 @@ msgstr ""
"„%s“ не е валиден карактер, по карактерите </';·„%s“·не може да започне име "
"на елемент"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -469,26 +444,26 @@ msgstr ""
"„%s“·не е валиден карактер што би можел да доје по името на елементот „%s“, "
"дозволениот карактер е '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Елементот „%s“ е затворен. Во моментов не е отворен ниеден елемент"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Елементот „%s“ е затворен, но тековно отворениот елемент е „%s“"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Документот е празен или содржи само празни места"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Документот заврши неочекувано веднаш по заградата за отворениот агол '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -497,7 +472,7 @@ msgstr ""
"Документот заврши неочекувано со сеуште отворени елементи - „%s“ беше "
"последниот отворен елемент"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -506,36 +481,36 @@ msgstr ""
"Документот заврши неочекувано, очекував да видам го видам аголот на "
"заградата за затворање на тагот <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Документот заврши неочекувано внатре во иметп на елементот"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Документот заврши неочекувано внатре во името на атрибутот"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Документот заврши неочекувано внатре во тагот за отворање на елементи."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr "Нема вредност за атрибутот"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
"Документот заврши неочекувано додека беше внатре во вредноста на атрибутот"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Документот заврши неочекувано внатре во тагот за затворање на елементи „%s“"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Документот заврши неочекувано внатре во коментар или инструкција за "
@ -982,61 +957,61 @@ msgstr "Невалидна секвенца во излезот од конве
msgid "Character out of range for UTF-16"
msgstr "Карактерот е надвор од опсег за UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Употреба:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[ОПЦИЈА...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Опции за помош:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Покажи ги сите опции за помош"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Покажи ги сите опции за помош"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Опции на апликацијата:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Не можам да парсирам вредност за целобројната вредност „%s“ за %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Вредноста на целиот број „%s“ за %s е надвор од опсегот"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Не можам да ја анализирам целобројната вредност „%s“ за %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Вредноста на целиот број „%s“ за %s е надвор од опсегот"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Грешка при парсирањето на опцијата %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Недостига аргумент за %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Непозната опција „%s“·"
@ -1160,8 +1135,8 @@ msgstr "Преголема бројна вредност дадена на %s"
msgid "Stream is already closed"
msgstr "Стримот е веќе затворен"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Операцијата беше прекината"
@ -1303,7 +1278,7 @@ msgstr "Ѓубрето не е поддржано"
msgid "File names cannot contain '%c'"
msgstr "Имињата на датотеки не можат да содржат „%c“"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "просторот нема имплементирано монтирање"
@ -1324,15 +1299,6 @@ msgstr "Енумераторот на датотеки има преголема
msgid "File enumerator is already closed"
msgstr "Енумераторот за датотеки веќе е затворен"
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Името на хостот на URI %s е невалидно"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1746,57 +1712,11 @@ msgstr "Излезниот стрим нема имплементирано за
msgid "Source stream is already closed"
msgstr "Изворот на стримот веќе е затворен"
#: gio/gthemedicon.c:211
#, fuzzy
msgid "name"
msgstr "Неименувано"
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "Името на хостот на URI %s е невалидно"
#: gio/gthemedicon.c:223
#, fuzzy
msgid "names"
msgstr "Неименувано"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Грешка во поставувањето на опишувач на датотека: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1813,16 +1733,12 @@ msgstr "Грешка во затворањето на unix: %s"
msgid "Filesystem root"
msgstr "Root на датотечниот систем"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Грешка во запишувањето на unix: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "просторот нема имплементирано вадење"
@ -1859,6 +1775,53 @@ msgstr "користи фомрат со долго листање"
msgid "[FILE...]"
msgstr "[ДАТОТЕКА...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Карактерот „%s“ претставува невалиден почеток на име на ентитет, "
#~ "карактерот & го започнува ентитетот;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Карактерот „%s“ не е валиден внатре во името на ентитетот"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr ""
#~ "Параметар за празен карактер; треба да содржи бројка како што е &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Недовршен параметар за ентитет"
#~ msgid "Unfinished character reference"
#~ msgstr "Недовршен параметар за карактер"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Невалиден UTF-8 енкодиран текст - предолга секвенца"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Невалиден UTF-8 енкодиран текст - нема почетен знак"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Името на хостот на URI %s е невалидно"
#, fuzzy
#~ msgid "name"
#~ msgstr "Неименувано"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "Името на хостот на URI %s е невалидно"
#, fuzzy
#~ msgid "names"
#~ msgstr "Неименувано"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Грешка во поставувањето на опишувач на датотека: %s"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u бајт"

312
po/ml.po
View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib.HEAD.ml\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-17 21:08+0530\n"
"Last-Translator: \n"
"Language-Team: <en@li.org>\n"
@ -301,51 +301,32 @@ msgstr "ഫയല്‍ '%s' തുറക്കുന്നതില്‍ പ
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "ഫയല്‍ '%s' മാപ്പ് ചെയ്യുന്നതില്‍ പരാജയപ്പെട്ടു: mmap() പരാജയപ്പെട്ടു: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "%d-ആം വരിയില്‍ %d-ആം അക്ഷരത്തില്‍ പിശക്:"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "സാധുതയില്ലാത്ത UTF-8 രഹസ്യ വാചകം - '%s' തെറ്റാകുന്നു"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "വരി %d-ല്‍ പിശക്: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"‌ശൂന്യമായ എന്‍റിന്‍റി '&;' കണ്ടു; അനുവദനീയമായവ ഇവയാണ്: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"%sല് ഒരു എന്‍റിന്‍റി തു‌ടങ്ങാവുന്നതല്ല. & എന്ന അക്ഷരം ഒരു എന്‍റിന്‍റിയുടെ തുടക്കം കുറിക്കുന്നു. & ഒരു "
"എന്‍റിന്‍റിഅല്ലെങ്കില്‍ &amp; എന്ന് പ്രത്യേകം സൂചിപ്പിക്കുക"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "'%s' എന്ന അക്ഷരത്തിന് എന്‍റിന്‍റിയുടെ പേരിനുള്ളില്‍ സാധുതയില്ല"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "എന്‍റിന്‍റി നാമം '%s' അപരിചിതമാണ്"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"എന്‍റിന്‍റി ഒരു അര്ദ്ധവിരാമത്തില് അവസാനിക്കുന്നില്ല. & എന്ന അക്ഷരം അറിയാതെ ഉള്‍ക്കൊളളാന്‍ "
"ഇടയായോ? & ഒരു എന്‍റിന്‍റി അല്ലെങ്കില്‍ &amp; എന്ന് പ്രത്യേകം സൂചിപ്പിക്കുക"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -354,17 +335,7 @@ msgstr ""
"'%-.*s' പാഴ്സ് ചെയ്യുന്നതില്‍ പരാജയപ്പെട്ടു, ഇത് അക്ഷര റഫറന്‍സിനുളളില്‍ ഒരു അക്കം ആയിരിക്കണമാരുന്നു "
"(&#234; ഉദാഹരണത്തിന്) - ഒരു പക്ഷേ അക്കം വളരെ വലുതാവാം"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
"അക്ഷരത്തിന്‍റെ സൂചനയായ '%-.*s' ഒരു അനുവദനീയമായ രഹസ്യ അക്ഷരത്തിലേക്കല്ല വേര്‍തിരിക്കുന്നത്"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "ശൂന്യമായ അക്ഷര സൂചനാ; &#454 പോലുളള അക്കം ഉല്‍പ്പെടുത്തേണ്ടതാണ്;"
#: glib/gmarkup.c:685
#: 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 "
@ -373,32 +344,36 @@ msgstr ""
"അക്ഷരസൂചകം ഒരു അര്ദ്ധവിരാമത്തില് അവസാനിക്കുന്നില്ല. & എന്ന അക്ഷരം അറിയാതെ ഉള്‍ക്കൊളളാന്‍ "
"ഇടയായോ? & ഒരു സത്ത അല്ലെങ്കില് &amp; എന്ന് പ്രത്യേകം സൂചിപ്പിക്കുക"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "പൂര്‍ണ്ണമാകാത്ത എന്‍റിന്‍റി സൂചനാ"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "പൂര്‍ണ്ണമാകാത്ത അക്ഷര സൂചനാ"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "തെറ്റായ UTF-8 എന്‍കോഡട് വാചകം - ഓവര്‍ലോങ് സീക്വന്‍സ്"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "തെറ്റായ UTF-8 എന്‍കോഡട് വാചകം - ആരംഭിക്കേണ്ട അക്ഷരമല്ല"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "സാധുതയില്ലാത്ത UTF-8 രഹസ്യ വാചകം - '%s' തെറ്റാകുന്നു"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
"അക്ഷരത്തിന്‍റെ സൂചനയായ '%-.*s' ഒരു അനുവദനീയമായ രഹസ്യ അക്ഷരത്തിലേക്കല്ല വേര്‍തിരിക്കുന്നത്"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"‌ശൂന്യമായ എന്‍റിന്‍റി '&;' കണ്ടു; അനുവദനീയമായവ ഇവയാണ്: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "എന്‍റിന്‍റി നാമം '%s' അപരിചിതമാണ്"
#: 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 &amp;"
msgstr ""
"എന്‍റിന്‍റി ഒരു അര്ദ്ധവിരാമത്തില് അവസാനിക്കുന്നില്ല. & എന്ന അക്ഷരം അറിയാതെ ഉള്‍ക്കൊളളാന്‍ "
"ഇടയായോ? & ഒരു എന്‍റിന്‍റി അല്ലെങ്കില്‍ &amp; എന്ന് പ്രത്യേകം സൂചിപ്പിക്കുക"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "രേഖ തുടങ്ങേണ്ടത് ഒരു എലമെന്‍റിലാണ് (ഉദാ <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -406,7 +381,7 @@ msgid ""
msgstr ""
"'<' അക്ഷരത്തിന് പിന്നിലുളള '%s' ഒരു അസാധുവായ അക്ഷരമാണ്; ഇത് ഒരു എലമെന്‍റ് പേര് തുടങ്ങില്ല"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -414,14 +389,14 @@ msgid ""
msgstr ""
"ഓഡ് അക്ഷരം '%s', '%s' എന്ന ശൂന്യ-എലമെന്റ് റ്റാഗ് അവസാനിപ്പിക്കുന്നതിനായി '>' പ്രതീക്ഷിച്ചു"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"ഓഡ് അക്ഷരം '%s', എലമെന്‍റ് '%s'-ന്‍റെ സവിശേഷത നാമം '%s'-ന് ശേഷം ഒരു '=' പ്രതീക്ഷിക്കുന്നു"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -432,7 +407,7 @@ msgstr ""
"ആട്റിബ്യൂട്ട് ആണ് '%s' എന്ന എലമെന്‍റിന്‍റെ ആരംഭത്തിലുളള ടാഗ് അവസാനിപ്പിക്കുന്നതിന് പ്രതീക്ഷിച്ചത്; "
"ഒരു പക്ഷേ, ആട്റിബ്യൂട്ടിന്‍റെ പേരില്‍ നിങ്ങള്‍ തെറ്റായ അക്ഷരം ആവാം ഉപയോഗിച്ചത്"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -441,7 +416,7 @@ msgstr ""
"'%s' ഒരു ഓഡ് അക്ഷരം ആണ്, '%s' എന്ന എലമെന്‍റിന്‍റെ ആട്റിബ്യൂട്ട് ആയ '%s'-നുളള മൂല്ല്യം നല്‍കുമ്പോള്‍ "
"സമം‌ എന്ന ചിഹ്നത്തിന് ശേഷം ഒരു തുറന്ന കോട്ട് ആണ് പ്റതീക്ഷിച്ചത്"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -449,7 +424,7 @@ msgid ""
msgstr ""
"'</' അക്ഷരങ്ങള്‍ക്ക് ശേഷം ഉളള '%s', അസാധുവായ അക്ഷരമാണ്; '%s' ഒരു എലമെന്‍റ് നാമം തുടങ്ങുന്നില്ല"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -457,25 +432,25 @@ msgid ""
msgstr ""
"എലമെന്‍റ് നാമം '%s'-ന് ശേഷം ഉളള '%s', ഒരു അസാധുവായ അക്ഷരമാണ്; '>' അക്ഷരമാണ് അനുവദിക്കുന്നത്"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "എലമെന്‍റ് '%s' അടച്ചിരിക്കുന്നു, ഒരു എലമെന്‍റുകളും നിലവില്‍ തുറന്നിട്ടില്ല"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "എലമെന്‍റ് '%s' അടച്ചിരിക്കുന്നു, പക്ഷേ നിലവില്‍ ലഭ്യമായ എലമെന്‍റ് '%s' ആണ്"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "രേഖ ശൂന്യമാണ് അല്ലെങ്കില്‍ അതില്‍ വയിറ്റ് സ്പെയിസ് മാത്രമേ ഉള്ളൂ"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "ഒരു '<' ബ്രാക്കറ്റിന് ശേഷം രേഖ അപ്രതീക്ഷിതമായി അവസാനിച്ചിരിക്കുന്നു "
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -484,7 +459,7 @@ msgstr ""
"എലമെന്‍റുകള്‍ തുറന്നു കിടക്കുന്പോള്‍ തന്നെ രേഖ അപ്രതീക്ഷമായ അടഞ്ഞിരിക്കുന്നു - ഒടുവില്‍ തുറന്ന എലമെന്‍റ് "
"'%s' ആണ്"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -493,19 +468,19 @@ msgstr ""
"തന്നെ രേഖ അപ്രതീക്ഷമായ അടഞ്ഞിരിക്കുന്നു, ടാഗ് <%s/>-ന് അവസാനമായി ഒരു ക്ളോസ് ആങ്കില്‍ ബ്രാക്കറ്റ് "
"പ്രതീക്ഷിക്കുന്നു"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "ഒരു എലമെന്‍റിന്‍റെ നാമത്തിനുളളില്‍ രേഖ അപ്രതീക്ഷിതമായി അവസാനിച്ചു"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "ഒരു സവിശേഷത നാമത്തിനുളളില്‍ രേഖ അപ്രതീക്ഷിതമായി അവസാനിച്ചു"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "ഒരു എലമെന്‍റ്-ഓപ്പണിങ് ടാഗിനുളളില്‍ രേഖ അപ്രതീക്ഷിതമായി അവസാനിച്ചു"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -513,16 +488,16 @@ msgstr ""
"സമം ചിഹ്നത്തിന് ശേഷം ഒരു ആട്റിബ്യൂട്ടിന്‍റെ പേര് ആയതിനാല്‍ അപ്റതീക്ഷിതമായി ഡോക്യുമെന്‍റ് "
"അവസാനിച്ചു; ആട്റിബ്യൂട്ടിന് മൂല്ല്യം ലഭ്യമല്ല"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "ഒരു സവിശേഷത നാമത്തിനുളളില്‍ വച്ച് രേഖ അപ്രതീക്ഷിതമായി അവസാനിച്ചു"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "എലമെന്‍റ് '%s'-ന്‍റെ ക്ളോസ് ടാഗിനുള്ളില്‍ രേഖ അപ്രതീക്ഷിതമായി അവസാനിച്ചു"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"ഒരു അഭിപ്രായം അല്ലെങ്കില്‍ ഒരു പ്രക്രിയ നടത്തുന്ന നിര്‍ദ്ദേശത്തിനുള്ളില്‍ രേഖ അപ്രതീക്ഷിതമായി "
@ -963,61 +938,61 @@ msgstr "ഇന്‍പുട്ട് വേര്‍തിരിക്കു
msgid "Character out of range for UTF-16"
msgstr "UTF-16 പരിധിയില്‍ നിന്നും പുറത്താണ് അക്ഷരം"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "ഉപയോഗിക്കേണ്ട വിധം:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "സഹായ ഉപാധികള്‍:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "സഹായ ഉപാധികള്‍ കാണിക്കുക"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "എല്ലാ സഹായ ഉപാധികളും കാണിക്കുക"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "പ്രയോഗത്തിനുളള ഉപാധികള്‍:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "%s-ന് വേണ്ടി ഇന്‍റിജര്‍ മൂല്ല്യം '%s' പാഴ്സ് ചെയ്യുവാന്‍ സാധ്യമല്ല"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "%s-ന് വേണ്ടിയുളള ഇന്‍റിജര്‍ മൂല്ല്യം '%s' പരിധിയ്ക്ക് പുറത്താണ്"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "%s-ന് വേണ്ടി ഡബിള്‍ മൂല്ല്യം '%s' പാഴ്സ് ചെയ്യുവാന്‍ സാധ്യമല്ല"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "%s-ന് വേണ്ടിയുളള ഡബിള്‍ മൂല്ല്യം '%s' പരിധിയ്ക്ക് പുറത്താണ്"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "%s ഉപാധി പാഴ്സ് ചെയ്യുന്നതില്‍ പിശക്"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s-നുളള ആര്‍ഗ്യുമെന്‍റ് ലഭ്യമല്ല"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "അപരിചിതമായ ഉപാധി %s"
@ -1135,8 +1110,8 @@ msgstr "വളരെ വലിയ കൌണ്ട് മൂല്ല്യം %s
msgid "Stream is already closed"
msgstr "സ്ട്രീം നിലവില്‍ അടച്ചിരിക്കുന്നു"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "പ്രക്രിയ റദ്ദാക്കിയിരിക്കുന്നു"
@ -1276,7 +1251,7 @@ msgstr "ചവറ്റുകുട്ട പിന്തുണയ്ക്ക
msgid "File names cannot contain '%c'"
msgstr "ഫയലിന്റെ പേരില്‍ '%c' ഉണ്ടാകുവാന്‍ പാടില്ല"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "വോള്യം മൌണ്ടിനെ ലഭ്യമാക്കുന്നില്ല"
@ -1297,14 +1272,6 @@ msgstr "ഫയല്‍ എന്യൂമറേറ്റര്‍ നന്ന
msgid "File enumerator is already closed"
msgstr "ഫയല്‍ എന്യൂമറേറ്റര്‍ നിലവില്‍ അടച്ചിരിക്കുന്നു"
#: gio/gfileicon.c:145
msgid "file"
msgstr "ഫയല്‍"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "പ്രതിരൂപം അടങ്ങുന്ന ഫയല്‍"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1713,55 +1680,11 @@ msgstr "ഔട്ട്പുട്ട് സ്ട്രീം റൈറ്റ
msgid "Source stream is already closed"
msgstr "സോഴ്സ് സ്ട്രീം നിലവില്‍ അടച്ചിരിക്കുന്നു"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "പേരു്"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "പ്രതിരൂപത്തിന്റെ പേരു്"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "പേരുകള്‍"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "പ്രതിരൂപത്തിന്റെ പേരുകള്‍ അടങ്ങുന്ന ഒരു അറേ"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "സ്വതവേയുള്ള ഫോള്‍ബാക്കുകള്‍ ഉപയോഗിക്കുക"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"'-' വഴി പേരു് ചെറുതാക്കി സ്വതവേയുള്ള ഫോള്‍ബാക്കുകള്‍ ഉപയോഗിക്കണമോ എന്നു്.അനവധി പേരുകള്‍ ഉണ്ടെങ്കില്‍ "
"ആദ്യത്തേതിനു് ശേഷമുള്ള പേരുകള്‍ വേണ്ടെന്നു് വയ്ക്കുക."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "GThemedIcon എന്‍കോഡിങിനുള്ള %d പതിപ്പു് കൈകാര്യം ചെയ്യുവാന്‍ സാധ്യമല്ല"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "ഫയല്‍ വിശദീകരണ സംവിധാനം"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "വായിക്കുന്നതിനുള്ള ഫയല്‍ വിശദീകരണ സംവിധാനം"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "ഫയല്‍ വിശദീകരണ സംവിധാനം അടയ്ക്കുക"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "സ്ട്രീം അടയ്ക്കുമ്പോള്‍, ഫയല്‍ വിശദീകരണ സംവിധാനം അടയ്ക്കണമോ എന്നു്"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1778,16 +1701,12 @@ msgstr "യൂണിക്സ് അടയ്ക്കുന്നതില്
msgid "Filesystem root"
msgstr "ഫയല്‍സിസ്റ്റം റൂട്ട്"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "എഴുതുന്നതിനുള്ള ഫയല്‍ വിശദീകരണ സംവിധാനം"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "യൂണിക്സിലേക്ക് എഴുതുന്നതില്‍ പിശക്: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "വോള്യം പുറത്തിറക്കല്‍ അനുവദിക്കുന്നില്ല"
@ -1823,3 +1742,72 @@ msgstr "ലോങ് ലിസ്റ്റിങ് ഫോര്‍മാറ്
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[FILE...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "%sല് ഒരു എന്‍റിന്‍റി തു‌ടങ്ങാവുന്നതല്ല. & എന്ന അക്ഷരം ഒരു എന്‍റിന്‍റിയുടെ തുടക്കം കുറിക്കുന്നു. & ഒരു "
#~ "എന്‍റിന്‍റിഅല്ലെങ്കില്‍ &amp; എന്ന് പ്രത്യേകം സൂചിപ്പിക്കുക"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "'%s' എന്ന അക്ഷരത്തിന് എന്‍റിന്‍റിയുടെ പേരിനുള്ളില്‍ സാധുതയില്ല"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "ശൂന്യമായ അക്ഷര സൂചനാ; &#454 പോലുളള അക്കം ഉല്‍പ്പെടുത്തേണ്ടതാണ്;"
#~ msgid "Unfinished entity reference"
#~ msgstr "പൂര്‍ണ്ണമാകാത്ത എന്‍റിന്‍റി സൂചനാ"
#~ msgid "Unfinished character reference"
#~ msgstr "പൂര്‍ണ്ണമാകാത്ത അക്ഷര സൂചനാ"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "തെറ്റായ UTF-8 എന്‍കോഡട് വാചകം - ഓവര്‍ലോങ് സീക്വന്‍സ്"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "തെറ്റായ UTF-8 എന്‍കോഡട് വാചകം - ആരംഭിക്കേണ്ട അക്ഷരമല്ല"
#~ msgid "file"
#~ msgstr "ഫയല്‍"
#~ msgid "The file containing the icon"
#~ msgstr "പ്രതിരൂപം അടങ്ങുന്ന ഫയല്‍"
#~ msgid "name"
#~ msgstr "പേരു്"
#~ msgid "The name of the icon"
#~ msgstr "പ്രതിരൂപത്തിന്റെ പേരു്"
#~ msgid "names"
#~ msgstr "പേരുകള്‍"
#~ msgid "An array containing the icon names"
#~ msgstr "പ്രതിരൂപത്തിന്റെ പേരുകള്‍ അടങ്ങുന്ന ഒരു അറേ"
#~ msgid "use default fallbacks"
#~ msgstr "സ്വതവേയുള്ള ഫോള്‍ബാക്കുകള്‍ ഉപയോഗിക്കുക"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "'-' വഴി പേരു് ചെറുതാക്കി സ്വതവേയുള്ള ഫോള്‍ബാക്കുകള്‍ ഉപയോഗിക്കണമോ എന്നു്.അനവധി പേരുകള്‍ "
#~ "ഉണ്ടെങ്കില്‍ ആദ്യത്തേതിനു് ശേഷമുള്ള പേരുകള്‍ വേണ്ടെന്നു് വയ്ക്കുക."
#~ msgid "File descriptor"
#~ msgstr "ഫയല്‍ വിശദീകരണ സംവിധാനം"
#~ msgid "The file descriptor to read from"
#~ msgstr "വായിക്കുന്നതിനുള്ള ഫയല്‍ വിശദീകരണ സംവിധാനം"
#~ msgid "Close file descriptor"
#~ msgstr "ഫയല്‍ വിശദീകരണ സംവിധാനം അടയ്ക്കുക"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "സ്ട്രീം അടയ്ക്കുമ്പോള്‍, ഫയല്‍ വിശദീകരണ സംവിധാനം അടയ്ക്കണമോ എന്നു്"
#~ msgid "The file descriptor to write to"
#~ msgstr "എഴുതുന്നതിനുള്ള ഫയല്‍ വിശദീകരണ സംവിധാനം"

284
po/mn.po
View File

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -309,53 +309,32 @@ msgstr "»%s« файл нээгдэхгүй байна: fdopen() нурлаа:
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "»%s« файл нээгдэхгүй байна: fdopen() нурлаа: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "%d мөрөнд %d тэмдэгт алдаатай байна: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Хүчингүй UTF-8-р кодлогдсон текст"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "%d мөрөнд алдаа: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Хоосон абт »&;« олдлоо; хүчинтэй абтууд &amp; &quot; &lt; &gt; &apos; юм. "
"(абт=аский биш тэмдэгт)"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Абтын нэрийн эхлэлийн »%s« тэмдэгт хүчингүй; Абт & тэмдэгтээр эхэлдэг; Хэрвээ "
"энэ амперсаныг абт бишээр авах хэрэгтэй бол &amp; гэж бичнэ үү"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "»%s« тэмдэгт абтын нэрэнд хүчингүй"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Абтын нэр »%s« тодорхойгүй"
# CHECK
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Абт цэг таслалаар төгсөөгүй байна; Та магад амперсандыг абтын эхлэл бусаар "
"хэрэглэхийг хүссэн байх - Та &amp; гэж бичнэ үү"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -364,16 +343,7 @@ msgstr ""
"»%-.*s« тэмдэгтийн дотор тоо байх ёстой (&#234; шиг) , задлан ялгалд "
"танигдсангүй - магадгүй хэтэрхий том тоо байна уу"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "»%-.*s« тэмдэгт холбоос зөвшөөрөгдөөгүй тэмдэгтээр кодлогдсон байна"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Хоосон тэмдэгтийн холбоос; &#454; гэх мэт тоо агуулах ёстой"
#: glib/gmarkup.c:685
#: 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 "
@ -382,34 +352,37 @@ msgstr ""
"Тэмдэгт холбоос цэг таслалаар төгсөөгүй байна; Та магад амперсандыг абтын "
"эхлэл бусаар хэрэглэхийг хүссэн байх - Та &amp; гэж бичнэ үү"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Төгсгөлгүй абт холбоос"
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "»%-.*s« тэмдэгт холбоос зөвшөөрөгдөөгүй тэмдэгтээр кодлогдсон байна"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Төгсгөлгүй тэмдэгт холбоос"
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Хоосон абт »&;« олдлоо; хүчинтэй абтууд &amp; &quot; &lt; &gt; &apos; юм. "
"(абт=аский биш тэмдэгт)"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Хүчингүй UTF-8-р кодлогдсон текст"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Хүчингүй UTF-8-р кодлогдсон текст"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Хүчингүй UTF-8-р кодлогдсон текст"
msgid "Entity name '%-.*s' is not known"
msgstr "Абтын нэр »%s« тодорхойгүй"
#: glib/gmarkup.c:1168
# CHECK
#: 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 &amp;"
msgstr ""
"Абт цэг таслалаар төгсөөгүй байна; Та магад амперсандыг абтын эхлэл бусаар "
"хэрэглэхийг хүссэн байх - Та &amp; гэж бичнэ үү"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Баримт ямар нэгэн элементээр эхлэх ёстой (Ж.нь <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -418,7 +391,7 @@ msgstr ""
"»%s« нь »<«-тэмдэгтийн арын хүчингүй тэмдэгт; Энэ нь элементийн нэрээр эхэлж "
"болохгүй."
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -427,7 +400,7 @@ msgstr ""
"Сонин тэмдэгт »%s«, »%s« элементийн эхлэлийн тагийг хаахад »>« тэмдэгт дутуу "
"байна"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -435,7 +408,7 @@ msgstr ""
"Сонин тэмдэгт »%s«, »%s« элементийн »%s« аттрибутын нэрийн дараа »=« хүлээгдэж "
"байна"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -446,7 +419,7 @@ msgstr ""
"эсвэл харин »>« эсвэл »/« тэмдэгт хүлээгдэж байна; Магадгүй та аттрибутын "
"нэрэндээ хүчингүй тэмдэгт хэрэглэжээ"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -455,7 +428,7 @@ msgstr ""
"Сонин тэмдэгт »%s«; »%s« элементийн »%s« аттрибутын хувьд өгсөн утга тэнцүүгийн "
"тэмдэгийн дараах хашилтыг хүлээж байна"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -464,7 +437,7 @@ msgstr ""
"»%s« хүчингүй тэмдэгт, хэрвээ энэ нь »</« тэмдэгтийн ард орвол; »%s« "
"ньэлементийн нэрээр эхэлж болохгүй"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -473,25 +446,25 @@ msgstr ""
"»%s« хүчингүй тэмдэгт, хэрвээ энэ нь хааж буй »%s« элементийн нэрийн ард "
"байгаа бол; »>« тэмдэгт хүчинтэй"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "»%s« элемент хаагдсан, Одоогоор ямарч элемент нээлттэй бус байна"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "»%s« элемент хаагдсан, харин одоогоор »%s« элемент нээлттэй байна"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Баримт хоосон эсвэл зүгээр цагаан зай агуулж байна"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Баримт нээлттэй өнцөгтэй хаалт »<« -н дараа гэнэт төгсөв"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -500,7 +473,7 @@ msgstr ""
"Баримт нээлттэй элементүүдтэйгээр гэнэтийн байдлаар төгсөв - »%s« сүүлчийн "
"нээлттэй элемент нь"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -509,21 +482,21 @@ msgstr ""
"Баримт гэнэтийн байдлаар төгсөв, таг <%s/> -г хаах өнцөгтэй хаалт "
"»>«хүлээгдэж байна"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Баримт нэгэн элементийн нэрийн дотор гэнэтийн байдлаар төгсөв"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Баримт нэгэн аттрибут нэрийн дотор гэнэтийн байдлаар төгсөв"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"Баримт нээгдэж буй тагийн нэгэн элементийн нэрийн дотор гэнэтийн байдлаар "
"төгсөв."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -531,17 +504,17 @@ msgstr ""
"Баримт аттрибут нэрийн дараах тэнцүүгийн тэмдэгийн дараа гэнэтийн байдлаар "
"төгсөв; аттрибутын утга алга"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Баримт нэгэн аттрибутын утгын дотор гэнэтийн байдлаар төгсөв"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Баримт гэнэтийн байдлаар нэгэн хаагдаж буй »%s« элементийн тагийн дотор төгсөв"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Баримт тайлбар эсвэл заавар боловсруулалтын дотор гэнэтийн байдлаар төгсөв"
@ -992,61 +965,61 @@ msgstr "Хөрвүүлэлтийн оролтод хүчингүй дараал
msgid "Character out of range for UTF-16"
msgstr "UTF-16 хязгаараас гаднах тэмдэгт"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Хэрэглээ:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Тусламж:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Тусламж харуулах"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Бүх тусламж харуулах"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Програм:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, fuzzy, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "'%s' бүхэл тоог --%s -н хувьд шинжлэх боломжгүй"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "'%s' бүхэл %s -н хувьд хязгаараас хальжээ"
#: glib/goption.c:885
#: glib/goption.c:994
#, fuzzy, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "'%s' бүхэл тоог --%s -н хувьд шинжлэх боломжгүй"
#: glib/goption.c:893
#: glib/goption.c:1002
#, fuzzy, c-format
msgid "Double value '%s' for %s out of range"
msgstr "'%s' бүхэл %s -н хувьд хязгаараас хальжээ"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, fuzzy, c-format
msgid "Error parsing option %s"
msgstr "Хөрвүүлж байхад алдаа: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr ""
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Тодорхойгүй утга %s"
@ -1167,8 +1140,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1311,7 +1284,7 @@ msgstr "Символик холбоос дэмжигдээгүй"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1332,15 +1305,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "URI »%s« -н хостын нэр хүчингүй"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1753,55 +1717,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "URI »%s« -н хостын нэр хүчингүй"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Файл »%s« -ыг уншиж байхад алдаа: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1818,16 +1738,12 @@ msgstr "%d мөрөнд алдаа: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Хөрвүүлж байхад алдаа: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1866,6 +1782,46 @@ msgstr ""
msgid "[FILE...]"
msgstr "[OPTION...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Абтын нэрийн эхлэлийн »%s« тэмдэгт хүчингүй; Абт & тэмдэгтээр эхэлдэг; "
#~ "Хэрвээ энэ амперсаныг абт бишээр авах хэрэгтэй бол &amp; гэж бичнэ үү"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "»%s« тэмдэгт абтын нэрэнд хүчингүй"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Хоосон тэмдэгтийн холбоос; &#454; гэх мэт тоо агуулах ёстой"
#~ msgid "Unfinished entity reference"
#~ msgstr "Төгсгөлгүй абт холбоос"
#~ msgid "Unfinished character reference"
#~ msgstr "Төгсгөлгүй тэмдэгт холбоос"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Хүчингүй UTF-8-р кодлогдсон текст"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Хүчингүй UTF-8-р кодлогдсон текст"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "URI »%s« -н хостын нэр хүчингүй"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "URI »%s« -н хостын нэр хүчингүй"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Файл »%s« -ыг уншиж байхад алдаа: %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Хөрвүүлж байхад алдаа: %s"

310
po/mr.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib.HEAD.mr\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-09 19:28+0530\n"
"Last-Translator: Sandeep Shedmake <sandeep.shedmake@gmail.com>\n"
"Language-Team: marathi\n"
@ -298,51 +298,32 @@ msgstr "'%s' फाइल उघडण्यास अपयशी: open() अ
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' फाइल महत्व जुळवू शकले नाही: mmap() f: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "ओळ %d अक्षर %d वर त्रूटी आढळली: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "अवैध UTF-8 ऐनकोड पाठ्य - वैध '%s' नाही"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "ओळ %d वर त्रूटी: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"रिकामी वस्तु '&;' आढळली; वैध वस्तू याप्रकारे आहेत: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"वस्तुच्या सुरवातीस अक्षर '%s' वैध नाही ; वस्तुची सुरवात & अक्षर पासून होते; जर ऐम्परसेंड "
"वस्तु नसल्यास, त्यास &amp; या स्वरूपी करा"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "वस्तुच्या नावात अक्षर '%s' वैध राहत नाही"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "वस्तुचे नाव '%s' अपरिचीत आहे"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"वस्तू सेमीकोलनवर संपत नाही; शक्यतः तुम्ही वस्तुला सुरू करण्याकरीता &amp; स्वरूप न वापरता "
"ऐम्परसेंड अक्षर वापरले असावे"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -351,16 +332,7 @@ msgstr ""
"'%-.*s' वाचता आले नाही, जे अक्षर संदर्भच्या आत अंक म्हणून असायला हवे होते (उदाहर्णाथ "
"&#234;) - तसेच अंक खूप मोठे आहे"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "अक्षर संदर्भ '%-.*s' परवानगीय अक्षरास एनकोड करीत नाही"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "रिक्त अक्षर संदर्भात; &#454; सारखे अंक समाविष्टीत केले पाहीजे"
#: glib/gmarkup.c:685
#: 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,52 +341,55 @@ msgstr ""
"अक्षर संदर्भ सेमीकोलनवर संपत नाही; शक्यतः तुम्ही वस्तुला सुरू करण्याकरीता &amp; स्वरूप न "
"वापरता तुम्ही ऐम्परसेंड अक्षर वापरले असावे"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "अपूरे वस्तू संदर्भ"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "अपूरे अक्षर संदर्भ"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "अवैध UTF-8 ऐनकोड पाठ्य - अतिलांब श्रृंखला"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "अवैध UTF-8 ऐनकोड पाठ्य - प्रारंभ अक्षर नाही"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "अवैध UTF-8 ऐनकोड पाठ्य - वैध '%s' नाही"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "अक्षर संदर्भ '%-.*s' परवानगीय अक्षरास एनकोड करीत नाही"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"रिकामी वस्तु '&;' आढळली; वैध वस्तू याप्रकारे आहेत: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "वस्तुचे नाव '%s' अपरिचीत आहे"
#: 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 &amp;"
msgstr ""
"वस्तू सेमीकोलनवर संपत नाही; शक्यतः तुम्ही वस्तुला सुरू करण्याकरीता &amp; स्वरूप न वापरता "
"ऐम्परसेंड अक्षर वापरले असावे"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "दस्तऐवजची सुरवात घटकाशी व्हावी (उ.दा. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "'<' अक्षरानंतर '%s' वैध अक्षर नाही; त्यामुळे घटक नाव सुरू होऊ शकणार नाही"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr "असाधारण अक्षर '%1$s', रिकामे-घटक टॅग '%2$s' करीता '>' अक्षर अपेक्षीत"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "'%s' असाधारण अक्षर आहे, घटक '%s' च्या '%s' गुणधर्म नावानंतर '=' अपेक्षीत"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -425,7 +400,7 @@ msgstr ""
"अक्षर अपेक्षीत, किंवा पर्यायस्वरूपी गुणधर्म अपेक्षीत; तसेच तुम्ही गुणधर्म नावात अवैध अक्षर "
"वापरले"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -434,46 +409,46 @@ msgstr ""
"'%s' असाधारण अक्षर आहे, घटक '%s' च्या गुणधर्म '%s' करीता मुल्य प्रदान करतेवेळी समांतर "
"चिन्हा नंतर उघडे क्वोट अपेक्षीत"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, 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:1675
#: glib/gmarkup.c:1453
#, 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:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "घटक '%s' बंद केले गेले,कुठलेही घटक आता उघडे नाही"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "घटक '%s' बंद केले गेले, पण सद्या '%s' हे घटक उघडे आहे"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "दस्तऐवज रिकामे होते किंवा फक्त रिक्त जागा समाविष्टीत होती"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "उघडे कोन कंस '<' नंतरच दस्तऐवज अनपेक्षितरित्या समाप्त झाले"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr "घटक उघडे असूनही दस्तऐवज अनपेक्षितरित्या समाप्त झाले - '%s'शेवटचे उगडे घटक होते"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -482,19 +457,19 @@ msgstr ""
"दस्तऐवज अनपेक्षितरित्या समाप्त झाले, टॅग <%s/> ला बंद करण्याकरीता समाप्तीय कोन कंस "
"उपेक्षीत"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "घटकाच्या नावाअंतर्गत दस्तऐवज अनपेक्षितरित्या समाप्त झाले"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "गुणधर्माच्या नावाअंतर्गत दस्तऐवज अनपेक्षितरित्या समाप्त झाले"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "घटकाच्या-खुल्या टॅग अंतर्गत दस्तऐवज अनपेक्षितरित्या समाप्त झाले."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -502,16 +477,16 @@ msgstr ""
"गुणधर्म नावा पाठोपाठ समांतर चिन्हानंतर दस्तऐवज अनपेक्षितरित्या समाप्त झाले; गुणधर्माचे मुल्य "
"नाही"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "गुणधर्म मुल्यच्या अंतर्भूत राहतेवेळी दस्तऐवज अनपेक्षितरित्या समाप्त झाले"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "दस्तऐवज अनपेक्षितरित्या घटक '%s' करीता बंद टॅगच्या आत समाप्त झाले"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "दस्तऐवज अनपेक्षितरित्या टिप्पणी किंवा सुचनाचे विषलेशन करतेवेळी समाप्त झाले"
@ -947,61 +922,61 @@ msgstr "रूपांतर आगत मध्ये अवैध श्र
msgid "Character out of range for UTF-16"
msgstr "UTF-16 करीता अक्षर क्षेत्राच्या अंतर्गत नाही"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "वापर:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "माहिती पर्याय:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "मदत पर्याय दार्शवा"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "सर्व मदत पर्याय दर्शवा"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "अनुप्रयोग पर्याय:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "%2$s करीता संख्यात्मक मुल्य '%1$s' वाचता आले नाही"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "%2$s करीता संख्यात्मक मुल्य '%1$s' क्षेत्राच्या अंतर्गत नाही"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "%2$s करीता दुहेरी मुल्य '%1$s' वाचता आले नाही"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "%2$s करीता दुहेरी मुल्य '%1$s' क्षेत्राच्या अंतर्गत नाही"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "%s पर्याय वाचतेवेळी त्रूटी"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s करीता बाब आढळले नाही"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "अपरिचीत पर्याय %s"
@ -1121,8 +1096,8 @@ msgstr "%s करीता खूप मोठी प्रमाण संख
msgid "Stream is already closed"
msgstr "श्रृंखला आधिपासूनच बंद आहे"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "कार्य रद्द करण्यात आले"
@ -1262,7 +1237,7 @@ msgstr "कचरापेटी समर्थित नाही"
msgid "File names cannot contain '%c'"
msgstr "फाइल नावात '%c' असू शकत नाही"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "खंड आरोहन कार्यारत करत नाही"
@ -1283,14 +1258,6 @@ msgstr "फाइल ऐन्युमरेटरची अप्रतिम
msgid "File enumerator is already closed"
msgstr "फाइल ऐन्युमरेटर आधिपासूनच बंद आहे"
#: gio/gfileicon.c:145
msgid "file"
msgstr "फाइल"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "चिन्ह समाविष्ठीत फाइल"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1699,55 +1666,11 @@ msgstr "आगत श्रृंखला लिहीतायेण्या
msgid "Source stream is already closed"
msgstr "स्त्रोत श्रृंखला आधिपासून बंद"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "नाव"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "चिन्हाचे नाव"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "नाव"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "चिन्ह नाव समाविष्ठीत अर्रे"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "मुलभूत फॉलबॅक वापरा"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"'-' चा वापर करून आढळलेले संकुचीत नाव करीता मुलभूत फॉलबॅक वापरायचे. एकापेक्षा जास्त नाव "
"प्रविष्ट केले असल्यास प्रथम नावानंतर आढळलेली नाव दुर्लक्ष करा."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "GThemedIcon एनकोडींगची आवृत्ती %d हाताळू शकत नाही"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "फाइल डिस्क्रीप्टर"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "वाचण्याजोगी फाइल डिस्क्रीप्टर"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "फाइल वर्णनकर्ता बंद करा"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "स्ट्रीम बंद केल्यावर फाइल डिस्क्रीप्टर बंद करायचे"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1764,16 +1687,12 @@ msgstr "unix बंद करतेवेळी त्रूटी: %s"
msgid "Filesystem root"
msgstr "रूट फाइलप्रणाली"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "लेखनजोगी फाइल डिस्क्रीप्टर"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "unixकरीता लिहितेवेळी त्रूटी: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "खंड बाहेर कडा कार्यन्वीत होत नाही"
@ -1809,3 +1728,72 @@ msgstr "लांब यादी स्वरूप वापरा"
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[FILE...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "वस्तुच्या सुरवातीस अक्षर '%s' वैध नाही ; वस्तुची सुरवात & अक्षर पासून होते; जर ऐम्परसेंड "
#~ "वस्तु नसल्यास, त्यास &amp; या स्वरूपी करा"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "वस्तुच्या नावात अक्षर '%s' वैध राहत नाही"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "रिक्त अक्षर संदर्भात; &#454; सारखे अंक समाविष्टीत केले पाहीजे"
#~ msgid "Unfinished entity reference"
#~ msgstr "अपूरे वस्तू संदर्भ"
#~ msgid "Unfinished character reference"
#~ msgstr "अपूरे अक्षर संदर्भ"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "अवैध UTF-8 ऐनकोड पाठ्य - अतिलांब श्रृंखला"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "अवैध UTF-8 ऐनकोड पाठ्य - प्रारंभ अक्षर नाही"
#~ msgid "file"
#~ msgstr "फाइल"
#~ msgid "The file containing the icon"
#~ msgstr "चिन्ह समाविष्ठीत फाइल"
#~ msgid "name"
#~ msgstr "नाव"
#~ msgid "The name of the icon"
#~ msgstr "चिन्हाचे नाव"
#~ msgid "names"
#~ msgstr "नाव"
#~ msgid "An array containing the icon names"
#~ msgstr "चिन्ह नाव समाविष्ठीत अर्रे"
#~ msgid "use default fallbacks"
#~ msgstr "मुलभूत फॉलबॅक वापरा"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "'-' चा वापर करून आढळलेले संकुचीत नाव करीता मुलभूत फॉलबॅक वापरायचे. एकापेक्षा जास्त "
#~ "नाव प्रविष्ट केले असल्यास प्रथम नावानंतर आढळलेली नाव दुर्लक्ष करा."
#~ msgid "File descriptor"
#~ msgstr "फाइल डिस्क्रीप्टर"
#~ msgid "The file descriptor to read from"
#~ msgstr "वाचण्याजोगी फाइल डिस्क्रीप्टर"
#~ msgid "Close file descriptor"
#~ msgstr "फाइल वर्णनकर्ता बंद करा"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "स्ट्रीम बंद केल्यावर फाइल डिस्क्रीप्टर बंद करायचे"
#~ msgid "The file descriptor to write to"
#~ msgstr "लेखनजोगी फाइल डिस्क्रीप्टर"

288
po/ms.po
View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -296,53 +296,32 @@ msgstr "Gagal membuka fail '%s': fdopen() gagal: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Gagal membuka fail '%s': fdopen() gagal: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Ralat pada baris %d aksara %d: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Teks terenkod UTF-8 tidak sah"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Ralat pada baris %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Entiti kosong '&;' kelihatan; entiti sah ialah : &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Aksara '%s' adalah tidak sah pada permulaan nama entiti; aksara '&' "
"memulakan entiti; jika & tidak disokong untuk dijadikan entiti, escapekan "
"sebagai &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Aksara '%s' adalah tidak sah di dalam nama entiti"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Nama entiti '%s' tidak diketahui"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entiti tidak berakhir dengan titik bertindih; mungkin anda gunakan aksara "
"'&' tanpa menyedari untuk memulakan entiti - escape & sebagai &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, fuzzy, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -351,16 +330,7 @@ msgstr ""
"gagal menghantar '%s', yang sepatutnya satu digit didalam satu rujukan "
"aksara (&#234; sebagai contoh) - mungkin digit terlalu besar"
#: glib/gmarkup.c:660
#, fuzzy, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Rujukan aksara '%s' tidak mengenkodkan aksara yang diizini"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Rujukan aksara kosong; sepatutnya disertakan digit seperti &#454;"
#: glib/gmarkup.c:685
#: 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,34 +339,36 @@ msgstr ""
"Rujukan aksara tidak berakhir dengan semicolon; agaknya anda menggunakan "
"aksara '&' tanpa niat untuk memulakan entiti - escapekan & sebagai &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Rujukan entiti tidak tamat"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Rujukan aksara tidak tamat"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Teks terenkod UTF-8 tidak sah"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Teks terenkod UTF-8 tidak sah"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Teks terenkod UTF-8 tidak sah"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Rujukan aksara '%s' tidak mengenkodkan aksara yang diizini"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Entiti kosong '&;' kelihatan; entiti sah ialah : &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Nama entiti '%s' tidak diketahui"
#: 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 &amp;"
msgstr ""
"Entiti tidak berakhir dengan titik bertindih; mungkin anda gunakan aksara "
"'&' tanpa menyedari untuk memulakan entiti - escape & sebagai &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumen mesti dimulakan dengan unsur (e.g. <buku>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -405,7 +377,7 @@ msgstr ""
"'%s' adalah bukan aksara sah diikuti sengan aksara '<'; ia tidak sepatutnya "
"bermula dengan nama unsur"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -414,14 +386,14 @@ msgstr ""
"Aksara ganjil '%s', dijangkakan aksara '>' untuk mengakhiri tag permulaan "
"unsur '%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"Aksara ganjil '%s', dijangkakan '=' selepas nama atribut '%s' unsur '%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -432,7 +404,7 @@ msgstr ""
"permulaan unsur '%s', atau atribut; meungkin anda gunakan aksara tidak sah "
"pada nama atribut"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -441,7 +413,7 @@ msgstr ""
"Aksara ganjil '%s', menjangka tanda petikan membuka selepas tanda = bila "
"memberi nilai atribut untuk '%s' unsur '%s' "
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -450,7 +422,7 @@ msgstr ""
"'%s' adalah bukan aksara sah diikuti aksara '</'; '%s' tak boleh memulakan "
"nama unsur"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -459,25 +431,25 @@ msgstr ""
"'%s' adalah bukan aksara sah diikuti dengan nama unsur penutup '%s'; aksara "
"yang diizinkan ialah '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Unsur '%s' telah ditutup, tiada unsur yang dibuka"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Unsur '%s' telah ditutup, tetapi unsur yang dibuka adalah '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Dokumen kosong atau hanya menandungi ruangputih"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokumen berakhir tanpa diduga sebaik selepas membuka '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -486,26 +458,26 @@ msgstr ""
"Dokumen berakhir tanpa diduga dengan unsur yang masih dibuka - '%s' adalah "
"unsur dibuka"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr "Dokumen berakhir tanpa diduga, menjangkai tag <%s/> pada hujungnya"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumen berakhir tanpa diduga di dalam nama unsur"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokumen berakhir tanpa diduga di dalam nama atribut"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokumen berakhir tanpa diduga di dalam tag element-opening"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -513,16 +485,16 @@ msgstr ""
"Dokumen berakhir tanpa diduga selepas tanda '=' diikuti dengan nama atribut; "
"tiana nilai atribut"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokumen berakhir tanpa diduga semasa di dalam nilai atribut"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Dokumen berakhir tanpa diduga di dalam tag tertutup untuk unsur '%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Dokumen berakhir tanpa diduga di dalam komen atau memproses arahan"
@ -968,61 +940,61 @@ msgstr "Turutan tidak sah semasa penukaran input"
msgid "Character out of range for UTF-16"
msgstr "Aksara di luar julat UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr ""
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr ""
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr ""
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr ""
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr ""
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr ""
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr ""
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, fuzzy, c-format
msgid "Error parsing option %s"
msgstr "Ralat semasa penukaran: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr ""
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr ""
@ -1139,8 +1111,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1282,7 +1254,7 @@ msgstr "Pautan simbolik tidak disokong"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1303,15 +1275,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Namahos URI '%s' tidak sah"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1723,55 +1686,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "Namahos URI '%s' tidak sah"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Ralat membaca fail '%s': %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1788,16 +1707,12 @@ msgstr "Ralat pada baris %d: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Ralat semasa penukaran: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1835,6 +1750,47 @@ msgstr ""
msgid "[FILE...]"
msgstr ""
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Aksara '%s' adalah tidak sah pada permulaan nama entiti; aksara '&' "
#~ "memulakan entiti; jika & tidak disokong untuk dijadikan entiti, escapekan "
#~ "sebagai &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Aksara '%s' adalah tidak sah di dalam nama entiti"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Rujukan aksara kosong; sepatutnya disertakan digit seperti &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Rujukan entiti tidak tamat"
#~ msgid "Unfinished character reference"
#~ msgstr "Rujukan aksara tidak tamat"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Teks terenkod UTF-8 tidak sah"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Teks terenkod UTF-8 tidak sah"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Namahos URI '%s' tidak sah"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "Namahos URI '%s' tidak sah"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Ralat membaca fail '%s': %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Ralat semasa penukaran: %s"

314
po/nb.po
View File

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib 2.16.x\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-17 09:17+0100\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian bokmal <i18n-nb@lister.ping.uio.no>\n"
@ -298,53 +298,32 @@ msgstr "Kunne ikke åpne fil «%s»: open() feilet: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Kunne ikke lese fil «%s» inn i minnet: mmap() feilet: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Feil på linje %d tegn %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Ugyldig UTF-8 kodet tekst - ikke gyldig «%s»"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Feil på linje %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Tom entitet «&;» funnet; gyldige entiteter er: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Tegn «%s» er ikke gyldig ved starten på navnet til en entitet; &-tegnet "
"starter en entitet; hvis dette og-tegnet ikke er ment å være en entitet, "
"unngå dette ved å bruke &amp; i stedet"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Tegn «%s» er ikke gyldig inne i et entitetsnavn"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entitetsnavn «%s» er ikke kjent"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entiteten sluttet ikke med et semikolon; du har sannsynligvis brukt et og-"
"tegn uten at det var ment å starte en entitet - ungå ved å bruke &amp; i "
"stedet"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -353,16 +332,7 @@ msgstr ""
"Feil under lesing av «%-.*s», som skulle vært et tall inne i en tegnreferanse "
"(&#234; for eksempel) - tallet er muligens for stort"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Tegnreferanse «%-.*s» koder ikke et tillatt tegn"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Tom tegnreferanse; skulle inkludert et tall slik som &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -372,32 +342,36 @@ msgstr ""
"og-tegn uten at det var ment å starte en entitet - unngå ved å bruke &amp; i "
"stedet"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Uferdig referanse til entitet"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Uferdig referanse til tegn"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Ugyldig UTF-8 kodet tekst - for lang sekvens"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Ugyldig UTF-8 kodet tekst - ikke et starttegn"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Ugyldig UTF-8 kodet tekst - ikke gyldig «%s»"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Tegnreferanse «%-.*s» koder ikke et tillatt tegn"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Tom entitet «&;» funnet; gyldige entiteter er: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Entitetsnavn «%s» er ikke kjent"
#: 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 &amp;"
msgstr ""
"Entiteten sluttet ikke med et semikolon; du har sannsynligvis brukt et og-"
"tegn uten at det var ment å starte en entitet - ungå ved å bruke &amp; i "
"stedet"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumentet må starte med et element (f.eks <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -406,7 +380,7 @@ msgstr ""
"«%s» er ikke et gyldig tegn etter en «<» tegn; det kan ikke være begynnelsen "
"på et elementnavn"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -415,13 +389,13 @@ msgstr ""
"Rart tegn «%s», forventet et «>» tegn for å avslutte start-taggen til det "
"tomme elementet «%s»"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "Rart tegn «%s», forventet et «=» etter attributtnavn «%s» for element «%s»"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -432,7 +406,7 @@ msgstr ""
"element «%s», eller alternativt en attributt; kanskje du brukte et ugyldig "
"tegn i attributtnavnet"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -441,7 +415,7 @@ msgstr ""
"Rart tegn «%s», ventet et åpent sitattegn etter likhetstegnet når verdi for "
"attributt «%s» for element «%s» oppgis"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -450,7 +424,7 @@ msgstr ""
"«%s» er ikke et gyldig tegn etter tegnene «</»; «%s» er kanskje ikke "
"begynnelsen på et elementnavn"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -459,25 +433,25 @@ msgstr ""
"«%s» er ikke et gyldig tegn etter element for lukking med navn «%s»; tillatt "
"tegn er «>»"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element «%s» ble lukket, ingen åpne elementer nå"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Element «%s» ble lukket, men aktivt åpent element er «%s»"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Dokumentet var tomt eller inneholdt kun blanke tegn"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokumentet sluttet uventet rett etter en åpen vinkelparantes «<»"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -485,7 +459,7 @@ msgid ""
msgstr ""
"Dokumentet sluttet uventet med åpne elementer - «%s» var siste åpne element"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -494,19 +468,19 @@ msgstr ""
"Dokumentet sluttet uventet, forventet å se en vinkelparantes for å slutte av "
"den siste taggen <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumentet sluttet uventet inni et elementnavn"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokumentet sluttet uventet inni et attributtnavn"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokumentet sluttet uventet inni en tagg for åpning av element."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -514,16 +488,16 @@ msgstr ""
"Dokumentet sluttet uventet etter likhetstegnet som følger et attributtnavn; "
"ingen attributtverdi"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokumentet sluttet uventet inni en attributtverdi"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Dokumentet sluttet uventet inni tagg for lukking av element «%s»"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokumentet sluttet uventet inni en kommentar eller prosesseringsinstruksjon"
@ -966,61 +940,61 @@ msgstr "Ugyldig sekvens i inndata for konvertering"
msgid "Character out of range for UTF-16"
msgstr "Tegn utenfor gyldig område for UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Bruk:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[FLAGG...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Flagg for hjelp:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Vis flagg for hjelp"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Vis alle flagg for hjelp"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Flagg for applikasjonen"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Kan ikke lese heltallsverdi «%s» for %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Heltallsverdi «%s» for %s er utenfor gyldig område"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Kan ikke lese verdi for double «%s» for %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Double-verdi «%s» for %s er utenfor gyldig område"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Feil under tolking av flagg %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Mangler argument for %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Ukjent flagg %s"
@ -1142,8 +1116,8 @@ msgstr "Tellerverdi gitt til %s er for stor"
msgid "Stream is already closed"
msgstr "Strømmen er allerede lukket"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Operasjonen ble avbrutt"
@ -1283,7 +1257,7 @@ msgstr "Papirkurv er ikke støttet"
msgid "File names cannot contain '%c'"
msgstr "Filnavn kan ikke inneholde «%c»"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "volumet implementerer ikke montering"
@ -1304,14 +1278,6 @@ msgstr "Filenumerator har utestående operasjon"
msgid "File enumerator is already closed"
msgstr "Filenumerator er allerede lukket"
#: gio/gfileicon.c:145
msgid "file"
msgstr "fil"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "Filen med navnet på ikonet"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1720,55 +1686,11 @@ msgstr "Ut-strømmen implementerer ikke skriving"
msgid "Source stream is already closed"
msgstr "Kildestrømmen er allerede lukket"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "navn"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Navn på ikonet"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "navn"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "En tabell som inneholder navn på ikoner"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "bruk forvalgte reserveverdier"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Om forvalgte verdier som finnes ved å avkorte navnet ved «-»-tegn skal "
"brukes. Overser navn etter første deletegn hvis flere navn oppgis."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Kan ikke håndtere versjon %d av GThemedIcon-koding"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Fildeskriptor"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "Fildeskriptor det skal leses fra"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Lukk fildeskriptor"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "Om fildeskriptoren skal lukkes når strømmen lukkes"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1785,16 +1707,12 @@ msgstr "Feil ved lukking av unix: %s"
msgid "Filesystem root"
msgstr "Filsystemrot"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "Fildeskriptor det skal skrives til"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Feil ved skriving til unix: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "volumet implementerer ikke utløsing"
@ -1830,3 +1748,73 @@ msgstr "bruk langt listeformat"
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[FIL...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Tegn «%s» er ikke gyldig ved starten på navnet til en entitet; &-tegnet "
#~ "starter en entitet; hvis dette og-tegnet ikke er ment å være en entitet, "
#~ "unngå dette ved å bruke &amp; i stedet"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Tegn «%s» er ikke gyldig inne i et entitetsnavn"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Tom tegnreferanse; skulle inkludert et tall slik som &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Uferdig referanse til entitet"
#~ msgid "Unfinished character reference"
#~ msgstr "Uferdig referanse til tegn"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Ugyldig UTF-8 kodet tekst - for lang sekvens"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Ugyldig UTF-8 kodet tekst - ikke et starttegn"
#~ msgid "file"
#~ msgstr "fil"
#~ msgid "The file containing the icon"
#~ msgstr "Filen med navnet på ikonet"
#~ msgid "name"
#~ msgstr "navn"
#~ msgid "The name of the icon"
#~ msgstr "Navn på ikonet"
#~ msgid "names"
#~ msgstr "navn"
#~ msgid "An array containing the icon names"
#~ msgstr "En tabell som inneholder navn på ikoner"
#~ msgid "use default fallbacks"
#~ msgstr "bruk forvalgte reserveverdier"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Om forvalgte verdier som finnes ved å avkorte navnet ved «-»-tegn skal "
#~ "brukes. Overser navn etter første deletegn hvis flere navn oppgis."
#~ msgid "File descriptor"
#~ msgstr "Fildeskriptor"
#~ msgid "The file descriptor to read from"
#~ msgstr "Fildeskriptor det skal leses fra"
#~ msgid "Close file descriptor"
#~ msgstr "Lukk fildeskriptor"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "Om fildeskriptoren skal lukkes når strømmen lukkes"
#~ msgid "The file descriptor to write to"
#~ msgstr "Fildeskriptor det skal skrives til"

282
po/ne.po
View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib.glib-2-10.ne\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -303,52 +303,32 @@ msgstr "'%s' फाइल खोल्न असफल : खोल्न() अ
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' फाइल नक्सा असफल : m नक्सा() असफल : %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "लाइन %d क्यारेक्टर %d मा त्रुटि: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "अवैध UTF-8 सङ्केतन गरिएको पाठ"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "लाइन %d मा त्रुटि: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"खाली अस्तित्व '&;' देखियो; वैध अस्तित्वहरू निम्न हुन : &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"अस्तित्व नामको सुरुमा क्यारेक्टर '%s' वैध हुँदैन ; & क्यारेक्टरले एउटा अस्तित्वा सुरु गर्दछ ; "
"यदि यो एम्परस्यान्ड भएमा एउटा अस्तित्वको रूपमा मानिँदैन,यसलाई &amp; को रूपमा परित्याग "
"गर्नुहोस्"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "अस्तित्व नाम भित्रको क्यारेक्टर '%s' वैध छैन"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "अस्तित्व नाम '%s' ज्ञात होइन"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"अस्तित्व अर्धविराममा सकिएन; तपाईँले धेरैजसो ऐम्परसेण्ड क्यारेक्टरबाट एउटा अस्तित्व सुरु गर्नको "
"लागि प्रयास नगरिकन सुरु गर्नुभयो - &amp; को रूपमा ऐम्परसेंन्ड निकास गर्नुहोस्"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -357,16 +337,7 @@ msgstr ""
"'%-*s' पद वर्णन गर्न सकिएन, जुन एउटा क्यारेक्टर सन्दर्भ (उदाहरणका लागि; &#234) हुनु "
"पर्थ्यो - संभवत अङ्क ज्यादै ठूलो छ"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "क्यारेक्टर सन्दर्भ '%-.*s' ले स्वीकृत क्यारेक्टरको सङ्केतन गर्दैन "
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "खाली क्यारेक्टर सन्दर्भ, &#454 जस्तो अङ्क समाहित हुनुपर्छ"
#: glib/gmarkup.c:685
#: 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 "
@ -375,34 +346,35 @@ msgstr ""
"क्यारेक्टर सन्दर्भ अर्धविराममा सकिएन;तपाईँले धेरैजसो ऐम्परसेण्ड क्यारेक्टरबाट एउटा अस्तित्व सुरु "
"गर्नका लागि प्रयास नगरिकन सुरु गर्नुभयो - &amp; को रूपमा ऐम्परसेंन्ड निकास गर्नुहोस्"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "अधुरो अस्तित्व सन्दर्भ"
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "क्यारेक्टर सन्दर्भ '%-.*s' ले स्वीकृत क्यारेक्टरको सङ्केतन गर्दैन "
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "अधुरो क्यारेक्टर सन्दर्भ"
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"खाली अस्तित्व '&;' देखियो; वैध अस्तित्वहरू निम्न हुन : &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "अवैध UTF-8 सङ्केतन गरिएको पाठ"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "अवैध UTF-8 सङ्केतन गरिएको पाठ"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "अवैध UTF-8 सङ्केतन गरिएको पाठ"
msgid "Entity name '%-.*s' is not known"
msgstr "अस्तित्व नाम '%s' ज्ञात होइन"
#: glib/gmarkup.c:1168
#: 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 &amp;"
msgstr ""
"अस्तित्व अर्धविराममा सकिएन; तपाईँले धेरैजसो ऐम्परसेण्ड क्यारेक्टरबाट एउटा अस्तित्व सुरु गर्नको "
"लागि प्रयास नगरिकन सुरु गर्नुभयो - &amp; को रूपमा ऐम्परसेंन्ड निकास गर्नुहोस्"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "कागजात एउटा तत्व बाट सुरु हुनैपर्छ (जस्तै: <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -411,7 +383,7 @@ msgstr ""
"एउटा '<' क्यारेक्टर पछ्याउन '%s' वैधानिक क्यारेक्टर होइन; यस्ले एउटा तत्व नाम प्रारम्भ "
"नगर्न सक्छ"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -420,13 +392,13 @@ msgstr ""
"बिजोड क्यारेक्टर '%s', एउटा अपेक्षा गरिएको क्यारेक्टर '>', '%s' को सुरु ट्याग अन्त्य "
"गर्नलाइ"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "विजोड क्यारेक्टर '%s' ले,'%s' तत्वको गुण नाम '%s' पछि अपेक्षा गरिएको एउटा '=' "
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -437,7 +409,7 @@ msgstr ""
"'/' क्यारेक्टर, वा वैकल्पिक रूपमा एउटा विशेषता ,सायद तपाईँले एउटा विशेषता नाममा अवैध "
"क्यारेक्टर प्रयोग गर्नुभयो"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -446,7 +418,7 @@ msgstr ""
"बिजोड क्यारेक्टर '%s',तत्व '%s' को '%s' विशेषताका लागि मान दिइएको बेला बराबर चिन्ह "
"पछि खुला उद्धरण चिन्हको अपेक्षा गरेको हुन्छ।"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -455,7 +427,7 @@ msgstr ""
"'%s' एउटा वैध क्यारेक्टर होइन निम्न क्यारेक्टरहरू '</'; '%s' एउटा तत्व नाम प्रारम्भ नगर्न "
"सक्छन"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -464,32 +436,32 @@ msgstr ""
"बन्द तत्व नाम '%s' को पछि लाग्ने '%s' मान्य क्यारेक्टर होइन; अनुमति पाएको क्यारेक्टर '>' "
"हो।"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "तत्व '%s' बन्द थियो, हाल कुनै तत्व खुलेको छैन"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "तत्व '%s' बन्द थियो, तर हाल खुला तत्व '%s' हो"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "कागजात खाली छ वा सेतो खाली स्थान मात्र राखिएको छ"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "एउटा खुल्ला कोण कोष्ठ पछि '<' कागजात अनपेक्षित रूपले समाप्त भयो।"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr "'%s' खोलिएको अन्तिम तत्व संगकागजात अप्रत्याशित रूपले समाप्त भयो।"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -498,19 +470,19 @@ msgstr ""
"कागजपत्र अप्रत्याशित रूपले समाप्त भयो, ट्याग <%s/> को अन्तमा बन्द कोण कोष्ठको अपेक्षा "
"गर्दछ।"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "तत्व नाम भित्र कागजात अपेक्षित रूपले समाप्त भयो।"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "विशेषता नाम भित्र कागजात अपेक्षित रूपले समाप्त भयो।"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "तत्व-खुल्ला ट्याग भित्र कागजात अपेक्षित रूपले समाप्त भयो।"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -518,16 +490,16 @@ msgstr ""
"बिशेषता नाम पछ्याउन बराबर चिन्ह पछि कागजातपत्र अप्रत्याशित रूपले समाप्त भयो; गुण मान "
"होइन"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "गुण मान भित्र भएको बेला कागजपत्र अप्रत्याशित रूपले समाप्त भयो"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "तत्व '%s' का लागि बन्द ट्याग भित्र कागजात अनपेक्षित रूपले समाप्त भयो।"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "एउटा टिप्पणी वा प्रक्रिया निर्देशन भित्र कागजपत्र अप्रत्याशित रूपले समाप्त भयो"
@ -969,61 +941,61 @@ msgstr "रूपान्तरण आगतमा अवैध अनुक्
msgid "Character out of range for UTF-16"
msgstr "UTF-16 का लागि क्यारेक्टर दायरा भन्दा बाहिर छ"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "प्रयोग:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "मद्दत विकल्पहरू:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "मद्दत विकल्पहरू देखाउनुहोस्"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "सबै मद्दत विकल्पहरू देखाउनुहोस्"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "अनुप्रयोग विकल्पहरू:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "%s का लागि इन्टेजर मान %s को पद वर्णन गर्न सक्दैन"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "इन्टेजर मान '%s' %s का लागि दायरा भन्दा बाहिर छ"
#: glib/goption.c:885
#: glib/goption.c:994
#, fuzzy, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "%s का लागि इन्टेजर मान %s को पद वर्णन गर्न सक्दैन"
#: glib/goption.c:893
#: glib/goption.c:1002
#, fuzzy, c-format
msgid "Double value '%s' for %s out of range"
msgstr "इन्टेजर मान '%s' %s का लागि दायरा भन्दा बाहिर छ"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "पद वर्णन विकल्पमा त्रुटि %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s का छुटेको तर्क"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "अज्ञात विकल्प %s"
@ -1142,8 +1114,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1286,7 +1258,7 @@ msgstr "सांकेतिक सम्बन्ध समर्थन गर
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1307,15 +1279,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "URI '%s' को होस्टनाम अवैध छ"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1728,55 +1691,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "URI '%s' को होस्टनाम अवैध छ"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "'%s' फाइल पढ्दा त्रुटि : %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1793,16 +1712,12 @@ msgstr "लाइन %d मा त्रुटि: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "पद वर्णन विकल्पमा त्रुटि %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1841,6 +1756,47 @@ msgstr ""
msgid "[FILE...]"
msgstr "[OPTION...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "अस्तित्व नामको सुरुमा क्यारेक्टर '%s' वैध हुँदैन ; & क्यारेक्टरले एउटा अस्तित्वा सुरु गर्दछ ; "
#~ "यदि यो एम्परस्यान्ड भएमा एउटा अस्तित्वको रूपमा मानिँदैन,यसलाई &amp; को रूपमा "
#~ "परित्याग गर्नुहोस्"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "अस्तित्व नाम भित्रको क्यारेक्टर '%s' वैध छैन"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "खाली क्यारेक्टर सन्दर्भ, &#454 जस्तो अङ्क समाहित हुनुपर्छ"
#~ msgid "Unfinished entity reference"
#~ msgstr "अधुरो अस्तित्व सन्दर्भ"
#~ msgid "Unfinished character reference"
#~ msgstr "अधुरो क्यारेक्टर सन्दर्भ"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "अवैध UTF-8 सङ्केतन गरिएको पाठ"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "अवैध UTF-8 सङ्केतन गरिएको पाठ"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "URI '%s' को होस्टनाम अवैध छ"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "URI '%s' को होस्टनाम अवैध छ"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "'%s' फाइल पढ्दा त्रुटि : %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "पद वर्णन विकल्पमा त्रुटि %s"

331
po/nl.po
View File

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -323,53 +323,32 @@ msgstr "Openen van bestand %s is mislukt: open() is mislukt: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Openen van bestand %s is mislukt: mmap() is mislukt: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Fout in regel %d teken %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Ongeldige UTF-8-gecodeerde tekst - niet geldig %s"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Fout in regel %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Lege entiteit &; gevonden; geldige entiteiten zijn: &amp; &quot; &lt; "
"&gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Teken %s is niet geldig aan het begin van een entiteitnaam; het &-teken "
"begint een entiteit; indien dat niet de bedoeling is, gebruik dan &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Het teken %s is niet geldig in een entiteitnaam"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entiteitnaam %s is niet bekend"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"De entiteit eindigde niet op een puntkomma; waarschijnlijk heeft u een "
"ampersand-teken gebruikt zonder daarmee een entiteit te willen beginnen - "
"gebruik in plaats daarvan &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -378,17 +357,7 @@ msgstr ""
"Verwerken van %-.*s is mislukt, hetgeen een getal in een tekenreferentie "
"zou moeten zijn (bijvoorbeeld &#234;) - misschien is het getal te groot"
# niet geoorloofd/toegestaan/ongeoorloofd
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Tekenreferentie %-.*s staat niet voor een geoorloofd teken"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Lege tekenreferentie; ze zou een getal moeten bevatten, zoals &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -398,33 +367,38 @@ msgstr ""
"ampersand-teken gebruikt zonder daarmee een entiteit te willen beginnen - "
"gebruik in plaats daarvan &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Onbeëindigde entiteitreferentie"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Onbeëindigde tekenreferentie"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Ongeldige UTF-8-gecodeerde tekst - de reeks is te lang"
# het is geen startteken/er is geen startteken
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Ongeldige UTF-8-gecodeerde tekst - geen startteken"
#: glib/gmarkup.c:1130
# niet geoorloofd/toegestaan/ongeoorloofd
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Ongeldige UTF-8-gecodeerde tekst - niet geldig %s"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Tekenreferentie %-.*s staat niet voor een geoorloofd teken"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Lege entiteit &; gevonden; geldige entiteiten zijn: &amp; &quot; &lt; "
"&gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Entiteitnaam %s is niet bekend"
#: 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 &amp;"
msgstr ""
"De entiteit eindigde niet op een puntkomma; waarschijnlijk heeft u een "
"ampersand-teken gebruikt zonder daarmee een entiteit te willen beginnen - "
"gebruik in plaats daarvan &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Het document moet beginnen met een element (bijv. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -432,7 +406,7 @@ msgid ""
msgstr ""
"%s is geen geldig teken na <; een elementnaam mag er niet mee beginnen"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -441,7 +415,7 @@ msgstr ""
"Onverwacht teken %s, er werd een >-teken verwacht om de ledig-element-"
"tag %s af te sluiten"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -449,7 +423,7 @@ msgstr ""
"Onverwacht teken %s, er werd een = verwacht na de attribuutnaam %s van "
"element %s"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -460,7 +434,7 @@ msgstr ""
"start-tag van element %s af te sluiten, of eventueel een attribuut; "
"misschien heeft u ongeldige tekens gebruikt in een attribuutnaam"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -469,7 +443,7 @@ msgstr ""
"Onverwacht teken %s, er werd een \"-teken verwacht na het =-teken bij "
"de attribuutwaarde van %s in element %s"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -477,7 +451,7 @@ msgid ""
msgstr ""
"%s is geen geldig teken na </; een elementnaam mag niet met %s beginnen"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -486,25 +460,25 @@ msgstr ""
"%s is geen geldig teken na de elementnaam %s in de afluitingstag; het "
"teken dat toegestaan is is > "
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element %s is afgesloten, er is nu geen enkel element open"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Element %s is afgesloten, maar op dit moment is element %s open"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Het document was leeg of bevatte slechts lege ruimte"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Het document eindigde onverwacht na een openingshaakje: <"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -513,7 +487,7 @@ msgstr ""
"Het document eindigde onverwacht met niet-afgesloten elementen - %s is het "
"laatstgeopende element"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -522,19 +496,19 @@ msgstr ""
"Het document eindigde onverwacht, er werd een sluithaakje (>) verwacht "
"voor de tag <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Het document eindigde onverwacht in een elementnaam"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Het document eindigde onverwacht in een attribuutnaam"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Het document eindigde onverwacht in een element-openingstag."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -542,17 +516,17 @@ msgstr ""
"Het document eindigde onverwacht na een =-teken dat op een attribuutnaam "
"volgde; geen attribuutwaarde"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Het document eindigde onverwacht in een attribuutwaarde"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Het document eindigde onverwacht in een een afsluitingstag voor element %s"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Het document eindigde onverwacht in commentaar of een bewerkingsinstructie"
@ -1023,62 +997,62 @@ msgstr "Ongeldige reeks in conversieinvoer"
msgid "Character out of range for UTF-16"
msgstr "Teken valt buiten het bereik van UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Gebruik:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTIE...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Hulpopties:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Deze hulptekst tonen"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Alle hulpteksten tonen"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Programmaopties:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Kan het geheel getal %s voor %s niet verwerken"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Het geheel getal %s voor %s valt buiten het bereik"
# integer-double
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Kan het lange geheel getal %s voor %s niet verwerken"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Het lange geheel getal %s voor %s valt buiten het bereik"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Fout bij verwerken van optie %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Ontbrekend argument voor %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Onbekende optie %s"
@ -1205,8 +1179,8 @@ msgstr "De telwaarde die aan %s werd gegeven is te groot"
msgid "Stream is already closed"
msgstr "De stroom is al gesloten"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "De bewerking werd afgebroken"
@ -1358,7 +1332,7 @@ msgstr "Prullenbak wordt ondersteund"
msgid "File names cannot contain '%c'"
msgstr "Het teken %c mag niet in een bestandsnaam voorkomen"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "volumen begrijpt de opdracht aankoppelen niet"
@ -1381,15 +1355,6 @@ msgstr "Bestandsteller bevat een lopende bewerking"
msgid "File enumerator is already closed"
msgstr "Bestandsteller is al gesloten"
#: gio/gfileicon.c:145
msgid "file"
msgstr "bestand"
# dat het pictogram bevat/met het pictogram
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "Een bestand met het pictogram"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1820,60 +1785,11 @@ msgstr "schrijven wordt niet ondersteund door de uitvoerdatastroom"
msgid "Source stream is already closed"
msgstr "Datastroom is al gesloten"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "naam"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Naam van het pictogram"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "namen"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Een lijst met de pictogramnamen"
# Vrij vertaald (Wouter Bolsterlee)
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "standaard terugvalmechanisme gebruiken"
# Vrij vertaald (Wouter Bolsterlee)
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Of het standaard terugvalmechanisme gebruikt moet worden door de naam bij "
"het --teken af te knippen. Als meerdere namen worden gegeven wordt de "
"eerste gebruikt."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Kan versie %d van GThemedIcon-codering niet verwerken"
# Expres onvertaald (Wouter Bolsterlee)
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Bestandsdescriptor"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "De bestandsdescriptor om van te lezen"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Bestandsdescriptor sluiten"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
"Of de bestandsdescriptor gesloten moet worden als de stream wordt gesloten"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1891,10 +1807,6 @@ msgstr "Fout bij sluiten van unix: %s"
msgid "Filesystem root"
msgstr "Hoofdmap bestandssysteem"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "De bestandsdescriptor om naar te schrijven"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
@ -1902,7 +1814,7 @@ msgstr "Fout bij schrijven naar unix: %s"
# volumen kan niet uitgeworpen worden/implemeteert 'uitwerpen' niet/
# begrijpt de opdracht 'uitwerpen' niet
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "volumen begrijpt de opdracht uitwerpen niet"
@ -1941,6 +1853,83 @@ msgstr "gebruik een uitgebreide opsomming"
msgid "[FILE...]"
msgstr "[BESTAND...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Teken %s is niet geldig aan het begin van een entiteitnaam; het &-teken "
#~ "begint een entiteit; indien dat niet de bedoeling is, gebruik dan &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Het teken %s is niet geldig in een entiteitnaam"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr ""
#~ "Lege tekenreferentie; ze zou een getal moeten bevatten, zoals &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Onbeëindigde entiteitreferentie"
#~ msgid "Unfinished character reference"
#~ msgstr "Onbeëindigde tekenreferentie"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Ongeldige UTF-8-gecodeerde tekst - de reeks is te lang"
# het is geen startteken/er is geen startteken
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Ongeldige UTF-8-gecodeerde tekst - geen startteken"
#~ msgid "file"
#~ msgstr "bestand"
# dat het pictogram bevat/met het pictogram
#~ msgid "The file containing the icon"
#~ msgstr "Een bestand met het pictogram"
#~ msgid "name"
#~ msgstr "naam"
#~ msgid "The name of the icon"
#~ msgstr "Naam van het pictogram"
#~ msgid "names"
#~ msgstr "namen"
#~ msgid "An array containing the icon names"
#~ msgstr "Een lijst met de pictogramnamen"
# Vrij vertaald (Wouter Bolsterlee)
#~ msgid "use default fallbacks"
#~ msgstr "standaard terugvalmechanisme gebruiken"
# Vrij vertaald (Wouter Bolsterlee)
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Of het standaard terugvalmechanisme gebruikt moet worden door de naam bij "
#~ "het --teken af te knippen. Als meerdere namen worden gegeven wordt de "
#~ "eerste gebruikt."
# Expres onvertaald (Wouter Bolsterlee)
#~ msgid "File descriptor"
#~ msgstr "Bestandsdescriptor"
#~ msgid "The file descriptor to read from"
#~ msgstr "De bestandsdescriptor om van te lezen"
#~ msgid "Close file descriptor"
#~ msgstr "Bestandsdescriptor sluiten"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr ""
#~ "Of de bestandsdescriptor gesloten moet worden als de stream wordt gesloten"
#~ msgid "The file descriptor to write to"
#~ msgstr "De bestandsdescriptor om naar te schrijven"
# ook byte voor meervoud (het bestand is 29 byte groot)
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"

290
po/nn.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: nn\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -299,51 +299,32 @@ msgstr "Klarte ikkje å opna fila «%s»: open() feila: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Klarte ikkje å kopiera fila «%s» til minnet: mmap() feila: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Feil på linje %d teikn %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Ugyldig UTF-8-koda tekst - ikkje gyldig «%s»"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Feil på linje %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "Fann tom entitet «&;»; gyldige entitetar er: &amp; &quot; &lt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Teiknet «%s» er ikkje gyldig på byrjinga av eit entitetsnamn; &-teiknet opnar "
"ein entitet; om dette et-teiknet ikkje er meint å vere ein entitet, skriv "
"den som &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Teiknet «%s» er ikkje gyldig inne i eit entitetsnamn"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entitetsnamnet «%s» er ikkje kjent"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entiteten slutta ikkje med eit semikolon. Du brukte truleg eit et-teikn utan "
"å meina å opna ein entitet. Skriv et-teikn som «&amp;»."
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -352,16 +333,7 @@ msgstr ""
"Klarte ikkje å tolka «%-.*s», som burde vera eit teikn i ein teiknreferanse "
"(&#234;, til dømes) kan henda talet er for stort"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Teiknreferansen «%-.*s» kodar ikkje kan ikkje kodast eit lovleg teikn"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Tom teiknreferanse, bør innehalda eit nummer slik som &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -370,32 +342,34 @@ msgstr ""
"Teiknreferansen slutta ikkje med eit semikolon; sannsynlegvis brukte du eit "
"et-teikn utan å villa starte ein entitet skriv et-teikn som &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Referansen til entiteten er uferdig"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Referansen til teiknet er uferdig"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Ugyldig UTF-8-koda tekst - for lang sekvens"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Ugyldig UTF-8-koda tekst - ikkje eit startteikn"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Ugyldig UTF-8-koda tekst - ikkje gyldig «%s»"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Teiknreferansen «%-.*s» kodar ikkje kan ikkje kodast eit lovleg teikn"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "Fann tom entitet «&;»; gyldige entitetar er: &amp; &quot; &lt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Entitetsnamnet «%s» er ikkje kjent"
#: 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 &amp;"
msgstr ""
"Entiteten slutta ikkje med eit semikolon. Du brukte truleg eit et-teikn utan "
"å meina å opna ein entitet. Skriv et-teikn som «&amp;»."
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumentet må byrja med eit element (t.d. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -404,7 +378,7 @@ msgstr ""
"«%s» er ikkje eit gyldig teikn etter ein «<»-teikn. Det kan ikkje vera det "
"fyrste teiknet i eit elementnamn"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -413,14 +387,14 @@ msgstr ""
"Merkeleg teikn «%s», venta eit «>»-teikn for å avslutta startmerket av "
"elementet «%s»"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"Merkeleg teikn «%s», venta ein «=» etter attributtnamnet «%s» av elementet «%s»"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -431,7 +405,7 @@ msgstr ""
"startmerket av elementet «%s», eller ein valfri attributt. Kan henda du "
"brukte eit ugyldig teikn i attributtnamnet"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -440,7 +414,7 @@ msgstr ""
"Merkeleg teikn «%s», venta eit ope siteringsmerke etter likskapsteiknet for å "
"gje ein verdi for attributten «%s» av elementet «%s»"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -449,7 +423,7 @@ msgstr ""
"«%s» er ikkje eit gyldig teikn etter teikna «<» eller «/». «%s» kan ikkje starta "
"eit elementnamn"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -458,25 +432,25 @@ msgstr ""
"«%s» er ikkje eit gyldig teikn etter avsluttande merket «%s»; det tillatne "
"teiknet er «>»"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Elementet «%s» vart lukka. Det er ingen opne element no"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Elementet «%s» vart avslutta, men det opne elementet er «%s»"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Dokumentet var tomt eller innheldt berre tomme teikn"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokument avslutta uventa rett etter ei open vinkelhake «<»"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -485,7 +459,7 @@ msgstr ""
"Dokumentet slutta uventa med element framleis opne. «%s» var det siste "
"elementet som vart opna"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -494,20 +468,20 @@ msgstr ""
"Dokumentet slutta uventa, venta å sjå at ei vinkelhake lukka det avsluttande "
"merket <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumentet tok uventa slutt inni eit elementnamn"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokumentet tok uventa slutt inni eit attributtnamn"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"Dokumentet vart uventa avslutta inne i eit merke som opnar eit element."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -515,16 +489,16 @@ msgstr ""
"Dokumentet slutta uventa etter likskapsteiknet etter attributtnamnet; ingen "
"attributtverdi"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokumentet avslutta uventa medan det var inne i ein attributtverdi"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Dokumentet avslutta uventa i eit lukkemerke for elementet «%s»"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokumentet avslutta uventa inne i ein merknad eller prosseseringsinstruksjon"
@ -967,61 +941,61 @@ msgstr "Ugyldig sekvens i inndata-konvertering"
msgid "Character out of range for UTF-16"
msgstr "Teikn ikkje gyldig for UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Bruk:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[VAL...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Hjelpeval:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Vis hjelpeval"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Vis alle hjelpevala"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Programval:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Kan ikkje tolka heiltalsverdien «%s» til %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Heiltalsverdien «%s» til «%s» utanfor gyldig område"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Kan ikkje tolka flyttalsverdien «%s» til «--%s»"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Flyttalsverdien «%s» til «%s» utanfor gyldig område"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Feil under tolking av val %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Argument manglar for %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Ukjend val «%s»"
@ -1141,8 +1115,8 @@ msgstr "For stor teljingsverdi sendt til %s"
msgid "Stream is already closed"
msgstr "Straumen er allereie stengt"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Operasjonen vart avbroten"
@ -1283,7 +1257,7 @@ msgstr "Papirkorg er ikkje støtta"
msgid "File names cannot contain '%c'"
msgstr "Filnamn kan ikkje innehalda «%c»"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "volumet støttar ikkje montering"
@ -1304,15 +1278,6 @@ msgstr "Filteljaren har ventande operasjon"
msgid "File enumerator is already closed"
msgstr "Filteljaren er allereie lukka"
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Vertsnamnet i URIen «%s» er ugyldig"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1725,57 +1690,11 @@ msgstr "utstraumen støttar ikkje skriving"
msgid "Source stream is already closed"
msgstr "Kjeldestraumen er allereie stengt"
#: gio/gthemedicon.c:211
#, fuzzy
msgid "name"
msgstr "Utan namn"
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "Vertsnamnet i URIen «%s» er ugyldig"
#: gio/gthemedicon.c:223
#, fuzzy
msgid "names"
msgstr "Utan namn"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Feil under lesing av info om fildeskriptoren: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1792,16 +1711,12 @@ msgstr "Feilved lukking av: %s"
msgid "Filesystem root"
msgstr "Filsystemrot"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Feil under skriving til unix: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "volumet støttar ikkje å løysa ut"
@ -1838,6 +1753,53 @@ msgstr "bruk langt listeformat"
msgid "[FILE...]"
msgstr "[FIL ...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Teiknet «%s» er ikkje gyldig på byrjinga av eit entitetsnamn; &-teiknet "
#~ "opnar ein entitet; om dette et-teiknet ikkje er meint å vere ein entitet, "
#~ "skriv den som &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Teiknet «%s» er ikkje gyldig inne i eit entitetsnamn"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Tom teiknreferanse, bør innehalda eit nummer slik som &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Referansen til entiteten er uferdig"
#~ msgid "Unfinished character reference"
#~ msgstr "Referansen til teiknet er uferdig"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Ugyldig UTF-8-koda tekst - for lang sekvens"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Ugyldig UTF-8-koda tekst - ikkje eit startteikn"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Vertsnamnet i URIen «%s» er ugyldig"
#, fuzzy
#~ msgid "name"
#~ msgstr "Utan namn"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "Vertsnamnet i URIen «%s» er ugyldig"
#, fuzzy
#~ msgid "names"
#~ msgstr "Utan namn"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Feil under lesing av info om fildeskriptoren: %s"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u byte"

235
po/oc.po
View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: oc\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -298,114 +298,91 @@ msgstr ""
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr ""
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr ""
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr ""
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr ""
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr ""
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr ""
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (&#234; for example) - perhaps the digit is too large"
msgstr ""
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr ""
#: glib/gmarkup.c:685
#: 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 &amp;"
msgstr ""
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr ""
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr ""
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr ""
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr ""
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
#: glib/gmarkup.c:662
#, c-format
msgid "Entity name '%-.*s' is not known"
msgstr ""
#: 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 &amp;"
msgstr ""
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr ""
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr ""
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr ""
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -413,87 +390,87 @@ msgid ""
"character in an attribute name"
msgstr ""
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, 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 ""
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
msgstr ""
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
msgstr ""
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr ""
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr ""
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr ""
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr ""
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr ""
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
@ -928,61 +905,61 @@ msgstr ""
msgid "Character out of range for UTF-16"
msgstr ""
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Sintaxi :"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPCION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr ""
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr ""
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr ""
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Opcions de l'aplicacion :"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr ""
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr ""
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr ""
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr ""
@ -1099,8 +1076,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1240,7 +1217,7 @@ msgstr ""
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1261,14 +1238,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr ""
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1677,53 +1646,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr "nom"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr ""
#: gio/gthemedicon.c:223
msgid "names"
msgstr "noms"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr ""
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1740,16 +1667,12 @@ msgstr ""
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr ""
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1786,6 +1709,12 @@ msgstr ""
msgid "[FILE...]"
msgstr "[FICHIÈR...]"
#~ msgid "name"
#~ msgstr "nom"
#~ msgid "names"
#~ msgstr "noms"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u octet"

308
po/or.po
View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: or\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-30 14:21+0530\n"
"Last-Translator: Manoj Kumar Giri <mgiri@redhat.com>\n"
"Language-Team: Oriya <oriya-it@googlegroups.com>\n"
@ -309,50 +309,32 @@ msgstr "'%s' ଫାଇଲ ଖୋଲିବାରେ ଅସଫଳ: open() ଅସ
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' ଫାଇଲ କୁ ମ୍ଯାପ୍ କରିବାରେ ଅସଫଳ: mmap() ଅସଫଳ: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "ଧାଡ଼ି %dର ଅକ୍ଷର %dରେ ତ୍ରୁଟି: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "ଅବୈଧ UTF-8 ସାଙ୍କେତିକ ପାଠ୍ଯ- '%s' ବୈଧ ନୁହଁ"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "%d ଧାଡ଼ିରେ ତ୍ରୁଟି: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "ଖାଲି ବସ୍ତୁ '&;' ଦେଖା ଗଲା; ବୈଧ ବସ୍ତୁଗୁଡ଼ିକ ହେଲା: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"ଗୋଟିଏ ବସ୍ତୁର ନାମର ଆରମ୍ଭ ରେ '%s' ଅକ୍ଷର ବୈଧ ନୁହେଁ; ଅକ୍ଷର & ଗୋଟିଏ ବସ୍ତୁକୁ ଆରମ୍ଭ କରେ; ଯଦି ଏହି "
"ଆମ୍ପର୍ସେଣ୍ଡ୍ ଗୋଟିଏ ବସ୍ତୁ ନୁହେଁ, ଏହାକୁ &amp; ଭାବରେ ଏସ୍କେପ୍ କରନ୍ତୁ;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "ବସ୍ତୁ ନାମ ମଦ୍ଧ୍ଯ ରେ '%s' ଅକ୍ଷର ବୈଧ ନୁହେଁ"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "'%s' ବସ୍ତୁ ନାମ ଜଣା ନାହିଁ"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"ବସ୍ତୁଟି ସେମିକୋଲନରେ ଶେଷ ହେଲା ନାହିଁ; ସମ୍ଭବତଃ ଆପଣ ଗୋଟିଏ ବସ୍ତୁ ଆରମ୍ଭ କରିବାକୁ ନ ଚାହିଁ, ଏକ "
"ଆମ୍ପର୍ସେଣ୍ଡ୍ ଅକ୍ଷର ବ୍ଯବହାର କରିଛନ୍ତି - ତାହାକୁ &amp; ଭାବରେ ଏସ୍କେପ୍ କରନ୍ତୁ"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -361,16 +343,7 @@ msgstr ""
"'%-.*s' କୁ ବିଶ୍ଳେଷଣ କରିବାରେ ଅସଫଳ, ଯାହାକି ଗୋଟିଏ ଅକ୍ଷର ରେଫରେନ୍ସ ମଦ୍ଧ୍ଯରେ ଏକ ଅଙ୍କ ହେବା ଉଚିତ "
"ଥିଲା(ଉଦାହରଣ ସ୍ବରୂପେ &#୨୩୪;) - ବୋଧହୁଏ ଅଙ୍କଟି ବହୁତ ବଡ଼ ଅଟେ"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "'%-.*s' ଅକ୍ଷର ରେଫରେନ୍ସ ଟି ଗୋଟିଏ ଅନୁମତ ଅକ୍ଷରକୁ ସଙ୍କେତ କରୁ ନାହିଁ"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "ଖାଲି ଅକ୍ଷର ରେଫରେନ୍ସ; ଗୋଟିଏ ଅଙ୍କକୁ ଅନୁର୍ଭୁକ୍ତ କରିବା ଉଚିତ, ଯେପରିକି &#୪୫୪;"
#: glib/gmarkup.c:685
#: 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 "
@ -379,32 +352,34 @@ msgstr ""
"ଅକ୍ଷର ରେଫରେନ୍ସ ସେମିକୋଲନରେ ସମାପ୍ତ ହେଉ ନାହିଁ; ସମ୍ଭବତଃ ଆପଣ ଗୋଟିଏ ବସ୍ତୁ ଆରମ୍ଭ କରିବାକୁ ନ ଚାହିଁ, "
"ଏକ ଆମ୍ପର୍ସେଣ୍ଡ୍ ଅକ୍ଷର ବ୍ଯବହାର କରିଛନ୍ତି - ତାହାକୁ &amp; ଭାବରେ ଏସ୍କେପ୍ କରନ୍ତୁ"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "ଅସମାପ୍ତ ବସ୍ତୁ ରେଫରେନ୍ସ"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "ଅସମାପ୍ତ ଅକ୍ଷର ରେଫରେନ୍ସ"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "ଅବୈଧ UTF-8 ସାଙ୍କେତିକ ପାଠ୍ଯ- ଅତ୍ୟଧିକ ବଡ଼ ଅନୁକ୍ରମ"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "ଅବୈଧ UTF-8 ସାଙ୍କେତିକ ପାଠ୍ଯ- ଗୋଟିଏ ଆରମ୍ଭ ଅକ୍ଷର ନୁହଁ"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "ଅବୈଧ UTF-8 ସାଙ୍କେତିକ ପାଠ୍ଯ- '%s' ବୈଧ ନୁହଁ"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "'%-.*s' ଅକ୍ଷର ରେଫରେନ୍ସ ଟି ଗୋଟିଏ ଅନୁମତ ଅକ୍ଷରକୁ ସଙ୍କେତ କରୁ ନାହିଁ"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "ଖାଲି ବସ୍ତୁ '&;' ଦେଖା ଗଲା; ବୈଧ ବସ୍ତୁଗୁଡ଼ିକ ହେଲା: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "'%s' ବସ୍ତୁ ନାମ ଜଣା ନାହିଁ"
#: 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 &amp;"
msgstr ""
"ବସ୍ତୁଟି ସେମିକୋଲନରେ ଶେଷ ହେଲା ନାହିଁ; ସମ୍ଭବତଃ ଆପଣ ଗୋଟିଏ ବସ୍ତୁ ଆରମ୍ଭ କରିବାକୁ ନ ଚାହିଁ, ଏକ "
"ଆମ୍ପର୍ସେଣ୍ଡ୍ ଅକ୍ଷର ବ୍ଯବହାର କରିଛନ୍ତି - ତାହାକୁ &amp; ଭାବରେ ଏସ୍କେପ୍ କରନ୍ତୁ"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "ଦଲିଲ ଗୋଟିଏ ଉପାଦାନରେ ଆରମ୍ଭ ହେବା ଉଚିତ (ଉଦାହରଣ ସ୍ବରୂପ <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -412,7 +387,7 @@ msgid ""
msgstr ""
"'<' ଅକ୍ଷର ପଛରେ ଆସୁଥିବା '%s' ଅକ୍ଷର ବୈଧ ନୁହେଁ; ଏହା ଗୋଟିଏ ବସ୍ତୁର ନାମକୁ ଆରମ୍ଭ କରିପାରିବ ନାହିଁ"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -421,14 +396,14 @@ msgstr ""
"ଅଯୁଗ୍ମ ସଂଖ୍ୟା '%s', ଖାଲି-ଉପାଦାନ ଟ୍ୟାଗ '%s' ପ୍ରାରମ୍ଭ ସୂଚକକୁ ସମାପ୍ତ କରିବା ପାଇଁ '>' ଅକ୍ଷର "
"ଆଶାକରାଯାଉଥିଲା"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"ବିଚିତ୍ର ଅକ୍ଷର '%1$s', '%3$s' ଉପାଦାନର ଗୋଟିଏ ଗୁଣର ନାମ '%2$s' ପରେ '=' ପ୍ରତ୍ଯାଶିତ ଥିଲା"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -439,7 +414,7 @@ msgstr ""
"ପ୍ରତ୍ଯାଶିତ ଥିଲା, ଅଥବା ଇଚ୍ଛାଧୀନ ଭାବରେ ଗୋଟିଏ ଗୁଣ; ବୋଧହୁଏ ଆପଣ ଗୋଟିଏ ଗୁଣର ନାମରେ ଏକ ଅବୈଧ "
"ଅକ୍ଷର ବ୍ଯବହାର କରିଛନ୍ତି"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -448,7 +423,7 @@ msgstr ""
"ବିଚିତ୍ର ଅକ୍ଷର '%1$s', ସମାନ ଚିହ୍ନ ପରେ '%3$s' ଉପାଦାନର '%2$s' ଗୁଣର ମୂଲ୍ଯ ଦେବା ପାଇଁ ଗୋଟିଏ "
"ଖୋଲା ଉଦ୍ଧ୍ରୁତି ଚିହ୍ନ ପ୍ରତ୍ଯାଶିତ ଥିଲା"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -457,7 +432,7 @@ msgstr ""
"'</' ଅକ୍ଷରଗୁଡ଼ିକ ପଛରେ ଆସୁଥିବା '%s' ଅକ୍ଷର ବୈଧ ନୁହେଁ; '%s' ଗୋଟିଏ ଉପାଦାନର ନାମର ଆରମ୍ଭ "
"କରିପାରିବ ନାହିଁ"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -465,25 +440,25 @@ msgid ""
msgstr ""
"ବନ୍ଦ ଉପାଦାନ ନାମ '%2$s' ପଛରେ ଆସୁଥିବା '%1$s' ଅକ୍ଷର ବୈଧ ନୁହେଁ; ଅନୁମତ ଅକ୍ଷର ହେଲା '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "ଉପାଦାନ '%s' ବନ୍ଦ କରାଯାଇଥିଲା, ବର୍ତ୍ତମାନ କୌଣସି ଉପାଦାନ ଖୋଲା ନାହିଁ"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "ଉପାଦାନ '%s' ବନ୍ଦ କରାଯାଇଥିଲା, କିନ୍ତୁ ବର୍ତ୍ତମାନ '%s' ଉପାଦାନଟି ଖୋଲା ଅଛି"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "ଦଲିଲ ଖାଲି ଥିଲା ବା କେବଳ ଖାଲି ଯାଗା ଧାରଣ କରିଥିଲା"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "ଦଲିଲଟି ଗୋଟିଏ କୌଣିକ ବନ୍ଧନୀ '<'ର ଠିକ ପରେ ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -492,7 +467,7 @@ msgstr ""
"ଉପାଦାନଗୁଡ଼ିକ ଖୋଲା ଥାଇ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା'%s' ଉପାଦାନ ସର୍ବଶେଷ ଖୋଲା "
"ଥିଲା"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -501,19 +476,19 @@ msgstr ""
"ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା, <%s/> ସୂଚକ ସମାପ୍ତ କରିବା ପାଇଁ ଗୋଟିଏ ବନ୍ଦ କୌଣିକ "
"ବନ୍ଧନୀ ପ୍ରତ୍ଯାଶିତ ଥିଲା"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "ଉପାଦାନର ନାମ ମଧ୍ଯରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "ଗୁଣର ନାମ ମଧ୍ଯରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "ଉପାଦାନ ଆରମ୍ଭର ସୂଚକ ମଧ୍ଯରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -521,16 +496,16 @@ msgstr ""
"ଗୁଣର ନାମ ପଛରେ ଆସୁଥିବା ସମାନ ଚିହ୍ନ ପରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା; ଗୁଣର କିଛି "
"ମୂଲ୍ଯ ନାହିଁ"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "ଗୁଣର ମୂଲ୍ଯ ମଧ୍ଯରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "'%s' ଉପାଦାନର ବନ୍ଦ ସୂଚକ ମଧ୍ଯରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "ଟିପ୍ପଣୀ ବା ସଂସାଧନ ସାଧନ ମଧ୍ଯରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
@ -967,61 +942,61 @@ msgstr "ରୁପାନ୍ତରଣ ନିବେଶେର ଅବୈଧ ଅନୁ
msgid "Character out of range for UTF-16"
msgstr "ଇ.ଉ.ଟିଏଫ୍.-୧୬ ପାଇଁ ଅକ୍ଷରଟି ପରିସର ବାହାରେ"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "ବ୍ଯବହାର:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[ପସନ୍ଦ...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "ସାହାଯ୍ଯ ପସନ୍ଦ"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "ସାହାଯ୍ଯ ପସନ୍ଦ ଦେଖାନ୍ତୁ"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "ସବୁ ସାହାଯ୍ଯ ପସନ୍ଦ ଦେଖାନ୍ତୁ"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "ପ୍ରୟୋଗ ପସନ୍ଦ"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "%s ପାଇଁ ପୂର୍ଣ ସଂଖ୍ଯା ମୂଲ୍ଯ '%s' କୁ ବିଶ୍ଲେଷିଣ କରିହେଲା ନାହିଁ"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "%s ପାଇଁ ପୂର୍ଣ ସଂଖ୍ଯା '%s' ର ମୂଲ୍ଯ ପରିସର ବାହାରେ"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "'%s' ଦ୍ବ୍ଯର୍ଥକ ମୂଲ୍ଯକୁ %s ପାଇଁ ବିଶ୍ଳେଷିତ କରିପାରିଲା ନାହିଁ"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "'%s' ଦ୍ବ୍ଯର୍ଥକ ମୂଲ୍ଯଟି %s ପାଇଁ ପରିସରର ବହିର୍ଭୂତ।"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "ରୁପାନ୍ତରଣ ର ବିକଲ୍ପ ରେ ତ୍ରୁଟି: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s ପାଇଁ ସ୍ବତନ୍ତ୍ରଚର ଟି ହଜି ଯାଇଛି"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "ଅଜଣା ପସନ୍ଦ %s"
@ -1139,8 +1114,8 @@ msgstr "ଅତ୍ୟଧିକ ବଡ଼ ଗଣନା ମୂଲ୍ୟ %sକୁ
msgid "Stream is already closed"
msgstr "ଧାରା ପୂର୍ବରୁ ବନ୍ଦଅଛି"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "ପ୍ରୟୋଗଟି ବାତିଲ ହୋଇଛି"
@ -1280,7 +1255,7 @@ msgstr "ଆବର୍ଜନା ପାତ୍ର ସମର୍ଥିତ ନୁହଁ
msgid "File names cannot contain '%c'"
msgstr "ଫାଇଲ ନାମଗୁଡ଼ିକ '%c' ଧାରଣ କରିପାରେ ନାହିଁ"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "ଆକାର ସ୍ଥାପନକୁ କାର୍ଯ୍ୟକାରୀ କରେନାହିଁ"
@ -1301,14 +1276,6 @@ msgstr "ଫାଇଲ ଗଣନାକାର ପାଖରେ ଉତ୍କୃଷ୍
msgid "File enumerator is already closed"
msgstr "ଫାଇଲ ଗଣନାକାର ପୂର୍ବରୁ ବନ୍ଦ ହୋଇଯାଇଛି"
#: gio/gfileicon.c:145
msgid "file"
msgstr "ଫାଇଲ"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "ଚିତ୍ରସଂକେତ ଧାରଣକରିଥିବା ଫାଇଲ"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1717,55 +1684,11 @@ msgstr "ଫଳାଫଳ ବାକ୍ଯଖଣ୍ଡ ଲେଖିବାକୁ କ
msgid "Source stream is already closed"
msgstr "ଉତ୍ସ ବାକ୍ୟଖଣ୍ଡଟି ପୂର୍ବରୁ ବନ୍ଦହୋଇଯାଇଛି"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "ନାମ"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "ଚିତ୍ରସଂକେତର ନାମ"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "ନାମଗୁଡ଼ିକ"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "ଚିତ୍ରସଂକେତ ନାମଗୁଡ଼ିକୁ ଧାରଣକରିଥିବା ଆରେ"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "ପୂର୍ବନିର୍ଦ୍ଧାରିତ ନିବର୍ତ୍ତନଗୁଡ଼ିକୁ ବ୍ୟବହାର କରନ୍ତୁ"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"'-' ବର୍ଣ୍ଣ ଠାରେ ସଂକ୍ଷିପ୍ତ କରାଯାଇଥିବା ନାମରୁ ମିଳିଥିବା ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଶେଷ ଅବଲମ୍ବନକୁ ବ୍ୟବହାର "
"କରାଯିବ କି ନାହିଁ. ଏକାଧିକ ନାମ ଦିଆଯାଇଥିଲେ ପ୍ରଥମ ନାମ ପରେଥିବା ନାମଗୁଡ଼ିକୁ ଅଗ୍ରାହ୍ୟ କରେ."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "GThemedIcon ସାଙ୍କେତିକରଣର ସଂସ୍କରଣ %dକୁ ନିୟନ୍ତ୍ରଣ କରାଯାଇପାରିବ ନାହିଁ"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "ଫାଇଲ ବର୍ଣ୍ଣନାକାରୀ"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "ପଢ଼ିବା ପାଇଁ ଫାଇଲ ବର୍ଣ୍ଣନାକାରୀ"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "ଫାଇଲ ବର୍ଣ୍ଣନାକାରୀକୁ ବନ୍ଦ କରନ୍ତୁ"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "ଧାରା ବନ୍ଦ ହେବା ପରେ ଫାଇଲ ବର୍ଣ୍ଣନାକାରୀକୁ ବନ୍ଦ କରିବା ଉଚିତ କି ନୁହଁ"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1782,16 +1705,12 @@ msgstr "unix ବନ୍ଦକରିବାରେ ତ୍ରୁଟି: %s"
msgid "Filesystem root"
msgstr "ଫାଇଲତନ୍ତ୍ର ମୂଳସ୍ଥାନ"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "ଲେଖିବା ପାଇଁ ଫାଇଲ ବର୍ଣ୍ଣନାକାରୀ"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "unixରେ ଲେଖିବାରେ ତ୍ରୁଟି: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "ଆକାର ବାହାର କରିବାକୁ କାର୍ଯ୍ୟକାରୀ କରେନାହିଁ"
@ -1827,3 +1746,72 @@ msgstr "ଲମ୍ବା ତାଲିକାଭୁକ୍ତ ଶୈଳୀ ବ୍ୟ
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[FILE...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "ଗୋଟିଏ ବସ୍ତୁର ନାମର ଆରମ୍ଭ ରେ '%s' ଅକ୍ଷର ବୈଧ ନୁହେଁ; ଅକ୍ଷର & ଗୋଟିଏ ବସ୍ତୁକୁ ଆରମ୍ଭ କରେ; ଯଦି "
#~ "ଏହି ଆମ୍ପର୍ସେଣ୍ଡ୍ ଗୋଟିଏ ବସ୍ତୁ ନୁହେଁ, ଏହାକୁ &amp; ଭାବରେ ଏସ୍କେପ୍ କରନ୍ତୁ;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "ବସ୍ତୁ ନାମ ମଦ୍ଧ୍ଯ ରେ '%s' ଅକ୍ଷର ବୈଧ ନୁହେଁ"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "ଖାଲି ଅକ୍ଷର ରେଫରେନ୍ସ; ଗୋଟିଏ ଅଙ୍କକୁ ଅନୁର୍ଭୁକ୍ତ କରିବା ଉଚିତ, ଯେପରିକି &#୪୫୪;"
#~ msgid "Unfinished entity reference"
#~ msgstr "ଅସମାପ୍ତ ବସ୍ତୁ ରେଫରେନ୍ସ"
#~ msgid "Unfinished character reference"
#~ msgstr "ଅସମାପ୍ତ ଅକ୍ଷର ରେଫରେନ୍ସ"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "ଅବୈଧ UTF-8 ସାଙ୍କେତିକ ପାଠ୍ଯ- ଅତ୍ୟଧିକ ବଡ଼ ଅନୁକ୍ରମ"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "ଅବୈଧ UTF-8 ସାଙ୍କେତିକ ପାଠ୍ଯ- ଗୋଟିଏ ଆରମ୍ଭ ଅକ୍ଷର ନୁହଁ"
#~ msgid "file"
#~ msgstr "ଫାଇଲ"
#~ msgid "The file containing the icon"
#~ msgstr "ଚିତ୍ରସଂକେତ ଧାରଣକରିଥିବା ଫାଇଲ"
#~ msgid "name"
#~ msgstr "ନାମ"
#~ msgid "The name of the icon"
#~ msgstr "ଚିତ୍ରସଂକେତର ନାମ"
#~ msgid "names"
#~ msgstr "ନାମଗୁଡ଼ିକ"
#~ msgid "An array containing the icon names"
#~ msgstr "ଚିତ୍ରସଂକେତ ନାମଗୁଡ଼ିକୁ ଧାରଣକରିଥିବା ଆରେ"
#~ msgid "use default fallbacks"
#~ msgstr "ପୂର୍ବନିର୍ଦ୍ଧାରିତ ନିବର୍ତ୍ତନଗୁଡ଼ିକୁ ବ୍ୟବହାର କରନ୍ତୁ"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "'-' ବର୍ଣ୍ଣ ଠାରେ ସଂକ୍ଷିପ୍ତ କରାଯାଇଥିବା ନାମରୁ ମିଳିଥିବା ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଶେଷ ଅବଲମ୍ବନକୁ ବ୍ୟବହାର "
#~ "କରାଯିବ କି ନାହିଁ. ଏକାଧିକ ନାମ ଦିଆଯାଇଥିଲେ ପ୍ରଥମ ନାମ ପରେଥିବା ନାମଗୁଡ଼ିକୁ ଅଗ୍ରାହ୍ୟ କରେ."
#~ msgid "File descriptor"
#~ msgstr "ଫାଇଲ ବର୍ଣ୍ଣନାକାରୀ"
#~ msgid "The file descriptor to read from"
#~ msgstr "ପଢ଼ିବା ପାଇଁ ଫାଇଲ ବର୍ଣ୍ଣନାକାରୀ"
#~ msgid "Close file descriptor"
#~ msgstr "ଫାଇଲ ବର୍ଣ୍ଣନାକାରୀକୁ ବନ୍ଦ କରନ୍ତୁ"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "ଧାରା ବନ୍ଦ ହେବା ପରେ ଫାଇଲ ବର୍ଣ୍ଣନାକାରୀକୁ ବନ୍ଦ କରିବା ଉଚିତ କି ନୁହଁ"
#~ msgid "The file descriptor to write to"
#~ msgstr "ଲେଖିବା ପାଇଁ ଫାଇଲ ବର୍ଣ୍ଣନାକାରୀ"

308
po/pa.po
View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-14 16:41+0000\n"
"Last-Translator: A S Alam <aalam@users.sf.net>\n"
"Language-Team: Punjabi/Panjabi <punjab-l10n@list.sf.net>\n"
@ -302,50 +302,32 @@ msgstr "ਫਾਇਲ '%s': ਖੋਲ੍ਹਣ ਵਿੱਚ ਫੇਲ੍ਹ: fdop
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "ਫਾਇਲ '%s' ਮਿਲਾਉਣ ਵਿੱਚ ਫੇਲ੍ਹ: mmap() ਫੇਲ੍ਹ ਹੋਇਆ: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "ਲਾਈਨ %d ਅੱਖਰ %d ਉੱਤੇ ਗਲਤੀ:"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "ਗਲਤ UTF-8 ਇੰਕੋਡ ਅੱਖਰ - ਵੈਧ '%s' ਨਹੀਂ"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "ਸਤਰ %d ਉੱਤੇ ਗਲਤੀ: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "ਖਾਲੀ ਐਂਟਟੀ '&;' ਵੇਖੋ; ਵੈਧ ਐਂਟਟੀਆਂ ਹਨ : &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"ਇਹ %s ਅੱਖਰ ਕੋਈ ਐਂਟਟੀ ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਗਲਤ ਹੈ & ਅੱਖਰ ਇਕਾਈ ਆਰੰਭ ਕਰਦਾ ਹੈ; ਜੇਕਰ ਇਹ ਐਪਰਸੈਡ ਐਂਟਟੀ "
"ਬਣਨਯੋਗ ਨਹੀਂ ਤਾਂ ਇਸ ਨੂੰ ਇੰਝ &amp; ਛੱਡ ਦਿਓ"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "'%s' ਅੱਖਰ ਇੱਕ ਐਂਟਟੀ ਦੇ ਨਾਂ ਲਈ ਜਾਇਜ਼ ਨਹੀਂ ਹੈ"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "ਐਂਟਟੀ ਨਾਂ '%s' ਪਤਾ ਨਹੀਂ ਹੈ"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"ਐਂਟਟੀ ਸੈਮੀਕਾਲਨ ਨਾਲ ਖਤਮ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੋ ਸਕਦਾ ਕਿ ਤੁਸੀਂ ਇੱਕ ਐਪਰਸੈਨਡ ਅੱਖਰ ਬਿਨਾਂ ਐਂਟਟੀ ਸ਼ੁਰੂ ਕੀਤੇ "
"ਹੀ ਵਰਤ ਰਹੇ ਹੋ, ਐਪਰਸੈਨਡ ਇਸਤਰਾਂ &amp; ਛੱਡੋ"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -354,16 +336,7 @@ msgstr ""
" '%-.*s' ਪਾਰਸ ਕਰਨ ਵਿੱਚ ਫੇਲ੍ਹ, ਜੋ ਕਿ ਅੱਖਰ ਵਿੱਚ ਨੰਬਰ ਹੋਣ ਚਾਹੀਦਾ ਹੈ ਵੇਖੋ (&#234; ਉਦਾਹਰਨ "
"ਲਈ) - ਅੱਖਰ ਬਹੁਤ ਲੰਮਾ ਹੋ ਗਿਆ ਹੈ"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "ਅੱਖਰ ਰੈਫਰੈਂਸ '%-.*s' ਇਕ ਚੁਣੇ ਅੱਖਰ ਨੂੰ ਇਨਕੋਡ ਨਹੀਂ ਕਰ ਸਕਦਾ"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "ਖਾਲੀ ਅੱਖਰ ਰੈਫਰੈਂਸ, ਕੋਈ ਨੰਬਰ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ ਜਿਵੇਂ ਕਿ &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -372,32 +345,34 @@ msgstr ""
"ਅੱਖਰੀ ਰੈਫਰੈਂਸ ਸੈਮੀਕਾਲਨ ਨਾਲ ਖਤਮ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੋ ਕਿ ਤੁਸੀ ਇੱਕ ਐਪਰਸੈਨਡ ਅੱਖਰ ਬਿਨਾਂ ਐਂਟਟੀ ਸ਼ੁਰੂ ਕੀਤੇ "
"ਹੀ ਵਰਤ ਰਹੇ ਹੋ, ਐਪਰਸੈਨਡ ਇੰਝ &amp; ਛੱਡੋ"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "ਅਧੂਰਾ ਐਂਟਟੀ ਰੈਫਰੈਂਸ"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "ਅਧੂਰਾ ਅੱਖਰੀ ਰੈਫਰੈਂਸ"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "ਗਲਤ UTF-8 ਇੰਕੋਡ ਟੈਕਸਟ - ਓਵਰਲਾਂਗ ਕ੍ਰਮ"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "ਗਲਤ UTF-8 ਇੰਕੋਡ ਟੈਕਸਟ - ਇੱਕ ਸ਼ੁਰੂਆਤੀ ਅੱਖਰ ਨਹੀਂ"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "ਗਲਤ UTF-8 ਇੰਕੋਡ ਅੱਖਰ - ਵੈਧ '%s' ਨਹੀਂ"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "ਅੱਖਰ ਰੈਫਰੈਂਸ '%-.*s' ਇਕ ਚੁਣੇ ਅੱਖਰ ਨੂੰ ਇਨਕੋਡ ਨਹੀਂ ਕਰ ਸਕਦਾ"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "ਖਾਲੀ ਐਂਟਟੀ '&;' ਵੇਖੋ; ਵੈਧ ਐਂਟਟੀਆਂ ਹਨ : &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "ਐਂਟਟੀ ਨਾਂ '%s' ਪਤਾ ਨਹੀਂ ਹੈ"
#: 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 &amp;"
msgstr ""
"ਐਂਟਟੀ ਸੈਮੀਕਾਲਨ ਨਾਲ ਖਤਮ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੋ ਸਕਦਾ ਕਿ ਤੁਸੀਂ ਇੱਕ ਐਪਰਸੈਨਡ ਅੱਖਰ ਬਿਨਾਂ ਐਂਟਟੀ ਸ਼ੁਰੂ ਕੀਤੇ "
"ਹੀ ਵਰਤ ਰਹੇ ਹੋ, ਐਪਰਸੈਨਡ ਇਸਤਰਾਂ &amp; ਛੱਡੋ"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "ਦਸਤਾਵੇਜ਼ ਇਕ ਐਲੀਮਿੰਟ (ਜਿਵੇਂ ਕਿ <book>) ਨਾਲ ਸ਼ੁਰੂ ਹੋਣਾ ਜਰੂਰੀ ਹੈ"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -406,20 +381,20 @@ msgstr ""
"ਇਹ '%s' ਜਾਇਜ ਅੱਖਰ ਨਹੀਂ ਹੈ ਜੋ ਕਿ '<' ਅੱਖਰ ਤੋਂ ਮਗਰ ਹੈ, ਇਹ ਕਿਸੇ ਐਲੀਮਿੰਟ ਦੇ ਨਾਂ ਨਾਲ ਆਰੰਭ ਨਹੀਂ "
"ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr "ਅਨਿਸ਼ਚਿਤ ਅੱਖਰ '%s', ਇਹ '>' ਅੱਖਰ ਦੀ ਉਮੀਦ ਖਾਲੀ-ਐਲੀਮਿੰਟ ਟੈਗ '%s' ਬੰਦ ਕਰਨ ਲਈ ਸੀ"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "ਅਨਿਸ਼ਚਿਤ ਅੱਖਰ %1$s ਹੈ, ਐਲੀਮਿੰਟ %3$s ਦੇ ਇਸ ਵਿਸ਼ੇਸਤਾ ਨਾਂ %2$s ਮਗਰੋਂ = ਲੋੜੀਦਾ ਸੀ"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -429,7 +404,7 @@ msgstr ""
"ਅਨਿਸ਼ਚਿਤ ਅੱਖਰ '%s' ਹੈ, ਇਕ ਅੱਖਰ '>'ਜਾਂ '/' ਨਿਸ਼ਚਿਤ ਅੱਖਰ ਹੈ ਤਾਂ ਕਿ ਹਿੱਸੇ ਦੇ ਸ਼ੁਰੂ ਕੀਤੇ ਟੈਗ ਨੂੰ "
"ਖਤਮ ਕੀਤੀ ਜਾ ਸਕੇ '%s', ਜਾਂ ਚੁਣਿਆ ਪ੍ਰਤੀਕ, ਜਿਸ ਲ਼ਈ ਤੁਸੀ ਗਲਤ ਨਾਂ ਭਰਿਆ ਹੈ।"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -438,7 +413,7 @@ msgstr ""
"ਅਨਿਸ਼ਚਿਤ ਅੱਖਰ '%1$s', ਬਰਾਬਰ ਦੇ ਨਿਸ਼ਾਨ ਮਗਰੋਂ ਇਕ ਖੁੱਲਾ ਹਵਾਲਾ ਨਿਸ਼ਾਨ ਜ਼ਰੂਰੀ ਹੈ, ਜਦੋਂ ਕਿ ਤੁਸੀਂ "
"ਇੱਕ ਐਲੀਮਿੰਟ '%3$s' ਦੀ ਵਿਸ਼ੇਸ਼ਤਾ '%2$s' ਲਈ ਮੁੱਲ ਦੇ ਰਹੇ ਹੋ।"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -447,39 +422,39 @@ msgstr ""
"ਇਸ '</' ਅੱਖਰ ਮਗਰੋਂ ਇਹ %s' ਅੱਖਰ ਜ਼ਾਇਜ ਨਹੀਂ ਹੈ, '%s' ਇੱਕ ਐਲੀਮਿੰਟ ਦੇ ਨਾਂ ਨਾਲ ਸ਼ੁਰੂ ਨਹੀਂ ਹੋ ਸਕਦਾ "
"ਹੈ।"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, 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:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "ਇਹ ਐਲੀਮਿੰਟ '%s' ਬੰਦ ਸੀ, ਕੋਈ ਐਲੀਮਿੰਟ ਖੁੱਲ੍ਹਾ ਨਹੀਂ ਹੈ"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "ਇਹ ਐਲੀਮਿੰਟ '%s' ਬੰਦ ਸੀ, ਪਰ ਅਜੇ '%s' ਐਲੀਮਿੰਟ ਖੁੱਲਾ ਹੈ"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "ਦਸਤਾਵੇਜ਼ ਖਾਲੀ ਹੈ ਜਾਂ ਕੇਵਲ ਖਾਲੀ ਥਾਂ ਹੀ ਰੱਖਦਾ ਹੈ"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ, ਇਕ ਖੁੱਲੀ ਬਰੈਕਟ '<' ਪਾਉਣ ਮਗਰੋਂ"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr "ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ, ਜਦੋਂ ਕਿ-ਇਹ '%s' ਆਖਰੀ ਐਲੀਮਿੰਟ ਖੁੱਲਾ ਹੈ"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -487,19 +462,19 @@ msgid ""
msgstr ""
"ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ, ਇਕ ਬੰਦ ਬਰੈਕਟ <%s/> ਜੋ ਕਿ ਪੱਟੀ ਨੂੰ ਬੰਦ ਕਰਦੀ ਹੈ, ਦੀ ਉਮੀਦ ਸੀ"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "ਇਕ ਐਲੀਮਿੰਟ ਦੇ ਨਾਂ ਕਰਕੇ ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "ਇਕ ਗੁਣ ਦੇ ਨਾਂ ਕਰਕੇ ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "ਇਕ ਐਲੀਮਿੰਟ-ਖੋਲ੍ਹਣ ਟੈਗ ਕਰਕੇ ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -507,16 +482,16 @@ msgstr ""
"ਇਕ ਗੁਣ ਦੇ ਨਾਂ ਤੋਂ ਪਹਿਲਾਂ ਬਰਾਬਰ ਦੇ ਨਿਸ਼ਾਨ ਕਰਕੇ ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ, ਗੁਣ ਦਾ ਕੋਈ ਮੁੱਲ "
"ਨਹੀਂ ਹੈ"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "ਇਕ ਗੁਣ ਦੇ ਮੁੱਲ ਕਰਕੇ ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "ਇਕ ਐਲੀਮਿੰਟ '%s' ਦੇ ਟੈਗ ਕਰਕੇ ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "ਇਕ ਟਿੱਪਣੀ ਜਾਂ ਹਦਾਇਤ ਚਲਾਉਣ ਦੌਰਾਨ ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ"
@ -952,61 +927,61 @@ msgstr "ਬਦਲਾਉ ਇੰਪੁੱਟ ਵਿੱਚ ਤਰਤੀਬ ਜਾ
msgid "Character out of range for UTF-16"
msgstr "UTF-੧੬ ਲਈ ਅੱਖਰ ਰੇਜ਼ ਤੋਂ ਬਾਹਰ"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "ਵਰਤੋਂ:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[ਚੋਣ...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "ਮੱਦਦ ਚੋਣ:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "ਮੱਦਦ ਚੋਣ ਵੇਖੋ"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "ਸਭ ਮੱਦਦ ਚੋਣਾਂ ਵੇਖੋ"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "ਐਪਲੀਕੇਸ਼ਨ ਚੋਣ:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "ਪੂਰਨ ਅੰਕ ਮੁੱਲ %s' ਨੂੰ %s ਲਈ ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "ਪੂਰਨ ਅੰਕ '%s' %s ਲਈ ਰੇਜ਼ ਤੋਂ ਬਾਹਰ ਜਾ ਰਿਹਾ ਹੈ"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "%2$s ਲਈ ਡਬਲ ਮੁੱਲ '%1$s' ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "%2$s ਲਈ '%1$s' ਡਬਲ ਮੁੱਲ ਰੇਜ਼ ਤੋਂ ਬਾਹਰ ਹੈ"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "ਚੋਣ %s ਪਾਰਸ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s ਲਈ ਆਰਗੂਮੈਂਟ ਗੁੰਮ ਹੈ"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "ਅਣਜਾਣ ਚੋਣ %s"
@ -1124,8 +1099,8 @@ msgstr "%s ਨੂੰ ਬਹੁਤ ਵੱਧ ਗਿਣਤੀ ਪਾਸ ਕੀਤ
msgid "Stream is already closed"
msgstr "ਸਟਰੀਮ ਪਹਿਲਾਂ ਹੀ ਬੰਦ ਹੈ"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "ਓਪਰੇਸ਼ਨ ਰੱਦ ਕੀਤਾ ਗਿਆ"
@ -1265,7 +1240,7 @@ msgstr "ਰੱਦ ਸਹਾਇਕ ਨਹੀਂ"
msgid "File names cannot contain '%c'"
msgstr "ਫਾਇਲ ਨਾਂ ਵਿੱਚ ' %c' ਮੌਜੂਦ ਨਹੀਂ ਹੋ ਸਕਦਾ"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "ਵਾਲੀਅਮ ਲਈ ਮਾਊਂਟ ਸਥਾਪਤ ਨਹੀਂ ਹੈ"
@ -1286,14 +1261,6 @@ msgstr "ਫਾਇਲ ਈਨੂਮੀਟਰੇਟਰ ਗੰਭੀਰ ਕਾਰਵ
msgid "File enumerator is already closed"
msgstr "ਫਾਇਲ ਈਨੂਮੀਟਰੇਟਰ ਪਹਿਲਾਂ ਹੀ ਬੰਦ ਹੈ"
#: gio/gfileicon.c:145
msgid "file"
msgstr "ਫਾਇਲ"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "ਫਾਇਲ ਆਈਕਾਨ ਰੱਖਦੀ ਹੈ"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1702,55 +1669,11 @@ msgstr "ਆਉਟਪੁੱਟ ਸਟਰੀਮ ਲਿਕਣ ਲਈ ਬਣਾਈ
msgid "Source stream is already closed"
msgstr "ਸਰੋਤ ਸਟਰੀਮ ਬੰਦ ਕੀਤਾ ਗਿਆ ਹੈ"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "ਨਾਂ"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "ਆਈਕਾਨ ਦਾ ਨਾਂ"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "ਨਾਂ"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "ਅਰੇ ਵਿੱਚ ਆਈਕਾਨ ਨਾਂ ਹਨ"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "ਡਿਫਾਲਟ ਫਾਲਬੈਕ ਵਰਤੋਂ"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"ਜੀ '-' ਅੱਖਰ ਉੱਤੇ ਨਾਂ ਨੂੰ ਛੋਟਾ ਕਰਨ ਲਈ ਡਿਫਾਲਟ ਫਾਲਬੈਕ ਲੱਭਿਆ ਵਰਤਣਾ ਹੈ। ਜੇ ਕਈ ਨਾਂ ਲੱਭਣ ਤਾਂ ਪਹਿਲੇ "
"ਦੇ ਬਾਅਦ ਨਾਂ ਅਣਡਿੱਠੇ ਕਰੋ।"
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "GThemedIcon ਇੰਕੋਡਿੰਗ ਦਾ %d ਵਰਜਨ ਹੈਂਡਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "ਫਾਇਲ ਡਿਸਕ੍ਰਿਪਟਰ"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "ਫਾਇਲ ਡਿਸਕ੍ਰਿਪਟਰ ਪੜ੍ਹਨਾ ਹੈ"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "ਫਾਇਲ ਡਿਸਕ੍ਰਿਪਟਰ ਬੰਦ ਕਰੋ"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "ਕੀ ਸਟਰੀਮ ਬੰਦ ਹੋਣ ਨਾਲ ਫਾਇਲ ਡਿਸਕ੍ਰਿਪਟਰ ਵੀ ਬੰਦ ਕਰਨਾ ਹੈ"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1767,16 +1690,12 @@ msgstr "unix ਬੰਦ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ: %s"
msgid "Filesystem root"
msgstr "ਫਾਇਲ ਸਿਸਟਮ ਰੂਟ"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "ਲਿਖਣ ਲਈ ਫਾਇਲ ਡਿਸਕ੍ਰਿਪਟਰ"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "unix ਉੱਤੇ ਲਿਖਣ ਦੌਰਾਨ ਗਲਤੀ: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "ਵਾਲੀਅਮ ਹਾਲੇ ਬਣਾਇਆ ਨਹੀਂ ਹੈ"
@ -1812,3 +1731,72 @@ msgstr "ਇੱਕ ਲੰਮਾ ਲਿਸਟਿੰਗ ਫਾਰਮੈਟ ਵਰ
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[FILE...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "ਇਹ %s ਅੱਖਰ ਕੋਈ ਐਂਟਟੀ ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਗਲਤ ਹੈ & ਅੱਖਰ ਇਕਾਈ ਆਰੰਭ ਕਰਦਾ ਹੈ; ਜੇਕਰ ਇਹ ਐਪਰਸੈਡ "
#~ "ਐਂਟਟੀ ਬਣਨਯੋਗ ਨਹੀਂ ਤਾਂ ਇਸ ਨੂੰ ਇੰਝ &amp; ਛੱਡ ਦਿਓ"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "'%s' ਅੱਖਰ ਇੱਕ ਐਂਟਟੀ ਦੇ ਨਾਂ ਲਈ ਜਾਇਜ਼ ਨਹੀਂ ਹੈ"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "ਖਾਲੀ ਅੱਖਰ ਰੈਫਰੈਂਸ, ਕੋਈ ਨੰਬਰ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ ਜਿਵੇਂ ਕਿ &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "ਅਧੂਰਾ ਐਂਟਟੀ ਰੈਫਰੈਂਸ"
#~ msgid "Unfinished character reference"
#~ msgstr "ਅਧੂਰਾ ਅੱਖਰੀ ਰੈਫਰੈਂਸ"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "ਗਲਤ UTF-8 ਇੰਕੋਡ ਟੈਕਸਟ - ਓਵਰਲਾਂਗ ਕ੍ਰਮ"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "ਗਲਤ UTF-8 ਇੰਕੋਡ ਟੈਕਸਟ - ਇੱਕ ਸ਼ੁਰੂਆਤੀ ਅੱਖਰ ਨਹੀਂ"
#~ msgid "file"
#~ msgstr "ਫਾਇਲ"
#~ msgid "The file containing the icon"
#~ msgstr "ਫਾਇਲ ਆਈਕਾਨ ਰੱਖਦੀ ਹੈ"
#~ msgid "name"
#~ msgstr "ਨਾਂ"
#~ msgid "The name of the icon"
#~ msgstr "ਆਈਕਾਨ ਦਾ ਨਾਂ"
#~ msgid "names"
#~ msgstr "ਨਾਂ"
#~ msgid "An array containing the icon names"
#~ msgstr "ਅਰੇ ਵਿੱਚ ਆਈਕਾਨ ਨਾਂ ਹਨ"
#~ msgid "use default fallbacks"
#~ msgstr "ਡਿਫਾਲਟ ਫਾਲਬੈਕ ਵਰਤੋਂ"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "ਜੀ '-' ਅੱਖਰ ਉੱਤੇ ਨਾਂ ਨੂੰ ਛੋਟਾ ਕਰਨ ਲਈ ਡਿਫਾਲਟ ਫਾਲਬੈਕ ਲੱਭਿਆ ਵਰਤਣਾ ਹੈ। ਜੇ ਕਈ ਨਾਂ ਲੱਭਣ ਤਾਂ "
#~ "ਪਹਿਲੇ ਦੇ ਬਾਅਦ ਨਾਂ ਅਣਡਿੱਠੇ ਕਰੋ।"
#~ msgid "File descriptor"
#~ msgstr "ਫਾਇਲ ਡਿਸਕ੍ਰਿਪਟਰ"
#~ msgid "The file descriptor to read from"
#~ msgstr "ਫਾਇਲ ਡਿਸਕ੍ਰਿਪਟਰ ਪੜ੍ਹਨਾ ਹੈ"
#~ msgid "Close file descriptor"
#~ msgstr "ਫਾਇਲ ਡਿਸਕ੍ਰਿਪਟਰ ਬੰਦ ਕਰੋ"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "ਕੀ ਸਟਰੀਮ ਬੰਦ ਹੋਣ ਨਾਲ ਫਾਇਲ ਡਿਸਕ੍ਰਿਪਟਰ ਵੀ ਬੰਦ ਕਰਨਾ ਹੈ"
#~ msgid "The file descriptor to write to"
#~ msgstr "ਲਿਖਣ ਲਈ ਫਾਇਲ ਡਿਸਕ੍ਰਿਪਟਰ"

318
po/pl.po
View File

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: GLib\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-17 18:00+0100\n"
"Last-Translator: Tomasz Dominikowski <dominikowski@gmail.com>\n"
"Language-Team: Aviary.pl <gnomepl@aviary.pl>\n"
@ -311,53 +311,32 @@ msgstr "Nie można otworzyć pliku \"%s\": funkcja open() zwróciła błąd: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Nie można zmapować pliku \"%s\": funkcja mmap() zwróciła błąd: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Błąd w wierszu %d przy znaku %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Tekst nie jest poprawnym łańcuchem UTF-8 - niepoprawne \"%s\""
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Błąd w wierszu %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Napotkano pustą jednostkę \"&;\"; poprawnymi jednostkami są: &amp; &quot; "
"&lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Znak \"%s\" nie jest dopuszczalny na początku nazwy jednostki; znak & "
"rozpoczyna jednostkę; jeśli znak ten nie powinien rozpoczynać jednostki, "
"należy go zapisać jako &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Znak \"%s\" nie jest dopuszczalny wewnątrz nazwy jednostki"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Nazwa jednostki \"%s\" nie jest znana"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Jednostka nie jest zakończona średnikiem; najprawdopodobniej został użyty "
"znak &, który nie miał oznaczać jednostki - należy go zapisać jako &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -367,16 +346,7 @@ msgstr ""
"będąca częścią odniesienia do znaku (np. &#234;) - być może liczba jest zbyt "
"duża"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Odniesienie do znaku \"%-.*s\" nie jest zapisem dozwolonego znaku"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Puste odniesienie do znaku; powinno ono zawierać cyfry, np. &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -386,33 +356,36 @@ msgstr ""
"został użyty znak &, który nie miał oznaczać jednostki - należy go zapisać "
"jako &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Niezakończone odniesienie do jednostki"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Niezakończone odniesienie do znaku"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Tekst nie jest poprawnym łańcuchem UTF-8 - za długa sekwencja"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr ""
"Tekst nie jest poprawnym łańcuchem UTF-8 - nie jest znakiem początkowym"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Tekst nie jest poprawnym łańcuchem UTF-8 - niepoprawne \"%s\""
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Odniesienie do znaku \"%-.*s\" nie jest zapisem dozwolonego znaku"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Napotkano pustą jednostkę \"&;\"; poprawnymi jednostkami są: &amp; &quot; "
"&lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Nazwa jednostki \"%s\" nie jest znana"
#: 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 &amp;"
msgstr ""
"Jednostka nie jest zakończona średnikiem; najprawdopodobniej został użyty "
"znak &, który nie miał oznaczać jednostki - należy go zapisać jako &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokument musi rozpoczynać się jakimś elementem (np. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -421,7 +394,7 @@ msgstr ""
"Znak \"%s\" nie powinien występować po znaku \"<\"; nie może on rozpoczynać "
"nazwy elementu"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -430,7 +403,7 @@ msgstr ""
"Nieoczekiwany znak \"%s\", oczekiwano znaku \">\", by zakończyć znacznik \"%s"
"\" pustego elementu"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -438,7 +411,7 @@ msgstr ""
"Nieoczekiwany znak \"%s\"; po nazwie atrybutu \"%s\" elementu \"%s\" "
"oczekiwano znaku \"=\""
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -449,7 +422,7 @@ msgstr ""
"znacznik początkowy elementu \"%s\" lub opcjonalnie atrybutu; być może w "
"nazwie atrybutu został użyty niepoprawny znak"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -458,7 +431,7 @@ msgstr ""
"Nieoczekiwany znak \"%s\"; oczekiwano otwierającego znaku cudzysłowu po "
"znaku równości przy podawaniu wartości atrybutu \"%s\" elementu \"%s\""
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -467,7 +440,7 @@ msgstr ""
"Znak \"%s\" nie jest znakiem, który może pojawić się po sekwencji \"</\"; \"%"
"s\" nie może rozpoczynać nazwy elementu"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -476,28 +449,28 @@ msgstr ""
"Znak \"%s\" nie jest znakiem, który może wystąpić po domykającej nazwie "
"elementu \"%s\"; dopuszczalnym znakiem jest \">\""
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
"Element \"%s\" został zamknięty, lecz brak aktualnie otwartego elementu"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
"Element \"%s\" został zamknięty, lecz aktualnie otwartym elementem jest \"%s"
"\""
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Dokument jest pusty lub zawiera tylko separatory"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Zaraz po znaku \"<\" nastąpił nieoczekiwany koniec dokumentu"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -506,7 +479,7 @@ msgstr ""
"Nastąpił nieoczekiwany koniec dokumentu, gdy pewne elementy są wciąż otwarte "
"- \"%s\" był ostatnim otwartym elementem"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -515,21 +488,21 @@ msgstr ""
"Nastąpił nieoczekiwany koniec dokumentu; oczekiwano znaku \">\", kończącego "
"znacznik <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Nastąpił nieoczekiwany koniec dokumentu wewnątrz nazwy elementu"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Nastąpił nieoczekiwany koniec dokumentu wewnątrz nazwy atrybutu"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"Nastąpił nieoczekiwany koniec dokumentu wewnątrz znacznika otwierającego "
"element."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -537,18 +510,18 @@ msgstr ""
"Nastąpił nieoczekiwany koniec dokumentu po znaku równości występującym po "
"nazwie atrybutu; brak wartości atrybutu"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Nastąpił nieoczekiwany koniec dokumentu wewnątrz wartości atrybutu"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Nastąpił nieoczekiwany koniec dokumentu wewnątrz znacznika domykającego "
"elementu \"%s\""
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Nastąpił nieoczekiwany koniec dokumentu wewnątrz komentarza lub instrukcji "
@ -1020,62 +993,62 @@ msgstr "Niepoprawna sekwencja na wejściu konwersji"
msgid "Character out of range for UTF-16"
msgstr "Znak jest poza zakresem dla UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Użycie:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPCJA...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Opcje pomocy:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Wyświetlenie opcji pomocy"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Wyświetlenie wszystkich opcji pomocy"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Opcje aplikacji:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Nie można przetworzyć wartości liczbowej \"%s\" dla %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Wartość liczbowa \"%s\" dla %s jest z poza dopuszczalnego zakresu"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Nie można przetworzyć podwójnej wartości liczbowej \"%s\" dla %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
"Podwójna wartość liczbowa \"%s\" dla %s jest z poza dopuszczalnego zakresu"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Błąd podczas przetwarzania opcji %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Brakujący parametr dla %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Nieznana opcja %s"
@ -1201,8 +1174,8 @@ msgstr "Zbyt duża wartość liczby przekazana do %s"
msgid "Stream is already closed"
msgstr "Strumień jest już zamknięty"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Operacja została anulowana"
@ -1343,7 +1316,7 @@ msgstr "Kosz nie jest obsługiwany"
msgid "File names cannot contain '%c'"
msgstr "Nazwy plików nie mogą zawierać \"%c\""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "wolumin nie obsługuje montowania"
@ -1364,14 +1337,6 @@ msgstr "Enumerator plików ma zaległą operację"
msgid "File enumerator is already closed"
msgstr "Enumerator plików jest już zamknięty"
#: gio/gfileicon.c:145
msgid "file"
msgstr "plik"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "Plik zawierający ikonę"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1783,56 +1748,11 @@ msgstr "Strumień wyjściowy nie obsługuje zapisu"
msgid "Source stream is already closed"
msgstr "Strumień źródłowy jest już zamknięty"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "nazwa"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Nazwa ikony"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "nazwy"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Tablica zawierająca nazwy ikon"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "użycie domyślnych wartości bezpiecznych"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Określa, czy używać domyślnych wartości bezpiecznych wyznaczanych przez "
"skrócenie nazwy na znaku \"-\". W przypadku wielu nadanych nazw nazwy po tym "
"znaku są ignorowane."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Nie można obsłużyć wersji %d kodowania GThemedIcon"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Deskryptor pliku"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "Deskryptor pliku do odczytu"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Zamyka deskryptor pliku"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "Określa, czy zamykać deskryptor pliku, gdy zamykany jest strumień"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1849,16 +1769,12 @@ msgstr "Błąd podczas zamykania uniksa: %s"
msgid "Filesystem root"
msgstr "Katalog główny systemu plików"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "Deskryptor pliku do zapisu"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Błąd podczas zapisu do uniksa: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "wolumin nie obsługuje wysunięcia"
@ -1895,6 +1811,78 @@ msgstr "używa długiego formatu listy"
msgid "[FILE...]"
msgstr "[PLIK...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Znak \"%s\" nie jest dopuszczalny na początku nazwy jednostki; znak & "
#~ "rozpoczyna jednostkę; jeśli znak ten nie powinien rozpoczynać jednostki, "
#~ "należy go zapisać jako &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Znak \"%s\" nie jest dopuszczalny wewnątrz nazwy jednostki"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Puste odniesienie do znaku; powinno ono zawierać cyfry, np. &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Niezakończone odniesienie do jednostki"
#~ msgid "Unfinished character reference"
#~ msgstr "Niezakończone odniesienie do znaku"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Tekst nie jest poprawnym łańcuchem UTF-8 - za długa sekwencja"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr ""
#~ "Tekst nie jest poprawnym łańcuchem UTF-8 - nie jest znakiem początkowym"
#~ msgid "file"
#~ msgstr "plik"
#~ msgid "The file containing the icon"
#~ msgstr "Plik zawierający ikonę"
#~ msgid "name"
#~ msgstr "nazwa"
#~ msgid "The name of the icon"
#~ msgstr "Nazwa ikony"
#~ msgid "names"
#~ msgstr "nazwy"
#~ msgid "An array containing the icon names"
#~ msgstr "Tablica zawierająca nazwy ikon"
#~ msgid "use default fallbacks"
#~ msgstr "użycie domyślnych wartości bezpiecznych"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Określa, czy używać domyślnych wartości bezpiecznych wyznaczanych przez "
#~ "skrócenie nazwy na znaku \"-\". W przypadku wielu nadanych nazw nazwy po "
#~ "tym znaku są ignorowane."
#~ msgid "File descriptor"
#~ msgstr "Deskryptor pliku"
#~ msgid "The file descriptor to read from"
#~ msgstr "Deskryptor pliku do odczytu"
#~ msgid "Close file descriptor"
#~ msgstr "Zamyka deskryptor pliku"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "Określa, czy zamykać deskryptor pliku, gdy zamykany jest strumień"
#~ msgid "The file descriptor to write to"
#~ msgstr "Deskryptor pliku do zapisu"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Błąd podczas przetwarzania opcji %s"

945
po/ps.po

File diff suppressed because it is too large Load Diff

317
po/pt.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 2.26\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-02-25 00:40+0000\n"
"Last-Translator: Duarte Loreto <happyguy_pt@hotmail.com>\n"
"Language-Team: Portuguese <gnome_pt@yahoogroups.com>\n"
@ -301,54 +301,32 @@ msgstr "Falha ao abrir o ficheiro '%s': falha no open(): %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Falha ao mapear o ficheiro '%s': falha no mmap(): %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Erro na linha %d caracter %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Texto codificado UTF-8 inválido - '%s' inválido"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Erro na linha %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Detectada entidade vazia '&;'; entidades válidas são: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Caracter '%s' não é válido no início do nome de uma entidade; o caracter & "
"inicia uma entidade; se este 'i comercial' não é suposto ser uma entidade, "
"mascare-o como &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Caracter '%s' não é válido dentro do nome de uma entidade"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Nome de entidade '%s' desconhecido"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entidade não termina com um ponto e vírgula; provavelmente foi utilizado um "
"caracter 'i comercial' sem intenção de iniciar uma entidade - mascare-o como "
"&amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -358,16 +336,7 @@ msgstr ""
"referência de caracter (&#234; por exemplo) - talvez o dígito seja demasiado "
"grande"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Referência de caracter '%-.*s' não codifica um caracter permitido"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Referência de caracter vazia; deverá incluir um dígito tal como &#454;"
#: glib/gmarkup.c:685
#: 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,32 +346,37 @@ msgstr ""
"utilizado um caracter 'i comercial' sem intenção de iniciar uma entidade - "
"mascare-o como &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Referência de entidade por terminar"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Referência de caracter por terminar"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Texto codificado UTF-8 inválido - sequência demasiado extensa"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Texto codificado UTF-8 inválido - não é um caracter inicial"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Texto codificado UTF-8 inválido - '%s' inválido"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Referência de caracter '%-.*s' não codifica um caracter permitido"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Detectada entidade vazia '&;'; entidades válidas são: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Nome de entidade '%s' desconhecido"
#: 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 &amp;"
msgstr ""
"Entidade não termina com um ponto e vírgula; provavelmente foi utilizado um "
"caracter 'i comercial' sem intenção de iniciar uma entidade - mascare-o como "
"&amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Documento tem de começar com um elemento (ex. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -411,7 +385,7 @@ msgstr ""
"'%s' não é um caracter válido após um caracter '<'; não pode iniciar um nome "
"de elemento"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -420,7 +394,7 @@ msgstr ""
"Caracter estranho '%s', era esperado um caracter '>' para terminar a "
"etiqueta de elemento vazio '%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -428,7 +402,7 @@ msgstr ""
"Caracter estranho '%s', era esperado um '=' após o nome do atributo '%s' do "
"elemento '%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -439,7 +413,7 @@ msgstr ""
"etiqueta inicial do elemento '%s', ou opcionalmente um atributo; talvez "
"tenha sido utilizado um caracter inválido no nome de um atributo"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -448,7 +422,7 @@ msgstr ""
"Caracter estranho '%s', era esperada uma abertura de aspa após o sinal de "
"igual ao atribuir valor ao atributo '%s' do elemento '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -457,7 +431,7 @@ msgstr ""
"'%s' não é um caracter válido após os caracteres '</'; '%s' não pode iniciar "
"o nome de um elemento"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -466,25 +440,25 @@ msgstr ""
"'%s' não é um caracter válido após o nome do elemento de fecho '%s'; o "
"caracter permitido é '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Elemento '%s' foi fechado, nenhum elemento está actualmente aberto"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Elemento '%s' foi fechado, mas o elemento actualmente aberto é '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Documento estava vazio ou apenas continha espaços"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Documento terminou inesperadamente logo após um caracter menor que '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -493,7 +467,7 @@ msgstr ""
"Documento terminou inesperadamente com elementos ainda abertos - '%s' foi o "
"último elemento aberto"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -502,21 +476,21 @@ msgstr ""
"Documento terminou inesperadamente, era esperado um maior que '>' para "
"terminar a etiqueta <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Documento terminou inesperadamente dentro do nome de um elemento"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Documento terminou inesperadamente dentro do nome de um atributo"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"Documento terminou inesperadamente dentro da etiqueta de abertura de um "
"elemento."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -524,18 +498,18 @@ msgstr ""
"Documento terminou inesperadamente após o sinal de igual posterior a um nome "
"de atributo; nenhum valor de atributo"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Documento terminou inesperadamente dentro do valor de um atributo"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Documento terminou inesperadamente dentro da etiqueta de fecho do elemento '%"
"s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Documento terminou inesperadamente dentro de um comentário ou instrução de "
@ -982,61 +956,61 @@ msgstr "Sequência inválida na conversão da entrada"
msgid "Character out of range for UTF-16"
msgstr "Caracter fora do limite para UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Utilização:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPÇÃO...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Opções de Ajuda:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Apresentar as opções de ajuda"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Apresentar todas as opções de ajuda"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Opções da Aplicação:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Incapaz de processar o valor inteiro '%s' para %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Valor inteiro '%s' para %s para lá do limite permitido"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Incapaz de processar o valor double '%s' para %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Valor double '%s' para %s para lá do limite permitido"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Erro ao processar a opção %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Argumento em falta para %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Opção %s desconhecida"
@ -1160,8 +1134,8 @@ msgstr "Valor de contagem demasiado grande passado para %s"
msgid "Stream is already closed"
msgstr "O fluxo já se encontra fechado"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "A operação foi cancelada"
@ -1302,7 +1276,7 @@ msgstr "Não existe suporte para o Lixo"
msgid "File names cannot contain '%c'"
msgstr "Nomes de ficheiros não podem conter '%c'"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "unidade não implementa a montagem"
@ -1323,14 +1297,6 @@ msgstr "Enumerador de ficheiro tem uma operação por terminar"
msgid "File enumerator is already closed"
msgstr "Enumerador de ficheiro já está fechado"
#: gio/gfileicon.c:145
msgid "file"
msgstr "ficheiro"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "O ficheiro que contém o ícone"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1739,55 +1705,11 @@ msgstr "Fluxo de saída não implementa a escrita"
msgid "Source stream is already closed"
msgstr "Fluxo de origem já está fechado"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "nome"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "O nome do ícone"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "nomes"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Uma matriz contendo os nomes dos ícones"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "utilizar nomes de recurso por omissão"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Se utilizar ou não os nomes de recurso criados abreviando o nome nos "
"caracteres '-'. Ignora os nomes após o primeiro se forem indicados vários."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Incapaz de manipular a versão %d da codificação GThemedIcon"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Descritor de ficheiro"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "O descritor do ficheiro de onde ler"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Fechar o descritor de ficheiro"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "Se fechar ou não o descritor do ficheiro quando o fluxo é fechado"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1804,16 +1726,12 @@ msgstr "Erro ao fechar unix: %s"
msgid "Filesystem root"
msgstr "Raiz do sistema de ficheiros"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "O descritor de ficheiro onde escrever"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Erro ao escrever no unix: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "unidade não implementa a ejecção"
@ -1850,6 +1768,77 @@ msgstr "utilizar um formato de lista extenso"
msgid "[FILE...]"
msgstr "[FICHEIRO...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Caracter '%s' não é válido no início do nome de uma entidade; o caracter "
#~ "& inicia uma entidade; se este 'i comercial' não é suposto ser uma "
#~ "entidade, mascare-o como &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Caracter '%s' não é válido dentro do nome de uma entidade"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr ""
#~ "Referência de caracter vazia; deverá incluir um dígito tal como &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Referência de entidade por terminar"
#~ msgid "Unfinished character reference"
#~ msgstr "Referência de caracter por terminar"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Texto codificado UTF-8 inválido - sequência demasiado extensa"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Texto codificado UTF-8 inválido - não é um caracter inicial"
#~ msgid "file"
#~ msgstr "ficheiro"
#~ msgid "The file containing the icon"
#~ msgstr "O ficheiro que contém o ícone"
#~ msgid "name"
#~ msgstr "nome"
#~ msgid "The name of the icon"
#~ msgstr "O nome do ícone"
#~ msgid "names"
#~ msgstr "nomes"
#~ msgid "An array containing the icon names"
#~ msgstr "Uma matriz contendo os nomes dos ícones"
#~ msgid "use default fallbacks"
#~ msgstr "utilizar nomes de recurso por omissão"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Se utilizar ou não os nomes de recurso criados abreviando o nome nos "
#~ "caracteres '-'. Ignora os nomes após o primeiro se forem indicados vários."
#~ msgid "File descriptor"
#~ msgstr "Descritor de ficheiro"
#~ msgid "The file descriptor to read from"
#~ msgstr "O descritor do ficheiro de onde ler"
#~ msgid "Close file descriptor"
#~ msgstr "Fechar o descritor de ficheiro"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "Se fechar ou não o descritor do ficheiro quando o fluxo é fechado"
#~ msgid "The file descriptor to write to"
#~ msgstr "O descritor de ficheiro onde escrever"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u byte"

View File

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-16 17:14-0300\n"
"Last-Translator: Vladimir Melo <vmelo@gnome.org>\n"
"Language-Team: Brazilian Portuguese <gnome-l10n-br@listas.cipsga.org.br>\n"
@ -308,53 +308,32 @@ msgstr "Falha ao abrir arquivo \"%s\": open() falhou: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Falha ao mapear arquivo \"%s\": mmap() falhou: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Erro na linha %d caractere %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Texto codificado em UTF-8 inválido - '%s' não válido"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Erro na linha %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Entidade \"&;\" vazia vista; as entidades válidas são: &amp; &quot; &lt; "
"&gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Caractere \"%s\" não é válido no início do nome da entidade; o caractere & "
"inicia uma entidade; se este \"e\" comercial não é suposto ser uma entidade, "
"escape-o como &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Caractere \"%s\" não é válido dentro de um nome de entidade"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Nome de entidade \"%s\" não é conhecido"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entidade não termina com um ponto e vírgula; provavelmente você utilizou um "
"\"e\" comercial sem desejar iniciar uma entidade - escape-o com &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -364,17 +343,7 @@ msgstr ""
"referência de caractere (&#234; por exemplo) - talvez o dígito seja grande "
"demais"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Referência de caractere \"%-.*s\" não codifica um caractere permitido"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr ""
"Referência de caractere vazia; deveria incluir um dígito tal como &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -384,32 +353,36 @@ msgstr ""
"utilizou um caractere \"e\" comercial sem desejar iniciar uma entidade - "
"escape-o com &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Referência de entidade inacabada"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Referência de caractere inacabada"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Texto codificado em UTF-8 inválido - seqüência muito extensa"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Texto codificado em UTF-8 inválido - não é um caractere inicial"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Texto codificado em UTF-8 inválido - '%s' não válido"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Referência de caractere \"%-.*s\" não codifica um caractere permitido"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Entidade \"&;\" vazia vista; as entidades válidas são: &amp; &quot; &lt; "
"&gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Nome de entidade \"%s\" não é conhecido"
#: 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 &amp;"
msgstr ""
"Entidade não termina com um ponto e vírgula; provavelmente você utilizou um "
"\"e\" comercial sem desejar iniciar uma entidade - escape-o com &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Documento tem de começar com um elemento (ex. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -418,7 +391,7 @@ msgstr ""
"\"%s\" não é um caractere válido após um caractere \"<\"; não poderá começar "
"um nome de elemento"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -427,7 +400,7 @@ msgstr ""
"Caractere estranho \"%s\", esperado um caractere \">\" para finalizar a "
"marca \"%s\" de elemento vazio"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -435,7 +408,7 @@ msgstr ""
"Caractere estranho \"%s\", esperava-se um \"=\" após o nome do atributo \"%s"
"\" do elemento \"%s\""
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -446,7 +419,7 @@ msgstr ""
"terminar a marca inicial do elemento \"%s\", ou opcionalmente um atributo; "
"talvez tenha utilizado um caractere inválido no nome de atributo"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -455,7 +428,7 @@ msgstr ""
"Caractere estranho \"%s\", esperava-se uma aspa aberta após o sinal de igual "
"ao atribuir o valor ao atributo \"%s\" do elemento \"%s\""
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -464,7 +437,7 @@ msgstr ""
"\"%s\" não é um caractere válido após os caracteres \"</\"; \"%s\" não "
"poderá começar o nome de um elemento"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -473,25 +446,25 @@ msgstr ""
"\"%s\" não é um caractere válido após o nome do elemento de fecho \"%s\"; o "
"caractere permitido é \">\""
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Elemento \"%s\" foi fechado, nenhum elemento está atualmente aberto"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Elemento \"%s\" foi fechado, mas o elemento atualmente aberto é \"%s\""
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Documento estava vazio ou apenas continha espaços"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Documento terminou inesperadamente logo após um menor que \"<\""
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -500,7 +473,7 @@ msgstr ""
"Documento terminou inesperadamente com elementos ainda abertos - \"%s\" foi "
"o último elemento aberto"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -509,21 +482,21 @@ msgstr ""
"Documento terminou inesperadamente, esperava-se ver um maior que (\">\") "
"para terminar a marca <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Documento terminou inesperadamente dentro de um nome de elemento"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Documento terminou inesperadamente dentro de um nome de atributo"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"Documento terminou inesperadamente dentro de uma marca de abertura de "
"elemento."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -531,18 +504,18 @@ msgstr ""
"Documento terminou inesperadamente após o sinal de igual que se seguiu a um "
"nome de atributo; nenhum valor de atributo"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Documento terminou inesperadamente dentro de um valor de atributo"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Documento terminou inesperadamente dentro da marca de fechamento do elemento "
"\"%s\""
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Documento terminou inesperadamente dentro de um comentário ou instrução de "
@ -989,62 +962,62 @@ msgstr "Seqüência inválida na conversão da entrada"
msgid "Character out of range for UTF-16"
msgstr "Caractere fora do limite para UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Uso:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPÇÕES...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Opções de ajuda:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Exibir opções de ajuda"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Exibir todas as opções de ajuda"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Opções de aplicativo:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Não é possível analisar o valor inteiro \"%s\" para %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Valor inteiro \"%s\" para %s fora dos limites"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
"Não é possível analisar o ponto flutuante com dupla precisão \"%s\" para %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Ponto flutuante com dupla precisão \"%s\" para %s fora dos limites"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Erro ao ler a opção %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Falta argumento para %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Opção %s desconhecida"
@ -1168,8 +1141,8 @@ msgstr "Valor muito alto passado para %s"
msgid "Stream is already closed"
msgstr "O fluxo já está fechado"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "A operação foi cancelada"
@ -1310,7 +1283,7 @@ msgstr "Não há suporte para lixeira"
msgid "File names cannot contain '%c'"
msgstr "Nomes de arquivo não podem conter \"%c\""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "volume não implementa montagem"
@ -1331,14 +1304,6 @@ msgstr "O enumerador do arquivo tem operação pendente"
msgid "File enumerator is already closed"
msgstr "O enumerador do arquivo já está fechado"
#: gio/gfileicon.c:145
msgid "file"
msgstr "arquivo"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "O arquivo contendo o ícone"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1748,55 +1713,11 @@ msgstr "Fluxo de saída não implementa escrita"
msgid "Source stream is already closed"
msgstr "A fonte do fluxo já está fechada"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "nome"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "O nome do ícone"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "nomes"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Um array contendo os nomes dos ícones"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "usa os fallbacks padrões"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Se deve tentar os nomes mais curtos, localizados através do caractere '-'. "
"Ignora nomes depois do primeiro, de vários foram fornecidos."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Não é possível lidar com a versão %d da codificação GThemedIcon"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Descritor de arquivo"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "O descritor de arquivo de onde ler"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Fechar descritor de arquivo"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "Fechar ou não o descritor de arquivo quando o fluxo for fechado"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1813,16 +1734,12 @@ msgstr "Erro ao fechar unix: %s"
msgid "Filesystem root"
msgstr "Sistema de arquivos root"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "O descritor de arquivo para o qual escrever"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Erro ao escrever para unix: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "volume não implementa ejetar"
@ -1859,6 +1776,77 @@ msgstr "usar um formato de listagem longo"
msgid "[FILE...]"
msgstr "[ARQUIVO...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Caractere \"%s\" não é válido no início do nome da entidade; o caractere "
#~ "& inicia uma entidade; se este \"e\" comercial não é suposto ser uma "
#~ "entidade, escape-o como &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Caractere \"%s\" não é válido dentro de um nome de entidade"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr ""
#~ "Referência de caractere vazia; deveria incluir um dígito tal como &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Referência de entidade inacabada"
#~ msgid "Unfinished character reference"
#~ msgstr "Referência de caractere inacabada"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Texto codificado em UTF-8 inválido - seqüência muito extensa"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Texto codificado em UTF-8 inválido - não é um caractere inicial"
#~ msgid "file"
#~ msgstr "arquivo"
#~ msgid "The file containing the icon"
#~ msgstr "O arquivo contendo o ícone"
#~ msgid "name"
#~ msgstr "nome"
#~ msgid "The name of the icon"
#~ msgstr "O nome do ícone"
#~ msgid "names"
#~ msgstr "nomes"
#~ msgid "An array containing the icon names"
#~ msgstr "Um array contendo os nomes dos ícones"
#~ msgid "use default fallbacks"
#~ msgstr "usa os fallbacks padrões"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Se deve tentar os nomes mais curtos, localizados através do caractere "
#~ "'-'. Ignora nomes depois do primeiro, de vários foram fornecidos."
#~ msgid "File descriptor"
#~ msgstr "Descritor de arquivo"
#~ msgid "The file descriptor to read from"
#~ msgstr "O descritor de arquivo de onde ler"
#~ msgid "Close file descriptor"
#~ msgstr "Fechar descritor de arquivo"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "Fechar ou não o descritor de arquivo quando o fluxo for fechado"
#~ msgid "The file descriptor to write to"
#~ msgstr "O descritor de arquivo para o qual escrever"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u byte"

319
po/ro.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-04 23:52+0200\n"
"Last-Translator: Mișu Moldovan <dumol@gnome.ro>\n"
"Language-Team: Română <gnomero-list@lists.sourceforge.net>\n"
@ -300,53 +300,32 @@ msgstr "Nu s-a putut deschide fișierul „%s”: open() a eșuat: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Nu s-a putut mapa fișierul „%s”: mmap() a eșuat: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Eroare în linia %d, caracterul %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Text codat UTF-8 incorect - „%s” nevalid"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Eroare în linia %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"S-a depistat o entitate nulă „&;”. Entitățile valide sunt: &amp; &quot; &lt; "
"&gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Caracterul „%s” nu este valid la începutul numelui unei entități. Caracterul "
"„&” e cel ce începe o entitate. Dacă acest ampersand nu ar trebui să fie o "
"entitate, utilizați &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Caracterul „%s” nu este valid în cadrul unui nume de entitate"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Numele entității „%s” nu este cunoscut"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entitatea nu s-a terminat cu punct și virgulă. Probabil că ați folosit un "
"caracter ampersand fără intenția de a începe o entitate. Utilizați &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -355,16 +334,7 @@ msgstr ""
"Nu s-a putut procesa „%-.*s”, care ar fi trebuit să fie o cifră într-un "
"caracter referință (de exemplu &#234;). Poate cifra este prea mare"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Referința caracterului „%-.*s” nu codează un caracter permis"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Referință caracter goală. Ar trebui să includă o cifră precum &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -373,32 +343,36 @@ msgstr ""
"Referința caracter nu s-a terminat cu punct și virgulă. Probabil ați folosit "
"un caracter ampersand fără intenția de a începe o entitate. Utilizați &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Referință neterminată la o entitate"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Referință caracter neterminată"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Text codat UTF-8 incorect - secvență prea lungă"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Text codat UTF-8 incorect - nu e un caracter de start"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Text codat UTF-8 incorect - „%s” nevalid"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Referința caracterului „%-.*s” nu codează un caracter permis"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"S-a depistat o entitate nulă „&;”. Entitățile valide sunt: &amp; &quot; &lt; "
"&gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Numele entității „%s” nu este cunoscut"
#: 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 &amp;"
msgstr ""
"Entitatea nu s-a terminat cu punct și virgulă. Probabil că ați folosit un "
"caracter ampersand fără intenția de a începe o entitate. Utilizați &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Documentul trebuie să înceapă cu un element (de ex. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -407,7 +381,7 @@ msgstr ""
"„%s” nu este un caracter valid după caracterul „<”, nu poate începe numele "
"unui element"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -416,7 +390,7 @@ msgstr ""
"Caracter neobișnuit „%s”, se aștepta un „>” pentru a termina eticheta de "
"element gol „%s”"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -424,7 +398,7 @@ msgstr ""
"Caracter neobișnuit „%s”, se aștepta un „=” după numele atributului „%s” al "
"elementului „%s”"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -435,7 +409,7 @@ msgstr ""
"eticheta de început a elementului „%s” sau opțional un atribut. Poate ați "
"utilizat un caracter incorect în numele atributului"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -444,7 +418,7 @@ msgstr ""
"Caracter neobișnuit „%s”, se așteptau ghilimele de deschidere după semnul "
"egal pentru a da valoarea atributului „%s” al elementului „%s”"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -453,7 +427,7 @@ msgstr ""
"„%s” nu este un caracter valid după caracterele „</”. „%s” nu poate începe "
"un nume de element"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -462,25 +436,25 @@ msgstr ""
"„%s” nu este un caracter valid după numele elementului de închidere „%s”. "
"Caracterul permis este „>”"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Elementul „%s” a fost închis, nici un element nu este curent deschis"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Elementul „%s” a fost închis, dar elementul deschis curent este „%s”"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Documentul era gol sau conținea doar spațiu gol"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Documentul s-a terminat în mod neașteptat imediat după un caracter „<”"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -489,7 +463,7 @@ msgstr ""
"Documentul s-a terminat în mod neașteptat cu unele elemente încă deschise. „%"
"s” a fost ultimul element deschis"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -498,23 +472,23 @@ msgstr ""
"Documentul s-a terminat în mod neașteptat, se aștepta un caracter „>” care "
"să încheie eticheta <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr ""
"Documentul s-a terminat în mod neașteptat în cadrul numelui unui element"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
"Documentul s-a terminat în mod neașteptat în cadrul numele unui atribut"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"Documentul s-a terminat în mod neașteptat în cadul unei etichete ce "
"deschidea un element"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -522,19 +496,19 @@ msgstr ""
"Documentul s-a terminat în mod neașteptat după semnul egal ce urma unui nume "
"atribut. Nici o valoare pentru atribut"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
"Documentul s-a terminat în mod neașteptat în cadrul valorii unui atribut"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Documentul s-a terminat în mod neașteptat în cadrul etichetei de închidere a "
"elementului „%s”"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Documentul s-a terminat în mod neașteptat în cadrul unui comentariu sau a "
@ -984,61 +958,61 @@ msgstr "Secvență incorectă în inputul conversiei"
msgid "Character out of range for UTF-16"
msgstr "Caracter în afara limitelor standardului UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Utilizare:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPȚIUNE...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Opțiuni ajutor:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Arată opțiunile de ajutor"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Arată toate opțiunile de ajutor"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Opțiuni aplicație:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Nu se poate prelucra valoarea întregului „%s” pentru %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Valoarea întregului „%s” pentru %s este în afara limitelor"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Nu se poate prelucra valoarea dublă „%s” pentru %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Valoarea dublă „%s” pentru %s este în afara limitelor"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Eroare la prelucrarea opțiunii %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Argument lipsă pentru %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Opțiune necunoscută %s"
@ -1159,8 +1133,8 @@ msgstr "S-a pasat o valoare prea mare către %s"
msgid "Stream is already closed"
msgstr "Flux deja închis"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Operațiunea a fost anulată"
@ -1301,7 +1275,7 @@ msgstr "Nu există o implementare pentru coșul de gunoi"
msgid "File names cannot contain '%c'"
msgstr "Numele de fișiere nu pot conține „%c”"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "volumul nu implementează montarea"
@ -1322,14 +1296,6 @@ msgstr "Enumeratorul fișierului este deja deschis de o altă operațiune"
msgid "File enumerator is already closed"
msgstr "Enumeratorul fișierului este deja închis"
#: gio/gfileicon.c:145
msgid "file"
msgstr "fișier"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "Fișierul conținând iconița"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1743,57 +1709,11 @@ msgstr "Fluxul de ieșire nu implementează scrierea"
msgid "Source stream is already closed"
msgstr "Sursa fluxului este deja închisă"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "nume"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Numele iconiței"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "nume"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "O matrice conținând numele iconițelor"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "utilizează variantele de rezervă"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Specifică dacă să se utilizeze variantele de rezervă implicite prin "
"prescurtarea numelor la caracterele „-”. Se vor ignora numele de după cel "
"dintâi dacă sunt precizate mai multe."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Nu se poate gestiona versiunea %d a codării GThemedIcon"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Descriptor de fișier"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "Descriptorul fișierului de citit"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Închide descriptorul fișierului"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
"Specifică dacă se închide descriptorul fișierului la închiderea fluxului"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1810,16 +1730,12 @@ msgstr "Eroare la închiderea „unix”: %s"
msgid "Filesystem root"
msgstr "Rădăcina sistemului de fișiere"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "Descriptorul fișierului de scris"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Eroare la scrierea în „unix”: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "Volumul nu implementează ejectarea"
@ -1855,3 +1771,76 @@ msgstr "utilizează un format detaliat de listare"
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[FIȘIER...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Caracterul „%s” nu este valid la începutul numelui unei entități. "
#~ "Caracterul „&” e cel ce începe o entitate. Dacă acest ampersand nu ar "
#~ "trebui să fie o entitate, utilizați &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Caracterul „%s” nu este valid în cadrul unui nume de entitate"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr ""
#~ "Referință caracter goală. Ar trebui să includă o cifră precum &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Referință neterminată la o entitate"
#~ msgid "Unfinished character reference"
#~ msgstr "Referință caracter neterminată"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Text codat UTF-8 incorect - secvență prea lungă"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Text codat UTF-8 incorect - nu e un caracter de start"
#~ msgid "file"
#~ msgstr "fișier"
#~ msgid "The file containing the icon"
#~ msgstr "Fișierul conținând iconița"
#~ msgid "name"
#~ msgstr "nume"
#~ msgid "The name of the icon"
#~ msgstr "Numele iconiței"
#~ msgid "names"
#~ msgstr "nume"
#~ msgid "An array containing the icon names"
#~ msgstr "O matrice conținând numele iconițelor"
#~ msgid "use default fallbacks"
#~ msgstr "utilizează variantele de rezervă"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Specifică dacă să se utilizeze variantele de rezervă implicite prin "
#~ "prescurtarea numelor la caracterele „-”. Se vor ignora numele de după cel "
#~ "dintâi dacă sunt precizate mai multe."
#~ msgid "File descriptor"
#~ msgstr "Descriptor de fișier"
#~ msgid "The file descriptor to read from"
#~ msgstr "Descriptorul fișierului de citit"
#~ msgid "Close file descriptor"
#~ msgstr "Închide descriptorul fișierului"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr ""
#~ "Specifică dacă se închide descriptorul fișierului la închiderea fluxului"
#~ msgid "The file descriptor to write to"
#~ msgstr "Descriptorul fișierului de scris"

330
po/ru.po
View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib trunk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-14 16:16+0300\n"
"Last-Translator: Yuriy Penkin <yuriy.penkin@gmail.com>\n"
"Language-Team: Russian <gnome-cyr@gnome.org>\n"
@ -311,54 +311,34 @@ msgstr "Не удалось открыть файл «%s»: сбой в функ
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Не удалось отобразить файл «%s»: сбой в функции mmap(): %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Ошибка в строке %d на символе %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr ""
"Текст закодирован как UTF-8 недопустимым образом — недопустимая "
"последовательность «%s»"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Ошибка в строке %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Обнаружена пустая конструкция «&;»; допустимыми конструкциями являются: &amp; "
"&quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Символ «%s» недопустим в начале имени конструкции; символ «&» начинает "
"конструкцию; если этот символ не должен быть частью конструкции, то "
"экранируйте его конструкцией «&amp;»"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Символ «%s» недопустим внутри названия конструкции"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Наименование конструкции «%s» неизвестно"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Конструкция не заканчивается точкой с запятой; похоже, что символ «&» был "
"использован не для обозначения начала конструкции — экранируйте его как "
"«&amp;»"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -367,16 +347,7 @@ msgstr ""
"Не удалось разобрать строку «%-.*s», которая должна быть числом внутри ссылки "
"на символ (например &#234;) — возможно, номер слишком велик"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Ссылка на символ «%-.*s» не определяет допустимый символ"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Ссылка на символ пуста; она должна включать номер, например &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -386,38 +357,37 @@ msgstr ""
"использован не для обозначения начала конструкции — экранируйте его как "
"«&amp;»"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Ссылка на конструкцию не закончена"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Ссылка на символ не закончена"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr ""
"Текст закодирован как UTF-8 недопустимым образом — слишком длинная "
"последовательность"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr ""
"Текст закодирован как UTF-8 недопустимым образом — неправильный начальный "
"символ"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr ""
"Текст закодирован как UTF-8 недопустимым образом — недопустимая "
"последовательность «%s»"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Ссылка на символ «%-.*s» не определяет допустимый символ"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Обнаружена пустая конструкция «&;»; допустимыми конструкциями являются: &amp; "
"&quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Наименование конструкции «%s» неизвестно"
#: 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 &amp;"
msgstr ""
"Конструкция не заканчивается точкой с запятой; похоже, что символ «&» был "
"использован не для обозначения начала конструкции — экранируйте его как "
"«&amp;»"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Документ должен начинаться с элемента (например <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -426,7 +396,7 @@ msgstr ""
"Символ «%s» является недопустимым после символа «<»; этот символ не может "
"начинать имя элемента"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -435,7 +405,7 @@ msgstr ""
"Встретился лишний символ «%s», ожидался символ «>» для завершения пустого "
"элемента тэга «%s»"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -443,7 +413,7 @@ msgstr ""
"Встретился лишний символ «%s», ожидался символ «=» после имени атрибута «%s» "
"элемента «%s»"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -454,7 +424,7 @@ msgstr ""
"открывающего тэга элемента «%s», либо, возможно, атрибут; может быть, был "
"использован недопустимый символ в имени атрибута"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -463,7 +433,7 @@ msgstr ""
"Встретился лишний символ «%s», ожидалась открывающая двойная кавычка после "
"знака равенства при присваивании значения атрибуту «%s» элемента «%s»"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -472,7 +442,7 @@ msgstr ""
"Символ «%s» недопустим после символов «</»; символ «%s» не может начинать имя "
"элемента"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -481,27 +451,27 @@ msgstr ""
"Символ «%s» недопустим после закрывающего элемента имени «%s»; допустимым "
"символом является «>»"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Элемент «%s» был закрыт, ни один элемент в настоящий момент не открыт"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
"Элемент «%s» был закрыт, но открытым в настоящий момент является элемент «%s»"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Документ был пуст или содержал только пробелы"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Документ неожиданно окончился сразу же после открывающей угловой скобки «<»"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -510,7 +480,7 @@ msgstr ""
"Документ неожиданно окончился, когда ещё были открыты элементы — «%s» был "
"последним открытым элементом"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -518,19 +488,19 @@ msgid ""
msgstr ""
"Документ неожиданно окончился, ожидалась закрывающая тэг <%s/> угловая скобка"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Документ неожиданно окончился внутри имени элемента"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Документ неожиданно окончился внутри имени атрибута"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Документ неожиданно окончился внутри открывающего элемент тэга"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -538,16 +508,16 @@ msgstr ""
"Документ неожиданно окончился после знака равенства, следующего за именем "
"атрибута; значение атрибута не указано"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Документ неожиданно окончился внутри значения атрибута"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Документ неожиданно окончился внутри тэга, закрывающего элемент «%s»"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Документ неожиданно окончился внутри комментария или инструкции обработки"
@ -1006,61 +976,61 @@ msgstr ""
msgid "Character out of range for UTF-16"
msgstr "Символ находится вне диапазона для UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Использование:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[ПАРАМЕТР...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Параметры справки:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Показать параметры справки"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Показать все параметры справки"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Параметры приложения:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Не удалось разобрать целочисленное значение «%s» для %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Целочисленное значение «%s» для %s выходит за пределы"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Не удалось разобрать дробное значение двойной точности «%s» для %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Дробное значение двойной точности «%s» для %s выходит за пределы"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Произошла ошибка при разборе параметра %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Отсутствует аргумент для %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Неизвестный параметр %s"
@ -1183,8 +1153,8 @@ msgstr "Слишком большое значение количества пе
msgid "Stream is already closed"
msgstr "Поток уже закрыт"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Действие было отменено"
@ -1324,7 +1294,7 @@ msgstr "Корзина не поддерживается"
msgid "File names cannot contain '%c'"
msgstr "Имена файлов не могут содержать «%c»"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "том не поддерживает присоединение"
@ -1345,14 +1315,6 @@ msgstr "Перечислитель файлов имеет незавершён
msgid "File enumerator is already closed"
msgstr "Перечислитель файлов уже закрыт"
#: gio/gfileicon.c:145
msgid "file"
msgstr "файл"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "файл, содержащий значок"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1766,56 +1728,11 @@ msgstr "Выходной поток не поддерживает запись"
msgid "Source stream is already closed"
msgstr "Исходный поток уже закрыт"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "название"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Название значка"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "названия"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Массив, содержащий названия значков"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "использовать названия по умолчанию"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Использовать ли значки по умолчанию, получаемые с помощью сокращения "
"названия, начиная с символов '-'. Если задано несколько названий — "
"игнорировать все кроме первого."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Не удалось обработать версию %d текстового представления GThemedIcon"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Дескриптор файла"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "Дескриптор файла для чтения"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Закрыть дескриптор файла"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "Будет ли закрываться дескриптор, когда закрывается поток"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1832,16 +1749,12 @@ msgstr "Произошла ошибка при закрытии unix: %s"
msgid "Filesystem root"
msgstr "Корень файловой системы"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "Дескриптор файла для записи"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Произошла ошибка при записи в unix: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "том не поддерживает извлечение"
@ -1878,6 +1791,81 @@ msgstr "использовать длинный формат"
msgid "[FILE...]"
msgstr "[ФАЙЛ...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Символ «%s» недопустим в начале имени конструкции; символ «&» начинает "
#~ "конструкцию; если этот символ не должен быть частью конструкции, то "
#~ "экранируйте его конструкцией «&amp;»"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Символ «%s» недопустим внутри названия конструкции"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Ссылка на символ пуста; она должна включать номер, например &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Ссылка на конструкцию не закончена"
#~ msgid "Unfinished character reference"
#~ msgstr "Ссылка на символ не закончена"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr ""
#~ "Текст закодирован как UTF-8 недопустимым образом — слишком длинная "
#~ "последовательность"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr ""
#~ "Текст закодирован как UTF-8 недопустимым образом — неправильный начальный "
#~ "символ"
#~ msgid "file"
#~ msgstr "файл"
#~ msgid "The file containing the icon"
#~ msgstr "файл, содержащий значок"
#~ msgid "name"
#~ msgstr "название"
#~ msgid "The name of the icon"
#~ msgstr "Название значка"
#~ msgid "names"
#~ msgstr "названия"
#~ msgid "An array containing the icon names"
#~ msgstr "Массив, содержащий названия значков"
#~ msgid "use default fallbacks"
#~ msgstr "использовать названия по умолчанию"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Использовать ли значки по умолчанию, получаемые с помощью сокращения "
#~ "названия, начиная с символов '-'. Если задано несколько названий — "
#~ "игнорировать все кроме первого."
#~ msgid "File descriptor"
#~ msgstr "Дескриптор файла"
#~ msgid "The file descriptor to read from"
#~ msgstr "Дескриптор файла для чтения"
#~ msgid "Close file descriptor"
#~ msgstr "Закрыть дескриптор файла"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "Будет ли закрываться дескриптор, когда закрывается поток"
#~ msgid "The file descriptor to write to"
#~ msgstr "Дескриптор файла для записи"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u байт"

288
po/rw.po
View File

@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib 2.12\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -314,65 +314,39 @@ msgstr "Kuri Gufungura IDOSIYE Byanze"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Kuri Gufungura IDOSIYE Byanze"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "ku Umurongo INYUGUTI"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "8 Umwandiko"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, fuzzy, c-format
msgid "Error on line %d: %s"
msgstr "ku Umurongo"
#: glib/gmarkup.c:493
#, fuzzy
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "Byemewe"
#: glib/gmarkup.c:503
#, fuzzy, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr "ni OYA Byemewe ku Gutangira Bya Izina: Inyuguti NIBA iyi Kuri Nka"
#: glib/gmarkup.c:537
#, fuzzy, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "ni OYA Byemewe Mo Imbere Izina:"
#: glib/gmarkup.c:574
#, fuzzy, c-format
msgid "Entity name '%s' is not known"
msgstr "Izina: ni OYA"
#: glib/gmarkup.c:585
#, fuzzy
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr "OYA Impera Na: a Akabago n'Akitso Inyuguti Kuri Gutangira Nka"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, fuzzy, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (&#234; for example) - perhaps the digit is too large"
msgstr "Kuri a Mo Imbere a Inyuguti Indango kugirango Urugero ni Binini"
#: glib/gmarkup.c:660
#, fuzzy, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Indango OYA a Inyuguti"
#: glib/gmarkup.c:675
#, fuzzy
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Inyuguti Indango Gushyiramo a Nka"
#: glib/gmarkup.c:685
#: glib/gmarkup.c:590
#, fuzzy
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
@ -380,44 +354,42 @@ msgid ""
"as &amp;"
msgstr "Indango OYA Impera Na: a Akabago n'Akitso Inyuguti Kuri Gutangira Nka"
#: glib/gmarkup.c:771
#, fuzzy
msgid "Unfinished entity reference"
msgstr "Indango"
#: glib/gmarkup.c:777
#, fuzzy
msgid "Unfinished character reference"
msgstr "Inyuguti Indango"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "8 Umwandiko"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "8 Umwandiko"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "8 Umwandiko"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Indango OYA a Inyuguti"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
#, fuzzy
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "Byemewe"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Izina: ni OYA"
#: glib/gmarkup.c:667
#, fuzzy
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr "OYA Impera Na: a Akabago n'Akitso Inyuguti Kuri Gutangira Nka"
#: glib/gmarkup.c:973
#, fuzzy
msgid "Document must begin with an element (e.g. <book>)"
msgstr "g."
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, fuzzy, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "'%s'ni OYA a Byemewe Inyuguti a Inyuguti Gicurasi OYA Ikigize: Izina:"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -425,13 +397,13 @@ msgid ""
msgstr ""
"Inyuguti Ikitezwe: a Inyuguti Kuri Impera Gutangira Itagi: Bya Ikigize:"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "Inyuguti Ikitezwe: a Nyuma Ikiranga Izina: Bya Ikigize:"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -441,7 +413,7 @@ msgstr ""
"Inyuguti Ikitezwe: a Cyangwa Inyuguti Kuri Impera Gutangira Itagi: Bya "
"Ikigize: Cyangwa Ikiranga Sibyo Inyuguti in Ikiranga Izina:"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -450,87 +422,87 @@ msgstr ""
"Inyuguti Ikitezwe: Gufungura Gushyiraho akugarizo Ikimenyetso Nyuma "
"IKIMENYETSO Ryari: Agaciro kugirango Ikiranga Bya Ikigize:"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, fuzzy, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
msgstr "'%s'ni OYA a Byemewe Inyuguti Inyuguti Gicurasi OYA Ikigize: Izina:"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, fuzzy, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
msgstr "'%s'ni OYA a Byemewe Inyuguti Gufunga Ikigize: Izina: Inyuguti ni"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, fuzzy, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Oya Ikigize: ni Gufungura"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, fuzzy, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Gufungura Ikigize: ni"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
#, fuzzy
msgid "Document was empty or contained only whitespace"
msgstr "ubusa Cyangwa"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
#, fuzzy
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Nyuma Gufungura Imfuruka"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, fuzzy, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr "Na: Ibintu Gufungura Iheruka Ikigize:"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, fuzzy, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr "Ikitezwe: Kuri a Gufunga Imfuruka Itagi:"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
#, fuzzy
msgid "Document ended unexpectedly inside an element name"
msgstr "Mo Imbere Ikigize: Izina:"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
#, fuzzy
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Mo Imbere Ikiranga Izina:"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
#, fuzzy
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Mo Imbere Ikigize: Gufungura%S Itagi:"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
#, fuzzy
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr "Nyuma IKIMENYETSO Ikiranga Izina: Oya Ikiranga Agaciro"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
#, fuzzy
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Mo Imbere Ikiranga Agaciro"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, fuzzy, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Mo Imbere Gufunga Itagi: kugirango Ikigize:"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
#, fuzzy
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Mo Imbere a Icyo wongeraho Cyangwa Inonosora"
@ -984,63 +956,63 @@ msgid "Character out of range for UTF-16"
msgstr "Inyuma Bya Urutonde kugirango"
# crashrep/source\all\crashrep.lng:%MSG_CMDLINE_USAGE%.text
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Ikoresha:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr ""
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr ""
#: glib/goption.c:720
#: glib/goption.c:829
#, fuzzy
msgid "Show help options"
msgstr "Ifashayobora Amahitamo"
#: glib/goption.c:726
#: glib/goption.c:835
#, fuzzy
msgid "Show all help options"
msgstr "Byose Ifashayobora Amahitamo"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr ""
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, fuzzy, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Umubare wuzuye Agaciro kugirango"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, fuzzy, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Agaciro kugirango Inyuma Bya Urutonde"
#: glib/goption.c:885
#: glib/goption.c:994
#, fuzzy, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Umubare wuzuye Agaciro kugirango"
#: glib/goption.c:893
#: glib/goption.c:1002
#, fuzzy, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Agaciro kugirango Inyuma Bya Urutonde"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, fuzzy, c-format
msgid "Error parsing option %s"
msgstr "Ihindurangero"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr ""
#: glib/goption.c:1773
#: glib/goption.c:1882
#, fuzzy, c-format
msgid "Unknown option %s"
msgstr "Ihitamo ritazwi:"
@ -1164,8 +1136,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1308,7 +1280,7 @@ msgstr "amahuza OYA"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1329,15 +1301,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Izina ry'inturo: Bya ni Sibyo"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1768,56 +1731,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "Izina ry'inturo: Bya ni Sibyo"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
# svtools/source\misc\errtxt.src:RID_ERRHDL.ERRCODE_SFX_DOLOADFAILED.text
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Ikosa mu gusoma idosiye"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
# svtools/source\misc\errtxt.src:RID_ERRHDL.ERRCODE_SFX_DOLOADFAILED.text
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
@ -1835,16 +1753,12 @@ msgstr "ku Umurongo"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Ihindurangero"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1882,6 +1796,50 @@ msgstr ""
msgid "[FILE...]"
msgstr ""
#, fuzzy
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr "ni OYA Byemewe ku Gutangira Bya Izina: Inyuguti NIBA iyi Kuri Nka"
#, fuzzy
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "ni OYA Byemewe Mo Imbere Izina:"
#, fuzzy
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Inyuguti Indango Gushyiramo a Nka"
#, fuzzy
#~ msgid "Unfinished entity reference"
#~ msgstr "Indango"
#, fuzzy
#~ msgid "Unfinished character reference"
#~ msgstr "Inyuguti Indango"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "8 Umwandiko"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "8 Umwandiko"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Izina ry'inturo: Bya ni Sibyo"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "Izina ry'inturo: Bya ni Sibyo"
# svtools/source\misc\errtxt.src:RID_ERRHDL.ERRCODE_SFX_DOLOADFAILED.text
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Ikosa mu gusoma idosiye"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Ihindurangero"

261
po/si.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib.si\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -298,116 +298,91 @@ msgstr "'%s' ගොනුව විවෘත කිරීම අසමත් ව
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' ගොනුව අනුරුපණය කිරීම අසමත් විය: mmap()අසමත් විය: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "%d පේළියේ %d අක්‍ෂරය මත දෝෂයකි: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "සාවද්‍ය UTF-8 සංකේතාංකන පෙළ"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "%d පේළියේ ත දෝෂයකි: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "ඇතුළත් කළ නම තුළ ඇති '%s' අක්‍ෂරය සාද්‍යවේ "
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "'%s' වස්තුවේ නම නොදනී"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (&#234; for example) - perhaps the digit is too large"
msgstr ""
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr ""
#: glib/gmarkup.c:685
#: 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 &amp;"
msgstr ""
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "අවසන් නොකළ වස්තු යොමුව"
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "අවසන් නොකළ අක්‍ෂර යොමුව"
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "සාවද්‍ය UTF-8 සංකේතාංකන පෙළ"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "සාවද්‍ය UTF-8 සංකේතාංකන පෙළ"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "සාවද්‍ය UTF-8 සංකේතාංකන පෙළ"
msgid "Entity name '%-.*s' is not known"
msgstr "'%s' වස්තුවේ නම නොදනී"
#: glib/gmarkup.c:1168
#: 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 &amp;"
msgstr ""
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "ලේඛණය මූලයකින්ම ආරම්භ කළ යුතුම වේ (උදා. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr ""
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr ""
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -415,88 +390,88 @@ msgid ""
"character in an attribute name"
msgstr ""
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, 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 ""
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
msgstr ""
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
msgstr ""
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "'%s' මූලය වසා ඇති අතර කිසිම මූලයක් විවෘතව ඇත"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "'%s' මූලය වසා ඇති අතර දැනට'%s' මූලය විවෘතව ඇත"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
#, fuzzy
msgid "Document was empty or contained only whitespace"
msgstr "ලේඛණය හිස්ව තිබුනි හෝ තිබුනේ සුදුඉඩ පමණි"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr ""
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr ""
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr ""
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr ""
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
@ -936,61 +911,61 @@ msgstr ""
msgid "Character out of range for UTF-16"
msgstr ""
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "භාැවිතය:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "සහාය විකල්ප:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "සහාය විකල්ප දර්ශනය කරන්න"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "සියළු සහාය විකල්ප දර්ශනය කරන්න"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "යෙදුම් විකල්ප:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr ""
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr ""
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr ""
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "%s නොදන්නා විකල්පයකි"
@ -1107,8 +1082,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1251,7 +1226,7 @@ msgstr "සංකේතාත්මක පුරුක සහාය දක්න
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1272,15 +1247,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "'%s' URI හි ධාරක නාමය සාවද්‍ය වේ"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1691,55 +1657,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "'%s' URI හි ධාරක නාමය සාවද්‍ය වේ"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "'%s' ගොනුව කියවීම දෝෂ සහිතයි: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1756,16 +1678,12 @@ msgstr "%d පේළියේ ත දෝෂයකි: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "පරිවර්තනයේදි දෝෂයකි : %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1804,6 +1722,35 @@ msgstr ""
msgid "[FILE...]"
msgstr "[OPTION...]"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "ඇතුළත් කළ නම තුළ ඇති '%s' අක්‍ෂරය සාද්‍යවේ "
#~ msgid "Unfinished entity reference"
#~ msgstr "අවසන් නොකළ වස්තු යොමුව"
#~ msgid "Unfinished character reference"
#~ msgstr "අවසන් නොකළ අක්‍ෂර යොමුව"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "සාවද්‍ය UTF-8 සංකේතාංකන පෙළ"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "සාවද්‍ය UTF-8 සංකේතාංකන පෙළ"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "'%s' URI හි ධාරක නාමය සාවද්‍ය වේ"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "'%s' URI හි ධාරක නාමය සාවද්‍ය වේ"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "'%s' ගොනුව කියවීම දෝෂ සහිතයි: %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "පරිවර්තනයේදි දෝෂයකි : %s"

291
po/sk.po
View File

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -304,51 +304,32 @@ msgstr "Nepodarilo sa otvoriť súbor '%s': open() zlyhala: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Nepodarilo sa namapovať súbor '%s': mmap() zlyhala: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Chyba na riadku %d znak %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Neplatný text v kódovaní UTF-8 - neplatné '%s'"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Chyba na riadku %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Nájdená prázdna entita '&;', platné entity sú: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Znak '%s' nie je platný na začiatku mena entity. Znak & začína entitu. Ak tu "
"ale nemá predstavovať entitu, musíte ho zapísať ako &amp;."
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Znak '%s' nie je platný v mene entity"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Meno entity '%s' nie je známe"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entita nekončí bodkočiarkou. Asi ste použili znak & bez toho, aby ste ho "
"zapísali ako &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -357,17 +338,7 @@ msgstr ""
"Nepodarilo sa spracovať '%-.*s', čo by mala byť číslica v odkaze na znak "
"(napríklad &#234;) - možno je číslica príliš veľká"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Odkaz na znak '%-.*s' nie je kódom povoleného znaku"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr ""
"Prázdny odkaz na znak. Odkaz by mal obsahovať číslice, napríklad &#434;"
#: glib/gmarkup.c:685
#: 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 "
@ -376,40 +347,42 @@ msgstr ""
"Odkaz na znak neskončil bodkočiarkou. Asi ste použili & a nezadali ste ho "
"ako &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Neukončený odkaz na entitu"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Neukončený odkaz na znak"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Neplatný text v kódovaní UTF-8"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Neplatný text v kódovaní UTF-8 - nie je úvodný znak"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Neplatný text v kódovaní UTF-8 - neplatné '%s'"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Odkaz na znak '%-.*s' nie je kódom povoleného znaku"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Nájdená prázdna entita '&;', platné entity sú: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Meno entity '%s' nie je známe"
#: 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 &amp;"
msgstr ""
"Entita nekončí bodkočiarkou. Asi ste použili znak & bez toho, aby ste ho "
"zapísali ako &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokument musí začínať elementom (napr. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "'%s' nie je platný znak za znakom '<', nesmie začínať meno elementu"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -418,7 +391,7 @@ msgstr ""
"Prebytočný znak '%s'. Bol očakávaný znak '>', aby skončil začiatočnú značku "
"elementu '%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -426,7 +399,7 @@ msgstr ""
"Prebytočný znak '%s'. Bol očakávaný znak '=' za menom atribútu '%s' elementu "
"'%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -437,7 +410,7 @@ msgstr ""
"začiatočnú značku elementu '%s' alebo nepovinne atribút. Možno ste použili "
"neplatný znak v mene atribútu"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -446,7 +419,7 @@ msgstr ""
"Prebytočný znak '%s'. Boli očakávané úvodzovky po '=' pri zadávaní hodnoty "
"atribútu '%s' v elemente '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -454,7 +427,7 @@ msgid ""
msgstr ""
"'%s' nie je platný znak po znakoch '</'. '%s' nesmie začínať meno elementu"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -462,25 +435,25 @@ msgid ""
msgstr ""
"'%s' nie je platný znak po koncovom mene elementu '%s'. Povolený znak je '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element '%s' bol ukončený, momentálne nie je otvorený žiadny element"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Element '%s' bol ukončený, ale momentálne otvorený element je '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Dokument je prázdny alebo obsahuje iba medzery"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokument neočakávane skončil hneď po začiatočnom znaku '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -489,7 +462,7 @@ msgstr ""
"Dokument neočakávane skončil s otvorenými elementami - '%s' bol posledný "
"otvorený element."
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -497,35 +470,35 @@ msgid ""
msgstr ""
"Dokument neočakávane skončil, očakával sa znak '>' pre ukončenie značky <%s>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokument neočakávane skončil v mene elementu"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokument neočakávane skončil v mene atribútu"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokument neočakávane skončil v začiatočnej značke elementu."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr ""
"Dokument neočakávane skončil po '=' za menom atribútu, chýba hodnota atribútu"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokument neočakávane skončil v hodnote atribútu"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Dokument neočakávane skončil v koncovej značke pre element '%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokument neočakávane skončil v komentári alebo inštrukcii pre spracovanie"
@ -969,61 +942,61 @@ msgstr "Neplatná sekvencia na vstupe prevodu"
msgid "Character out of range for UTF-16"
msgstr "Znak mimo rozsah UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Použitie:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[VOĽBA...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Voľby pomocníka:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Zobraziť voľby pomocníka"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Zobraziť všetky voľby pomocníka"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Voľby aplikácie:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Nepodarilo sa spracovať celočíselnú hodnotu '%s' pre %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Celočíselná hodnota '%s' pre %s je mimo rozsah"
#: glib/goption.c:885
#: glib/goption.c:994
#, fuzzy, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Nepodarilo sa spracovať celočíselnú hodnotu '%s' pre %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, fuzzy, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Celočíselná hodnota '%s' pre %s je mimo rozsah"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, fuzzy, c-format
msgid "Error parsing option %s"
msgstr "Chyba počas prevodu: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Chýbajúci parameter pre %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Neznáma voľby %s"
@ -1147,8 +1120,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr "Prúd je už zatvorený"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Operácia bola zrušená"
@ -1289,7 +1262,7 @@ msgstr "Symbolické odkazy nepodporované"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1310,15 +1283,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Pole obsahujúce názvy ikon"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1732,54 +1696,11 @@ msgstr "Výstupný prúd neimplementuje zápis"
msgid "Source stream is already closed"
msgstr "Zdrojový prúd je už zatvorený"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "názov"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Názov ikony"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "názvy"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Pole obsahujúce názvy ikon"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Chyba pri čítaní súboru '%s': %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1796,16 +1717,12 @@ msgstr "Chyba pri zatváraní unixu: %s"
msgid "Filesystem root"
msgstr "Koreň súborového systému"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Chyba pri zápise do unixu: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "zväzok neimplementuje vysunutie"
@ -1842,6 +1759,54 @@ msgstr "použiť dlhý formát výpisu"
msgid "[FILE...]"
msgstr "[SÚBOR...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Znak '%s' nie je platný na začiatku mena entity. Znak & začína entitu. Ak "
#~ "tu ale nemá predstavovať entitu, musíte ho zapísať ako &amp;."
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Znak '%s' nie je platný v mene entity"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr ""
#~ "Prázdny odkaz na znak. Odkaz by mal obsahovať číslice, napríklad &#434;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Neukončený odkaz na entitu"
#~ msgid "Unfinished character reference"
#~ msgstr "Neukončený odkaz na znak"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Neplatný text v kódovaní UTF-8"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Neplatný text v kódovaní UTF-8 - nie je úvodný znak"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Pole obsahujúce názvy ikon"
#~ msgid "name"
#~ msgstr "názov"
#~ msgid "The name of the icon"
#~ msgstr "Názov ikony"
#~ msgid "names"
#~ msgstr "názvy"
#~ msgid "An array containing the icon names"
#~ msgstr "Pole obsahujúce názvy ikon"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Chyba pri čítaní súboru '%s': %s"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u bajtov"

312
po/sl.po
View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-16 19:36+0100\n"
"Last-Translator: Matej Urbančič <mateju@svn.gnome.org>\n"
"Language-Team: Slovenian <sl@li.org>\n"
@ -302,52 +302,32 @@ msgstr "Ni mogoče odpreti datoteke '%s': open() ni uspel: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Ni mogoče preslikati datoteke '%s': mmap() ni uspel: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Napaka v vrstici %d, znak %d:"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Neveljavno UTF-8 kodirano besedilo - neveljaven '%s'"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Napaka v vrstici %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Zaznana prazna entiteta '&;'; veljavne entitete so: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Znak '%s' ni veljaven na začetku imena entitete; entiteto začne znak &; v "
"primeru, da znak ne predstavlja entitete, mora biti zapisan kot &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Znak '%s' ni veljaven znotraj imena entitete"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Neznano ime entitete '%s'"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entiteta se ne zaključi s podpičjem; najverjetneje je uporabljen znak '&' "
"brez povezave z entiteto - znak '&' mora biti zapisan kot '&amp;'"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -356,16 +336,7 @@ msgstr ""
"Ni mogoče razčleniti '%-.*s', ki bi morala biti številka znotraj reference "
"znaka (na primer &#234;) - morda je številka prevelika"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Referenca znaka '%-.*s' ne šifrira dovoljenega znaka"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Prazna referenca znaka; vsebovati bi morala številko kot &#454;"
#: glib/gmarkup.c:685
#: 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,32 +345,36 @@ msgstr ""
"Referenca znaka se ni končala s podpičjem; najverjetneje je uporabljen znak "
"'&' brez povezave z entiteto - znak '&' mora biti zapisan kot '&amp;'"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Nedokončano nanašanje na entiteto"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Nedokončano nanašanje na znak"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Neveljavno UTF-8 kodirano besedilo - predolgo zaporedje"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Neveljavno UTF-8 kodirano besedilo - ni začetnega znaka"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Neveljavno UTF-8 kodirano besedilo - neveljaven '%s'"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Referenca znaka '%-.*s' ne šifrira dovoljenega znaka"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Zaznana prazna entiteta '&;'; veljavne entitete so: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Neznano ime entitete '%s'"
#: 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 &amp;"
msgstr ""
"Entiteta se ne zaključi s podpičjem; najverjetneje je uporabljen znak '&' "
"brez povezave z entiteto - znak '&' mora biti zapisan kot '&amp;'"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokument se mora začeti z elementom (na primer <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -408,7 +383,7 @@ msgstr ""
"'%s' ni veljaven znak, kadar sledi znaku '<'; morda se ne začne z imenom "
"elementa"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -417,7 +392,7 @@ msgstr ""
"Nenavaden znak '%s'. Pričakovan znak je '>', da se zaključi oznako predmeta "
"'%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -425,7 +400,7 @@ msgstr ""
"Nenavaden znak '%s'. Za imenom atributa '%s' (elementa '%s') je pričakovan "
"znak '='"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -436,7 +411,7 @@ msgstr ""
"elementa '%s' ali atribut; morda ste uporabili neveljaven znak v imenu "
"atributa'"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -445,7 +420,7 @@ msgstr ""
"Nenavaden znak '%s'. Za enačajem je pričakovan narekovaj znotraj katerega je "
"podana vrednost atributa '%s' elementa '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -453,7 +428,7 @@ msgid ""
msgstr ""
"'%s' ni veljaven znak za znakoma '</'; ime elementa se ne sme začeti z '%s'"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -462,25 +437,25 @@ msgstr ""
"Znak '%s' ni veljaven kadar sledi zaprtju imena elementa '%s'; dovoljen znak "
"je '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element '%s' je zaprt, trenutno ni odprtega elementa"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Element '%s' je zaprt, še vedno pa je odprt element '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Dokument je prazen ali pa vsebuje le presledke"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokument nepričakovano zaključen takoj za odprtjem predmeta '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -489,7 +464,7 @@ msgstr ""
"Dokument nepričakovano zaključen s še odprtimi elementi - '%s' je zadnji "
"odprt element"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -498,19 +473,19 @@ msgstr ""
"Dokument nepričakovano zaključen, pričakovan je zaključni zaklepaj oznake <%"
"s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokument nepričakovano zaključen sredi imena elementa"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokument nepričakovano zaključen sredi imena atributa"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokument nepričakovano zaključen sredi oznake za odprtje elementa."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -518,16 +493,16 @@ msgstr ""
"Dokument nepričakovano zaključen za enačajem, ki sledil imenu atributa; ni "
"določena vrednosti atributa"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokument nepričakovano zaključen sredi vrednosti atributa"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Dokument nepričakovano zaključen sredi oznake zaprtja elementa '%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Dokument nepričakovano zaključen sredi komentarja ali ukaza"
@ -972,61 +947,61 @@ msgstr "Neveljavno zaporedje na vhodu pretvorbe"
msgid "Character out of range for UTF-16"
msgstr "Znak izven intervala za UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Uporaba:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[MOŽNOST ...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Možnosti pomoči:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Pokaži možnosti pomoči"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Pokaži vse možnosti pomoči"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Možnosti programa:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Ni mogoče razčleniti celoštevilske vrednosti '%s' za %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Celoštevilska vrednost '%s' za %s izven obsega"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Ni mogoče razčleniti dvojne vrednosti '%s' za %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Vrednost dvojne velikosti '%s' za %s izven obsega"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Napaka med razčlenjevanjem %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Manjka argument za %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Neznana možnost %s"
@ -1151,8 +1126,8 @@ msgstr "Prevelika vrednost štetja poslana na %s"
msgid "Stream is already closed"
msgstr "Pretok je že zaprt"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Operacija je bila preklicana."
@ -1292,7 +1267,7 @@ msgstr "Smeti niso podprte"
msgid "File names cannot contain '%c'"
msgstr "Ni mogoče uporabiti '%c' v imenu datoteke"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "enota ne podpira priklopa"
@ -1313,14 +1288,6 @@ msgstr "Številčnik izvaja izredno operacijo"
msgid "File enumerator is already closed"
msgstr "Številčnik datotek je že zaprt"
#: gio/gfileicon.c:145
msgid "file"
msgstr "datoteka"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "Datoteka, ki vsebuje ikono"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1730,55 +1697,11 @@ msgstr "Odvodni pretok ne podpira pisanja"
msgid "Source stream is already closed"
msgstr "Izvorni pretok je že zaprt"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "ime"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Ime ikone"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "imena"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Vrsta, ki vsebuje imena ikon"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "uporabi privzete povrnitve"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Ali naj se uporabi povrnitev s skrajševanjem imena pri '-' znaku. Prezrta so "
"imena za prvim, če je podanih več imen."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Ni mogoče upravljati z različico %d kodiranja GThemedIcon"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Opisnik datoteke"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "Opisnik datotek iz katerega naj se bere"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "ZApri opisnik datotek"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "Ali naj se zapre opisnik datoteke, ko je pretok končan"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1795,16 +1718,12 @@ msgstr "Napaka med zapiranjem unix-a: %s"
msgid "Filesystem root"
msgstr "Koren datotečnega sistema"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "Datotečni opisnik kamor naj se izpiše"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Napaka med pisanjem na unix: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "medija ni mogoče izvreči"
@ -1841,6 +1760,75 @@ msgstr "uporabi zapis v obliki dolgega seznama"
msgid "[FILE...]"
msgstr "[DATOTEKA ...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Znak '%s' ni veljaven na začetku imena entitete; entiteto začne znak &; v "
#~ "primeru, da znak ne predstavlja entitete, mora biti zapisan kot &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Znak '%s' ni veljaven znotraj imena entitete"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Prazna referenca znaka; vsebovati bi morala številko kot &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Nedokončano nanašanje na entiteto"
#~ msgid "Unfinished character reference"
#~ msgstr "Nedokončano nanašanje na znak"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Neveljavno UTF-8 kodirano besedilo - predolgo zaporedje"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Neveljavno UTF-8 kodirano besedilo - ni začetnega znaka"
#~ msgid "file"
#~ msgstr "datoteka"
#~ msgid "The file containing the icon"
#~ msgstr "Datoteka, ki vsebuje ikono"
#~ msgid "name"
#~ msgstr "ime"
#~ msgid "The name of the icon"
#~ msgstr "Ime ikone"
#~ msgid "names"
#~ msgstr "imena"
#~ msgid "An array containing the icon names"
#~ msgstr "Vrsta, ki vsebuje imena ikon"
#~ msgid "use default fallbacks"
#~ msgstr "uporabi privzete povrnitve"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Ali naj se uporabi povrnitev s skrajševanjem imena pri '-' znaku. Prezrta "
#~ "so imena za prvim, če je podanih več imen."
#~ msgid "File descriptor"
#~ msgstr "Opisnik datoteke"
#~ msgid "The file descriptor to read from"
#~ msgstr "Opisnik datotek iz katerega naj se bere"
#~ msgid "Close file descriptor"
#~ msgstr "ZApri opisnik datotek"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "Ali naj se zapre opisnik datoteke, ko je pretok končan"
#~ msgid "The file descriptor to write to"
#~ msgstr "Datotečni opisnik kamor naj se izpiše"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u bajtov"

340
po/sq.po
View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -315,57 +315,34 @@ msgstr "I pamundur mapimi i file '%s': mmap() dështoi: %s"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
# (pofilter) endwhitespace: checks whether whitespace at the end of the strings matches
# (pofilter) printf: checks whether printf format strings match
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Gabim tek rreshti %d simboli %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Tekst i kodifikuar UTF-8 i pavlefshëm - '%s' e pavlefshme"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Gabim tek rreshti %d: %s"
# (pofilter) puncspacing: checks for bad spacing after punctuation
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"U gjet një entitet bosh '&;'; entitetet e vlefshme janë: &amp; &quot; &lt; "
"&gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Simboli '%s' nuk vlen si fillues i emrit të një entiteti; simboli & fillon "
"një entitet; nëse ky simbol nuk do të jetë fillimi i një entiteti, përdore "
"si &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Simboli '%s' nuk është i vlefshëm brenda emrit të një entiteti"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Emri entitetit '%s' nuk njihet"
# (pofilter) singlequoting: checks whether singlequoting is consistent between the two strings
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entiteti nuk përfundon me pikëpresje; ndoshta keni përdorur një \"e\" "
"komerciale pa dashur të nisni një entity - zëvendësojeni me &amp;"
# (pofilter) puncspacing: checks for bad spacing after punctuation
# (pofilter) sentencecount: The number of sentences differ: 1 versus 2
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -374,18 +351,9 @@ msgstr ""
"I pamundur analizimi i '%-.*s', duhet të ishte një numër brenda riferimeve "
"të një simboli (p.sh. &#234;) - ndoshta numri është tepër i madh"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Riferimi '%-.*s' i simbolit nuk kodifikon një simbol të lejuar"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Simbol bosh, duhet të përmbajë një vlerë numerike, si &#454;"
# (pofilter) endwhitespace: checks whether whitespace at the end of the strings matches
# (pofilter) doublespacing: checks for bad double-spaces by comparing to original
#: glib/gmarkup.c:685
#: 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 "
@ -394,33 +362,39 @@ msgstr ""
"Simboli nuk mbaron me pikëpresje; ndoshta keni përdorur një simbol ampersand "
"& pa pasur ndërmend fillimin e një entiteti të ri - përdorni &amp; "
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Riferim entiteti i papërfunduar"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Referim i papërfunduar i simbolit"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Tekst i kodifikuar UTF-8 i pavlefshëm - sekuencë tepër e gjatë"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Tekst i kodifikuar UTF-8 i pavlefshëm - nuk është një simbol nisje"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Tekst i kodifikuar UTF-8 i pavlefshëm - '%s' e pavlefshme"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Riferimi '%-.*s' i simbolit nuk kodifikon një simbol të lejuar"
#: glib/gmarkup.c:1168
# (pofilter) puncspacing: checks for bad spacing after punctuation
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"U gjet një entitet bosh '&;'; entitetet e vlefshme janë: &amp; &quot; &lt; "
"&gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Emri entitetit '%s' nuk njihet"
# (pofilter) singlequoting: checks whether singlequoting is consistent between the two strings
#: 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 &amp;"
msgstr ""
"Entiteti nuk përfundon me pikëpresje; ndoshta keni përdorur një \"e\" "
"komerciale pa dashur të nisni një entity - zëvendësojeni me &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumenti duhet të fillojë me një element (p.sh. <book>)"
# (pofilter) puncspacing: checks for bad spacing after punctuation
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -429,7 +403,7 @@ msgstr ""
"'%s' nuk është një simbol i vlefshëm mbas simbolit '<', nuk mund të fillojë "
"me emrin e një elementi"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -438,7 +412,7 @@ msgstr ""
"Simbol tek '%s', pritet një simbol '>' për të mbyllur etiketën e elementit "
"bosh '%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -446,7 +420,7 @@ msgstr ""
"Simbol tek '%s', pritet një '=' mbas emrit të atributit '%s' të elementit '%"
"s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -457,7 +431,7 @@ msgstr ""
"nisjes së elementit '%s', ose në menyrë apsionale një atribut; ka shumë "
"mundësi të keni përdorur një simbol të pavlefshëm tek emri i një atributi"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -466,7 +440,7 @@ msgstr ""
"Simbol tek '%s', pritet simboli i kuotës së hapur mbas shenjës së barazimit "
"për t'i caktuar një vlerë atributit '%s' të elementit '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -475,7 +449,7 @@ msgstr ""
"'%s' nuk është një simbol i vlefshëm mbrapa simboleve '</'; '%s' nuk mund të "
"nisë emrin e një elementi"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -484,27 +458,27 @@ msgstr ""
"'%s' nuk është një simbol i vlefshëm për të vazhduar mbylljen e emrit të "
"elementit '%s'; simboli i lejuar është '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Elementi '%s' është mbyllur, asnjë element aktualisht është i hapur"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
"Elementi '%s' është mbyllur, por elementi aktualisht i hapur është '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Dokumenti ishte bosh apo përmbante vetëm hapësira të bardha"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Dokumenti u mbyll papritur, menjëherë pas hapjes së kllapës këndore '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -513,27 +487,27 @@ msgstr ""
"Dokumenti u mbyll papritur me elementë akoma të hapur - '%s' ishte elementi "
"i fundit i hapur"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr "Dokumenti u mbyll papritur, pritet simboli i mbylljes për tag-un <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumenti përfundoi papritur në brendësi të emrit të një elementi"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokumenti u mbyll papritur në brendësi të emrit të një atributi"
# (pofilter) endpunc: checks whether punctuation at the end of the strings match
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokumenti u mbyll papritur brënda një etikete hapje elementi"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -541,17 +515,17 @@ msgstr ""
"Dokumenti u mbyll papritur mbas shenjës së barazimit që vjen mbas emrit të "
"një atributi; atributi nuk ka vlerë"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokumenti u mbyll papritur në brendësi të vlerës së një atributi"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Dokumenti u mbyll papritur në brendësi të tag-ut mbyllës të elementit '%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokumenti u mbyll papritur në brendësi të një komenti apo instruksioni "
@ -1066,62 +1040,62 @@ msgstr "Sekuencë e pavlefshme në hyrje për konvertimin"
msgid "Character out of range for UTF-16"
msgstr "Simboli nuk ekziston në UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Përdorimi:"
# (pofilter) acronyms: acronyms should not be translated: OPTION
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPSIONI...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Opcionet e ndihmës:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Shfaq opcionet e ndihmës"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Shfaq të gjithë opcionet e ndihmës"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Opcionet e programit:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "I pamundur analizimi i vlerës së plotë '%s' për %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Vlera integruese '%s' për %s është jashtë kufirit"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "I pamundur analizimi i vlerës së dyfishtë '%s' për %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Vlera e dyfishtë '%s' për %s është jashtë kufirit"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Gabim gjatë analizimit të opsionit %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Mungojnë argumentë për %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Opcion i panjohur %s"
@ -1244,8 +1218,8 @@ msgid "Stream is already closed"
msgstr "Stream është i mbyllur rregullisht"
# (pofilter) untranslated: checks whether a string has been translated at all
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Operacioni është anulluar"
@ -1414,7 +1388,7 @@ msgid "File names cannot contain '%c'"
msgstr "Emrat e file nuk mund të përmbajnë '%c'"
# (pofilter) untranslated: checks whether a string has been translated at all
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "Volumi nuk suporton montimin"
@ -1442,15 +1416,6 @@ msgstr "Enumuruesi i file prezanton një operacion të papërfunduar"
msgid "File enumerator is already closed"
msgstr "Enumuruesi i file është rregullisht i mbyllur"
#: gio/gfileicon.c:145
msgid "file"
msgstr "file"
# (pofilter) untranslated: checks whether a string has been translated at all
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "File që përmban ikonën"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1996,71 +1961,11 @@ msgstr "Stream i output nuk suporton shkrimin"
msgid "Source stream is already closed"
msgstr "Stream burues është i mbyllur"
# (pofilter) untranslated: checks whether a string has been translated at all
#: gio/gthemedicon.c:211
msgid "name"
msgstr "emri"
# (pofilter) variables: translation contains variables not in original: %s
# (pofilter) simplecaps: checks the capitalisation of two strings isn't wildly different
# (pofilter) singlequoting: checks whether singlequoting is consistent between the two strings
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
# (pofilter) printf: checks whether printf format strings match
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Emri i ikonës"
# (pofilter) untranslated: checks whether a string has been translated at all
#: gio/gthemedicon.c:223
msgid "names"
msgstr "emrat"
# (pofilter) untranslated: checks whether a string has been translated at all
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Një array me emrat e ikonave"
# (pofilter) untranslated: checks whether a string has been translated at all
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "përdor alternativat e paracaktuara"
# (pofilter) untranslated: checks whether a string has been translated at all
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Tregon nëse duhen përdorur ikonat alternative të paracaktuara gjetur duke "
"shkurtuar emrin tek simbolet '-'. Shpërfill emrat mbas emrit të parë në rast "
"se jepen më shumë se një."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
# (pofilter) variables: translation contains variables not in original: %s, %s
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
# (pofilter) singlequoting: checks whether singlequoting is consistent between the two strings
# (pofilter) printf: checks whether printf format strings match
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Gabim gjatë kryerjes së stat të përshkruesit të file: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
# (pofilter) variables: translation contains variables not in original: %s, %s
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
# (pofilter) singlequoting: checks whether singlequoting is consistent between the two strings
@ -2085,10 +1990,6 @@ msgstr "Gabim duke mbyllur unix: %s"
msgid "Filesystem root"
msgstr "File rrënjë i sistemit"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
@ -2096,7 +1997,7 @@ msgid "Error writing to unix: %s"
msgstr "Gabim gjatë shkrimit në unix: %s"
# (pofilter) untranslated: checks whether a string has been translated at all
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "volumi nuk suporton nxjerrjen jashtë"
@ -2142,6 +2043,81 @@ msgstr "përdor një format liste të gjatë"
msgid "[FILE...]"
msgstr "[FILE...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Simboli '%s' nuk vlen si fillues i emrit të një entiteti; simboli & "
#~ "fillon një entitet; nëse ky simbol nuk do të jetë fillimi i një entiteti, "
#~ "përdore si &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Simboli '%s' nuk është i vlefshëm brenda emrit të një entiteti"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Simbol bosh, duhet të përmbajë një vlerë numerike, si &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Riferim entiteti i papërfunduar"
#~ msgid "Unfinished character reference"
#~ msgstr "Referim i papërfunduar i simbolit"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Tekst i kodifikuar UTF-8 i pavlefshëm - sekuencë tepër e gjatë"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Tekst i kodifikuar UTF-8 i pavlefshëm - nuk është një simbol nisje"
#~ msgid "file"
#~ msgstr "file"
# (pofilter) untranslated: checks whether a string has been translated at all
#~ msgid "The file containing the icon"
#~ msgstr "File që përmban ikonën"
# (pofilter) untranslated: checks whether a string has been translated at all
#~ msgid "name"
#~ msgstr "emri"
# (pofilter) variables: translation contains variables not in original: %s
# (pofilter) simplecaps: checks the capitalisation of two strings isn't wildly different
# (pofilter) singlequoting: checks whether singlequoting is consistent between the two strings
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
# (pofilter) printf: checks whether printf format strings match
#~ msgid "The name of the icon"
#~ msgstr "Emri i ikonës"
# (pofilter) untranslated: checks whether a string has been translated at all
#~ msgid "names"
#~ msgstr "emrat"
# (pofilter) untranslated: checks whether a string has been translated at all
#~ msgid "An array containing the icon names"
#~ msgstr "Një array me emrat e ikonave"
# (pofilter) untranslated: checks whether a string has been translated at all
#~ msgid "use default fallbacks"
#~ msgstr "përdor alternativat e paracaktuara"
# (pofilter) untranslated: checks whether a string has been translated at all
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Tregon nëse duhen përdorur ikonat alternative të paracaktuara gjetur duke "
#~ "shkurtuar emrin tek simbolet '-'. Shpërfill emrat mbas emrit të parë në "
#~ "rast se jepen më shumë se një."
# (pofilter) variables: translation contains variables not in original: %s, %s
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
# (pofilter) singlequoting: checks whether singlequoting is consistent between the two strings
# (pofilter) printf: checks whether printf format strings match
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Gabim gjatë kryerjes së stat të përshkruesit të file: %s"
# (pofilter) untranslated: checks whether a string has been translated at all
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"

283
po/sr.po
View File

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 2.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2007-09-06 21:11+0100\n"
"Last-Translator: Горан Ракић <grakic@devbase.net>\n"
"Language-Team: Serbian (sr) <gnom@prevod.org>\n"
@ -305,52 +305,32 @@ msgstr "Не могу да отворим датотеку „%s“: неусп
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Не могу да мапирам датотеку „%s“: неуспешан mmap(): %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Грешка у %d. реду, %d. знак: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Неисправан текст у УТФ-8 запису — „%s“ није исправно"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Грешка у %d. реду: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Уочен празан ентитет „&;“; прихватљиви ентитети су &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Име ентитета не може почети знаком „%s“ ; знак & започиње ентитет; ако овај "
"знак не означава ентитет, истакните га помоћу &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Знак „%s“ није дозвољен у имену ентитета"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Ентитет „%s“ није познат"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Ентитет се не завршава тачка-запетом; највероватније сте користили амперсанд "
"без намере да започнете ентитет — назначите амперсанд са &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -359,16 +339,7 @@ msgstr ""
"Нисам успео да рашчланим „%-.*s“, што је требало да представља цифру унутар "
"знаковне референце (на пример &#234;) — можда је цифра превелика"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Знаковна референца „%-.*s“ не представља дозвољени знак"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Празна знаковна референца; мора да садржи цифру као на пример &#747;"
#: glib/gmarkup.c:685
#: 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 "
@ -378,32 +349,36 @@ msgstr ""
"користили амперсанд без намере да започнете ентитет — назначите амперсанд са "
"&amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Недовршена референца ентитета"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Недовршена знаковна референца"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Неисправан текст у УТФ-8 запису предугачка секвенца"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Неисправан текст у УТФ-8 запису — карактер није почетни"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Неисправан текст у УТФ-8 запису — „%s“ није исправно"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Знаковна референца „%-.*s“ не представља дозвољени знак"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Уочен празан ентитет „&;“; прихватљиви ентитети су &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Ентитет „%s“ није познат"
#: 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 &amp;"
msgstr ""
"Ентитет се не завршава тачка-запетом; највероватније сте користили амперсанд "
"без намере да започнете ентитет — назначите амперсанд са &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Документ мора почети елементом (нпр. <књига>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -412,7 +387,7 @@ msgstr ""
"„%s“ не представља исправан знак након знака „<“; име елемента не може њиме "
"почети"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -421,14 +396,14 @@ msgstr ""
"Чудан знак „%s“, а очекивао сам „>“ знак ради окончања почетне ознаке "
"елемента „%s“"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"Чудан знак „%s“, очекивао сам „=“ после имена атрибута „%s“ елемента „%s“"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -439,7 +414,7 @@ msgstr ""
"елемента „%s“, или можда атрибут; можда сте користили неисправан знак у "
"имену атрибута"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -448,7 +423,7 @@ msgstr ""
"Чудан знак „%s“, очекивао сам почетни наводник након знака једнакости при "
"додели вредности атрибута „%s“ елемента „%s“"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -456,7 +431,7 @@ msgid ""
msgstr ""
"„%s“ није исправан знак након низа „</“; „%s“ не може започети име елемента"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -465,26 +440,26 @@ msgstr ""
"„%s“ није исправан знак након имена затвореног елемента „%s“; дозвољени знак "
"је „>“"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Елемент „%s“ је затворен, нема тренутно отворених елемената"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Елемент „%s“ је затворен, а тренутно отворен елемент је „%s“"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Документ је празан или садржи само белине"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Документ завршен неочекивано непосредно након отворене косоугле заграде „<“"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -493,7 +468,7 @@ msgstr ""
"Документ завршен неочекивано са отвореним елементима — „%s“ је последње "
"отворен елемент"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -502,19 +477,19 @@ msgstr ""
"Документ завршен неочекивано, очекивао сам да наиђем на затворену косоуглу "
"заграду која затвара ознаку <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Документ завршен неочекивано усред имена елемента"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Документ завршен неочекивано усред имена атрибута"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Документ завршен неочекивано усред почетне ознаке елемента."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -522,16 +497,16 @@ msgstr ""
"Документ завршен неочекивано након знака једнакости после имена атрибута; "
"вредност атрибута није наведена"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Документ завршен неочекивано усред вредности атрибута"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Документ завршен неочекивано усред завршне ознаке елемента „%s“"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Документ завршен неочекивано усред примедбе или упута за обраду"
@ -978,61 +953,61 @@ msgstr "Неисправан низ у уносу за претварање"
msgid "Character out of range for UTF-16"
msgstr "Знак ван опсега за УТФ-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Употреба:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[ОПЦИЈА...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Помоћне опције:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Прикажи опције за помоћ"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Прикажи све опције за помоћ"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Опције програма:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Не могу да рашланим целобројну вредност „%s“ за %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Целобројна вредност „%s“ за %s је изван опсега"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Не могу да рашланим реалну вредност двоструке тачности „%s“ за %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Реална вредност двоструке тачности „%s“ за %s је изван опсега"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Грешка при рашчлањивању могућности %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Недостаје аргумент за %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Непозната опција %s"
@ -1153,8 +1128,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1297,7 +1272,7 @@ msgstr "Симболичке везе нису подржане"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1319,15 +1294,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Име домаћина из адресе „%s“ је неисправно"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1740,55 +1706,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "Име домаћина из адресе „%s“ је неисправно"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Грешка при читању датотеке „%s“: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1805,16 +1727,12 @@ msgstr "Грешка у %d. реду: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Грешка при рашчлањивању могућности %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1853,6 +1771,45 @@ msgstr ""
msgid "[FILE...]"
msgstr "[ОПЦИЈА...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Име ентитета не може почети знаком „%s“ ; знак & започиње ентитет; ако "
#~ "овај знак не означава ентитет, истакните га помоћу &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Знак „%s“ није дозвољен у имену ентитета"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr ""
#~ "Празна знаковна референца; мора да садржи цифру као на пример &#747;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Недовршена референца ентитета"
#~ msgid "Unfinished character reference"
#~ msgstr "Недовршена знаковна референца"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Неисправан текст у УТФ-8 запису предугачка секвенца"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Неисправан текст у УТФ-8 запису — карактер није почетни"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Име домаћина из адресе „%s“ је неисправно"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "Име домаћина из адресе „%s“ је неисправно"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Грешка при читању датотеке „%s“: %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Грешка при рашчлањивању могућности %s"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 2.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -302,52 +302,33 @@ msgstr "Не могу да отворим датотеку „%s“: неусп
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Не могу да отворим датотеку „%s“: неуспјешан fdopen(): %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Грешка у %d. реду, %d. знак: %s"
#: glib/gmarkup.c:389
# ознака знака??? неееее
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Неисправан текст у УТФ-8 запису"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Грешка у %d. реду: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Уочен празан ентитет „&;“; прихватљиви ентитети су &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Име ентитета не може почети знаком „%s“ ; знак & започиње ентитет; ако овај "
"знак не означава ентитет, истакните га помоћу &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Знак „%s“ није дозвољен у имену ентитета"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Ентитет „%s“ није познат"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Ентитет се не завршава тачка-запетом; највјероватније сте користили "
"амперсанд без намере да започнете ентитет — назначите амперсанд као &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, fuzzy, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -356,16 +337,7 @@ msgstr ""
"Нисам успио да рашчланим „%s“, што је требало да представља цифру унутар "
"позива знака (на пример &#234;) — можда је цифра превелика"
#: glib/gmarkup.c:660
#, fuzzy, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Позив знака „%s“ не стоји за дозвољени знак"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Празан позив знака; морао би садржати цифру као на примјер &#747;"
#: glib/gmarkup.c:685
#: 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,39 +346,37 @@ msgstr ""
"Позив знака се не завршава тачка-запетом; највјероватније сте користили "
"амперсанд без намере да започнете ентитет — назначите амперсанд као &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Недовршена ознака ентитета"
# позив уместо ознака?
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Недовршен позив знака"
# ознака знака??? неееее
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Неисправан текст у УТФ-8 запису"
# ознака знака??? неееее
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Неисправан текст у УТФ-8 запису"
# ознака знака??? неееее
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Неисправан текст у УТФ-8 запису"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Позив знака „%s“ не стоји за дозвољени знак"
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Уочен празан ентитет „&;“; прихватљиви ентитети су &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Ентитет „%s“ није познат"
#: 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 &amp;"
msgstr ""
"Ентитет се не завршава тачка-запетом; највјероватније сте користили "
"амперсанд без намере да започнете ентитет — назначите амперсанд као &amp;"
# може и ћирилица: „Уникод ТрансФормација 8“
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Документ мора почети елементом (нпр. <књига>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -415,7 +385,7 @@ msgstr ""
"„%s“ не представља исправан знак након знака „<“; име елемента не може њиме "
"почети"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -424,13 +394,13 @@ msgstr ""
"Чудан знак „%s“, а очекивао сам „>“ знак ради окончања почетне ознаке "
"елемента „%s“"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "Чудан знак „%s“, очекивао сам „=“ после особине „%s“ елемента „%s“"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -441,7 +411,7 @@ msgstr ""
"елемента „%s“, или могућу особину; можда сте користили неисправан знак у "
"имену особине"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -450,7 +420,7 @@ msgstr ""
"Чудан знак „%s“, очекивао сам почетни наводник након знака једнакости при "
"додјели вриједности особини „%s“ елемента „%s“"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -458,7 +428,7 @@ msgid ""
msgstr ""
"„%s“ није исправан знак након низа „</“; „%s“ не може започети име елемента"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -467,26 +437,26 @@ msgstr ""
"„%s“ није исправан знак након имена затвореног елемента „%s“; дозвољени знак "
"је „>“"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Елемент „%s“ је затворен, нема тренутно отворених елемената"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Елемент „%s“ је затворен, а тренутно отворен елемент је „%s“"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Документ је празан или садржи само бјелине"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Документ завршен неочекивано непосредно након отворене косоугле заграде „<“"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -495,7 +465,7 @@ msgstr ""
"Документ завршен неочекивано са отвореним елементима — „%s“ је последње "
"отворен елемент"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -504,19 +474,19 @@ msgstr ""
"Документ завршен неочекивано, очекивао сам да наиђем на затворену косоуглу "
"заграду која затвара ознаку <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Документ завршен неочекивано усред имена елемента"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Документ завршен неочекивано усред имена особине"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Документ завршен неочекивано усред почетне ознаке елемента."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -524,16 +494,16 @@ msgstr ""
"Документ завршен неочекивано након знака једнакости после имена особине; "
"вриједност особине није наведена"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Документ завршен неочекивано усред вриједности особине"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Документ завршен неочекивано усред завршне ознаке елемента „%s“"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Документ завршен неочекивано усред примедбе или упута за обраду"
@ -986,61 +956,61 @@ msgstr "Неисправан низ у уносу за претварање"
msgid "Character out of range for UTF-16"
msgstr "Знак ван опсега за УТФ-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr ""
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr ""
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr ""
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr ""
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr ""
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr ""
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr ""
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, fuzzy, c-format
msgid "Error parsing option %s"
msgstr "Грешка при претварању: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr ""
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr ""
@ -1157,8 +1127,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1300,7 +1270,7 @@ msgstr "Симболичке везе нису подржане"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1321,15 +1291,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Име домаћина из адресе „%s“ је неисправно"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1741,55 +1702,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "Име домаћина из адресе „%s“ је неисправно"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Грешка при читању датотеке „%s“: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1806,16 +1723,12 @@ msgstr "Грешка у %d. реду: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Грешка при претварању: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1853,6 +1766,49 @@ msgstr ""
msgid "[FILE...]"
msgstr ""
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Име ентитета не може почети знаком „%s“ ; знак & започиње ентитет; ако "
#~ "овај знак не означава ентитет, истакните га помоћу &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Знак „%s“ није дозвољен у имену ентитета"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Празан позив знака; морао би садржати цифру као на примјер &#747;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Недовршена ознака ентитета"
# позив уместо ознака?
#~ msgid "Unfinished character reference"
#~ msgstr "Недовршен позив знака"
# ознака знака??? неееее
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Неисправан текст у УТФ-8 запису"
# ознака знака??? неееее
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Неисправан текст у УТФ-8 запису"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Име домаћина из адресе „%s“ је неисправно"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "Име домаћина из адресе „%s“ је неисправно"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Грешка при читању датотеке „%s“: %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Грешка при претварању: %s"

View File

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 2.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2007-09-06 21:11+0100\n"
"Last-Translator: Goran Rakić <grakic@devbase.net>\n"
"Language-Team: Serbian (sr) <gnom@prevod.org>\n"
@ -305,52 +305,32 @@ msgstr "Ne mogu da otvorim datoteku „%s“: neuspešan open(): %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Ne mogu da mapiram datoteku „%s“: neuspešan mmap(): %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Greška u %d. redu, %d. znak: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Neispravan tekst u UTF-8 zapisu — „%s“ nije ispravno"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Greška u %d. redu: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Uočen prazan entitet „&;“; prihvatljivi entiteti su &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Ime entiteta ne može početi znakom „%s“ ; znak & započinje entitet; ako ovaj "
"znak ne označava entitet, istaknite ga pomoću &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Znak „%s“ nije dozvoljen u imenu entiteta"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entitet „%s“ nije poznat"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entitet se ne završava tačka-zapetom; najverovatnije ste koristili ampersand "
"bez namere da započnete entitet — naznačite ampersand sa &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -359,16 +339,7 @@ msgstr ""
"Nisam uspeo da raščlanim „%-.*s“, što je trebalo da predstavlja cifru unutar "
"znakovne reference (na primer &#234;) — možda je cifra prevelika"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Znakovna referenca „%-.*s“ ne predstavlja dozvoljeni znak"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Prazna znakovna referenca; mora da sadrži cifru kao na primer &#747;"
#: glib/gmarkup.c:685
#: 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 "
@ -378,32 +349,36 @@ msgstr ""
"koristili ampersand bez namere da započnete entitet — naznačite ampersand sa "
"&amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Nedovršena referenca entiteta"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Nedovršena znakovna referenca"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Neispravan tekst u UTF-8 zapisu predugačka sekvenca"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Neispravan tekst u UTF-8 zapisu — karakter nije početni"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Neispravan tekst u UTF-8 zapisu — „%s“ nije ispravno"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Znakovna referenca „%-.*s“ ne predstavlja dozvoljeni znak"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Uočen prazan entitet „&;“; prihvatljivi entiteti su &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Entitet „%s“ nije poznat"
#: 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 &amp;"
msgstr ""
"Entitet se ne završava tačka-zapetom; najverovatnije ste koristili ampersand "
"bez namere da započnete entitet — naznačite ampersand sa &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokument mora početi elementom (npr. <knjiga>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -412,7 +387,7 @@ msgstr ""
"„%s“ ne predstavlja ispravan znak nakon znaka „<“; ime elementa ne može "
"njime početi"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -421,14 +396,14 @@ msgstr ""
"Čudan znak „%s“, a očekivao sam „>“ znak radi okončanja početne oznake "
"elementa „%s“"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"Čudan znak „%s“, očekivao sam „=“ posle imena atributa „%s“ elementa „%s“"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -439,7 +414,7 @@ msgstr ""
"elementa „%s“, ili možda atribut; možda ste koristili neispravan znak u "
"imenu atributa"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -448,7 +423,7 @@ msgstr ""
"Čudan znak „%s“, očekivao sam početni navodnik nakon znaka jednakosti pri "
"dodeli vrednosti atributa „%s“ elementa „%s“"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -456,7 +431,7 @@ msgid ""
msgstr ""
"„%s“ nije ispravan znak nakon niza „</“; „%s“ ne može započeti ime elementa"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -465,26 +440,26 @@ msgstr ""
"„%s“ nije ispravan znak nakon imena zatvorenog elementa „%s“; dozvoljeni "
"znak je „>“"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element „%s“ je zatvoren, nema trenutno otvorenih elemenata"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Element „%s“ je zatvoren, a trenutno otvoren element je „%s“"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Dokument je prazan ili sadrži samo beline"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Dokument završen neočekivano neposredno nakon otvorene kosougle zagrade „<“"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -493,7 +468,7 @@ msgstr ""
"Dokument završen neočekivano sa otvorenim elementima — „%s“ je poslednje "
"otvoren element"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -502,19 +477,19 @@ msgstr ""
"Dokument završen neočekivano, očekivao sam da naiđem na zatvorenu kosouglu "
"zagradu koja zatvara oznaku <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokument završen neočekivano usred imena elementa"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokument završen neočekivano usred imena atributa"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokument završen neočekivano usred početne oznake elementa."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -522,16 +497,16 @@ msgstr ""
"Dokument završen neočekivano nakon znaka jednakosti posle imena atributa; "
"vrednost atributa nije navedena"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokument završen neočekivano usred vrednosti atributa"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Dokument završen neočekivano usred završne oznake elementa „%s“"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Dokument završen neočekivano usred primedbe ili uputa za obradu"
@ -978,61 +953,61 @@ msgstr "Neispravan niz u unosu za pretvaranje"
msgid "Character out of range for UTF-16"
msgstr "Znak van opsega za UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Upotreba:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPCIJA...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Pomoćne opcije:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Prikaži opcije za pomoć"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Prikaži sve opcije za pomoć"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Opcije programa:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Ne mogu da rašlanim celobrojnu vrednost „%s“ za %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Celobrojna vrednost „%s“ za %s je izvan opsega"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Ne mogu da rašlanim realnu vrednost dvostruke tačnosti „%s“ za %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Realna vrednost dvostruke tačnosti „%s“ za %s je izvan opsega"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Greška pri raščlanjivanju mogućnosti %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Nedostaje argument za %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Nepoznata opcija %s"
@ -1154,8 +1129,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1298,7 +1273,7 @@ msgstr "Simboličke veze nisu podržane"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1320,15 +1295,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Ime domaćina iz adrese „%s“ je neispravno"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1741,55 +1707,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "Ime domaćina iz adrese „%s“ je neispravno"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Greška pri čitanju datoteke „%s“: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1806,16 +1728,12 @@ msgstr "Greška u %d. redu: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Greška pri raščlanjivanju mogućnosti %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1854,6 +1772,45 @@ msgstr ""
msgid "[FILE...]"
msgstr "[OPCIJA...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Ime entiteta ne može početi znakom „%s“ ; znak & započinje entitet; ako "
#~ "ovaj znak ne označava entitet, istaknite ga pomoću &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Znak „%s“ nije dozvoljen u imenu entiteta"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr ""
#~ "Prazna znakovna referenca; mora da sadrži cifru kao na primer &#747;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Nedovršena referenca entiteta"
#~ msgid "Unfinished character reference"
#~ msgstr "Nedovršena znakovna referenca"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Neispravan tekst u UTF-8 zapisu predugačka sekvenca"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Neispravan tekst u UTF-8 zapisu — karakter nije početni"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Ime domaćina iz adrese „%s“ je neispravno"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "Ime domaćina iz adrese „%s“ je neispravno"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Greška pri čitanju datoteke „%s“: %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Greška pri raščlanjivanju mogućnosti %s"

316
po/sv.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-16 20:02+0100\n"
"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
@ -305,53 +305,32 @@ msgstr "Misslyckades med att öppna filen \"%s\": open() misslyckades: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Misslyckades med att mappa filen \"%s\": mmap() misslyckades: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Fel på rad %d tecken %d:"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Ogiltigt UTF-8-kodad text - inte giltig \"%s\""
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Fel på rad %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Tom entitet \"&;\" hittades, giltiga entiteter är: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Tecknet \"%s\" är inte giltigt i början på ett entitetsnamn; tecknet & "
"inleder en entitet. Om detta &-tecken inte ska vara en entitet måste du "
"skriva om det som &amp;."
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Tecknet \"%s\" är inte giltigt inuti ett entitetsnamn"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entitetsnamnet \"%s\" är okänt"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Entiteten slutade inte med ett semikolon. Troligtvis använde du ett &-tecken "
"utan att avse att starta en entitet. Skriv om &-tecknet som &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -360,16 +339,7 @@ msgstr ""
"Misslyckades med att tolka \"%-.*s\", som skulle ha varit ett tal inuti en "
"teckenreferens (&#234; till exempel). Talet är kanske för stort"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Teckenreferensen \"%-.*s\" kodar inte ett tillåtet tecken"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Tom teckenreferens, måste innehålla ett tal som exempelvis &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -378,32 +348,36 @@ msgstr ""
"Teckenreferensen slutade inte med ett semikolon. Troligtvis använde du ett &-"
"tecken utan att avse att starta en entitet. Skriv om &-tecknet som &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Oavslutad entitetsreferens"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Oavslutad teckenreferens"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Ogiltigt UTF-8-kodad text - för lång sekvens"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Ogiltigt UTF-8-kodad text - inte ett starttecken"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Ogiltigt UTF-8-kodad text - inte giltig \"%s\""
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Teckenreferensen \"%-.*s\" kodar inte ett tillåtet tecken"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Tom entitet \"&;\" hittades, giltiga entiteter är: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Entitetsnamnet \"%s\" är okänt"
#: 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 &amp;"
msgstr ""
"Entiteten slutade inte med ett semikolon. Troligtvis använde du ett &-tecken "
"utan att avse att starta en entitet. Skriv om &-tecknet som &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumentet måste börja med ett element (exempelvis <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -412,7 +386,7 @@ msgstr ""
"\"%s\" är inte ett giltigt tecken efter ett \"<\"-tecken. Det får inte "
"inleda ett elementnamn"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -421,7 +395,7 @@ msgstr ""
"Konstigt tecken \"%s\", ett \">\"-tecken förväntades för att avsluta taggen "
"empty-element \"%s\""
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -429,7 +403,7 @@ msgstr ""
"Konstigt tecken \"%s\", ett \"=\" förväntades efter attributnamnet \"%s\" "
"till elementet \"%s\""
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -440,7 +414,7 @@ msgstr ""
"avsluta starttaggen för elementet \"%s\", eller möjligtvis ett attribut. Du "
"kanske använde ett ogiltigt tecken i ett attributnamn"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -450,7 +424,7 @@ msgstr ""
"likhetstecknet när värdet av attributet \"%s\" till elementet \"%s\" "
"tilldelades"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -459,7 +433,7 @@ msgstr ""
"\"%s\" är inte ett giltigt tecken efter tecknen \"</\". \"%s\" får inte "
"inleda ett elementnamn"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -468,27 +442,27 @@ msgstr ""
"\"%s\" är inte ett giltigt tecken efter stängelementnamnet \"%s\". Det "
"tillåtna tecknet är \">\""
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Elementet \"%s\" stängdes, inget element är öppet för tillfället"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
"Elementet \"%s\" stängdes, men det element som är öppet för tillfället är \"%"
"s\""
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Dokumentet var tomt eller innehöll endast tomrum"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokumentet tog oväntat slut efter ett öppningsklammer \"<\""
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -497,7 +471,7 @@ msgstr ""
"Dokumentet tog oväntat slut då element fortfarande var öppna. \"%s\" var det "
"senast öppnade elementet"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -506,19 +480,19 @@ msgstr ""
"Dokumentet tog oväntat slut, en stängningsklammer föräntades för att avsluta "
"taggen <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumentet tog oväntat slut inuti ett elementnamn"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokumentet tog oväntat slut inuti ett attributnamn"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokumentet tog oväntat slut inuti en elementöppnande tagg."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -526,17 +500,17 @@ msgstr ""
"Dokumentet tog oväntat slut efter likhetstecknet som följde ett "
"attributnamn. Inget attributvärde"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokumentet tog oväntat slut inuti ett attributvärde"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Dokumentet tog oväntat slut inuti stängningstaggen för elementet \"%s\""
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokumentet tog oväntat slut inuti en kommentar eller behandlingsinstruktion"
@ -981,61 +955,61 @@ msgstr "Ogiltig sekvens i konverteringsindata"
msgid "Character out of range for UTF-16"
msgstr "Tecknet är utanför intervallet för UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Användning:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[FLAGGA...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Hjälpflaggor:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Visa hjälpflaggor"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Visa alla hjälpflaggor"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Programflaggor:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Kan inte tolka heltalsvärdet \"%s\" för %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Heltalsvärdet \"%s\" för %s är utanför intervallet"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Kan inte tolka dubbelvärdet \"%s\" för %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Dubbelvärdet \"%s\" för %s är utanför intervallet"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Fel vid tolkning av flaggan %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Argument saknas för %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Okänd flagga %s"
@ -1158,8 +1132,8 @@ msgstr "För stort räknevärde skickat till %s"
msgid "Stream is already closed"
msgstr "Strömmen är redan stängd"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Åtgärden avbröts"
@ -1299,7 +1273,7 @@ msgstr "Papperskorgen stöds inte"
msgid "File names cannot contain '%c'"
msgstr "Filnamn får inte innehålla \"%c\""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "volymen har inte implementerat montering"
@ -1320,14 +1294,6 @@ msgstr "Filnumreraren har kvarstående åtgärd"
msgid "File enumerator is already closed"
msgstr "Filnumreraren är redan strängd"
#: gio/gfileicon.c:145
msgid "file"
msgstr "fil"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "Filen innehållandes ikonen"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1736,56 +1702,11 @@ msgstr "Utmatningsström har inte implementerat skrivning"
msgid "Source stream is already closed"
msgstr "Källströmmen är redan stängd"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "namn"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Namnet för ikonen"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "namn"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "En kedja innehållandes ikonnamnen"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "använd standardvärden att falla tillbaka på"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Huruvida standardvärden att falla tillbaka på ska användas som hittas genom "
"att förkorta namnet vid \"-\"-tecken. Ignorerar namn efter den första om "
"flera namn anges."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Kan inte hantera version %d av GThemedIcon-kodning"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Filhandtag"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "Filhandtaget att läsa från"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Stäng filhandtag"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "Huruvida filhandtaget ska stängas när strömmen stängs"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1802,16 +1723,12 @@ msgstr "Fel vid stängning av unix: %s"
msgid "Filesystem root"
msgstr "Filsystemsrot"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "Filhandtaget att skriva till"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Fel vid skrivning till unix: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "volymen har inte implementerat utmatning"
@ -1848,6 +1765,77 @@ msgstr "använd ett långt listningsformat"
msgid "[FILE...]"
msgstr "[FIL...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Tecknet \"%s\" är inte giltigt i början på ett entitetsnamn; tecknet & "
#~ "inleder en entitet. Om detta &-tecken inte ska vara en entitet måste du "
#~ "skriva om det som &amp;."
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Tecknet \"%s\" är inte giltigt inuti ett entitetsnamn"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Tom teckenreferens, måste innehålla ett tal som exempelvis &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Oavslutad entitetsreferens"
#~ msgid "Unfinished character reference"
#~ msgstr "Oavslutad teckenreferens"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Ogiltigt UTF-8-kodad text - för lång sekvens"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Ogiltigt UTF-8-kodad text - inte ett starttecken"
#~ msgid "file"
#~ msgstr "fil"
#~ msgid "The file containing the icon"
#~ msgstr "Filen innehållandes ikonen"
#~ msgid "name"
#~ msgstr "namn"
#~ msgid "The name of the icon"
#~ msgstr "Namnet för ikonen"
#~ msgid "names"
#~ msgstr "namn"
#~ msgid "An array containing the icon names"
#~ msgstr "En kedja innehållandes ikonnamnen"
#~ msgid "use default fallbacks"
#~ msgstr "använd standardvärden att falla tillbaka på"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Huruvida standardvärden att falla tillbaka på ska användas som hittas "
#~ "genom att förkorta namnet vid \"-\"-tecken. Ignorerar namn efter den "
#~ "första om flera namn anges."
#~ msgid "File descriptor"
#~ msgstr "Filhandtag"
#~ msgid "The file descriptor to read from"
#~ msgstr "Filhandtaget att läsa från"
#~ msgid "Close file descriptor"
#~ msgstr "Stäng filhandtag"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "Huruvida filhandtaget ska stängas när strömmen stängs"
#~ msgid "The file descriptor to write to"
#~ msgstr "Filhandtaget att skriva till"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u byte"

310
po/ta.po
View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ta\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-15 14:04+0530\n"
"Last-Translator: \n"
"Language-Team: <en@li.org>\n"
@ -310,51 +310,32 @@ msgstr "'%s' கோப்பினை திறக்க முடியவி
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' கோப்பினை ஒப்பிட முடியவில்லை: mmap() செயலிழந்தது: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "வரி %d எழுத்து %d ல் பிழை: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "பிழையான UTF-8 குறியீடு செய்யப்பட்ட உரை - செல்லுபடியாகும் '%s' அல்ல"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "%d வரியில் பிழை: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"வெற்றா பிரதிநிதி '&;' கண்டது; சரியான பிரதிநிதிகள்: &amp; &quot; &lt; &qt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"'%s' வரியுரு பிரதிநிதியின் தொடக்கத்தில் வரக்கூடாது; & வரியுரு பிரதிநிதியைத் "
"தொடங்கும்; இந்த & ஓர் பிரதிநிதியாக இருக்கக்கூடாது என்றால்; அதை &amp ஆக விடுவி;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "'%s' வரியுரு பிரதிநிதியின் பெயரில் பிழையானது"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "பிரதிநிதியின் பெயர் '%s' தெரியாதது"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"பிரதிநிதி ';' உடன் முடிவடையவில்லை; நீங்கள் பிரதிநிதி ஒன்றை தொடங்க யோசிக்காமல் '&' "
"பயன்படுத்தி இருக்கலாம் - '&'சை &amp ஆக விடுவி;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -363,16 +344,7 @@ msgstr ""
"'%-.*s'ஐ கூறிட முடியவில்லை,அதன் ஒரு எழுத்துக்குள் ஒரு தசமத்தை கொண்டிருக்க வேண்டும் "
"குறிப்பு (&#234; எடுத்துக்காட்டாக) - எனினும் தசமம் மிக பெரியதாக உள்ளது"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "எழுத்து குறிப்பு '%-.*s' ஒரு அனுமதிக்கப்பட்ட எழுத்தினை குறிமுறையாக்கவில்லை"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "வேற்றான வரியுரு குறிப்பு; &#454 ஆகிய இலக்கங்கள் சேர்ந்திருக் வேண்டும்;"
#: glib/gmarkup.c:685
#: 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 "
@ -382,32 +354,35 @@ msgstr ""
"ampersand character without intending to start an entity - escape ampersand "
"as &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "முடிவடையாத உள்ளீட்பு மேற்கோள்"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "முடிவடையாத வரியுரு மேற்கோள்"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "பிழையான UTF-8 குறியீடு செய்யப்பட்ட உரை - மிக நீண்ட உரை"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "பிழையான UTF-8 குறியீடு செய்யப்பட்ட உரை - துவங்கும் குறியல்ல"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "பிழையான UTF-8 குறியீடு செய்யப்பட்ட உரை - செல்லுபடியாகும் '%s' அல்ல"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "எழுத்து குறிப்பு '%-.*s' ஒரு அனுமதிக்கப்பட்ட எழுத்தினை குறிமுறையாக்கவில்லை"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"வெற்றா பிரதிநிதி '&;' கண்டது; சரியான பிரதிநிதிகள்: &amp; &quot; &lt; &qt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "பிரதிநிதியின் பெயர் '%s' தெரியாதது"
#: 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 &amp;"
msgstr ""
"பிரதிநிதி ';' உடன் முடிவடையவில்லை; நீங்கள் பிரதிநிதி ஒன்றை தொடங்க யோசிக்காமல் '&' "
"பயன்படுத்தி இருக்கலாம் - '&'சை &amp ஆக விடுவி;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "ஆவணம் ஓர் உறுப்புடன் (உதாரணம்: <book>) தொடங்க வேண்டும்"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -416,7 +391,7 @@ msgstr ""
"'<' வரியுருவை தொடர்ந்து '%s' வர முடியாது; அதைப் பயன்படுத்தி ஓர் உறுப்படியின் பெயரைத் "
"தொடங்க முடியாது"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -425,7 +400,7 @@ msgstr ""
"ஒற்றை வரியுரு '%s', '%s' உறுப்படி தொடங்கல் ஒட்டை ஓர் '>' வரியுரு முடிவு செய்யும் "
"என்று எதிர்பார்த்தது"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -433,7 +408,7 @@ msgstr ""
"'%s' ஓர் ஒற்றை வரியுரு, பண்பின் பெயர் '%s' பின் ('%s' உறுப்பின்) எதிர்பார்த்தது ஓர் '=' "
"வரியுரு"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -444,7 +419,7 @@ msgstr ""
"element '%s', or optionally an attribute; perhaps you used an invalid "
"character in an attribute name"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -453,7 +428,7 @@ msgstr ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"giving value for attribute '%s' of element '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -462,7 +437,7 @@ msgstr ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -471,25 +446,25 @@ msgstr ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "'%s' உறுப்பு மூடப்பட்டுல்லது, தற்பொது ஒரு உறுப்பும் திறந்து இல்லை"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "'%s' உறுப்பு மூடப்பட்டுல்லது, அனால் தற்பொது திறந்திறுக்கும் உறுப்பு '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "வெற்றான ஆவணம் அல்லது ஆவணத்தில் இறுப்பது அனைத்தும் வெண்வெளி"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "'<' பிறகு ஆவணம் திடீரென முடிவடைந்தது"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -498,7 +473,7 @@ msgstr ""
"உறுப்புகள் திறந்திறுக்கும்போது ஆவணம் திடீரென முடிவடைந்தது - கடைசியாகத் திறக்கப்பட்ட "
"உறுப்பு '%s'"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -507,19 +482,19 @@ msgstr ""
"ஆவணம் திடீரென முடிவடைந்தது, அடையாள ஒட்டு <%s/> முடிவில் ஓர் '}' இருக்கும் என "
"எதிர்பார்த்தது"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "உறுப்பு பெயர் உள்ளே ஆவணம் திடீரென முடிவடைந்தது"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "பண்பு பெயர் உள்ளே ஆவணம் திடீரென முடிவடைந்தது"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "உறுப்பு-தொடங்களின் அடையாள ஒட்டு உள்ளே ஆவணம் திடீரென முடிவடைந்தது"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -527,16 +502,16 @@ msgstr ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "பண்பு பெயர் உள்ளிறுக்கும் போது ஆவணம் திடீரென முடிவடைந்தது"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "'%s' என்னும் மூடு-அடையாள ஒட்டு உள்ளே ஆவணம் திடீரென முடிவடைந்தது"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "ஆவணம் திடீரென குறிப்புரையுல் அல்லது செயலாக்கம் ஆணையுல் முடிவடைந்தது"
@ -976,61 +951,61 @@ msgstr "உரையாடல் உள்ளீட்டில் தவறா
msgid "Character out of range for UTF-16"
msgstr "UTF-16 க்கு வரியுரு வீச்சு எல்லைக்கு வெளியே"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "ஓபயன்பாடு:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "உதவி விருப்பங்கள்:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "உதவி விருப்பங்களை காட்டு"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "அனைத்து உதவி விருப்பங்களை காட்டு"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "பயன்பாடு விருப்பங்கள்:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "'%s' க்கு %sன் இயல் எண் மதிப்பினை கூறிட முடியாது"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "'%s' க்கு %sன் இயல் எண் மதிப்பு வரையறையை தாண்டியுள்ளது"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "இரட்டை மதிப்பு '%s' ஐ %sக்கு கூறிட முடியாது"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "இரட்டை மதிப்பு '%s' %sக்கு வரையறையை தாண்டியுள்ளது"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "கூறிடும் போது பிழை: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr " %sக்கான விடுபட்ட மதிப்புரு"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "தெரியாத விருப்பம் %s"
@ -1150,8 +1125,8 @@ msgstr "%sக்கு மிகப்பெரிய எண்ணிக்க
msgid "Stream is already closed"
msgstr "ஸ்ட்ரீம் ஏற்கனவே மூடப்பட்டது"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "செயல்பாடு ரத்து செய்யப்பட்டது"
@ -1291,7 +1266,7 @@ msgstr "குப்பை ஆதரவு கிடையாது"
msgid "File names cannot contain '%c'"
msgstr "'%c' கோப்பின் பெயர்களை பெற்றிருக்கவில்லை"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "தொகுதி மவுண்டை செயல்படுத்தவில்லை"
@ -1312,14 +1287,6 @@ msgstr "கோப்பு எண்ணிடல் சிறந்த செய
msgid "File enumerator is already closed"
msgstr "கோப்பு எண் ஏற்கனவே மூடப்பட்டது"
#: gio/gfileicon.c:145
msgid "file"
msgstr "கோப்பு"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "கோப்பு சின்னத்தை கொண்டுள்ளது"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1728,55 +1695,11 @@ msgstr "வெளிப்பாடு ஸ்ட்ரீம் எழுது
msgid "Source stream is already closed"
msgstr "மூல ஸ்ட்ரீம் ஏற்கனவே மூடப்பட்டது"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "பெயர்"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "சின்னத்தின் பெயர்"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "பெயர்கள்"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "ஒரு அணி சின்னப்பெயர்களை கொண்டுள்ளது"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "முன்னிருப்பு ஃபால்பேக்குகளை பயன்படுத்து"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "பதிப்பு %d இன் GThemedIcon குறிமுறையாக்கத்திற்கு கையாள முடியாது"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "கோப்பு விளக்கி"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "கோப்பு விளக்கி வாசிக்கிறது"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "கோப்பு விரிவாளரை மூடு"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "ஸ்ட்ரீம் மூடப்படும் போது கோப்பு விளக்கியை மூட வேண்டுமா"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1793,16 +1716,12 @@ msgstr "unix ஐ மூடுவதில் பிழை: %s"
msgid "Filesystem root"
msgstr "கோப்பு முறைமை ரூட்"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "எழுத வேண்டிய கோப்பு விளக்கி"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "யுனிக்ஸில் எழுதும் போது பிழை: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "தொகுதி வெளியேற்றத்தை செயல்படுத்தவில்லை"
@ -1838,3 +1757,72 @@ msgstr "நீண்ட பட்டியலிடும் முறையை
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[FILE...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "'%s' வரியுரு பிரதிநிதியின் தொடக்கத்தில் வரக்கூடாது; & வரியுரு பிரதிநிதியைத் "
#~ "தொடங்கும்; இந்த & ஓர் பிரதிநிதியாக இருக்கக்கூடாது என்றால்; அதை &amp ஆக விடுவி;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "'%s' வரியுரு பிரதிநிதியின் பெயரில் பிழையானது"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "வேற்றான வரியுரு குறிப்பு; &#454 ஆகிய இலக்கங்கள் சேர்ந்திருக் வேண்டும்;"
#~ msgid "Unfinished entity reference"
#~ msgstr "முடிவடையாத உள்ளீட்பு மேற்கோள்"
#~ msgid "Unfinished character reference"
#~ msgstr "முடிவடையாத வரியுரு மேற்கோள்"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "பிழையான UTF-8 குறியீடு செய்யப்பட்ட உரை - மிக நீண்ட உரை"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "பிழையான UTF-8 குறியீடு செய்யப்பட்ட உரை - துவங்கும் குறியல்ல"
#~ msgid "file"
#~ msgstr "கோப்பு"
#~ msgid "The file containing the icon"
#~ msgstr "கோப்பு சின்னத்தை கொண்டுள்ளது"
#~ msgid "name"
#~ msgstr "பெயர்"
#~ msgid "The name of the icon"
#~ msgstr "சின்னத்தின் பெயர்"
#~ msgid "names"
#~ msgstr "பெயர்கள்"
#~ msgid "An array containing the icon names"
#~ msgstr "ஒரு அணி சின்னப்பெயர்களை கொண்டுள்ளது"
#~ msgid "use default fallbacks"
#~ msgstr "முன்னிருப்பு ஃபால்பேக்குகளை பயன்படுத்து"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgid "File descriptor"
#~ msgstr "கோப்பு விளக்கி"
#~ msgid "The file descriptor to read from"
#~ msgstr "கோப்பு விளக்கி வாசிக்கிறது"
#~ msgid "Close file descriptor"
#~ msgstr "கோப்பு விரிவாளரை மூடு"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "ஸ்ட்ரீம் மூடப்படும் போது கோப்பு விளக்கியை மூட வேண்டுமா"
#~ msgid "The file descriptor to write to"
#~ msgstr "எழுத வேண்டிய கோப்பு விளக்கி"

308
po/te.po
View File

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: te\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-03 14:24+0530\n"
"Last-Translator: Krishna Babu K <kkrothap@redhat.com>\n"
"Language-Team: Telugu <en@li.org>\n"
@ -305,50 +305,32 @@ msgstr "దస్త్రము '%s'ను తెరువుటలో వి
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "దస్త్రము '%s' మాప్‌చేయుటలో విఫలమైంది: mmap() విఫలమైంది: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "వరుస %d అక్షరము %d పై దోషము: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "చెల్లని UTF-8 యెన్కోడెడ్ పాఠ్యము - చెల్లునటువంటి '%s' కాదు"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "%d వరుసలో దోషం కలదు : %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr " ఖాశి వ్యష్టి '&;' చూడబడినది; వర్తించు వ్యష్టిలు: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
" వ్యష్టినామముతో ప్రారంభమగు అక్షరము '%s' నిస్సారము; వ్యష్టి & అక్షరముతో ప్రారంభమగును;వ్యష్టి "
"ప్రారంబమగును; ఒక వేశ ఆంపర్సండ్ ఊహించిన విధంగా వ్యష్టి కాకపోతే , ఎస్కేప్it as &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr " వ్యష్టినామంలో అక్షరము '%s' నిస్సారము "
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr " '%s' వ్యష్టి నామం తెలియదు "
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
" వ్యష్టి సెమికోలన్ తో పూర్తవలేదు; దాదాపుగా యాంపర్ సెండ్ ఉపయెగించవలెను అక్షరము దాదాపుగా -' ఎస్కేప్ "
"యంపర్ సెండ్ యాజ్ &యాంప్;' తో ప్రారంభమవలేదు. "
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -357,16 +339,7 @@ msgstr ""
"అక్షరములో అంకె కలిగియున్నందువలన '%-.*s', పార్సింగ్ విఫలమైనది.దాదాపుగా అంక్య భారీగా ఉన్నది -నివేదన "
"(ఉదాహరణకు : &#234; )"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "అక్షర నివేదన '%-.*s' అనుమతించబడిన అక్షరము ఎన్ కోడ్ అవ్వదు."
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr " ఖాళీ అక్షర నివేదన తప్పనిసరిగా &#454 ఈ సంఖ్యను కలుపుకొనవలెను"
#: glib/gmarkup.c:685
#: 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 "
@ -375,32 +348,34 @@ msgstr ""
"అక్షర నివేదన సెమికోలన్ తో ముగియలేదు; దాదాపుగా యిది ఉపయెగించండి యాంపర్ సెండ్ అక్షరం తో ప్రారంభమవరాదు - "
"ఎస్సేప్ యాంపర్ సెండ్ యాజ్ &యాంప్ "
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr " పూర్తికాని వ్యష్టినివెదన "
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr " అక్షర నివేదన పూర్తికాలేదు "
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "చెల్లని UTF-8 యెన్కోడెడ్ పాఠ్యము - పొడవైన అనుక్రమము"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "చెల్లని UTF-8 యెన్కోడెడ్ పాఠ్యము - ప్రారంభ అక్షరము కాదు"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "చెల్లని UTF-8 యెన్కోడెడ్ పాఠ్యము - చెల్లునటువంటి '%s' కాదు"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "అక్షర నివేదన '%-.*s' అనుమతించబడిన అక్షరము ఎన్ కోడ్ అవ్వదు."
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr " ఖాశి వ్యష్టి '&;' చూడబడినది; వర్తించు వ్యష్టిలు: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr " '%s' వ్యష్టి నామం తెలియదు "
#: 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 &amp;"
msgstr ""
" వ్యష్టి సెమికోలన్ తో పూర్తవలేదు; దాదాపుగా యాంపర్ సెండ్ ఉపయెగించవలెను అక్షరము దాదాపుగా -' ఎస్కేప్ "
"యంపర్ సెండ్ యాజ్ &యాంప్;' తో ప్రారంభమవలేదు. "
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "పత్రం తప్పనిసరిగా ఒక మూలకంతో ప్రారంభమవలెను (ఉదా. <బుక్>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -408,20 +383,20 @@ msgid ""
msgstr ""
" '<' తో ప్రారంభమగు '%s' అనునది సరరిఐన అక్షరం కాదు ; యిది మూలక నామంతో ప్రారంభమవలేదు. "
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr "బేసి అక్షరము '%s', ఖాళీ-మూలకపు టాగ్ '%s'ను ముగించుటకు '>' అనుకొనబడింది"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "బేసి అక్షరము '%s', ఊహించిన '=' తర్వాత '%s' ఆపాదించు నామం '%s' మూలకం "
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -431,7 +406,7 @@ msgstr ""
"'%s' ఊహించిన బేసి అక్షరము '>' లేక '/' చివరి ర్రంభ బొందు అక్షరము మాలకం %sలేక ఇచ్చాపూర్వక "
"ఆపాదన; దాదాపుగా ఆపాదన నామంలో అనర్హమైన అక్షరం ఉపమెగించినావు"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -439,14 +414,14 @@ msgid ""
msgstr ""
"బేసి అక్షరము '%s', ఊహించిన తెరచిన క్వోట్ చిహ్నం తరాత ఇచ్చిన ఆపాదన విలువ '%s' మూతకము '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, 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:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -455,26 +430,26 @@ msgstr ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr " '%s' మూలకం మూయబడినది, ప్రస్ధుతం ఏ మూలకము తెరచియుండలెదు "
# ../glib/gmarkup.c:1588
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "'%s' మూలకం మూయబడినది, కాని ప్రస్ధుతం తెరువ బడిన మూలకం '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr " పత్రం ఖాలిగా ఉన్నది లేక ఒక వైట్ స్పేస్ కలిగి యున్నది. "
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "పత్రం చివర కోణ కుండలీకరణము'<' వెంటనె అనవసరముగా ముగింపు అయినది"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -482,7 +457,7 @@ msgid ""
msgstr ""
"మూలకములు ఇంకను తెరచియున్న పత్రం ఊహించని విధంగా అంతమైనది- '%s' చివరిది మూలకము తెరచబడినది"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -490,19 +465,19 @@ msgid ""
msgstr ""
"పత్రం ఊహించని విధంగా అంతమైనది,మూసిన కోణకుండశికరణం అంతము చూచుటకు ఊహించబడినది బొందు <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr " పత్రం చివర ఊహించని మూలకనామం కలదు "
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "పత్రం చివర ఊహించని ఆపాదననామం కలదు"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "పత్రం చివర ఊహించని తెరచిన బొందు కలదు."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -510,16 +485,16 @@ msgstr ""
" '=' చిహ్నము తర్వాత యాట్రిబ్యూట్ నామమును అనుసరిస్తూ యాట్రిబ్యూట్ విలువలేకుండా పత్రము అనుకోకుండా "
"ముగించబడింది."
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr " లోపల ఆపాదన విలువ ఉన్నపుడు పాఠం ఊహించకుండా ముగింపు అయినది "
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr " '%s'మూలకము యోక్క మూసిన బొందు ఊహించకుండా పాఠం ముగింపు అయినది "
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr " లోపల వ్యాఖ్య క్రమగతి ఆదేశం ఉండగా ఊహించకుండా పాఠం ముగింపు అయినది "
@ -955,61 +930,61 @@ msgstr "పరివర్తన ఎగుబడి వరుస నిస్స
msgid "Character out of range for UTF-16"
msgstr "అక్షరము UTF-16 శ్రేణియందు లేదు"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "వినిమయం:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[ఇచ్చాపూర్వరకం...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "సహాయ ఇచ్ఛాపూర్వకాలు:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "సహాయ ఇచ్ఛాపూర్వకాలను చూపించుట"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "సహాయ ఇచ్ఛాపూర్వకాలన్నింటని చూపించుట"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "కార్యక్షేత్ర ఇచ్ఛాపూర్వకాలు :"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "పూర్ణాంకం విలువ %sను %s కొరకు పార్స్‍ చేయలేదు"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr " పూర్ణాంకం విలువ '%s' లో విస్రృతి లో లేని %s "
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "డబుల్ విలువ '%s'ను %sకొరకు పార్శ్‍‌చేయలేదు"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "డబుల్ విలువ '%s' అనునది %sకొరకు వ్యాప్తిలో లేదు"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "ఐచ్చికం పార్శింగ్‌లో దోషము %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s కొరకు తప్పిపోయిన ఆర్గుమెంట్"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "తెలియని ఇచ్ఛాపూర్వకము %s"
@ -1127,8 +1102,8 @@ msgstr "చాలపెద్ద లెక్కింపు విలువ %s
msgid "Stream is already closed"
msgstr "స్ట్రీమ్ యిప్పటికే మూయబడింది"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "ఆపరేషన్ రద్దైనది"
@ -1268,7 +1243,7 @@ msgstr "ట్రాష్ మద్దతీయలేదు"
msgid "File names cannot contain '%c'"
msgstr "దస్త్రము నామములు '%c'ని కలిగిలేవు"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "వాల్యూమ్ మౌంట్‌ను చేయలేకపోయింది"
@ -1289,14 +1264,6 @@ msgstr "దస్త్ర యెన్యూమరేటర్ యిప్ప
msgid "File enumerator is already closed"
msgstr "దస్త్ర యెన్యూమరేటర్ యిప్పటికే మూయబడివుంది"
#: gio/gfileicon.c:145
msgid "file"
msgstr "దస్త్రము"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "ప్రతిమను కలిగివున్న దస్త్రము"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1705,55 +1672,11 @@ msgstr "అవుట్‌పుట్ స్ట్రీమ్ వ్రాయ
msgid "Source stream is already closed"
msgstr "మూల స్ట్రీమ్ యిప్పటికే మూయబడివుంది"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "నామము"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "ప్రతిమయొక్క నామము"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "నామములు"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "ప్రతిమ నామములను కలిగివున్న ఎరే"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "అప్రమేయ ఫాల్‌బ్యాక్‌లను వుపయోగించుము"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"'-' అక్షరముల వద్ద నామము తరిగింపు ద్వారా కనుగొనబడిన అప్రమేయ ఫాల్‌బ్యాక్‌లను వుపయోగించాలా. ఒకటికన్నా "
"యెక్కువ నామములు యిస్తే మొదటిదాని తర్వాతివాటిని పట్టించుకోదు."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "GThemedIcon ఎన్కోడింగుయొక్క వర్షన్ %dను సంభాలించలేదు"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "దస్త్రము వివరణి"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "దీనినుండి చదువుటకు దస్త్రము వివరణి"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "దస్త్రము వివరణిని మూయుము"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "స్ట్రీమ్ మూయబడినప్పుడు దస్త్ర వివరణిను కూడా మూయాలా"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1770,16 +1693,12 @@ msgstr "యునిక్స్‍‌ను మూయుటలో దోషమ
msgid "Filesystem root"
msgstr "దస్త్రవ్యవస్థ రూట్"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "దీనికి వ్రాయుటకు దస్త్ర వివరణి"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "యునిక్స్‍‌కు వ్రాయుటలో దోషము: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "వాల్యూమ్ నిష్క్రమణిని అభివృద్ది చేయలేదు"
@ -1815,3 +1734,72 @@ msgstr "పొడవైన జాబితాకరణ రూపాన్ని
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[FILE...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ " వ్యష్టినామముతో ప్రారంభమగు అక్షరము '%s' నిస్సారము; వ్యష్టి & అక్షరముతో ప్రారంభమగును;వ్యష్టి "
#~ "ప్రారంబమగును; ఒక వేశ ఆంపర్సండ్ ఊహించిన విధంగా వ్యష్టి కాకపోతే , ఎస్కేప్it as &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr " వ్యష్టినామంలో అక్షరము '%s' నిస్సారము "
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr " ఖాళీ అక్షర నివేదన తప్పనిసరిగా &#454 ఈ సంఖ్యను కలుపుకొనవలెను"
#~ msgid "Unfinished entity reference"
#~ msgstr " పూర్తికాని వ్యష్టినివెదన "
#~ msgid "Unfinished character reference"
#~ msgstr " అక్షర నివేదన పూర్తికాలేదు "
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "చెల్లని UTF-8 యెన్కోడెడ్ పాఠ్యము - పొడవైన అనుక్రమము"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "చెల్లని UTF-8 యెన్కోడెడ్ పాఠ్యము - ప్రారంభ అక్షరము కాదు"
#~ msgid "file"
#~ msgstr "దస్త్రము"
#~ msgid "The file containing the icon"
#~ msgstr "ప్రతిమను కలిగివున్న దస్త్రము"
#~ msgid "name"
#~ msgstr "నామము"
#~ msgid "The name of the icon"
#~ msgstr "ప్రతిమయొక్క నామము"
#~ msgid "names"
#~ msgstr "నామములు"
#~ msgid "An array containing the icon names"
#~ msgstr "ప్రతిమ నామములను కలిగివున్న ఎరే"
#~ msgid "use default fallbacks"
#~ msgstr "అప్రమేయ ఫాల్‌బ్యాక్‌లను వుపయోగించుము"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "'-' అక్షరముల వద్ద నామము తరిగింపు ద్వారా కనుగొనబడిన అప్రమేయ ఫాల్‌బ్యాక్‌లను వుపయోగించాలా. ఒకటికన్నా "
#~ "యెక్కువ నామములు యిస్తే మొదటిదాని తర్వాతివాటిని పట్టించుకోదు."
#~ msgid "File descriptor"
#~ msgstr "దస్త్రము వివరణి"
#~ msgid "The file descriptor to read from"
#~ msgstr "దీనినుండి చదువుటకు దస్త్రము వివరణి"
#~ msgid "Close file descriptor"
#~ msgstr "దస్త్రము వివరణిని మూయుము"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "స్ట్రీమ్ మూయబడినప్పుడు దస్త్ర వివరణిను కూడా మూయాలా"
#~ msgid "The file descriptor to write to"
#~ msgstr "దీనికి వ్రాయుటకు దస్త్ర వివరణి"

308
po/th.po
View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib 2.14.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-02-20 12:07+0700\n"
"Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n"
"Language-Team: Thai <thai-l10n@googlegroups.com>\n"
@ -298,50 +298,32 @@ msgstr "เปิดแฟ้ม '%s' ไม่สำเร็จ: open() ล้
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "แม็ปแฟ้ม '%s' ไม่สำเร็จ: mmap() ล้มเหลว: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "มีข้อผิดพลาดที่บรรทัด %d อักขระที่ %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "ข้อความลงรหัส UTF-8 ไม่ถูกต้อง - ข้อความที่ผิด: '%s'"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "มีข้อผิดพลาดที่บรรทัด %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "พบเอนทิตี '&;' ซึ่งไม่ถูกต้อง ค่าที่ใช้ได้คือ: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"อักขระ '%s' ไม่สามารถใช้ขึ้นต้นชื่อเอนทิตีได้ อักขระ & ใช้เริ่มเอนทิตี ถ้าเครื่องหมาย ampersand "
"นี้ไม่ได้เจตนาให้เป็นเอนทิตี ต้องหลีกโดยแทนด้วย &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "อักขระ '%s' ใช้ในชื่อเอนทิตีไม่ได้"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "ไม่รู้จักเอนทิตีชื่อ '%s'"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"เอนทิตีไม่ได้ปิดด้วยอัฒภาค เป็นไปได้สูงที่คุณอาจใช้ ampersand โดยไม่ได้จงใจให้เริ่มเอนทิตี ถ้าใช่ "
"ก็จงหลีก ampersand โดยแทนด้วย &amp; เสีย"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -350,16 +332,7 @@ msgstr ""
"ไม่สามารถแจง '%-.*s' ซึ่งควรจะเป็นตัวเลขภายในตัวอ้างอิงอักขระ (เช่น &#234;) "
"เป็นไปได้ว่าตัวเลขอาจจะมากเกินไป"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "ตัวอ้างอิงอักขระ '%-.*s' ไม่ได้เข้ารหัสอักขระที่เป็นไปได้"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "ตัวอ้างอิงอักขระว่างเปล่า ควรจะมีตัวเลข เช่น &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -368,53 +341,55 @@ msgstr ""
"ตัวอ้างอิงอักขระไม่ได้ปิดด้วยอัฒภาค เป็นไปได้สูงที่คุณอาจใช้ ampersand โดยไม่ได้จงใจให้เริ่มเอนทิตี "
"ถ้าใช่ ก็จงหลีก ampersand โดยแทนด้วย &amp; เสีย"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "ตัวอ้างอิงเอนทิตีไม่สมบูรณ์"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "ตัวอ้างอิงอักขระไม่สมบูรณ์"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "ข้อความลงรหัส UTF-8 ไม่ถูกต้อง - ลำดับซ้อนเหลื่อมกัน"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "ข้อความลงรหัส UTF-8 ไม่ถูกต้อง - ไม่ได้เริ่มด้วยไบต์ที่เป็นต้นอักขระ"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "ข้อความลงรหัส UTF-8 ไม่ถูกต้อง - ข้อความที่ผิด: '%s'"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "ตัวอ้างอิงอักขระ '%-.*s' ไม่ได้เข้ารหัสอักขระที่เป็นไปได้"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "พบเอนทิตี '&;' ซึ่งไม่ถูกต้อง ค่าที่ใช้ได้คือ: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "ไม่รู้จักเอนทิตีชื่อ '%s'"
#: 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 &amp;"
msgstr ""
"เอนทิตีไม่ได้ปิดด้วยอัฒภาค เป็นไปได้สูงที่คุณอาจใช้ ampersand โดยไม่ได้จงใจให้เริ่มเอนทิตี ถ้าใช่ "
"ก็จงหลีก ampersand โดยแทนด้วย &amp; เสีย"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "เอกสารต้องเริ่มด้วยอิลิเมนต์ (เช่น <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "'%s' ไม่ใช่อักขระที่ใช้ตามหลัง '<' ได้ จึงไม่สามารถใช้ขึ้นต้นชื่ออิลิเมนต์ได้"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr "พบอักขระแปลกปลอม '%s' ในขณะที่มองหาอักขระ '>' ที่จะมาปิดแท็กอิลิเมนต์เปล่า '%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"พบอักขระแปลกปลอม '%s' ในขณะที่กำลังมองหา '=' หลังชื่อแอตทริบิวต์ '%s' ของอิลิเมนต์ '%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -424,7 +399,7 @@ msgstr ""
"พบอักขระแปลกปลอม '%s' ในขณะที่กำลังมองหา '>' หรือ '/' ที่จะมาปิดแท็กตั้งต้นของอิลิเมนต์ '%"
"s' หรือไม่ก็เป็นแอตทริบิวต์ เป็นไปได้ว่าคุณกำลังใช้อักขระที่ใช้ไม่ได้ในชื่อแอตทริบิวต์"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -433,80 +408,80 @@ msgstr ""
"พบอักขระแปลกปลอม '%s' ในขณะที่กำลังมองหาอัญประกาศเปิดหลัง '=' "
"ในการกำหนดค่าให้กับแอตทริบิวต์ '%s' ของอิลิเมนต์ '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, 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:1675
#: glib/gmarkup.c:1453
#, 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:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "พบการปิดอิลิเมนต์ '%s' แต่ไม่มีอิลิเมนต์ใดเปิดอยู่"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "พบการปิดอิลิเมนต์ '%s' แต่อิลิเมนต์ที่เปิดอยู่คือ '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "เอกสารว่างเปล่า หรือมีแต่อักขระช่องว่าง"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "เอกสารจบแบบผิดปกติหลังจากวงเล็บแหลม '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr "เอกสารจบแบบผิดปกติ โดยยังมีอิลิเมนต์เปิดอยู่ - '%s' คืออิลิเมนต์ที่เปิดล่าสุด"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr "เอกสารจบแบบผิดปกติ ในขณะที่กำลังมองหาวงเล็บแหลมที่จะมาปิดแท็ก <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "เอกสารจบแบบผิดปกติระหว่างกลางชื่ออิลิเมนต์"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "เอกสารจบแบบผิดปกติระหว่างกลางชื่อแอตทริบิวต์"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "เอกสารจบแบบผิดปกติระหว่างกลางแท็กเปิดอิลิเมนต์"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr "เอกสารจบแบบผิดปกติหลังจากเครื่องหมาย '=' หลังชื่อแอตทริบิวต์ โดยไม่มีค่าของแอตทริบิวต์"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "เอกสารจบแบบผิดปกติระหว่างกลางค่าแอตทริบิวต์"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "เอกสารจบแบบผิดปกติระหว่างกลางแท็กปิดสำหรับอิลิเมนต์ '%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "เอกสารจบแบบผิดปกติระหว่างกลางหมายเหตุหรือคำสั่งประมวลผล"
@ -942,61 +917,61 @@ msgstr "มีลำดับข้อมูลที่ไม่ถูกต้
msgid "Character out of range for UTF-16"
msgstr "อักขระอยู่นอกช่วงของ UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "วิธีใช้:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "ตัวเลือกแสดงวิธีใช้:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "แสดงวิธีใช้ตัวเลือกต่างๆ"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "แสดงวิธีใช้ตัวเลือกต่างๆ ทั้งหมด"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "ตัวเลือกของโปรแกรม:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "ไม่สามารถแจงค่าจำนวนเต็ม '%s' สำหรับ %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "ค่าจำนวนเต็ม '%s' สำหรับ %s ออกนอกช่วงที่กำหนด"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "ไม่สามารถแจงค่า double '%s' สำหรับ %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "ค่า double '%s' สำหรับ %s ออกนอกช่วงที่กำหนด"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "เกิดข้อผิดพลาดขณะแจงตัวเลือก: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "ขาดอาร์กิวเมนต์สำหรับ %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "ไม่รู้จักตัวเลือก %s"
@ -1113,8 +1088,8 @@ msgstr "มีการส่งค่า count ที่สูงเกิน
msgid "Stream is already closed"
msgstr "สตรีมถูกปิดไปแล้ว"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "การกระทำถูกยกเลิก"
@ -1254,7 +1229,7 @@ msgstr "ไม่รองรับการใช้ถังขยะ"
msgid "File names cannot contain '%c'"
msgstr "ชื่อแฟ้มจะมีอักขระ '%c' ไม่ได้"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "โวลุมไม่รองรับการเมานท์"
@ -1275,14 +1250,6 @@ msgstr "ตัวแจงนับแฟ้มมีการกระทำค
msgid "File enumerator is already closed"
msgstr "ตัวแจงนับแฟ้มถูกปิดไปแล้ว"
#: gio/gfileicon.c:145
msgid "file"
msgstr "แฟ้ม"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "แฟ้มที่เก็บไอคอน"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1691,55 +1658,11 @@ msgstr "สตรีมข้อมูลออกยังไม่รองร
msgid "Source stream is already closed"
msgstr "สตรีมต้นทางถูกปิดไปแล้ว"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "ชื่อ"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "ชื่อของไอคอน"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "รายชื่อ"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "แอร์เรย์เก็บรายชื่อของไอคอน"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "ใช้ fallback ปริยาย"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"กำหนดว่าจะใช้ fallback ปริยายซึ่งหาได้โดยตัดท้ายชื่อที่อักขระ '-' หรือไม่ ถ้ามีหลายชื่อ "
"จะใช้เพียงชื่อแรกเท่านั้น"
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "ไม่สามารถจัดการกับรหัสของ GThemedIcon รุ่น %d ได้"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "File descriptor"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "File descriptor ที่จะอ่าน"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "ปิด file descriptor"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "กำหนดว่าจะปิด file descriptor ด้วยหรือไม่ เมื่อปิดสตรีม"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1756,16 +1679,12 @@ msgstr "เกิดข้อผิดพลาดขณะปิดแฟ้ม
msgid "Filesystem root"
msgstr "รากระบบแฟ้ม"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "File descriptor ที่จะเขียน"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "เกิดข้อผิดพลาดขณะเขียนข้อมูลลงแฟ้มยูนิกซ์: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "โวลุมยังไม่รองรับการดันสื่อออก"
@ -1802,6 +1721,75 @@ msgstr "ใช้รูปแบบรายการแบบยาว"
msgid "[FILE...]"
msgstr "[FILE...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "อักขระ '%s' ไม่สามารถใช้ขึ้นต้นชื่อเอนทิตีได้ อักขระ & ใช้เริ่มเอนทิตี ถ้าเครื่องหมาย "
#~ "ampersand นี้ไม่ได้เจตนาให้เป็นเอนทิตี ต้องหลีกโดยแทนด้วย &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "อักขระ '%s' ใช้ในชื่อเอนทิตีไม่ได้"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "ตัวอ้างอิงอักขระว่างเปล่า ควรจะมีตัวเลข เช่น &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "ตัวอ้างอิงเอนทิตีไม่สมบูรณ์"
#~ msgid "Unfinished character reference"
#~ msgstr "ตัวอ้างอิงอักขระไม่สมบูรณ์"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "ข้อความลงรหัส UTF-8 ไม่ถูกต้อง - ลำดับซ้อนเหลื่อมกัน"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "ข้อความลงรหัส UTF-8 ไม่ถูกต้อง - ไม่ได้เริ่มด้วยไบต์ที่เป็นต้นอักขระ"
#~ msgid "file"
#~ msgstr "แฟ้ม"
#~ msgid "The file containing the icon"
#~ msgstr "แฟ้มที่เก็บไอคอน"
#~ msgid "name"
#~ msgstr "ชื่อ"
#~ msgid "The name of the icon"
#~ msgstr "ชื่อของไอคอน"
#~ msgid "names"
#~ msgstr "รายชื่อ"
#~ msgid "An array containing the icon names"
#~ msgstr "แอร์เรย์เก็บรายชื่อของไอคอน"
#~ msgid "use default fallbacks"
#~ msgstr "ใช้ fallback ปริยาย"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "กำหนดว่าจะใช้ fallback ปริยายซึ่งหาได้โดยตัดท้ายชื่อที่อักขระ '-' หรือไม่ ถ้ามีหลายชื่อ "
#~ "จะใช้เพียงชื่อแรกเท่านั้น"
#~ msgid "File descriptor"
#~ msgstr "File descriptor"
#~ msgid "The file descriptor to read from"
#~ msgstr "File descriptor ที่จะอ่าน"
#~ msgid "Close file descriptor"
#~ msgstr "ปิด file descriptor"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "กำหนดว่าจะปิด file descriptor ด้วยหรือไม่ เมื่อปิดสตรีม"
#~ msgid "The file descriptor to write to"
#~ msgstr "File descriptor ที่จะเขียน"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u ไบต์"

292
po/tl.po
View File

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -306,54 +306,32 @@ msgid "Failed to map file '%s': mmap() failed: %s"
msgstr ""
"Bigo ang pagreserba ng memory para sa talaksang '%s': bigo ang mmap(): %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Error sa linya %d char %d: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Hindi tanggap na tekstong encoded ng UTF-8"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Error sa linya %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Walang laman na entity '&' ay nakita; tanggap na mga entity ay: &amp; &quot; "
"&lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Hindi tanggap ang karakter '%s' sa umpisa ng pangalan ng entity; ang & "
"karakter ang nag-uumpisa ng entity; kung ang ampersand ay hindi dapat maging "
"entity, itaglay ito bilang &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Hindi tanggap ang karakter '%s' sa loob ng pangalan ng entity"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Pangalan ng entity '%s' ay hindi kilala"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Hindi nagtapos ang entity sa puntukoma; malamang ay gumamit kayo ng "
"ampersand karakter na hindi sinasadyang mag-umpisa ng entity - itaglay ang "
"ampersand ng &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -362,19 +340,7 @@ msgstr ""
"Sawi sa pag-parse ng '%-.*s', na dapat ay numero sa loob ng reference sa "
"karakter (halimbawa ay &#234;) - maaaring ang numero ay sobra ang laki"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
"Reference sa karakter '%-.*s' ay hindi nag-encode ng tanggap na karakter"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr ""
"Walang laman na reference sa karakter; dapat may kasamang numero tulad ng "
"&#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -384,34 +350,38 @@ msgstr ""
"gumamit kayo ng ampersand na karakter na hindi sinadyang mag-umpisa ng "
"entity - itaglay ang ampersand bilang &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Hindi tapos na reference sa entity"
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
"Reference sa karakter '%-.*s' ay hindi nag-encode ng tanggap na karakter"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Hindi tapos na reference sa karakter"
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Walang laman na entity '&' ay nakita; tanggap na mga entity ay: &amp; &quot; "
"&lt; &gt; &apos;"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Hindi tanggap na tekstong encoded ng UTF-8"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Hindi tanggap na tekstong encoded ng UTF-8"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Hindi tanggap na tekstong encoded ng UTF-8"
msgid "Entity name '%-.*s' is not known"
msgstr "Pangalan ng entity '%s' ay hindi kilala"
#: glib/gmarkup.c:1168
#: 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 &amp;"
msgstr ""
"Hindi nagtapos ang entity sa puntukoma; malamang ay gumamit kayo ng "
"ampersand karakter na hindi sinasadyang mag-umpisa ng entity - itaglay ang "
"ampersand ng &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Kailangang mag-umpisa ang dokumento ng elemento (hal. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -420,7 +390,7 @@ msgstr ""
"'%s' ay hindi tanggap na karakter matapos ng '<' na karakter; hindi ito "
"maaaring mag-umpisa ng pangalang elemento"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -429,7 +399,7 @@ msgstr ""
"Kakaibang karakter '%s', inasahan na '>' karakter ang pambungad ng pambukas "
"na tag ng elementong '%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -437,7 +407,7 @@ msgstr ""
"Kakaibang karakter '%s', inasahan na '=' matapos ng pangalang attribute '%s' "
"ng elementong '%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -448,7 +418,7 @@ msgstr ""
"pangbukas na tag ng elementong '%s' o attribute; maaaring gumamit kayo ng "
"hindi tanggap na karakter sa pangalang attribute"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -458,7 +428,7 @@ msgstr ""
"equals sign kapag nagbigay ng halaga para sa attribute '%s' ng elementong '%"
"s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -467,7 +437,7 @@ msgstr ""
"Hindi tanggap na karakter ang '%s' matapos ng mga karakter na '</'; Ang '%s' "
"ay hindi maaaring umpisa ng pangalang elemento"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -476,29 +446,29 @@ msgstr ""
"Hindi tanggap na karakter ang '%s' matapos ang pangsara ng pangalang "
"elemento '%s'; ang tinatanggap na karakter ay '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Sinarhan ang elementong '%s', walang bukas na elemento."
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
"Sinarhan ang elementong '%s', ngunit ang kasalukuyang elementong bukas ay '%"
"s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Walang laman ang dokumento o naglalaman lamang ito ng puwang"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Nagwakas ng hindi inaasahan ang dokumento matapos lamang ng pangbukas na "
"angle bracket '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -507,7 +477,7 @@ msgstr ""
"Nagwakas ng hindi inaasahan ang dokumento na may mga bukas na elemento - '%"
"s' ay ang huling elementong binuksan"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -516,23 +486,23 @@ msgstr ""
"Nagwakas ng hindi inaasahan ang dokumento, inasahan na makita ang angle "
"bracket na pang-sara ng tag <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr ""
"Nagwakas ng hindi inaasahan ang dokumento sa loob ng pangalan ng elemento"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
"Nagwakas ng hindi inaasahan ang dokumento sa loob ng pangalan ng attribute"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"Nagwakas ng hindi inaasahan ang dokumento sa loob ng pagbukas na tag ng "
"elemento."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -540,20 +510,20 @@ msgstr ""
"Nagwakas ng hindi inaasahan ang dokumento matapos ang equal sign na sumunod "
"sa pangalan ng attribute; walang halaga ang attribute"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
"Nagwakas ng hindi inaasahan ang dokumento habang nasa loob ng halagang "
"attribute"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Nagwakas ang dokumento ng hindi inaasahan sa loob ng tag ng pagsara para sa "
"elementong '%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Nagwakas ang dokumento ng hindi inaasahan sa loob ng komento o utos ng "
@ -1004,61 +974,61 @@ msgstr "Hindi tanggap na sequence sa conversion input"
msgid "Character out of range for UTF-16"
msgstr "Character wala sa sakop ng UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Pag-gamit:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Option ng Tulong:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Ipakita ang option ng tulong"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Ipakita ang option ng tulong"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Option ng Aplikasyon:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Hindi mai-parse ang halagang integer '%s' para sa %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Halagang integer '%s' para sa %s ay wala sa sakop"
#: glib/goption.c:885
#: glib/goption.c:994
#, fuzzy, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Hindi mai-parse ang halagang integer '%s' para sa %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, fuzzy, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Halagang integer '%s' para sa %s ay wala sa sakop"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, fuzzy, c-format
msgid "Error parsing option %s"
msgstr "Error habang nagco-convert: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Kulang na argumento para sa %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Hindi kilalang option %s"
@ -1183,8 +1153,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1327,7 +1297,7 @@ msgstr "Hindi suportado ang mga symbolic link"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1348,15 +1318,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Ang hostname ng URI '%s' ay hindi tanggap"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1770,55 +1731,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "Ang hostname ng URI '%s' ay hindi tanggap"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Error sa pagbasa ng talaksang '%s': %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1835,16 +1752,12 @@ msgstr "Error sa linya %d: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Error habang nagco-convert: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1883,6 +1796,49 @@ msgstr ""
msgid "[FILE...]"
msgstr "[OPTION...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Hindi tanggap ang karakter '%s' sa umpisa ng pangalan ng entity; ang & "
#~ "karakter ang nag-uumpisa ng entity; kung ang ampersand ay hindi dapat "
#~ "maging entity, itaglay ito bilang &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Hindi tanggap ang karakter '%s' sa loob ng pangalan ng entity"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr ""
#~ "Walang laman na reference sa karakter; dapat may kasamang numero tulad ng "
#~ "&#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Hindi tapos na reference sa entity"
#~ msgid "Unfinished character reference"
#~ msgstr "Hindi tapos na reference sa karakter"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Hindi tanggap na tekstong encoded ng UTF-8"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Hindi tanggap na tekstong encoded ng UTF-8"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Ang hostname ng URI '%s' ay hindi tanggap"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "Ang hostname ng URI '%s' ay hindi tanggap"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Error sa pagbasa ng talaksang '%s': %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Error habang nagco-convert: %s"

316
po/tr.po
View File

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-02-21 15:53+0200\n"
"Last-Translator: Baris Cicek <baris@teamforce.name.tr>\n"
"Language-Team: Turkish <gnome-turk@gnome.org>\n"
@ -303,53 +303,32 @@ msgstr "'%s' dosyasıılamadı: open() başarısızlığı: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' için eşlem oluşturulamadı: mmap() başarısızlığı: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Satır %d karakter %d hatalı: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Geçersiz UTF-8 kodlanmış metin - geçersiz '%s'"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Satır %d hata içeriyor: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Boş özvarlık '&;' görüldü; geçerli öğeler: &amp; &quot; &lt; &qt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Özvarlık isminin başındaki karakter '%s' geçerli değil; & karakteri bir "
"özvarlığı başlatır; eger bu & işareti bir özvarlık değilse, &amp; olarak "
"kullanabilirsiniz"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Karakter '%s' bir özvarlık isminin içinde geçerli değildir"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Özvarlık ismi '%s' bilinmiyor"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Özvarlık noktalı virgül ile bitmiyor; büyük ihtimalle bir özvarlık başlatmak "
"istemeksizin & karakteri kullandınız - & işaretini &amp; olarak "
"kullanabilirsiniz"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -358,16 +337,7 @@ msgstr ""
"Karakter referansı içinde bir rakam olması gereken '%-.*s' ayrıştırılamadı, "
"(örneğin; &#234;) - rakam çok büyük olabilir"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Karakter referansı '%-.*s' izin verilen karakteri kodlamıyor"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Boş karakter referansı; &#454; gibi bir rakam içermelidir"
#: glib/gmarkup.c:685
#: 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,32 +347,36 @@ msgstr ""
"başlatmak istemeksizin & karakteri kullandınız - & işaretini &amp; olarak "
"kullanabilirsiniz"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Tamamlanmamış özvarlık referansı"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Tamamlanmamış karakter referansı"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Geçersiz UTF-8 kodlanmış metin - çok uzun dizi"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Geçersiz UTF-8 kodlanmış metin - başlangıç karakteri yok"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Geçersiz UTF-8 kodlanmış metin - geçersiz '%s'"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Karakter referansı '%-.*s' izin verilen karakteri kodlamıyor"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Boş özvarlık '&;' görüldü; geçerli öğeler: &amp; &quot; &lt; &qt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Özvarlık ismi '%s' bilinmiyor"
#: 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 &amp;"
msgstr ""
"Özvarlık noktalı virgül ile bitmiyor; büyük ihtimalle bir özvarlık başlatmak "
"istemeksizin & karakteri kullandınız - & işaretini &amp; olarak "
"kullanabilirsiniz"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Belge bir öğe ile başlamalı (örneğin <kitap>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -411,7 +385,7 @@ msgstr ""
"'<' karakterinden sonra gelen '%s' geçerli bir karakter değil; bir öğe adı "
"başlatmamalı"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -419,7 +393,7 @@ msgid ""
msgstr ""
"Tuhaf karakter '%s', boş öğe '%s' etiketinin sonunda '>' karakteri bekleniyor"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -427,7 +401,7 @@ msgstr ""
"Tuhaf karakter '%1$s', '%3$s' öğesinin '%2$s' özniteliğinin sonunda '=' "
"karakteri bekleniyor"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -438,7 +412,7 @@ msgstr ""
"veya bir öznitelik bekleniyor; öznitelik isminde geçersiz bir karakter "
"kullanmış olabilirsiniz"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -447,7 +421,7 @@ msgstr ""
"Tuhaf karakter '%s', '%s' özniteliğini '%s' öğesinde değiştirmek için "
"eşittir işaretinden sonra tırnak işareti bekleniyor"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -456,7 +430,7 @@ msgstr ""
"'</' karakterlerini takip eden '%s' geçerli bir karakter değildir; öğe ismi "
"'%s' ile başlamamalı"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -465,27 +439,27 @@ msgstr ""
"'%s', kapalı öğe ismi '%s' ardından gelebilecek bir karakter değil; izin "
"verilen karakter ise '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "'%s' öğesi kapatılmış, hiç bir öğe açık değil"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "'%s' öğesi kapatılmış, fakat şu an açık öğe '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Belge boş veya sadece boşluk karakteri içeriyor"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Belge açık açı parantezi '<' işaretinden hemen sonra beklenmedik bir şekilde "
"bitti"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -494,7 +468,7 @@ msgstr ""
"Belge öğeleri hala açıkken beklenmedik bir şekilde bitti - son açılan öğe: '%"
"s'"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -503,19 +477,19 @@ msgstr ""
"Belge beklenmedik bir şekilde bitti, etiketi bitiren kapalıı parantezi "
"ile biten <%s/> beklendi"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Belge bir öğe isminin içinde beklenmedik bir şekilde bitti"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Belge bir öznitelik ismi içinde beklenmedik bir şekilde bitti"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Belge bir öğe-açma etiketi içinde beklenmedik bir şekilde bitti."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -523,17 +497,17 @@ msgstr ""
"Belge öznitelik adını takip eden eşittir işaretinden sonra beklenmedik bir "
"şekilde bitti; öznitelik değeri yok"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Belge bir öznitelik değeri içinde iken beklenmedik bir şekilde bitti"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Belge, '%s' öğesinin kapatma etiketi içinde beklenmedik bir şekilde bitti"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Belge bir yorum veya işlem talimatı içindeyken beklenmedik bir şekilde bitti"
@ -976,61 +950,61 @@ msgstr "Dönüşüm girdisi içinde geçersiz dizi"
msgid "Character out of range for UTF-16"
msgstr "Karakter UTF-16 sınırlarının dışında"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Kullanım:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[SEÇENEK...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Yardım Seçenekleri:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Yardım seçeneklerini göster"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Tüm yardım seçeneklerini göster"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Uygulama Seçenekleri:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "%2$s için tamsayı değeri '%1$s' ayrıştırılamıyor"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "%2$s için tamsayı değeri '%1$s' aralık dışında"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "'%2$s' için double değeri '%1$s' ayrıştırılamıyor"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "%2$s için double değeri '%1$s' aralık dışında"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "%s seçeneği işlenirken hata"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s için parametre eksik"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Bilinmeyen seçenek %s"
@ -1150,8 +1124,8 @@ msgstr "%s için çok büyük sayaç değeri geçildi"
msgid "Stream is already closed"
msgstr "Akış zaten kapalı"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "İşlem iptal edildi"
@ -1291,7 +1265,7 @@ msgstr "Çöp desteklenmiyor"
msgid "File names cannot contain '%c'"
msgstr "Dosy adları '%c' içeremez"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "sistem bağlama uygulamıyor"
@ -1312,14 +1286,6 @@ msgstr "Dosya numaralandırıcı sıradışı işleme sahip"
msgid "File enumerator is already closed"
msgstr "Dosya numaralandırıcı zaten kapalı"
#: gio/gfileicon.c:145
msgid "file"
msgstr "dosya"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "Simgeyi içeren dosya"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1728,56 +1694,11 @@ msgstr "Çıktı akışı write uygulamıyor"
msgid "Source stream is already closed"
msgstr "Kaynak akışı zaten kapalı"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "isim"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Simgenin ismi"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "isimler"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Simgenin isimlerini içeren dizi"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "ötanımlı son çözümleri kullan"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"İsmi '-' karakterleri ile kısaltarak bulunan son çözümlerin kullanılması. "
"Eğer birden daha fazla isim verilmişse birincisinden sonraki isimleri yok "
"sayar."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "GThemedIcon kodlaması %d sürümü işlenemiyor"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Dosya tanımlayıcısı"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "Okunacak dosya tanımlayıcısı"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Dosya tanımlayıcısını kapat"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "Akış kapatıldığı zaman dosya tanımlayıcısının kapatılması"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1794,16 +1715,12 @@ msgstr "Unix kapatılırken hata: %s"
msgid "Filesystem root"
msgstr "Dosya sistemi kök dizini"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "Yazılacak dosya tanımlayıcısı"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Unix'e yazılırken hata: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "volume eject uygulamıyor"
@ -1840,6 +1757,77 @@ msgstr "uzun listeleme biçimini kullan"
msgid "[FILE...]"
msgstr "[DOSYA...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Özvarlık isminin başındaki karakter '%s' geçerli değil; & karakteri bir "
#~ "özvarlığı başlatır; eger bu & işareti bir özvarlık değilse, &amp; olarak "
#~ "kullanabilirsiniz"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Karakter '%s' bir özvarlık isminin içinde geçerli değildir"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Boş karakter referansı; &#454; gibi bir rakam içermelidir"
#~ msgid "Unfinished entity reference"
#~ msgstr "Tamamlanmamış özvarlık referansı"
#~ msgid "Unfinished character reference"
#~ msgstr "Tamamlanmamış karakter referansı"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Geçersiz UTF-8 kodlanmış metin - çok uzun dizi"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Geçersiz UTF-8 kodlanmış metin - başlangıç karakteri yok"
#~ msgid "file"
#~ msgstr "dosya"
#~ msgid "The file containing the icon"
#~ msgstr "Simgeyi içeren dosya"
#~ msgid "name"
#~ msgstr "isim"
#~ msgid "The name of the icon"
#~ msgstr "Simgenin ismi"
#~ msgid "names"
#~ msgstr "isimler"
#~ msgid "An array containing the icon names"
#~ msgstr "Simgenin isimlerini içeren dizi"
#~ msgid "use default fallbacks"
#~ msgstr "ötanımlı son çözümleri kullan"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "İsmi '-' karakterleri ile kısaltarak bulunan son çözümlerin kullanılması. "
#~ "Eğer birden daha fazla isim verilmişse birincisinden sonraki isimleri yok "
#~ "sayar."
#~ msgid "File descriptor"
#~ msgstr "Dosya tanımlayıcısı"
#~ msgid "The file descriptor to read from"
#~ msgstr "Okunacak dosya tanımlayıcısı"
#~ msgid "Close file descriptor"
#~ msgstr "Dosya tanımlayıcısını kapat"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "Akış kapatıldığı zaman dosya tanımlayıcısının kapatılması"
#~ msgid "The file descriptor to write to"
#~ msgstr "Yazılacak dosya tanımlayıcısı"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u bayt"

248
po/tt.po
View File

@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libgnome\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -294,116 +294,91 @@ msgstr "'%s' biremen açıp bulmadı: open() uzmadı: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr ""
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "%d. yulnıñ %d. bilgedä xata: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Yazmanıñ UTF-8 bilgelämäse yaraqsız"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "%d. yulda xata: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr ""
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr ""
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (&#234; for example) - perhaps the digit is too large"
msgstr ""
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr ""
#: glib/gmarkup.c:685
#: 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 &amp;"
msgstr ""
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Yazmanıñ UTF-8 bilgelämäse yaraqsız"
#: glib/gmarkup.c:662
#, c-format
msgid "Entity name '%-.*s' is not known"
msgstr ""
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Yazmanıñ UTF-8 bilgelämäse yaraqsız"
#: 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 &amp;"
msgstr ""
#: glib/gmarkup.c:1130
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Yazmanıñ UTF-8 bilgelämäse yaraqsız"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr ""
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr ""
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr ""
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -411,87 +386,87 @@ msgid ""
"character in an attribute name"
msgstr ""
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, 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 ""
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
msgstr ""
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
msgstr ""
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "İstälek eçtälege yä buş, yä buşlıq bilgelärennän genä tora"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr ""
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr ""
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr ""
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr ""
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
@ -926,61 +901,61 @@ msgstr ""
msgid "Character out of range for UTF-16"
msgstr "UTF-16 çigennän çıqqan bilge"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Totılu:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[KÖYLÄMÄ...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Yärdäm Köylämäse:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Yärdäm köylämäsen kürsätü"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Yärdäm köylämäsen kürsätü"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Yazılım Köylämäläre:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr ""
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "%2$s öçen '%1$s' digän tulısan bäyäse çiktän uzdı"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
#: glib/goption.c:893
#: glib/goption.c:1002
#, fuzzy, c-format
msgid "Double value '%s' for %s out of range"
msgstr "%2$s öçen '%1$s' digän tulısan bäyäse çiktän uzdı"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, fuzzy, c-format
msgid "Error parsing option %s"
msgstr "Äyländergändä xata çıqtı: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "%s öçen köylämä birelmäde"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Bilgesez %s atlı köylämä"
@ -1097,8 +1072,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1239,7 +1214,7 @@ msgstr ""
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1260,15 +1235,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "'%s' digän URI'nıñ host adı yaraqsız"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1680,55 +1646,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "'%s' digän URI'nıñ host adı yaraqsız"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "'%s' biremen uqığanda xata: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1745,16 +1667,12 @@ msgstr "%d. yulda xata: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Äyländergändä xata çıqtı: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1792,6 +1710,26 @@ msgstr ""
msgid "[FILE...]"
msgstr "[KÖYLÄMÄ...]"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Yazmanıñ UTF-8 bilgelämäse yaraqsız"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Yazmanıñ UTF-8 bilgelämäse yaraqsız"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "'%s' digän URI'nıñ host adı yaraqsız"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "'%s' digän URI'nıñ host adı yaraqsız"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "'%s' biremen uqığanda xata: %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Äyländergändä xata çıqtı: %s"

318
po/uk.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2008-11-13 11:56+0300\n"
"Last-Translator: Maxim Dziumanenko <dziumanenko@gmail.com>\n"
"Language-Team: Ukrainian <uk@li.org>\n"
@ -304,53 +304,34 @@ msgstr "Помилка відкривання файлу \"%s\": помилка
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Помилка створення карти файлу \"%s\": помилка mmap(): %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Помилка в рядку %d на символі %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr ""
"Текст закодований як UTF-8 неприпустимим способом - некоректна послідовність "
"'%s'"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Помилка в рядку %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Виявлено порожній предикат \"&;\"; допустимими предикатами є: &amp; &quot; "
"&lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Предикат не може починатись з символу \"%s\", він починається з символу \"&"
"\"; якщо цей символ вживається не для позначення початку предикату, то "
"повинен екрануватись як символ &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Символ \"%s\" не допускається в назві предикату"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Назва предикату \"%s\" невідома"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Предикат не закінчується крапкою з комою; очевидно, що символ & було "
"використано не для позначення початку предикату екрануйте його як &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -359,16 +340,7 @@ msgstr ""
"Помилка аналізу '%-.*s', де має бути число у символьному посиланні "
"(наприклад, &#234), можливо, число надто велике"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Посилання на символ \"%-.*s\" не визначає дозволений символ"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Порожнє посилання на символ, воно має включати число, наприклад &#454;"
#: glib/gmarkup.c:685
#: 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 +349,36 @@ msgstr ""
"Посилання на символ не закінчується крапкою з комою, схоже символ \"&\" було "
"використано не для позначення початку предикату екрануйте його як &amp;."
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Незавершене посилання на предикат"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Незавершене посилання на символ"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr ""
"Текст закодований як UTF-8 неприпустимим способом - надто довга послідовність"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr ""
"Текст закодований як UTF-8 неприпустимим способом - некоректний початок "
"символу"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr ""
"Текст закодований як UTF-8 неприпустимим способом - некоректна послідовність "
"'%s'"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Посилання на символ \"%-.*s\" не визначає дозволений символ"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Виявлено порожній предикат \"&;\"; допустимими предикатами є: &amp; &quot; "
"&lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Назва предикату \"%s\" невідома"
#: 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 &amp;"
msgstr ""
"Предикат не закінчується крапкою з комою; очевидно, що символ & було "
"використано не для позначення початку предикату екрануйте його як &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Документ має починатися з елемента (наприклад, <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -416,7 +387,7 @@ msgstr ""
"Символ \"%s\" не дозволяється вживати після символу \"<\", він не може "
"починати назву елемента"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -425,7 +396,7 @@ msgstr ""
"Зайвий символ \"%s\", очікувався символ \">\" для закриття тегу порожнього "
"елементу \"%s\""
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -433,7 +404,7 @@ msgstr ""
"Зайвий символ \"%s\", очікувався символ \"=\" після назви ознаки \"%s\" "
"елемента \"%s\""
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -444,7 +415,7 @@ msgstr ""
"початкового тегу елементу \"%s\", чи додаткова ознака; можливо, було "
"використано неприпустимий символ в назві ознаки"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -453,7 +424,7 @@ msgstr ""
"Зайвий символ \"%s\", очікувались відкриваючі лапки після знаку рівності на "
"присвоєнні значення ознаці \"%s\" елементу \"%s\""
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -462,7 +433,7 @@ msgstr ""
"Символ \"%s\" неприпустимий після символів \"</\"; символ \"%s\" не може "
"починати назву елементу"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -471,26 +442,26 @@ msgstr ""
"Символ \"%s\" неприпустимий на закритті назви елемента \"%s\"; припустимим "
"символом є \">\""
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Було закрито не відкритий елемент \"%s\""
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Було закрито елемент \"%s\", але зараз відрито елемент \"%s\""
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Документ порожній чи містить лише пропуски"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Документ раптово закінчився відразу після початкової кутової дужки \"<\""
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -499,7 +470,7 @@ msgstr ""
"Документ раптово закінчився, коли деякі елементи ще були відкритими \"%s\" "
"був останнім відкритим елементом"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -508,19 +479,19 @@ msgstr ""
"Документ раптово закінчився, очікувалась кінцева кутова дужка для закриття "
"тегу <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Документ раптово закінчився посеред назви елемента"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Документ раптово закінчився посеред назви ознаки"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Документ раптово закінчився у середині тегу, що відкривав елемент"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -528,17 +499,17 @@ msgstr ""
"Документ раптово закінчився після знака рівності, що йшов за назвою ознаки; "
"значення ознаки не вказано"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Документ раптово закінчився посеред значення ознаки"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Документ раптово закінчився у середині тегу, що закривав елемент \"%s\""
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Документ раптово закінчився у середині коментарю чи інструкції обробки"
@ -987,61 +958,61 @@ msgstr "Неправильна послідовність у перетворю
msgid "Character out of range for UTF-16"
msgstr "Символ не входить в набір UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Використання:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[ПАРАМЕТР...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Параметри довідки:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Показати параметри довідки"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Показати усі параметри довідки"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Параметри програми:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Не вдається розібрати числове ціле значення '%s' для %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Числове ціле значення '%s' для %s поза межами діапазону"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Не вдається розібрати числове значення подвійної точності '%s' для %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Числове значення подвійної точності '%s' для %s поза межами діапазону"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Помилка розбору параметра %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Відсутній аргумент %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Невідомий параметр %s"
@ -1164,8 +1135,8 @@ msgstr "До %s передано надто велике значення ліч
msgid "Stream is already closed"
msgstr "Потік вже закрито"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Операцію скасовано"
@ -1306,7 +1277,7 @@ msgstr "Смітник не підтримується"
msgid "File names cannot contain '%c'"
msgstr "назви файлів не можуть містити символ '%c'"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "том не підтримує операцію монтування"
@ -1327,14 +1298,6 @@ msgstr "Лічильник файлів має невиконані операц
msgid "File enumerator is already closed"
msgstr "Лічильник файлів вже закритий"
#: gio/gfileicon.c:145
msgid "file"
msgstr "файл"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "Файл, що містить значок"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1748,57 +1711,11 @@ msgstr "У потоці виводу не реалізовано операці
msgid "Source stream is already closed"
msgstr "Вхідний потік вже закритий"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "назва"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Назва значка"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "назви"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Масив, що містить назви значків"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "використовувати резервні типові значення"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Чи використовувати резервні типові значення, які знайдені скороченням назви "
"на символах '-'. Ігноруються всі назви після першої, якщо вказано декілька "
"назв."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Версія %d кодування GThemedIcon не підтримується"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Помилка отримання інформації для дескриптору файлу: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1815,16 +1732,12 @@ msgstr "Помилка при закриванні unix-сокету: %s"
msgid "Filesystem root"
msgstr "Корінь файлової системи"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Помилка при записі до unix-сокету: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "том не підтримує операцію витягування носія"
@ -1860,3 +1773,68 @@ msgstr "використовувати довгий формат списку"
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[ФАЙЛ...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Предикат не може починатись з символу \"%s\", він починається з символу "
#~ "\"&\"; якщо цей символ вживається не для позначення початку предикату, "
#~ "то повинен екрануватись як символ &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Символ \"%s\" не допускається в назві предикату"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr ""
#~ "Порожнє посилання на символ, воно має включати число, наприклад &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Незавершене посилання на предикат"
#~ msgid "Unfinished character reference"
#~ msgstr "Незавершене посилання на символ"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr ""
#~ "Текст закодований як UTF-8 неприпустимим способом - надто довга "
#~ "послідовність"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr ""
#~ "Текст закодований як UTF-8 неприпустимим способом - некоректний початок "
#~ "символу"
#~ msgid "file"
#~ msgstr "файл"
#~ msgid "The file containing the icon"
#~ msgstr "Файл, що містить значок"
#~ msgid "name"
#~ msgstr "назва"
#~ msgid "The name of the icon"
#~ msgstr "Назва значка"
#~ msgid "names"
#~ msgstr "назви"
#~ msgid "An array containing the icon names"
#~ msgstr "Масив, що містить назви значків"
#~ msgid "use default fallbacks"
#~ msgstr "використовувати резервні типові значення"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Чи використовувати резервні типові значення, які знайдені скороченням "
#~ "назви на символах '-'. Ігноруються всі назви після першої, якщо вказано "
#~ "декілька назв."
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Помилка отримання інформації для дескриптору файлу: %s"

314
po/vi.po
View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib 2.19.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-02-07 19:26+0930\n"
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
@ -301,53 +301,32 @@ msgstr "Lỗi mở tập tin « %s »: lỗi « fdopen() »: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Lỗi ánh xạ tập tin « %s »: lỗi « mmap() »: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "Lỗi trên dòng %d ký tự %d: "
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Văn bản được mã hoá UTF-8 không hợp lệ: không phải « %s » hợp lệ"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Lỗi trên dòng %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Thấy thực thể rỗng « &; »; những thực thể hợp lệ là: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Ký tự « %s » không phải là hợp lệ ở đầu của tên thực thể; ký tự « & » khởi đầu "
"một thực thể; nếu dấu và này không nên là một thực thể, hãy thoát nó như là « "
"&amp; »"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Ký tự « %s » không phải là hợp lệ bên trong tên thực thể"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Không biết tên thực thể « %s »"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Thực thể không có dấu chấm phẩy cuối cùng; dường như bạn đã dùng dấu và mà "
"không định bắt đầu một thực thể — hãy thoát dấu và như là « &amp; »"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -356,16 +335,7 @@ msgstr ""
"Lỗi phân tách « %-.*s », nó nên là một chữ số bên trong một tham chiếu ký tự "
"(v.d. « &#234 ») — có lẽ chư số quá lớn."
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Tham chiếu ký tự « %-.*s » không mã hóa một ký tự được phép."
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Tham chiếu ký tự trống; nên chứa chữ số như là « &#454; »."
#: glib/gmarkup.c:685
#: 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,32 +344,36 @@ msgstr ""
"Tham chiếu ký tự không có dấu chấm phẩy cuối cùng; dường như bạn đã dùng một "
"dấu và mà không định bắt đầu một thực thể — hãy thoát dấu và như là « &amp; »"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Tham chiếu thực thể chưa hoàn thành"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Tham chiếu ký tự chưa hoàn thành"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Văn bản được mã hoá UTF-8 không hợp lệ: dáy quá dài"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Văn bản được mã hoá UTF-8 không hợp lệ: không phải ký tự bắt đầu"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Văn bản được mã hoá UTF-8 không hợp lệ: không phải « %s » hợp lệ"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Tham chiếu ký tự « %-.*s » không mã hóa một ký tự được phép."
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Thấy thực thể rỗng « &; »; những thực thể hợp lệ là: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Không biết tên thực thể « %s »"
#: 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 &amp;"
msgstr ""
"Thực thể không có dấu chấm phẩy cuối cùng; dường như bạn đã dùng dấu và mà "
"không định bắt đầu một thực thể — hãy thoát dấu và như là « &amp; »"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Tài liệu phải bắt đầu bằng một yếu tố (v.d. <book> [quyển sách])"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -408,7 +382,7 @@ msgstr ""
"« %s » không phải là một ký tự hợp lệ đi theo một dấu ngoặc nhọn mở « < » ; "
"không cho phép nó bắt đầu một tên yếu tố"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -417,7 +391,7 @@ msgstr ""
"Ký tự lạ « %s », mong đợi một dấu ngoặc nhọn đóng « > » để kết thúc thẻ rỗng « %"
"s »"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -425,7 +399,7 @@ msgstr ""
"Ký tự lạ « %s », mong đợi một dấu bằng « = » nằm sau tên thuộc tính « %s » của "
"yếu tố « %s »"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -436,7 +410,7 @@ msgstr ""
"kết thúc thẻ khởi đầu của yếu tố « %s », hay tùy ý một thuộc tính; có lẽ bạn "
"đã dùng một ký tự không hợp lệ trong một tên thuộc tính."
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -445,7 +419,7 @@ msgstr ""
"Ký tự lạ « %s », mong đợi một dấu nháy kép mở nằm sau dấu bằng khi đưa giá "
"trị cho thuộc tính « %s » của yếu tố « %s »"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -454,7 +428,7 @@ msgstr ""
"« %s » không phải là một ký tự hợp lệ nằm theo các ký tự « </ » ; không cho "
"phép « %s » bắt đầu một tên yếu tố"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -463,25 +437,25 @@ msgstr ""
"« %s » không phải là một ký tự hợp lệ nằm theo tên yếu tố đóng « %s »; ký tự "
"được phép là « > »."
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Yếu tố « %s » đã được đóng, không có yếu tố mở hiện thời"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Yếu tố « %s » đã được đóng, nhưng yếu tố mở hiện thời là « %s »"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Tài liệu rỗng hay chứa chỉ khoảng trắng"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Tài liệu đã kết thúc bất thường ngay sau một dấu ngoặc nhọn mở « < »"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -490,7 +464,7 @@ msgstr ""
"Tài liệu đã kết thúc bất thường với các yếu tố vẫn còn mở — « %s » là yếu tố "
"đã mở cuối cùng"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -499,19 +473,19 @@ msgstr ""
"Tài liệu kết thúc bất thường, mong đợi thấy dấu ngoặc nhọn đóng kết thúc thẻ "
"« <%s/> »"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Tài liệu đã kết thúc bất thường bên trong một tên yếu tố"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Tài liệu đã kết thúc bất thường bên trong một tên thuộc tính"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Tài liệu đã kết thúc bất thường bên trong một thẻ mở yếu tố"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -519,17 +493,17 @@ msgstr ""
"Tài liệu đã kết thúc bất thường sau dấu bằng nằm sau một tên thuộc tính; "
"không có giá trị thuộc tính"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
"Tài liệu đã kết thúc bất thường trong khi nằm trong một giá trị thuộc tính"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Tài liệu đã kết thúc bất thường bên trong thẻ đóng cho yếu tố « %s »"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Tài liệu đã kết thúc bất thường bên trong một chú thích hay hướng dẫn xử lý"
@ -977,61 +951,61 @@ msgstr "Dãy không hợp lệ nằm trong dữ liệu nhập việc chuyển đ
msgid "Character out of range for UTF-16"
msgstr "Ký tự ở ngoại phạm vi UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Sử dụng:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[TÙY_CHỌN...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Tùy chọn trợ giúp:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Hiển thị các tùy chọn trợ giúp"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Hiển thị mọi tùy chọn trợ giúp"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Tùy chọn ứng dụng:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Không thể phân tách giá trị số nguyên « %s » cho %s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Giá trị số nguyên « %s » cho %s ở ngoại phạm vi"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Không thể phân tách giá trị đôi « %s » cho %s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Giá trị đôi « %s » cho %s ở ngoại phạm vi"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "Gặp lỗi khi phân tách tùy chọn %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "Thiếu đối số cho %s"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Không biết tùy chọn %s"
@ -1153,8 +1127,8 @@ msgstr "Giá trị đếm quá lớn được gửi cho %s"
msgid "Stream is already closed"
msgstr "Luồng đã bị đóng"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "Thao tác bị thôi"
@ -1295,7 +1269,7 @@ msgstr "Thùng rác không được hỗ trợ"
msgid "File names cannot contain '%c'"
msgstr "Tên tập tin không thể chứa « %c »"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "hàm volume (khối tin) không thực hiện chức năng mount (lắp)"
@ -1316,14 +1290,6 @@ msgstr "Bộ đếm tập tin có thao tác còn chạy"
msgid "File enumerator is already closed"
msgstr "Bộ đếm tập tin đã bị đóng"
#: gio/gfileicon.c:145
msgid "file"
msgstr "tập tin"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "Tập tin chứa biểu tượng"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1734,55 +1700,11 @@ msgstr "Luồng xuất không thực hiện hàm write (ghi)"
msgid "Source stream is already closed"
msgstr "Luồng nguồn đã bị đóng"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "tên"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "Tên của biểu tượng"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "tên"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "Mảng chứa tên biểu tượng"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "dùng dự phòng mặc định"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"Có dùng dự phòng mặc định được tìm thấy bằng cách rút ngắn tên tại ký tự '-' "
"hay không. Chỉ xét tên đầu tiên nếu trùng tên."
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "Không thể quản lý phiên bản %d của bảng mã GThemedIcon"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "Bộ mô tả tập tin"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "Bộ mô tả tập tin từ đó cần đọc"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "Đóng bộ mô tả tập tin"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "Có nên đóng bộ mô tả tập tin khi luồng được đóng, hay không"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1799,16 +1721,12 @@ msgstr "Gặp lỗi khi đóng UNIX: %s"
msgid "Filesystem root"
msgstr "Gốc hệ thống tập tin"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "Bộ mô tả tập tin vào đó cần ghi"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "Gặp lỗi khi ghi vào UNIX: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "hàm volume (khối tin) không thực hiện hàm eject (đầy ra)"
@ -1844,3 +1762,73 @@ msgstr "dùng định dạng liệt kê dài"
#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[TẬP_TIN...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Ký tự « %s » không phải là hợp lệ ở đầu của tên thực thể; ký tự « & » khởi "
#~ "đầu một thực thể; nếu dấu và này không nên là một thực thể, hãy thoát nó "
#~ "như là « &amp; »"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Ký tự « %s » không phải là hợp lệ bên trong tên thực thể"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Tham chiếu ký tự trống; nên chứa chữ số như là « &#454; »."
#~ msgid "Unfinished entity reference"
#~ msgstr "Tham chiếu thực thể chưa hoàn thành"
#~ msgid "Unfinished character reference"
#~ msgstr "Tham chiếu ký tự chưa hoàn thành"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Văn bản được mã hoá UTF-8 không hợp lệ: dáy quá dài"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Văn bản được mã hoá UTF-8 không hợp lệ: không phải ký tự bắt đầu"
#~ msgid "file"
#~ msgstr "tập tin"
#~ msgid "The file containing the icon"
#~ msgstr "Tập tin chứa biểu tượng"
#~ msgid "name"
#~ msgstr "tên"
#~ msgid "The name of the icon"
#~ msgstr "Tên của biểu tượng"
#~ msgid "names"
#~ msgstr "tên"
#~ msgid "An array containing the icon names"
#~ msgstr "Mảng chứa tên biểu tượng"
#~ msgid "use default fallbacks"
#~ msgstr "dùng dự phòng mặc định"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "Có dùng dự phòng mặc định được tìm thấy bằng cách rút ngắn tên tại ký tự "
#~ "'-' hay không. Chỉ xét tên đầu tiên nếu trùng tên."
#~ msgid "File descriptor"
#~ msgstr "Bộ mô tả tập tin"
#~ msgid "The file descriptor to read from"
#~ msgstr "Bộ mô tả tập tin từ đó cần đọc"
#~ msgid "Close file descriptor"
#~ msgstr "Đóng bộ mô tả tập tin"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "Có nên đóng bộ mô tả tập tin khi luồng được đóng, hay không"
#~ msgid "The file descriptor to write to"
#~ msgstr "Bộ mô tả tập tin vào đó cần ghi"

267
po/wa.po
View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -303,45 +303,63 @@ msgstr "Dji n' a savou drovi li fitchî «%s»: fdopen() a fwait berwete: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Dji n' a savou drovi li fitchî «%s»: fdopen() a fwait berwete: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Aroke el roye %d caractere %d: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Tecse ecôdé en UTF-8 nén valide"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Aroke el roye %d: %s"
#: glib/gmarkup.c:493
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (&#234; for example) - perhaps the digit is too large"
msgstr ""
#: 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 &amp;"
msgstr ""
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Vude intité «&;» di trovêye; les intités valides sont: &amp; &quot; &lt; &gt; "
"&apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Li caractere «%s» n' est nén valide å cmince do no d' ene intité; le "
"caractere & cmince ene intité; si ç' caractere ampersande doet esse håyné té "
"ké, adon el fåt scrire come « &amp; »"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Li caractere «%s» n' est nén valide dins on no d' intité"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "Li no d' intité «%s» n' est nén cnoxhou"
#: glib/gmarkup.c:585
#: 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 &amp;"
@ -350,77 +368,31 @@ msgstr ""
"on caractere ampersande sins vleur sicrire ene intité, dins ç' cas el fåt "
"scrire insi: « &map; »"
#: glib/gmarkup.c:638
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (&#234; for example) - perhaps the digit is too large"
msgstr ""
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr ""
#: glib/gmarkup.c:685
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 &amp;"
msgstr ""
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr ""
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr ""
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Tecse ecôdé en UTF-8 nén valide"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Tecse ecôdé en UTF-8 nén valide"
#: glib/gmarkup.c:1130
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Tecse ecôdé en UTF-8 nén valide"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Li documint doet cmincî avou èn elemint (eg: <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr ""
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr ""
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -428,87 +400,87 @@ msgid ""
"character in an attribute name"
msgstr ""
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, 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 ""
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
msgstr ""
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
msgstr ""
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Li documint esteut vude ou avou seulmint des blancs"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr ""
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr ""
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr ""
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr ""
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
@ -945,61 +917,61 @@ msgstr "Secwince nén valide e l' intrêye do cviersaedje"
msgid "Character out of range for UTF-16"
msgstr "Caractere foû fortchete po l' ecôdaedje UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr ""
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr ""
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr ""
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr ""
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr ""
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr ""
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr ""
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, fuzzy, c-format
msgid "Error parsing option %s"
msgstr "Åk n' a nén stî tot cviersant: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr ""
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr ""
@ -1116,8 +1088,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1259,7 +1231,7 @@ msgstr "Loyéns simbolikes nén sopoirtés"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1280,14 +1252,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr ""
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1698,54 +1662,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr ""
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Åk n' a nén stî tot léjhant l' fitchî «%s»: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1762,16 +1683,12 @@ msgstr "Aroke el roye %d: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Åk n' a nén stî tot cviersant: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1809,6 +1726,30 @@ msgstr ""
msgid "[FILE...]"
msgstr ""
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Li caractere «%s» n' est nén valide å cmince do no d' ene intité; le "
#~ "caractere & cmince ene intité; si ç' caractere ampersande doet esse håyné "
#~ "té ké, adon el fåt scrire come « &amp; »"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Li caractere «%s» n' est nén valide dins on no d' intité"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Tecse ecôdé en UTF-8 nén valide"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Tecse ecôdé en UTF-8 nén valide"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Åk n' a nén stî tot léjhant l' fitchî «%s»: %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Åk n' a nén stî tot cviersant: %s"

286
po/xh.po
View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -307,54 +307,32 @@ msgstr "Akuphumelelekanga ukuvula ifayili '%s': fdopen() akuphumelelekanga: %s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Akuphumelelekanga ukuvula ifayili '%s': fdopen() akuphumelelekanga: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Impazamo emgceni %d uphawu %d: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "Umbhalo onxulumanisayo ongasebenziyo we- UTF-8"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "Impazamo emgceni %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Into ezimeleyo eze '&;' ebonwayo; izinto ezizimeleyo ezisebenzayo: &amp; "
"&quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"Uphawu '%s' alusebenzi ekuqaleni kwegama lento ezimeleyo; u-& uphawu uqala "
"into ezimeleyo; ukuba le ampersand ayifanelanga ukuba yinto ezimeleyo, "
"yiphephise njenge &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Uphawu '%s' alusebenzi ngaphakathi kwegama lento ezimeleyo"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Igama lento ezimeleyo '%s' alaziwa"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"Into ezimeleyo ayiphelelanga ngechaphaza-msila; mhlawumbi usebenzise uphawu "
"lwe- ampersand ungazimiselanga ukuqala into ezimeleyo - phepha i- ampersand "
"njenge &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -364,16 +342,7 @@ msgstr ""
"ngaphakathi kophawu lokuthumela (&#234; umzekelo) - mhlawumbi umvo mkhulu "
"kakhulu"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Uphawu lokuthumela '%-.*s' alulunxulumanisi uphawu olunemvume"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "Uphawu lokuthumela oluze; kufuneka luquke umvo ofana nalo &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -383,34 +352,37 @@ msgstr ""
"uphawu lwe- ampersand ungenanjongo yokuqala into ezimeleyo - phepha i- "
"ampersand njenge &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "Into ezimeleyo yokuthumela engagqitywanga"
#: glib/gmarkup.c:616
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Uphawu lokuthumela '%-.*s' alulunxulumanisi uphawu olunemvume"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "Uphawu lokuthumela olungagqitywanga"
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"Into ezimeleyo eze '&;' ebonwayo; izinto ezizimeleyo ezisebenzayo: &amp; "
"&quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Umbhalo onxulumanisayo ongasebenziyo we- UTF-8"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Umbhalo onxulumanisayo ongasebenziyo we- UTF-8"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Umbhalo onxulumanisayo ongasebenziyo we- UTF-8"
msgid "Entity name '%-.*s' is not known"
msgstr "Igama lento ezimeleyo '%s' alaziwa"
#: glib/gmarkup.c:1168
#: 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 &amp;"
msgstr ""
"Into ezimeleyo ayiphelelanga ngechaphaza-msila; mhlawumbi usebenzise uphawu "
"lwe- ampersand ungazimiselanga ukuqala into ezimeleyo - phepha i- ampersand "
"njenge &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Uxwebhu kufuneka luqale ngesiqalelo (umzkl. <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -419,7 +391,7 @@ msgstr ""
"'%s' asilophawu elisebenzayo elilandela u '<' uphawu; linokungaqali igama "
"lesiqalelo"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -428,7 +400,7 @@ msgstr ""
"Uphawu olutenxileyo '%s', lulindele '>' uphawu lokuphelisa ilebhile "
"yokuqalisa isiqalelo '%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -436,7 +408,7 @@ msgstr ""
"Uphawu olutenxileyo '%s', lulindele '=' emva kwegama lophawu '%s' "
"lwesiqalelo '%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -447,7 +419,7 @@ msgstr ""
"ilebhile yokuqala isiqalelo '%s', okanye ngokhetho lophawu; mhlawumbi "
"usebenzise uphawu olungasebenziyo kwigama lophawu"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -456,7 +428,7 @@ msgstr ""
"Uphawu olutenxileyo '%s', lulindele uphawu locaphulo oluvulekileyo emva "
"kweempawu zokulingana xa kunikwa ixabiso lophawu '%s' lwesiqalelo '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -465,7 +437,7 @@ msgstr ""
"'%s' asilophawu olusebenzayo ukulandela iimpawu '</'; '%s' linokungaqali "
"igama lesiqalelo"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -474,27 +446,27 @@ msgstr ""
"'%s' asilophawu olusebenzayo ukulandela igama lesiqalelo elikufuphi '%s'; "
"uphawu oluvunyelweyo lolu '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Isiqalelo '%s' besivaliwe, akukho siqalelo sivuliweyo njengangoku"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
"Isiqalelo '%s' besivaliwe, kodwa isiqalelo esivuliweyo njengangoku sesi '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "Uxwebhu beluze okanye luqulathe isikhewu esimhlophe kuphela"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Uxwebhu luphele ngesiquphe kanye emva kwesibiyeli sedolo elivulekileyo '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -503,7 +475,7 @@ msgstr ""
"Uxwebhu luphele ngesiquphe xeshikweni iziqalelo bezisavulile - '%s' "
"isiqalelo sokugqibela besivuliwe"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -512,19 +484,19 @@ msgstr ""
"Uxwebhu luphele ngesiquphe, kulindelwe ukubona isibiyeli sedolo elivaliweyo "
"esiphelisa ilebhile <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "Uxwebhu luphele ngesiquphe ngaphakathi kwegama lesiqalelo"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Uxwebhu luphele ngesiquphe ngaphakathi kwegama lophawu"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Uxwebhu luphele ngesiquphe ngaphakathi kwelebhile evula isiqalelo."
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -532,17 +504,17 @@ msgstr ""
"Uxwebhu luphele ngesiquphe emva kokuba uphawu lokulingana lulandele igama "
"lophawu; kungekho xabiso lophawu"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Uxwebhu luphele ngesiquphe xeshikweni lungaphakathi kwexabiso lophawu"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Uxwebhu luphele ngesiquphe ngaphakathi kwelebhile evaliweyo yesiqalelo '%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Uxwebhu luphele ngesiquphe ngaphaikathi komyalelo wezimvo okanye inkqubo"
@ -998,61 +970,61 @@ msgstr "Ulandelelwano olungasebenziyo kwinguqulo yongeniso-lwazi"
msgid "Character out of range for UTF-16"
msgstr "Uphawu lungaphandle kwesigaba se-UTF-16"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "Ukusetyenziswa:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "Uncedo lokunokukhethwa:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "Bonisa amancedo anokukhethwa"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "Bonisa onke amancedo anokukhethwa"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "Iindlela zokusebenza ezinokukhethwa:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, fuzzy, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Akukwazeki ukwahlula ngezijungqe ixabiso lanani elimbaxa '%s' for --%s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Ixabiso lenani elimbaxa '%s' le %s lingaphaya kwesigaba"
#: glib/goption.c:885
#: glib/goption.c:994
#, fuzzy, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Akukwazeki ukwahlula ngezijungqe ixabiso lanani elimbaxa '%s' for --%s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, fuzzy, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Ixabiso lenani elimbaxa '%s' le %s lingaphaya kwesigaba"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, fuzzy, c-format
msgid "Error parsing option %s"
msgstr "Impazamo ngelixa lenguqulo: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr ""
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "Ukhetho olungaziwayo %s"
@ -1178,8 +1150,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1322,7 +1294,7 @@ msgstr "Ikhonkco elingumfuziselo alixhaswanga"
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1343,15 +1315,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "Igama lomququzeleli weURI '%s' alisebenzi"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1764,55 +1727,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "Igama lomququzeleli weURI '%s' alisebenzi"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "Impazamo yokufunda ifayili '%s': %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1829,16 +1748,12 @@ msgstr "Impazamo emgceni %d: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "Impazamo ngelixa lenguqulo: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1877,6 +1792,47 @@ msgstr ""
msgid "[FILE...]"
msgstr "[OPTION...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "Uphawu '%s' alusebenzi ekuqaleni kwegama lento ezimeleyo; u-& uphawu "
#~ "uqala into ezimeleyo; ukuba le ampersand ayifanelanga ukuba yinto "
#~ "ezimeleyo, yiphephise njenge &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "Uphawu '%s' alusebenzi ngaphakathi kwegama lento ezimeleyo"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "Uphawu lokuthumela oluze; kufuneka luquke umvo ofana nalo &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "Into ezimeleyo yokuthumela engagqitywanga"
#~ msgid "Unfinished character reference"
#~ msgstr "Uphawu lokuthumela olungagqitywanga"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "Umbhalo onxulumanisayo ongasebenziyo we- UTF-8"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "Umbhalo onxulumanisayo ongasebenziyo we- UTF-8"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "Igama lomququzeleli weURI '%s' alisebenzi"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "Igama lomququzeleli weURI '%s' alisebenzi"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "Impazamo yokufunda ifayili '%s': %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "Impazamo ngelixa lenguqulo: %s"

285
po/yi.po
View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 1.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-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"
@ -297,51 +297,32 @@ msgstr "ניט געקענט עפֿענען טעקע %s: fdopen() איז דורכ
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "ניט געקענט עפֿענען טעקע %s: fdopen() איז דורכגעפֿאַלן: %s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "דורכפֿאַל אױף שורה %d פּאָזיציע %d: %s"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "אומלעקסיק UTF־8 קאָדירטער טעקסט"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "דורכפֿאַל אױף שורה %d: %s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"לײדיקער אײנס '&;' געזען; לעקסיקע אײנסן זײַנען: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"שריפֿטצײכן %s איז ניט לעקסיק צום אָנהײב פֿון אַן אײנסנאָמען; דער & שריפֿטצײכן הײבט "
"אַן אײנס אָן; אױב מיט דעם דאָזיקן & מײנט מען ניט קײן אײנס, נאָרמאַליר אים װי &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "שריפֿטצײכן %s איז אומלעקסיק אין מיטן פֿון אַן אײנסנאָמען"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "אײנסנאָמען %s איז ניט באַקאַנט"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"אײנס האָט זיך ניט געענדיקט מיט קײן \";\". מסתּמא האָט מען געשריבן אַן & "
"שריפֿטצײכן אָן דער כּװנה אָנצוהײבן אַן אײנס. נאָרמאַליר & װי &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, fuzzy, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
@ -350,16 +331,7 @@ msgstr ""
"דורכפֿאַל אין אַנאַליזירן '%s', װאָס זאָל האָבן אַ ציפֿער אין דער שריפֿטצײכן־רעפֿערענץ "
"(למשל &#234;); אפֿשר איז דער ציפֿער צו גרױס"
#: glib/gmarkup.c:660
#, fuzzy, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "שריפֿטצײכן־רעפֿערענץ '%s' קאָדירט ניט קײן דערלאָזטן שריפֿטצײכן"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "נוליקע שריפֿטצײכן־רעפֿערענץ; מוז כּולל זײַן אַ ציפֿער, װי &#454;"
#: glib/gmarkup.c:685
#: 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 "
@ -368,34 +340,35 @@ msgstr ""
"שריפֿטצײכן־רעפֿערענץ האָט זיך ניט געענדיקט מיט קײן \";\". מסתּמא האָט מען געשריבן "
"אַן & שריפֿטצײכן אָן דער כּװנה אָנצוהײבן אַן אײנס. נאָרמאַליר & װי &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "ניט־געענדיקט אײנס־רעפֿערענץ"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "ניט־געענדיקט שריפֿטצײכן־רעפֿערענץ"
#: glib/gmarkup.c:1063
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "אומלעקסיק UTF־8 קאָדירטער טעקסט"
#: glib/gmarkup.c:1091
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "אומלעקסיק UTF־8 קאָדירטער טעקסט"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "אומלעקסיק UTF־8 קאָדירטער טעקסט"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "שריפֿטצײכן־רעפֿערענץ '%s' קאָדירט ניט קײן דערלאָזטן שריפֿטצײכן"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr ""
"לײדיקער אײנס '&;' געזען; לעקסיקע אײנסן זײַנען: &amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "אײנסנאָמען %s איז ניט באַקאַנט"
#: 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 &amp;"
msgstr ""
"אײנס האָט זיך ניט געענדיקט מיט קײן \";\". מסתּמא האָט מען געשריבן אַן & "
"שריפֿטצײכן אָן דער כּװנה אָנצוהײבן אַן אײנס. נאָרמאַליר & װי &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "דאָקומענט מוז אָנהײבן מיט אַן עלעמענט (װי למשל <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
@ -404,7 +377,7 @@ msgstr ""
"'%s' איך ניט קײן לעקסיקער שריפֿטצײכן נאָך אַ '<' שריפֿטצײכן;עס טאָר ניט אָנהײבן "
"קײן אײנסנאָמען"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
@ -413,7 +386,7 @@ msgstr ""
"מאָדנע שריפֿטצײכן '%s'; דערװאַרט אַ '>' שריפֿטצײכן צו ענדיקן דעם אָנהײב־הענטל "
"פֿונעם עלעמענט '%s'"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
@ -421,7 +394,7 @@ msgstr ""
"מאָדנע שריפֿטצײכן '%s'; דערװאַרט אַ '=' שריפֿטצײכן נאָך אַטריבוט־נאָמען %s פֿונעם "
"עלעמענט '%s'"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -432,7 +405,7 @@ msgstr ""
"אָנהײב־הענטל פֿונעם עלעמענט '%s'; אפֿשר האָט מען געלײגט אַן אומלעקסיקן שריפֿטצײכן "
"אין אַן אַטריבוט־נאָמען"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -441,7 +414,7 @@ msgstr ""
"מאָדנע שריפֿטצײכן '%s'; דערװאַרט אַ '\"' נאָך דעם '=' צו באַשטעטיקן דעם באַטרעף פֿון "
"אַטריבוט '%s' פֿונעם עלעמענט '%s'"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
@ -450,7 +423,7 @@ msgstr ""
"'%s' איז ניט קײן לעקסיקער שריפֿטצײכן נאָך די שריפֿטצײכנס '</'; '%s' טאָר ניט "
"אָנהײבן קײן עלעמענט־נאָמען"
#: glib/gmarkup.c:1675
#: glib/gmarkup.c:1453
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
@ -459,25 +432,25 @@ msgstr ""
"'%s' איז ניט קײן לעקסיקער שריפֿטצײכן נאָך דעם שלאָס־עלעמענט נאָמען '%s'; מען מוז "
"שטעלן '>'"
#: glib/gmarkup.c:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "עלעמענט '%s' איז פֿאַרמאַכט; קײן עלעמענט איז דערװײַל אָפֿן"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "עלעמענט '%s' איז פֿאַרמאַכט; דער איצטיקער אָפֿענער עלעמענט איז '%s'"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "דאָקומענט איז פּוסט אָדער איז כּולל בלױז לײדיק אָרט"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "דאָקומענט ענדיקט זיך אומגעריכטערהײט נאָך אַן עפֿן־צײכן '<'"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
@ -486,7 +459,7 @@ msgstr ""
"דאָקומענט ענדיקט זיך אומגעריכטערהײט מיט אָפֿענע עלעמענטן; '%s' איז געװען דער "
"לעצט־געעפֿנטער עלעמענט"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
@ -495,19 +468,19 @@ msgstr ""
"דאָקומענט ענדיקט זיך אומגעריכטערהײט; דערװאַרט אַ שלאָס־צײכן '>' צו ענדיקן דעם "
"הענטל <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "דאָקומענט ענדיקט זיך אומגעריכטערהײט אין דרינען פֿון אַן עלעמענט־נאָמען"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "דאָקומענט ענדיקט זיך אומגעריכטערהײט אין דרינען פֿון אַן אַטריבוט־נאָמען"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "דאָקומענט ענדיקט זיך אומגעריכטערהײט אין דרינען פֿון אַן עלעמענט־עפֿן הענטל"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
@ -515,18 +488,18 @@ msgstr ""
"דאָקומענט ענדיקט זיך אומגעריכטערהײט נאָך דעם '=' שריפֿטצײכן נאָך אַן "
"אַטריבוט־נאָמען אָן קײן אַטריבוט־באַטרעף"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "דאָקומענט ענדיקט זיך אומגעריכטערהײט אין דרינען פֿון אַן אַטריבוט־באַטרעף"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"דאָקומענט ענדיקט זיך אומגעריכטערהײט אין דרינען פֿון דעם שלאָס־הענטל פֿון עלעמענט "
"'%s'"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"דאָקומענט ענדיקט זיך אומגעריכטערהײט אין דרינען פֿון אַ קאָמענטאַר אָדער אַ "
@ -974,61 +947,61 @@ msgstr "אומלעקסיקער סעקװענץ אין פֿאַרװאַנדל־א
msgid "Character out of range for UTF-16"
msgstr "שריפֿטצײכן ניט אין דער UTF־16 גאַמע"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr ""
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr ""
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr ""
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr ""
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr ""
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr ""
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr ""
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, fuzzy, c-format
msgid "Error parsing option %s"
msgstr "דורכפֿאַל בשעת פֿאַרװאַנדלונג: %s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr ""
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr ""
@ -1145,8 +1118,8 @@ msgstr ""
msgid "Stream is already closed"
msgstr ""
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr ""
@ -1286,7 +1259,7 @@ msgstr ""
msgid "File names cannot contain '%c'"
msgstr ""
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr ""
@ -1307,15 +1280,6 @@ msgstr ""
msgid "File enumerator is already closed"
msgstr ""
#: gio/gfileicon.c:145
msgid "file"
msgstr ""
#: gio/gfileicon.c:146
#, fuzzy
msgid "The file containing the icon"
msgstr "דער מאַשין־נאָמען פֿונעם URI %s איז אומלעקסיק"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1727,55 +1691,11 @@ msgstr ""
msgid "Source stream is already closed"
msgstr ""
#: gio/gthemedicon.c:211
msgid "name"
msgstr ""
#: gio/gthemedicon.c:212
#, fuzzy
msgid "The name of the icon"
msgstr "דער מאַשין־נאָמען פֿונעם URI %s איז אומלעקסיק"
#: gio/gthemedicon.c:223
msgid "names"
msgstr ""
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr ""
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr ""
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr ""
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr ""
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr ""
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
#, fuzzy
msgid "Close file descriptor"
msgstr "דורכפֿאַל אין לײענען טעקע %s: %s"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr ""
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, fuzzy, c-format
@ -1792,16 +1712,12 @@ msgstr "דורכפֿאַל אױף שורה %d: %s"
msgid "Filesystem root"
msgstr ""
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr ""
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, fuzzy, c-format
msgid "Error writing to unix: %s"
msgstr "דורכפֿאַל בשעת פֿאַרװאַנדלונג: %s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr ""
@ -1838,6 +1754,47 @@ msgstr ""
msgid "[FILE...]"
msgstr ""
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "שריפֿטצײכן %s איז ניט לעקסיק צום אָנהײב פֿון אַן אײנסנאָמען; דער & שריפֿטצײכן "
#~ "הײבט אַן אײנס אָן; אױב מיט דעם דאָזיקן & מײנט מען ניט קײן אײנס, נאָרמאַליר אים "
#~ "װי &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "שריפֿטצײכן %s איז אומלעקסיק אין מיטן פֿון אַן אײנסנאָמען"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "נוליקע שריפֿטצײכן־רעפֿערענץ; מוז כּולל זײַן אַ ציפֿער, װי &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "ניט־געענדיקט אײנס־רעפֿערענץ"
#~ msgid "Unfinished character reference"
#~ msgstr "ניט־געענדיקט שריפֿטצײכן־רעפֿערענץ"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "אומלעקסיק UTF־8 קאָדירטער טעקסט"
#, fuzzy
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "אומלעקסיק UTF־8 קאָדירטער טעקסט"
#, fuzzy
#~ msgid "The file containing the icon"
#~ msgstr "דער מאַשין־נאָמען פֿונעם URI %s איז אומלעקסיק"
#, fuzzy
#~ msgid "The name of the icon"
#~ msgstr "דער מאַשין־נאָמען פֿונעם URI %s איז אומלעקסיק"
#, fuzzy
#~ msgid "Close file descriptor"
#~ msgstr "דורכפֿאַל אין לײענען טעקע %s: %s"
#, fuzzy
#~ msgid "Error creating backup link: %s"
#~ msgstr "דורכפֿאַל בשעת פֿאַרװאַנדלונג: %s"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-03-27 14:56+0800\n"
"Last-Translator: Ray Wang <wanglei1123@gmail.com>\n"
"Language-Team: Chinese/Simplified <i18n-translation@lists.linux.net.cn>\n"
@ -301,66 +301,39 @@ msgstr "打开文件“%s”失败open() 失败:%s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "映射文件“%s”失败mmap() 失败:%s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "第%d行第%d个字符出错"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "无效的 UTF-8 编码文本 - “%s”无效"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "第%d行出错%s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "发现空的实体“&;”。有效的实体为:&amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"字符“%s”出现在实体名的开头无效。实体都以 & 字符 开头,如果这个 & 不是一个实体"
"的开头,把它变为 &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "字符“%s”在实体名中无效"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "未知的实体名“%s”"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"实体没有以分号结束。很可能您使用了 & 字符而又不是一个实体 - 将这个 & 变为 "
"&amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (&#234; for example) - perhaps the digit is too large"
msgstr "分析“%-.*s”失败。它应该是字符引用中的数字(如&#234;) - 可能该数字太大了"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "字符引用“%-.*s”不是编码一个被允许的字符"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "空的字符引用;应该包括数字,如 &#454;"
#: glib/gmarkup.c:685
#: 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,52 +342,54 @@ msgstr ""
"字符引用没有以分号结束。很可能您使用了 & 字符而又不是一个实体 - 将这个 & 变"
"为 &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "未完成的实体引用"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "未完成的字符引用"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "无效的 UTF-8 编码文本 - 序列过长"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "无效的 UTF-8 编码文本 - 非开始字符"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "无效的 UTF-8 编码文本 - “%s”无效"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "字符引用“%-.*s”不是编码一个被允许的字符"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "发现空的实体“&;”。有效的实体为:&amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "未知的实体名“%s”"
#: 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 &amp;"
msgstr ""
"实体没有以分号结束。很可能您使用了 & 字符而又不是一个实体 - 将这个 & 变为 "
"&amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "文档必须以一个元素开始(例如 <book>)"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "“%s”出现在字符“<”后是无效字符;它不能作为元素名的开头"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr "字符“%s”无效应该以字符“>”来结束空元素标记“%s”"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "字符“%s”无效在属性名“%s”(元素“%s”)的后应该是字符“=”"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -424,87 +399,87 @@ msgstr ""
"字符“%s”无效应该以“>”或“/”结束元素“%s”的起始标记或紧跟该元素的属性可能"
"您在属性名中使用了无效字符"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, 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”)赋值时,在等号后应该是引号"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, 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:1675
#: glib/gmarkup.c:1453
#, 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:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "元素“%s”已经结束没有未结束的元素"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "元素“%s”已经结束当前未结束的元素是“%s”"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "文档为空或仅含空白字符"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "文档在一个打开的尖括号“<”后意外结束"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr "文档在还存在未结束元素时意外结束 - 最后的未结束元素是“%s”"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr "文档意外结束,应该以右尖括号“>”来结束标记 <%s/>"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "文档在元素名中意外结束"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "文档在属性名中意外结束"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "文档在元素起始标记中意外结束"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr "文档在跟在属性名后的等号后意外结束;没有属性值"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "文档在属性值中意外结束"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "文档在元素“%s”结束标记中意外结束"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "文档在注释或处理指令中意外结束"
@ -939,61 +914,61 @@ msgstr "转换输入中出现无效序列"
msgid "Character out of range for UTF-16"
msgstr "字符超出 UTF-16 范围"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "用法:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[选项...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "帮助选项:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "显示帮助选项"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "显示全部帮助选项"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "应用程序选项:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "无法处理 %2$s 所用的整数值“%1$s”"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "%2$s 所用的整数值“%1$s”超出范围"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "无法处理 %2$s 所用的双精度值“%1$s”"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "%2$s 所用的双精度值“%1$s”超出范围"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "分析选项出错:%s"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "缺少 %s 的参数"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "未知选项 %s"
@ -1110,8 +1085,8 @@ msgstr "传递给 %s 的计数值太大了"
msgid "Stream is already closed"
msgstr "流已经关闭"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "操作被取消"
@ -1251,7 +1226,7 @@ msgstr "不支持垃圾箱"
msgid "File names cannot contain '%c'"
msgstr "文件名不能包含“%c”"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "卷未实现挂载"
@ -1272,14 +1247,6 @@ msgstr "文件枚举器有异常操作"
msgid "File enumerator is already closed"
msgstr "文件枚举器已关闭"
#: gio/gfileicon.c:145
msgid "file"
msgstr "文件"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "包含该图标的文件"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1688,55 +1655,11 @@ msgstr "输出流未实现写入"
msgid "Source stream is already closed"
msgstr "来源流已经关闭"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "名称"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "图标的名称"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "名称"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "包含图标名称的数组"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "使用默认预案"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"是否使用通过缩短在“-”字符的名称找到的默认预案。如果给出了多个名字则忽略除第一"
"个之外的名字。"
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "无法处理 GThemedIcon 编码的版本 %d"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "文件描述符"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "要读取的文件描述符"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "关闭文件描述符"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "当流关闭时是否关闭文件描述符"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1753,16 +1676,12 @@ msgstr "关闭 unix 出错:%s"
msgid "Filesystem root"
msgstr "文件系统根目录"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "要写入的文件描述符"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "写入 unix 出错:%s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "卷未实现弹出"
@ -1799,6 +1718,75 @@ msgstr "使用长列表格式"
msgid "[FILE...]"
msgstr "[文件...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "字符“%s”出现在实体名的开头无效。实体都以 & 字符 开头,如果这个 & 不是一个"
#~ "实体的开头,把它变为 &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "字符“%s”在实体名中无效"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "空的字符引用;应该包括数字,如 &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "未完成的实体引用"
#~ msgid "Unfinished character reference"
#~ msgstr "未完成的字符引用"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "无效的 UTF-8 编码文本 - 序列过长"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "无效的 UTF-8 编码文本 - 非开始字符"
#~ msgid "file"
#~ msgstr "文件"
#~ msgid "The file containing the icon"
#~ msgstr "包含该图标的文件"
#~ msgid "name"
#~ msgstr "名称"
#~ msgid "The name of the icon"
#~ msgstr "图标的名称"
#~ msgid "names"
#~ msgstr "名称"
#~ msgid "An array containing the icon names"
#~ msgstr "包含图标名称的数组"
#~ msgid "use default fallbacks"
#~ msgstr "使用默认预案"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "是否使用通过缩短在“-”字符的名称找到的默认预案。如果给出了多个名字则忽略除"
#~ "第一个之外的名字。"
#~ msgid "File descriptor"
#~ msgstr "文件描述符"
#~ msgid "The file descriptor to read from"
#~ msgstr "要读取的文件描述符"
#~ msgid "Close file descriptor"
#~ msgstr "关闭文件描述符"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "当流关闭时是否关闭文件描述符"
#~ msgid "The file descriptor to write to"
#~ msgstr "要写入的文件描述符"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u 字节"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib 2.19.9\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-02-25 20:26+0800\n"
"Last-Translator: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>\n"
"Language-Team: Chinese (Hong Kong) <community@linuxhall.org>\n"
@ -301,66 +301,39 @@ msgstr "開啟檔案‘%s失敗open() 失敗:%s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "對應檔案‘%s失敗mmap() 失敗:%s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "第 %d 行第 %d 個字發生錯誤:"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "無效的 UTF-8 編碼文字 - 不是合法的「%s」"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "第 %d 行發生錯誤:%s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "出現空白的實體‘&;’;可用的實體為:&amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"實體名稱不應以‘%s開始應該使用 & 字符;如果這個 & 字符不是作為實體使用,請"
"將 & 轉換為 &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "實體名稱中不應含有字符‘%s"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "實體名稱‘%s意義不明"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"實體的結束部分不是分號;很可能你想使用 & 字符但未將它變為實體 ─ 請將 & 轉換"
"為 &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (&#234; for example) - perhaps the digit is too large"
msgstr "無法解析‘%-.*s字符參引內應該含有數字例如 &#234;)─ 可能是數字太大"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "字符參引‘%-.*s無法表示任何能接受的字符"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "字符參引是空白的;它應該包括數字,像 &#454;"
#: glib/gmarkup.c:685
#: 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,52 +342,54 @@ msgstr ""
"字符參引的結束部分不是分號;很可能你想使用 & 字符但未將它變為實體 ─ 請將 & 轉"
"換為 &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "未完成的實體參引"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "未完成的字符參引"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "無效的 UTF-8 編碼文字 - 序列過長"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "無效的 UTF-8 編碼文字 - 非開始字符"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "無效的 UTF-8 編碼文字 - 不是合法的「%s」"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "字符參引‘%-.*s無法表示任何能接受的字符"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "出現空白的實體‘&;’;可用的實體為:&amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "實體名稱‘%s意義不明"
#: 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 &amp;"
msgstr ""
"實體的結束部分不是分號;很可能你想使用 & 字符但未將它變為實體 ─ 請將 & 轉換"
"為 &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "文件開始必須為一元素(例如 <book>"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "<’字符後的‘%s不是有效的字符這樣不可能是元素名稱的開始部份"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr "字符「%s」只有一半空元素標籤「%s」的結尾應該以>’字符結束"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "不尋常的字符‘%s屬性名稱%s屬於元素%s後應該是=’字符"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -424,7 +399,7 @@ msgstr ""
"不尋常的字符‘%s元素%s的開始標籤應該以>’或‘/’字符終結,也可以是屬性;或"
"許你在屬性名稱中使用了無效的字符"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -432,80 +407,80 @@ msgid ""
msgstr ""
"不尋常的字符‘%s當指定屬性%s的值屬於元素%s等號後應該出現開引號"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, 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:1675
#: glib/gmarkup.c:1453
#, 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:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "元素‘%s已關閉沒有開啟中的元素"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "元素‘%s已關閉但開啟中的元素是%s"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "文件完全空白或只含有空白字符"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "文件在尖角括號‘<’後突然終止"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr "在仍然有開啟中的元素時,文件突然結束 ─‘%s是最後一個開啟的元素"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr "文件突然結束,本來應該出現用來關閉標籤 <%s/> 的尖角括號"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "在元素的名稱內,文件突然結束"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "在屬性名稱內,文件突然結束"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "在元素的開啟標籤內,文件突然結束"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr "在屬性名稱的等號後,文件突然結束;沒有屬性值"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "在屬性值內,文件突然結束"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "在元素‘%s的關閉標籤內文件突然結束"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "在註解或處理指示內,文件突然結束"
@ -940,61 +915,61 @@ msgstr "轉換輸入資料時出現無效的字符次序"
msgid "Character out of range for UTF-16"
msgstr "字符不在 UTF-16 範圍之內"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "用法:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[選項...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "說明選項:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "顯示說明的選項"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "顯示所有的說明選項"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "應用程式選項:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "無法給 %2$s 解析整數值‘%1$s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "%2$s 的整數值‘%1$s超出範圍"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "無法給 %2$s 解析雙精度浮點數‘%1$s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "%2$s 的雙精度浮點數‘%1$s超出範圍"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "解析 %s 選項時發生錯誤"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "缺少 %s 的參數"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "未知的選項 %s"
@ -1111,8 +1086,8 @@ msgstr "傳給 %s 的計數值太大"
msgid "Stream is already closed"
msgstr "串流已經關閉"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "操作已被取消"
@ -1252,7 +1227,7 @@ msgstr "不支援回收筒"
msgid "File names cannot contain '%c'"
msgstr "檔案名稱不能包含「%c」"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "儲存裝置尚未實作掛載功能"
@ -1273,14 +1248,6 @@ msgstr "檔案列舉器(enumerator)有異常操作"
msgid "File enumerator is already closed"
msgstr "檔案列舉器(enumerator)已經關閉"
#: gio/gfileicon.c:145
msgid "file"
msgstr "檔案"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "含有圖示的檔案"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1689,55 +1656,11 @@ msgstr "輸出串流尚未實作寫入"
msgid "Source stream is already closed"
msgstr "來源串流已經關閉"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "名稱"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "圖示的名稱"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "名稱"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "包含圖示名稱的陣列"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "使用預設的回饋"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"是否使用縮短過在「-」字符的名稱找到的預設回饋。如果提供多個名稱則忽略第一個以"
"外的名稱。"
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "不能處理版本為 %d 的 GThemedIcon 編碼"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "檔案描述子"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "要讀取的檔案描述子"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "關閉檔案描述子"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "當串流關閉時是否關閉檔案描述子"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1754,16 +1677,12 @@ msgstr "關閉 unix 時發生錯誤:%s"
msgid "Filesystem root"
msgstr "根檔案系統"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "要寫入的檔案描述子"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "寫入至 unix 時發生錯誤:%s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "儲存裝置尚未實作退出(eject)"
@ -1800,6 +1719,75 @@ msgstr "使用長式表列格式"
msgid "[FILE...]"
msgstr "[檔案...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "實體名稱不應以‘%s開始應該使用 & 字符;如果這個 & 字符不是作為實體使用,"
#~ "請將 & 轉換為 &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "實體名稱中不應含有字符‘%s"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "字符參引是空白的;它應該包括數字,像 &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "未完成的實體參引"
#~ msgid "Unfinished character reference"
#~ msgstr "未完成的字符參引"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "無效的 UTF-8 編碼文字 - 序列過長"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "無效的 UTF-8 編碼文字 - 非開始字符"
#~ msgid "file"
#~ msgstr "檔案"
#~ msgid "The file containing the icon"
#~ msgstr "含有圖示的檔案"
#~ msgid "name"
#~ msgstr "名稱"
#~ msgid "The name of the icon"
#~ msgstr "圖示的名稱"
#~ msgid "names"
#~ msgstr "名稱"
#~ msgid "An array containing the icon names"
#~ msgstr "包含圖示名稱的陣列"
#~ msgid "use default fallbacks"
#~ msgstr "使用預設的回饋"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "是否使用縮短過在「-」字符的名稱找到的預設回饋。如果提供多個名稱則忽略第一"
#~ "個以外的名稱。"
#~ msgid "File descriptor"
#~ msgstr "檔案描述子"
#~ msgid "The file descriptor to read from"
#~ msgstr "要讀取的檔案描述子"
#~ msgid "Close file descriptor"
#~ msgstr "關閉檔案描述子"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "當串流關閉時是否關閉檔案描述子"
#~ msgid "The file descriptor to write to"
#~ msgstr "要寫入的檔案描述子"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u 位元組"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: glib 2.19.9\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-04-09 18:27-0400\n"
"POT-Creation-Date: 2009-05-03 17:49-0400\n"
"PO-Revision-Date: 2009-02-23 19:56+0800\n"
"Last-Translator: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>\n"
"Language-Team: Chinese (Taiwan) <zh-l10n@lists.linux.org.tw>\n"
@ -301,66 +301,39 @@ msgstr "開啟檔案‘%s失敗open() 失敗:%s"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "對應檔案‘%s失敗mmap() 失敗:%s"
#: glib/gmarkup.c:255 glib/gmarkup.c:295
#: glib/gmarkup.c:303 glib/gmarkup.c:343
#, c-format
msgid "Error on line %d char %d: "
msgstr "第 %d 行第 %d 個字發生錯誤:"
#: glib/gmarkup.c:389
#: glib/gmarkup.c:363 glib/gmarkup.c:441
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text in name - not valid '%s'"
msgstr "無效的 UTF-8 編碼文字 - 不是合法的「%s」"
#: glib/gmarkup.c:374
#, c-format
msgid "'%s' is not a valid name "
msgstr ""
#: glib/gmarkup.c:390
#, c-format
msgid "'%s' is not a valid name: '%c' "
msgstr ""
#: glib/gmarkup.c:494
#, c-format
msgid "Error on line %d: %s"
msgstr "第 %d 行發生錯誤:%s"
#: glib/gmarkup.c:493
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "出現空白的實體‘&;’;可用的實體為:&amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:503
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &amp;"
msgstr ""
"實體名稱不應以‘%s開始應該使用 & 字元;如果這個 & 字元不是作為實體使用,請"
"將 & 轉換為 &amp;"
#: glib/gmarkup.c:537
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "實體名稱中不應含有字元‘%s"
#: glib/gmarkup.c:574
#, c-format
msgid "Entity name '%s' is not known"
msgstr "實體名稱‘%s意義不明"
#: glib/gmarkup.c:585
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &amp;"
msgstr ""
"實體的結束部分不是分號;很可能您想使用 & 字元但未將它變為實體 ─ 請將 & 轉換"
"為 &amp;"
#: glib/gmarkup.c:638
#: glib/gmarkup.c:578
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (&#234; for example) - perhaps the digit is too large"
msgstr "無法解析‘%-.*s字元參引內應該含有數字例如 &#234;)─ 可能是數字太大"
#: glib/gmarkup.c:660
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "字元參引‘%-.*s無法表示任何能接受的字元"
#: glib/gmarkup.c:675
msgid "Empty character reference; should include a digit such as &#454;"
msgstr "字元參引是空白的;它應該包括數字,像 &#454;"
#: glib/gmarkup.c:685
#: 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,52 +342,54 @@ msgstr ""
"字元參引的結束部分不是分號;很可能您想使用 & 字元但未將它變為實體 ─ 請將 & 轉"
"換為 &amp;"
#: glib/gmarkup.c:771
msgid "Unfinished entity reference"
msgstr "未完成的實體參引"
#: glib/gmarkup.c:777
msgid "Unfinished character reference"
msgstr "未完成的字元參引"
#: glib/gmarkup.c:1063
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "無效的 UTF-8 編碼文字 - 序列過長"
#: glib/gmarkup.c:1091
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "無效的 UTF-8 編碼文字 - 非開始字元"
#: glib/gmarkup.c:1130
#: glib/gmarkup.c:616
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "無效的 UTF-8 編碼文字 - 不是合法的「%s」"
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "字元參引‘%-.*s無法表示任何能接受的字元"
#: glib/gmarkup.c:1168
#: glib/gmarkup.c:654
msgid ""
"Empty entity '&;' seen; valid entities are: &amp; &quot; &lt; &gt; &apos;"
msgstr "出現空白的實體‘&;’;可用的實體為:&amp; &quot; &lt; &gt; &apos;"
#: glib/gmarkup.c:662
#, fuzzy, c-format
msgid "Entity name '%-.*s' is not known"
msgstr "實體名稱‘%s意義不明"
#: 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 &amp;"
msgstr ""
"實體的結束部分不是分號;很可能您想使用 & 字元但未將它變為實體 ─ 請將 & 轉換"
"為 &amp;"
#: glib/gmarkup.c:973
msgid "Document must begin with an element (e.g. <book>)"
msgstr "文件開始必須為一元素(例如 <book>"
#: glib/gmarkup.c:1208
#: glib/gmarkup.c:1013
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "<’字元後的‘%s不是有效的字元這樣不可能是元素名稱的開始部份"
#: glib/gmarkup.c:1276
#: glib/gmarkup.c:1081
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"s'"
msgstr "字元「%s」只有一半空元素標籤「%s」的結尾應該以>’字元結束"
#: glib/gmarkup.c:1365
#: glib/gmarkup.c:1165
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "不尋常的字元‘%s屬性名稱%s屬於元素%s後應該是=’字元"
#: glib/gmarkup.c:1407
#: glib/gmarkup.c:1206
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
@ -424,7 +399,7 @@ msgstr ""
"不尋常的字元‘%s元素%s的開始標籤應該以>’或‘/’字元終結,也可以是屬性;或"
"許您在屬性名稱中使用了無效的字元"
#: glib/gmarkup.c:1493
#: glib/gmarkup.c:1283
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
@ -432,80 +407,80 @@ msgid ""
msgstr ""
"不尋常的字元‘%s當指定屬性%s的值屬於元素%s等號後應該出現開引號"
#: glib/gmarkup.c:1635
#: glib/gmarkup.c:1417
#, 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:1675
#: glib/gmarkup.c:1453
#, 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:1686
#: glib/gmarkup.c:1464
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "元素‘%s已關閉沒有開啟中的元素"
#: glib/gmarkup.c:1695
#: glib/gmarkup.c:1473
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "元素‘%s已關閉但開啟中的元素是%s"
#: glib/gmarkup.c:1858
#: glib/gmarkup.c:1640
msgid "Document was empty or contained only whitespace"
msgstr "文件完全空白或只含有空白字元"
#: glib/gmarkup.c:1872
#: glib/gmarkup.c:1654
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "文件在尖角括號‘<’後突然終止"
#: glib/gmarkup.c:1880 glib/gmarkup.c:1925
#: glib/gmarkup.c:1662 glib/gmarkup.c:1707
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr "在仍然有開啟中的元素時,文件突然結束 ─‘%s是最後一個開啟的元素"
#: glib/gmarkup.c:1888
#: glib/gmarkup.c:1670
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr "文件突然結束,本來應該出現用來關閉標籤 <%s/> 的尖角括號"
#: glib/gmarkup.c:1894
#: glib/gmarkup.c:1676
msgid "Document ended unexpectedly inside an element name"
msgstr "在元素的名稱內,文件突然結束"
#: glib/gmarkup.c:1900
#: glib/gmarkup.c:1682
msgid "Document ended unexpectedly inside an attribute name"
msgstr "在屬性名稱內,文件突然結束"
#: glib/gmarkup.c:1905
#: glib/gmarkup.c:1687
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "在元素的開啟標籤內,文件突然結束"
#: glib/gmarkup.c:1911
#: glib/gmarkup.c:1693
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr "在屬性名稱的等號後,文件突然結束;沒有屬性值"
#: glib/gmarkup.c:1918
#: glib/gmarkup.c:1700
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "在屬性值內,文件突然結束"
#: glib/gmarkup.c:1934
#: glib/gmarkup.c:1716
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "在元素‘%s的關閉標籤內文件突然結束"
#: glib/gmarkup.c:1940
#: glib/gmarkup.c:1722
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "在註解或處理指示內,文件突然結束"
@ -940,61 +915,61 @@ msgstr "轉換輸入資料時出現無效的字元次序"
msgid "Character out of range for UTF-16"
msgstr "字元不在 UTF-16 範圍之內"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "Usage:"
msgstr "用法:"
#: glib/goption.c:615
#: glib/goption.c:724
msgid "[OPTION...]"
msgstr "[選項...]"
#: glib/goption.c:719
#: glib/goption.c:828
msgid "Help Options:"
msgstr "說明選項:"
#: glib/goption.c:720
#: glib/goption.c:829
msgid "Show help options"
msgstr "顯示說明的選項"
#: glib/goption.c:726
#: glib/goption.c:835
msgid "Show all help options"
msgstr "顯示所有的說明選項"
#: glib/goption.c:788
#: glib/goption.c:897
msgid "Application Options:"
msgstr "應用程式選項:"
#: glib/goption.c:850 glib/goption.c:920
#: glib/goption.c:959 glib/goption.c:1029
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "無法給 %2$s 解析整數值‘%1$s"
#: glib/goption.c:860 glib/goption.c:928
#: glib/goption.c:969 glib/goption.c:1037
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "%2$s 的整數值‘%1$s超出範圍"
#: glib/goption.c:885
#: glib/goption.c:994
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "無法給 %2$s 解析雙精度浮點數‘%1$s"
#: glib/goption.c:893
#: glib/goption.c:1002
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "%2$s 的雙精度浮點數‘%1$s超出範圍"
#: glib/goption.c:1156 glib/goption.c:1235
#: glib/goption.c:1265 glib/goption.c:1344
#, c-format
msgid "Error parsing option %s"
msgstr "解析 %s 選項時發生錯誤"
#: glib/goption.c:1266 glib/goption.c:1380
#: glib/goption.c:1375 glib/goption.c:1489
#, c-format
msgid "Missing argument for %s"
msgstr "缺少 %s 的參數"
#: glib/goption.c:1773
#: glib/goption.c:1882
#, c-format
msgid "Unknown option %s"
msgstr "未知的選項 %s"
@ -1111,8 +1086,8 @@ msgstr "傳給 %s 的計數值太大"
msgid "Stream is already closed"
msgstr "串流已經關閉"
#: gio/gcancellable.c:366 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:627
#: gio/gsimpleasyncresult.c:654
#: gio/gcancellable.c:377 gio/glocalfile.c:2012 gio/gsimpleasyncresult.c:638
#: gio/gsimpleasyncresult.c:665
msgid "Operation was cancelled"
msgstr "操作已被取消"
@ -1252,7 +1227,7 @@ msgstr "不支援回收筒"
msgid "File names cannot contain '%c'"
msgstr "檔案名稱不能包含「%c」"
#: gio/gfile.c:5011 gio/gvolume.c:370
#: gio/gfile.c:5011 gio/gvolume.c:376
msgid "volume doesn't implement mount"
msgstr "儲存裝置尚未實作掛載功能"
@ -1273,14 +1248,6 @@ msgstr "檔案列舉器(enumerator)有異常操作"
msgid "File enumerator is already closed"
msgstr "檔案列舉器(enumerator)已經關閉"
#: gio/gfileicon.c:145
msgid "file"
msgstr "檔案"
#: gio/gfileicon.c:146
msgid "The file containing the icon"
msgstr "含有圖示的檔案"
#: gio/gfileicon.c:237
#, c-format
msgid "Can't handle version %d of GFileIcon encoding"
@ -1689,55 +1656,11 @@ msgstr "輸出串流尚未實作寫入"
msgid "Source stream is already closed"
msgstr "來源串流已經關閉"
#: gio/gthemedicon.c:211
msgid "name"
msgstr "名稱"
#: gio/gthemedicon.c:212
msgid "The name of the icon"
msgstr "圖示的名稱"
#: gio/gthemedicon.c:223
msgid "names"
msgstr "名稱"
#: gio/gthemedicon.c:224
msgid "An array containing the icon names"
msgstr "包含圖示名稱的陣列"
#: gio/gthemedicon.c:249
msgid "use default fallbacks"
msgstr "使用預設的回饋"
#: gio/gthemedicon.c:250
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
msgstr ""
"是否使用縮短過在「-」字元的名稱找到的預設回饋。如果提供多個名稱則忽略第一個以"
"外的名稱。"
#: gio/gthemedicon.c:499
#, c-format
msgid "Can't handle version %d of GThemedIcon encoding"
msgstr "不能處理版本為 %d 的 GThemedIcon 編碼"
#: gio/gunixinputstream.c:161 gio/gunixoutputstream.c:147
msgid "File descriptor"
msgstr "檔案描述子"
#: gio/gunixinputstream.c:162
msgid "The file descriptor to read from"
msgstr "要讀取的檔案描述子"
#: gio/gunixinputstream.c:176 gio/gunixoutputstream.c:162
msgid "Close file descriptor"
msgstr "關閉檔案描述子"
#: gio/gunixinputstream.c:177 gio/gunixoutputstream.c:163
msgid "Whether to close the file descriptor when the stream is closed"
msgstr "當串流關閉時是否關閉檔案描述子"
#: gio/gunixinputstream.c:358 gio/gunixinputstream.c:378
#: gio/gunixinputstream.c:456 gio/gunixoutputstream.c:443
#, c-format
@ -1754,16 +1677,12 @@ msgstr "關閉 unix 時發生錯誤:%s"
msgid "Filesystem root"
msgstr "根檔案系統"
#: gio/gunixoutputstream.c:148
msgid "The file descriptor to write to"
msgstr "要寫入的檔案描述子"
#: gio/gunixoutputstream.c:344 gio/gunixoutputstream.c:365
#, c-format
msgid "Error writing to unix: %s"
msgstr "寫入至 unix 時發生錯誤:%s"
#: gio/gvolume.c:444
#: gio/gvolume.c:450
msgid "volume doesn't implement eject"
msgstr "儲存裝置尚未實作退出(eject)"
@ -1800,6 +1719,75 @@ msgstr "使用長式表列格式"
msgid "[FILE...]"
msgstr "[檔案...]"
#~ msgid ""
#~ "Character '%s' is not valid at the start of an entity name; the & "
#~ "character begins an entity; if this ampersand isn't supposed to be an "
#~ "entity, escape it as &amp;"
#~ msgstr ""
#~ "實體名稱不應以‘%s開始應該使用 & 字元;如果這個 & 字元不是作為實體使用,"
#~ "請將 & 轉換為 &amp;"
#~ msgid "Character '%s' is not valid inside an entity name"
#~ msgstr "實體名稱中不應含有字元‘%s"
#~ msgid "Empty character reference; should include a digit such as &#454;"
#~ msgstr "字元參引是空白的;它應該包括數字,像 &#454;"
#~ msgid "Unfinished entity reference"
#~ msgstr "未完成的實體參引"
#~ msgid "Unfinished character reference"
#~ msgstr "未完成的字元參引"
#~ msgid "Invalid UTF-8 encoded text - overlong sequence"
#~ msgstr "無效的 UTF-8 編碼文字 - 序列過長"
#~ msgid "Invalid UTF-8 encoded text - not a start char"
#~ msgstr "無效的 UTF-8 編碼文字 - 非開始字元"
#~ msgid "file"
#~ msgstr "檔案"
#~ msgid "The file containing the icon"
#~ msgstr "含有圖示的檔案"
#~ msgid "name"
#~ msgstr "名稱"
#~ msgid "The name of the icon"
#~ msgstr "圖示的名稱"
#~ msgid "names"
#~ msgstr "名稱"
#~ msgid "An array containing the icon names"
#~ msgstr "包含圖示名稱的陣列"
#~ msgid "use default fallbacks"
#~ msgstr "使用預設的回饋"
#~ msgid ""
#~ "Whether to use default fallbacks found by shortening the name at '-' "
#~ "characters. Ignores names after the first if multiple names are given."
#~ msgstr ""
#~ "是否使用縮短過在「-」字元的名稱找到的預設回饋。如果提供多個名稱則忽略第一"
#~ "個以外的名稱。"
#~ msgid "File descriptor"
#~ msgstr "檔案描述子"
#~ msgid "The file descriptor to read from"
#~ msgstr "要讀取的檔案描述子"
#~ msgid "Close file descriptor"
#~ msgstr "關閉檔案描述子"
#~ msgid "Whether to close the file descriptor when the stream is closed"
#~ msgstr "當串流關閉時是否關閉檔案描述子"
#~ msgid "The file descriptor to write to"
#~ msgstr "要寫入的檔案描述子"
#~ msgid "%u byte"
#~ msgid_plural "%u bytes"
#~ msgstr[0] "%u 位元組"