2008-07-21 Matthias Clasen <mclasen2redhat.com>
+ * === Released 2.17.4 ===
+
+ * configure.in: Bump version
+
* NEWS: Updates
2008-07-21 Emmanuele Bassi <ebassi@gnome.org>
Simple install procedure
========================
- % gzip -cd glib-2.17.3.tar.gz | tar xvf - # unpack the sources
- % cd glib-2.17.3 # change to the toplevel directory
+ % gzip -cd glib-2.17.4.tar.gz | tar xvf - # unpack the sources
+ % cd glib-2.17.4 # change to the toplevel directory
% ./configure # run the `configure' script
% make # build GLIB
General Information
===================
-This is GLib version 2.17.3. GLib is the low-level core
+This is GLib version 2.17.4. GLib is the low-level core
library that forms the basis for projects such as GTK+ and GNOME. It
provides data structure handling for C, portability wrappers, and
interfaces for such runtime functionality as an event loop, threads,
#
m4_define([glib_major_version], [2])
m4_define([glib_minor_version], [17])
-m4_define([glib_micro_version], [3])
+m4_define([glib_micro_version], [4])
m4_define([glib_interface_age], [0])
m4_define([glib_binary_age],
[m4_eval(100 * glib_minor_version + glib_micro_version)])
+2008-07-21 Matthias Clasen <mclasen2redhat.com>
+
+ * === Released 2.17.4 ===
+
2008-07-18 Matthias Clasen <mclasen@redhat.com>
* gobject/gobject-sections.txt: Add new signal api.
@Since: 2.4
+<!-- ##### MACRO NC_ ##### -->
+<para>
+Only marks a string for translation, with context.
+This is useful in situations where the translated strings can't
+be directly used, e.g. in string array initializers.
+To get the translated string, you should call g_dpgettext2() at runtime.
+</para>
+|[
+ {
+ static const char *messages[] = {
+ NC_("some context", "some very meaningful message"),
+ NC_("some context", "and another one")
+ };
+ const char *string;
+ ...
+ string
+ = index > 1 ? g_dpgettext2 (NULL, "some context", "a default message") : g_dpgettext2 (NULL, "some context", messages[index]);
+<!-- -->
+ fputs (string);
+ ...
+ }
+]|
+
+<note><para>
+If you are using the NC_() macro, you need to make sure that you
+pass <option>--keyword=NC_:1c,2</option> to xgettext when extracting
+messages. Note that this only works with GNU gettext >= 0.15.
+</para></note>
+
+@Context: a message context, must be a string literal
+@String: a message id, must be a string literal
+@Since: 2.18
+
+
<!-- ##### FUNCTION g_dgettext ##### -->
<para>
@Returns:
-<!-- ##### MACRO NC_ ##### -->
+<!-- ##### FUNCTION g_dpgettext2 ##### -->
<para>
-Only marks a string for translation, with context.
-This is useful in situations where the translated strings can't
-be directly used, e.g. in string array initializers.
-To get the translated string, you should call g_dpgettext2() at runtime.
-</para>
-|[
- {
- static const char *messages[] = {
- NC_("some context", "some very meaningful message"),
- NC_("some context", "and another one")
- };
- const char *string;
- ...
- string
- = index > 1 ? g_dpgettext2 (NULL, "some context", "a default message") : g_dpgettext2 (NULL, "some context", messages[index]);
-<!-- -->
- fputs (string);
- ...
- }
-]|
-
-<note><para>
-If you are using the NC_() macro, you need to make sure that you
-pass <option>--keyword=NC_:1c,2</option> to xgettext when extracting
-messages. Note that this only works with GNU gettext >= 0.15.
-</para></note>
+</para>
-@Context: a message context, must be a string literal
-@String: a message id, must be a string literal
-@Since: 2.18
+@domain:
+@context:
+@msgid:
+@Returns:
<!-- ##### FUNCTION g_strip_context ##### -->
@Returns:
+<!-- ##### FUNCTION g_markup_parse_context_push ##### -->
+<para>
+
+</para>
+
+@context:
+@parser:
+@user_data:
+
+
+<!-- ##### FUNCTION g_markup_parse_context_pop ##### -->
+<para>
+
+</para>
+
+@context:
+@Returns:
+
+
<!-- ##### ENUM GMarkupCollectType ##### -->
<para>
@Returns:
+<!-- ##### FUNCTION g_strcmp0 ##### -->
+<para>
+
+</para>
+
+@str1:
+@str2:
+@Returns:
+
+
<!-- ##### FUNCTION g_strlcpy ##### -->
<para>
Portability wrapper that calls strlcpy() on systems which have it, and emulates
@Since: 2.16
-<!-- ##### FUNCTION g_strcmp0 ##### -->
-<para>
-
-</para>
-
-@str1:
-@str2:
-@Returns:
-
-
<!-- ##### TYPEDEF GTestCase ##### -->
<para>
An opaque structure representing a test case.
+2008-07-21 Matthias Clasen <mclasen2redhat.com>
+
+ * === Released 2.17.4 ===
+
2008-07-20 Matthias Clasen <mclasen@redhat.com>
* gvolumemonitor.[hc]:
+2008-07-21 Matthias Clasen <mclasen2redhat.com>
+
+ * === Released 2.17.4 ===
+
2008-07-02 Matthias Clasen <mclasen@redhat.com>
* === Released 2.17.3 ===
+2008-07-21 Matthias Clasen <mclasen2redhat.com>
+
+ * === Released 2.17.4 ===
+
2008-07-21 Michael Natterer <mitch@imendio.com>
Reviewed by Tim Janik:
+2008-07-21 Matthias Clasen <mclasen2redhat.com>
+
+ * === Released 2.17.4 ===
+
2008-07-02 Matthias Clasen <mclasen@redhat.com>
* === Released 2.17.3 ===
+2008-07-21 Matthias Clasen <mclasen2redhat.com>
+
+ * === Released 2.17.4 ===
+
2008-07-20 Leonardo Ferreira Fontenelle <leonardof@gnome.org>
* pt_BR.po: Brazilian Portuguese translation improvements.
msgstr ""
"Project-Id-Version: glib VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr ""
msgid "Error opening directory '%s': %s"
msgstr ""
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr ""
msgid "Error reading file '%s': %s"
msgstr "ፋይል '%s'ን ለማንበብ ስህተት አለ፦ %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr ""
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr ""
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr ""
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr ""
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr ""
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr ""
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr ""
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr ""
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr ""
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr ""
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr ""
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr ""
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"it as &"
msgstr ""
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr ""
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr ""
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
msgstr ""
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (ê for example) - perhaps the digit is too large"
msgstr ""
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr ""
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"as &"
msgstr ""
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr ""
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr ""
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "የማይሰራ የUTF-8 ጽሑፍ"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "የማይሰራ የUTF-8 ጽሑፍ"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "የማይሰራ የUTF-8 ጽሑፍ"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr ""
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr ""
-#: glib/gmarkup.c:1184
+#: glib/gmarkup.c:1266
#, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"character in an attribute name"
msgstr ""
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, 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:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
msgstr ""
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
msgstr ""
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr ""
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr ""
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr ""
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr ""
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr ""
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr ""
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr ""
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr ""
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "ፋይል '%s'ን ለማንበብ ስህተት አለ፦ %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "ፋይል '%s'ን ለማንበብ ስህተት አለ፦ %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-05-22 19:06+0300\n"
"Last-Translator: Khaled Hosny <khaledhosny@eglug.org>\n"
"Language-Team: Arabic <doc@arabeyes.org>\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "صفة غير متوقّعة '%s' للعنصر '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "الصفة '%s' للعنصر '%s' غير موجودة"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "وسْم غير متوقع '%s'، توقّعت الوسْم '%s'"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "وسْم غير متوقّع '%s' داخل '%s'"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "لا يوجد ملف علامات سليم في أدلّة البيانات"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "توجد بالفعل علامة للمسار '%s'"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "لا توجد علامة للمسار '%s'"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "لم يعرّف نوع MIME في علامة المسار '%s'"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "لم يعرف علم خاص في العلامات للمسار '%s'"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "لم تحدد أي مجموعات في علامة '%s'"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "لم يسجل أي تطبيق بالاسم '%s' علامة '%s'"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "فشل تمديد سطر exec '%s' بالمسار '%s'"
msgid "Error opening directory '%s': %s"
msgstr "خطأ أثناء فتح الدليل '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "تعذّر تحصيص %Ilu بايتات لقرائة الملف \"%s\""
msgid "Error reading file '%s': %s"
msgstr "خطأ عند قراءة الملف '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "فشلت القراءة من الملف '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "فشل فتح الملف '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "فشلت في أخذ صفات الملف '%s': فشل fstat(): %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "فشل فتح الملف '%s': فشل fdopen(): %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "فشل إعادة تسمية الملف '%s' إلى '%s': فشل g_rename(): %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "فشل إنشاء الملف '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "فشل فتح الملف '%s' للكتابة: فشل fdopen(): %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "فشلت في كتابة الملف '%s': فشل fwrite(): %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "فشلت في غلق الملف '%s': فشل fclose(): %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "لا يمكن حذف الملف الموجود مسبقا '%s': فشل g_unlink(): %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "القالب '%s' غير سليم، لا يجب أن يحتوي على '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "لا يحتوي القالب '%s' على XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%I.1f ك.بايت"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%I.1f م.بايت"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%I.1f ج.بايت"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "فشلت قراءة الوصلة الرمزية '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "الوصلات الرمزية غير مدعومة"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "فشل في مقابلة الملف'%s': mmap() فشل: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "خطأ في السطر %Id الرمز %Id: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "خطأ في السطر %Id: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr "رُؤي كيان فارغ '&;'، الكيانات السليمة هي:& " < > ' "
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"المحرف '%s' غير سليم عند بداية اسم الكيان؛ المحرف & يبدأ كيانا، ان كان علامة "
"اﻻمبارساند هذه غير موضوعة على انها كيان، تخطاها باعتبارها &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "المحرف '%s' غير موجود داخل اسم أي كيان"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "اسم الكيان '%s' غير معروف"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"اسم الكيان لم ينته بفاصلة منقوطة؛ الأرجح أنك استخدمت علامة & دون أن تنوي بدء "
"كيان - تخطى العلامة عن طريق اعتبارها &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"فشل في تحليل '%-.*s'، والتي كان لابد من كتبتها بالأرقام داخل مرجع محرف "
"(ê كمثال) - ربما الرقم كبير جدًا"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "مرجع المحرف '%-.*s' لا يقوم بترميز محرف مسموح به"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "مرجع محرف فارغ؛ يجب أن يتضمن رقما مثل dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"مرجع المحرف لم ينته بفاصلة منقوطة؛ الأرجح أنك استخدمت علامة امبارساند دون أن "
"تنوي بدء كيان - تخطا العلامت عن طريق اعتبارها &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "مرجع كيان غير مكتمل"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "مرجع محرف غير مكتمل"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "نص مرمّز بـ UTF-8 غير سليم - سلسة طويلة جدا"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "نص مرمّز بـ UTF-8 غير سليم - ليس محرف بداية"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "نص مرمّز بـ UTF-8 غير سليم - غير سليم '%s'"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "يجب أن يبدأ المستند بعنصر (<book> مثلا)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "'%s' محرف غير سليم بعد المحرف '<'؛ ربما لا يبدأ هذا المحرف اسم عنصر"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr "محرف غريب '%s'، توقعت محرف '>' لإنهاء بداية علامة العنصر '%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "محرف غريب '%s'، توقعت '=' بعد اسم الصفة '%s' للعنصر '%s'"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"محرف غريب '%s'، توقعت المحرف '>' أو '/' لإنهاء علامة البداية للعنصر '%s'، أو "
"بشكل اختياري صفة؛ ربما استخدمت محرفًا غير صالح في اسم صفة"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"محرف غريب '%s'، توقعت علامة اقتباس مفتوحة بعد علامة التساوي عند إعطاء قيمة "
"من الصفة '%s' للعنصر '%s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, 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:1583
+#: glib/gmarkup.c:1665
#, 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:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "العنصر '%s' كان مغلقا، لا عنصر مفتوح حاليا"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "العنصر '%s' كان مغلقا، لكن العنصر المفتوح حاليا هو '%s'"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "المستند كان فارغا أو كان يحتوي فقط على مساحات فارغة"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "انتهى المستند بشكل غير متوقع بعد قوس بزاوية '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"انتهى المستند بشكل غير متوقع مع عناصر لا زالت مفتوحة - '%s' كان آخر عنصر "
"مفتوح"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
msgstr ""
"انتهى المستند بشكل غير متوقع، توقعت رؤية قوس ذا زاوية لينهي العلامة<%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "انتهى المستند بشكل غير متوقع داخل اسم عنصر"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "انتهى المستند بشكل غير متوقع داخل اسم صفة"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "انتهى المستند بشكل غير متوقع بعد علامة فتح عنصر"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"انتهى المستند بشكل غير متوقع بعد علامة التساوي اثر اسم صفة؛ لا توجد قيمة "
"للصفة"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "انتهى المستند بشكل غير متوقع وهو داخلَ قيمة صفة"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "انتهى المستند بشكل غير متوقع داخل علامة انهاء للعنصر '%s'"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "انتهى المستند بشكل غير متوقع داخل تعليق أو تعليمات معالجة"
msgid "Operation was cancelled"
msgstr "أُلغيت العملية "
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "نوع مجهول"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s نوع ملفّ"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s نوع"
msgid "Unexpected early end-of-stream"
msgstr "نهاية دَفق غير متوقّعة وغير متوقعة "
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "غير مسمّى"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "ملف سطح المكتب لم يحدد الحقل التنفيدي"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "تعذّر إيجاد الطرفية المطلوبة للتطبيق"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "تعذّر إنشاء مجلد التهيئة الخاص بتطبيق المستخدم %s: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "لا يمكن إنشاء مجلد التهيئة MIME %s للمستخدم: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "لا يمكن إنشاء الملف %s"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "تعريف مخصص لِ %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "محرك الأقراص لا ينفذ القذف"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "محرك الأقراص لا ينفذ جسّ الوسائط"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "عمليّة غير مدعومة"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "الوصل الحاوي غير موجود"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "لا يمكنك نقل دليل على دليل"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "لا يمكنك نسخ دليل على دليل"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "الملف الهدف موجود مسبّقا"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr " لا يمكنك النسخ التكراري للدليل "
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr " قيمة الوصلة الرمزية المُعطاة غير سليمة"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "المهملات غير مدعومة"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "لا يمكن لأسماء الملفات أن تحتوي على '%c' "
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "الجهاز لا ينفذ الوَصل"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "لم يسجل أي تطبيق كمعالج لهذا الملف"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "نقطة الوصل لا تدعم الفصل"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "نقطو الوصْل لا يتدعم الإخراج"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "نقطة الوصل لا تدعم إعادة الوصل"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "نقطة الوصل لا تدعم الفصل"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "دَفْقُ الاخراج لا يدعم الكتابة"
msgid "Error closing unix: %s"
msgstr "خطأ عند غلق يونكس: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "جذر نظام الملفّات"
msgid "Error writing to unix: %s"
msgstr "خطأ أثناء الكتابة ليونكس: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "الجزء لا يدعم الإخراج"
msgstr ""
"Project-Id-Version: as\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-02-28 17:08+0530\n"
"Last-Translator: Amitakhya Phukan <amitakhya@svn.gnome.org>\n"
"Language-Team: Assamese\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n!=1)\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "অপ্ৰত্যাশিত গুণ '%s' পদাৰ্থ '%s' ৰ বাবে"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "'%s' গুণ '%s' পদাৰ্থৰ পোৱা ন'গ'ল"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "অপ্ৰত্যাশিত চিহ্ন '%s', '%s' চিহ্ন আশা কৰা হৈছিল"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "অপ্ৰত্যাশিত চিহ্ন '%s', '%s' ৰ ভিতৰত"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "তথ্য পঞ্জিকাত কোনো বৈধ পত্ৰচিহ্নৰ নথিপত্ৰ পোৱা ন'গ'ল"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI '%s' ৰ বাবে পত্ৰচিহ্ন ইতিমধ্যে আছে"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "URI '%s' ৰ বাবে পত্ৰচিহ্ন পোৱা ন'গ'ল"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI '%s' ৰ পত্ৰচিহ্নৰ বাবে কোনো MIME ৰ ধৰণ সংজ্ঞা দিয়া হোৱা নাই"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI '%s' ৰ পত্ৰচিহ্নত কোনো ব্যক্তিগত চিহ্নৰ সংজ্ঞা দিয়া হোৱা নাই"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI '%s' ৰ পত্ৰচিহ্নৰ বাবে কোনো সমষ্টি প্ৰতিষ্ঠা কৰা হোৱা নাই"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "'%s' নামৰ কোনো অনুপ্ৰয়োগে '%s' ৰ বাবে কোনো পত্ৰচিহ্ন পঞ্জীভূক্ত কৰা নাই"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "exec শাৰী '%s', য'ত URI '%s' আছে, বিস্তৃত কৰাত বিফল"
msgid "Error opening directory '%s': %s"
msgstr "'%s' পঞ্জিকা খোলোঁতে ভুল: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "%lu বাইট বিতৰণ কৰিব পৰা ন'গ'ল নথিপত্ৰ \"%s\" পঢ়িবলৈ "
msgid "Error reading file '%s': %s"
msgstr "নথিপত্ৰ '%s' পঢ়োঁতে ভুল: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "'%s' নথিপত্ৰৰ পৰা পঢ়োঁতে বিফল: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "'%s' নথিপত্ৰ খোলোঁতে ভুল: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "'%s' নথিপত্ৰৰ গুণ পাওঁতে বিফল: fstat() বিফল: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "'%s' নথিপত্ৰ খোলোঁতে ভুল: fdopen() বিফল: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "'%s' নথিপত্ৰক '%s' লৈ পুনঃনামকৰণ কৰোঁতে বিফল: g_rename() বিফল: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "'%s' নথিপত্ৰ সৃষ্টি কৰোঁতে বিফল: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "'%s' নথিপত্ৰ লিখিবৰ বাবে খোলাত বিফল: fdopen() বিফল: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "'%s' নথিপত্ৰ লিখাত বিফল: fwrite() বিফল: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "'%s' নথিপত্ৰ বন্ধ কৰাত বিফল: fclose() বিফল: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "বৰ্ত্তমানে থকা নথিপত্ৰ '%s' আঁতৰাব পৰা ন'গ'ল: g_unlink() বিফল: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "'%s' টেমপ্লেট অবৈধ, এটা '%s' থাকিব নালাগে"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "'%s' টেমপ্লেটত XXXXXX নাই"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "সাঙ্কেতিক সংযোগ পঢ়াত বিফল '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "সাঙ্কেতিক সংযোগ সমৰ্থিত নহয়"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' নথিপত্ৰ map কৰোঁতে বিফল: mmap() বিফল: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "%d শাৰীৰ %d আখৰত ভুল:"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "%d শাৰীত ভুল: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"ৰিক্ত পদাৰ্থ '&;' দেখা গ'ল; বৈধ পদাৰ্থসমূহ হ'ল: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"'%s' আখৰ পদাৰ্থৰ নামৰ আৰম্ভনিৰ বাবে বৈধ নহয়; & আখৰে এটা পদাৰ্থ আৰম্ভ কৰে; যদি এই "
"এম্পাৰছেন্দ এটা পদাৰ্থ হ'ব নালাগে, তাক & হিচাপে নিৰ্গমন কৰক"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "'%s' আখৰ পদাৰ্থৰ নামৰ ভিতৰত বৈধ নহয়"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "পদাৰ্থৰ নাম '%s' অজ্ঞাত"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"পদাৰ্থ এটা ছেমিকলনেৰে অন্ত ন'হ'ল; পদাৰ্থ এটা আৰম্ভ কৰিব নিবিচাৰিও অতি সম্ভৱ আপুনি "
"এটা এম্পাৰছেন্দ আখৰ ব্যৱহাৰ কৰিছে - এম্পাৰছেন্দক & হিচাপে নিৰ্গমন কৰক"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"'%-.*s' বিশ্লেষণ কৰোঁতে ভুল, যি কোনো আখৰৰ উল্লেখৰ ভিতৰৰ এটা সংখ্যা হ'ব লাগিছিল "
"(&#২৩৪; যেনে) - হয়তো সংখ্যাটো বৰ ডাঙৰ"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
"আখৰৰ উল্লেখ থকা '%-.*s' এ এটা আজ্ঞা থকা আখৰক সাঙ্কেতিক লিপিলৈ পৰিবৰ্তিত নকৰে"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "ৰিক্ত আখৰৰ সঙ্কেত; এটা সংখ্যা থাকিব লাগে যেনে &#৪৫৪;"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"আখৰৰ উল্লেখ এটা ছেমিকলনেৰে অন্ত ন'হ'ল; পদাৰ্থ এটা আৰম্ভ কৰিব নিবিচাৰিও অতি সম্ভৱ "
"আপুনি এটা এম্পাৰছেন্দ আখৰ ব্যৱহাৰ কৰিছে - এম্পাৰছেন্দক & হিচাপে নিৰ্গমন কৰক"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "অসম্পূৰ্ণ পদাৰ্থৰ উল্লেখ"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "অসম্পূৰ্ণ আখৰৰ উল্লেখ"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "অবৈধ UTF-8 সাঙ্কেতিক লিপি - overlong ক্ৰম"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "অবৈধ UTF-8 সাঙ্কেতিক লিপি - এটা আৰম্ভৰ আখৰ নহয়"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "অবৈধ UTF-8 সাঙ্কেতিক লিপি - অবৈধ '%s'"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "প্ৰলেক্ষ এটা পদাৰ্থৰ সৈতে আৰম্ভ হ'ব লাগিব (যেনে <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr ""
-#: glib/gmarkup.c:1184
+#: glib/gmarkup.c:1266
#, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"character in an attribute name"
msgstr ""
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, 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:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
msgstr ""
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
msgstr ""
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "প্ৰলেক্ষ ৰিক্ত বা অকল ৰিক্ত স্থান আছিলে"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
#, fuzzy
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "প্ৰলেক্ষ"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, fuzzy, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr "প্ৰলেক্ষ"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, fuzzy, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr "প্ৰলেক্ষ"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
#, fuzzy
msgid "Document ended unexpectedly inside an element name"
msgstr "প্ৰলেক্ষ"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
#, fuzzy
msgid "Document ended unexpectedly inside an attribute name"
msgstr "প্ৰলেক্ষ"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
#, fuzzy
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "প্ৰলেক্ষ."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
#, fuzzy
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr "প্ৰলেক্ষ"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
#, fuzzy
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "প্ৰলেক্ষ"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, fuzzy, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "প্ৰলেক্ষ"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
#, fuzzy
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "প্ৰলেক্ষ"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr ""
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "সাঙ্কেতিক সংযোগ সমৰ্থিত নহয়"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "সাঙ্কেতিক সংযোগ সমৰ্থিত নহয়"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
#, fuzzy
msgid "No application is registered as handling this file"
msgstr "'%s' নামৰ কোনো অনুপ্ৰয়োগে '%s' ৰ বাবে কোনো পত্ৰচিহ্ন পঞ্জীভূক্ত কৰা নাই"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "%d শাৰীত ভুল: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "সলনি কৰাৰ সময়ত ভুল: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib.HEAD.az\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0.2\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, fuzzy, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
"Tək hərf '%s', xüsusiyyət adı '%s' olan element '%s' dən sonra '=' gözlənilir"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "'%s' simvolik körpüsü oxuna bilmədi: %s"
msgid "Error opening directory '%s': %s"
msgstr "Cərgə açma xətası: '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "\"%2$s\" faylını oxumaq üçün %1$lu bayt ayrıla bilmir"
msgid "Error reading file '%s': %s"
msgstr "Fayl oxuma xətası: '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Fayldan oxuma iflası '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Fayl açma iflası '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Faylın xüsusiyyətlərini əldə etmə iflası '%s': fstat() iflası: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Fayl açma iflası '%s': fdopen() iflası: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, fuzzy, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Fayl açma iflası '%s': fdopen() iflası: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Fayl yaratma iflası '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, fuzzy, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Fayl açma iflası '%s': fdopen() iflası: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, fuzzy, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Fayl açma iflası '%s': fdopen() iflası: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, fuzzy, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Fayl açma iflası '%s': fdopen() iflası: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Nümunə '%s' hökmsüzdür, '%s' daxil etməməlidir"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Şablon '%s' XXXXXX ilə qurtarmır"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "'%s' simvolik körpüsü oxuna bilmədi: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Simvolik körpülər dəstəklənmir"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Fayl açma iflası '%s': fdopen() iflası: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "%d. sətir %d. xarakterində xəta: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "%d sətirində xəta : %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Boş element '&;' tapldı; hökmlü elementlər: & " < &qt; '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"başlayar; əgər bu ampersand bir element olaraq var sayılmazsa, & olaraq "
"işlədə bilərsiniz"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Element adı '%s' bilinmir"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"işlətdiniz bir element başlanğıcı ola bilməyən hərf üçün ampersandı & "
"olaraq işlədin"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, fuzzy, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"'%s' i şərhləndirmə xətası, hərf içində bir rəqəm olmalıdır referens (məs; "
"ê) - belki rəqəm çok böyükdür"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Boş hərf referens; dž kimi bir rəqəm daxil etməlidir;"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"xarakteri elementə başlamaq üçün işlətmədiniz - ampersand yerinə & işlədə "
"bilərsiniz"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Bitirilməmiş varlıq mə'lumatı"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Bitirilməmiş xarakter mə'lumatı"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Hökmsüz UTF-8 kodlanmış mətn"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Hökmsüz UTF-8 kodlanmış mətn"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Hökmsüz UTF-8 kodlanmış mətn"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
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:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'<' xarakterindən sonra gələn '%s' hökmlü bir xarakter deyil; bir element "
"adı olmaya bilər"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Tək hərf '%s', Elementın başlanğıç etiketinin sonuna '>' xarakteri "
"gözlənilir '%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, 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:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"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:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"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:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'</' 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:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"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:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
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:1777
+#: glib/gmarkup.c:1862
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:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"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:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"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:1799
+#: glib/gmarkup.c:1884
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:1805
+#: glib/gmarkup.c:1890
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:1810
+#: glib/gmarkup.c:1895
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:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"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:1823
+#: glib/gmarkup.c:1908
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:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
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ə "
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr ""
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "Simvolik körpülər dəstəklənmir"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Simvolik körpülər dəstəklənmir"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "%d sətirində xəta : %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Dönüşdürmə sırasında xəta yarandı: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Transfer-Encoding: 8bit\n"
# glib/gmarkup.c:1120\r
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, fuzzy, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
"Дзіўны сымбаль \"%s\", чакаўся сымбаль \"=\" пасьля назвы атрыбута \"%s\" "
"элемэнту \"%s\""
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
#, fuzzy
msgid "No valid bookmark file found in data dirs"
msgstr "Дапушчальны файл ключу не адшуканы ў каталёгу даньняў"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
# glib/gfileutils.c:745\r
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Немагчыма прачытаць сымбалічную спасылку \"%s\": %s"
msgstr "Памылка ў часе адкрыцьця каталёгу \"%s\": %s"
# glib/gfileutils.c:337 glib/gfileutils.c:402\r
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Не атрымалася разьмеркаваць %lu байтаў для чытаньня файлу \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Памылка чытаньня файлу \"%s\": %s"
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
# glib/gfileutils.c:426\r
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Збой чытаньня з файлу \"%s\": %s"
# glib/gfileutils.c:465 glib/gfileutils.c:533\r
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Збой адкрыцьця файлу \"%s\": %s"
# glib/gfileutils.c:479\r
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Збой атрыманьня атрыбутаў файлу \"%s\": збой fstat(): %s"
# glib/gfileutils.c:505\r
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Збой адкрыцьця файлу \"%s\": збой fdopen(): %s"
# glib/gfileutils.c:505\r
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Збой зьмены назвы файлу \"%s\" на '%s': збой g_rename(): %s"
# glib/gfileutils.c:745\r
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Збой стварэньня файлу \"%s\": %s"
# glib/gfileutils.c:505\r
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Збой адкрыцьця файла %s' для запісу: збой fdopen(): %s"
# glib/gfileutils.c:505\r
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Збой запісу файлу '%s': збой fwrite(): %s"
# glib/gfileutils.c:505\r
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Збой закрыцьця файлу %s': збой fclose(): %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Наяўны файл '%s' не можа быць выдалены: збой g_unlink(): %s"
# glib/gfileutils.c:712\r
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Шаблён \"%s\" недапушчальны, не павінны ўтрымліваць \"%s\""
# glib/gfileutils.c:724\r
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Шаблён \"%s\" канчацца не на XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
# glib/gfileutils.c:745\r
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Немагчыма прачытаць сымбалічную спасылку \"%s\": %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Сымбалічныя спасылкі не падтрымліваюцца"
msgstr "Збой мапаваньня файлу '%s': збой mmap(): %s"
# glib/gmarkup.c:219\r
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Памылка ў радку %d сымбаль %d: %s"
# glib/gmarkup.c:303\r
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Памылка ў радку %d: %s"
# glib/gmarkup.c:382\r
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Пусты запіс \"&;\" адшуканы; дапушчальныя: & " < > '"
# glib/gmarkup.c:392\r
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"тады экрануйце яго запісам &"
# glib/gmarkup.c:428\r
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Сымбаль \"%s\" недапушчальны ўнутры назвы сутнасьці"
# glib/gmarkup.c:472\r
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Невядомая назва сутнасьці \"%s\""
# glib/gmarkup.c:482\r
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"не для пазначэньня пачатку сутнасьці - экрануйце яго як &"
# glib/gmarkup.c:528\r
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"(ê напрыклад) - мажліва, нумар завялікі"
# glib/gmarkup.c:553\r
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Лучыва на сымбаль '%-.*s' не вызначае дазволены сымбаль"
# glib/gmarkup.c:570\r
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Пустое лучыва да сымбалю: мусіць уключаць нумар, напрыклад dž"
# glib/gmarkup.c:580\r
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"Лучыва да сымбалю не канчаецца кропкай з коскай; здаецца, што сымбаль & быў "
"выкарыстаны ня для пазначэньня пачатка сутнасьці - экрануйце яго як &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Незавершанае лучыва сутнасьці"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Незавершанае лучыва сымбалю"
# glib/gmarkup.c:837 glib/gmarkup.c:865 glib/gmarkup.c:896\r
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Недапушчальна закадаваны тэкст UTF-8"
# glib/gmarkup.c:837 glib/gmarkup.c:865 glib/gmarkup.c:896\r
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, 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\r
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Недапушчальна закадаваны тэкст UTF-8"
# glib/gmarkup.c:932\r
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Дакумэнт мусіць пачынацца з элемэнту (напрыклад <book>)"
# glib/gmarkup.c:970\r
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"сымбаль ня можа пачынаць назву элемэнту"
# glib/gmarkup.c:1033\r
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Дзіўны сымбаль \"%s\", чакаецца сымбаль \">\" для закрыцьця тэга элемэнту\"%s"
"\""
# glib/gmarkup.c:1120\r
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"элемэнту \"%s\""
# glib/gmarkup.c:1161\r
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"выкарыстаны недапушчальны сымбаль у назве атрыбуту"
# glib/gmarkup.c:1244\r
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"надаецца значэньне атрыбуту \"%s\" элемэнту \"%s\""
# glib/gmarkup.c:1384\r
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"s\" ня можа пачынаць назву элемэнту"
# glib/gmarkup.c:1422\r
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"\"; дапушчальным сымбалем зьяўляецца \">\""
# glib/gmarkup.c:1433\r
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
"Элемэнт \"%s\" быў закрыты, аніводны элемэнт у бягучы момант не адкрыты"
# glib/gmarkup.c:1442\r
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Элемэнт \"%s\" быў закрыты, але ў гэты час адкрыты \"%s\""
# glib/gmarkup.c:1574\r
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Дакумэнт быў пусты ці утрымліваў толькі прагалы"
# glib/gmarkup.c:1588\r
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Дакумэнт нечакана скончыўся адразу пасьля вуглавой дужкі \"<\""
# glib/gmarkup.c:1596 glib/gmarkup.c:1640\r
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"апошнім адкрытым элемэнтам"
# glib/gmarkup.c:1604\r
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Дакумэнт нечакана скончыўся, чакаецца вуглавая дужка якая закрывае тэг <%s/>"
# glib/gmarkup.c:1610\r
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Дакумэнт нечакана скончыўся ўнутры назвы элемэнту"
# glib/gmarkup.c:1615\r
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Дакумэнт нечакана скончыўся ўнутры назвы атрыбуту"
# glib/gmarkup.c:1620\r
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Дакумэнт нечакана скончыўся ўнутры элемэнту які адкрывае тэг."
# glib/gmarkup.c:1626\r
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"атрыбуту: не пазначана значэньне атрыбуту"
# glib/gmarkup.c:1633\r
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Дакумэнт нечакана скончыўся ўнутры значэньня атрыбуту"
# glib/gmarkup.c:1648\r
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Дакумэнт нечакана скончыўся ўнутры элемэнту \"%s\" які закрывае тэг"
# glib/gmarkup.c:1654\r
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Дакумэнт нечакана скончыўся ўнутры камэнтару ці інструкцыі"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "Невядомая можнасьць %s"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "Сымбалічныя спасылкі не падтрымліваюцца"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Сымбалічныя спасылкі не падтрымліваюцца"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Памылка ў радку %d: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Памылка ў часе пераўтварэньня: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
# glib/gmarkup.c:1120
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Niečakany atrybut '%s' dla elementu '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Atrybut '%s' elementu '%s' nia znojdzieny"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Niečakany značnik '%s', spadziavalisia značnika '%s'"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Niečakany značnik '%s' unutry '%s'"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "Niemahčyma znajści pravilnaha fajłu zakładak u katalohach źviestak"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Zakładka dla URI '%s' užo isnuje"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Dla URI '%s' nia znojdziena zakładak"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Nie akreśleny typ MIME ŭ zakładcy dla URI '%s'"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Nie akreślili pryvatnaha ściažka ŭ zakładcy dla URI '%s'"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Nie akreślili hrup u zakładcy dla URI '%s'"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
"Nivodnaja aplikacyja pad nazvaj '%s' nie zarehistravała zakładki dla '%s'"
# glib/gfileutils.c:745
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Prablema z razhortvańniem radka zapusku '%s' z URI '%s'"
msgstr "Pamyłka pry adčynieńni katalohu '%s': %s"
# glib/gfileutils.c:337 glib/gfileutils.c:402
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Nie atrymałasia raźmierkavać %lu bajtaŭ dla adčytańnia fajłu \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Pamyłka adčytańnia fajłu '%s': %s"
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
# glib/gfileutils.c:426
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Pamyłka čytańnia z fajłu '%s': %s"
# glib/gfileutils.c:465 glib/gfileutils.c:533
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Niemahčyma adčynić fajł '%s': %s"
# glib/gfileutils.c:479
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
"Niemahčyma atrymać atrybuty fajłu '%s': funkcyja fstat() vyvieła pamyłku: %s"
# glib/gfileutils.c:505
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Niemahčyma adčynić fajł '%s': funkcyja fdopen() vyvieła pamyłku: %s"
# glib/gfileutils.c:505
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"pamyłku: %s"
# glib/gfileutils.c:745
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Niemahčyma stvaryć fajł '%s': %s"
# glib/gfileutils.c:505
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
"Niemahčyma adčynic fajł %s' dla zapisu: funkcyja fdopen() vyvieła pamyłku: %s"
# glib/gfileutils.c:505
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Niemahčyma zapisać fajł '%s': funkcyja fwrite() vyvieła pamyłku: %s"
# glib/gfileutils.c:505
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Niemahčyma začynić fajł %s': funkcyja fclose() vyvieła pamyłku: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
"Niemahčyma vydalić najaŭny fajł '%s': funkcyja g_unlink() vyvieła pamyłku: %s"
# glib/gfileutils.c:712
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Šablon '%s' niapravilny, u im nie pavinna być '%s'"
# glib/gfileutils.c:724
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "U šablonie '%s' niama XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
# glib/gfileutils.c:745
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Niemahčyma pračytać symbalnuju spasyłku '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Symbalnyja spasyłki nie padtrymlivajucca"
msgstr "Niemahčyma zmapavać fajł '%s': funkcyja mmap() vyvieła: %s"
# glib/gmarkup.c:219
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Pamyłka ŭ %d radku pry znaku %d: "
# glib/gmarkup.c:303
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Pamyłka ŭ radku %d: %s"
# glib/gmarkup.c:382
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr "Pusty zapis '&;' adšukany; dapuščalnyja: & " < > '"
# glib/gmarkup.c:392
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"kali hety znak nie pavinien pačynać adzinki, zamianicie jaho na znak &"
# glib/gmarkup.c:428
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Nieviadomaja nazva adzinki '%s'"
# glib/gmarkup.c:482
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"nia mieŭ aznačać pačatku adzinki — zamianicie jaho na &"
# glib/gmarkup.c:528
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"znaku (naprykład ê) — mahčyma, ličba zavialikaja"
# glib/gmarkup.c:553
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Pustaja spasyłka na znak: u joj pavinien być numar, naprykład dž"
# glib/gmarkup.c:580
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"nie dla paznačeńnia pačatku adzinki — u takim vypadku zamianicie jaho jak "
"&"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Niezavieršanaja spasyłka na adzinku"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
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:978
+#: glib/gmarkup.c:1056
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:1006
+#: glib/gmarkup.c:1084
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:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Niapravilna kadavany tekst UTF-8 - niapravilny \"%s\""
# glib/gmarkup.c:932
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
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:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"pačynać nazvy adzinki"
# glib/gmarkup.c:1033
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Dziŭny znak '%s', čakaŭsia znak '>' dla zakančeńnia značnika elementu '%s'"
# glib/gmarkup.c:1120
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Dziŭny znak '%s', čakaŭsia znak '=' paśla nazvy atrybutu '%s' elementu '%s'"
# glib/gmarkup.c:1161
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"niedapuščalny znak u nazovie atrybutu"
# glib/gmarkup.c:1244
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"nadajecca značeńnie atrybutu '%s' elementu '%s'"
# glib/gmarkup.c:1384
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"pačynać nazovu elementu"
# glib/gmarkup.c:1422
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"dapuščalnym znakam źjaŭlajecca '>'"
# glib/gmarkup.c:1433
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dakument byŭ pusty albo ŭtrymlivaŭ tolki prabieły"
# glib/gmarkup.c:1588
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
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:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"— '%s' byŭ apošnim adčynienym elementam"
# glib/gmarkup.c:1604
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"značnik <%s/>"
# glib/gmarkup.c:1610
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
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:1805
+#: glib/gmarkup.c:1890
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:1810
+#: glib/gmarkup.c:1895
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:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"atrybutu: niama vartaści atrybutu"
# glib/gmarkup.c:1633
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
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:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Dakument niečakana skončyŭsia ŭnutry kamentara albo instrukcyi"
msgid "Operation was cancelled"
msgstr "Aperacyja anulavanaja"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Nieviadomy typ"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "typ fajłaŭ %s"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "typ %s"
msgid "Unexpected early end-of-stream"
msgstr "Zaŭčasny kaniec płyni"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Nienazvany"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Fajł stała nie akreślivaje pola Exec"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Niemahčyma znajści terminału, vymahanaha dla aplikacyi"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
"Niemahčyma stvaryć kanfihuracyjny kataloh %s karystalnika dla aplikacyi: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Niemahčyma stvaryć kanfihuracyjny kataloh MIME %s dla karystalnika: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Niemahčyma stvaryć fajł stała %s dla karystalnika"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Asablivaje aznačeńnie dla %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "pryłada nie zaimplementavała vysoŭvańnia (eject)"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "pryłada nie zaimplementavała apytańnia nośbitaŭ (poll)"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Aperacyja nie padtrymlivajecca"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Źmiaščalnaje mantavańnie nie isnuje"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Niemahčyma skapijavać zamiest katalohu"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Niemahčyma skapijavać kataloh zamiest inšaha katalohu"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Metavy fajł isnuje"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Niemahčyma rekursiŭna skapijavać kataloh"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Padadzienaja niapravilnaja vartaść symbalnaj spasyłki"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Śmietnica nie padtrymlivajacca"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Nazvy fajłaŭ nia mohuć utrymlivać \"%c\""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "masiŭ nie zaimplementavaŭ mantavańnia (mount)"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Nivodnaja aplikacyja nie zarehistravanaja dla pracy z hetym fajłam"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "mantavańnie nie zaimplementavała admantavańnia (unmount)"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "mantavańnie nie zaimplementavała vysoŭvańnia (eject)"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "mantavańnie nie zaimplementavała pieramantavańnia (remount)"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "mantavańnie nie zaimplementavała admantavańnia (unmount)"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Vyjściovaja płyń nie zaimplementavała zapisu (write)"
msgid "Error closing unix: %s"
msgstr "Pamyłka začynieńnia unix: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Korań fajłavaj systemy"
msgid "Error writing to unix: %s"
msgstr "Pamyłka zapisu ŭ unix: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "masiŭ nie zaimplementavaŭ vysoŭvańnia (eject)"
msgstr ""
"Project-Id-Version: glib trunk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-05-08 07:52+0300\n"
"Last-Translator: Alexander Shopov <ash@contact.bg>\n"
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Неочакван атрибут „%s“ на елемента „%s“"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Атрибутът „%s“ на елемента „%s“ не е открит"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Неочакван етикет „%s“, очакваше се „%s“"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Неочакван етикет „%s“ вътре в „%s“"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "Не може да се открие валиден файл с отметки в папките с данни"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Вече съществува отметка за адреса „%s“"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Не е открита отметка за адреса „%s“"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Не е указан видът MIME в отметката за адреса „%s“"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Не е зададен флаг за лични данни в отметката за адреса „%s“"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Не са зададени групи в отметката за адреса „%s“"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Никое приложение „%s“ не е регистрирало отметка за „%s“"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Неуспех при дописването на реда за изпълнение „%s“ с адреса „%s“"
msgid "Error opening directory '%s': %s"
msgstr "Грешка при отваряне на папка „%s“: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Неуспех при заделянето на %lu байта за четене на файла „%s“"
msgid "Error reading file '%s': %s"
msgstr "Грешка при четене на файл „%s“: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Неуспех при четене от файл „%s“: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Неуспех при отваряне на файл „%s“: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
"Неуспех при получаване на атрибутите на файл „%s“: неуспешно изпълнение на "
"fstat(): %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr ""
"Неуспех при отваряне на файл „%s“: неуспешно изпълнение на fdopen(): %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"Неуспех при преименуване на файл „%s“ на „%s“: неуспешно изпълнение на "
"g_rename(): %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Неуспех при създаване на файл „%s“: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
"Неуспех при отваряне на файл „%s“ за писане: неуспешно изпълнение на fdopen"
"(): %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Неуспех при запис на файл „%s“: неуспешно изпълнение на fwrite(): %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr ""
"Неуспех при затваряне на файл „%s“: неуспешно изпълнение на fclose(): %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
"Неуспех при изтриването на съществуващия файл „%s“: неуспешно изпълнение на "
"g_unlink(): %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Шаблонът „%s“ е неправилен, не трябва да съдържа „%s“"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Шаблонът „%s“ не съдържа XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Неуспех при четене на символната връзка „%s“: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Символни връзки не се поддържат"
"Неуспех при отваряне на файл в паметта „%s“: неуспешно изпълнение на mmap(): "
"%s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Грешка на ред %d, знак %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Грешка на ред %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Намерена е празна заместваща последователност: „&;“. Валидни "
"последователности са: „&“, „"“, „<“, „>“, „'“"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"започва със знака „&“. Ако той не трябва да започва заместваща "
"последователност, той може да се екранира така: „&“"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Знакът „%s“ не може да се съдържа в заместваща последователност"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Заместващата последователност „%s“ е неизвестна"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"амперсанд, без той да е начало на заместваща последователност. Представете "
"амперсанда чрез „&“"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Грешка при анализ на „%-.*s“, което трябва да е число в указател на знак "
"(напр. ê). Вероятно числото е твърде голямо"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Указателят на знак „%-.*s“ не представя разрешен знак при декодиране"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Празен указател на знак. Трябва да включва число, напр. dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"без той да е начало на заместваща последователност. Представете амперсанда "
"чрез „&“"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Незавършена заместваща последователност"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Незавършен указател на знак"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Неправилно кодиран текст в UTF-8 — прекалено дълга последователност"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Неправилно кодиран текст в UTF-8 — не може да се започва с този знак"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Неправилно кодиран текст в UTF-8 — „%s“ е грешен"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Документът трябва да започва с елемент (напр. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
msgstr ""
"„%s“ е неправилен знак след „<“. Името на елемент не може да започне с него"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Неподходящ знак „%s“, очаква се отварящият етикет на елемент „%s“ да завърши "
"с „>“"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Неподходящ знак „%s“, очаква се „=“ след името на атрибут „%s“ на елемент „%"
"s“"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"завърши със знак „>“ или „/“, или евентуално да продължи с атрибут. Най-"
"вероятно използвате неправилен знак в името на атрибут"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Неподходящ знак „%s“, очаква се знакът „\"“ след знака за равенство, когато "
"се присвоява стойност на атрибута „%s“ на елемент „%s“"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
msgstr ""
"„%s“ е неправилен знак след „</“. Името на елемент не може да започва с „%s“"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"„%s“ е неправилен знак при завършването на затварящ етикет с име „%s“. "
"Позволен е знакът „>“"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Елементът „%s“ е затворен, няма текущо отворен елемент"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Елементът „%s“ е затворен, но текущо е отворен елемент „%s“"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Документът е празен или съдържа само празни знаци"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Документът завършва неочаквано веднага след отваряща счупена скоба — „<“"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Документът завършва неочаквано — има отворени елементи. Последно отворен е „%"
"s“"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Документът завършва неочаквано, очаква се затваряща счупена скоба да завърши "
"етикета <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Документът завършва неочаквано в името на елемент"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Документът завършва неочаквано в името на атрибут"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Документът завършва неочаквано в отварящ етикет на елемент "
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Документът завършва неочаквано след знака за равенство следващ името на "
"атрибута. Атрибутът няма стойност"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Документът завършва неочаквано вътре в стойността на атрибут"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Документът завършва неочаквано в затварящия етикет на елемент „%s“"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Документът завършва неочаквано в коментар или инструкция за обработка"
msgid "Operation was cancelled"
msgstr "Действието е прекратено"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Непознат вид"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "Вид на файла %s"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "Вид на %s"
msgid "Unexpected early end-of-stream"
msgstr "Неочаквано ранен край на поток"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Без име"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Във файла .desktop липсва поле за изпълнение"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Не може да се открие терминал за приложението"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "Не може да се създаде папката с потребителските настройки %s: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Не може да се създаде папката с настройките за MIME %s: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Не може да се създаде файл .desktop — „%s“"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Потребителска дефиниция за %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "устройството не поддържа изваждане"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "устройството не поддържа следене за носител"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Действието не се поддържа"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Съдържащият монтиран обект не съществува"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Не може да се копира върху папка"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Папка не може да се копира върху папка"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Целевият файл съществува"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Папката не може да се копира рекурсивно"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Зададена е неправилна стойност на символна връзка"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Не се поддържа кошче"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Файловите имена не могат да съдържат „%c“"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "томът не поддържа монтиране"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Не е регистрирано приложение за обработка на този вид файлове"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "монтираният обект не поддържа демонтиране"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "монтираният обект не поддържа изваждане"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "монтираният обект не поддържа повторно монтиране"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "монтираният обект не поддържа демонтиране"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Изходният поток не поддържа запис"
msgid "Error closing unix: %s"
msgstr "Грешка при затваряне на ЮНИКС: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Коренова папка на файловата система"
msgid "Error writing to unix: %s"
msgstr "Грешка при запис към ЮНИКС: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "томът не поддържа изваждане"
msgstr ""
"Project-Id-Version: glib 0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "অপ্রত্যাশিত '%s' বৈশিষ্ট্য '%s' বস্তুর জন্য উল্লিখিত হয়েছে"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "%s' বৈশিষ্ট্য '%s' বস্তুর ক্ষেত্রে পাওয়া যায়নি"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "অপ্রত্যাশিত ট্যাগ '%s', ট্যাগ '%s' প্রত্যাশিত"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "অপ্রত্যাশিত '%s' ট্যাগ '%s'-র মধ্যে"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "data dir'র মধ্যে বৈধ বুকমার্ক ফাইল পাওয়া যায় নি"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI '%s'-র জন্য বুকমার্ক বর্তমানে উপস্থিত রয়েছে"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "URI '%s'-র জন্য বুকমার্ক পাওয়া যায় নি"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI '%s'-র বুকমার্কের ক্ষেত্রে MIME'র ধরন নির্ধারিত হয় নি"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI '%s'-র বুকমার্কের ক্ষেত্রে ব্যক্তিগত ফ্ল্যাগ চিহ্ন দেওয়া হয় নি"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI '%s'-র বুকমার্কের ক্ষেত্রে দল নির্ধারণ করা হয় নি"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "'%s' নামক কোনো অ্যাপ্লিকেশনের দ্বারা '%s' বুকমার্ক নিবন্ধিত হয় নি"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "প্রতীকি লিংক '%s' পড়তে ব্যর্থ: %s"
msgid "Error opening directory '%s': %s"
msgstr "ডাইরেক্টরি '%s' খুলতে ব্যর্থ: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "%lu বাইট, ফাইল \"%s\" পড়ার জন্য বরাদ্দ করা যায়নি"
msgid "Error reading file '%s': %s"
msgstr "ফাইল \"%s\" পড়ার সময়কালীন ভুল: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "ফাইল \"%s\" থেকে পড়াতে ব্যর্থ: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "ফাইল \"%s\" খুলতে ব্যর্থ: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "ফাইল \"%s\" এর বৈশিষ্ট্য পেতে ব্যর্থ: fstat() ব্যর্থ: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "ফাইল \"%s\" খুলতে ব্যর্থ: fdopen() ব্যর্থ: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "'%s' ফাইলের নাম '%s' তে পরিবর্তন করা যায়নি: g_rename() failed: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "ফাইল \"%s\" সৃষ্টি করতে ব্যর্থ: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "লেখার জন্য ফাইল \"%s\" খুলতে ব্যর্থ: fdopen() ব্যর্থ: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "\"%s\" ফাইলে লিখতে ব্যর্থ: fwrite() ব্যর্থ: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "'%s' ফাইল বন্ধ করতে ব্যর্থ: fclose() ব্যর্থ: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "বিদ্যমান ফাইল '%s' অপসারিত করা যায়নি: g_unlink() ব্যর্থ: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "নমুনা '%s' সঠিক নয়, '%s' থাকা উচিত্ নয়"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "'%s' টেমপ্লেটের মধ্যে XXXXXX অন্তর্ভুক্ত নেই"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "প্রতীকি লিংক '%s' পড়তে ব্যর্থ: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "প্রতীকী লিঙ্ক সমর্থিত নয়"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "ফাইল '%s' ম্যাপ করতে ব্যর্থ: mmap() ব্যর্থ: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "লাইন %d ক্যর %d এ ভুল: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "লাইন %d এ ভুল: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr "শূন্য '&;' দেখা গিয়েছে; গ্রহনযোগ্য হচ্ছে: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"কোন বস্তু (entity) এর নামের শুরুতে '%s' অক্ষরটি গ্রহনযোগ্য নয়; & অক্ষরটি একটি বস্তুর "
"নাম শুরু করে; এই এমপারস্যান্ড যদি কোনো বস্তু না হয়, তাহলে এটাকে & হিসাবে লিখুন"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "'%s' অক্ষরটি কোনো বস্তুর মাঝখানে গ্রহনযোগ্য নয়"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "'%s' নামের বস্তুটি অজানা"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"একটি বস্তু (entity) সেমিকোলন দিয়ে শেষ হয়নি; আপনি সম্ভবত এমপারস্যান্ড অক্ষরটি কোন "
"বস্তু শুরু করার জন্য ব্যবহার করেনি - সেক্ষেত্রে এস্কেপ এমপারস্যান্ড কে লিখুন &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"পার্স করতে অক্ষম '%-.*s', যা অক্ষর তথ্যসূত্র অভ্যন্তরে একটি অংক (উদাহরণ সরূপ; ê) "
"- হয়তোবা অংকটি অতি দীর্ঘ"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "অক্ষর তথ্যসূত্র '%-.*s' অনুমতিপ্রাপ্ত অক্ষর এনকোড করেনা"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "শূন্য অক্ষরের রেফারেন্স; dž এর মত সংখা থাকতে হবে"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"অক্ষরের রেফারেন্স সেমিকোলন দিয়ে শেষ হয়নি; আপনি সম্ভবত এমপারস্যান্ড অক্ষরটি কোন বস্তু "
"শুরু করার জন্য ব্যবহার করেনি - সেক্ষেত্রে এস্কেপ এমপারস্যান্ড কে লিখুন &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "অসম্পূর্ণ বস্তুর রেফারেন্স"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "অসম্পূর্ণ অক্ষরের রেফারেন্স"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "অগ্রহনযোগ্য ইউটিএফ-৮ টেক্সট"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "অগ্রহনযোগ্য ইউটিএফ-৮ টেক্সট"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "অগ্রহনযোগ্য ইউটিএফ-৮ টেক্সট"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "ডকুউমেন্ট একটি এলিমেন্ট দিয়ে শুরু "
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "'<' অক্ষরটির পরে '%s' গ্রহনযোগ্য নয়; এটি কোন এলিমেন্টের নাম শুরু করতে পারেনা"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"অসামঞ্জস্যকর অক্ষর '%s', এলিমেন্ট '%s' এর ট্যগ শেষ করার জন্য '>' অক্ষরটি আশা করা হয়"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"বেজোড় অক্ষর '%1$s', এলিমেন্ট '%3$s' এর অ্যাট্রিবিউট নাম '%2$s' এর পর একটি '=' "
"প্রত্যাশিত"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"প্রত্যাশিত, অথবা একটি ঐচ্ছিক অ্যাট্রিবিউট; সম্ভবত আপনি বৈশিষ্ট্য নামে অবৈধ অক্ষর "
"ব্যবহার করেছেন"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"বেজোড় অক্ষর '%1$s', এলিমেন্ট '%3$s' এর অ্যাট্রিবিউট নাম '%2$s' এর মান দেয়ার সময়, "
"'=' চিহ্নটির পর একটি খোলা উদ্ধৃতি চিহ্ন আব্যশক"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"অক্ষর '</' কে অনুসরণকারী '%s' একটি বৈধ অক্ষর নয়; '%s' দিয়ে কোনো এলিমেন্টের নাম "
"শুরু করা বৈধ নয়"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"বন্ধ এলিমেন্ট নাম '%2$s' কে অনুসরণকারী '%1$s' একটি বৈধ অক্ষর নয়; সমর্থিত অক্ষর "
"হচ্ছে '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "'%s' এলিমেন্টটি বন্ধ ছিল, এখন খোলা এলিমেন্ট নেই"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "'%s' এলিমেন্টটি বন্ধ ছিল, কিন্তু এখন '%s' এলিমেন্টটি খোলা"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "ডকুউমেন্ট শূণ্য ছিল অথবা সুধু ওয়াইটস্পেইস ছিল"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "একটি কোণ বন্ধনী '<' খোলা থাকায় নথী অপ্রত্যাশিতভাবে শেষ হয়েছে"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
msgstr ""
"উপাদান খোলা অবস্থায় নথী অপ্রত্যাশিতভাবে শেষ হয়েছে - '%s' ছিল শেষ খোলা উপাদান"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"নথী অপ্রত্যাশিতভাবে শেষ হয়েছে, প্রত্যাশিতভাবে দৃষ্ট কারণ একটি কোণ বন্ধনী যার শেষে <%"
"s/> ট্যাগ রয়েছে"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "একটি এলিমেন্ট নাম অভ্যন্তরে নথী অপ্রত্যাশিতভাবে শেষ হয়েছে"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "একটি বৈশিষ্ট্য নাম অভ্যন্তরে নথী অপ্রত্যাশিতভাবে শেষ হয়েছে"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "একটি এলিমেন্ট-ওপেনিং ট্যাগ অভ্যন্তরে নথী অপ্রত্যাশিতভাবে শেষ হয়েছে"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"বৈশিষ্ট্য নাম অনুসরণকরী সমান চিহ্নের পর নথী অপ্রত্যাশিতভাবে শেষ হয়েছে; কোন বৈশিষ্ট্য "
"মান নয়"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "একটি বৈশিষ্ট্য মান এর অভ্যন্তরে নথী অপ্রত্যাশিতভাবে শেষ হয়েছে"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "নথী অপ্রত্যাশিতভাবে শেষ হয়েছে উপাদান '%s' এর বন্ধ ট্যাগ এর অভ্যন্তরে"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "নথী অপ্রত্যাশিতভাবে শেষ হয়েছে একটি মন্তব্য বা প্রসেসরত নির্দেশের অভ্যন্তরে"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "অজানা অপশন %s"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "প্রতীকী লিঙ্ক সমর্থিত নয়"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "প্রতীকী লিঙ্ক সমর্থিত নয়"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
#, fuzzy
msgid "No application is registered as handling this file"
msgstr "'%s' নামক কোনো অ্যাপ্লিকেশনের দ্বারা '%s' বুকমার্ক নিবন্ধিত হয় নি"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "লাইন %d এ ভুল: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "%s বিকল্প পার্স করতে ব্যর্থ"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: bn_IN\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-10 12:49+0530\n"
"Last-Translator: Runa Bhattacharjee <runab@fedoraproject.org>\n"
"Language-Team: Bengali INDIA <discuss@ankur.co.in>\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "অপ্রত্যাশিত '%s' বৈশিষ্ট্য '%s' বস্তুর জন্য উল্লিখিত হয়েছে"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "'%s' বৈশিষ্ট্য '%s' বস্তুর ক্ষেত্রে পাওয়া যায়নি"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "অপ্রত্যাশিত ট্যাগ '%s', ট্যাগ '%s' প্রত্যাশিত"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "অপ্রত্যাশিত '%s' ট্যাগ '%s'-র মধ্যে"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "data dir'র মধ্যে বৈধ বুকমার্ক ফাইল পাওয়া যায়নি"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI '%s'-র জন্য বুকমার্ক বর্তমানে উপস্থিত রয়েছে"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "URI '%s'-র জন্য বুকমার্ক পাওয়া যায়নি"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI '%s'-র বুকমার্কের ক্ষেত্রে MIME'র ধরন নির্ধারিত হয়নি"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI '%s'-র বুকমার্কের ক্ষেত্রে ব্যক্তিগত ফ্ল্যাগ চিহ্ন দেওয়া হয়নি"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI '%s'-র বুকমার্কের ক্ষেত্রে দল নির্ধারণ করা হয়নি"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "'%s' নামক কোনো অ্যাপ্লিকেশনের দ্বারা '%s' বুকমার্ক নিবন্ধিত হয়নি"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "exec পংক্তি '%s'-টি URI '%s' সহ প্রসারণ করতে ব্যর্থ"
msgid "Error opening directory '%s': %s"
msgstr "'%s' ডিরেক্টরি খুলতে ব্যর্থ: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "%lu বাইট, \"%s\" ফাইল পড়ার জন্য বরাদ্দ করা যায়নি"
msgid "Error reading file '%s': %s"
msgstr "'%s' ফাইল পড়তে সমস্যা: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "'%s' ফাইল থেকে পড়তে ব্যর্থ: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "'%s' ফাইল খুলতে ব্যর্থ: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "'%s' ফাইলের বৈশিষ্ট্য প্রাপ্ত করতে ব্যর্থ: fstat() বিফল: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "'%s' ফাইল খুলতে ব্যর্থ: fdopen() বিফল: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "'%s' ফাইলের নাম '%s'-এ পরিবর্তন করতে ব্যর্থ: g_rename() বিফল: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "'%s' ফাইল নির্মাণ করতে ব্যর্থ: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "লেখার উদ্দেশ্যে '%s' খুলতে ব্যর্থ: fdopen() বিফল: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "'%s' ফাইলে লিখতে ব্যর্থ: fwrite() বিফল: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "'%s' ফাইল বন্ধ করতে ব্যর্থ: fclose() বিফল: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "বিদ্যমান ফাইল '%s' অপসারিত করা যায়নি: g_unlink() ব্যর্থ: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "নমুনা '%s' সঠিক নয়, '%s' থাকা উচিত নয়"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "'%s' টেমপ্লেটের মধ্যে XXXXXX অন্তর্ভুক্ত নেই"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f কিলোবাইট"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f মেগাবাইট"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f গিগাবাইট"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "'%s' সিম্বোলিঙ্ক লিঙ্ক পড়তে ব্যর্থ: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "সিম্বোলিক লিঙ্ক সমর্থিত হয় না"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' ফাইল ম্যাপ করতে ব্যর্থ: mmap() বিফল: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "পংক্তি %d অক্ষর %d'এ ত্রুটি: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "পংক্তি %d'এ ত্রুটি: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"তথ্যবিহীন স্বত্বা '&;' প্রদর্শিত; বৈধ স্বত্বা হল: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"এই অ্যাম্পারসেন্ড চিহ্নটি স্বত্বার ক্ষেত্রে ব্যবহৃত না হলে & রূপে এটিকে এস্কেপ করানো "
"যাবে"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "স্বতার নামে '%s' অক্ষরের ব্যবহার বৈধ নয়"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "'%s' নামের স্বত্বা অজানা"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"স্বত্বার নাম সেমিকোলোন চিহ্ন দ্বারা সমাপ্ত হয়নি; সম্ভবত আপনি স্বত্বা হিসাবে ব্যবহারের "
"উদ্দেশ্যে এম্পারসেন্ড চিহ্ন প্রয়োগ করেননি - & রূপে এম্পারসেন্ড এস্কেপ করানো যাবে"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"'%-.*s' পার্স করতে ব্যর্থ, এটি কোনো অক্ষরের রেফারেন্সের মধ্যে একটি সংখ্যা হওয়া উচিত "
"(উদাহরণস্বরূপ ê) - সম্ভবত সংখ্যাটি অত্যাধিক বড়"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "'%-.*s' অক্ষরের রেফারেন্সের মধ্যে অনুমোদিত অক্ষর এনকোড করা হয়নি"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "অক্ষর রেফারেন্স ফাঁকা; dž'র অনুরূপ সংখ্যা উপস্থিত আবশ্যক"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"ব্যবহারের উদ্দেশ্যে এম্পারসেন্ড চিহ্ন প্রয়োগ করেননি - & রূপে এম্পারসেন্ড এস্কেপ "
"করানো যাবে"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "স্বত্বার রেফারেন্স অসম্পূর্ণ"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "অক্ষরের রেফারেন্স অসম্পূর্ণ"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "অবৈধ UTF-8 এনকোডিং সহ টেক্সট - অত্যাধিক লম্বা পংক্তি"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "অবৈধ UTF-8 এনকোডিং সহ টেক্সট - প্রারম্ভিক অক্ষর নয়"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "অবৈধ UTF-8 এনকোডিং সহ টেক্সট - বৈধ '%s' নয়"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "নথি কোনো এলিমেন্ট দ্বারা আরম্ভ হওয়া আবশ্যক (উদাহরণস্বরূপ <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
msgstr ""
"'<' অক্ষরের পরে '%s'-র ব্যবহার বৈধ নয়; এর দ্বারা এলিমেন্টের নাম আরম্ভ করা যাবে না"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"'%s' অক্ষর প্রত্যাশিত নয়, '%s' এলিমেন্টের প্রারম্ভিক ট্যাগ সমাপ্ত করার উদ্দেশ্যে '>' "
"অক্ষর প্রত্যাশিত"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"'%1$s' অক্ষর প্রত্যাশিত নয়, '%3$s' এলিমেন্টের '%2$s' নামক বৈশিষ্ট্যের নামের পরে "
"একটি '=' চিহ্ন প্রত্যাশিত"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"অথবা '/' চিহ্ন অথবা কোনো বৈশিষ্ট্যর উপস্থিতি কাম্য; সম্ভবত কোনো বৈশিষ্ট্যের নামের "
"মধ্যে অবৈধ অক্ষর ব্যবহৃত হয়েছে"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"'%1$s' অক্ষর অপ্রত্যাশিত, '%3$s' এলিমেন্টের '%2$s' বৈশিষ্ট্যের মান নির্ধারণের "
"উদ্দেশ্যে সমান চিহ্নের (=) পরে একটি উদ্ধৃতি চিহ্নের প্রারম্ভিক অংশ উপস্থিতি প্রত্যাশিত"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' অক্ষরের ব্যবহার '</'-র পশ্চাত বৈধ নয়; '%s' দ্বারা কোনো এলিমেন্টের নাম আরম্ভ "
"করা যাবে না"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%2$s' বদ্ধ এলিমেন্টের নামের পশ্চাত '%1$s' অক্ষরের ব্যবহার বৈধ নয়; অনুমোদিত অক্ষর "
"হল '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "'%s' এলিমেন্ট বদ্ধ অবস্থায়, বর্তমানে কোনো এলিমেন্ট খোলা অবস্থায় নেই"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "'%s' এলিমেন্ট বদ্ধ অবস্থায়, বর্তমানে '%s' এলিমেন্ট খোলা অবস্থায় রয়েছে"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "ডকুমেন্ট সম্ভবত ফাঁকা অথবা শুধুমাত্র শূণ্যস্থান উপস্থিত"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"তেরছা বন্ধনীর প্রারম্ভিক চিহ্নের '<' ঠিক পরে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"খোলা এলিমেন্টসহ ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে - '%s' এলিমেন্ট সর্বশেষ খোলা "
"হয়েছিল"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"নথি অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে, <%s/> ট্যাগ সমাপ্তির জন্য তেরছা বন্ধনী চিহ্নের "
"অন্তিম অংশের উপস্থিতি প্রত্যাশিত"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "এলিমেন্টের নামের মধ্যে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "বৈশিষ্ট্যের নামের মধ্যে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "এলিমেন্টের প্রারম্ভিক ট্যাগের মধ্যে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"বৈশিষ্ট্যের নামের পরে উপস্থিত সমান চিহ্নের (=) পরে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত "
"হয়েছে; বৈশিষ্ট্যের মান অনুপস্থিত"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "বৈশিষ্ট্যের মানের মধ্যে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "'%s' এলিমেন্টের অন্তিম ট্যাগের মধ্যে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"কোনো মন্তব্য অথবা প্রক্রিয়াকরণের নির্দেশের মধ্যে ডকুমেন্ট অপ্রত্যাশিতরূপে সমাপ্ত হয়েছে"
msgid "Operation was cancelled"
msgstr "কর্ম বাতিল করা হয়েছে"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "অজানা প্রকৃতি"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s ফাইলের ধরন"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s ধরন"
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "নামবিহীন"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "ডেস্কটপ ফাইলের মধ্যে Exec ফিল্ড"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "অ্যাপ্লিকেশনের জন্য আবশ্যক টার্মিনাল পাওয়া যায়নি"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "উইজার অ্যাপ্লিকেশনের কনফিগারেশন ফোল্ডার %s নির্মাণ করতে ব্যর্থ: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "ইউজার MIME কনফিগারেশন ফোল্ডার %s নির্মাণ করতে ব্যর্থ: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "ইউজার ডেস্কটপ ফাইল %s নির্মাণ করতে ব্যর্থ"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "%s-র জন্য স্বনির্ধারত ব্যাখ্যা"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "ড্রাইভ দ্বারা ইজেক্ট কর্ম সঞ্চালিত হয় না"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "কর্ম সমর্থিত হয় না"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "ধারণকারী মাউন্ট উপস্থিত নেই"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "ডিরেক্টরির উপরে কপি করা যাবে না"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "ডিরেক্টরির উপর ডিরেক্টরি কপি করা যায়নি"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "উদ্দিষ্ট ফাইল উপস্থিত রয়েছে"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "অবৈধ সিম-লিঙ্ক মান উপলব্ধ করা হয়েছে"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "আবর্জনা সমর্থিত হয় না"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "ফাইলের নামের মধ্যে '%c' ব্যবহার করা যাবে না"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "ভলিউম দ্বারা mount প্রয়োগ করা হয় না"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "চিহ্নিত ফাইল ব্যবস্থাপনার উদ্দেশ্যে কোনো অ্যাপ্লিকেশন নিবন্ধিত হয়নি"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "ভলিউম দ্বারা mount প্রয়োগ করা হয় না"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "unix বন্ধ করতে সমস্যা: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "ফাইল-সিস্টেমের root"
msgid "Error writing to unix: %s"
msgstr "unix-এ লিখতে সমস্যা: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib.glib-2-4\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0.2\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, fuzzy, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Čudan znak '%s', očekivan znak '=' nakon osobine '%s' elementa '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Neuspješno čitanje simboličkog linka '%s': %s"
msgid "Error opening directory '%s': %s"
msgstr "Greška tokom otvaranja direktorija '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Nisam mogao dodijeliti %lu bajtova za čitanje datoteke \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Greška tokom čitanja datoteke '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Neuspješno čitanje datoteke '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Neuspješno otvaranje datoteke '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Neuspješno preuzimanje osobina datoteke '%s': fstat() neuspješan: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, fuzzy, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Neuspješno pravljenje datoteke '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, fuzzy, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, fuzzy, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, fuzzy, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Nevažeći šablon '%s', ne bi trebao sadržavati '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Šablon '%s' ne završava sa XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Neuspješno čitanje simboličkog linka '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Simbolički linkovi nisu podržani"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Neuspješno otvaranje datoteke '%s': fdopen() neuspješan: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Greška u %d. redu, znak %d: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Greška u %d. redu: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Primijećen prazan entitet '&;'; važeći entiteti su: & " < > "
"'"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"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 &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Nepoznato ime entiteta '%s'"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"namjere započinjanja entiteta - izbjegnite korištenje znaka & upisivanjem "
"&"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, fuzzy, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Neuspješno tumačenje '%s', što je trebalo biti cifra unutar reference znaka "
"(na primjer: ê) - možda je broj prevelik"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Prazna referenca znaka; trebala bi sadržavati broj kao npr. dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"bez namjere započinjanja entiteta - izbjegnite korištenje znaka & "
"upisivanjem &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Nedovršena referenca entiteta"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Nedovršena referenca znaka"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Neispravno UTF-8 kodirani tekst"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Neispravno UTF-8 kodirani tekst"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Neispravno UTF-8 kodirani tekst"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokument mora početi elementom (npr. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' je nevažeći prateći znak nakon znaka '<'; ne može započeti naziv "
"elementa"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Čudan znak '%s', očekivan znak '>' radi okončanja početne oznake elementa '%"
"s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, 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:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"elementa '%s' ili eventualno osobine; možda je korišten nevažeći znak u "
"imenu osobine"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Čudan znak '%s', očekivan navodni znak nakon znaka jednakosti pri davanju "
"vrijednosti osobini '%s' elementa '%s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' je nevažeći prateći znak nakon znakova '</'; '%s' ne može započeti "
"naziv elementa"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' je nevažeći prateći znak nakon zatvaranja elementa '%s'; dopušteni znak "
"je '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element '%s' je zatvoren, trenutno nema otvorenih elemenata"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokument je bio prazan ili je sadržavao samo prazna polja"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Neočekivan kraj dokumenta nakon otvorene zagrade '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Neočekivan kraj dokumenta uz još otvorene elemente - element '%s' je otvoren "
"posljednji"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Neočekivan kraj dokumenta, očekivano zatvaranje zagrade radi okončanja "
"oznake <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Neočekivan kraj dokumenta unutar imena elementa"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Neočekivan kraj dokumenta unutar imena osobine"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Neočekivan kraj dokumenta unutar oznake za otvaranje elementa"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Neočekivan kraj dokumenta nakon pratećeg znaka jednakosti iza naziva "
"osobine; nedostaje vrijednost osobine"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Neočekivan kraj dokumenta unutar vrijednosti atributa"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Neočekivan kraj dokumenta unutar komentara ili instrukcije procesiranja"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr ""
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "Simbolički linkovi nisu podržani"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Simbolički linkovi nisu podržani"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Greška u %d. redu: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Greška tokom pretvaranja: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib 2.8\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-11 15:36+0100\n"
"Last-Translator: Gil Forcada <gilforcada@guifi.net>\n"
"Language-Team: Catalan <tradgnome@softcatala.org>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "No s'esperava l'atribut «%s» per a l'element «%s»"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "No s'ha trobat l'atribut «%s» de l'element «%s»"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "No s'esperava l'etiqueta «%s», s'esperava «%s»"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "No s'esperava l'etiqueta «%s» dins «%s»"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
"No s'ha trobat cap fitxer d'adreces d'interès dins dels directoris de dades"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Ja existeix una adreça d'interès per a l'URI «%s»"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "No s'ha trobat cap adreça d'interès per a l'URI «%s»"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "No hi ha cap tipus MIME definit a l'adreça d'interès per a l'URI «%s»"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
"No hi ha cap senyalador privat definit a l'adreça d'interès per a l'URI «%s»"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "No hi ha cap grup establert a l'adreça d'interès per a l'URI «%s»"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
"No hi ha cap aplicació amb el nom «%s» que hagi registrat l'adreça d'interès «%"
"s»"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "No s'ha pogut expandir la línia d'execució «%s» amb URI «%s»"
msgid "Error opening directory '%s': %s"
msgstr "S'ha produït un error en obrir el directori «%s»: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "No s'ha pogut assignar %lu bytes per a llegir el fitxer «%s»"
msgid "Error reading file '%s': %s"
msgstr "S'ha produït un error en llegir el fitxer «%s»: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "No s'ha pogut llegir del fitxer «%s»: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "No s'ha pogut obrir el fitxer «%s»: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
"No s'ha pogut obtenir els atributs del fitxer «%s»: ha fallat la funció fstat"
"(): %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "No s'ha pogut obrir el fitxer «%s»: ha fallat la funció fdopen(): %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"No s'ha pogut canviar el nom del fitxer «%s» a «%s»: ha fallat la funció "
"g_rename(): %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "No s'ha pogut crear el fitxer «%s»: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
"No s'ha pogut obrir el fitxer «%s» per a escriptura: ha fallat la funció "
"fdopen(): %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "No s'ha pogut escriure el fitxer «%s»: ha fallat la funció fwrite(): %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "No s'ha pogut tancar el fitxer «%s»: ha fallat la funció fclose(): %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
"No s'ha pogut suprimir el fitxer existent «%s»: ha fallat la funció g_unlink"
"(): %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "La plantilla «%s» no és vàlida, no hauria de tenir cap «%s»"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "La plantilla «%s» no conté XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "No s'ha pogut llegir l'enllaç simbòlic «%s»: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "No es poden utilitzar els enllaços simbòlics"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "No s'ha pogut mapejar el fitxer «%s»: ha fallat la funció mmap(): %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "S'ha produït un error a la línia %d caràcter %d:"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "S'ha produït un error a la línia %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"S'ha vist una entitat buida «&;». Les entitats vàlides són: & " < "
"> '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"comencen amb el caràcter &. Si amb aquest signe no es vol indicar una "
"entitat, substituïu-lo per &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "El caràcter «%s» no és vàlid dins d'un nom d'entitat"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "No es coneix el nom de l'entitat «%s»"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"L'entitat no acaba amb un punt i coma. Segurament heu utilitzat un caràcter "
"«&» sense intenció d'iniciar una entitat. Substituïu el caràcter «&» per &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"No s'ha pogut analitzar «%-.*s», hi hauria d'haver hagut un dígit dins un "
"caràcter de referència (per exemple ê) - potser el dígit és massa llarg"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "El caràcter de referència «%-.*s» no codifica un caràcter permès"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr ""
"El caràcter de referència és buit. Hauria d'incloure un dígit com ara dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"utilitzat un caràcter «&» sense intenció d'iniciar una entitat. Substituïu el "
"caràcter «&» per &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Referència a una entitat no acabada"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Referència a un caràcter no acabada"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr ""
"El text no està codificat correctament a UTF-8 - la seqüència és massa llarga"
# FIXME: "caràcter estrella" (josep)
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr ""
"El text no està codificat correctament a UTF-8 - no és un caràcter estrella"
# FIXME: això no funcionarà en català (josep)
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "El text no està codificat correctament a UTF-8 - no és un vàlid «%s»"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "El document ha de començar amb un element (p.ex. <llibre>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"«%s» no és un caràcter vàlid després d'un caràcter «<». No pot començar un nom "
"d'element"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"S'ha trobat un caràcter estrany «%s». S'esperava un «>» per acabar l'etiqueta "
"d'inici de l'element «%s»"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"S'ha trobat un caràcter estrany «%s». S'esperava un «=» després del nom "
"d'atribut «%s» de l'element «%s»"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"finalitzar l'etiqueta d'inici de l'element «%s», o opcionalment un atribut. "
"Potser heu utilitzat un caràcter no vàlid en un nom d'atribut"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"S'ha trobat un caràcter estrany «%s». S'esperaven unes cometes d'obertura "
"després del signe «=» en donar valor a l'atribut «%s» de l'element «%s»"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"«%s» no és un caràcter vàlid després dels caracters «</»; «%s» no hauria "
"d'iniciar un nom d'element"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"«%s» no és un caràcter vàlid després del nom d'element de tancament «%s». El "
"caràcter permès és «>»"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "L'element «%s» estava tancat. Actualment no hi ha cap element obert"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "L'element «%s» estava tancat. L'element obert actualment és «%s»"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "El document era buit o només contenia espais en blanc"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"El document ha acabat de manera inesperada immediatament després del símbol "
"«<»"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"El document ha acabat de manera inesperada amb elements encara oberts. «%s» "
"era l'últim element obert"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"El document ha acabat de manera inesperada. S'esperava trobar un símbol «>» "
"que acabés l'etiqueta <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "El document ha acabat de manera inesperada enmig d'un nom d'element"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "El document ha acabat de manera inesperada enmig d'un nom d'atribut"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"El document ha acabat de manera inesperada enmig d'una etiqueta d'obertura "
"d'un element."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"El document ha acabat de manera inesperada després d'un signe d'igual "
"després d'un nom d'atribut. No hi ha cap valor d'atribut"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "El document ha acabat de manera inesperada enmig d'un valor d'atribut"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"El document ha acabat de manera inesperada enmig de l'etiqueta de tancament "
"de l'element «%s»"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"El document ha acabat de manera inesperada enmig d'un comentari o una "
msgid "Operation was cancelled"
msgstr "S'ha cancel·lat l'operació"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Tipus desconegut"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "tipus de tixer %s"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "tipus %s"
msgid "Unexpected early end-of-stream"
msgstr "No s'esperava un final de flux tant aviat"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Sense nom"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "El fitxer d'escriptori no especificava el camp d'execucció"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "No s'ha pogut trobar el terminal que demanava l'aplicació"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
"No s'ha pogut crear el directori de configuració de l'aplicació de l'usuari %"
"s: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
"No s'ha pogut crear el directori de configuració MIME de l'usuari %s: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "No s'ha pogut crear el fitxer d'escriptori de l'usuari %s"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Definició personalitzada per a %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "la unitat no implementa l'expulsió"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "la unitat no implementa l'enquesta per si hi ha un medi"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "L'operació no està implementada"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "No existeix el punt de muntatge contenidor"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "No es pot copiar al directori"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "No es pot copiar el directori al directori"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Ja existeix el fitxer de destinació"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "No es pot copiar el directori de forma recursiva"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "El valor donat per a l'enllaç simbòlic no és vàlid"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "No es pot utilitzar la paperera"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "En els noms de fitxers no pot haver-hi «%c»"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "el volum no implementa el muntatge"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
"No hi ha cap aplicació que s'hagi registrat per a gestionar aquest fitxer"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "el muntatge no implementa el desmuntatge"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "el muntatge no implementa l'expulsió"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "el muntatge no implementa el tornar-se a muntar"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "el muntatge no implementa el desmuntatge"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "El flux de sortida no implementa l'escriptura"
msgid "Error closing unix: %s"
msgstr "S'ha produït un error en tancar des de UNIX: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Arrel del sistema de fitxers"
msgid "Error writing to unix: %s"
msgstr "S'ha produït un error en escriure a UNIX: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "el volum no implementa l'expulsió"
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-04-02 01:48+0100\n"
"Last-Translator: Petr Kovar <pknbe@volny.cz>\n"
"Language-Team: Czech <gnome-cs-list@gnome.org>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Neočekávaný atribut \"%s\" prvku \"%s\""
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Atribut \"%s\" prvku \"%s\" nenalezen"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Neočekávaná značka \"%s\", byla očekávána značka \"%s\""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Neočekávaná značka \"%s\" v \"%s\""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "V datových adresářích nebyl nalezen platný soubor záložek"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Záložka URI \"%s\" již existuje"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Nebyla nalezena záložka URI \"%s\""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "V záložce URI \"%s\" není definován žádný typ MIME"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "V záložce URI \"%s\" definován žádný soukromý příznak"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Žádné skupiny nenastaveny v záložce URI \"%s\""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Žádná aplikace s názvem \"%s\" nezaregistrovala záložku \"%s\""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Nelze rozšířit řádek exec \"%s\" pomocí URI \"%s\""
msgid "Error opening directory '%s': %s"
msgstr "Chyba při otevírání adresáře \"%s\": %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Nelze alokovat %lu bajtů k přečtení souboru \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Chyba čtení souboru \"%s\": %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Chyba při čtení ze souboru \"%s\": %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Nelze otevřít soubor \"%s\": %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Nelze získat atributy souboru \"%s\": fstat() selhalo: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Nelze otevřít soubor \"%s\": fdopen() selhalo: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Nelze přejmenovat soubor \"%s\" na \"%s\": g_rename() selhalo: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Nelze vytvořit soubor \"%s\": %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Nelze otevřít soubor \"%s\" k zápisu: fdopen() selhalo: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Nelze zapisovat do souboru \"%s\": fwrite() selhalo: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Nelze zavřít soubor \"%s\": fclose() selhalo: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Existující soubor \"%s\" nelze odstranit: g_unlink() selhalo: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Šablona \"%s\" je neplatná, neměla by obsahovat \"%s\""
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Šablona \"%s\" neobsahuje XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Nelze přečíst symbolický odkaz \"%s\": %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Symbolické odkazy nejsou podporovány"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Nelze otevřít soubor \"%s\": mmap() selhalo: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Chyba na řádku %d, znak %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Chyba na řádku %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Nalezena prázdná entita \"&;\", platnými entitami jsou: & " < "
"> '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"Znak \"%s\" není platný na začátku názvu entity; počátečním znakem entity je "
"&; v případě, že nemá být entitou, je zapotřebí ho napsat jako &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Znak \"%s\" je v názvu entity neplatný"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Název entity \"%s\" není znám"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Entita nekončí středníkem; pravděpodobně jste použili znak & bez úmyslu "
"začít entitu - zapište prosím ligaturu et jako &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Nelze zpracovat \"%-.*s\", což by mělo být číslo v odkazu na znak (například "
"ê) - číslo je možná příliš velké"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Odkaz na znak \"%-.*s\" nekóduje povolený znak"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr ""
"Prázdný odkaz na znak. Odkaz by měl obsahovat číslice, například dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"Odkaz na znak nekončí středníkem; pravděpodobně jste použili znak & bez "
"úmyslu začít entitu - zapište prosím ligaturu et jako &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Neukončený odkaz na entitu"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Neukončený odkaz na znak"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Neplatný text v kódování UTF-8 - příliš dlouhá posloupnost"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Neplatný text v kódování UTF-8 - není počátečním znakem"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Neplatný text v kódování UTF-8 - není platné \"%s\""
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokument musí začínat prvkem (například: <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
msgstr ""
"\"%s\" není platný znak po znaku \"<\"; nesmí s ním začínat název prvku"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Zvláštní znak \"%s\", byl očekáván znak \">\" k ukončení počáteční značky "
"prvku \"%s\""
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Zvláštní znak \"%s\", po názvu atributu \"%s\" prvku \"%s\" bylo očekáváno "
"\"=\""
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"značky prvku \"%s\", nebo případně atribut; pravděpodobně jste použili "
"neplatný znak v názvu atributu"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Zvláštní znak \"%s\", po znaku rovnítka při udávání hodnoty atributu \"%s\" "
"prvku \"%s\" byly očekávány uvozovky"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"\"%s\" není platný znak po znacích \"</\"; znakem \"%s\" nesmí začínat název "
"prvku"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"\"%s\" není povoleným znakem po ukončovacím názvu prvku \"%s\"; povoleným "
"znakem je \">\""
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Prvek \"%s\" byl uzavřen, žádný prvek není momentálně otevřen"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Byl uzavřen prvek \"%s\", ale aktuálně je otevřen prvek \"%s\""
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokument je prázdný nebo obsahuje pouze mezery"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokument neočekávaně skončil ihned po otevírací značce \"<\""
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Dokument neočekávaně skončil, prvky jsou stále otevřeny - poslední otevřený "
"prvek byl \"%s\""
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
msgstr ""
"Dokument neočekávaně skončil, byla očekávána uzavírací závorka značky <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokument neočekávaně skončil uvnitř názvu prvku"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokument neočekávaně skončil uvnitř názvu atributu"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokument neočekávaně skončil ve značce otevírající prvek."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Dokument neočekávaně skončil po znaku přiřazení následujícím za názvem "
"atributu; chybí hodnota atributu"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokument neočekávaně skončil uvnitř hodnoty atributu"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Dokument neočekávaně skončil uvnitř uzavírací značky prvku \"%s\""
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokument neočekávaně skončil uvnitř komentáře nebo instrukce pro zpracování"
msgid "Operation was cancelled"
msgstr "Operace byla zrušena"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Neznámý typ"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "typ souboru %s"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "typ %s"
msgid "Unexpected early end-of-stream"
msgstr "Neočekávaný časný konec proudu"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Bez názvu"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "V souboru desktop nezadáno pole Exec"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Nelze nalézt terminál vyžadovaný pro aplikaci"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "Nelze vytvořit uživatelskou konfigurační složku aplikace %s: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Nelze vytvořit uživatelskou konfigurační složku MIME %s: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Nelze vytvořit uživatelský soubor desktop %s"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Vlastní definice %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "mechanika neprovádí vysouvání"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "mechanika neprovádí dotazování na média"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Operace není podporována"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Obsahující připojené neexistuje"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Nelze kopírovat nad adresář"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Nelze kopírovat adresář nad adresář"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Cílový soubor existuje"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Adresář nelze kopírovat rekurzivně"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Zadaný symbolický odkaz je neplatný"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Zahozené není podporováno"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Názvy souborů nemohou obsahovat \"%c\""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "svazek neprovádí připojení"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Žádná aplikace není zaregistrována k obsluze tohoto souboru"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "připojené neprovádí odpojení"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "připojené neprovádí vysouvání"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "připojené neprovádí opakované připojení"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "připojené neprovádí odpojení"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Výstupní proud neprovádí zápis"
msgid "Error closing unix: %s"
msgstr "Chyba při zavírání datového proudu Unix: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Kořen systému souborů"
msgid "Error writing to unix: %s"
msgstr "Chyba při zápisu do datového proudu Unix: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "svazek neprovádí vysouvání"
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Priodwedd annisgwyl '%s' i'r elfen '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Priodwedd '%s' o elfen '%s' heb ei chanfod"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Tag annisgwyl '%s'; disgwyliwyd y tag '%s'"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Tag annisgwyl '%s' o fewn '%s'"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
#, fuzzy
msgid "No valid bookmark file found in data dirs"
msgstr "Ni ddarganfuwyd ffeil llyfrnodau ddilys yn y cyfeiriaduron data"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Llyfrnod ar gyfer yr URI '%s' yn bodoli eisoes"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Dim llyfrnod wedi ei ganfod ar gyfer yr URI '%s'"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Dim math MIME wedi'i ddiffinio yn y llyfrnod ar gyfer yr URI '%s'"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Dim baner breifat wedi'i diffinio yn y llyfrnod ar gyfer yr URI '%s'"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Dim grwpiau wedi'u gosod yn y llyfrnod ar gyfer yr URI '%s'"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Does dim un rhaglen o'r enw '%s' wedi cofrestru llyfrnod ar gyfer '%s'"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Methwyd darllen y cyswllt symbolaidd '%s': %s"
msgid "Error opening directory '%s': %s"
msgstr "Gwall y cyfeiriadur '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Methwyd canfod %lu beit er mwyn darllen y ffeil \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Gwall wrth ddarllen ffeil '%s': %s "
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Methwyd darllen o'r ffeil '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Methwyd agor y ffeil '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Methwyd darllen agweddau ffeil '%s': methiant fstat(): %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Methwyd agor y ffeil '%s': methiant yn fdopen(): %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Methwyd ail-enwi'r ffeil'%s' i '%s': methodd g_rename(): %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Methwyd creu'r ffeil '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Methu agor y ffeil '%s' er mwyn ysgrifennu iddi: methodd fdopen(): %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Methwyd ysgrifennu i'r ffeil '%s': methodd fwrite(): %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Methwyd cau'r ffeil '%s': methodd fclose(): %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Methu tynnu'r ffeil '%s' oedd eisoes yn bodoli: methodd g_unlink(): %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Mae'r patrymlun '%s' yn annilys: ni ddylai gynnwys '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Nid yw'r patrymlun '%s' yn cynnwys XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Methwyd darllen y cyswllt symbolaidd '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Ni chynhelir cysylltion symbolaidd"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Methwyd mapio'r ffeil '%s': methodd mmap(): %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Gwall ar linell %d golofn %d: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Gwall ar linell %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Gwelwyd endid gwag '&;'; mae & " < > a ' yn endidau dilys"
# c-format
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"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 & yn ei le"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Mae'r enw endid '%s' yn anhysbys"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Ni orffennwyd yr endid gyda hanner-colon - mwy na thebyg y defnyddiwyd "
"ampersand heb fwriadu dechrau endid - dylid defnyddio & yn lle"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Methwyd adnabod '%-.*s', a ddylai fod yn ddigid o fewn cyfeiriant nod "
"(ê er enghraifft) - hwyrach fod y digid yn rhy fawr"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Cyfeiriant nod gwag; dylai gynnwys digid megis dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"Ni orffennwyd cyfeiriant nod gyda hanner-colon - mwy na thebyg y defnyddiwyd "
"ampersand heb fwriadu dechrau endid - dylid defnyddio & yn lle"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Cyfeiriant endid heb ei orffen"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Cyfeiriant nod heb ei orffen"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Testun annilys wedi ei amgodio fel UTF-8"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Testun annilys wedi ei amgodio fel UTF-8"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Testun annilys wedi ei amgodio fel UTF-8"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Rhaid i'r ddogfen ddechrau gydag elfen (e.e. <llyfr>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
msgstr ""
"Nid yw '%s' yn nod dilys yn dilyn '<'; nid yw'n gallu dechrau enw elfen"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"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:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Nod od '%s', disgwyliwyd '=' ar ôl yr enw priodoledd '%s' o'r elfen '%s'"
# c-format
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"s', neu briodoledd ddewisol; efallai defnyddiwyd nod annilys mewn enw "
"priodoledd"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Nod od '%s', disgwyliwyd dyfynnod agored ar ôl y '=' wrth roi gwerth i'r "
"priodoledd '%s' o'r elfen '%s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"Nid yw '%s' yn nod ddilys yn dilyn y nodau '</'; nid yw '%s' yn gallu "
"dechrau enw elfen."
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"Nid yw '%s' yn nod ddilys yn dilyn y nodau '</'; nid yw '%s' yn gallu "
"dechrau enw elfen."
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Roedd y ddogfen yn wag neu'n cynnwys gofod yn unig"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Gorffennodd y ddogfen yn annisgwyl ar ôl '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Gorffennodd y ddogfen yn annisgwyl tra roedd elfennau ar agor - '%s' oedd yr "
"elfen ddiwethaf a agorwyd"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Gorffennodd y ddogfen yn annisgwyl, disgwyliwyd ongl-fraced caeedig i "
"ddiweddu'r tag <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Gorffennodd y ddogfen yn annisgwyl y tu fewn i enw elfen"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Gorffennodd y ddogfen yn annisgwyl y tu fewn i enw priodoledd"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
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:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Gorffennodd y ddogfen yn annisgwyl ar ôl yr hafalnod yn dilyn enw "
"priodoledd; dim gwerth priodoledd"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Gorffennodd y ddogfen yn annisgwyl y tu fewn i werth priodoledd"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Gorffennodd y ddogfen yn annisgwyl y tu fewn i sylw neu gyfarwyddiad brosesu"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "Opsiwn anhysbys %s"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "Ni chynhelir cysylltion symbolaidd"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Ni chynhelir cysylltion symbolaidd"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
#, fuzzy
msgid "No application is registered as handling this file"
msgstr "Does dim un rhaglen o'r enw '%s' wedi cofrestru llyfrnod ar gyfer '%s'"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Gwall ar linell %d: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Gwall wrth ramadegu opsiwn %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-10 21:35+0100\n"
"Last-Translator: Ask Hjorth Larsen <asklarsen@gmail.com>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Uventet egenskab \"%s\" for elementet \"%s\""
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Egenskaben \"%s\" for elementet \"%s\" blev ikke fundet"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Uventet mærke \"%s\", forventede mærket \"%s\""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Uventet mærke \"%s\" inden i \"%s\""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "Ingen gyldig bogmærkefil blev fundet i datakatalogerne"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Et bogmærke for URI'en \"%s\" findes allerede"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Der blev intet bogmærke fundet for URI'en \"%s\""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Ingen MIME-type er defineret i bogmærket for URI'en \"%s\""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Intet privat flag er defineret i bogmærket for URI'en \"%s\""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Ingen grupper er sat i bogmærket for URI'en \"%s\""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Intet program med navnet \"%s\" har registreret et bogmærke for \"%s\""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Kunne ikke udvide eksekveringslinjen \"%s\" med URI'en \"%s\""
msgid "Error opening directory '%s': %s"
msgstr "Fejl ved åbning af mappen \"%s\": %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Kunne ikke allokere %lu byte til at læse filen \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Fejl ved læsning af filen \"%s\": %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Kunne ikke læse fra filen \"%s\": %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Kunne ikke åbne filen \"%s\": %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Kunne ikke læse egenskaber for filen \"%s\": fstat() mislykkedes: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Kunne ikke åbne filen \"%s\": fdopen() mislykkedes: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Kunne ikke omdøbe filen \"%s\" til \"%s\": g_rename() mislykkedes: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Fejl under oprettelse af filen \"%s\": %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Kunne ikke åbne filen \"%s\" til skrivning: fdopen() mislykkedes: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Kunne ikke skrive filen \"%s\": fwrite() mislykkedes: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Kunne ikke lukke filen \"%s\": fclose() mislykkedes: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
"Den eksisterende fil \"%s\" kunne ikke fjernes: g_unlink() mislykkedes: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Skabelonen \"%s\" er ugyldig, må ikke indeholde en \"%s\""
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Skabelonen \"%s\" indeholder ikke XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Kunne ikke læse den symbolske henvisning \"%s\": %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Symbolske henvisninger er ikke understøttet"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Kunne ikke kortlægge filen \"%s\": mmap() mislykkedes: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Fejl på linje %d tegn %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Fejl på linje %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Tom entitet \"&;\" fundet; gyldige entiteter er: & " < > "
"'"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"starter en entitet; hvis dette og-tegn ikke er beregnet på at være en "
"entitet, så undgå dette ved at bruge & i stedet"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entitetsnavnet \"%s\" er ikke kendt"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"tegn uden at det var beregnet på at starte en entitet - dette undgås ved at "
"bruge & i stedet"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Fejl ved fortolkning af \"%-.*s\" som skulle have været et ciffer i en "
"tegnreference (ê for eksempel) - måske er cifret for stort"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Tegnreferencen \"%-.*s\" koder ikke et tilladt tegn"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Tom tegnreference; skulle indeholde et tal såsom dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"og-tegn uden at det var beregnet på at starte en entitet - undgå dette ved "
"at bruge & i stedet"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Ufærdig entitetsreference"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Ufærdig tegnreference"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Ugyldig UTF-8-kodet tekst - for lang sekvens"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Ugyldig UTF-8-kodet tekst - ikke et starttegn"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Ugyldig UTF-8-kodet tekst - ikke gyldig \"%s\""
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumentet skal begynde med et element (f.eks <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"\"%s\" er ikke et gyldigt tegn efter et \"<\"-tegn; det kan ikke være "
"begyndelsen på et elementnavn"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Mærkeligt tegn \"%s\", forventede et \">\"-tegn for at afslutte "
"begyndelsesmærket til elementet \"%s\""
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Mærkeligt tegn \"%s\", forventede et \"=\" efter egenskabsnavn \"%s\" for "
"elementet \"%s\""
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"begyndelsesmærket til elementet \"%s\" eller alternativt en egenskab; måske "
"brugte du et ugyldigt tegn i egenskabsnavnet"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Mærkeligt tegn \"%s\", forventede et åbningsanførselstegn efter "
"lighedstegnet når værdien for egenskaben \"%s\" for elementet \"%s\" angives"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"\"%s\" er ikke et gyldigt tegn efter tegnene \"</\"; \"%s\" er måske ikke "
"begyndelsen på et elementnavn"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"\"%s\" er ikke et gyldigt tegn efter det lukkende elementnavn \"%s\"; "
"tilladt tegn er \">\""
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element \"%s\" blev lukket, ingen åbne elementer nu"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokumentet var tomt eller indeholdt kun blanke tegn"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokumentet sluttede uventet lige efter en åben vinkelparantes \"<\""
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Dokumentet sluttede uventet med åbne elementer - \"%s\" var sidste åbne "
"element"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Dokumentet sluttede uventet, forventede at se en vinkelparantes for at "
"afslutte det sidste mærke <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumentet sluttede uventet inden i et elementnavn"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokumentet sluttede uventet inden i et egenskabsnavn"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokumentet sluttede uventet inden i et element-åbnende mærke."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Dokumentet sluttede uventet efter lighedstegnet efter et egenskabsnavn; "
"ingen egenskabsværdi"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokumentet sluttede uventet inden i en egenskabsværdi"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokumentet sluttede uventet inden i en kommentar eller behandlingsinstruktion"
msgid "Operation was cancelled"
msgstr "Operationen blev afbrudt"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Ukendt type"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s-filtype"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s-type"
msgid "Unexpected early end-of-stream"
msgstr "Uventet tidlig strømafslutning"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Unavngivet"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Skrivebordsfil angav intet Exec-felt"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Kan ikke finde terminal krævet af dette program"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "Kan ikke oprette konfigurationsfolder %s for brugerprogram: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Kan ikke oprette bruger-MIME-konfigurationsfolder %s: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Kan ikke oprette brugerskrivebords-fil %s"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Tilpasset definition for %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "drevet implementerer ikke eject"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "drevet implementerer ikke forespørgsel om medier"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Operationen understøttes ikke"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Indeholdende montering findes ikke"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Kan ikke kopiere over mappe"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Kan ikke kopiere mappe over mappe"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Målfilen findes"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Kan ikke kopiere mappe rekursivt"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Ugyldig værdi givet for symbolsk henvisning"
# ved ikke om det er papirkurv eller blot affald, eller om det er et udsagnsord. Vi skriver det sikreste...
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Affald understøttes ikke"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Filnavne kan ikke indeholder \"%c\""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "drevet implementerer ikke montering"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Intet program er registreret til håndtering af denne fil"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "montering implementerer ikke unmount"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "montering implementerer ikke eject"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "montering implementerer ikke remount"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "montering implementerer ikke unmount"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Uddatastrøm implementerer ikke write"
msgid "Error closing unix: %s"
msgstr "Fejl ved lukningaf unix: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Filsystemets rod"
msgid "Error writing to unix: %s"
msgstr "Fejl ved skrivning til unix: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "drev implementerer ikke eject"
msgstr ""
"Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-21 00:17+0200\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-07-21 00:18+0200\n"
"Last-Translator: Andre Klapper <ak-47@gmx.net>\n"
"Language-Team: German <gnome-de@gnome.org>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../glib/gbookmarkfile.c:728 ../glib/gbookmarkfile.c:805
-#: ../glib/gbookmarkfile.c:884 ../glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Unerwartetes Attribut »%s« des Elements »%s«"
-#: ../glib/gbookmarkfile.c:739 ../glib/gbookmarkfile.c:816
-#: ../glib/gbookmarkfile.c:826 ../glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Attribut »%s« des Elements »%s« konnte nicht gefunden werden"
-#: ../glib/gbookmarkfile.c:1112 ../glib/gbookmarkfile.c:1177
-#: ../glib/gbookmarkfile.c:1241 ../glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Unerwarteter Tag »%s«; Tag »%s« wird erwartet"
-#: ../glib/gbookmarkfile.c:1137 ../glib/gbookmarkfile.c:1151
-#: ../glib/gbookmarkfile.c:1219 ../glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Unerwarteter Tag »%s« innerhalb von »%s«"
-#: ../glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
"Es wurde keine gültige Lesezeichendatei in den Datenverzeichnissen gefunden"
-#: ../glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Es existiert bereits ein Lesezeichen für den URI »%s«"
-#: ../glib/gbookmarkfile.c:2045 ../glib/gbookmarkfile.c:2202
-#: ../glib/gbookmarkfile.c:2287 ../glib/gbookmarkfile.c:2367
-#: ../glib/gbookmarkfile.c:2452 ../glib/gbookmarkfile.c:2535
-#: ../glib/gbookmarkfile.c:2613 ../glib/gbookmarkfile.c:2692
-#: ../glib/gbookmarkfile.c:2734 ../glib/gbookmarkfile.c:2831
-#: ../glib/gbookmarkfile.c:2957 ../glib/gbookmarkfile.c:3147
-#: ../glib/gbookmarkfile.c:3223 ../glib/gbookmarkfile.c:3388
-#: ../glib/gbookmarkfile.c:3477 ../glib/gbookmarkfile.c:3567
-#: ../glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Es konnte kein Lesezeichen für den URI »%s« gefunden werden."
-#: ../glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Es ist kein MIME-Type im Lesezeichen für den URI »%s« definiert."
-#: ../glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
"Es konnte keine »privat«-Markierung für das Lesezeichen für den URI »%s« "
"gefunden werden."
-#: ../glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
"Es wurden keine Gruppen für das Lesezeichen für den URI »%s« festgelegt."
-#: ../glib/gbookmarkfile.c:3241 ../glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
"Es wurde keine Anwendung namens »%s« gefunden, die ein Lesezeichen für »%s« "
"registriert hat."
-#: ../glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Die Befehlzeile »%s« konnte nicht mit dem URI »%s« verknüpft werden."
-#: ../glib/gconvert.c:431 ../glib/gconvert.c:509 ../glib/giochannel.c:1158
+#: glib/gconvert.c:431 glib/gconvert.c:509 glib/giochannel.c:1158
#, c-format
msgid "Conversion from character set '%s' to '%s' is not supported"
msgstr "Umwandlung von Zeichensatz »%s« in »%s« wird nicht unterstützt"
-#: ../glib/gconvert.c:435 ../glib/gconvert.c:513
+#: glib/gconvert.c:435 glib/gconvert.c:513
#, c-format
msgid "Could not open converter from '%s' to '%s'"
msgstr "Konverter von »%s« in »%s« konnte nicht geöffnet werden"
-#: ../glib/gconvert.c:632 ../glib/gconvert.c:1017 ../glib/giochannel.c:1330
-#: ../glib/giochannel.c:1372 ../glib/giochannel.c:2216 ../glib/gutf8.c:956
-#: ../glib/gutf8.c:1405
+#: glib/gconvert.c:632 glib/gconvert.c:1017 glib/giochannel.c:1330
+#: glib/giochannel.c:1372 glib/giochannel.c:2216 glib/gutf8.c:956
+#: glib/gutf8.c:1405
msgid "Invalid byte sequence in conversion input"
msgstr "Ungültige Bytefolge in Konvertierungseingabe"
-#: ../glib/gconvert.c:638 ../glib/gconvert.c:944 ../glib/giochannel.c:1337
-#: ../glib/giochannel.c:2228
+#: glib/gconvert.c:638 glib/gconvert.c:944 glib/giochannel.c:1337
+#: glib/giochannel.c:2228
#, c-format
msgid "Error during conversion: %s"
msgstr "Fehler bei der Umwandlung: %s"
-#: ../glib/gconvert.c:669 ../glib/gutf8.c:952 ../glib/gutf8.c:1156
-#: ../glib/gutf8.c:1297 ../glib/gutf8.c:1401
+#: glib/gconvert.c:669 glib/gutf8.c:952 glib/gutf8.c:1156 glib/gutf8.c:1297
+#: glib/gutf8.c:1401
msgid "Partial character sequence at end of input"
msgstr "Bruchstückhafte Zeichenfolge am Eingabeende"
-#: ../glib/gconvert.c:919
+#: glib/gconvert.c:919
#, c-format
msgid "Cannot convert fallback '%s' to codeset '%s'"
msgstr "Notnagel »%s« kann nicht in Kodierung »%s« umgewandelt werden"
-#: ../glib/gconvert.c:1734
+#: glib/gconvert.c:1734
#, c-format
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
msgstr "Der URI »%s« ist kein absoluter URI, der das »file«-Schema verwendet"
-#: ../glib/gconvert.c:1744
+#: glib/gconvert.c:1744
#, c-format
msgid "The local file URI '%s' may not include a '#'"
msgstr "Der lokale URI »%s« darf kein »#« enthalten"
-#: ../glib/gconvert.c:1761
+#: glib/gconvert.c:1761
#, c-format
msgid "The URI '%s' is invalid"
msgstr "Der URI »%s« ist ungültig"
-#: ../glib/gconvert.c:1773
+#: glib/gconvert.c:1773
#, c-format
msgid "The hostname of the URI '%s' is invalid"
msgstr "Der Rechnername des URI »%s« ist ungültig"
# CHECK
-#: ../glib/gconvert.c:1789
+#: glib/gconvert.c:1789
#, c-format
msgid "The URI '%s' contains invalidly escaped characters"
msgstr "Der URI »%s« enthält ungültige Escape-Zeichen"
-#: ../glib/gconvert.c:1884
+#: glib/gconvert.c:1884
#, c-format
msgid "The pathname '%s' is not an absolute path"
msgstr "Der Pfadname »%s« ist kein absoluter Pfad"
-#: ../glib/gconvert.c:1894
+#: glib/gconvert.c:1894
msgid "Invalid hostname"
msgstr "Ungültiger Rechnername"
-#: ../glib/gdir.c:109 ../glib/gdir.c:129
+#: glib/gdir.c:109 glib/gdir.c:129
#, c-format
msgid "Error opening directory '%s': %s"
msgstr "Fehler beim Öffnen des Verzeichnisses »%s«: %s"
-#: ../glib/gfileutils.c:557 ../glib/gfileutils.c:645
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "%lu byte konnten nicht alloziiert werden, um Datei »%s« zu lesen"
-#: ../glib/gfileutils.c:572
+#: glib/gfileutils.c:572
#, c-format
msgid "Error reading file '%s': %s"
msgstr "Fehler beim Lesen der Datei »%s«: %s"
-#: ../glib/gfileutils.c:586
+#: glib/gfileutils.c:586
#, c-format
msgid "File \"%s\" is too large"
msgstr "Datei »%s« ist zu groß"
-#: ../glib/gfileutils.c:669
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Es konnte nicht aus der Datei »%s« gelesen werden: %s"
-#: ../glib/gfileutils.c:720 ../glib/gfileutils.c:807
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Datei »%s« konnte nicht geöffnet werden: %s"
-#: ../glib/gfileutils.c:737 ../glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
"Attribute der Datei »%s« konnten nicht ermittelt werden: fstat() "
"fehlgeschlagen: %s"
-#: ../glib/gfileutils.c:771
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Datei »%s« konnte nicht geöffnet werden: fdopen() fehlgeschlagen: %s"
-#: ../glib/gfileutils.c:905
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"Datei »%s« konnte nicht in »%s« umbenannt werden: g_rename() ist "
"fehlgeschlagen: %s"
-#: ../glib/gfileutils.c:947 ../glib/gfileutils.c:1405
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Datei »%s« konnte nicht angelegt werden: %s"
-#: ../glib/gfileutils.c:961
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
"Datei »%s« konnte nicht im Schreibmodus geöffnet werden: fdopen() ist "
"fehlgeschlagen: %s"
-#: ../glib/gfileutils.c:986
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr ""
"Datei »%s« konnte nicht geschrieben werden: fwrite() ist fehlgeschlagen: %s"
-#: ../glib/gfileutils.c:1005
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr ""
"Datei »%s« konnte nicht geschlossen werden: fclose() ist fehlgeschlagen: %s"
-#: ../glib/gfileutils.c:1123
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
"Die vorhandene Datei »%s« konnte nicht entfernt werden: g_unlink() ist "
"fehlgeschlagen: %s"
-#: ../glib/gfileutils.c:1367
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Vorlage »%s« ungültig, sollte kein »%s« enthalten"
-#: ../glib/gfileutils.c:1380
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Vorlage »%s« enthält nicht XXXXXX"
-#: ../glib/gfileutils.c:1849
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: ../glib/gfileutils.c:1854
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: ../glib/gfileutils.c:1859
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: ../glib/gfileutils.c:1902
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Die symbolische Verknüpfung »%s« konnte nicht gelesen werden: %s"
-#: ../glib/gfileutils.c:1923
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Symbolische Verknüpfungen nicht unterstützt"
-#: ../glib/giochannel.c:1162
+#: glib/giochannel.c:1162
#, c-format
msgid "Could not open converter from '%s' to '%s': %s"
msgstr "Konverter von »%s« in »%s« konnte nicht geöffnet werden: %s"
-#: ../glib/giochannel.c:1507
+#: glib/giochannel.c:1507
msgid "Can't do a raw read in g_io_channel_read_line_string"
msgstr "Raw-read in g_io_channel_read_line_string nicht möglich"
-#: ../glib/giochannel.c:1554 ../glib/giochannel.c:1812
-#: ../glib/giochannel.c:1899
+#: glib/giochannel.c:1554 glib/giochannel.c:1812 glib/giochannel.c:1899
msgid "Leftover unconverted data in read buffer"
msgstr "Nicht konvertierte Daten befinden sich noch im Lesepuffer "
-#: ../glib/giochannel.c:1635 ../glib/giochannel.c:1712
+#: glib/giochannel.c:1635 glib/giochannel.c:1712
msgid "Channel terminates in a partial character"
msgstr "Kanal endet mit einem Teilzeichen"
-#: ../glib/giochannel.c:1698
+#: glib/giochannel.c:1698
msgid "Can't do a raw read in g_io_channel_read_to_end"
msgstr "Raw-read in g_io_channel_read_to_end nicht möglich"
-#: ../glib/gmappedfile.c:116
+#: glib/gmappedfile.c:116
#, c-format
msgid "Failed to open file '%s': open() failed: %s"
msgstr "Datei »%s« konnte nicht geöffnet werden: open() ist fehlgeschlagen: %s"
-#: ../glib/gmappedfile.c:193
+#: glib/gmappedfile.c:193
#, c-format
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Datei »%s« konnte nicht gemappt werden: mmap() ist fehlgeschlagen: %s"
-#: ../glib/gmarkup.c:269 ../glib/gmarkup.c:285
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Fehler in Zeile %d, Zeichen %d: "
-#: ../glib/gmarkup.c:379
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Fehler in Zeile %d: %s"
-#: ../glib/gmarkup.c:483
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Leere Entität »&;« gefunden; gültige Entitäten sind & " < > "
"'"
-#: ../glib/gmarkup.c:493
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"beginnt mit dem Zeichen &; wenn das Et keine Entität sein soll, es als & "
"umschreiben"
-#: ../glib/gmarkup.c:527
+#: glib/gmarkup.c:527
#, 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:564
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entitätsname »%s« ist unbekannt"
# CHECK
-#: ../glib/gmarkup.c:575
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"benutzt, ohne eine Entity beginnen zu wollen - umschreiben Sie das Et als "
"&"
-#: ../glib/gmarkup.c:628
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"»%-.*s«, was eine Zahl in einer Zeichenreferenz (wie ê) sein sollte, "
"konnte nicht analysiert werden - vielleicht ist die Zahl zu groß"
-#: ../glib/gmarkup.c:653
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Zeichenreferenz »%-.*s« kodiert kein zulässiges Zeichen"
-#: ../glib/gmarkup.c:668
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Leere Zeichenangabe; sollte eine Zahl wie z.B. dž enthalten"
-#: ../glib/gmarkup.c:678
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"Et-Zeichen benutzt, ohne eine Entität beginnen zu wollen - umschreiben Sie "
"das Et als &"
-#: ../glib/gmarkup.c:764
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Unvollendete Entitätsreferenz"
-#: ../glib/gmarkup.c:770
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Unvollendete Zeichenreferenz"
-#: ../glib/gmarkup.c:1056
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Ungültiger UTF-8-kodierter Text - überlange Sequenz"
-#: ../glib/gmarkup.c:1084
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Ungültiger UTF-8-kodierter Text - Kein Anfangszeichen"
-#: ../glib/gmarkup.c:1120
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Ungültiger UTF-8-kodierter Text - »%s« ist nicht gültig"
-#: ../glib/gmarkup.c:1158
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokument muss mit einem Element beginnen (e.g. <book>)"
-#: ../glib/gmarkup.c:1198
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"»%s« ist kein gültiges Zeichen nach einem »<«-Zeichen; es darf keinen "
"Elementnamen beginnen"
-#: ../glib/gmarkup.c:1266
+#: glib/gmarkup.c:1266
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"Seltsames Zeichen »%s«, »>« erwartet um Start-Tag des leeren Elements »%s« "
"abzuschließen"
-#: ../glib/gmarkup.c:1355
+#: glib/gmarkup.c:1355
#, 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:1397
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"erwartet, um das Start-Tag des Elements »%s« abzuschließen; vielleicht haben "
"Sie ein ungültiges Zeichen in einem Attributnamen benutzt"
-#: ../glib/gmarkup.c:1483
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"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:1625
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"»%s« ist kein gültiges Zeichen, wenn es auf die Zeichen »</« folgt; »%s« darf "
"keinen Elementnamen beginnen"
-#: ../glib/gmarkup.c:1665
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"»%s« ist kein gültiges Zeichen, wenn es auf den schließenden Elementnamen »%s« "
"folgt; das erlaubte Zeichen ist »>«"
-#: ../glib/gmarkup.c:1676
+#: glib/gmarkup.c:1676
#, 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:1685
+#: glib/gmarkup.c:1685
#, 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:1848
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokument ist leer oder enthält nur Leerraum"
-#: ../glib/gmarkup.c:1862
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokument endete unerwartet nach einer offenen spitzen Klammer »<«"
-#: ../glib/gmarkup.c:1870 ../glib/gmarkup.c:1915
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Dokument endete unerwartet mit noch offenen Elementen - »%s« war das letzte "
"offene Element"
-#: ../glib/gmarkup.c:1878
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Dokument endete unerwartet, es wurde eine spitze Klammer »>«, die das Tag <%s/"
"> schließt, erwartet"
-#: ../glib/gmarkup.c:1884
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokument endete unerwartet innerhalb eines Elementnamens"
-#: ../glib/gmarkup.c:1890
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokument endete unerwartet innerhalb eines Attributnamens"
-#: ../glib/gmarkup.c:1895
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokument endete unerwartet innerhalb eines Element-öffnenden Tags."
-#: ../glib/gmarkup.c:1901
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Dokument endete unerwartet nach dem Gleichheitszeichen, das einem "
"Attributnamen folgt; kein Attributwert"
-#: ../glib/gmarkup.c:1908
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokument endete unerwartet innerhalb eines Attributwertes"
-#: ../glib/gmarkup.c:1924
+#: glib/gmarkup.c:1924
#, 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:1930
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokument endete unerwartet innerhalb eines Kommentars oder "
"Verarbeitungsanweisung"
-#: ../glib/gregex.c:131
+#: glib/gregex.c:131
msgid "corrupted object"
msgstr "Beschädigtes Objekt"
-#: ../glib/gregex.c:133
+#: glib/gregex.c:133
msgid "internal error or corrupted object"
msgstr "Interner Fehler oder beschädigtes Objekt"
-#: ../glib/gregex.c:135
+#: glib/gregex.c:135
msgid "out of memory"
msgstr "Nicht genügend freier Speicher"
-#: ../glib/gregex.c:140
+#: glib/gregex.c:140
msgid "backtracking limit reached"
msgstr "Backtracking-Limit wurde erreicht"
-#: ../glib/gregex.c:152 ../glib/gregex.c:160
+#: glib/gregex.c:152 glib/gregex.c:160
msgid "the pattern contains items not supported for partial matching"
msgstr ""
"Der Ausdruck enthält Elemente, die teilweise Übereinstimmung nicht "
"unterstützen"
-#: ../glib/gregex.c:154 ../gio/glocalfile.c:1981
+#: glib/gregex.c:154 gio/glocalfile.c:1981
msgid "internal error"
msgstr "Interner Fehler"
-#: ../glib/gregex.c:162
+#: glib/gregex.c:162
msgid "back references as conditions are not supported for partial matching"
msgstr ""
"Rückreferenzen als Bedingungen werden für teilweise Übereinstimmung nicht "
"unterstützt"
-#: ../glib/gregex.c:171
+#: glib/gregex.c:171
msgid "recursion limit reached"
msgstr "Rekursionslimit wurde erreicht"
-#: ../glib/gregex.c:173
+#: glib/gregex.c:173
msgid "workspace limit for empty substrings reached"
msgstr "Arbeitsplatzlimit für leere Teilstrings wurde erreicht"
-#: ../glib/gregex.c:175
+#: glib/gregex.c:175
msgid "invalid combination of newline flags"
msgstr "Ungültige Kombination von newline-Markierungen"
-#: ../glib/gregex.c:179
+#: glib/gregex.c:179
msgid "unknown error"
msgstr "Unbekannter Fehler"
-#: ../glib/gregex.c:199
+#: glib/gregex.c:199
msgid "\\ at end of pattern"
msgstr "\\ am Ende des Ausdrucks"
-#: ../glib/gregex.c:202
+#: glib/gregex.c:202
msgid "\\c at end of pattern"
msgstr "\\c am Ende des Ausdrucks"
-#: ../glib/gregex.c:205
+#: glib/gregex.c:205
msgid "unrecognized character follows \\"
msgstr "Unbekanntes Zeichen nach \\"
-#: ../glib/gregex.c:212
+#: glib/gregex.c:212
msgid "case-changing escapes (\\l, \\L, \\u, \\U) are not allowed here"
msgstr ""
"Groß- und Kleinschreibung-beeinflussende Escape-Sequenzen (\\l, \\L, \\u, "
"\\U) sind an dieser Stelle nicht erlaubt."
# CHECK
-#: ../glib/gregex.c:215
+#: glib/gregex.c:215
msgid "numbers out of order in {} quantifier"
msgstr "Ziffern wirkungslos in {}-Quantifizierer"
-#: ../glib/gregex.c:218
+#: glib/gregex.c:218
msgid "number too big in {} quantifier"
msgstr "Ziffer zu groß in {}-Quantifizierer"
-#: ../glib/gregex.c:221
+#: glib/gregex.c:221
msgid "missing terminating ] for character class"
msgstr "Terminierendes ] für Zeichenklasse fehlt"
-#: ../glib/gregex.c:224
+#: glib/gregex.c:224
msgid "invalid escape sequence in character class"
msgstr "Ungültige Escape-Sequenz in Zeichenklasse"
# CHECK
-#: ../glib/gregex.c:227
+#: glib/gregex.c:227
msgid "range out of order in character class"
msgstr "Bereich wirkungslos in Zeichenklasse"
-#: ../glib/gregex.c:230
+#: glib/gregex.c:230
msgid "nothing to repeat"
msgstr "Nichts zum Wiederholen"
-#: ../glib/gregex.c:233
+#: glib/gregex.c:233
msgid "unrecognized character after (?"
msgstr "Unbekanntes Zeichen nach (?"
-#: ../glib/gregex.c:237
+#: glib/gregex.c:237
msgid "unrecognized character after (?<"
msgstr "Unbekanntes Zeichen nach (?<"
-#: ../glib/gregex.c:241
+#: glib/gregex.c:241
msgid "unrecognized character after (?P"
msgstr "Unbekanntes Zeichen nach (?P"
-#: ../glib/gregex.c:244
+#: glib/gregex.c:244
msgid "POSIX named classes are supported only within a class"
msgstr "POSIX-benannte Klassen werden nur innerhalb einer Klasse unterstützt"
-#: ../glib/gregex.c:247
+#: glib/gregex.c:247
msgid "missing terminating )"
msgstr "Abschließende ) fehlt"
-#: ../glib/gregex.c:251
+#: glib/gregex.c:251
msgid ") without opening ("
msgstr ") ohne öffnende ("
#. translators: '(?R' and '(?[+-]digits' are both meant as (groups of)
#. * sequences here, '(?-54' would be an example for the second group.
#.
-#: ../glib/gregex.c:258
+#: glib/gregex.c:258
msgid "(?R or (?[+-]digits must be followed by )"
msgstr "auf (?R oder (?[+-]Ziffern muss ) folgen"
-#: ../glib/gregex.c:261
+#: glib/gregex.c:261
msgid "reference to non-existent subpattern"
msgstr "Referenz auf nicht existierenden Unterausdruck"
-#: ../glib/gregex.c:264
+#: glib/gregex.c:264
msgid "missing ) after comment"
msgstr "fehlende ) nach Kommentar"
-#: ../glib/gregex.c:267
+#: glib/gregex.c:267
msgid "regular expression too large"
msgstr "Regulärer Ausdruck zu groß"
-#: ../glib/gregex.c:270
+#: glib/gregex.c:270
msgid "failed to get memory"
msgstr "Fehler beim holen von Speicher"
-#: ../glib/gregex.c:273
+#: glib/gregex.c:273
msgid "lookbehind assertion is not fixed length"
msgstr "Rückblickende Annahme hat keine feste Länge"
-#: ../glib/gregex.c:276
+#: glib/gregex.c:276
msgid "malformed number or name after (?("
msgstr "Falsch formatierte Zahl oder Name nach (?("
-#: ../glib/gregex.c:279
+#: glib/gregex.c:279
msgid "conditional group contains more than two branches"
msgstr "Bedingte Gruppe enthält mehr als zwei Verzweigungen"
-#: ../glib/gregex.c:282
+#: glib/gregex.c:282
msgid "assertion expected after (?("
msgstr "Annahme erwartet nach (?("
-#: ../glib/gregex.c:285
+#: glib/gregex.c:285
msgid "unknown POSIX class name"
msgstr "Unbekannter POSIX-Klassenname"
-#: ../glib/gregex.c:288
+#: glib/gregex.c:288
msgid "POSIX collating elements are not supported"
msgstr "POSIX-Elementverknüpfungen nicht unterstützt"
-#: ../glib/gregex.c:291
+#: glib/gregex.c:291
msgid "character value in \\x{...} sequence is too large"
msgstr "Wert in \\x{…}-Sequenz ist zu groß"
-#: ../glib/gregex.c:294
+#: glib/gregex.c:294
msgid "invalid condition (?(0)"
msgstr "Ungültige Bedingung (?(0)"
-#: ../glib/gregex.c:297
+#: glib/gregex.c:297
msgid "\\C not allowed in lookbehind assertion"
msgstr "\\C nicht erlaubt in rückblickender Annahme"
-#: ../glib/gregex.c:300
+#: glib/gregex.c:300
msgid "recursive call could loop indefinitely"
msgstr "Rekursive Aufrufe könnten unendlich oft aufgerufen werden"
-#: ../glib/gregex.c:303
+#: glib/gregex.c:303
msgid "missing terminator in subpattern name"
msgstr "Terminierung im Namen des Unterausdrucks fehlt"
-#: ../glib/gregex.c:306
+#: glib/gregex.c:306
msgid "two named subpatterns have the same name"
msgstr "Zwei benannte Unterausdrücke haben den gleichen Namen"
-#: ../glib/gregex.c:309
+#: glib/gregex.c:309
msgid "malformed \\P or \\p sequence"
msgstr "Fehlerhafte \\P- oder \\p-Sequenz"
-#: ../glib/gregex.c:312
+#: glib/gregex.c:312
msgid "unknown property name after \\P or \\p"
msgstr "Unbekannte Eigenschaftsname nach \\P oder \\p"
-#: ../glib/gregex.c:315
+#: glib/gregex.c:315
msgid "subpattern name is too long (maximum 32 characters)"
msgstr "Name des Unterausdrucks ist zu lang (maximal 32 Zeichen)"
-#: ../glib/gregex.c:318
+#: glib/gregex.c:318
msgid "too many named subpatterns (maximum 10,000)"
msgstr "Zu viele benannte Unterausdrücke (maximal 10.000)"
-#: ../glib/gregex.c:321
+#: glib/gregex.c:321
msgid "octal value is greater than \\377"
msgstr "Oktaler Wert ist größer als \\377"
-#: ../glib/gregex.c:324
+#: glib/gregex.c:324
msgid "DEFINE group contains more than one branch"
msgstr "DEFINE-Gruppe enthält mehr als eine Verzweigung"
-#: ../glib/gregex.c:327
+#: glib/gregex.c:327
msgid "repeating a DEFINE group is not allowed"
msgstr "Wiederholen einer DEFINE-Gruppe ist nicht erlaubt"
-#: ../glib/gregex.c:330
+#: glib/gregex.c:330
msgid "inconsistent NEWLINE options"
msgstr "Inkonsistente NEWLINE-Optionen"
-#: ../glib/gregex.c:333
+#: glib/gregex.c:333
msgid ""
"\\g is not followed by a braced name or an optionally braced non-zero number"
msgstr ""
"Auf \\g folgt kein eingeklammerter Name oder eine optional eingeklammerte "
"Zahl außer Null"
-#: ../glib/gregex.c:338
+#: glib/gregex.c:338
msgid "unexpected repeat"
msgstr "Unerwartete Wiederholung"
-#: ../glib/gregex.c:342
+#: glib/gregex.c:342
msgid "code overflow"
msgstr "Code-Überlauf"
-#: ../glib/gregex.c:346
+#: glib/gregex.c:346
msgid "overran compiling workspace"
msgstr "Überlauf beim Kompillieren des Arbeitsbereichs"
-#: ../glib/gregex.c:350
+#: glib/gregex.c:350
msgid "previously-checked referenced subpattern not found"
msgstr ""
"Bereits geprüfter, referenzierter Unterausdruck konnte nicht gefunden werden"
-#: ../glib/gregex.c:526 ../glib/gregex.c:1593
+#: glib/gregex.c:526 glib/gregex.c:1593
#, c-format
msgid "Error while matching regular expression %s: %s"
msgstr "Fehler beim Anwenden des regulären Ausdrucks %s: %s"
-#: ../glib/gregex.c:1098
+#: glib/gregex.c:1098
msgid "PCRE library is compiled without UTF8 support"
msgstr "PCRE-Bibliothek wurde ohne UTF8-Unterstützung kompilliert"
-#: ../glib/gregex.c:1107
+#: glib/gregex.c:1107
msgid "PCRE library is compiled without UTF8 properties support"
msgstr ""
"PCRE-Bibliothek wurde ohne Unterstützung für UTF8-Eigenschaften kompilliert"
-#: ../glib/gregex.c:1161
+#: glib/gregex.c:1161
#, c-format
msgid "Error while compiling regular expression %s at char %d: %s"
msgstr "Fehler beim Kompillieren des regulären Ausdrucks %s an Zeichen %d: %s"
-#: ../glib/gregex.c:1197
+#: glib/gregex.c:1197
#, c-format
msgid "Error while optimizing regular expression %s: %s"
msgstr "Fehler beim Optimieren des regulären Ausdrucks %s: %s"
-#: ../glib/gregex.c:2021
+#: glib/gregex.c:2021
msgid "hexadecimal digit or '}' expected"
msgstr "Hexadezimalzahl oder »}« erwartet"
-#: ../glib/gregex.c:2037
+#: glib/gregex.c:2037
msgid "hexadecimal digit expected"
msgstr "Hexadezimalzahl erwartet"
-#: ../glib/gregex.c:2077
+#: glib/gregex.c:2077
msgid "missing '<' in symbolic reference"
msgstr "Fehlendes »<» in symbolischer Referenz"
-#: ../glib/gregex.c:2086
+#: glib/gregex.c:2086
msgid "unfinished symbolic reference"
msgstr "Unvollendete symbolische Referenz"
-#: ../glib/gregex.c:2093
+#: glib/gregex.c:2093
msgid "zero-length symbolic reference"
msgstr "Symbolische Referenz der Länge 0"
-#: ../glib/gregex.c:2104
+#: glib/gregex.c:2104
msgid "digit expected"
msgstr "Ziffer erwartet"
-#: ../glib/gregex.c:2122
+#: glib/gregex.c:2122
msgid "illegal symbolic reference"
msgstr "Illegale symbolische Referenz"
-#: ../glib/gregex.c:2184
+#: glib/gregex.c:2184
msgid "stray final '\\'"
msgstr "Verirrtes abschließendes »\\«"
-#: ../glib/gregex.c:2188
+#: glib/gregex.c:2188
msgid "unknown escape sequence"
msgstr "Unbekannte Escape-Sequenz"
-#: ../glib/gregex.c:2198
+#: glib/gregex.c:2198
#, c-format
msgid "Error while parsing replacement text \"%s\" at char %lu: %s"
msgstr "Fehler beim Verarbeiten des Ersetzungstextes »%s« an Zeichen %lu: %s"
-#: ../glib/gshell.c:70
+#: glib/gshell.c:70
#, c-format
msgid "Quoted text doesn't begin with a quotation mark"
msgstr "Zitierter Text beginnt nicht mit einem Anführungszeichen"
-#: ../glib/gshell.c:160
+#: glib/gshell.c:160
#, c-format
msgid "Unmatched quotation mark in command line or other shell-quoted text"
msgstr ""
"Unbalanciertes Anführungszeichen in Befehlszeile oder anderem Text in "
"Shellquotes"
-#: ../glib/gshell.c:538
+#: glib/gshell.c:538
#, c-format
msgid "Text ended just after a '\\' character. (The text was '%s')"
msgstr "Text endete nach einem »\\«-Zeichen. (Der Text war »%s«)"
-#: ../glib/gshell.c:545
+#: glib/gshell.c:545
#, c-format
msgid "Text ended before matching quote was found for %c. (The text was '%s')"
msgstr ""
"Text endete, bevor ein passendes Anführungszeichen für %c gefunden wurde. "
"(Der Text war »%s«)"
-#: ../glib/gshell.c:557
+#: glib/gshell.c:557
msgid "Text was empty (or contained only whitespace)"
msgstr "Text war leer (oder enthielt nur Leerraum)"
-#: ../glib/gspawn-win32.c:279
+#: glib/gspawn-win32.c:279
msgid "Failed to read data from child process"
msgstr "Daten konnten nicht vom Kindprozess gelesen werden"
-#: ../glib/gspawn-win32.c:294 ../glib/gspawn.c:1467
+#: glib/gspawn-win32.c:294 glib/gspawn.c:1467
#, c-format
msgid "Failed to create pipe for communicating with child process (%s)"
msgstr ""
"Weiterleitung für Kommunikation mit Kindprozess (%s) konnte nicht erzeugt "
"werden"
-#: ../glib/gspawn-win32.c:332 ../glib/gspawn-win32.c:340 ../glib/gspawn.c:1131
+#: glib/gspawn-win32.c:332 glib/gspawn-win32.c:340 glib/gspawn.c:1131
#, c-format
msgid "Failed to read from child pipe (%s)"
msgstr "Lesen aus Weiterleitung zum Kind (%s) fehlgeschlagen"
-#: ../glib/gspawn-win32.c:363 ../glib/gspawn.c:1336
+#: glib/gspawn-win32.c:363 glib/gspawn.c:1336
#, c-format
msgid "Failed to change to directory '%s' (%s)"
msgstr "In Verzeichnis »%s« (%s) konnte nicht gewechselt werden"
-#: ../glib/gspawn-win32.c:369 ../glib/gspawn-win32.c:493
+#: glib/gspawn-win32.c:369 glib/gspawn-win32.c:493
#, c-format
msgid "Failed to execute child process (%s)"
msgstr "Kindprozess konnte nicht ausgeführt werden (%s)"
-#: ../glib/gspawn-win32.c:440
+#: glib/gspawn-win32.c:440
#, c-format
msgid "Invalid program name: %s"
msgstr "Ungültiger Programmname: %s"
-#: ../glib/gspawn-win32.c:450 ../glib/gspawn-win32.c:723
-#: ../glib/gspawn-win32.c:1282
+#: glib/gspawn-win32.c:450 glib/gspawn-win32.c:723 glib/gspawn-win32.c:1282
#, c-format
msgid "Invalid string in argument vector at %d: %s"
msgstr "Ungültige Zeichenkette im Argumentsvektor bei %d: %s"
-#: ../glib/gspawn-win32.c:461 ../glib/gspawn-win32.c:738
-#: ../glib/gspawn-win32.c:1315
+#: glib/gspawn-win32.c:461 glib/gspawn-win32.c:738 glib/gspawn-win32.c:1315
#, c-format
msgid "Invalid string in environment: %s"
msgstr "Ungültige Zeichenkette in der Umgebung: %s"
-#: ../glib/gspawn-win32.c:719 ../glib/gspawn-win32.c:1263
+#: glib/gspawn-win32.c:719 glib/gspawn-win32.c:1263
#, c-format
msgid "Invalid working directory: %s"
msgstr "Ungültiges Arbeitsverzeichnis: %s"
-#: ../glib/gspawn-win32.c:787
+#: glib/gspawn-win32.c:787
#, c-format
msgid "Failed to execute helper program (%s)"
msgstr "Hilfsprogramm (%s) konnte nicht ausgeführt werden"
-#: ../glib/gspawn-win32.c:1002
+#: glib/gspawn-win32.c:1002
msgid ""
"Unexpected error in g_io_channel_win32_poll() reading data from a child "
"process"
"Unerwarteter Fehler in g_io_channel_win32_poll() beim Lesen aus dem "
"Kindprozess"
-#: ../glib/gspawn.c:188
+#: glib/gspawn.c:188
#, c-format
msgid "Failed to read data from child process (%s)"
msgstr "Daten vom Kindprozess konnten nicht gelesen werden (%s)"
-#: ../glib/gspawn.c:325
+#: glib/gspawn.c:325
#, c-format
msgid "Unexpected error in select() reading data from a child process (%s)"
msgstr ""
"Unerwarteter Fehler in select() beim Lesen von Daten eines Kindprozesses (%s)"
-#: ../glib/gspawn.c:408
+#: glib/gspawn.c:408
#, c-format
msgid "Unexpected error in waitpid() (%s)"
msgstr "Unerwarteter Fehler in waitpid() (%s)"
-#: ../glib/gspawn.c:1196
+#: glib/gspawn.c:1196
#, c-format
msgid "Failed to fork (%s)"
msgstr "Abspalten fehlgeschlagen (%s)"
-#: ../glib/gspawn.c:1346
+#: glib/gspawn.c:1346
#, c-format
msgid "Failed to execute child process \"%s\" (%s)"
msgstr "Kindprozess »%s« konnte nicht ausgeführt werden (%s)"
-#: ../glib/gspawn.c:1356
+#: glib/gspawn.c:1356
#, c-format
msgid "Failed to redirect output or input of child process (%s)"
msgstr ""
"Umleiten der Ausgabe oder Eingabe des Kindprozesses (%s) fehlgeschlagen"
-#: ../glib/gspawn.c:1365
+#: glib/gspawn.c:1365
#, c-format
msgid "Failed to fork child process (%s)"
msgstr "Abspalten des Kindprozesses fehlgeschlagen (%s)"
-#: ../glib/gspawn.c:1373
+#: glib/gspawn.c:1373
#, c-format
msgid "Unknown error executing child process \"%s\""
msgstr "Unbekannter Fehler beim Ausführen des Kindprozesses »%s«"
-#: ../glib/gspawn.c:1395
+#: glib/gspawn.c:1395
#, c-format
msgid "Failed to read enough data from child pid pipe (%s)"
msgstr ""
"Es konnten nicht genug Daten von Kind-Programmkennungsweiterleitung (%s) "
"gelesen werden"
-#: ../glib/gutf8.c:1030
+#: glib/gutf8.c:1030
msgid "Character out of range for UTF-8"
msgstr "Zeichen außerhalb des Bereiches für UTF-8"
-#: ../glib/gutf8.c:1124 ../glib/gutf8.c:1133 ../glib/gutf8.c:1265
-#: ../glib/gutf8.c:1274 ../glib/gutf8.c:1415 ../glib/gutf8.c:1511
+#: glib/gutf8.c:1124 glib/gutf8.c:1133 glib/gutf8.c:1265 glib/gutf8.c:1274
+#: glib/gutf8.c:1415 glib/gutf8.c:1511
msgid "Invalid sequence in conversion input"
msgstr "Ungültige Folge in Umwandlungseingabe"
-#: ../glib/gutf8.c:1426 ../glib/gutf8.c:1522
+#: glib/gutf8.c:1426 glib/gutf8.c:1522
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:615
msgid "Usage:"
msgstr "Aufruf:"
-#: ../glib/goption.c:615
+#: glib/goption.c:615
msgid "[OPTION...]"
msgstr "[OPTION …]"
-#: ../glib/goption.c:719
+#: glib/goption.c:719
msgid "Help Options:"
msgstr "Hilfeoptionen"
-#: ../glib/goption.c:720
+#: glib/goption.c:720
msgid "Show help options"
msgstr "Hilfeoptionen anzeigen"
-#: ../glib/goption.c:726
+#: glib/goption.c:726
msgid "Show all help options"
msgstr "Alle Hilfeoptionen anzeigen"
-#: ../glib/goption.c:788
+#: glib/goption.c:788
msgid "Application Options:"
msgstr "Anwendungsoptionen"
-#: ../glib/goption.c:849 ../glib/goption.c:919
+#: glib/goption.c:849 glib/goption.c:919
#, 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:859 ../glib/goption.c:927
+#: glib/goption.c:859 glib/goption.c:927
#, 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:884
+#: glib/goption.c:884
#, 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:892
+#: glib/goption.c:892
#, 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:1229
+#: glib/goption.c:1229
#, c-format
msgid "Error parsing option %s"
msgstr "Fehler beim Analysieren der Option: %s"
-#: ../glib/goption.c:1260 ../glib/goption.c:1371
+#: glib/goption.c:1260 glib/goption.c:1371
#, c-format
msgid "Missing argument for %s"
msgstr "Für %s wird ein Argument benötigt"
-#: ../glib/goption.c:1766
+#: glib/goption.c:1766
#, c-format
msgid "Unknown option %s"
msgstr "Unbekannte Option %s"
-#: ../glib/gkeyfile.c:358
+#: glib/gkeyfile.c:358
msgid "Valid key file could not be found in search dirs"
msgstr ""
"Es wurde keine gültige Schlüsselwertedatei in den Suchverzeichnissen gefunden"
-#: ../glib/gkeyfile.c:393
+#: glib/gkeyfile.c:393
msgid "Not a regular file"
msgstr "Keine reguläre Datei"
-#: ../glib/gkeyfile.c:401
+#: glib/gkeyfile.c:401
msgid "File is empty"
msgstr "Datei ist leer"
-#: ../glib/gkeyfile.c:761
+#: glib/gkeyfile.c:761
#, c-format
msgid ""
"Key file contains line '%s' which is not a key-value pair, group, or comment"
"Die Schlüsselwertedatei enthält die Zeile »%s«, welche kein zulässiges "
"Schlüssel-Wert-Paar, keine Gruppe und kein Kommentar ist."
-#: ../glib/gkeyfile.c:821
+#: glib/gkeyfile.c:821
#, c-format
msgid "Invalid group name: %s"
msgstr "Ungültiger Gruppenname: %s"
-#: ../glib/gkeyfile.c:843
+#: glib/gkeyfile.c:843
msgid "Key file does not start with a group"
msgstr "Die Schlüsselwertedatei beginnt nicht mit einer Gruppe"
-#: ../glib/gkeyfile.c:869
+#: glib/gkeyfile.c:869
#, c-format
msgid "Invalid key name: %s"
msgstr "Ungültiger Schlüsselname: %s"
-#: ../glib/gkeyfile.c:896
+#: glib/gkeyfile.c:896
#, c-format
msgid "Key file contains unsupported encoding '%s'"
msgstr "Die Schlüsselwertedatei enthält die nicht unterstützte Kodierung »%s«"
-#: ../glib/gkeyfile.c:1112 ../glib/gkeyfile.c:1272 ../glib/gkeyfile.c:2490
-#: ../glib/gkeyfile.c:2558 ../glib/gkeyfile.c:2693 ../glib/gkeyfile.c:2828
-#: ../glib/gkeyfile.c:2981 ../glib/gkeyfile.c:3168 ../glib/gkeyfile.c:3229
+#: glib/gkeyfile.c:1112 glib/gkeyfile.c:1272 glib/gkeyfile.c:2490
+#: glib/gkeyfile.c:2558 glib/gkeyfile.c:2693 glib/gkeyfile.c:2828
+#: glib/gkeyfile.c:2981 glib/gkeyfile.c:3168 glib/gkeyfile.c:3229
#, c-format
msgid "Key file does not have group '%s'"
msgstr "Die Schlüsselwertedatei enthält nicht die Gruppe »%s«"
-#: ../glib/gkeyfile.c:1284
+#: glib/gkeyfile.c:1284
#, c-format
msgid "Key file does not have key '%s'"
msgstr "Die Schlüsselwertedatei enthält nicht den Schlüssel »%s«"
-#: ../glib/gkeyfile.c:1386 ../glib/gkeyfile.c:1499
+#: glib/gkeyfile.c:1386 glib/gkeyfile.c:1499
#, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr ""
"Die Schlüsselwertedatei enthält den Schlüssel »%s« mit dem Wert »%s«, der "
"nicht in UTF-8 kodiert ist"
-#: ../glib/gkeyfile.c:1406 ../glib/gkeyfile.c:1519 ../glib/gkeyfile.c:1894
+#: glib/gkeyfile.c:1406 glib/gkeyfile.c:1519 glib/gkeyfile.c:1894
#, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr ""
"Die Schlüsselwertedatei enthält den Schlüssel »%s« mit einem Wert der nicht "
"interpretiert werden konnte."
-#: ../glib/gkeyfile.c:2109 ../glib/gkeyfile.c:2321
+#: glib/gkeyfile.c:2109 glib/gkeyfile.c:2321
#, c-format
msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be "
"Die Schlüsselwertedatei enthält den Schlüssel »%s« in der Gruppe »%s« mit "
"einem Wert der nicht interpretiert werden konnte."
-#: ../glib/gkeyfile.c:2505 ../glib/gkeyfile.c:2708 ../glib/gkeyfile.c:3240
+#: glib/gkeyfile.c:2505 glib/gkeyfile.c:2708 glib/gkeyfile.c:3240
#, c-format
msgid "Key file does not have key '%s' in group '%s'"
msgstr "Die Schlüsselwertedatei hat keinen Schlüssel »%s« in der Gruppe »%s«"
-#: ../glib/gkeyfile.c:3474
+#: glib/gkeyfile.c:3474
msgid "Key file contains escape character at end of line"
msgstr "Die Schlüsselwertedatei enthält ein Escape-Zeichen am Zeilenende"
# CHECK
-#: ../glib/gkeyfile.c:3496
+#: glib/gkeyfile.c:3496
#, c-format
msgid "Key file contains invalid escape sequence '%s'"
msgstr "Die Schlüsselwertedatei enthält das ungültige Escape-Zeichen »%s«"
-#: ../glib/gkeyfile.c:3638
+#: glib/gkeyfile.c:3638
#, c-format
msgid "Value '%s' cannot be interpreted as a number."
msgstr "Der Wert »%s« konnte nicht als Zahl interpretiert werden."
-#: ../glib/gkeyfile.c:3652
+#: glib/gkeyfile.c:3652
#, c-format
msgid "Integer value '%s' out of range"
msgstr "Ganzzahliger Wert »%s« ist außerhalb des Wertebereiches."
-#: ../glib/gkeyfile.c:3685
+#: glib/gkeyfile.c:3685
#, c-format
msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Der Wert »%s« konnte nicht als Gleitkommazahl interpretiert werden."
-#: ../glib/gkeyfile.c:3709
+#: glib/gkeyfile.c:3709
#, c-format
msgid "Value '%s' cannot be interpreted as a boolean."
msgstr ""
"Der Wert »%s« konnte nicht als boolescher Ausdruck interpretiert werden."
-#: ../gio/gbufferedinputstream.c:485 ../gio/ginputstream.c:187
-#: ../gio/ginputstream.c:319 ../gio/ginputstream.c:560
-#: ../gio/ginputstream.c:685 ../gio/goutputstream.c:195
-#: ../gio/goutputstream.c:649
+#: gio/gbufferedinputstream.c:485 gio/ginputstream.c:187
+#: gio/ginputstream.c:319 gio/ginputstream.c:560 gio/ginputstream.c:685
+#: gio/goutputstream.c:195 gio/goutputstream.c:649
#, c-format
msgid "Too large count value passed to %s"
msgstr "Zu großer Zählwert an %s übermittelt"
-#: ../gio/gbufferedinputstream.c:872 ../gio/ginputstream.c:895
-#: ../gio/goutputstream.c:1078
+#: gio/gbufferedinputstream.c:872 gio/ginputstream.c:895
+#: gio/goutputstream.c:1078
msgid "Stream is already closed"
msgstr "Datenstrom ist bereits geschlossen"
-#: ../gio/gcancellable.c:295 ../gio/glocalfile.c:1974
-#: ../gio/gsimpleasyncresult.c:612
+#: gio/gcancellable.c:295 gio/glocalfile.c:1974 gio/gsimpleasyncresult.c:612
msgid "Operation was cancelled"
msgstr "Vorgang wurde abgebrochen"
-#: ../gio/gcontenttype.c:180
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Unbekannter Typ"
-#: ../gio/gcontenttype.c:181
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s-Dateityp"
-#: ../gio/gcontenttype.c:678
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s-Typ"
-#: ../gio/gdatainputstream.c:310
+#: gio/gdatainputstream.c:310
msgid "Unexpected early end-of-stream"
msgstr "Unerwartet frühes Datenstromende"
-#: ../gio/gdesktopappinfo.c:429 ../gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Unbenannt"
-#: ../gio/gdesktopappinfo.c:606
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Desktop-Datei hat kein Exec-Feld angegeben"
-#: ../gio/gdesktopappinfo.c:900
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Für die Anwendung benötigtes Terminal konnte nicht gefunden werden"
-#: ../gio/gdesktopappinfo.c:1132
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
"Konfigurationsordner %s für Benutzeranwendungen konnte nicht erstellt "
"werden: %s"
-#: ../gio/gdesktopappinfo.c:1136
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
"MIME-Konfigurationsordner %s des Benutzers konnte nicht erstellt werden: %s"
-#: ../gio/gdesktopappinfo.c:1475
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Benutzer-Desktop-Datei %s kann nicht erstellt werden"
-#: ../gio/gdesktopappinfo.c:1550
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Benutzerdefinition für %s"
-#: ../gio/gdrive.c:375
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "Laufwerk unterstützt Auswerfen nicht"
-#: ../gio/gdrive.c:442
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "Laufwerk unterstützt Prüfen auf Datenträger nicht"
-#: ../gio/gfile.c:825 ../gio/gfile.c:1055 ../gio/gfile.c:1190
-#: ../gio/gfile.c:1426 ../gio/gfile.c:1480 ../gio/gfile.c:1537
-#: ../gio/gfile.c:1620 ../gio/gfile.c:2681 ../gio/gfile.c:2732
-#: ../gio/gfile.c:2860 ../gio/gfile.c:2900 ../gio/gfile.c:3227
-#: ../gio/gfile.c:3629 ../gio/gfile.c:3713 ../gio/gfile.c:3796
-#: ../gio/gfile.c:3876 ../gio/gfile.c:4206
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Vorgang nicht unterstützt"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: ../gio/gfile.c:1311 ../gio/glocalfile.c:1064 ../gio/glocalfile.c:1075
-#: ../gio/glocalfile.c:1088
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Enthaltender Einhängepunkt existiert nicht"
-#: ../gio/gfile.c:1963 ../gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Es kann nicht über das Verzeichnis kopiert werden"
-#: ../gio/gfile.c:2023
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Verzeichnis kann nicht über Verzeichnis kopiert werden"
-#: ../gio/gfile.c:2031 ../gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Zieldatei existiert"
-#: ../gio/gfile.c:2049
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Verzeichnis kann nicht rekursiv kopiert werden"
-#: ../gio/gfile.c:2850
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Ungültiger Wert für Symbolische Verknüpfung angegeben"
-#: ../gio/gfile.c:2943
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Müll nicht unterstützt"
-#: ../gio/gfile.c:2992
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Dateinamen dürfen kein »%c« enthalten"
-#: ../gio/gfile.c:4974 ../gio/gvolume.c:370
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "Datenträger unterstützt Einhängen nicht"
-#: ../gio/gfile.c:5082
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Es wurde keine Anwendung gefunden, die diese Datei verarbeiten kann"
-#: ../gio/gfileenumerator.c:205
+#: gio/gfileenumerator.c:205
msgid "Enumerator is closed"
msgstr "Datei-Enumerator ist geschlossen"
-#: ../gio/gfileenumerator.c:212 ../gio/gfileenumerator.c:271
-#: ../gio/gfileenumerator.c:371 ../gio/gfileenumerator.c:480
+#: gio/gfileenumerator.c:212 gio/gfileenumerator.c:271
+#: gio/gfileenumerator.c:371 gio/gfileenumerator.c:480
msgid "File enumerator has outstanding operation"
msgstr "Datei-Enumerator hat noch einen ausstehenden Vorgang"
-#: ../gio/gfileenumerator.c:361 ../gio/gfileenumerator.c:470
+#: gio/gfileenumerator.c:361 gio/gfileenumerator.c:470
msgid "File enumerator is already closed"
msgstr "Datei-Enumerator ist bereits geschlossen"
-#: ../gio/gfileinputstream.c:157 ../gio/gfileinputstream.c:424
-#: ../gio/gfileoutputstream.c:171 ../gio/gfileoutputstream.c:526
+#: gio/gfileinputstream.c:157 gio/gfileinputstream.c:424
+#: gio/gfileoutputstream.c:171 gio/gfileoutputstream.c:526
msgid "Stream doesn't support query_info"
msgstr "Datenstrom unterstützt nicht query_info"
-#: ../gio/gfileinputstream.c:339 ../gio/gfileoutputstream.c:384
+#: gio/gfileinputstream.c:339 gio/gfileoutputstream.c:384
msgid "Seek not supported on stream"
msgstr "Suchen im Datenstrom nicht unterstützt"
-#: ../gio/gfileinputstream.c:383
+#: gio/gfileinputstream.c:383
msgid "Truncate not allowed on input stream"
msgstr "Abschneiden des Eingabedatenstroms nicht erlaubt"
-#: ../gio/gfileoutputstream.c:460
+#: gio/gfileoutputstream.c:460
msgid "Truncate not supported on stream"
msgstr "Abschneiden wird vom Datenstrom nicht unterstützt"
-#: ../gio/ginputstream.c:196
+#: gio/ginputstream.c:196
msgid "Input stream doesn't implement read"
msgstr "Eingabedatenstrom unterstützt kein Lesen"
#. Translators: This is an error you get if there is
#. * already an operation running against this stream when
#. * you try to start one
-#: ../gio/ginputstream.c:905 ../gio/goutputstream.c:1088
+#: gio/ginputstream.c:905 gio/goutputstream.c:1088
msgid "Stream has outstanding operation"
msgstr "Datenstrom hat noch einen ausstehenden Vorgang"
-#: ../gio/glocaldirectorymonitor.c:274
+#: gio/glocaldirectorymonitor.c:274
msgid "Unable to find default local directory monitor type"
msgstr ""
"Vorgegebener Überwachungstyp für lokale Ordner konnte nicht gefunden werden"
-#: ../gio/glocalfile.c:601
+#: gio/glocalfile.c:601
#, c-format
msgid "Invalid filename %s"
msgstr "Ungültiger Dateiname %s"
-#: ../gio/glocalfile.c:972
+#: gio/glocalfile.c:972
#, c-format
msgid "Error getting filesystem info: %s"
msgstr "Fehler beim Einlesen der Dateisystem-Information: %s"
-#: ../gio/glocalfile.c:1108
+#: gio/glocalfile.c:1108
msgid "Can't rename root directory"
msgstr "Wurzelverzeichnis kann nicht umbenannt werden"
-#: ../gio/glocalfile.c:1126
+#: gio/glocalfile.c:1126
msgid "Can't rename file, filename already exist"
msgstr "Datei kann nicht umbenannt werden, da der Dateiname bereits existiert"
-#: ../gio/glocalfile.c:1139 ../gio/glocalfile.c:2003 ../gio/glocalfile.c:2032
-#: ../gio/glocalfile.c:2186 ../gio/glocalfileoutputstream.c:472
-#: ../gio/glocalfileoutputstream.c:517 ../gio/glocalfileoutputstream.c:925
+#: gio/glocalfile.c:1139 gio/glocalfile.c:2003 gio/glocalfile.c:2032
+#: gio/glocalfile.c:2186 gio/glocalfileoutputstream.c:472
+#: gio/glocalfileoutputstream.c:517 gio/glocalfileoutputstream.c:925
msgid "Invalid filename"
msgstr "Ungültiger Dateiname"
-#: ../gio/glocalfile.c:1143
+#: gio/glocalfile.c:1143
#, c-format
msgid "Error renaming file: %s"
msgstr "Fehler beim Umbenennen der Datei: %s"
-#: ../gio/glocalfile.c:1262
+#: gio/glocalfile.c:1262
#, c-format
msgid "Error opening file: %s"
msgstr "Fehler beim Öffnen der Datei: %s"
-#: ../gio/glocalfile.c:1272
+#: gio/glocalfile.c:1272
msgid "Can't open directory"
msgstr "Verzeichnis kann nicht geöffnet werden"
-#: ../gio/glocalfile.c:1332
+#: gio/glocalfile.c:1332
#, c-format
msgid "Error removing file: %s"
msgstr "Fehler beim Entfernen der Datei: %s"
-#: ../gio/glocalfile.c:1696
+#: gio/glocalfile.c:1696
#, c-format
msgid "Error trashing file: %s"
msgstr "Fehler beim Verschieben der Datei in den Müll: %s"
-#: ../gio/glocalfile.c:1719
+#: gio/glocalfile.c:1719
#, c-format
msgid "Unable to create trash dir %s: %s"
msgstr "Müll-Verzeichnis %s konnte nicht angelegt werden: %s"
-#: ../gio/glocalfile.c:1740
+#: gio/glocalfile.c:1740
msgid "Unable to find toplevel directory for trash"
msgstr "Elternverzeichnis für den Müll konnte nicht gefunden werden"
-#: ../gio/glocalfile.c:1819 ../gio/glocalfile.c:1839
+#: gio/glocalfile.c:1819 gio/glocalfile.c:1839
msgid "Unable to find or create trash directory"
msgstr "Müll-Verzeichnis konnte nicht gefunden oder angelegt werden"
-#: ../gio/glocalfile.c:1873
+#: gio/glocalfile.c:1873
#, c-format
msgid "Unable to create trashing info file: %s"
msgstr "Löschprotokoll-Datei konnte nicht angelegt werden: %s"
-#: ../gio/glocalfile.c:1898 ../gio/glocalfile.c:1973 ../gio/glocalfile.c:1980
+#: gio/glocalfile.c:1898 gio/glocalfile.c:1973 gio/glocalfile.c:1980
#, c-format
msgid "Unable to trash file: %s"
msgstr "Datei konnte nicht in den Müll verschoben werden: %s"
-#: ../gio/glocalfile.c:2007
+#: gio/glocalfile.c:2007
#, c-format
msgid "Error creating directory: %s"
msgstr "Fehler beim Erstellen des Verzeichnisses: %s"
-#: ../gio/glocalfile.c:2036
+#: gio/glocalfile.c:2036
#, c-format
msgid "Error making symbolic link: %s"
msgstr "Fehler beim Erstellen des Symbolischen Verknüpfung: %s"
-#: ../gio/glocalfile.c:2096 ../gio/glocalfile.c:2190
+#: gio/glocalfile.c:2096 gio/glocalfile.c:2190
#, c-format
msgid "Error moving file: %s"
msgstr "Fehler beim Verschieben der Datei: %s"
-#: ../gio/glocalfile.c:2119
+#: gio/glocalfile.c:2119
msgid "Can't move directory over directory"
msgstr "Verzeichnis kann nicht über Verzeichnis verschoben werden"
-#: ../gio/glocalfile.c:2146 ../gio/glocalfileoutputstream.c:777
-#: ../gio/glocalfileoutputstream.c:791 ../gio/glocalfileoutputstream.c:806
-#: ../gio/glocalfileoutputstream.c:822 ../gio/glocalfileoutputstream.c:836
+#: gio/glocalfile.c:2146 gio/glocalfileoutputstream.c:777
+#: gio/glocalfileoutputstream.c:791 gio/glocalfileoutputstream.c:806
+#: gio/glocalfileoutputstream.c:822 gio/glocalfileoutputstream.c:836
msgid "Backup file creation failed"
msgstr "Erstellen der Backup-Datei fehlgeschlagen"
-#: ../gio/glocalfile.c:2165
+#: gio/glocalfile.c:2165
#, c-format
msgid "Error removing target file: %s"
msgstr "Fehler beim Entfernen der Zieldatei: %s"
-#: ../gio/glocalfile.c:2179
+#: gio/glocalfile.c:2179
msgid "Move between mounts not supported"
msgstr "Verschieben zwischen Einhängepunkten nicht unterstützt"
-#: ../gio/glocalfileinfo.c:716
+#: gio/glocalfileinfo.c:716
msgid "Attribute value must be non-NULL"
msgstr "Attributwert darf nicht NULL sein"
-#: ../gio/glocalfileinfo.c:723
+#: gio/glocalfileinfo.c:723
msgid "Invalid attribute type (string expected)"
msgstr "Ungültiger Attributtyp (»string« erwartet)"
-#: ../gio/glocalfileinfo.c:730
+#: gio/glocalfileinfo.c:730
msgid "Invalid extended attribute name"
msgstr "Ungültiger erweiterter Attributname"
-#: ../gio/glocalfileinfo.c:770
+#: gio/glocalfileinfo.c:770
#, c-format
msgid "Error setting extended attribute '%s': %s"
msgstr "Fehler beim Setzen des erweiterten Attributs »%s«: %s"
-#: ../gio/glocalfileinfo.c:1456 ../gio/glocalfileoutputstream.c:666
+#: gio/glocalfileinfo.c:1456 gio/glocalfileoutputstream.c:666
#, c-format
msgid "Error stating file '%s': %s"
msgstr "Fehler beim Untersuchen der Datei %s mit fstat(): %s"
-#: ../gio/glocalfileinfo.c:1526
+#: gio/glocalfileinfo.c:1526
msgid " (invalid encoding)"
msgstr " (ungültige Kodierung)"
-#: ../gio/glocalfileinfo.c:1696
+#: gio/glocalfileinfo.c:1696
#, c-format
msgid "Error stating file descriptor: %s"
msgstr "Fehler beim Untersuchen des Datei-Deskriptors mit fstat(): %s"
-#: ../gio/glocalfileinfo.c:1741
+#: gio/glocalfileinfo.c:1741
msgid "Invalid attribute type (uint32 expected)"
msgstr "Ungültiger Attributtyp (»uint32« erwartet)"
-#: ../gio/glocalfileinfo.c:1759
+#: gio/glocalfileinfo.c:1759
msgid "Invalid attribute type (uint64 expected)"
msgstr "Ungültiger Attributtyp (»uint64« erwartet)"
-#: ../gio/glocalfileinfo.c:1778
+#: gio/glocalfileinfo.c:1778
msgid "Invalid attribute type (byte string expected)"
msgstr "Ungültiger Attributtyp (»byte string« erwartet)"
-#: ../gio/glocalfileinfo.c:1804
+#: gio/glocalfileinfo.c:1804
#, c-format
msgid "Error setting permissions: %s"
msgstr "Fehler beim Setzen der Zugriffsrechte: %s"
-#: ../gio/glocalfileinfo.c:1855 ../gio/glocalfileinfo.c:2023
+#: gio/glocalfileinfo.c:1855 gio/glocalfileinfo.c:2023
#, c-format
msgid "Error setting owner: %s"
msgstr "Fehler beim Setzen des Besitzers: %s"
-#: ../gio/glocalfileinfo.c:1878
+#: gio/glocalfileinfo.c:1878
msgid "symlink must be non-NULL"
msgstr "Symbolische Verknüpfung darf nicht NULL sein"
-#: ../gio/glocalfileinfo.c:1888 ../gio/glocalfileinfo.c:1907
-#: ../gio/glocalfileinfo.c:1918
+#: gio/glocalfileinfo.c:1888 gio/glocalfileinfo.c:1907
+#: gio/glocalfileinfo.c:1918
#, c-format
msgid "Error setting symlink: %s"
msgstr "Fehler beim Setzen der Symbolischen Verknüpfung: %s"
-#: ../gio/glocalfileinfo.c:1897
+#: gio/glocalfileinfo.c:1897
msgid "Error setting symlink: file is not a symlink"
msgstr ""
"Fehler beim Setzen der Symbolischen Verknüpfung: Datei ist keine Symbolische "
"Verknüpfung"
-#: ../gio/glocalfileinfo.c:2078
+#: gio/glocalfileinfo.c:2078
#, c-format
msgid "Setting attribute %s not supported"
msgstr "Setzen des Attributs %s nicht unterstützt"
-#: ../gio/glocalfileinputstream.c:160 ../gio/glocalfileoutputstream.c:570
+#: gio/glocalfileinputstream.c:160 gio/glocalfileoutputstream.c:570
#, c-format
msgid "Error reading from file: %s"
msgstr "Fehler beim Lesen aus Datei: %s"
-#: ../gio/glocalfileinputstream.c:191 ../gio/glocalfileinputstream.c:203
-#: ../gio/glocalfileinputstream.c:312 ../gio/glocalfileoutputstream.c:372
-#: ../gio/glocalfileoutputstream.c:854
+#: gio/glocalfileinputstream.c:191 gio/glocalfileinputstream.c:203
+#: gio/glocalfileinputstream.c:312 gio/glocalfileoutputstream.c:372
+#: gio/glocalfileoutputstream.c:854
#, c-format
msgid "Error seeking in file: %s"
msgstr "Fehler beim Suchen in Datei: %s"
-#: ../gio/glocalfileinputstream.c:233 ../gio/glocalfileoutputstream.c:279
+#: gio/glocalfileinputstream.c:233 gio/glocalfileoutputstream.c:279
#, c-format
msgid "Error closing file: %s"
msgstr "Fehler beim Schließen der Datei: %s"
-#: ../gio/glocalfilemonitor.c:198
+#: gio/glocalfilemonitor.c:198
msgid "Unable to find default local file monitor type"
msgstr ""
"Vorgegebener Überwachungstyp für lokale Dateien konnte nicht gefunden werden"
-#: ../gio/glocalfileoutputstream.c:172 ../gio/glocalfileoutputstream.c:591
+#: gio/glocalfileoutputstream.c:172 gio/glocalfileoutputstream.c:591
#, c-format
msgid "Error writing to file: %s"
msgstr "Fehler beim Schreiben in Datei: %s"
-#: ../gio/glocalfileoutputstream.c:213
+#: gio/glocalfileoutputstream.c:213
#, c-format
msgid "Error removing old backup link: %s"
msgstr "Fehler beim Entfernen der alten Backup-Verknüpfung: %s"
-#: ../gio/glocalfileoutputstream.c:227 ../gio/glocalfileoutputstream.c:240
+#: gio/glocalfileoutputstream.c:227 gio/glocalfileoutputstream.c:240
#, c-format
msgid "Error creating backup copy: %s"
msgstr "Fehler beim Erzeugen der Backup-Kopie: %s"
-#: ../gio/glocalfileoutputstream.c:258
+#: gio/glocalfileoutputstream.c:258
#, c-format
msgid "Error renaming temporary file: %s"
msgstr "Fehler beim Umbenennen der temporären Datei: %s"
-#: ../gio/glocalfileoutputstream.c:418 ../gio/glocalfileoutputstream.c:871
+#: gio/glocalfileoutputstream.c:418 gio/glocalfileoutputstream.c:871
#, c-format
msgid "Error truncating file: %s"
msgstr "Fehler beim Abschneiden der Datei: %s"
-#: ../gio/glocalfileoutputstream.c:478 ../gio/glocalfileoutputstream.c:523
-#: ../gio/glocalfileoutputstream.c:654 ../gio/glocalfileoutputstream.c:931
+#: gio/glocalfileoutputstream.c:478 gio/glocalfileoutputstream.c:523
+#: gio/glocalfileoutputstream.c:654 gio/glocalfileoutputstream.c:931
#, c-format
msgid "Error opening file '%s': %s"
msgstr "Fehler beim Öffnen der Datei »%s«: %s"
-#: ../gio/glocalfileoutputstream.c:679
+#: gio/glocalfileoutputstream.c:679
msgid "Target file is a directory"
msgstr "Zieldatei ist ein Verzeichnis"
-#: ../gio/glocalfileoutputstream.c:684
+#: gio/glocalfileoutputstream.c:684
msgid "Target file is not a regular file"
msgstr "Zieldatei ist keine reguläre Datei"
-#: ../gio/glocalfileoutputstream.c:696
+#: gio/glocalfileoutputstream.c:696
msgid "The file was externally modified"
msgstr "Die Datei wurde extern verändert"
-#: ../gio/gmemoryinputstream.c:487 ../gio/gmemoryoutputstream.c:545
+#: gio/gmemoryinputstream.c:487 gio/gmemoryoutputstream.c:545
msgid "Invalid GSeekType supplied"
msgstr "Ungültiger GSeekType übergeben"
-#: ../gio/gmemoryinputstream.c:497 ../gio/gmemoryoutputstream.c:555
+#: gio/gmemoryinputstream.c:497 gio/gmemoryoutputstream.c:555
msgid "Invalid seek request"
msgstr "Ungültige Suchanfrage"
-#: ../gio/gmemoryinputstream.c:521
+#: gio/gmemoryinputstream.c:521
msgid "Cannot truncate GMemoryInputStream"
msgstr "GMemoryInputStream konnte nicht abgeschnitten werden"
-#: ../gio/gmemoryoutputstream.c:288
+#: gio/gmemoryoutputstream.c:288
msgid "Reached maximum data array limit"
msgstr "Maximales Limit des Daten-Feldes erreicht"
-#: ../gio/gmemoryoutputstream.c:323
+#: gio/gmemoryoutputstream.c:323
msgid "Memory output stream not resizable"
msgstr "Größe des Speicherausgabestroms ist nicht änderbar"
-#: ../gio/gmemoryoutputstream.c:339
+#: gio/gmemoryoutputstream.c:339
msgid "Failed to resize memory output stream"
msgstr "Größe des Speicherausgabestroms konnte nicht geändert werden"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: ../gio/gmount.c:358
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "Einhängepunkt unterstützt Aushängen nicht"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: ../gio/gmount.c:433
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "Einhängepunkt unterstützt Auswerfen nicht"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: ../gio/gmount.c:515
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "Einhängepunkt unterstützt erneutes Einhängen nicht"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement content type guessing.
-#: ../gio/gmount.c:598
+#: gio/gmount.c:600
msgid "mount doesn't implement content type guessing"
msgstr "Einhängepunkt unterstützt nicht Erraten des Inhaltstyps"
-#: ../gio/goutputstream.c:204 ../gio/goutputstream.c:405
+#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Ausgabedatenstrom unterstützt kein Schreiben"
-#: ../gio/goutputstream.c:365 ../gio/goutputstream.c:773
+#: gio/goutputstream.c:365 gio/goutputstream.c:773
msgid "Source stream is already closed"
msgstr "Quelldatenstrom ist bereits geschlossen"
-#: ../gio/gthemedicon.c:206
+#: gio/gthemedicon.c:206
msgid "name"
msgstr "Name"
-#: ../gio/gthemedicon.c:207
+#: gio/gthemedicon.c:207
msgid "The name of the icon"
msgstr "Der Name des Symbols"
-#: ../gio/gthemedicon.c:218
+#: gio/gthemedicon.c:218
msgid "names"
msgstr "Namen"
-#: ../gio/gthemedicon.c:219
+#: gio/gthemedicon.c:219
msgid "An array containing the icon names"
msgstr "Ein Datenfeld, das die Symbolnamen enthält"
-#: ../gio/gthemedicon.c:244
+#: gio/gthemedicon.c:244
msgid "use default fallbacks"
msgstr "Standard-Alternativen benutzen"
-#: ../gio/gthemedicon.c:245
+#: gio/gthemedicon.c:245
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
"Name bei »-«-Zeichen abgeschnitten wird. Alle Namen nach dem ersten werden "
"ignoriert falls mehrere angegeben sind."
-#: ../gio/gunixinputstream.c:201 ../gio/gunixinputstream.c:221
-#: ../gio/gunixinputstream.c:299 ../gio/gunixoutputstream.c:288
+#: gio/gunixinputstream.c:201 gio/gunixinputstream.c:221
+#: gio/gunixinputstream.c:299 gio/gunixoutputstream.c:288
#, c-format
msgid "Error reading from unix: %s"
msgstr "Fehler beim Lesen aus Unix-Datenstrom: %s"
-#: ../gio/gunixinputstream.c:254 ../gio/gunixinputstream.c:436
-#: ../gio/gunixoutputstream.c:243 ../gio/gunixoutputstream.c:394
+#: gio/gunixinputstream.c:254 gio/gunixinputstream.c:436
+#: gio/gunixoutputstream.c:243 gio/gunixoutputstream.c:394
#, c-format
msgid "Error closing unix: %s"
msgstr "Fehler beim Schließen des Unix-Datenstroms: %s"
-#: ../gio/gunixmounts.c:1776 ../gio/gunixmounts.c:1813
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Wurzelverzeichnis des Dateisystems"
-#: ../gio/gunixoutputstream.c:189 ../gio/gunixoutputstream.c:210
+#: gio/gunixoutputstream.c:189 gio/gunixoutputstream.c:210
#, c-format
msgid "Error writing to unix: %s"
msgstr "Fehler beim Schreiben in Unix-Datenstrom: %s"
-#: ../gio/gvolume.c:439
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "Datenträger unterstützt Auswerfen nicht"
-#: ../gio/gwin32appinfo.c:277
+#: gio/gwin32appinfo.c:277
msgid "Can't find application"
msgstr "Anwendung kann nicht gefunden werden"
-#: ../gio/gwin32appinfo.c:312
+#: gio/gwin32appinfo.c:312
#, c-format
msgid "Error launching application: %s"
msgstr "Fehler beim Starten der Anwendung: %s"
-#: ../gio/gwin32appinfo.c:349
+#: gio/gwin32appinfo.c:349
msgid "URIs not supported"
msgstr "URIs nicht unterstützt"
-#: ../gio/gwin32appinfo.c:371
+#: gio/gwin32appinfo.c:371
msgid "association changes not supported on win32"
msgstr "Änderungen von Assoziationen unter win32 nicht unterstützt"
-#: ../gio/gwin32appinfo.c:383
+#: gio/gwin32appinfo.c:383
msgid "Association creation not supported on win32"
msgstr "Erstellen von Assoziationen unter win32 nicht unterstützt"
-#: ../tests/gio-ls.c:27
+#: tests/gio-ls.c:27
msgid "do not hide entries"
msgstr "Einträge nicht verbergen"
-#: ../tests/gio-ls.c:29
+#: tests/gio-ls.c:29
msgid "use a long listing format"
msgstr "langes Listenformat verwenden"
-#: ../tests/gio-ls.c:37
+#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[DATEI …]]"
msgstr ""
"Project-Id-Version: glib.HEAD.dz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"X-Poedit-SourceCharset: utf-8\n"
"Plural-Forms: nplurals=2;plural=(n!=1);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "རེ་བ་མེད་པའི་ཁྱད་ཆོས་ '%s'ཆ་ཤས་'%s'གི་དོན་ལུ།"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "ཁྱད་ཆོས་'%s'འཚོལ་མ་ཐོབ་ ཆ་ཤས་'%sགི"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "རེ་བ་མེད་པའི་ངོ་རྟགས་ '%s'། རེ་བ་བསྐྱེད་མི་ངོ་རྟགས་'%s'།"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "རེ་བ་མེད་པའི་ངོ་རྟགས་ '%s' ངོ་རྟགས། '%s'ནང་ན།"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "གནད་སྡུད་སྣོད་ཐོ་ཚུ་ནང་ ནུས་ཅན་དེབ་རྟགས་ཡིག་སྣོད་ འཚོལ་མ་ཐོབ།"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "ཡུ་ཨར་ཨའི་'%s'གི་དོན་ལུ་ དེབ་རྟགས་ཅིག་ཧེ་མ་ལས་རང་འདུག"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "ཡུ་ཨར་ཨའི་'%s'གི་དོན་ལུ་དེབ་རྟགས་མ་ཐོབ།"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "ཡུ་ཨར་ཨའི་'%s'གི་དོན་ལུ་དེབ་རྟགས་ནང་ མ་ཡིམ་གྱི་དབྱེ་བ་ངེས་འཛིན་མ་འབད་བས། "
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "ཡུ་ཨར་ཨའི་'%s'གི་དོན་ལུ་དེབ་རྟགས་ནང་ སྒེར་གྱི་ཟུར་རྟགས་ངེས་འཛིན་མ་འབད་བས།"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "ཡུ་ཨར་ཨའི་'%sགི་དོན་ལུ་ དེབ་རྟགས་ནང་ སྡེ་ཚན་གཞི་སྒྲིག་མ་འབད་བས།"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "མིང་'%sའབད་མི་གློག་རིམ་གྱིས་ '%s དོན་ལུ་ དེབ་རྟགས་ཅིག་ཐོ་འགོད་མ་འབད་བས། "
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "བརྡ་མཚོན་འགྲེལ་ལམ་ ’%s’:%s ལྷག་མ་ཚུགས།"
msgid "Error opening directory '%s': %s"
msgstr "སྣོད་ཐོ་ '%s':%s ཁ་ཕྱེ་ནི་ལུ་འཛོལ་བ།"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "བཱཡིཊི་ %lu བསྐལ་སྤྲོད་འབད་མ་ཚུགས་ \"%s\" ལྷག་ནི་ལུ།"
msgid "Error reading file '%s': %s"
msgstr "ཡིག་སྣོད་ ’%s’: %s ལྷག་ནི་ལུ་འཛོལ་བ།"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "ཡིག་སྣོད་ ’%s’: %s ནང་ལས་ ལྷག་མ་ཚུགས།"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "ཡིག་སྣོད་ ’%s’: %s ཁ་ཕྱེ་མ་ཚུགས།"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "ཡིག་སྣོད་ '%s': fstat() གི་ཁྱད་ཆོས་ཚུ་ ལེན་མ་ཚུགས་ :%sམ་བཏུབ།"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "ཡིག་སྣོད་ ’%s’:fdopen() ཁ་ཕྱེ་མ་ཚུགས། %s་མ་བཏུབ།"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "ཡིག་སྣོད་ ’%s’ལས་'%s' ལུ་ བསྐྱར་མིང་བཏགས་མ་ཚུགས། g_rename() གིས་ %s ལུ་མ་བཏུབ།"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "ཡིག་སྣོད་ ’%s’:%s གསར་བསྐྲུན་འབད་མ་ཚུགས།"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "ཡིག་སྣོད་’%s’ འབྲི་ནིའི་དོན་ལུ་ ཁ་ཕྱེ་མ་ཚུགས་: fdopen() མ་བཏུབ་:%s།"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "ཡིག་སྣོད་ ’%s’འབྲི་མ་ཚུགས་: fwrite() མ་བཏུབ་:%s།"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "ཡིག་སྣོད་ ’%s’ཁ་བསྡམས་མ་ཚུགས་: fclose() མ་བཏུབ་:%s།"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "ཡོད་བཞིན་པའི་ཡིག་སྣོད་'%s' དེ་ རྩ་བསྐྲད་གཏང་མ་ཚུགས་: g_unlink() མ་བཏུབ་:%s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "ཊེམ་པེ་ལེཊི་ '%s' དེ་ནུས་མེད་ཨིན། དེ་ནང་ '%s' འབད་མི་ བཞག་ནི་མི་འོང༌།"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "ཊེམ་པེལེཊི་ ’%s’ འབད་མི་དེ་ནང་ XXXXXX མིན་འདུག།"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "བརྡ་མཚོན་འགྲེལ་ལམ་ ’%s’:%s ལྷག་མ་ཚུགས།"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "བརྡ་མཚོན་འགྲེལ་ལམ་ལུ་ རྒྱབ་སྐྱོར་མིན་འདུག"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "ཡིག་སྣོད་’%s’ གི་ས་ཁྲ་འབྲི་མ་ཚུགས་: mmap() མ་བཏུབ་:%s།"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "གྱལ་རིམ་%d ཡིག་འབྲུ་ %d:%s ལུ་འཛོལ་བ།"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "གྱལ་རིམ་ %d་: %s ལུ་འཛོལ་བ།"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"ངོ་བོ་སྟོང་པ་ ’&;’ མཐོང་ཅི། ནུས་ཅན་ངོ་བོ་ཚུ་: & " < > ' ཚུ་ཨིན།"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"ངོ་བོའི་མིང་ འགོ་བཙུགས་སར ཡིག་འབྲུ་་ ’%s’ ནུས་མེད་ཨིན་པས། ཡིག་འབྲུ་ & འདི་གིས་ངོ་བོ་ཅིག་ འགོ་"
"བཙུགསཔ་ཨིན། གལ་སྲིད་ དང་རྟགས་འདི་ ངོ་བོ་མིནམ་ཅིག་དགོ་པཅིན་ & བཟུམ་ཅིག་སྦེ་ གྲོས་ཐར་འབད།"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "ཡིག་འབྲུ་ ’%s དེ་ ངོ་བོའི་མིང་ཅིག་གི་ ནང་འཁོད་ལུ་ ནུས་མེད་ཨིན། "
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "ངོ་བོའི་མིང་ '%s' ཧ་མ་གོ"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"ངོ་བོ་འདི་ སེ་མི་ཀོ་ལཱོན་ ; གིས་འབད་ མཇུག་མ་བསྡུ་བས། ཁྱོད་ཀྱིས་ངོ་བོ་ཅིག་ འགོ་མ་བཙུགས་པར་ དང་རྟགས་"
"ཡིག་འབྲུ་ཅིག་ ལག་ལེན་འཐབ་འཐབ་བཟུམ་ཅིག་འདུག དང་རྟགས་་ & བཟུམ་ཅིག་སྦེ་ གྲོས་ཐར་འབད།"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"'%-.*s'ལུ་ མིང་དཔྱད་འབད་མ་ཚུགས། འདི་ཡིག་འབྲུ་གཞི་བསྟུན་ (དཔེར་ན་ (ê ) ཅིག་ནང་གི་ ཨང་"
"ཡིག་ཅིག་འོང་དགོཔ་ཨིན་ - ཨང་ཡིག་དེ་ སྦོམ་དྲགསཔ་འོང་ནི་མས།"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "ཡིག་འབྲུ་གཞི་བསྟུན་ '%-.*s' དེ་གིས་ གནང་བ་ཅན་གྱི་ཡིག་འབྲུ་ཅིག་ལུ་ ཨིན་ཀོཌི་མི་འབད་བས།"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "ཡིག་འབྲུ་སྟོང་པའི་འབྲེལ་བ་འདི་ནང་ dž བཟུམ་མའི་ ཨང་ཡིག་ཅིག་འོང་དགོ"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"མེད་པར་ དང་རྟགས་ ཡིག་འབྲུ་ ལག་ལེན་འཐབ་འཐབ་འོང་ནི་མས། དང་རྟགས་དེ་ & བཟུམ་སྦེ་ གྲོས་ཐར་"
"འབད།"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "མཇུག་མ་བསྡུ་བའི་ ངོ་བོའི་གཞི་བསྟུན།"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "མཇུག་མ་བསྡུ་བའི་ ཡིག་འབྲུའི་གཞི་བསྟུན།"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "ནུས་མེད་ཡུ་ཊི་ཨེཕ་-༨ ཀྱི ཨིན་ཀོ་དེཌི་ཚིག་ཡིག"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "ནུས་མེད་ཡུ་ཊི་ཨེཕ་-༨ ཀྱི ཨིན་ཀོ་དེཌི་ཚིག་ཡིག"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "ནུས་མེད་ཡུ་ཊི་ཨེཕ་-༨ ཀྱི ཨིན་ཀོ་དེཌི་ཚིག་ཡིག"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "ཡིག་ཆ་དེ་ (དཔེར་ན་ <book>) བཟུམ་མའི་ཆ་ཤས་ཅིག་གིས་ འགོ་བཙུགས་དགོ"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"ཡིག་འབྲུ་ ’%s’ དེ་ ཡིག་འབྲུ་’<’ ཅིག་གི་རྗེས་སུ་འོངམ་ད་ ནུས་པ་ཡོད་པའི་ཡིག་འབྲུ་ཅིག་མིན། འདི་གིས་ཆ་ཤས་"
"ཀྱི་མིང་ཅིག་ འགོ་མི་བཙུགསཔ་འོང༌།"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"’%s’ དེ་རྐྱང་ཡིག་ཨིན་པས། ཆ་ཤས་ཀྱི་ འགོ་བཙུགས་ངོ་རྟགས་ %s’ དེ་མཇུག་བསྡུ་ནི་ལུ་ ཡིག་འབྲུ་ ’>’ ཅིག་ "
"ཨིན་པའི་རེ་བ་ཡོད།"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"’%s’ དེ་རྐྱང་ཡིག་ཨིན་པས། ’=’ ཅིག་ཡོད་པའི་ རེ་བ་ཡོད་ ཁྱད་ཆོས་ཀྱི་མིང་ ’%s’ ཆ་ཤས་ ’%s’ གི་རྗེས་"
"སུ།"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"’%s’ དེ་རྐྱང་ཡིག་ཨིན་པས། ཆ་ཤས་ ’%s’ གི་འགོ་བཙུགས་ངོ་རྟགས་ མཇུག་བསྡུ་ནི་ལུ་ ཡིག་འབྲུ་ ’>’ ཡང་ན་ "
"’/’ གི་རེ་བ་ཡོད།"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"’%s’ དེ་རྐྱང་ཡིག་ཨིན་པས། ཁྱད་ཆོས་’%s’ གི་ ཆ་ཤས’%s’ གི་དོན་ལུ་ བེ་ལུ་བྱིནམ་ད་ མཉམ་རྟགས་ཀྱི་ཤུལ་"
"ལུ་ འགོ་བཙུགས་འདྲེན་རྟགས་ཅིག་ ཚུད་ཡོད་པའི་རེ་བ་ཡོད།"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"’%s’ དེ་ ཡིག་འབྲུ་ནུས་ཅན་ཅིག་མེན་ ཡིག་འབྲུ་ ’</’; ’%s’ ཚུ་གི་རྗེས་ཤུལ་ལུ་འོངམ་ ཆ་ཤས་ཀྱི་མིང་ཅིག་ "
"འགོ་མི་བཙུགསཔ་འོང༌།"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"’%s’ དེ་ ཡིག་འབྲུ་ནུས་ཅན་ཅིག་མེན། ཁ་བསྡམ་ནིའི་ཆ་ཤས་མིང་ ’%s’; གི་རྟིང་བདའ་འོངམ་ད་ ཆོག་པའི་ཡིག་"
"འབྲུ་དེ་ ’>’ ཨིན།"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "ཆ་ཤས་ ’%s’ དེ་ ཁ་བསྡམས་ཏེ་ཡོདཔ་ལས་ ད་ལྟོ་ཆ་ཤས་གཅིག་ཡང་ ཁ་ཕྱེ་ཕྱེཝ་མིན་འདུག"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "ཆ་ཤས་ ’%s’ དེ་ ཁ་བསྡམས་ནུག དེ་འབདཝ་ད་ ད་ལྟོ་ཁ་ཕྱེ་སྟེ་ཡོད་མི་ཆ་ཤས་དེ་ ’%s’ ཨིན།"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "ཡིག་ཆ་དེ་སྟོང་པའམ་ ཡང་ཅིན་ ནང་ན་ས་སྟོང་དཀརཔོ་མ་གཏོགས་ མེདཔ་འོང་ནི་མས།"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "ཡིག་ཆ་དེ་ ཟུར་ཁུག་གུག་ཤད་ ’<’ ཅིག་གི་ཤུལ་ལས་ རེ་བ་མེད་པར་ རྫོགས་སོ་ཡི།"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"ཡིག་ཆ་དེ་ རེ་བ་མེད་པར་རྫོགས་སོ་རུང་ ཆ་ཤས་དེ་ ཁ་ཕྱེ་སྟེ་རང་འདུག མཐའ་མཇུག་ཁ་ཕྱེ་མི་ ཆ་ཤས་དེ་ -’%"
"s’ ཨིན་པས།"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"ཡིག་ཆ་དེ་ རེ་བ་མེད་པར་རྫོགས་སོ་ནུག ངོ་རྟགས་ <%s/> མཇུག་བསྡུ་བའི་ ཁ་བསྡམ་ཟུར་ཁུག་གུག་ཤད་ཅིག་ "
"མཐོང་བའི་རེ་བ་ཡོད།"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "ཡིག་ཆ་དེ་ ཆ་ཤས་ཅིག་གི་ མིང་གི་ནང་ན་ རེ་བ་མེད་པར་རྫོགས་སོ་ནུག"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "ཡིག་ཆ་དེ་ ཁྱད་ཆོས་ཀྱི་མིང་ཅིག་གི་ནང་ན་ རེ་བ་མེད་པར་རྫོགས་སོ་ནུག"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "ཡིག་ཆ་དེ་ ཆ་ཤས་ཁ་ཕྱེ་ནིའི་ ངོ་རྟགས་ཅིག་གི་ནང་ན་ རེ་བ་མེད་པར་ རྫོགས་སོ་ནུག"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"ཡིག་ཆ་དེ་ ཁྱད་ཆོས་ཀྱི་མིང་ཅིག་གི་ཤུལ་ལས་ མཉམ་རྟགས་ཀྱི་རྗེས་སུ་ རེ་བ་མེད་པར་ རྫོགས་སོ་ནུག ཁྱད་ཆོས་ཀྱི་བེ་"
"ལུ་མིན་འདུག"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "ཡིག་ཆ་དེ་ ཁྱད་ཆོས་ཀྱི་ བེ་ལུ་ཅིག་གི་ནང་ན་སྡོད་པའི་སྐབས་ལུ་ རེ་བ་མེད་པར་ རྫོགས་སོ་ནུག"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "ཡིག་ཆ་དེ་ ཆ་ཤས་ ’%s’ གི་དོན་ལུ་ ཁ་བསྡམ་ངོ་རྟགས་ནང་ན་ རེ་བ་མེད་པར་ རྫོགས་སོ་ནུག"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "ཡིག་ཆ་དེ་ བསམ་བཀོད་ ཡང་ན་ ལས་སྦྱོར་བཀོད་རྒྱ་ཅིག་གི་ནང་ན་ རེ་བ་མེད་པར་ རྫོགས་སོ་ནུག"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "ཤེས་མ་ཚུགས་པའི་གདམ་ཁ་ %s།"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "བརྡ་མཚོན་འགྲེལ་ལམ་ལུ་ རྒྱབ་སྐྱོར་མིན་འདུག"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "བརྡ་མཚོན་འགྲེལ་ལམ་ལུ་ རྒྱབ་སྐྱོར་མིན་འདུག"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
#, fuzzy
msgid "No application is registered as handling this file"
msgstr "མིང་'%sའབད་མི་གློག་རིམ་གྱིས་ '%s དོན་ལུ་ དེབ་རྟགས་ཅིག་ཐོ་འགོད་མ་འབད་བས། "
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "གྱལ་རིམ་ %d་: %s ལུ་འཛོལ་བ།"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "གདམ་ཁ་%s མིང་དཔྱད་འབད་ནི་ལུ་འཛོལ་བ།"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: el\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-18 03:34+0200\n"
"Last-Translator: Giannis Katsampirhs <giannis1_86@hotmail.com>\n"
"Language-Team: Greek <team@gnome.gr>\n"
"X-Poedit-Language: Greek\n"
"X-Poedit-Country: GREECE\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, fuzzy, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
"Περίεργος χαρακτήρας '%s', αναμενόταν ένα '=' μετά το όνομα γνωρίσματος '%"
"s' του στοιχείου '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Το γνώρισμα '%s' του στοιχείου '%s' δεν βρέθηκε"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Απρόσμενη ετικέτα '%s', αναμενόταν ετικέτα '%s'"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Απρόσμενη ετικέτα '%s' μέσα σε '%s'"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
"Δεν μπορεί να βρεθεί έγκυρο αρχείο σελιδοδεικτών στους καταλόγους δεδομένων"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Υπάρχει ήδη ένας σελιδοδείκτης για την ιστοσελίδα '%s'"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Δεν βρέθηκε σελιδοδείκτης για την ιστοσελίδα '%s'"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
"Δεν αναγνωρίστηκε κανένας τύπος mime στο σελιδοδείκτη για την ιστοσελίδα '%s'"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
"Καμιά προσωπική σημαία δεν έχει αναγνωριστεί στο σελιδοδείκτη για την "
"ιστοσελίδα '%s'"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Δεν καθορίστηκαν ομάδες στο σελιδοδείκτη για την ιστοσελίδα '%s'"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
"Καμιά εφαρμογή με όνομα '%s' δεν έχει καταχωρήσει σελιδοδείκτη για τη '%s'"
# gconf/gconf-internals.c:2416
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Αποτυχίαe xpand exec line '%s' με URI '%s'"
msgstr "Σφάλμα ανοίγματος καταλόγου '%s': %s"
#
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Αδύνατη η διάθεση %lu bytes στην ανάγνωση αρχείου \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Σφάλμα ανάγνωσης αρχείου '%s': %s"
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
# gconf/gconf-internals.c:2416
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Αποτυχία ανάγνωσης από το αρχείο '%s': %s"
# gconf/gconf-internals.c:2416
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Αποτυχία ανοίγματος αρχείου `%s': %s"
# gconf/gconfd.c:1701
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Αποτυχία λήψης ιδιοτήτων του αρχείου '%s': fstat() απέτυχε: %s"
# gconf/gconf-internals.c:2416
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Αδυναμία ανοίγματος αρχείου '%s': fdopen() απέτυχε: %s"
# gconf/gconf-internals.c:2416
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Αδυναμία μετονομασίας αρχείου%s' σε '%s': g_rename() failed: %s"
# gconf/gconf-internals.c:2416
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Αποτυχία δημιουργίας αρχείου '%s': %s"
# gconf/gconf-internals.c:2416
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Αδυναμία ανοίγματος αρχείου '%s' για εγγραφή: fdopen() απέτυχε: %s"
# gconf/gconf-internals.c:2416
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Αδυναμία εγγραφής αρχείου '%s': fwrite() failed: %s"
# gconf/gconf-internals.c:2416
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Αδυναμία κλεισίματος αρχείου '%s': fclose() απέτυχε: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
"Δεν είναι δυνατή η απομάκρυνση του υπάρχοντος αρχείου '%s': g_unlink() "
"απέτυχε: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Το πρότυπο '%s' δεν είναι έγκυρο, θα πρέπει να περιέχει ένα '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Το πρότυπο '%s' δεν περιέχει XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
# gconf/gconf-internals.c:2416
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Αποτυχία ανάγνωσης συμβολικού δεσμού '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Οι συμβολικοί δεσμοί δεν υποστηρίζονται"
msgstr "Αδυναμία χαρτογράφησης αρχείου '%s': mmap() απέτυχε: %s"
# gconf/gconfd.c:1676
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Σφάλμα στη γραμμή %d χαρακτήρας %d:"
#
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Σφάλμα στη γραμμή %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Κενή καταχώρηση '&;' , έγκυρες οντότητες είναι: & " < > "
"' "
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"χαρακτήρας & ξεκινά μια οντότητα, αν αυτό το συμπλεκτικό σύμβολο σεν "
"υποτίθεται να είναι οντότητα, escape it as &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Ο χαρακτήρας '%s' δεν είναι έγκυρος μέσα σε όνομα ύπαρξης."
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Το όνομα οντότητας '%s' δεν είναι γνωστή"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"συμπλεκτικό χαρακτήρα χωρίς να θέλατε να ξεκινήσετε μια οντότητα - διαφυγή "
"συμπλεκτικού χαρακτήρα ώς &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"στην αναφορά χαρακτήρα (ê για παράδειγμα) - ίσως το ψηφίο να είναι πολύ "
"μεγάλο"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Η αναφορά χαρακτήρα'%-.*s' δεν κωδικοποιεί έναν επιτρεπόμενο χαρακτήρα"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Κενή αναφορά χαρακτήρα; πρέπει να περιέχει ένα ψηφίο όπως dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"έναν συμπλεκτικό χαρακτήρα χωρίς να θέλατε να ξεκινήσετε μια οντότητα - "
"διαφυγή συμπλεκτικού χαρακτήρα ώς &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Ημιτελής αναφορά οντότητας"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Ημιτελής αναφορά χαρακτήρα"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Μη έγκυρα κωδικοποιημένο κείμενο UTF-8 - overlong sequence"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Μη έγκυρα κωδικοποιημένο κείμενο UTF-8 - not a start char"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Μη έγκυρα κωδικοποιημένο κείμενο UTF-8 - not valid '%s'"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Το έγγραφο πρέπει να ξεκινάει με στοιχείο (π.χ. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"Το '%s' δεν είναι έγκυρος χαρακτήρας όταν ακολουθείται από ένα χαρακτήρα "
"'<' ."
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Περίεργος χαρακτήρας '%s', αναμενόταν ένας χαρακτήρας '>' στο τέλος της "
"ετικέτας έναρξης του στοιχείου '%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Περίεργος χαρακτήρας '%s', αναμενόταν ένα '=' μετά το όνομα γνωρίσματος '%"
"s' του στοιχείου '%s'"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"της ετικέτας έναρξης του στοιχείου '%s'. ή ένα γνώρισμα, πιθανόν να "
"χρησιμοποιήσατε ένα μή έγκυρο χαρακτήρα σε ένα όνομα γνωρίσματος"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Περίεργος χαρακτήρας '%s', αναμενόταν ένα ανοικτό εισαγωγικό μετα το "
"σημείο ίσον κατά την απόδοση τιμής για το γνώρισμα '%s' του στοιχείου '%s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"Το '%s' δεν είναι έγκυρος χαρακτήρας ακολουθούμενος από χαρακτήρες </'; '%"
"s' μπορεί να μην αρχίζει όνομα στοιχείου"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"Το '%s' δεν είναι ένας έγκυρος χαρακτήρας ακολουθούμενος από το όνομα "
"στοιχείου κλεισίματος '%s'; ο επιτρεπόμενος χαρακτήρας είναι '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Το στοιχείο '%s' έκλεισε, κανένα στοιχείο δεν είναι ανοικτό"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Το στοιχείο '%s' έκλεισε, αλλά το τρέχον ανοικτό στοιχείο είναι '%s' "
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Το έγγραφο ήταν κενό (ή περιέχει μόνο λευκό κενό)"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Το έγγραφο τερματίστηκε απρόσμενα αμέσως μετά από μια ανοικτή γωνιακή "
"παρένθεση '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Το έγγραφο τερματίστηκε απρόσμενα με στοιχεία ακόμα ανοικτά - '%s' ήταν το "
"τελευταίο στοιχείο που ανοίχθηκε"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Το έγγραφο τερματίστηκε απρόσμενα, αναμενόταν μια παρένθεση κλεισίματος στο "
"τέλος του tag <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Το έγγραφο τερματίστηκε απρόσμενα μέσα σε όνομα στοιχείου"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Το έγγραφο τερματίστηκε απρόσμενα μέσα σε όνομα γνωρίσματος"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Το έγγραφο τερματίστηκε απρόσμενα μέσα σε tag ανοίγματος στοιχείου."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Το έγγραφο τερματίστηκε απρόσμενα λόγω του ότι μετά του σημείου ίσον "
"ακολουθεί ένα όνομα γνωρίσματος; δεν υπάρχει τιμή γνωρίσματος"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Το έγγραφο τερματίστηκε απρόσμενα μέσα σε τιμή γνωρίσματος"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Το έγγραφο τερματίστηκε απρόσμενα μέσα σε tag κλεισίματος για στοιχείο '%s'"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Το έγγραφο τερματίστηκε απρόσμενα μέσα σε σχόλιο ή εντολή σε διεργασία"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "Άγνωστη επιλογή %s"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "τύπος %s"
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Ανώνυμο"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "Οι συμβολικοί δεσμοί δεν υποστηρίζονται"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Το αρχείο στόχος υπάρχει"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Οι συμβολικοί δεσμοί δεν υποστηρίζονται"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Σφάλμα κλεισίματος unix: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Σφάλμα εγγραφής σε unix: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Unexpected attribute '%s' for element '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Attribute '%s' of element '%s' not found"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Unexpected tag '%s'; tag '%s' expected"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Unexpected tag '%s' inside '%s'"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "No valid bookmark file found in data dirs"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "A bookmark for URI '%s' already exists"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "No bookmark found for URI '%s'"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "No MIME type defined in the bookmark for URI '%s'"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "No private flag has been defined in bookmark for URI '%s'"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "No groups set in bookmark for URI '%s'"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "No application with name '%s' registered a bookmark for '%s'"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Failed to expand exec line '%s' with URI '%s'"
msgid "Error opening directory '%s': %s"
msgstr "Error opening directory '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Could not allocate %lu bytes to read file \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Error reading file '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Failed to read from file '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Failed to open file '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Failed to get attributes of file '%s': fstat() failed: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Failed to open file '%s': fdopen() failed: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Failed to rename file '%s' to '%s': g_rename() failed: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Failed to create file '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Failed to open file '%s' for writing: fdopen() failed: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Failed to write file '%s': fwrite() failed: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Failed to close file '%s': fclose() failed: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Existing file '%s' could not be removed: g_unlink() failed: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Template '%s' invalid, should not contain a '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Template '%s' does not contain XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Failed to read the symbolic link '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Symbolic links not supported"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Failed to map file '%s': mmap() failed: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Error on line %d char %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Error on line %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Empty entity '&;' seen; valid entities are: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"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 &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entity name '%s' is not known"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (ê for example) - perhaps the digit is too large"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Empty character reference; should include a digit such as dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"ampersand character without intending to start an entity - escape ampersand "
"as &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Unfinished entity reference"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Unfinished character reference"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Invalid UTF-8 encoded text - overlong sequence"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Invalid UTF-8 encoded text - not a start char"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Invalid UTF-8 encoded text - not valid '%s'"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Document must begin with an element (e.g. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Odd character '%s', expected a '>' character to end the start tag of element "
"'%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, 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:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"element '%s', or optionally an attribute; perhaps you used an invalid "
"character in an attribute name"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Odd character '%s', expected an open quote mark after the equals sign when "
"giving value for attribute '%s' of element '%s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Document was empty or contained only whitespace"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Document ended unexpectedly just after an open angle bracket '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Document ended unexpectedly inside an element name"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Document ended unexpectedly inside an attribute name"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Document ended unexpectedly inside an element-opening tag."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Document ended unexpectedly while inside an attribute value"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Document ended unexpectedly inside a comment or processing instruction"
msgid "Operation was cancelled"
msgstr "Operation was cancelled"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Unknown type"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s filetype"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s type"
msgid "Unexpected early end-of-stream"
msgstr "Unexpected early end-of-stream"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Unnamed"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Desktop file didn't specify Exec field"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Unable to find terminal required for application"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "Can't create user application configuration folder %s: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Can't create user MIME configuration folder %s: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Can't create user desktop file %s"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Custom definition for %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "drive doesn't implement eject"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "drive doesn't implement polling for media"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Operation not supported"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Containing mount does not exist"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Can't copy over directory"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Can't copy directory over directory"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Target file exists"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Can't recursively copy directory"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Invalid symlink value given"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Trash not supported"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "File names cannot contain '%c'"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "volume doesn't implement mount"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "No application is registered as handling this file"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "mount doesn't implement unmount"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "mount doesn't implement eject"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "mount doesn't implement remount"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "mount doesn't implement unmount"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Output stream doesn't implement write"
msgid "Error closing unix: %s"
msgstr "Error closing UNIX: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Filesystem root"
msgid "Error writing to unix: %s"
msgstr "Error writing to UNIX: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "volume doesn't implement eject"
msgstr ""
"Project-Id-Version: GLIB\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-02-17 09:21-0000\n"
"Last-Translator: David Lodge <dave@cirt.net>\n"
"Language-Team: \n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Unexpected attribute '%s' for element '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Attribute '%s' of element '%s' not found"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Unexpected tag '%s', tag '%s' expected"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Unexpected tag '%s' inside '%s'"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "No valid bookmark file found in data dirs"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "A bookmark for URI '%s' already exists"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "No bookmark found for URI '%s'"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "No MIME type defined in the bookmark for URI '%s'"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "No private flag has been defined in bookmark for URI '%s'"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "No groups set in bookmark for URI '%s'"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "No application with name '%s' registered a bookmark for '%s'"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Failed to expand exec line '%s' with URI '%s'"
msgid "Error opening directory '%s': %s"
msgstr "Error opening directory '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Could not allocate %lu bytes to read file \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Error reading file '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Failed to read from file '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Failed to open file '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Failed to get attributes of file '%s': fstat() failed: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Failed to open file '%s': fdopen() failed: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Failed to rename file '%s' to '%s': g_rename() failed: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Failed to create file '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Failed to open file '%s' for writing: fdopen() failed: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Failed to write file '%s': fwrite() failed: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Failed to close file '%s': fclose() failed: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Existing file '%s' could not be removed: g_unlink() failed: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Template '%s' invalid, should not contain a '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Template '%s' doesn't contain XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Failed to read the symbolic link '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Symbolic links not supported"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Failed to map file '%s': mmap() failed: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Error on line %d char %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Error on line %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Empty entity '&;' seen; valid entities are: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, 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 &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entity name '%s' is not known"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (ê for example) - perhaps the digit is too large"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Empty character reference; should include a digit such as dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"ampersand character without intending to start an entity - escape ampersand "
"as &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Unfinished entity reference"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Unfinished character reference"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Invalid UTF-8 encoded text - overlong sequence"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Invalid UTF-8 encoded text - not a start char"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Invalid UTF-8 encoded text - not valid '%s'"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Document must begin with an element (e.g. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Odd character '%s', expected a '>' character to end the start tag of element "
"'%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, 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:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"element '%s', or optionally an attribute; perhaps you used an invalid "
"character in an attribute name"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Odd character '%s', expected an open quote mark after the equals sign when "
"giving value for attribute '%s' of element '%s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Document was empty or contained only whitespace"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Document ended unexpectedly just after an open angle bracket '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Document ended unexpectedly inside an element name"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Document ended unexpectedly inside an attribute name"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Document ended unexpectedly inside an element-opening tag."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Document ended unexpectedly while inside an attribute value"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Document ended unexpectedly inside a comment or processing instruction"
msgid "Operation was cancelled"
msgstr "Operation was cancelled"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Unknown type"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s filetype"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s type"
msgid "Unexpected early end-of-stream"
msgstr "Unexpected early end-of-stream"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Unnamed"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Desktop file didn't specify Exec field"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Unable to find terminal required for application"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "Can't create user application configuration folder %s: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Can't create user MIME configuration folder %s: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Can't create user desktop file %s"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Custom definition for %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "drive doesn't implement eject"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "drive doesn't implement polling for media"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Operation not supported"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Containing mount does not exist"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Can't copy over directory"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Can't copy directory over directory"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Target file exists"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Can't recursively copy directory"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Invalid symlink value given"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Wastebasket not supported"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "File names cannot contain '%c'"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "volume doesn't implement mount"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "No application is registered as handling this file"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "mount doesn't implement unmount"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "mount doesn't implement eject"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "mount doesn't implement remount"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "mount doesn't implement unmount"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Output stream doesn't implement write"
msgid "Error closing unix: %s"
msgstr "Error closing unix: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Filesystem root"
msgid "Error writing to unix: %s"
msgstr "Error writing to unix: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "volume doesn't implement eject"
msgstr ""
"Project-Id-Version: glib 2.3.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, fuzzy, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
"Malbona signo '%s', unu '>' signo estas atendita post atributnomo '%s' "
"deelemento '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Malsukcesis krei dosieron '%s': %s"
msgid "Error opening directory '%s': %s"
msgstr "Eraro dum malfermado de dosierujo '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Ne eblis akiri %lu bitokojn por lego de dosiero \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Eraro dum legado de dosiero '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Malsukcesis legi de dosieron '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Malsukcesis malfermi dosieron '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Malsukcesis ricevi atributojn de dosiero '%s': fstat() malsukcesis: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Malsukcesis malfermi dosieron '%s': fdopen() malsukcesis: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, fuzzy, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Malsukcesis malfermi dosieron '%s': fdopen() malsukcesis: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Malsukcesis krei dosieron '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, fuzzy, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Malsukcesis malfermi dosieron '%s': fdopen() malsukcesis: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, fuzzy, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Malsukcesis malfermi dosieron '%s': fdopen() malsukcesis: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, fuzzy, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Malsukcesis malfermi dosieron '%s': fdopen() malsukcesis: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Ŝablono '%s' ne estas valida, ĝi devus ne enhavi '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Ŝablono '%s' ne finiĝas je XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, fuzzy, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Malsukcesis krei dosieron '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr ""
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Malsukcesis malfermi dosieron '%s': fdopen() malsukcesis: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Eraro ĉe linio %d signo %d: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Eraro ĉe linio %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr "Malplena ero '&;'; validaj eroj estas : & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"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 &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Signo '%s' ne estas valida en unu eronomo"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Eronomo '%s' ne estas konata"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Ero ne finis kun punktokomo; vi eble uzis kaj-signo sen voli komenci eron."
"Eskapu kaj-signon kiel &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, fuzzy, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Analizo de '%s' malsuksesis. Une cifero devus esti en la signoreferenco "
"(ê ekzemple)- eble la cifero estas tro granda"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, fuzzy, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Signorefrenco '%s' ne faras kodigu permesatan signon"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Malplena signa referenco; devus enhavi ciferon kiel dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"Signa referenco ne finis kun punktokomo; vi verŝajne uzas kaj-signon sen "
"volikomenci eron - eskapu kaj-signon kiel &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Nefinita erorefrenco"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Nefinita signorefrenco"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Nevalida UTF-8 kodiginta teksto"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Nevalida UTF-8 kodiginta teksto"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Nevalida UTF-8 kodiginta teksto"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumento devas komenci kun elemento (ekz. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' ne estas valida signo post la signo '<'; ĝi ne eblas "
"komcencielementnomon"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Malbona signo '%s', unu '>' signo estas atendita por fini la "
"komencetikedonde elemento '%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Malbona signo '%s', unu '>' signo estas atendita post atributnomo '%s' "
"deelemento '%s'"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"lakomencetikedon de elemento '%s' aŭ unu atributo; eble vi uzas nevalidan "
"signon enunu atributnomo"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Malbona signo '%s', malferma citilo estas atendita post la egalsigno "
"kiamdonita valoro por atributo '%s' de elemento '%s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' ne estas valida signo post la signoj '</'; '%s' ne eblas "
"komcencielementnomon"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' ne estas valida signo post la ferma elementnomo '%s'; la valida signo "
"estas'>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Elemento '%s' estis fermita, neniu elemento estas malfermita"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokumento estis malpena aŭ enhavis nur blankspaco"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokumento neatendite finis post malfermi-angulkrampon '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Dokumento neatendite finis kun elementoj ankoraŭ malfermi - '%s' estis la "
"lasta elemento malfermita"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Dokumento neatendite finis, atendis vidi etikedon finiĝanta je fermi-"
"angulkrampo <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumento neatendite finis en elementa nomo"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokumento neatendite finis en atributa nomo"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokumento neatendite finis en elemento-malfermanta etikedo."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Dokumento neatendite finis post le egalsigno sekvita de atributnomo; ne "
"atributvaloro"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokumento neatendite finis dum en atributvaloro"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Dokumento neatendite finis en komento aŭ komputanta instrukcio"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr ""
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr ""
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr ""
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Eraro ĉe linio %d: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Eraro dum konverto: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-11 07:46+0100\n"
"Last-Translator: Jorge González <jorgegonz@svn.gnome.org>\n"
"Language-Team: Español <gnome-es-list@gnome.org>\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Atributo inesperado «%s» para el elemento «%s»"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "El atributo «%s» del elemento «%s» no se ha encontrado"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Etiqueta «%s» inesperada, se esperaba la etiqueta «%s»"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Etiqueta «%s» inesperada dentro de «%s»"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
"No se pudo encontrar ningún archivo de marcadores válido en los directorios "
"de datos"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Ya existe un marcador para el URI «%s»"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "No se encontró un marcador para el URI «%s»"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Ningún tipo MIME definido en el marcador para la URI «%s»"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "No se ha definido ningún flag privado en el marcador para el URI «%s»"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "No se ha establecido ningún grupo en el marcador para el URI «%s»"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Ninguna aplicación con nombre «%s» registró un marcador para «%s»"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Falló la expansión de la la linea ejecutable «%s» con el URI «%s»"
msgid "Error opening directory '%s': %s"
msgstr "Falló al abrir el directorio «%s»: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "No se pueden asignar %lu bytes para leer el archivo «%s»"
msgid "Error reading file '%s': %s"
msgstr "Falló al leer el archivo «%s»: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Falló al leer del archivo «%s»: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Falló al abrir el archivo «%s»: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Falló al obtener los atributos del archivo «%s»: fstat() falló: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Falló al abrir el archivo «%s»: fdopen() falló: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Falló al renombrar el archivo «%s» a «%s»: g_rename() falló: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Falló al crear el archivo «%s»: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Falló al abrir el archivo «%s» para escritura: fdopen() falló: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Falló al escribir el archivo «%s»: fwrite() falló: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Falló al cerrar el archivo «%s»: fclose() falló: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "El archivo existente «%s» no se pudo eliminar: g_unlink() falló: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "La plantilla «%s» es inválida, no debería contener un «%s»"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "La plantilla «%s» no contiene XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KiB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MiB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GiB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Falló al leer el enlace simbólico «%s»: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Enlaces simbólicos no soportados"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Falló al mapear el archivo «%s»: mmap() falló: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Error en la línea %d, carácter %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Error en la línea %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"La entidad '&;' está vacía; las entidades válidas son: & " < "
"> '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"carácter «&» inicia una entidad; si el signo et ('&') no debiera ser una "
"entidad, escápela como &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "El carácter «%s» no es válido dentro del nombre de una entidad"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "El nombre de la entidad «%s» es desconocido"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"\"&\" sin la intención de indicar una entidad, escape el signo \"&\" como "
"&"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"carácter de referencia( por ejemplo ê) - tal vez el dígito es demasiado "
"grande"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "El carácter de referencia «%-.*s» no codifica un carácter permitido"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr ""
"El carácter de referencia está vacío; debería incluir un dígito tal como "
"dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"un carácter «&» sin pretender iniciar una entidad, escape el carácter \"&\" "
"como &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Referencia de entidad sin terminar"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Referencia de carácter sin terminar"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Texto codificado como UTF-8 inválido; secuencia demasiado larga"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Texto codificado como UTF-8 inválido; sin carácter de comienzo"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Texto codificado como UTF-8 inválido; «%s» no válido"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "El documento debe comenzar con un elemento (por ejemplo: <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"«%s» no es un carácter válido a continuación del carácter '<'; no debe "
"iniciar un nombre de elemento"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Carácter «%s» impropio, se esperaba un carácter '>' para terminar la etiqueta "
"de inicio del elemento «%s»"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Carácter «%s» impropio, se esperaba el carácter '=' después del nombre de "
"atributo «%s» del elemento «%s»"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"etiqueta de inicio del elemento «%s» u opcionalmente un atributo; tal vez "
"utilizó un carácter que no es válido en un nombre de atributo"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Carácter «%s» impropio, se esperaba una marca de apertura de comillas después "
"del signo igual al darle valor al atributo «%s» del elemento «%s»"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"«%s» no es un carácter válido a continuación de los caracteres '</'; «%s» no "
"debe iniciar un nombre de elemento"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"«%s» no es un carácter válido a continuación del nombre del elemento de "
"cierre «%s»; el carácter permitido es '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "El elemento «%s» fue cerrado, no existe ningún elemento abierto"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
"El elemento «%s» fue cerrado, pero el elemento que está abierto actualmente "
"es «%s»"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "El documento estaba vacío o sólo contenía espacios en blanco"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "El documento termina inesperadamente justo después de un '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"El documento termina inesperadamente con elementos todavía abiertos - «%s» "
"fue el último elemento abierto"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"El documento termina inesperadamente, se esperaba un carácter '>' "
"finalizando la etiqueta <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "El documento termina inesperadamente dentro de un nombre de elemento"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "El documento termina inesperadamente dentro de un nombre de atributo"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"El documento termina inesperadamente dentro de una etiqueta de apertura de "
"elemento."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"El documento termina inesperadamente después de los signos igual que siguen "
"al nombre de atributo; sin valor de atributo"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "El documento termina inesperadamente dentro del valor de un atributo"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"El documento termina inesperadamente dentro de la etiqueta de cierre del "
"elemento «%s»"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"El documento termina inesperadamente dentro de un comentario o instrucción "
msgid "Operation was cancelled"
msgstr "Se canceló la operación"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Tipo desconocido"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "tipo de archivo %s"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "tipo %s"
msgid "Unexpected early end-of-stream"
msgstr "Final de flujo inesperadamente prematuro"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Sin nombre"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "El archivo de escritorio no especificó el campo Exec"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Imposible encontrar el terminal requerido por la aplicación"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
"No se puede crear la carpeta de configuración de la aplicación %s del "
"usuario: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "No se puede crear la carpeta de configuración MIME %s del usuario: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "No se puede crear el archivo de escritorio %s del usuario"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Definición personalizada para %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "la unidad no implementa la expulsión"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "la unidad no implementa el sondeo para medios"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Operación no soportada"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "El punto de montaje contenido no existe"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "No se puede copiar sobre el directorio"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "No se puede copiar directorio sobre directorio"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "El archivo destino ya existe"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "No se puede copiar el directorio recursivamente"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "El valor del enlace simbólico dado no es válido"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "No se soporta mover a la papelera"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Los nombres de archivo no pueden contener «%c»"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "el volumen no implementa el montado"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "No hay ninguna aplicación registrada para manejar este archivo"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "el punto de montaje no implementa desmontado"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "el punto de montaje no implementa la expulsión"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "el punto de montaje no implementa remontado"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "el punto de montaje no implementa desmontado"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "El flujo de salida no implementa la escritura"
msgid "Error closing unix: %s"
msgstr "Error al cerrar unix: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Sistema de archivos raíz"
msgid "Error writing to unix: %s"
msgstr "Error al escribir en unix: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "el volumen no implementa la expulsión"
msgstr ""
"Project-Id-Version: GLib HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-03-11 04:25+0000\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-06-21 20:47+0300\n"
"Last-Translator: Ivar Smolin <okul@linux.ee>\n"
"Language-Team: Estonian <gnome-et@linux.ee>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../glib/gbookmarkfile.c:705 ../glib/gbookmarkfile.c:782
-#: ../glib/gbookmarkfile.c:861 ../glib/gbookmarkfile.c:908
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Ootamatu rekvisiit '%s' elemendile '%s'"
-#: ../glib/gbookmarkfile.c:716 ../glib/gbookmarkfile.c:793
-#: ../glib/gbookmarkfile.c:803 ../glib/gbookmarkfile.c:919
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Elemendil '%2$s' ei leitud rekvisiiti '%1$s'"
-#: ../glib/gbookmarkfile.c:1092 ../glib/gbookmarkfile.c:1157
-#: ../glib/gbookmarkfile.c:1221 ../glib/gbookmarkfile.c:1231
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Ootamatu silt '%s', oodati silti '%s'"
-#: ../glib/gbookmarkfile.c:1117 ../glib/gbookmarkfile.c:1131
-#: ../glib/gbookmarkfile.c:1199 ../glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "'%2$s' on ootamatu silt '%1$s'"
-#: ../glib/gbookmarkfile.c:1781
-#, c-format
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "Andmekataloogidest ei leitud korrektset järjehoidjafaili"
-#: ../glib/gbookmarkfile.c:1982
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI-le '%s' on juba järjehoidja olemas"
-#: ../glib/gbookmarkfile.c:2028 ../glib/gbookmarkfile.c:2185
-#: ../glib/gbookmarkfile.c:2270 ../glib/gbookmarkfile.c:2350
-#: ../glib/gbookmarkfile.c:2435 ../glib/gbookmarkfile.c:2518
-#: ../glib/gbookmarkfile.c:2596 ../glib/gbookmarkfile.c:2675
-#: ../glib/gbookmarkfile.c:2717 ../glib/gbookmarkfile.c:2814
-#: ../glib/gbookmarkfile.c:2940 ../glib/gbookmarkfile.c:3130
-#: ../glib/gbookmarkfile.c:3206 ../glib/gbookmarkfile.c:3371
-#: ../glib/gbookmarkfile.c:3460 ../glib/gbookmarkfile.c:3550
-#: ../glib/gbookmarkfile.c:3677
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "URI-le '%s' ei leitud järjehoidjat"
-#: ../glib/gbookmarkfile.c:2359
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI '%s' järjehoidjas pole MIME tüüpe määratud"
-#: ../glib/gbookmarkfile.c:2444
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI '%s' järjehoidjas pole privaatlippu kirjeldatud"
-#: ../glib/gbookmarkfile.c:2823
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI '%s' järjehoidjas pole gruppe määratud"
-#: ../glib/gbookmarkfile.c:3224 ../glib/gbookmarkfile.c:3381
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Rakendus nimega '%s' pole '%s' kohta järjehoidjat registreerinud"
-#: ../glib/gbookmarkfile.c:3404
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Tõrge rea '%s' käivitamisel koos URI-ga '%s'"
-#: ../glib/gconvert.c:431 ../glib/gconvert.c:509 ../glib/giochannel.c:1158
+#: glib/gconvert.c:431 glib/gconvert.c:509 glib/giochannel.c:1158
#, c-format
msgid "Conversion from character set '%s' to '%s' is not supported"
msgstr "Teisendamine koodistikust '%s' koodistikku '%s' ei ole toetatud"
-#: ../glib/gconvert.c:435 ../glib/gconvert.c:513
+#: glib/gconvert.c:435 glib/gconvert.c:513
#, c-format
msgid "Could not open converter from '%s' to '%s'"
msgstr "Konverterit '%s'-st '%s'-ks pole võimalik avada"
-#: ../glib/gconvert.c:632 ../glib/gconvert.c:1017 ../glib/giochannel.c:1330
-#: ../glib/giochannel.c:1372 ../glib/giochannel.c:2215 ../glib/gutf8.c:956
-#: ../glib/gutf8.c:1405
-#, c-format
+#: glib/gconvert.c:632 glib/gconvert.c:1017 glib/giochannel.c:1330
+#: glib/giochannel.c:1372 glib/giochannel.c:2216 glib/gutf8.c:956
+#: glib/gutf8.c:1405
msgid "Invalid byte sequence in conversion input"
msgstr "Vigane baidijada sisendi teisendamisel"
-#: ../glib/gconvert.c:638 ../glib/gconvert.c:944 ../glib/giochannel.c:1337
-#: ../glib/giochannel.c:2227
+#: glib/gconvert.c:638 glib/gconvert.c:944 glib/giochannel.c:1337
+#: glib/giochannel.c:2228
#, c-format
msgid "Error during conversion: %s"
msgstr "Viga teisendamisel: %s"
-#: ../glib/gconvert.c:669 ../glib/gutf8.c:952 ../glib/gutf8.c:1156
-#: ../glib/gutf8.c:1297 ../glib/gutf8.c:1401
-#, c-format
+#: glib/gconvert.c:669 glib/gutf8.c:952 glib/gutf8.c:1156 glib/gutf8.c:1297
+#: glib/gutf8.c:1401
msgid "Partial character sequence at end of input"
msgstr "Osaline märgijada sisendi lõpus"
-#: ../glib/gconvert.c:919
+#: glib/gconvert.c:919
#, c-format
msgid "Cannot convert fallback '%s' to codeset '%s'"
msgstr "Taandresiimi '%s' pole võimalik teisendada kooditabelisse '%s'"
-#: ../glib/gconvert.c:1734
+#: glib/gconvert.c:1734
#, c-format
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
msgstr "URI '%s' ei ole failiskeemi (\"file\") jaoks absoluutne URI"
-#: ../glib/gconvert.c:1744
+#: glib/gconvert.c:1744
#, c-format
msgid "The local file URI '%s' may not include a '#'"
msgstr "Kohaliku faili URI '%s' ei või sisaldada märki '#'"
-#: ../glib/gconvert.c:1761
+#: glib/gconvert.c:1761
#, c-format
msgid "The URI '%s' is invalid"
msgstr "URI '%s' on vigane"
-#: ../glib/gconvert.c:1773
+#: glib/gconvert.c:1773
#, c-format
msgid "The hostname of the URI '%s' is invalid"
msgstr "URI '%s' hostinimi on vigane"
-#: ../glib/gconvert.c:1789
+#: glib/gconvert.c:1789
#, c-format
msgid "The URI '%s' contains invalidly escaped characters"
msgstr "URI '%s' sisaldab vigaseid paomärke"
-#: ../glib/gconvert.c:1884
+#: glib/gconvert.c:1884
#, c-format
msgid "The pathname '%s' is not an absolute path"
msgstr "Rajanimi '%s' ei ole absoluutne rada"
-#: ../glib/gconvert.c:1894
-#, c-format
+#: glib/gconvert.c:1894
msgid "Invalid hostname"
msgstr "Vigane hostinimi"
-#: ../glib/gdir.c:104 ../glib/gdir.c:124
+#: glib/gdir.c:109 glib/gdir.c:129
#, c-format
msgid "Error opening directory '%s': %s"
msgstr "Viga kataloogi '%s' avamisel: %s"
-#: ../glib/gfileutils.c:557 ../glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Ei saa eraldada %lu faili \"%s\" lugemiseks"
-#: ../glib/gfileutils.c:572
+#: glib/gfileutils.c:572
#, c-format
msgid "Error reading file '%s': %s"
msgstr "Viga failist '%s' lugemisel: %s"
-#: ../glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Tõrge failist '%s' lugemisel: %s"
-#: ../glib/gfileutils.c:705 ../glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Tõrge faili '%s' avamisel: %s"
-#: ../glib/gfileutils.c:722 ../glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Tõrge faili '%s' rekvisiitide hankimisel: fstat() nurjus: %s"
-#: ../glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Tõrge faili '%s' avamisel: fdopen() nurjus: %s"
-#: ../glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Tõrge faili '%s' ümbernimetamisel nimega '%s': g_rename() nurjus: %s"
-#: ../glib/gfileutils.c:932 ../glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Tõrge faili '%s' loomisel: %s"
-#: ../glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Tõrge faili '%s' avamisel kirjutamiseks: fdopen() nurjus: %s"
-#: ../glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Tõrge faili '%s' kirjutamisel: fwrite() nurjus: %s"
-#: ../glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Tõrge faili '%s' sulgemisel: fclose() nurjus: %s"
-#: ../glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Olemasolevat faili '%s' pole võimalik eemaldada: g_unlink() nurjus: %s"
-#: ../glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Mall '%s' vigane, see ei tohiks sisaldada '%s'"
-#: ../glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Mall '%s' ei sisalda XXXXXX-i"
-#: ../glib/gfileutils.c:1826
-#, c-format
-msgid "%u byte"
-msgid_plural "%u bytes"
-msgstr[0] "%u bait"
-msgstr[1] "%u baiti"
-
-#: ../glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: ../glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: ../glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: ../glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Tõrge nimeviida '%s' lugemisel: %s"
-#: ../glib/gfileutils.c:1908
-#, c-format
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Nimeviidad ei ole toetatud"
-#: ../glib/giochannel.c:1162
+#: glib/giochannel.c:1162
#, c-format
msgid "Could not open converter from '%s' to '%s': %s"
msgstr "Konverterit '%s'-st '%s'-ks pole võimalik avada: %s"
-#: ../glib/giochannel.c:1507
-#, c-format
+#: glib/giochannel.c:1507
msgid "Can't do a raw read in g_io_channel_read_line_string"
msgstr "Ei saa teostada toorest lugemise g_io_channel_read_line_string'i sees"
-#: ../glib/giochannel.c:1554 ../glib/giochannel.c:1811
-#: ../glib/giochannel.c:1898
-#, c-format
+#: glib/giochannel.c:1554 glib/giochannel.c:1812 glib/giochannel.c:1899
msgid "Leftover unconverted data in read buffer"
msgstr "Lugemispuhvrisse jäi teisendamata andmeid"
-#: ../glib/giochannel.c:1634 ../glib/giochannel.c:1711
-#, c-format
+#: glib/giochannel.c:1635 glib/giochannel.c:1712
msgid "Channel terminates in a partial character"
msgstr "Kanali katkestus poole märgi pealt"
-#: ../glib/giochannel.c:1697
-#, c-format
+#: glib/giochannel.c:1698
msgid "Can't do a raw read in g_io_channel_read_to_end"
msgstr "Ei saa teostada toorest lugemise g_io_channel_read_to_end'i sees"
-#: ../glib/gmappedfile.c:116
+#: glib/gmappedfile.c:116
#, c-format
msgid "Failed to open file '%s': open() failed: %s"
msgstr "Tõrge faili '%s' avamisel: open() nurjus: %s"
-#: ../glib/gmappedfile.c:193
+#: glib/gmappedfile.c:193
#, c-format
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Tõrge faili '%s' avamisel: mmap() nurjus: %s"
-#: ../glib/gmarkup.c:228 ../glib/gmarkup.c:244
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Viga real %d märgil %d: "
-#: ../glib/gmarkup.c:338
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Viga real %d: %s"
-#: ../glib/gmarkup.c:442
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Avastati tühi olem '&'; lubatud olemid on: & " < > '"
-#: ../glib/gmarkup.c:452
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"Märk '%s' ei ole olemi nime alguses lubatud. Märk & alustab olemit, kui see "
"ampersand pole mõeldud olemiks, märgi see kui &"
-#: ../glib/gmarkup.c:486
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Märk '%s' ei ole olemi nimes lubatud"
-#: ../glib/gmarkup.c:523
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Olemi nimi '%s' on tuntmatu"
-#: ../glib/gmarkup.c:534
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Olem ei lõppenud semikooloniga; kõige tõenäolisemalt ei kavatsenud sa "
"ampersandi kasutades olemit alustada - märgi see kui &"
-#: ../glib/gmarkup.c:587
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Viga '%-.*s' parsimisel. See võiks olla märgiviites olev number (näiteks "
"ê) - võibolla on number liiga suur"
-#: ../glib/gmarkup.c:612
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Märgiviide '%-.*s' ei teisendu lubatud märgiks"
-#: ../glib/gmarkup.c:627
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Tühi märgiviide, see peaks sisaldama numbrit, näiteks dž"
-#: ../glib/gmarkup.c:637
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"Märgiviide ei lõpe semikooloniga. Enamasti kasutatakse ampersand märki ilma "
"kavatsuseta olemit alustada - märgi see kui &"
-#: ../glib/gmarkup.c:723
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Lõpetamata viide olemile"
-#: ../glib/gmarkup.c:729
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Lõpetamata viide märgile"
-#: ../glib/gmarkup.c:972
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Vigaselt kodeeritud UTF-8 tekst - liigpikk jada"
-#: ../glib/gmarkup.c:1000
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Vigaselt kodeeritud UTF-8 tekst - puuduv algusmärk"
-#: ../glib/gmarkup.c:1036
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Vigaselt kodeeritud UTF-8 tekst - vigane '%s'"
-#: ../glib/gmarkup.c:1074
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokument peab algama elemendiga (nt: <book>)"
-#: ../glib/gmarkup.c:1114
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
msgstr ""
"Märk '%s' ei ole märgi '<' järel lubatud, see võib mitte olla elemendi nimi"
-#: ../glib/gmarkup.c:1178
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Veider märk '%s', oodatakse märki '>', et lõpetada elemendi '%s' algussilti"
-#: ../glib/gmarkup.c:1267
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Veider märk '%1$s', pärast elemendi '%3$s' tunnust nimega '%2$s' oodatakse "
"märki '='"
-#: ../glib/gmarkup.c:1309
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"sildi algust või lõppu, ühe võimalusena ka rekvisiiti. Võib-olla kasutad sa "
"rekvisiidi nimes vigast märki?"
-#: ../glib/gmarkup.c:1395
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Veider märk '%s', oodatakse võrdusmärgi järel tulevat jutumärki, mis aitaks "
"rekvisiidile '%s' väärtust seada (element '%s')"
-#: ../glib/gmarkup.c:1537
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"Märk '%s' ei ole märkide '</' järel lubatud, '%s' võib mitte olla elemendi "
"nimi"
-#: ../glib/gmarkup.c:1577
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"Märk '%s' ei ole lubatud märk elemendi '%s' nime sulgemise järel, lubatud "
"märk on '>'"
-#: ../glib/gmarkup.c:1588
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element '%s' on suletud, avatud elemente ei ole"
-#: ../glib/gmarkup.c:1597
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Element '%s' on suletud, kuid praegu avatud element on '%s'"
-#: ../glib/gmarkup.c:1757
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokument on tühi või sisaldab ainult tühja ruumi"
-#: ../glib/gmarkup.c:1771
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokument lõppes ootamatult ilma avatud nurksulgu '<' sulgemata"
-#: ../glib/gmarkup.c:1779 ../glib/gmarkup.c:1824
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Dokument lõppes ootamatult ilma, et avatud elemente sulgemata - '%s' oli "
"viimane avatud element"
-#: ../glib/gmarkup.c:1787
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Dokument lõppes ootamatult, sildi <%s/> lõpetamiseks loodetakse näha "
"nurksulgu"
-#: ../glib/gmarkup.c:1793
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokument lõppes ootamatult elemendi nime sees"
-#: ../glib/gmarkup.c:1799
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokument lõppes ootamatult rekvisiidi nime sees"
-#: ../glib/gmarkup.c:1804
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokument lõppes ootamatult elemendi avamise sildi sees"
-#: ../glib/gmarkup.c:1810
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Dokument lõppes ootamatult pärast rekvisiidi nime järel olevat võrdusmärki, "
"rekvisiidi väärtus on puudu"
-#: ../glib/gmarkup.c:1817
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokument lõppes ootamatult keset attribuudi väärtust"
-#: ../glib/gmarkup.c:1833
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Dokument lõppes ootamatult elementi '%s' sulgemissildi sees"
-#: ../glib/gmarkup.c:1839
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Dokument lõppes ootamatult kommentaaride või töötlemis juhiste sees"
-#: ../glib/gregex.c:131
+#: glib/gregex.c:131
msgid "corrupted object"
msgstr "rikutud objekt"
-#: ../glib/gregex.c:133
+#: glib/gregex.c:133
msgid "internal error or corrupted object"
msgstr "sisemine viga või rikutud objekt"
-#: ../glib/gregex.c:135
+#: glib/gregex.c:135
msgid "out of memory"
msgstr "mälu lõppes"
-#: ../glib/gregex.c:140
+#: glib/gregex.c:140
msgid "backtracking limit reached"
msgstr "tagasiviidete limiit saavutatud"
-#: ../glib/gregex.c:152 ../glib/gregex.c:160
+#: glib/gregex.c:152 glib/gregex.c:160
msgid "the pattern contains items not supported for partial matching"
msgstr ""
"muster sisaldab kirjeid, mis pole osalise vastavuse otsingu puhul toetatud"
-#: ../glib/gregex.c:154 ../gio/glocalfile.c:1883
+#: glib/gregex.c:154 gio/glocalfile.c:1981
msgid "internal error"
msgstr "sisemine viga"
-#: ../glib/gregex.c:162
+#: glib/gregex.c:162
msgid "back references as conditions are not supported for partial matching"
msgstr "osaliste vastete otsimisel pole tingimuslikud tagasiviited toetatud"
-#: ../glib/gregex.c:171
+#: glib/gregex.c:171
msgid "recursion limit reached"
msgstr "suurim rekursioonide arv saavutatud"
-#: ../glib/gregex.c:173
+#: glib/gregex.c:173
msgid "workspace limit for empty substrings reached"
msgstr "töötsooni suurim tühjade alamstringide arv saavutatud"
-#: ../glib/gregex.c:175
+#: glib/gregex.c:175
msgid "invalid combination of newline flags"
msgstr "vigane reavahetusmärgiste kombinatsioon"
-#: ../glib/gregex.c:179
+#: glib/gregex.c:179
msgid "unknown error"
msgstr "tundmatu viga"
-#: ../glib/gregex.c:199
+#: glib/gregex.c:199
msgid "\\ at end of pattern"
msgstr "\\ mustri alguses"
-#: ../glib/gregex.c:202
+#: glib/gregex.c:202
msgid "\\c at end of pattern"
msgstr "\\c mustri lõpus"
-#: ../glib/gregex.c:205
+#: glib/gregex.c:205
msgid "unrecognized character follows \\"
msgstr ""
-#: ../glib/gregex.c:212
+#: glib/gregex.c:212
msgid "case-changing escapes (\\l, \\L, \\u, \\U) are not allowed here"
msgstr ""
-#: ../glib/gregex.c:215
+#: glib/gregex.c:215
msgid "numbers out of order in {} quantifier"
msgstr ""
-#: ../glib/gregex.c:218
+#: glib/gregex.c:218
msgid "number too big in {} quantifier"
msgstr ""
-#: ../glib/gregex.c:221
+#: glib/gregex.c:221
msgid "missing terminating ] for character class"
msgstr "märgiklassil puudub sulgev ]"
-#: ../glib/gregex.c:224
+#: glib/gregex.c:224
msgid "invalid escape sequence in character class"
msgstr "märgiklassis on vigane paojada"
-#: ../glib/gregex.c:227
+#: glib/gregex.c:227
msgid "range out of order in character class"
msgstr ""
-#: ../glib/gregex.c:230
+#: glib/gregex.c:230
msgid "nothing to repeat"
msgstr "pole midagi korrata"
-#: ../glib/gregex.c:233
+#: glib/gregex.c:233
msgid "unrecognized character after (?"
msgstr "tundmatu märk pärast (?"
-#: ../glib/gregex.c:237
+#: glib/gregex.c:237
msgid "unrecognized character after (?<"
msgstr "tundmatu märk pärast (?<"
-#: ../glib/gregex.c:241
+#: glib/gregex.c:241
msgid "unrecognized character after (?P"
msgstr "tundmatu märk pärast (?P"
-#: ../glib/gregex.c:244
+#: glib/gregex.c:244
msgid "POSIX named classes are supported only within a class"
msgstr "POSIX-i nimelised klassid on toetatud ainult klassi sees"
-#: ../glib/gregex.c:247
+#: glib/gregex.c:247
msgid "missing terminating )"
msgstr "puudub lõpetav sulg )"
-#: ../glib/gregex.c:251
+#: glib/gregex.c:251
msgid ") without opening ("
msgstr ") ilma algussuluta ("
#. translators: '(?R' and '(?[+-]digits' are both meant as (groups of)
#. * sequences here, '(?-54' would be an example for the second group.
#.
-#: ../glib/gregex.c:258
+#: glib/gregex.c:258
msgid "(?R or (?[+-]digits must be followed by )"
msgstr ""
-#: ../glib/gregex.c:261
+#: glib/gregex.c:261
msgid "reference to non-existent subpattern"
msgstr "viide olematule alammustrile"
-#: ../glib/gregex.c:264
+#: glib/gregex.c:264
msgid "missing ) after comment"
msgstr "kommentaari järel puudub sulg )"
-#: ../glib/gregex.c:267
+#: glib/gregex.c:267
msgid "regular expression too large"
msgstr "regulaaravaldis on liiga suur"
-#: ../glib/gregex.c:270
+#: glib/gregex.c:270
msgid "failed to get memory"
msgstr "tõrge mälu hankimisel"
-#: ../glib/gregex.c:273
+#: glib/gregex.c:273
msgid "lookbehind assertion is not fixed length"
msgstr ""
-#: ../glib/gregex.c:276
+#: glib/gregex.c:276
msgid "malformed number or name after (?("
msgstr ""
-#: ../glib/gregex.c:279
+#: glib/gregex.c:279
msgid "conditional group contains more than two branches"
msgstr ""
-#: ../glib/gregex.c:282
+#: glib/gregex.c:282
msgid "assertion expected after (?("
msgstr ""
-#: ../glib/gregex.c:285
+#: glib/gregex.c:285
msgid "unknown POSIX class name"
msgstr "tundmatu POSIX-klassi nimi"
-#: ../glib/gregex.c:288
+#: glib/gregex.c:288
msgid "POSIX collating elements are not supported"
msgstr "POSIX-i koondavad elemendid pole toetatud"
-#: ../glib/gregex.c:291
+#: glib/gregex.c:291
msgid "character value in \\x{...} sequence is too large"
msgstr "märgi väärtus \\x{...} jadas on liiga suur"
-#: ../glib/gregex.c:294
+#: glib/gregex.c:294
msgid "invalid condition (?(0)"
msgstr "vigane tingimus (?(0)"
-#: ../glib/gregex.c:297
+#: glib/gregex.c:297
msgid "\\C not allowed in lookbehind assertion"
msgstr ""
-#: ../glib/gregex.c:300
+#: glib/gregex.c:300
msgid "recursive call could loop indefinitely"
msgstr "rekursiivne kutsung võib jääda lõpmatusse tsüklisse"
-#: ../glib/gregex.c:303
+#: glib/gregex.c:303
msgid "missing terminator in subpattern name"
msgstr "alammustri nimes puudub katkestaja"
-#: ../glib/gregex.c:306
+#: glib/gregex.c:306
msgid "two named subpatterns have the same name"
msgstr "kaks nimelist alammustrit on sama nimega"
-#: ../glib/gregex.c:309
+#: glib/gregex.c:309
msgid "malformed \\P or \\p sequence"
msgstr "vigane \\P või \\p jada"
-#: ../glib/gregex.c:312
+#: glib/gregex.c:312
msgid "unknown property name after \\P or \\p"
msgstr "tundmatu omaduse nimi \\P või \\p järel"
-#: ../glib/gregex.c:315
+#: glib/gregex.c:315
msgid "subpattern name is too long (maximum 32 characters)"
msgstr "alammustri nimi on liiga pikk (maksimaalselt 32 märki)"
-#: ../glib/gregex.c:318
+#: glib/gregex.c:318
msgid "too many named subpatterns (maximum 10,000)"
msgstr "liiga palju alammustreid (suurim lubatud arv on 10 000)"
-#: ../glib/gregex.c:321
+#: glib/gregex.c:321
msgid "octal value is greater than \\377"
msgstr "kaheksandväärtus on suurem kui \\377"
-#: ../glib/gregex.c:324
+#: glib/gregex.c:324
msgid "DEFINE group contains more than one branch"
msgstr ""
-#: ../glib/gregex.c:327
+#: glib/gregex.c:327
msgid "repeating a DEFINE group is not allowed"
msgstr "DEFINE grupi kordused pole lubatud"
-#: ../glib/gregex.c:330
+#: glib/gregex.c:330
msgid "inconsistent NEWLINE options"
msgstr "NEWLINE võtmed pole kooskõlalised"
-#: ../glib/gregex.c:333
+#: glib/gregex.c:333
msgid ""
"\\g is not followed by a braced name or an optionally braced non-zero number"
msgstr ""
-#: ../glib/gregex.c:338
+#: glib/gregex.c:338
msgid "unexpected repeat"
msgstr "ootamatu kordus"
-#: ../glib/gregex.c:342
+#: glib/gregex.c:342
msgid "code overflow"
msgstr "koodi ületäitumine"
-#: ../glib/gregex.c:346
+#: glib/gregex.c:346
msgid "overran compiling workspace"
msgstr ""
-#: ../glib/gregex.c:350
+#: glib/gregex.c:350
msgid "previously-checked referenced subpattern not found"
msgstr ""
-#: ../glib/gregex.c:526 ../glib/gregex.c:1593
+#: glib/gregex.c:526 glib/gregex.c:1593
#, c-format
msgid "Error while matching regular expression %s: %s"
msgstr "Viga regulaaravaldise %s vastavuse otsimisel: %s"
-#: ../glib/gregex.c:1098
+#: glib/gregex.c:1098
msgid "PCRE library is compiled without UTF8 support"
msgstr "PCRE teek on kompileeritud ilma UTF8 toeta"
-#: ../glib/gregex.c:1107
+#: glib/gregex.c:1107
msgid "PCRE library is compiled without UTF8 properties support"
msgstr "PCRE teek on kompileeritud ilma UTF8 omaduste toeta"
-#: ../glib/gregex.c:1161
+#: glib/gregex.c:1161
#, c-format
msgid "Error while compiling regular expression %s at char %d: %s"
msgstr "Viga regulaaravaldise %s kompileerimisel %d. märgi juures: %s"
-#: ../glib/gregex.c:1197
+#: glib/gregex.c:1197
#, c-format
msgid "Error while optimizing regular expression %s: %s"
msgstr "Viga regulaaravaldise %s optimeerimisel: %s"
-#: ../glib/gregex.c:2021
+#: glib/gregex.c:2021
msgid "hexadecimal digit or '}' expected"
msgstr "oodati kuueteistkümnendsüsteemi numbrit või '}' märki"
-#: ../glib/gregex.c:2037
+#: glib/gregex.c:2037
msgid "hexadecimal digit expected"
msgstr "oodati kuueteistkümnendsüsteemi numbrit"
-#: ../glib/gregex.c:2077
+#: glib/gregex.c:2077
msgid "missing '<' in symbolic reference"
msgstr "puuduv '<' märgiviites"
-#: ../glib/gregex.c:2086
+#: glib/gregex.c:2086
msgid "unfinished symbolic reference"
msgstr "lõpetamata märgiviide"
-#: ../glib/gregex.c:2093
+#: glib/gregex.c:2093
msgid "zero-length symbolic reference"
msgstr "nullpikkusega märgiviide"
-#: ../glib/gregex.c:2104
+#: glib/gregex.c:2104
msgid "digit expected"
msgstr "oodati numbrit"
-#: ../glib/gregex.c:2122
+#: glib/gregex.c:2122
msgid "illegal symbolic reference"
msgstr "keelatud märgiviide"
-#: ../glib/gregex.c:2184
+#: glib/gregex.c:2184
msgid "stray final '\\'"
msgstr "liigne lõpp '\\'"
-#: ../glib/gregex.c:2188
+#: glib/gregex.c:2188
msgid "unknown escape sequence"
msgstr "tundmatu paojada"
-#: ../glib/gregex.c:2198
+#: glib/gregex.c:2198
#, c-format
msgid "Error while parsing replacement text \"%s\" at char %lu: %s"
msgstr "Viga asendusteksti \"%s\" parsimisel märgi %lu kohal: %s"
-#: ../glib/gshell.c:70
+#: glib/gshell.c:70
#, c-format
msgid "Quoted text doesn't begin with a quotation mark"
msgstr "Tsiteeritav tekst ei alga jutumärgiga"
-#: ../glib/gshell.c:160
+#: glib/gshell.c:160
#, c-format
msgid "Unmatched quotation mark in command line or other shell-quoted text"
msgstr "Vastavuseta jutumärk käsureal või kestprogrammi tsiteeritud tekstis"
-#: ../glib/gshell.c:538
+#: glib/gshell.c:538
#, c-format
msgid "Text ended just after a '\\' character. (The text was '%s')"
msgstr "Tekst lõppes pärast '\\' märki. (Tekst on '%s')"
-#: ../glib/gshell.c:545
+#: glib/gshell.c:545
#, c-format
msgid "Text ended before matching quote was found for %c. (The text was '%s')"
msgstr "Tekst lõppes enne kui leiti vastav jutumärk %c jaoks. (Tekst oli '%s')"
-#: ../glib/gshell.c:557
-#, c-format
+#: glib/gshell.c:557
msgid "Text was empty (or contained only whitespace)"
msgstr "Tekst puudus (või sisaldas ainult tühja ruumi)"
-#: ../glib/gspawn-win32.c:279
-#, c-format
+#: glib/gspawn-win32.c:279
msgid "Failed to read data from child process"
msgstr "Tõrge andmete lugemisel alamprotsessilt"
-#: ../glib/gspawn-win32.c:294 ../glib/gspawn.c:1455
+#: glib/gspawn-win32.c:294 glib/gspawn.c:1467
#, c-format
msgid "Failed to create pipe for communicating with child process (%s)"
msgstr "Tõrge toru loomisel alamprotsessiga suhtlemiseks (%s)"
-#: ../glib/gspawn-win32.c:332 ../glib/gspawn-win32.c:340 ../glib/gspawn.c:1119
+#: glib/gspawn-win32.c:332 glib/gspawn-win32.c:340 glib/gspawn.c:1131
#, c-format
msgid "Failed to read from child pipe (%s)"
msgstr "Tõrge alamprotsessi torust lugemisel (%s)"
-#: ../glib/gspawn-win32.c:363 ../glib/gspawn.c:1324
+#: glib/gspawn-win32.c:363 glib/gspawn.c:1336
#, c-format
msgid "Failed to change to directory '%s' (%s)"
msgstr "Tõrge kataloogi '%s' muutmisel (%s)"
-#: ../glib/gspawn-win32.c:369 ../glib/gspawn-win32.c:493
+#: glib/gspawn-win32.c:369 glib/gspawn-win32.c:493
#, c-format
msgid "Failed to execute child process (%s)"
msgstr "Tõrge alamprotsessi käivitamisel (%s)"
-#: ../glib/gspawn-win32.c:440
+#: glib/gspawn-win32.c:440
#, c-format
msgid "Invalid program name: %s"
msgstr "Vigane programmi nimi: %s"
-#: ../glib/gspawn-win32.c:450 ../glib/gspawn-win32.c:723
-#: ../glib/gspawn-win32.c:1282
+#: glib/gspawn-win32.c:450 glib/gspawn-win32.c:723 glib/gspawn-win32.c:1282
#, c-format
msgid "Invalid string in argument vector at %d: %s"
msgstr "Vigane string argumendivektoris %d: %s"
-#: ../glib/gspawn-win32.c:461 ../glib/gspawn-win32.c:738
-#: ../glib/gspawn-win32.c:1315
+#: glib/gspawn-win32.c:461 glib/gspawn-win32.c:738 glib/gspawn-win32.c:1315
#, c-format
msgid "Invalid string in environment: %s"
msgstr "Vigane string keskkonnamuutujates: %s"
-#: ../glib/gspawn-win32.c:719 ../glib/gspawn-win32.c:1263
+#: glib/gspawn-win32.c:719 glib/gspawn-win32.c:1263
#, c-format
msgid "Invalid working directory: %s"
msgstr "Vigane töökataloog: %s"
-#: ../glib/gspawn-win32.c:787
+#: glib/gspawn-win32.c:787
#, c-format
msgid "Failed to execute helper program (%s)"
msgstr "Tõrge abiprogrammi käivitamisel (%s)"
-#: ../glib/gspawn-win32.c:1002
-#, c-format
+#: glib/gspawn-win32.c:1002
msgid ""
"Unexpected error in g_io_channel_win32_poll() reading data from a child "
"process"
"Ootamatu viga, kui g_io_channel_win32_poll() funktsioon luges "
"lapsprotsessilt andmeid"
-#: ../glib/gspawn.c:180
+#: glib/gspawn.c:188
#, c-format
msgid "Failed to read data from child process (%s)"
msgstr "Tõrge andmete lugemisel alamprotsessilt (%s)"
-#: ../glib/gspawn.c:317
+#: glib/gspawn.c:325
#, c-format
msgid "Unexpected error in select() reading data from a child process (%s)"
msgstr ""
"Ootamatu funktsiooni select() viga andmete lugemisel alamprotsessilt (%s)"
-#: ../glib/gspawn.c:400
+#: glib/gspawn.c:408
#, c-format
msgid "Unexpected error in waitpid() (%s)"
msgstr "Ootamatu viga funktsioonis waitpid() (%s)"
-#: ../glib/gspawn.c:1184
+#: glib/gspawn.c:1196
#, c-format
msgid "Failed to fork (%s)"
msgstr "Viga poolitamisel funktsiooniga fork() (%s)"
-#: ../glib/gspawn.c:1334
+#: glib/gspawn.c:1346
#, c-format
msgid "Failed to execute child process \"%s\" (%s)"
msgstr "Tõrge alamprotsessi \"%s\" käivitamisel (%s)"
-#: ../glib/gspawn.c:1344
+#: glib/gspawn.c:1356
#, c-format
msgid "Failed to redirect output or input of child process (%s)"
msgstr "Tõrge alamprotsessi sisendi või väljundi ümbersuunamisel (%s)"
-#: ../glib/gspawn.c:1353
+#: glib/gspawn.c:1365
#, c-format
msgid "Failed to fork child process (%s)"
msgstr "Tõrge alamprotsessi poolitamisel funktsiooniga fork() (%s)"
-#: ../glib/gspawn.c:1361
+#: glib/gspawn.c:1373
#, c-format
msgid "Unknown error executing child process \"%s\""
msgstr "Tundmatu viga alamprotsessi \"%s\" käivitamisel"
-#: ../glib/gspawn.c:1383
+#: glib/gspawn.c:1395
#, c-format
msgid "Failed to read enough data from child pid pipe (%s)"
msgstr "Tõrge piisavate andmete lugemisel lapsprotsessi torust (%s)"
-#: ../glib/gutf8.c:1030
-#, c-format
+#: glib/gutf8.c:1030
msgid "Character out of range for UTF-8"
msgstr "Märk on väljaspool UTF-8 ulatust"
-#: ../glib/gutf8.c:1124 ../glib/gutf8.c:1133 ../glib/gutf8.c:1265
-#: ../glib/gutf8.c:1274 ../glib/gutf8.c:1415 ../glib/gutf8.c:1511
-#, c-format
+#: glib/gutf8.c:1124 glib/gutf8.c:1133 glib/gutf8.c:1265 glib/gutf8.c:1274
+#: glib/gutf8.c:1415 glib/gutf8.c:1511
msgid "Invalid sequence in conversion input"
msgstr "Vigane jada sisendi teisendamisel"
-#: ../glib/gutf8.c:1426 ../glib/gutf8.c:1522
-#, c-format
+#: glib/gutf8.c:1426 glib/gutf8.c:1522
msgid "Character out of range for UTF-16"
msgstr "Märk on väljaspool UTF-16 ulatust"
-#: ../glib/goption.c:615
+#: glib/goption.c:615
msgid "Usage:"
msgstr "Kasutamine:"
-#: ../glib/goption.c:615
+#: glib/goption.c:615
msgid "[OPTION...]"
msgstr "[VÕTI...]"
-#: ../glib/goption.c:719
+#: glib/goption.c:719
msgid "Help Options:"
msgstr "Abiteabe võtmed:"
-#: ../glib/goption.c:720
+#: glib/goption.c:720
msgid "Show help options"
msgstr "Abiteabe võtmete näitamine"
-#: ../glib/goption.c:726
+#: glib/goption.c:726
msgid "Show all help options"
msgstr "Kõikide abiteabe võtmete näitamine"
-#: ../glib/goption.c:788
+#: glib/goption.c:788
msgid "Application Options:"
msgstr "Rakenduse võtmed:"
-#: ../glib/goption.c:849 ../glib/goption.c:919
+#: glib/goption.c:849 glib/goption.c:919
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "Täisarvulist väärtust '%s' pole võimalik %s jaoks parsida"
-#: ../glib/goption.c:859 ../glib/goption.c:927
+#: glib/goption.c:859 glib/goption.c:927
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Täisarv '%s' %s jaoks on väljaspool lubatud piire"
-#: ../glib/goption.c:884
+#: glib/goption.c:884
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "Arvväärtust '%s' pole võimalik %s jaoks parsida"
-#: ../glib/goption.c:892
+#: glib/goption.c:892
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "Arv '%s' %s jaoks on väljaspool lubatud piire"
-#: ../glib/goption.c:1229
+#: glib/goption.c:1229
#, c-format
msgid "Error parsing option %s"
msgstr "Viga võtme parsimisel: %s"
-#: ../glib/goption.c:1260 ../glib/goption.c:1371
+#: glib/goption.c:1260 glib/goption.c:1371
#, c-format
msgid "Missing argument for %s"
msgstr "Puuduv argument %s'i jaoks"
-#: ../glib/goption.c:1766
+#: glib/goption.c:1766
#, c-format
msgid "Unknown option %s"
msgstr "Tundmatu võti %s"
-#: ../glib/gkeyfile.c:358
-#, c-format
+#: glib/gkeyfile.c:358
msgid "Valid key file could not be found in search dirs"
msgstr "Sobivat võtmefaili pole võimalik otsingukataloogidest leida"
-#: ../glib/gkeyfile.c:393
-#, c-format
+#: glib/gkeyfile.c:393
msgid "Not a regular file"
msgstr "Pole tavaline fail"
-#: ../glib/gkeyfile.c:401
-#, c-format
+#: glib/gkeyfile.c:401
msgid "File is empty"
msgstr "Fail on tühi"
-#: ../glib/gkeyfile.c:761
+#: glib/gkeyfile.c:761
#, c-format
msgid ""
"Key file contains line '%s' which is not a key-value pair, group, or comment"
"Võtmefail sisaldab rida '%s', mis ei ole võti-väärtus paar, grupp ega ka "
"kommentaar"
-#: ../glib/gkeyfile.c:821
+#: glib/gkeyfile.c:821
#, c-format
msgid "Invalid group name: %s"
msgstr "Vigane grupi nimi: %s"
-#: ../glib/gkeyfile.c:843
-#, c-format
+#: glib/gkeyfile.c:843
msgid "Key file does not start with a group"
msgstr "Võtmefail ei alga grupiga"
-#: ../glib/gkeyfile.c:869
+#: glib/gkeyfile.c:869
#, c-format
msgid "Invalid key name: %s"
msgstr "Vigane võtme nimi: %s"
-#: ../glib/gkeyfile.c:896
+#: glib/gkeyfile.c:896
#, c-format
msgid "Key file contains unsupported encoding '%s'"
msgstr "Võtmefail sisaldab toetamata kodeeringut '%s'"
-#: ../glib/gkeyfile.c:1109 ../glib/gkeyfile.c:1269 ../glib/gkeyfile.c:2487
-#: ../glib/gkeyfile.c:2555 ../glib/gkeyfile.c:2690 ../glib/gkeyfile.c:2825
-#: ../glib/gkeyfile.c:2978 ../glib/gkeyfile.c:3165 ../glib/gkeyfile.c:3226
+#: glib/gkeyfile.c:1112 glib/gkeyfile.c:1272 glib/gkeyfile.c:2490
+#: glib/gkeyfile.c:2558 glib/gkeyfile.c:2693 glib/gkeyfile.c:2828
+#: glib/gkeyfile.c:2981 glib/gkeyfile.c:3168 glib/gkeyfile.c:3229
#, c-format
msgid "Key file does not have group '%s'"
msgstr "Võtmefail ei sisalda gruppi '%s'"
-#: ../glib/gkeyfile.c:1281
+#: glib/gkeyfile.c:1284
#, c-format
msgid "Key file does not have key '%s'"
msgstr "Võtmefail ei sisalda võtit '%s'"
-#: ../glib/gkeyfile.c:1383 ../glib/gkeyfile.c:1496
+#: glib/gkeyfile.c:1386 glib/gkeyfile.c:1499
#, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr ""
"Võtmefail sisaldab võtit '%s', mille väärtus '%s' pole UTF-8 kodeeringus"
-#: ../glib/gkeyfile.c:1403 ../glib/gkeyfile.c:1516 ../glib/gkeyfile.c:1891
+#: glib/gkeyfile.c:1406 glib/gkeyfile.c:1519 glib/gkeyfile.c:1894
#, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "Võtmefail sisaldab võtit '%s', mille väärtus pole võimalik kasutada."
-#: ../glib/gkeyfile.c:2106 ../glib/gkeyfile.c:2318
+#: glib/gkeyfile.c:2109 glib/gkeyfile.c:2321
#, c-format
msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be "
"Võtmefail sisaldab võtit '%s' grupis '%s' aga selle väärtust pole võimalik "
"kasutada"
-#: ../glib/gkeyfile.c:2502 ../glib/gkeyfile.c:2705 ../glib/gkeyfile.c:3237
+#: glib/gkeyfile.c:2505 glib/gkeyfile.c:2708 glib/gkeyfile.c:3240
#, c-format
msgid "Key file does not have key '%s' in group '%s'"
msgstr "Võtmefail ei sisalda võtit '%s' grupis '%s'"
-#: ../glib/gkeyfile.c:3471
-#, c-format
+#: glib/gkeyfile.c:3474
msgid "Key file contains escape character at end of line"
msgstr "Võtmefail sisaldab rea lõpus paomärki"
-#: ../glib/gkeyfile.c:3493
+#: glib/gkeyfile.c:3496
#, c-format
msgid "Key file contains invalid escape sequence '%s'"
msgstr "Võtmefail sisaldab vigast paojada '%s'"
-#: ../glib/gkeyfile.c:3635
+#: glib/gkeyfile.c:3638
#, c-format
msgid "Value '%s' cannot be interpreted as a number."
msgstr "Väärtust '%s' pole võimalik numbrilise väärtusena kasutada."
-#: ../glib/gkeyfile.c:3649
+#: glib/gkeyfile.c:3652
#, c-format
msgid "Integer value '%s' out of range"
msgstr "Täisarvu väärtus '%s' on väljaspool lubatud piire"
-#: ../glib/gkeyfile.c:3682
+#: glib/gkeyfile.c:3685
#, c-format
msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Väärtust '%s' pole võimalik ujukomalise väärtusena kasutada."
-#: ../glib/gkeyfile.c:3706
+#: glib/gkeyfile.c:3709
#, c-format
msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Väärtust '%s' pole võimalik tõeväärtusena kasutada."
-#: ../gio/gbufferedinputstream.c:483 ../gio/ginputstream.c:186
-#: ../gio/ginputstream.c:318 ../gio/ginputstream.c:559
-#: ../gio/ginputstream.c:684 ../gio/goutputstream.c:193
-#: ../gio/goutputstream.c:647
+#: gio/gbufferedinputstream.c:485 gio/ginputstream.c:187
+#: gio/ginputstream.c:319 gio/ginputstream.c:560 gio/ginputstream.c:685
+#: gio/goutputstream.c:195 gio/goutputstream.c:649
#, c-format
msgid "Too large count value passed to %s"
msgstr ""
-#: ../gio/gbufferedinputstream.c:870 ../gio/ginputstream.c:894
-#: ../gio/goutputstream.c:1076
-#, c-format
+#: gio/gbufferedinputstream.c:872 gio/ginputstream.c:895
+#: gio/goutputstream.c:1078
msgid "Stream is already closed"
msgstr "Voog on juba suletud"
-#: ../gio/gcancellable.c:296 ../gio/glocalfile.c:1876
-#: ../gio/gsimpleasyncresult.c:611
-#, c-format
+#: gio/gcancellable.c:295 gio/glocalfile.c:1974 gio/gsimpleasyncresult.c:612
msgid "Operation was cancelled"
msgstr "Operatsioon tühistati"
-#: ../gio/gcontenttype.c:159
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Tundmatu liik"
-#: ../gio/gcontenttype.c:160
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: ../gio/gcontenttype.c:577
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
-#: ../gio/gdatainputstream.c:309
-#, c-format
+#: gio/gdatainputstream.c:310
msgid "Unexpected early end-of-stream"
msgstr "Ootamatult varajane voolõpp"
-#: ../gio/gdesktopappinfo.c:411 ../gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Nimeta"
-#: ../gio/gdesktopappinfo.c:588
-#, c-format
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Töölauafail ei määra Exec-välja"
-#: ../gio/gdesktopappinfo.c:882
-#, c-format
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
"Rakenduse käivitamiseks vajalikku terminalprogrammi pole võimalik leida"
-#: ../gio/gdesktopappinfo.c:1114
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "Kasutaja rakenduse seadistustekataloogi %s pole võimalik luua: %s"
-#: ../gio/gdesktopappinfo.c:1118
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Kasutaja MIME-seadistustekataloogi %s pole võimalik luua: %s"
-#: ../gio/gdesktopappinfo.c:1457
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Kasutaja töölauafaili %s pole võimalik luua"
-#: ../gio/gdesktopappinfo.c:1517
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: ../gio/gdrive.c:372
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "seade ei toeta väljastamist"
-#: ../gio/gdrive.c:439
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "seade ei toeta meediumi olemasolu pollimist"
-#: ../gio/gfile.c:812 ../gio/gfile.c:1002 ../gio/gfile.c:1135
-#: ../gio/gfile.c:1366 ../gio/gfile.c:1419 ../gio/gfile.c:1475
-#: ../gio/gfile.c:1556 ../gio/gfile.c:2594 ../gio/gfile.c:2639
-#: ../gio/gfile.c:2689 ../gio/gfile.c:2729 ../gio/gfile.c:3053
-#: ../gio/gfile.c:3455 ../gio/gfile.c:3538 ../gio/gfile.c:3621
-#: ../gio/gfile.c:3701
-#, c-format
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Operatsioon ei ole toetatud"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: ../gio/gfile.c:1254 ../gio/glocalfile.c:1046 ../gio/glocalfile.c:1057
-#: ../gio/glocalfile.c:1070
-#, c-format
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: ../gio/gfile.c:1895
-#, c-format
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: ../gio/gfile.c:1955
-#, c-format
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: ../gio/gfile.c:1963 ../gio/glocalfile.c:2030
-#, c-format
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Sihtfail on olemas"
-#: ../gio/gfile.c:1981
-#, c-format
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Kataloogi pole võimalik rekursiivselt kopeerida"
-#: ../gio/gfile.c:2679
-#, c-format
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Määrati vigane nimeviida väärtus"
-#: ../gio/gfile.c:2772
-#, c-format
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr ""
-#: ../gio/gfile.c:2819
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Failinimed ei tohi sisaldada märki '%c'"
-#: ../gio/gfile.c:4752 ../gio/gvolume.c:357
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: ../gio/gfile.c:4860
-#, c-format
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Selle faili käsitlemiseks pole rakendust registreeritud"
-#: ../gio/gfileenumerator.c:151
-#, c-format
+#: gio/gfileenumerator.c:205
msgid "Enumerator is closed"
msgstr "Nummerdaja on suletud"
-#: ../gio/gfileenumerator.c:158 ../gio/gfileenumerator.c:217
-#: ../gio/gfileenumerator.c:317 ../gio/gfileenumerator.c:425
-#, c-format
+#: gio/gfileenumerator.c:212 gio/gfileenumerator.c:271
+#: gio/gfileenumerator.c:371 gio/gfileenumerator.c:480
msgid "File enumerator has outstanding operation"
msgstr ""
-#: ../gio/gfileenumerator.c:307 ../gio/gfileenumerator.c:415
+#: gio/gfileenumerator.c:361 gio/gfileenumerator.c:470
msgid "File enumerator is already closed"
msgstr "Failinummerdaja on juba suletud"
-#: ../gio/gfileinputstream.c:154 ../gio/gfileinputstream.c:421
-#: ../gio/gfileoutputstream.c:168 ../gio/gfileoutputstream.c:523
-#, c-format
+#: gio/gfileinputstream.c:157 gio/gfileinputstream.c:424
+#: gio/gfileoutputstream.c:171 gio/gfileoutputstream.c:526
msgid "Stream doesn't support query_info"
msgstr "Voog ei toeta query_info't"
-#: ../gio/gfileinputstream.c:336 ../gio/gfileoutputstream.c:381
-#, c-format
+#: gio/gfileinputstream.c:339 gio/gfileoutputstream.c:384
msgid "Seek not supported on stream"
msgstr ""
-#: ../gio/gfileinputstream.c:380
-#, c-format
+#: gio/gfileinputstream.c:383
msgid "Truncate not allowed on input stream"
msgstr "Sisendvoo kärpimine pole lubatud"
-#: ../gio/gfileoutputstream.c:457
-#, c-format
+#: gio/gfileoutputstream.c:460
msgid "Truncate not supported on stream"
msgstr "Andmevoo kärpimine pole toetatud"
-#: ../gio/ginputstream.c:195
-#, c-format
+#: gio/ginputstream.c:196
msgid "Input stream doesn't implement read"
msgstr ""
#. Translators: This is an error you get if there is
#. * already an operation running against this stream when
#. * you try to start one
-#: ../gio/ginputstream.c:904 ../gio/goutputstream.c:1086
-#, c-format
+#: gio/ginputstream.c:905 gio/goutputstream.c:1088
msgid "Stream has outstanding operation"
msgstr ""
-#: ../gio/glocaldirectorymonitor.c:270
-#, c-format
+#: gio/glocaldirectorymonitor.c:274
msgid "Unable to find default local directory monitor type"
msgstr ""
-#: ../gio/glocalfile.c:599
+#: gio/glocalfile.c:601
#, c-format
msgid "Invalid filename %s"
msgstr "Vigane failinimi %s"
-#: ../gio/glocalfile.c:962
+#: gio/glocalfile.c:972
#, c-format
msgid "Error getting filesystem info: %s"
msgstr "Viga failisüsteemi andmete hankimisel: %s"
-#: ../gio/glocalfile.c:1090
-#, c-format
+#: gio/glocalfile.c:1108
msgid "Can't rename root directory"
msgstr "Juurkataloogi nime pole võimalik muuta"
-#: ../gio/glocalfile.c:1108
-#, c-format
+#: gio/glocalfile.c:1126
msgid "Can't rename file, filename already exist"
msgstr "Faili pole võimalik ümber nimetada, failinimi on juba olemas"
-#: ../gio/glocalfile.c:1121 ../gio/glocalfile.c:1905 ../gio/glocalfile.c:1934
-#: ../gio/glocalfile.c:2083 ../gio/glocalfileoutputstream.c:472
-#: ../gio/glocalfileoutputstream.c:517 ../gio/glocalfileoutputstream.c:925
-#, c-format
+#: gio/glocalfile.c:1139 gio/glocalfile.c:2003 gio/glocalfile.c:2032
+#: gio/glocalfile.c:2186 gio/glocalfileoutputstream.c:472
+#: gio/glocalfileoutputstream.c:517 gio/glocalfileoutputstream.c:925
msgid "Invalid filename"
msgstr "Vigane failinimi"
-#: ../gio/glocalfile.c:1125
+#: gio/glocalfile.c:1143
#, c-format
msgid "Error renaming file: %s"
msgstr "Viga faili nime muutmisel: %s"
-#: ../gio/glocalfile.c:1244
+#: gio/glocalfile.c:1262
#, c-format
msgid "Error opening file: %s"
msgstr "Viga avamisel: %s"
-#: ../gio/glocalfile.c:1254
-#, c-format
+#: gio/glocalfile.c:1272
msgid "Can't open directory"
msgstr "Kataloogi pole võimalik avada"
-#: ../gio/glocalfile.c:1314 ../gio/glocalfile.c:1909
+#: gio/glocalfile.c:1332
#, c-format
msgid "Error removing file: %s"
msgstr "Viga faili eemaldamisel: %s"
-#: ../gio/glocalfile.c:1604
+#: gio/glocalfile.c:1696
#, c-format
msgid "Error trashing file: %s"
msgstr "Viga faili prügikasti viskamisel: %s"
-#: ../gio/glocalfile.c:1627
+#: gio/glocalfile.c:1719
#, c-format
msgid "Unable to create trash dir %s: %s"
msgstr "Prügikataloogi %s pole võimalik luua: %s"
-#: ../gio/glocalfile.c:1648
-#, c-format
+#: gio/glocalfile.c:1740
msgid "Unable to find toplevel directory for trash"
msgstr "Prügikasti ülemise taseme kataloogi pole võimalik leida"
-#: ../gio/glocalfile.c:1727 ../gio/glocalfile.c:1747
-#, c-format
+#: gio/glocalfile.c:1819 gio/glocalfile.c:1839
msgid "Unable to find or create trash directory"
msgstr "Prügikasti kataloogi pole võimalik leida või luua"
-#: ../gio/glocalfile.c:1781
+#: gio/glocalfile.c:1873
#, c-format
msgid "Unable to create trashing info file: %s"
msgstr ""
-#: ../gio/glocalfile.c:1806 ../gio/glocalfile.c:1875 ../gio/glocalfile.c:1882
+#: gio/glocalfile.c:1898 gio/glocalfile.c:1973 gio/glocalfile.c:1980
#, c-format
msgid "Unable to trash file: %s"
msgstr ""
-#: ../gio/glocalfile.c:1938
+#: gio/glocalfile.c:2007
+#, fuzzy, c-format
+msgid "Error creating directory: %s"
+msgstr "Viga kataloogi '%s' avamisel: %s"
+
+#: gio/glocalfile.c:2036
#, c-format
msgid "Error making symbolic link: %s"
msgstr "Viga nimeviida loomisel: %s"
-#: ../gio/glocalfile.c:1998 ../gio/glocalfile.c:2087
+#: gio/glocalfile.c:2096 gio/glocalfile.c:2190
#, c-format
msgid "Error moving file: %s"
msgstr "Viga faili ümbertõstmisel: %s"
-#: ../gio/glocalfile.c:2021
-#, c-format
+#: gio/glocalfile.c:2119
msgid "Can't move directory over directory"
msgstr ""
-#: ../gio/glocalfile.c:2043 ../gio/glocalfileoutputstream.c:777
-#: ../gio/glocalfileoutputstream.c:791 ../gio/glocalfileoutputstream.c:806
-#: ../gio/glocalfileoutputstream.c:822 ../gio/glocalfileoutputstream.c:836
-#, c-format
+#: gio/glocalfile.c:2146 gio/glocalfileoutputstream.c:777
+#: gio/glocalfileoutputstream.c:791 gio/glocalfileoutputstream.c:806
+#: gio/glocalfileoutputstream.c:822 gio/glocalfileoutputstream.c:836
msgid "Backup file creation failed"
msgstr "Tõrge varufaili loomisel"
-#: ../gio/glocalfile.c:2062
+#: gio/glocalfile.c:2165
#, c-format
msgid "Error removing target file: %s"
msgstr "Viga sihtfaili eemaldamisel: %s"
-#: ../gio/glocalfile.c:2076
-#, c-format
+#: gio/glocalfile.c:2179
msgid "Move between mounts not supported"
msgstr ""
-#: ../gio/glocalfileinfo.c:709
-#, c-format
+#: gio/glocalfileinfo.c:716
msgid "Attribute value must be non-NULL"
msgstr "Rekvisiidi väärtus ei tohi olla NULL"
-#: ../gio/glocalfileinfo.c:716
-#, c-format
+#: gio/glocalfileinfo.c:723
msgid "Invalid attribute type (string expected)"
msgstr "Vigane rekvisiidi tüüp (oodatakse stringi)"
-#: ../gio/glocalfileinfo.c:723
-#, c-format
+#: gio/glocalfileinfo.c:730
msgid "Invalid extended attribute name"
msgstr "Vigane laiendatud rekvisiidi nimi"
-#: ../gio/glocalfileinfo.c:763
+#: gio/glocalfileinfo.c:770
#, c-format
msgid "Error setting extended attribute '%s': %s"
msgstr "Viga laiendatud rekvisiidi '%s' seadmisel: %s"
-#: ../gio/glocalfileinfo.c:1398 ../gio/glocalfileoutputstream.c:666
+#: gio/glocalfileinfo.c:1456 gio/glocalfileoutputstream.c:666
#, c-format
msgid "Error stating file '%s': %s"
msgstr "Viga faili '%s' kohta andmete hankimisel: %s"
-#: ../gio/glocalfileinfo.c:1454
+#: gio/glocalfileinfo.c:1526
msgid " (invalid encoding)"
msgstr " (vigane kodeering)"
-#: ../gio/glocalfileinfo.c:1614
+#: gio/glocalfileinfo.c:1696
#, c-format
msgid "Error stating file descriptor: %s"
msgstr "Viga failideskriptori kohta andmete hankimisel: %s"
-#: ../gio/glocalfileinfo.c:1659
-#, c-format
+#: gio/glocalfileinfo.c:1741
msgid "Invalid attribute type (uint32 expected)"
msgstr "Vigane rekvisiidi tüüp (oodatakse tüüpi uint32)"
-#: ../gio/glocalfileinfo.c:1676
-#, c-format
+#: gio/glocalfileinfo.c:1759
msgid "Invalid attribute type (uint64 expected)"
msgstr "Vigane rekvisiidi tüüp (oodatakse tüüpi uint64)"
-#: ../gio/glocalfileinfo.c:1694
-#, c-format
+#: gio/glocalfileinfo.c:1778
msgid "Invalid attribute type (byte string expected)"
msgstr "Vigane rekvisiidi tüüp (oodatakse baitstringi)"
-#: ../gio/glocalfileinfo.c:1720
+#: gio/glocalfileinfo.c:1804
#, c-format
msgid "Error setting permissions: %s"
msgstr "Viga pääsuõiguste määramisel: %s"
-#: ../gio/glocalfileinfo.c:1771 ../gio/glocalfileinfo.c:1939
+#: gio/glocalfileinfo.c:1855 gio/glocalfileinfo.c:2023
#, c-format
msgid "Error setting owner: %s"
msgstr "Viga omaniku seadmisel: %s"
-#: ../gio/glocalfileinfo.c:1794
-#, c-format
+#: gio/glocalfileinfo.c:1878
msgid "symlink must be non-NULL"
msgstr ""
-#: ../gio/glocalfileinfo.c:1804 ../gio/glocalfileinfo.c:1823
-#: ../gio/glocalfileinfo.c:1834
+#: gio/glocalfileinfo.c:1888 gio/glocalfileinfo.c:1907
+#: gio/glocalfileinfo.c:1918
#, c-format
msgid "Error setting symlink: %s"
msgstr "Viga nimeviida seadmisel: %s"
-#: ../gio/glocalfileinfo.c:1813
-#, c-format
+#: gio/glocalfileinfo.c:1897
msgid "Error setting symlink: file is not a symlink"
msgstr "Viga nimeviida seadmisel: fail pole nimeviide"
-#: ../gio/glocalfileinfo.c:1994
+#: gio/glocalfileinfo.c:2078
#, c-format
msgid "Setting attribute %s not supported"
msgstr "Rekvisiidi %s seadmine pole toetatud"
-#: ../gio/glocalfileinputstream.c:160 ../gio/glocalfileoutputstream.c:570
+#: gio/glocalfileinputstream.c:160 gio/glocalfileoutputstream.c:570
#, c-format
msgid "Error reading from file: %s"
msgstr "Viga failist lugemisel: %s"
-#: ../gio/glocalfileinputstream.c:191 ../gio/glocalfileinputstream.c:203
-#: ../gio/glocalfileinputstream.c:312 ../gio/glocalfileoutputstream.c:372
-#: ../gio/glocalfileoutputstream.c:854
+#: gio/glocalfileinputstream.c:191 gio/glocalfileinputstream.c:203
+#: gio/glocalfileinputstream.c:312 gio/glocalfileoutputstream.c:372
+#: gio/glocalfileoutputstream.c:854
#, c-format
msgid "Error seeking in file: %s"
msgstr ""
-#: ../gio/glocalfileinputstream.c:233 ../gio/glocalfileoutputstream.c:279
+#: gio/glocalfileinputstream.c:233 gio/glocalfileoutputstream.c:279
#, c-format
msgid "Error closing file: %s"
msgstr "Viga faili sulgemisel: %s"
-#: ../gio/glocalfilemonitor.c:197
-#, c-format
+#: gio/glocalfilemonitor.c:198
msgid "Unable to find default local file monitor type"
msgstr "Failimonitori vaikimisi liiki pole võimalik leida"
-#: ../gio/glocalfileoutputstream.c:172 ../gio/glocalfileoutputstream.c:591
+#: gio/glocalfileoutputstream.c:172 gio/glocalfileoutputstream.c:591
#, c-format
msgid "Error writing to file: %s"
msgstr "Viga faili kirjutamisel: %s"
-#: ../gio/glocalfileoutputstream.c:213
+#: gio/glocalfileoutputstream.c:213
#, c-format
msgid "Error removing old backup link: %s"
msgstr "Viga vana varuviite eemaldamisel: %s"
-#: ../gio/glocalfileoutputstream.c:227 ../gio/glocalfileoutputstream.c:240
+#: gio/glocalfileoutputstream.c:227 gio/glocalfileoutputstream.c:240
#, c-format
msgid "Error creating backup copy: %s"
msgstr "Viga varukoopia loomisel: %s"
-#: ../gio/glocalfileoutputstream.c:258
+#: gio/glocalfileoutputstream.c:258
#, c-format
msgid "Error renaming temporary file: %s"
msgstr "Viga ajutise faili nime muutmisel: %s"
-#: ../gio/glocalfileoutputstream.c:418 ../gio/glocalfileoutputstream.c:871
+#: gio/glocalfileoutputstream.c:418 gio/glocalfileoutputstream.c:871
#, c-format
msgid "Error truncating file: %s"
msgstr "Viga faili kärpimisel: %s"
-#: ../gio/glocalfileoutputstream.c:478 ../gio/glocalfileoutputstream.c:523
-#: ../gio/glocalfileoutputstream.c:654 ../gio/glocalfileoutputstream.c:931
+#: gio/glocalfileoutputstream.c:478 gio/glocalfileoutputstream.c:523
+#: gio/glocalfileoutputstream.c:654 gio/glocalfileoutputstream.c:931
#, c-format
msgid "Error opening file '%s': %s"
msgstr "Viga faili '%s' avamisel: %s"
-#: ../gio/glocalfileoutputstream.c:679
-#, c-format
+#: gio/glocalfileoutputstream.c:679
msgid "Target file is a directory"
msgstr "Sihtfail on kataloog"
-#: ../gio/glocalfileoutputstream.c:684
-#, c-format
+#: gio/glocalfileoutputstream.c:684
msgid "Target file is not a regular file"
msgstr "Sihtfail pole tavaline fail"
-#: ../gio/glocalfileoutputstream.c:696
-#, c-format
+#: gio/glocalfileoutputstream.c:696
msgid "The file was externally modified"
msgstr ""
-#: ../gio/gmemoryinputstream.c:487 ../gio/gmemoryoutputstream.c:517
-#, c-format
+#: gio/gmemoryinputstream.c:487 gio/gmemoryoutputstream.c:545
msgid "Invalid GSeekType supplied"
msgstr ""
-#: ../gio/gmemoryinputstream.c:497 ../gio/gmemoryoutputstream.c:527
-#, c-format
+#: gio/gmemoryinputstream.c:497 gio/gmemoryoutputstream.c:555
msgid "Invalid seek request"
msgstr ""
-#: ../gio/gmemoryinputstream.c:521
-#, c-format
+#: gio/gmemoryinputstream.c:521
msgid "Cannot truncate GMemoryInputStream"
msgstr "GMemoryInputStream'i pole võimalik kärpida"
-#: ../gio/gmemoryoutputstream.c:260
-#, c-format
+#: gio/gmemoryoutputstream.c:288
msgid "Reached maximum data array limit"
msgstr "Masiivi suurima suuruse piir ületati"
-#: ../gio/gmemoryoutputstream.c:295
-#, c-format
+#: gio/gmemoryoutputstream.c:323
msgid "Memory output stream not resizable"
msgstr ""
-#: ../gio/gmemoryoutputstream.c:311
-#, c-format
+#: gio/gmemoryoutputstream.c:339
msgid "Failed to resize memory output stream"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: ../gio/gmount.c:344
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: ../gio/gmount.c:419
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: ../gio/gmount.c:501
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
-#: ../gio/goutputstream.c:202 ../gio/goutputstream.c:403
-#, c-format
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
+#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
-#: ../gio/goutputstream.c:363 ../gio/goutputstream.c:771
-#, c-format
+#: gio/goutputstream.c:365 gio/goutputstream.c:773
msgid "Source stream is already closed"
msgstr "Lähtevoog on juba suletud"
-#: ../gio/gthemedicon.c:206
+#: gio/gthemedicon.c:206
msgid "name"
msgstr "nimi"
-#: ../gio/gthemedicon.c:207
+#: gio/gthemedicon.c:207
msgid "The name of the icon"
msgstr "Ikooni nimi"
-#: ../gio/gthemedicon.c:218
+#: gio/gthemedicon.c:218
msgid "names"
msgstr "nimed"
-#: ../gio/gthemedicon.c:219
+#: gio/gthemedicon.c:219
msgid "An array containing the icon names"
msgstr "Ikoonide nimesid sisaldav massiiv"
-#: ../gio/gthemedicon.c:244
+#: gio/gthemedicon.c:244
msgid "use default fallbacks"
msgstr ""
-#: ../gio/gthemedicon.c:245
+#: gio/gthemedicon.c:245
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/gunixinputstream.c:202 ../gio/gunixinputstream.c:222
-#: ../gio/gunixinputstream.c:300 ../gio/gunixoutputstream.c:289
+#: gio/gunixinputstream.c:201 gio/gunixinputstream.c:221
+#: gio/gunixinputstream.c:299 gio/gunixoutputstream.c:288
#, c-format
msgid "Error reading from unix: %s"
msgstr ""
-#: ../gio/gunixinputstream.c:255 ../gio/gunixinputstream.c:437
-#: ../gio/gunixoutputstream.c:244 ../gio/gunixoutputstream.c:395
+#: gio/gunixinputstream.c:254 gio/gunixinputstream.c:436
+#: gio/gunixoutputstream.c:243 gio/gunixoutputstream.c:394
#, c-format
msgid "Error closing unix: %s"
msgstr ""
-#: ../gio/gunixmounts.c:1778 ../gio/gunixmounts.c:1815
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Failisüsteemi juurikas"
-#: ../gio/gunixoutputstream.c:190 ../gio/gunixoutputstream.c:211
+#: gio/gunixoutputstream.c:189 gio/gunixoutputstream.c:210
#, c-format
msgid "Error writing to unix: %s"
msgstr ""
-#: ../gio/gvolume.c:423
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
-#: ../gio/gwin32appinfo.c:277
-#, c-format
+#: gio/gwin32appinfo.c:277
msgid "Can't find application"
msgstr "Rakendust pole võimalik leida"
-#: ../gio/gwin32appinfo.c:312
+#: gio/gwin32appinfo.c:312
#, c-format
msgid "Error launching application: %s"
msgstr "Viga rakenduse käivitamisel: %s"
-#: ../gio/gwin32appinfo.c:349
-#, c-format
+#: gio/gwin32appinfo.c:349
msgid "URIs not supported"
msgstr "URI-d ei ole toetatud"
-#: ../gio/gwin32appinfo.c:371
-#, c-format
+#: gio/gwin32appinfo.c:371
msgid "association changes not supported on win32"
msgstr "seose muutmine pole win32 keskkonnas toetatud"
-#: ../gio/gwin32appinfo.c:383
-#, c-format
+#: gio/gwin32appinfo.c:383
msgid "Association creation not supported on win32"
msgstr "Seose loomine pole win32 keskkonnas toetatud"
-#: ../tests/gio-ls.c:27
+#: tests/gio-ls.c:27
msgid "do not hide entries"
msgstr "kirjeid ei peideta"
-#: ../tests/gio-ls.c:29
+#: tests/gio-ls.c:29
msgid "use a long listing format"
msgstr "pika nimekirjavormingu kasutamine"
-#: ../tests/gio-ls.c:37
+#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[FAIL...]"
+
+#~ msgid "%u byte"
+#~ msgid_plural "%u bytes"
+#~ msgstr[0] "%u bait"
+#~ msgstr[1] "%u baiti"
msgstr ""
"Project-Id-Version: eu\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-11 14:16+0100\n"
"Last-Translator: Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>\n"
"Language-Team: Basque <itzulpena@euskalgnu.org>\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "'%2$s' elementuaren ustekabeko '%1$s'atributua"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "'%2$s' elementuaren '%1$s' atributua ez da aurkitu"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Ustekabeko '%s' etiketa, '%s' espero zen"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "'%2$s' barruan ustekabeko '%1$s' etiketa"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
"Ezin izan da baliozko laster-marken fitxategia aurkitu datuen direktorioan"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "'%s' URIaren laster-marka badago lehenedik ere"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Ez da '%s' URIaren laster-markarik aurkitu"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Ez dago '%s' URIaren laster-markan MIME-motarik definituta"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "'%s' URIaren laster-markan ez dago bandera pribaturik definituta"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "'%s' URIaren laster-markan ez dago talderik ezarrita"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "'%s' izeneko aplikaziorik ez du erregistratu laster-markarik '%s'(e)n"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Huts egin du '%s' exekuzioko lerroa '%s' URIarekin hedatzean"
msgid "Error opening directory '%s': %s"
msgstr "Errorea '%s' direktorioa irekitzean: %s "
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Ezin izan dira %lu byte esleitu \"%s\" fitxategia irakurtzeko"
msgid "Error reading file '%s': %s"
msgstr "Errorea '%s' fitxategia irakurtzean: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Ezin izan da '%s' fitxategitik irakurri: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Ezin izan da '%s' fitxategia ireki: %s "
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
"Ezin izan dira '%s' fitxategiko atributuak lortu, fstat() funtzioak huts "
"egin du: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr ""
"Ezin izan da '%s' fitxategia ireki, fdopen() funtzioak huts egin du: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"Ezin izan da '%s' fitxategia '%s' gisa berrizendatu, g_rename() funtzioak "
"huts egin du: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Ezin izan da '%s' fitxategia sortu: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
"Ezin izan da '%s' fitxategia idazteko ireki, fdopen() funtzioak huts egin "
"du: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr ""
"Ezin izan da '%s' fitxategia idatzi, fwrite() funtzioak huts egin du: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Ezin izan da '%s' fitxategia itxi, fclose() funtzioak huts egin du: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
"'%s' fitxategia ezin izan da kendu, g_unlik() funtzioak huts egin du: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "'%s' txantiloia baliogabea da, ez luke '%s' eduki behar"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "'%s' txantiloiak ez dauka: XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Ezin izan da '%s' esteka sinbolikorik irakurri: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Esteka sinbolikoak ez dira onartzen"
msgstr ""
"Ezin izan da '%s' fitxategi-mapa ireki, mmap() funtzioak huts egin du: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Errorea %d lerroko %d karakterean: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Errorea %d lerroan: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"'&;' entitatea hutsik dago; baliozko entitateak hauek dira: & " "
"< > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"entitate bat hasten du; & ikurrak entitatea izan behar ez badu, izenda ezazu "
"& gisa"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "'%s' karakterea ezin da erabili entitate-izenen barruan"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "'%s' entitate-izena ezezaguna da"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Entitatea ez da puntu eta komaz bukatzen; normalean & ikurra erabiltzen da "
"entitatea hasteko asmorik gabe; izendatu & karakterea & gisa;"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Ezin izan da '%-.*s' analizatu, digitu bat izan behar zuen karaktere-"
"erreferentzia baten barruan (ê adibidez); agian digitua handiegia da"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr ""
"Karaktere-erreferentzia hutsa, digitu bat eduki beharko luke; adibidez dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"erabiliko zenuen entitatea hasteko asmorik gabe. Izendatu & karakterea & "
"gisa;"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Amaitu gabeko entitate-erreferentzia"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Amaitu gabeko karaktere-erreferentzia"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "UTF-8 gisa kodetutako testu baliogabea - sekuentzia luzeegia"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "UTF-8 gisa kodetutako testu baliogabea - hasierako karaktererik gabe"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "UTF-8 gisa kodetutako testu baliogabea - '%s' ez da baliozkoa"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumentuak elementu batez hasi behar du (adibidez, <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' ez da karaktere balioduna '<' karakterearen atzetik; baliteke elementu "
"baten izena ez hastea"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"'%s' karaktere bitxia, '>' karakterea espero zen '%s' elementuaren hasiera-"
"etiketa amaitzeko"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"'%s' karaktere bitxia, '=' espero zen '$2%s' elementuaren '$1%s' "
"atributuaren ondoren"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"hasiera-etiketa bukatzeko, edo bestela atributu bat. Agian karaktere "
"baliogabea erabili duzu atributu-izen batean"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"'%s' karaktere bitxia, komatxo irekia espero zen berdin ikurraren ondoren "
"'$2%s' elementuaren '$1%s' atributuari balioa ematean"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' ez da karaktere balioduna '</'; karaktereen atzetik; baliteke '%s'e(k) "
"elementu baten izena ez hastea"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' karaktere baliogabea da '%s' itxiera-elementuaren izenaren atzetik; "
"baimendutako karakterea '>' da"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokumentua hutsik dago edo zuriuneak bakarrik ditu"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokumentua ustekabean itxi da angelu-parentesi ireki baten ondoren '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Dokumentua ustekabean amaitu da oraindik irekita zeuden elementuekin. '%s' "
"irekitako azken elementua da"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Dokumentua ustekabean amaitu da, angelu-parentesi itxia ikustea espero nuen <"
"%s/> etiketa amaitzen"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumentua ustekabean amaitu da elementu-izen baten barruan"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokumentua ustekabean amaitu da atributu-izen baten barruan"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"Dokumentua ustekabean amaitu da elementua irekitzeko etiketa baten barruan."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Dokumentua ustekabean amaitu da atributu-izen baten ondorengo berdin "
"ikurraren atzetik; ez dago atributu-baliorik"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokumentua ustekabean amaitu da atributu-balio baten barruan"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokumentua ustekabean amaitu da iruzkin baten barruan edo prozesatzen ari "
msgid "Operation was cancelled"
msgstr "Eragiketa bertan behera utzi da"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Mota ezezaguna"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s fitxategi mota"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s mota"
msgid "Unexpected early end-of-stream"
msgstr "Ustekabeko korronte-amaiera azkarregia"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Izenbagea"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Mahaigaineko fitxategiak ez du Exec eremua zehaztu"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Ezin izan da aplikazioak eskatzen duen terminala aurkitu"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
"Ezin da erabiltzailearen aplikazioaren %s konfigurazio-karpeta sortu: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Ezin da erabiltzailearen MIMEren %s konfigurazio-karpeta sortu: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Ezin da erabiltzailearen mahaigaineko %s fitxategia sortu"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "%s(r)en definizio pertsonalizatua"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "gailuak ez dauka 'egotzi' inplementatuta"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "gailuak ez dauka euskarria eskaneatzeko inplementaziorik"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Eragiketa ez dago onartuta"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Ontziaren muntaia ez da existitzen"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Ezin da direktorioaren gainean kopiatu"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Ezin da direktorioa kopiatu direktorio gainean"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Helburuko fitxategia existitzen da"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Ezin da direktorioa errekurtsiboki kopiatu"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Esteka sinbolikoaren baliogabeko balioa eman da"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Zakarrontzira botatzea ez dago onartuta"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Fitxategi-izenek ezin dute '%c' eduki"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "bolumenak ez dauka muntatzea inplementatuta"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Ez da aplikaziorik erregistratu fitxategi hau kudeatzeko"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "muntaiak ez dauka desmuntatzea inplementatuta"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "muntaiak ez dauka egoztea inplementatuta"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "muntaiak ez dauka birmuntaketa inplementatuta"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "muntaiak ez dauka desmuntatzea inplementatuta"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Irteerako korronteak ez dauka idaztea inplementatuta"
msgid "Error closing unix: %s"
msgstr "Errorea UNIX ixtean: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Fitxategi-sistemaren erroa"
msgid "Error writing to unix: %s"
msgstr "Errorea UNIXen idaztean: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "bolumenak ez dauka egoztea inplementatuta"
msgstr ""
"Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2006-09-04 18:36+0330\n"
"Last-Translator: Roozbeh Pournader <roozbeh@farsiweb.info>\n"
"Language-Team: Persian\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "مشخصهٔ غیرمنتظرهٔ «%s» برای عنصر «%s»"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "مشخصهٔ «%s» برای عنصر «%s» پیدا نشد"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "برچسب غیرمنتظرهٔ «%s»، برچسب «%s» انتظار میرفت"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "برچسب غیرمنتظرهٔ «%s» داخل «%s»"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
#, fuzzy
msgid "No valid bookmark file found in data dirs"
msgstr "پروندهٔ چوبالف معتبری در شاخههای داده پیدا نمیشود"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "چوبالفی برای نشانی «%s» از قبل موجود است"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "چوبالفی برای نشانی «%s» پیدا نشد"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "هیچ نوع MIME در چوبالف برای نشانی «%s» تعریف نشده است"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "پرچم خصوصیای برای چوبالف برای نشانی «%s» تعریف نشده است"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "گروهی در چوبالف برای نشانی «%s» تعیین نشده است"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "برنامهای با نام «%s» چوبالفی برای «%s» ثبت نکرده است"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "خواندن پیوند نمادی «%s» شکست خورد: %s"
msgid "Error opening directory '%s': %s"
msgstr "خطا در باز کردن شاخهٔ «%s»: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "نمیتوان %Ilu بایت برای خواندن پروندهٔ «%s» تخصیص داد"
msgid "Error reading file '%s': %s"
msgstr "خطا در خواندن پروندهٔ «%s»: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "خواندن از پروندهٔ «%s» شکست خورد: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "باز کردن پروندهٔ «%s» شکست خورد: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "گرفتن مشخصههای پروندهٔ «%s» شکست خورد: fstat() شکست خورد: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "باز کردن پروندهٔ «%s» شکست خورد: fdopen() شکست خورد: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "تغییر دادن نام پروندهٔ «%s» به «%s» شکست خورد: g_rename() شکست خورد: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "ایجاد پروندهٔ «%s» شکست خورد: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "باز کردن پروندهٔ «%s» برای نوشتن شکست خورد: fdopen() شکست خورد: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "نوشتن پروندهٔ «%s» شکست خورد: fdwrite() شکست خورد: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "بستن پروندهٔ «%s» شکست خورد: fclose() شکست خورد: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "نمیتوان پروندهٔ موجود «%s» را جذف کرد: g_unlink() شکست خورد: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "قالب «%s» نامعتبر است، نباید «%s» داشته باشد"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "قالب «%s» حاوی XXXXXX نیست"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "خواندن پیوند نمادی «%s» شکست خورد: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "پیوندهای نمادی پشتیبانی نمیشوند"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "تهیهٔ نقشه از پروندهٔ «%s» شکست خورد: mmap() شکست خورد: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "خطا در سطر %Id نویسهٔ %Id: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "خطا در سطر %Id: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"نهاد خالی «&;» مشاهده شد؛ نهادهای معتبر عبارتند از: & " < > "
"'"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"نویسهٔ «%s» در ابتدای نام نهادها مجاز نیست؛ نویسهٔ & نهاد را آغاز میکند؛ اگر "
"این علامت & قرار نیست نهاد شود، بهجای آن از & استفاده کنید"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "نویسهٔ «%s» داخل نام نهادها مجاز نیست"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "نام نهاد «%s» شناخته نیست"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"بخواهید نهادی را آغاز کنید از نویسهٔ & استفاده کردهاید - برای نوشتن علامت & "
"از & استفاده کنید"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"تجزیهٔ «%-.*s»، که باید رقمی داخل یک ارجاع نویسهای (مثل ê) میبود شکست "
"خورد - شاید رقم خیلی بزرگ است"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "ارجاع نویسهای «%-.*s» به نویسهٔ مجاز اشاره نمیکند"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "ارجاع نویسهای خالی؛ باید یک رقم داشته باشد، مثل dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"بخواهید نهادی را آغاز کنید از نویسهٔ & استفاده کردهاید - برای نوشتن علامت & "
"از & استفاده کنید"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "ارجاع نهادی ناتمام"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "ارجاع نویسهای ناتمام"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "متن کدگذاریشدهٔ UTF-8 نامعتبر"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "متن کدگذاریشدهٔ UTF-8 نامعتبر"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "متن کدگذاریشدهٔ UTF-8 نامعتبر"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "نوشتار باید با یک عنصر (مثلاً <book>) شروع شود"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
msgstr ""
"«%s» پس از یک نویسهٔ '<' نویسهٔ مجازی نیست؛ نمیشود ابتدای نام یک عنصر باشد"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"نویسهٔ غیرعادی «%s»، برای پایان دادن به برچسب شروع عنصر «%s» انتظار یک نویسهٔ «>» "
"میرفت"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"نویسهٔ غیرعادی «%s»، بعد از نام مشخصهٔ «%s» عنصر «%s» انتظار یک نویسهٔ «=» میرفت"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"انتظار یک نویسهٔ «>» یا «/» میرفت؛ شاید از یک نویسهٔ نامعتبر در نام مشخصهای "
"استفاده کرده باشید"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"نویسهٔ غیرعادی «%s»، هنگام مقدار دادن به مشخصهٔ «%s» از عنصر «%s» پس از علامت "
"تساوی انتظار یک علامت نقل قول باز میرفت"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"«%s» بعد از نویسههای «</» نویسهٔ معتبری نیست؛ «%s» نمیتواند ابتدای نام عناصر "
"قرار بگیرد"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, 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:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "عنصر «%s» بسته بود، در حال حاضر هیچ عنصری باز نیست"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "عنصر «%s» بسته بود، ولی عنصری که در حال حاضر باز است «%s» است"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "نوشتار خالی است یا فقط فاصلهٔ خالی دارد"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "نوشتار بهطور غیرمنتظرهای درست بعد از یک علامت کوچکتر '<' پایان یافت"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"نوشتار وقتی که هنوز عناصری باز بودند بهطور غیرمنتظرهای پایان یافت ‐ آخرین "
"عنصر باز شده «%s» بود"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"نوشتار بهطور غیرمنتظرهای پایان یافت، یک علامت بزرگتر برای بستن برچسب <%s/> "
"انتظار میرفت"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "نوشتار بهطور غیرمنتظرهای داخل نام یک عنصر بهپایان رسید"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "نوشتار بهطور غیرمنتظرهای داخل نام یک مشخصه بهپایان رسید"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "نوشتار بهطور غیرمنتظرهای داخل یک برچسب عنصربازکن پایان یافت."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"نوشتار بهطور غیرمنتظرهای بعد از علامت تساویای که پس از نام مشخصهای آمده بود "
"تمام شد؛ بدون مقدار برای مشخصه"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "نوشتار بهطور غیرمنتظرهای داخل مقدار یک مشخصه بهپایان رسید"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "نوشتار بهطور غیرمنتظرهای داخل برچسب بستن عنصر «%s» پایان یافت"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"نوشتار بهطور غیرمنتظرهای داخل یک توضیح یا دستورالعمل پردازشی پایان یافت"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "گزینهٔ نامعلوم %s"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "پیوندهای نمادی پشتیبانی نمیشوند"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "پیوندهای نمادی پشتیبانی نمیشوند"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
#, fuzzy
msgid "No application is registered as handling this file"
msgstr "برنامهای با نام «%s» چوبالفی برای «%s» ثبت نکرده است"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "خطا در سطر %Id: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "خطا در تجزیهٔ گزینهٔ %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-11 12:53+0200\n"
"Last-Translator: Timo Jyrinki <timo.jyrinki@iki.fi>\n"
"Language-Team: Finnish <gnome-fi-laatu@lists.sourceforge.net>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Odottamaton ominaisuus \"%s\" elementille \"%s\""
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Ominaisuutta \"%s\" elementille \"%s\" ei löydy"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Odottamaton merkintä \"%s\", odotettiin merkintää \"%s\""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Odottamaton merkintä \"%s\" kohdassa \"%s\""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "Kelvollista kirjanmerkkitiedostoa ei löytynyt datahakemistoista"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI:lle \"%s\" on jo olemassa kirjanmerkki"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "URI:lle \"%s\" ei löydy kirjanmerkkiä"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI:n \"%s\" kirjanmerkissä ei ole määritelty MIME-tyyppiä"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI:n \"%s\" kirjanmerkissä ei ole määritelty yksityisyyslippua"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI:n \"%s\" kirjanmerkissä ei ole asetettu ryhmiä"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
"Sovellus nimeltä \"%s\" ei rekisteröinyt kirjanmerkkiä kohteelle \"%s\""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Suoritettavaa riviä \"%s\" ei voitu laajentaa URI:lla \"%s\""
msgid "Error opening directory '%s': %s"
msgstr "Virhe hakemiston \"%s\" avaamisessa: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Ei voitu varata %lu tavua muistia tiedoston \"%s\" lukemiseksi"
msgid "Error reading file '%s': %s"
msgstr "Virhe tiedoston \"%s\" lukemisessa: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Lukeminen tiedostosta \"%s\" epäonnistui: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Tiedoston \"%s\" avaaminen epäonnistui: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
"Tiedoston \"%s\" ominaisuuksien lukeminen epäonnistui: fstat() epäonnistui: %"
"s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Tiedoston \"%s\" avaaminen epäonnistui: fdopen() epäonnistui: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"Tiedoston \"%s\" uudelleen nimeäminen nimelle \"%s\" epäonnistui: g_rename() "
"epäonnistui: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Tiedoston \"%s\" luominen epäonnistui: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
"Tiedoston \"%s\" avaaminen kirjoitettavaksi epäonnistui: fdopen() "
"epäonnistui: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Tiedoston \"%s\" kirjoittaminen epäonnistui: fwrite() epäonnistui: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Tiedoston \"%s\" sulkeminen epäonnistui: fclose() epäonnistui: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
"Olemassaolevan tiedoston \"%s\" poisto epäonnistui: g_unlink epäonnistui: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Malli \"%s\" on virheellinen, se ei saa sisältää merkkijonoa \"%s\""
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Malli \"%s\" ei sisällä merkkijonoa XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f kt"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f Mt"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f Gt"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Symbolisen linkin \"%s\" lukeminen epäonnistui: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Symbolisia linkkejä ei tueta"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Tiedoston \"%s\" mappaaminen epäonnistui: mmap() epäonnistui: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Virhe rivillä %d merkissä %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Virhe rivillä %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Havaittu tyhjä entiteetti \"&;\"; kelvolliset ovat: & " < > "
"'"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"entiteetin. Jos tämän &-merkin ei ole tarkoitus olla entiteetti, käytä "
"merkintää &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Merkki \"%s\" ei ole kelvollinen entiteetin nimessä"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entiteetin nimi \"%s\" on tuntematon"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Entiteetti ei päättynyt puolipisteeseen; todennäköisesti käytit &-merkkiä "
"aikomatta aloittaa entiteettiä - käytä merkintää &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Merkkijonon \"%-.*s\" piti olla luku merkkiviitteen sisällä (esim. ê), "
"mutta sen jäsentäminen epäonnistui - ehkä luku on liian suuri"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Merkkiviite \"%-.*s\" ei ole sallitun merkin koodaus"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Tyhjä merkkiviite; viitteen tulee sisältää luku, esim dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"Merkkiviite ei päättynyt puolipisteeseen; todennäköisesti käytit &-merkkiä "
"aikomatta aloittaa entiteettiä - käytä merkintää &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Päättämätön entiteettiviite"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Päättämätön merkkiviite"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Virheellinen UTF-8-koodattu teksti - ylipitkä sekvenssi"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Virheellinen UTF-8-koodattu teksti - ei aloitusmerkki"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Virheellinen UTF-8-koodattu teksti - epäkelpo \"%s\""
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Asiakirjan on alettava elementillä (esim. <kirja>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"\"%s\" ei ole kelvollinen merkki \"<\"-merkin jälkeen; se ei voi aloittaa "
"elementin nimeä"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Pariton merkki \"%s\", odotettiin \">\"-merkkiä päättämään elementin \"%s\" "
"alkulippu"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Pariton merkki \"%1$s\", odotettiin \"=\"-merkkiä elementin \"%3$s\" "
"ominaisuuden \"%2$s\" jälkeen"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"elementin \"%s\" aloituslippu, tai mahdollista ominaisuutta; käytit ehkä "
"ominaisuuden nimessä siihen kelpaamatonta merkkiä"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Pariton merkki \"%1$s\", odotettiin avaavaa lainausmerkkiä yhtäsuuruusmerkin "
"jälkeen annettaessa elementin \"%3$s\" ominaisuuden \"%2$s\" arvoa"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"\"%s\" ei ole kelvollinen merkki merkkien \"</\" jälkeen; \"%s\" ei voi olla "
"elementin nimen alussa"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"\"%s\" ei ole kelvollinen merkki sulkuelementin \"%s\" jälkeen; sallittu "
"merkki on \">\""
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Elementti \"%s\" on suljettu, ei avoimia elementtejä"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Asiakirja oli tyhjä tai sisälsi vain tyhjiä merkkejä"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Asiakirja loppui odottamattomasti heti avoimen kulmasulkeen \"<\" jälkeen"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Asiakirja loppui odottamattomasti elementtien ollessa sulkematta - \"%s\" "
"oli viimeinen avattu elementti"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Asiakirja loppui odottamattomasti, odotettiin lipun <%s/> sulkevaa "
"kulmasuljetta"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Asiakirja loppui odottamattomasti elementin nimen kohdalla"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Asiakirja loppui odottamattomasti ominaisuuden nimen kohdalla"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Asiakirja loppui odottamattomasti elementin avauslipun kohdalla"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Asiakirja loppui odottamattomasti ominaisuuden nimen jälkeisen "
"yhtäsuuruusmerkin jälkeen; ominaisuudella ei ole arvoa"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Asiakirja loppui odottamattomasti ominaisuuden arvon kohdalla"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Asiakirja loppui odottamattomasti elementin \"%s\" sulkulipun kohdalla"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Asiakirja loppui odottamattomasti kommentin tai käsittelykomennon kohdalla"
msgid "Operation was cancelled"
msgstr "Toiminto oli peruttu"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Tuntematon tyyppi"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s-tiedostotyyppi"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s-tyyppi"
msgid "Unexpected early end-of-stream"
msgstr "Odottamaton aikainen virran loppu"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Nimeämätön"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Työpöytätiedosto ei määrittele Exec-kenttää"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Sovelluksen vaatimaa päätettä ei löydy"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "Käyttäjän sovellusten asetuskansiota %s ei voi luoda: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Käyttäjän MIME-asetusten kansiota %s ei voi luoda: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Käyttäjän työpöytätiedostoa %s ei voi luoda"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Oma määrittely kohteelle %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "asema ei toteuta aseman avausta"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "asema ei toteut median tarkkailua"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Toiminto ei ole tuettu"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Ylläolevaa liitospistettä ei löydy"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Kansion päälle ei voi kopioida"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Kansiota ei voi kopioida kansion päälle"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Kohdetiedosto on olemassa"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Kansiota ei voi kopioida rekursiivisesti"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Saatiin virheellinen symbolisen linkin arvo"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Roskakori ei ole tuettu"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Tiedostonimi ei voi sisältää merkkiä \"%c\""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "taltio ei toteuta liittämistä"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Tiedoston käsittelyyn ei ole rekisteröity mitään sovellusta"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "mount ei toteuta irrottamista"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "mount ei toteuta aseman avaamista"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "mount ei toteuta uudestaanliittämistä"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "mount ei toteuta irrottamista"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Tulostevirta ei toteuta kirjoitusta"
msgid "Error closing unix: %s"
msgstr "Virhe suljettaessa UNIX:ia: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Tiedostojärjestelmän juuri"
msgid "Error writing to unix: %s"
msgstr "Virhe käsiteltäessä UNIX:iin: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "taltio ei toteuta aseman avausta"
msgstr ""
"Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-02-12 20:55+0100\n"
"Last-Translator: Claude Paroz <claude@2xlibre.net>\n"
"Language-Team: GNOME French Team <gnomefr@traduc.org>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Attribut « %s » inattendu pour l'élément « %s »"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "L'attribut « %s » de l'élément « %s » est introuvable"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Balise « %s » inattendue. La balise « %s » était attendue"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Balise « %s » inattendue à l'intérieur de « %s »"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
"Impossible de trouver un fichier de signets valide dans les répertoires de "
"données"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Un signet pour l'URI « %s » existe déjà"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Aucun signet trouvé pour l'URI « %s »"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Aucun type MIME défini dans le signet pour l'URI « %s »"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Aucun indicateur privé n'est défini dans le signet pour l'URI « %s »"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Aucun groupe n'est défini dans le signet pour l'URI « %s »"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Aucune application nommée « %s » n'a enregistré un signet pour « %s »"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "L'expansion de la ligne d'exécution « %s » avec l'URI « %s » a échoué"
msgid "Error opening directory '%s': %s"
msgstr "Erreur à l'ouverture du répertoire « %s » : %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Impossible d'allouer %lu octets pour lire le fichier « %s »"
msgid "Error reading file '%s': %s"
msgstr "Erreur de lecture du fichier « %s » : %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "La lecture depuis le fichier « %s » a échoué : %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "L'ouverture du fichier « %s » a échoué : %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
"L'obtention des attributs du fichier « %s » a échoué : fstat() a échoué : %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "L'ouverture du fichier « %s » a échoué : fdopen() a échoué : %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"Le renommage du fichier « %s » vers « %s » a échoué : g_rename() a échoué : %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "La création du fichier « %s » a échoué : %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
"L'ouverture du fichier « %s » en écriture a échoué : fdopen() a échoué : %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr ""
"L'ouverture du fichier « %s » en écriture a échoué : fwrite() a échoué : %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "La fermeture du fichier « %s » a échoué : fclose() a échoué : %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
"Le fichier existant « %s » ne peut pas être supprimé : g_unlink() a échoué : %"
"s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Le modèle « %s » n'est pas valide, il ne devrait pas contenir de « %s »"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Le modèle « %s » ne contient pas XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f Kio"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f Mio"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f Gio"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "La lecture du lien symbolique « %s » a échoué : %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Liens symboliques non pris en charge"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Le mappage du fichier « %s » a échoué : mmap() a échoué : %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Erreur à la ligne %d, caractère %d : "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Erreur à la ligne %d : %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Entité vide « &; » vue : les entités valides sont : & " < > "
"'"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"caractère & commence une entité ; si l'esperluette n'est pas supposée être "
"une entité, échappez-le comme &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Le nom d'entité « %s » n'est pas connu"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"utilisé une esperluette sans l'avoir marquée comme entité - échappez "
"l'esperluette comme &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"référence de caractère (ê par exemple) - peut-être que le nombre est "
"trop grand"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Référence de caractère vide ; devrait inclure un nombre comme dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"avez vraisemblablement utilisé une esperluette sans intention de commencer "
"une entité - échappez l'esperluette comme &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Référence d'entité non terminée"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Référence de caractère non terminée"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Texte codé en UTF-8 non valide - séquence trop longue"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
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:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Texte codé en UTF-8 non valide - « %s » est non valide"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
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:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"« %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:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Caractère bizarre « %s », un caractère « > » est requis pour terminer la "
"balise de début de l'élément « %s »"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"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:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"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:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"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:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"« %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:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"« %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:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Le document était vide ou ne contenait que des espaces"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
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:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"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:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Le document s'est terminé de manière inattendue, un crochet fermant pour la "
"balise <%s/> est requis"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
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:1805
+#: glib/gmarkup.c:1890
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:1810
+#: glib/gmarkup.c:1895
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:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"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:1823
+#: glib/gmarkup.c:1908
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:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
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 "
msgid "Operation was cancelled"
msgstr "L'opération a été annulée"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Type inconnu"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "Type de fichier %s"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "Type %s"
msgid "Unexpected early end-of-stream"
msgstr "Fin précoce de flux inattendue"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Sans nom"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Le fichier Bureau n'a pas indiqué de champ Exec"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Impossible de trouver le terminal requis par l'application"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
"Impossible de créer le dossier de configuration de l'application %s pour "
"l'utilisateur : %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
"Impossible de créer le dossier de configuration MIME %s pour l'utilisateur : "
"%s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Impossible de créer le fichier bureau %s pour l'utilisateur"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Définition personnalisée pour %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "le lecteur n'implémente pas l'éjection (« eject »)"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "le lecteur n'implémente pas la scrutation du média (« polling »)"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Opération non prise en charge"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Le point de montage conteneur n'existe pas"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Impossible de copier par dessus un répertoire"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Impossible de copier un répertoire par dessus un autre"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Le fichier cible existe"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Impossible de copier récursivement un répertoire"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Valeur de lien symbolique donnée non valide"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "La corbeille n'est pas prise en charge"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Les noms de fichiers ne peuvent contenir « %c »"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "le volume n'implémente pas « mount »"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Aucune application n'est enregistrée pour gérer ce fichier"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "mount n'implémente pas le démontage (« unmount »)"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "mount n'implémente pas l'éjection"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "mount n'implémente pas le remontage (« remount »)"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "mount n'implémente pas le démontage (« unmount »)"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Le flux de sortie n'implémente pas « write »"
msgid "Error closing unix: %s"
msgstr "Erreur lors de la fermeture d'unix : %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Racine du système de fichiers"
msgid "Error writing to unix: %s"
msgstr "Erreur lors de l'écriture vers unix : %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "le volume n'implémente pas l'éjection (« eject »)"
msgstr ""
"Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Plural-Forms: nplurals=5; plural=n==1 ? 0 : (n%10==1 || n%10==2) ? 1 : (n%"
"10>=3 && n%10<= 6) ? 2 : ((n%10>=7 && n%10<=9) || n==10) ? 3 : 4;\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Theip ar leathnú líne reatha '%s' le URI '%s'"
msgid "Error opening directory '%s': %s"
msgstr "Earráid agus comhadlann '%s' á oscailt: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr ""
msgid "Error reading file '%s': %s"
msgstr "Earráid agus comhad '%s' á léamh: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Theip ar léamh ó chomhad '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Theip ar oscailt comhad '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Theip ar oscailt comhad '%s': theip fdopen(): %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Theip ar athainmniú comhad '%s' go '%s': theip g_rename(): %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Theip ar chruthú comhad '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Theip ar oscailt comhad '%s' le haghaidh scríofa: theip fdopen(): %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Theip ar scríobh comhad '%s': theip fwrite(): %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Theip ar dhúnadh comhad '%s': theip fclose(): %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr ""
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr ""
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Theip ar léamh nasc siombalach '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr ""
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Theip ar mapáil comhad '%s': theip mmap(): %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Earraidh ar líne %d carachtar %d:"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Earráid ar líne %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"it as &"
msgstr ""
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr ""
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr ""
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
msgstr ""
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (ê for example) - perhaps the digit is too large"
msgstr ""
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr ""
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"as &"
msgstr ""
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr ""
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr ""
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Téacs UTF-8-ionchódaithe neamhbhailí - seicheamh rófhada"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Téacs UTF-8-ionchódaithe neamhbhailí - ní carachtar tosaithe"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Téacs UTF-8-ionchódaithe neamhbhailí - is neamhbhailí '%s'"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr ""
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr ""
-#: glib/gmarkup.c:1184
+#: glib/gmarkup.c:1266
#, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"character in an attribute name"
msgstr ""
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, 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:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
msgstr ""
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
msgstr ""
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr ""
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr ""
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr ""
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr ""
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr ""
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Cineál anaithnid"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "cineál comhaid %s"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "cineál %s"
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Gan ainm"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr ""
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr ""
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Earráid agus unix á dhúnadh: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Fréamh an chóras comhad"
msgid "Error writing to unix: %s"
msgstr "Earráid agus unix á scríobh: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: gl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-12 10:56+0100\n"
"Last-Translator: Ignacio Casal Quinteiro <icq@svn.gnome.org>\n"
"Language-Team: Galego <proxecto@trasno.net>\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Atributo '%s'inesperado para o elemento '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Non se localizou o atributo '%s' do elemento '%s'"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Etiqueta '%s' inesperada, esperábase a etiqueta '%s'"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Etiqueta '%s' inesperada dentro de '%s'"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
"Non se puido localizar un ficheiro de marcadores válido nos directorios de "
"datos"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Xa existe un marcador para o URI '%s'"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Non se encontrou ningún marcador para o URI '%s'"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Non hai ningún tipo MIME definido no marcador para o URI '%s'"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Non se definiu ningún flag privado no marcador para o URI '%s'"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Non existe ningún grupo definido no marcador para o URI '%s'"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Ningunha aplicación denominada '%s' rexistrou un marcador para '%s'"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Fallo ao expandir a liña executable '%s' co URI '%s'"
msgid "Error opening directory '%s': %s"
msgstr "Erro ao abrir o directorio '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Non se puideron asignar %lu bytes para ler o ficheiro \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Erro ao ler o ficheiro '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Fallo ao ler desde o ficheiro '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Fallo ao abrir o ficheiro '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Fallo ao obter os atributos do ficheiro '%s': fstat() fallou: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Fallo ao abrir o ficheiro '%s': fdopen() fallou: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Fallo ao renomear o ficheiro '%s' como '%s': g_rename() fallou: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Fallo ao crear o ficheiro '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Fallo ao abrir o ficheiro '%s' para escritura: fdopen() fallou: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Fallo ao escribir o ficheiro '%s': fwrite() fallou: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Fallo ao pechar o ficheiro '%s': fclose() fallou: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "O ficheiro existente '%s' non se puido eliminar: g_unlink() fallou: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "O modelo '%s' non é válido, non debería conter '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "O modelo '%s' non contén XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Fallo ao ler a ligazón simbólica '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Ligazóns simbólicas non soportadas"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Fallo ao mapear o ficheiro '%s': mmap() fallou: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Erro na liña %d carácter %d:"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Erro na liña %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Detectada unha entidade baleira '&;'; as entidades válidas son: & " "
"< > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"comeza unha entidade; se non se quere que sexa unha entidade escriba o & "
"como &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Non se coñece o nome de entidade '%s'"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"A entidade non remata cun punto e coma, probablemente usou o carácter & sen "
"a intención de comezar unha entidade, escriba o & como &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Fallo ao analizar '%-.*s', que debería ser un díxito dentro dunha referencia "
"de carácter (por exemplo ê) - pode que o díxito sexa grande de máis"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Referencia de carácter baleira; debería incluír un díxito como dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"utilizou un carácter & sen intención de comezar unha entidade - escape o & "
"como &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Referencia de entidade sen terminar"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Referencia de carácter sen terminar"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Texto codificado en UTF-8 non válido - secuencia demasiado longa"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
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:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Texto codificado en UTF-8 non válido - '%s' non válido"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "O documento debe comezar cun elemento (por exemplo <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' non é un carácter válido despois dun carácter '<'; non pode iniciar un "
"nome de elemento"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Carácter estraño '%s', esperábase un carácter '>' para pechar a etiqueta de "
"comezo do elemento '%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Carácter estraño '%s', esperábase un '=' despois do nome do atributo '%s' do "
"elemento '%s'"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"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:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Carácter estraño '%s', esperábase un carácter '\"' despois do signo igual "
"para dar un valor ao atributo '%s' do elemento '%s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' non é un carácter válido despois dos caracteres '</'; '%s' non pode "
"comezar o nome dun elemento"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' non é un carácter válido despois do nome de elemento de peche '%s'; o "
"carácter permitido é '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "O documento estaba baleiro ou só contiña espazos en branco"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "O documento terminou inesperadamente despois dun símbolo menor que '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"O documento terminou inesperadamente con elementos aínda abertos - '%s' foi "
"o último elemento aberto"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"O documento terminou inesperadamente, esperábase ver un símbolo maior que "
"'>' que pechase a etiqueta <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "O documento terminou inesperadamente dentro dun nome de elemento"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "O documento terminou inesperadamente dentro dun nome de atributo"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"O documento terminou inesperadamente dentro dunha etiqueta de comezo de "
"elemento"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"O documento terminou inesperadamente despois do signo igual que segue a un "
"nome de atributo; non hai valor de atributo"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "O documento terminou inesperadamente dentro dun valor de atributo"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"O documento terminou inesperadamente dentro dun comentario ou instrución de "
msgid "Operation was cancelled"
msgstr "A operación foi cancelada"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Tipo descoñecido"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "tipo de ficheiro %s"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "tipo %s"
msgid "Unexpected early end-of-stream"
msgstr "Final de fluxo inesperadamente prematuro"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Sen nome"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "O ficheiro de escritorio non especificou o campo Exec"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Imposible encontrar a terminal requerida pola aplicación"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "Non se pode crear o cartafol de configuración da aplicación %s: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Non se pode crear o cartafol de configuración MIME %s do usuario: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Non se pode crear o ficheiro de escritorio %s do usuario"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Definición personalizada para %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "a unidade non implementa a expulsión"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "a unidade non implementa o sondeo para medios"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Operación non soportada"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "O punto de montaxe contido non existe"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Non se pode copiar sobre o directorio"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Non se pode copiar directorio sobre directorio"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "O ficheiro destino existe"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Non se pode copiar o directorio recursivamente"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "O valor da ligazón dada non é válido"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Non se soporta o lixo"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Os nomes de ficheiro non poden conter '%c'"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "o volume non implementa montado"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Non hai ningunha aplicación rexistrada para manexar este ficheiro"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "a montaxe non implementa o desmontado"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "a montaxe non implementa a expulsión"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "a montaxe non implementa o remontado"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "a montaxe non implementa o desmontado"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "O fluxo de saída non implementa a escritura"
msgid "Error closing unix: %s"
msgstr "Erro ao pechar unix: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Sistema de ficheiros raíz"
msgid "Error writing to unix: %s"
msgstr "Erro ao escribir a unix: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "o volume non implementa a expulsión"
msgstr ""
"Project-Id-Version: glib.HEAD.gu\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-03 14:10+0530\n"
"Last-Translator: Ankit Patel <ankit@redhat.com>\n"
"Language-Team: Gujarati <fedora-trans-gu@redhat.com>\n"
"\n"
"\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "ઘટક '%s' માટે અનિચ્છનીય લક્ષણ '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "ઘટક '%s' નું લક્ષણ '%s' મળ્યું નહિં"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "અનિચ્છનીય ટેગ '%s', ટેગ '%s' ઈચ્છિત"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "અનિચ્છનીય ટેગ '%s' એ '%s' માં"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "માહિતી ડિરેક્ટરીઓ માટે કોઈ માન્ય બુકમાર્ક ફાઈલ મળી નહિં"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI '%s' માટેની બુકમાર્ક પહેલાથી જ હાજર છે"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "URI '%s' માટે કોઈ બુકમાર્ક મળી નહિં"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI '%s' માટે બુકમાર્કમાં કોઈ MIME પ્રકાર વ્યાખ્યાયિત નથી"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI '%s' માટે બુકમાર્કમાં કોઈ ખાનગી ફ્લેગ વ્યાખ્યાયિત થયેલ નથી"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI '%s' માટે બુકમાર્કમાં કોઈ જૂથો સુયોજિત નથી"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "'%s' નામવાળા કોઈ કાર્યક્રમે '%s' માટે બુકમાર્ક રજીસ્ટર કરી નથી"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "exec લીટી '%s' ને URI '%s' સાથે વિસ્તારવામાં નિષ્ફળ"
msgid "Error opening directory '%s': %s"
msgstr "'%s' ડિરેક્ટરી ખોલતા ભૂલ: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "%lu બાઈટ \"%s\" ફાઈલ વાંચવા માટે આપવામાં આવતા નથી"
msgid "Error reading file '%s': %s"
msgstr "'%s' ફાઈલ વાંચતી વખતની ભૂલ: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "'%s' ફાઈલમાંથી વાંચવામા નિષ્ફળતા: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "'%s' ફાઈલ ખોલવામાં નિષ્ફળતા : %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "'%s' ફાઈલની લાક્ષણિકતા મેળવતી વખતે નિષ્ફળતા: fstate() નિષ્ફળ: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "'%s' ફાઈલ ખોલવામાં નિષ્ફળતા: fdopen() નિષ્ફળ: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "ફાઈલ '%s' નું નામ '%s' માં બદલવામાં નિષ્ફળ: g_rename() નિષ્ફળ: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "'%s' ફાઈલ બનાવવામાં નિષ્ફળતા : %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "ફાઈલ '%s' ને લખવા માટે ખોલવામાં નિષ્ફળ: fdopen() નિષ્ફળ: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "ફાઈલ '%s' પર લખવામાં નિષ્ફળ: fwrite() નિષ્ફળ: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "ફાઈલ '%s' બંધ કરવામાં નિષ્ફળ: fclose() નિષ્ફળ: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "વર્તમાન ફાઈલ '%s' દૂર કરી શકાઈ નહિં: g_unlink() નિષ્ફળ: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr " '%s' ટેમ્પલેટ અયોગ્ય છે, તે '%s' ધરાવતું નથી"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "ટેમ્પલેટ '%s' એ XXXXXX સમાવતું નથી"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "'%s' સાંકેતિક કડી વાંચવામાં નિષ્ફળતા: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "સાંકેતિક કડી આધાર આપતી નથી"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "ફાઈલ '%s' નો નકશો કરવામાં નિષ્ફળ: mmap() નિષ્ફળ: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "%d લીટી પર %d અક્ષરમાં ભૂલ: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "%d લીટી પર ભૂલ: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr "'&;' વસ્તુ ખાલી દેખાય છે: યોગ્ય વસ્તુઓ છે:& " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"વસ્તુ નામ શરુ થાય ત્યાં %s' અક્ષર યોગ્ય નથી: & અક્ષર વસ્તુની શરુઆત કરે છે; જો તે એમપરસંડ "
"વસ્તુ ને આધાર ન આપે તો તે & તરીકે દર્શાવો"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr " વસ્તુ નામની અંદર '%s' અક્ષર યોગ્ય નથી"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "'%s' વસ્તુ નામ જાણીતુ નથી"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"વસ્તુ નો સેમીકોલન સાથે અંત થતો નથી; ઘણી વખતે એમપરસંડ(&) અક્ષર ચિન્હ વગર તમે વસ્તુ વાપરી "
"શકો છો- એમપરસંડ & તરીકે લો"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"'%-.*s' નું પદચ્છેદન કરવામાં નિષ્ફળ, કે જે અક્ષર સંદર્ભમાં અંક હોવો જોઈએ (ê ઉદાહરણ "
"તરીકે) - કદાચ અંક ખૂબ લાંબો હોય"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "અક્ષર સંદર્ભ '%-.*s' પરવાનગી આપેલ અક્ષરને એનકોડ કરતો નથી"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "ખાલી અક્ષર સંદર્ભ; સંખ્યા જેવી કે dž ને સમાવતી હોવી જોઇએ "
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"અક્ષર સંદર્ભ અર્ધવિરામ થી અંત થતો નથી; તમે વસ્તુ શરુ કરવા એમપરસંડ અક્ષર ને વાપરો એમપરસંડ "
"ને & તરીકે લો"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "અપુર્ણ વસ્તુ સંદર્ભ "
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "અપુર્ણ અક્ષર સંદર્ભ "
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "અયોગ્ય UTF-8 સંગ્રહપદ્ધતિવાળું લખાણ - overlong ક્રમ"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "અયોગ્ય UTF-8 સંગ્રપદ્ધતિવાળું લખાણ - સ્ટાર અક્ષર નથી"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "અયોગ્ય UTF-8 સંગ્રહપદ્ધતિવાળું લખાણ - માન્ય '%s' નથી"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "દસ્તાવેજ કોઈ વસ્તુ સાથે શરુ થાય તે જરુરી છે(ઉદાહરણ <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "'%s' એ '<' અક્ષર પછી આવતો યોગ્ય અક્ષર નથી; તે કોઈ વસ્તુના નામથી શરુ થતુ નથી"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr "અસંગત અક્ષર '%s', વસ્તુ '%s' ની શરુઆત ટેગ ને સમાપ્ત કરવા '>' અક્ષર ની આશા છે"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "અસંગત અક્ષર '%s', '%s' વસ્તુના '%s' લાક્ષણિકતા નામ પછી '=' જરુરી છે"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"અસંગત અક્ષર '%s': '%s' વસ્તુના અંતમાં '>' અથવા '/' અથવા પરીમાણનો વિકલ્પ જરુરી છે; તમે "
"કદાય અયોગ્ય અક્ષર લાક્ષણિકતાના નામો વાપર્યો છે"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"અસંગત અક્ષર '%s, '%s' વસ્તુ માટે '%s' લાક્ષણિકતાના મુલ્ય આપતી વખતે બરાબરની નિશાની "
"પછી શરુ થતો અવતરણ ચિહ્ન જરુરી છે"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, 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:1583
+#: glib/gmarkup.c:1665
#, 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:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "'%s' વસ્તુ બંધ હતી, અત્યારે એક પણ વસ્તુ ખુલ્લી નથી"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "'%s' વસ્તુ બંધ હતી, પણ અત્યારે '%s'એ ખુલ્લી વસ્તુ છે"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "દસ્તાવેજ ખાલી છે અથવા ફક્ત ખાલી જ્ગ્યા ધરાવે છે"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "'<' ચિન્હ વાપરતા પછી દસ્તાવેજનો અણધારી રીતે અંત આવે છે"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr "વસ્તુ ખુલ્લી હોવા છતાં દસ્તાવેજનો અણધારી રીતે અંત આવે છે- છેલ્લે ખોલેલ વસ્તુ '%s' છે"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"દસ્તાવેજનો અણધારી રીતે અંત થાય છે, તે અંતિમ ટેગ <%s/> માં કૌંસને બંધ કરતુ ખૂણાનુ ચિન્હ "
"જોવા માગે છે"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "વસ્તુ નામની અંદર દસ્તાવેજનો અણધારી રીતે અંત થાય છે"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "લાક્ષણિકતાના નામની અંદર દસ્તાવેજનો અણધારી રીતે અંત થાય છે"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "વસ્તુની શરુઆતની ટેગમા દસ્તાવેજનો અણધારી રીતે અંત થાય છે"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"લાક્ષણિકતા નામ પછીની બરાબરની નિશાની પછી દસ્તાવેજ નો અણધારી રીતે અંત થાય છે. "
"લાક્ષણિકતાના મુલ્ય નથી"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "લાક્ષણિકતા મુલ્ય અંદર હોવા છતાં દસ્તાવેજ નો અણધારી રીતે અંત થાય છે"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "'%s' વસ્તુના બંદ ટેગની અંદર દસ્તાવેજનો અણધારી રીતે અંત થાય છે"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "ટિપ્પણી અથવા પ્રક્રિયા સુચનાની અંદર અણધારી રીતે દસ્તાવેજનો અંત થાય છે"
msgid "Operation was cancelled"
msgstr "પ્રક્રિયા રદ થઈ ગઈ હતી"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "અજ્ઞાત પ્રકાર"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s ફાઈલપ્રકાર"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s પ્રકાર"
msgid "Unexpected early end-of-stream"
msgstr "સ્ટ્રીમનો-અંત અનિચ્છનીય રીતે જલદી"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "શીર્ષકવીહિન"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "ડેસ્કટોપ ફાઈલે Exec ક્ષેત્ર સ્પષ્ટ કરેલ નથી"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "કાર્યક્રમ માટે જરૂરી ટર્મિનલ શોધવામાં અસમર્થ"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "વપરાશકર્તા કાર્યક્રમ રૂપરેખાંકન ફોલ્ડર %s બનાવી શક્યા નહિં: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "વપરાશકર્તા MIME રૂપરેખાંકન ફોલ્ડર %s બનાવી શક્યા નહિં: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "વપરાશકર્તા ડેસ્કટોપ ફાઈલ %s બનાવી શકતા નથી"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "%s માટે વૈવિધ્યપૂર્ણ વ્યાખ્યા"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "ડ્રાઈવર બહાર કાઢો અમલમાં મૂકતું નથી"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "ડ્રાઈવ મીડિયા માટે પોલીંગને અમલમાં મૂકતું નથી"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "પ્રક્રિયા આધારભૂત નથી"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "સમાવનાર માઉન્ટ અસ્તિત્વમાં નથી"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "ડિરેક્ટરી ઉપર નકલ કરી શકતા નથી"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "ડિરેક્ટરીને ડિરેક્ટરી ઉપર નકલ કરી શકતા નથી"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "લક્ષ્ય ફાઈલ અસ્તિત્વમાં નથી"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "પુનરાવર્તિત રીતે ડિરેક્ટરીની નકલ કરી શકતા નથી"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "અયોગ્ય સાંકેતિક કડી કિંમત અપાયેલ છે"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "કચરાપેટી આધારભૂત નથી"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "ફાઈલ નામો '%c' સમાવી શકતા નથી"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "વોલ્યુમ માઉન્ટ અમલમાં મૂકતું નથી"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "આ ફાઈલ સંભાળવા માટે કોઈ કાર્યક્રમ રજીસ્ટર થયેલ નથી"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "માઉન્ટ એ અનમાઉન્ટને અમલમાં મૂકતું નથી"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "માઉન્ટ એ બહાર કાઢોને અમલમાં મૂકતું નથી"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "માઉન્ટ એ પુનઃમાઉન્ટને અમલમાં મૂકતું નથી"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "માઉન્ટ એ અનમાઉન્ટને અમલમાં મૂકતું નથી"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "આઉટપુટ સ્ટ્રીમ લેખનને અમલમાં મૂકતું નથી"
msgid "Error closing unix: %s"
msgstr "unix બંધ કરતી વખતે ભૂલ: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "ફાઈલસિસ્ટમ રુટ"
msgid "Error writing to unix: %s"
msgstr "unix માં લખતી વખતે ભૂલ: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "વોલ્યુમ બહાર કાઢોને અમલમાં મૂકતું નથી"
msgstr ""
"Project-Id-Version: glib.HEAD.he\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Unexpected attribute '%s' for element '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Attribute '%s' of element '%s' not found"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Unexpected tag '%s', tag '%s' expected"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Unexpected tag '%s' inside '%s'"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "No valid bookmark file found in data dirs"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "A bookmark for URI '%s' already exists"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "No bookmark found for URI '%s'"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "No MIME type defined in the bookmark for URI '%s'"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "No private flag has been defined in bookmark for URI '%s'"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "No groups set in bookmark for URI '%s'"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "No application with name '%s' registered a bookmark for '%s'"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Failed to expand exec line '%s' with URI '%s'"
msgid "Error opening directory '%s': %s"
msgstr "Error opening directory '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Could not allocate %lu bytes to read file \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Error reading file '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Failed to read from file '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Failed to open file '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Failed to get attributes of file '%s': fstat() failed: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Failed to open file '%s': fdopen() failed: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Failed to rename file '%s' to '%s': g_rename() failed: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Failed to create file '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Failed to open file '%s' for writing: fdopen() failed: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Failed to write file '%s': fwrite() failed: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Failed to close file '%s': fclose() failed: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Existing file '%s' could not be removed: g_unlink() failed: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Template '%s' invalid, should not contain a '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Template '%s' doesn't contain XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Failed to read the symbolic link '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Symbolic links not supported"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Failed to map file '%s': mmap() failed: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Error on line %d char %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Error on line %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Empty entity '&;' seen; valid entities are: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, 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 &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entity name '%s' is not known"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (ê for example) - perhaps the digit is too large"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Empty character reference; should include a digit such as dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"ampersand character without intending to start an entity - escape ampersand "
"as &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Unfinished entity reference"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Unfinished character reference"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Invalid UTF-8 encoded text - overlong sequence"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Invalid UTF-8 encoded text - not a start char"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Invalid UTF-8 encoded text - not valid '%s'"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Document must begin with an element (e.g. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Odd character '%s', expected a '>' character to end the start tag of element "
"'%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, 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:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"element '%s', or optionally an attribute; perhaps you used an invalid "
"character in an attribute name"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Odd character '%s', expected an open quote mark after the equals sign when "
"giving value for attribute '%s' of element '%s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Document was empty or contained only whitespace"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Document ended unexpectedly just after an open angle bracket '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Document ended unexpectedly inside an element name"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Document ended unexpectedly inside an attribute name"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Document ended unexpectedly inside an element-opening tag."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Document ended unexpectedly while inside an attribute value"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Document ended unexpectedly inside a comment or processing instruction"
msgid "Operation was cancelled"
msgstr "Operation was cancelled"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Unknown type"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s filetype"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s type"
msgid "Unexpected early end-of-stream"
msgstr "Unexpected early end-of-stream"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Unnamed"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Desktop file didn't specify Exec field"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Unable to find terminal required for application"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "Can't create user application configuration folder %s: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Can't create user MIME configuration folder %s: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Can't create user desktop file %s"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Custom definition for %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "drive doesn't implement eject"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "drive doesn't implement polling for media"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Operation not supported"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Containing mount does not exist"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Can't copy over directory"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Can't copy directory over directory"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Target file exists"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Can't recursively copy directory"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Invalid symlink value given"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Trash not supported"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "File names cannot contain '%c'"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "volume doesn't implement mount"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "No application is registered as handling this file"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "mount doesn't implement unmount"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "mount doesn't implement eject"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "mount doesn't implement remount"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "mount doesn't implement unmount"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Output stream doesn't implement write"
msgid "Error closing unix: %s"
msgstr "Error closing unix: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Filesystem root"
msgid "Error writing to unix: %s"
msgstr "Error writing to unix: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "volume doesn't implement eject"
msgstr ""
"Project-Id-Version: glib.HEAD.hi\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2006-06-20 14:14+0530\n"
"Last-Translator: Rajesh Ranjan <rranjan@redhat.com>\n"
"Language-Team: Hindi <fedora-trans-hi@redhat.com>\n"
"\n"
"\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "'%s' अप्रत्याशित गुण '%s' तत्व के लिये"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "'%s' तत्व '%s' का गुण नहीं मिला"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "'%s' अप्रत्याशित टैग, '%s' टैग प्रत्याशित"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "अप्रत्याशित टैग '%s' '%s' के अंदर"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
#, fuzzy
msgid "No valid bookmark file found in data dirs"
msgstr "कोई वैध पुस्तकचिह्न आंकड़ा निर्देशिका में नहीं मिला"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI '%s' के लिये पुस्तकचिह्न पहले से मौजूद है"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "URI '%s' के लिये कोई पुस्तकचिह्न नहीं मिला"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "कोई MIME प्रकार URI '%s' के लिये पुस्तकचिह्न में परिभाषित नहीं है"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI '%s' के लिये पुस्तकचिह्न में कोई निजी फ्लैग परिभाषित नहीं है"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI '%s' के लिये पुस्तकचिह्न में कोई समूह सेट नहीं है"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "'%s' के नाम से कोई अनुप्रयोग ने '%s' के लिये पुस्तकचिह्न पंजीकृत नहीं है"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "सिंबालिक लिंक '%s' से थीम पढ़ने में असफल %s"
msgid "Error opening directory '%s': %s"
msgstr "डिरेक्ट्री '%s' को खोलने में त्रुटि: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr " %lu बाइट आवंटित नहीं किया जा सकता फ़ाइल \"%s\" को पढ़ने हेतु"
msgid "Error reading file '%s': %s"
msgstr "'%s' फ़ाइल को पढ़ने में त्रुटि: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "फ़ाइल '%s' से पढ़ने में असफल: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "'%s' फाइल खोलने में असफल :%s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "फ़ाइल '%s' की विशेषता ज्ञात करने में असफल: fstat() असफल: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "फ़ाइल '%s': fdopen() खोलने में असफल: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "फाइल '%s' को '%s' में नाम बदलने में विफल: g_rename() विफल: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "फ़ाइल '%s' बनाने में असफल: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "फाइल '%s' को लिखने के लिये खोलने में विफल: fdopen() विफल: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "'%s' फाइल को लिखने में विफल: fwrite() विफल: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "'%s' फाइल बंद करने में विफल: fclose() विफल: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "'%s' मौजूदा फाइल हटाया नहीं जा सकता: g_unlink() विफल: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "टैम्पलेट '%s' अवैध है, इसमें '%s' शामिल नहीं है"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "टैम्पलेट '%s' में XXXXXX समाहित नहीं है"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "सिंबालिक लिंक '%s' से थीम पढ़ने में असफल %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "सिंबालिक लिंक समर्थित नहीं है"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' फाइल चित्रित करने में विफल: mmap() विफल: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "पंक्ति %d अक्षर %d पर त्रुटि: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "पंक्ति %d: पर त्रुटि %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr "खाली एंटिटी '&;' देखा; वैध एंटिटी हैं: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"एक एंटिटी के प्रारंभ में अक्षर '%s' वैध नहीं है, तथा & अक्षर एक एंटिटी को प्रारंभ करता है; "
"यदि यह एम्परसेंड एक एंटिटी नहीं है, तो इसे ऐसे एस्केप करें &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr " अक्षर '%s' एक एंटिटी नाम के भीतर वैध नहीं है"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "एंटिटी नाम '%s' ज्ञात नहीं है"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"एंटिटी अर्धविराम पर समाप्त नहीं होता, बहुत संभव है कि आपने एम्परसेन्ड अक्षर का प्रयोग "
"किया है और एक एंटिटी प्रारंभ नहीं करना चाहते- एम्परसेंड को ऐसे एस्केप करें: &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"'%-.*s' के विश्लेषण करने में असफल, जो कि अक्षर संदर्भ के भीतर एक अंक होना चाहिए (उदाहरण "
"के लिए, ê) - शायद अंक काफी बड़ा है"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "संप्रतीक संदर्भ '%-.*s' एक अनुमति प्राप्त संप्रतीक को एनकोड नहीं करता"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "रिक्त अक्षर संदर्भ, अंक जैसे dž सम्मिलित अवश्य होने चाहिएँ;"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"अक्षर का उपयोग किया है पर एक एंटिटी को प्रारंभ करना नहीं चाहते - एम्परसेंड को एस्केप करें "
"ऐसे &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "अपूर्ण एंटिटी संदर्भ"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "अपूर्ण अक्षर संदर्भ"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "अवैध यूटीएफ़-8 एनकोडेड पाठ"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "अवैध यूटीएफ़-8 एनकोडेड पाठ"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "अवैध यूटीएफ़-8 एनकोडेड पाठ"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "दस्तावेज़ एक अवयव के नाम से प्रारंभ होना चाहिए (उदाहरण के लिए- <पुस्तक>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "< के पश्चात आया '%s' एक वैध वर्ण नहीं है; यह अवयव नाम से प्रारंभ नहीं होता"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"विषम अक्षर '%s', एलिमेंट '%s' के प्रारंभ टैक को समाप्त करने हेतु प्रत्याशित था '>' अक्षर"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "विषम अक्षर '%s', प्रत्याशित है एक '=' लक्षण नाम '%s' अवयव '%s' के पश्चात्"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"'%s' विसम संप्रतीक, एक '>' या '/' संप्रतीक को '%s' तत्व के आरंभ टैग को खत्म करना "
"प्रत्याशित, या विकल्पतः एक गुण; शायद आपने गुण नाम में एक अमान्य संप्रतीक का प्रयोग किया है"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"पुराना अक्षर '%s', जब विशेषता '%s', अवयव '%s' का मान दिया जाता है तो बराबर चिह्न "
"के बाद एक खुला कोट चिह्न वांछित है"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
msgstr ""
"'%s' एक वैध अक्षर नहीं है अक्षर '</' के बाद; '%s' एक अवयव नाम से प्रारंभ नहीं होता"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, 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:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "अवयव '%s' बन्द था, कोई अवयव वर्तमान में खुला नहीं है"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "दस्तावेज '%s' बन्द था, परन्तु वर्तमान खुला अवयव है '%s'"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "दस्तावेज़ खाली था या उसमें सिर्फ श्वेत रिक्ति ही था"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से एक खुला एंगल ब्रेकेट '<' के पश्चात ही हो गया"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"दस्तावेज़ का अंत अप्रत्याशित रूप से अवयवों के खुला होने पर भी हो गया - '%s' अंतिम खुला हुआ "
"अवयव था"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"दस्तावेज़ का अंत अप्रत्याशित रूप से हो गया, वांछित था देखना एक क्लोज़ एंगल ब्रेकेट टैग को बन्द "
"करता हुआ <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से अवयव नाम के भीतर हो गया"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से विशेषता नाम के भीतर हो गया"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से अवयव-खोलने के टैग के भीतर हो गया."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"दस्तावेज़ का अंत अप्रत्याशित रूप से बराबर के चिह्न के बाद एक विशेषता नाम के पश्चात् हो गया; "
"कोई विशेषता मूल्य नहीं"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से विशेषता मान के भीतर हो गया"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से अवयव '%s' हेतु बन्द टैग के भीतर हो गया"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से टिप्पणी या प्रक्रिया निर्देश के भीतर हो गया"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "अनजान विकल्प %s"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "सिंबालिक लिंक समर्थित नहीं है"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "सिंबालिक लिंक समर्थित नहीं है"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
#, fuzzy
msgid "No application is registered as handling this file"
msgstr "'%s' के नाम से कोई अनुप्रयोग ने '%s' के लिये पुस्तकचिह्न पंजीकृत नहीं है"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "पंक्ति %d: पर त्रुटि %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "%s विकल्प विश्लेषण में त्रुटि"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib 0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2004-03-13 13:03+CET\n"
"Last-Translator: auto\n"
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: TransDict server\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, fuzzy, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
"Neparan znak '%s', očekuje se '=' poslije imena atributa '%s' elementa '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Nisam uspio pročitati simboličku vezu '%s': %s"
msgid "Error opening directory '%s': %s"
msgstr "Greška pri otvaranju mape '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Ne mogu alocirati %lu bajtova za čitanje datoteke \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Greška pri čitanju datoteke '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Greška pri čitanju iz datoteke '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Greška pri otvaranju datoteke '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Greška pri dohvatu atributa datoteke '%s': fstat() nije uspio: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Greška pri otvaranju datoteke '%s': fdopen() nije uspio: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, fuzzy, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Greška pri otvaranju datoteke '%s': fdopen() nije uspio: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Greška pri stvaranju datoteke '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, fuzzy, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Greška pri otvaranju datoteke '%s': fdopen() nije uspio: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, fuzzy, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Greška pri otvaranju datoteke '%s': fdopen() nije uspio: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, fuzzy, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Greška pri otvaranju datoteke '%s': fdopen() nije uspio: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Predložak '%s' nije ispravan, ne smije sadržavati'%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Predložak '%s' ne završava sa XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Nisam uspio pročitati simboličku vezu '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Nisu podržane simboličke veze"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Greška pri otvaranju datoteke '%s': fdopen() nije uspio: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Greška na retku %d znak %d: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Greška na retku %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Prazan entitet '&;' ; ispravni entiteti su: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"Znak '%s' nije dozvoljen na početku imena entiteta; znak & počinje entitet; "
"ako ovaj & nije entitet onda ga označite sa &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Znak '%s' nije dozvoljen unutar imena entiteta"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Ime entiteta '%s' nije poznato"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Entitet nije zavšio sa točka-zarezom; vjerojatno ste koristili ampersand "
"znak bez namjere da započnete entitet - escapirajte ampersand sa &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, fuzzy, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Nisam uspio parsirati '%s', koji bi trebao biti broj unutar "
"znakovnereference (npr. ê) - možda je broj prevelik"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, fuzzy, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Znakovna referenca '%s' se ne kodira kao dozvoljeni znak"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Prazna znakovna referenca; treba uključivati broj kao dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"ampersand znakbez namjere da počnete entitet - escapirajte ampersand kao "
"&"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Nezavršena referenca entiteta"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Nezavršena znakovna referenca"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Neispravno šifrirani UTF-8 tekst"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Neispravno šifrirani UTF-8 tekst"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Neispravno šifrirani UTF-8 tekst"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokument mora početi sa elementom(npr. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' nije dozvoljeni znak koji smije slijediti nakon '<' znaka; ne smije "
"započeti ime elementa"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Neparan znak '%s', očekuje se da '>' znak završi početni tag elementa'%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, 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:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"'%s', ili opcionalno atributa; možda ste koristili neispravan znaku imenu "
"atributa"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Čudan znak '%s', očekuje se otvoreni navodnik nakon znaka jednakostikada se "
"daje vrijednost atributa '%s' elementa '%s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
msgstr ""
"'%s' nije znak koji smije slijediti '</'; '%s' ne smije započetiime elementa"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' nije ispravan znak koji može slijediti nakon imena završnog elementa '%"
"s'; dozvoljeni znak je '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element '%s' je zatvoren, trenutno nema otvorenog elementa"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokument je bio prazan ili je sadržavao samo znakove prazne znakove"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokument je završio neočekivano nakon otvaranja zagrade '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Dokument je završio neočekivano sa još uvijek otvorenim elementima- '%s' je "
"bio zadnjiotvoreni element"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Dokument je završio neočekivano, očekivalo se da zatvorena šiljata "
"zagradazavrši tag<%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokument je završio neočekivano unutar imena elementa"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokument je završio neočekivano unutar imena atributa"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
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:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Dokument je završio neočekivano nakon što je znak jednakosti slijedioime "
"atributa; nema vrijednosti atributa"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokument je završio neočekivano unutar vrijednosti atributa"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokument je završio neočekivano unutar komentara ili izvršavanja instrukcije"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr ""
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "Nisu podržane simboličke veze"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Nisu podržane simboličke veze"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Greška na retku %d: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Greška prilikom konverzije: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-16 02:05+0100\n"
"Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome@fsf.hu>\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Váratlan attribútum („%s”) a(z) „%s” elemhez"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "A(z) „$2%s” elem „$1%s” attribútuma nem található"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Váratlan címke: „%s” a várt „%s” helyett"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Váratlan címke: „%s” a következőn belül: „%s”"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "Az adatkönyvtárakban nem található érvényes könyvjelzőfájl"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Már létezik könyvjelző a következő URI címhez: „%s”"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Nem található könyvjelző a következő URI címhez: „%s”"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Nincs MIME típus meghatározva a következő URI könyvjelzőjéhez: „%s”"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Nincs magán jelző meghatározva a következő URI könyvjelzőjéhez: „%s”"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Nincsenek csoportok beállítva a következő URI könyvjelzőjéhez: „%s”"
# FIXME: hol jön ez elő?
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
"Nincs „%s” nevű alkalmazás regisztrálva a következő könyvjelzőjéhez: „%s”"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr ""
msgid "Error opening directory '%s': %s"
msgstr "Hiba a(z) „%s” könyvtár megnyitásakor: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Nem sikerült %lu bájtot lefoglalni a(z) „%s” fájl olvasásához"
msgid "Error reading file '%s': %s"
msgstr "Hiba a(z) „%s” fájl olvasása közben: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Nem sikerült olvasni a(z) „%s” fájlból: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Nem sikerült megnyitni a(z) „%s” fájlt: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
"Nem sikerült lekérni a(z) „%s” fájl attribútumait. Az fstat() sikertelen: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Nem sikerült megnyitni a(z) „%s” fájlt. Az fdopen() sikertelen: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"Nem sikerült átnevezni a(z) „%s” fájlt erre: „%s”. A g_rename() sikertelen: %"
"s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Nem sikerült létrehozni a(z) „%s” fájlt: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
"Nem sikerült írásra megnyitni a(z) „%s” fájlt: Az fdopen() sikertelen: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Nem sikerült írni a(z) „%s” fájlt: az fwrite() sikertelen: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Nem sikerült lezárni a(z) „%s” fájlt: az fclose() sikertelen: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "A létező „%s” fájl nem távolítható el: a g_unlink() sikertelen: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "A(z) „%s” sablon érvénytelen, „%s” nem lehet benne"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "A(z) „%s” sablon nem tartalmaz XXXXXX karaktersorozatot"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Nem sikerült kiolvasni a(z) „%s” szimbolikus linket: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "A szimbolikus linkek használata nem támogatott"
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:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Hiba a(z) %d. sor %d. karakterénél: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Hiba a(z) %d. sorban: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Üres „&;” entitás; az érvényes entitások: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"nevét az & karakter kezdi. Ha ez az & karakter nem lehet entitás, akkor "
"& módon kell írni."
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "A(z) „%s” entitásnév ismeretlen"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"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 & formában."
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Nem sikerült feldolgozni ezt: „%-.*s”. Valószínűleg számjegy lett volna egy "
"karakterhivatkozáson (mint az ê) belül - lehet, hogy túl nagy a számjegy"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr ""
"Üres karakterhivatkozás; számjegyet is kell tartalmaznia, például így: dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"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 & formában."
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Befejezetlen entitáshivatkozás"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Befejezetlen karakterhivatkozás"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
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:1006
+#: glib/gmarkup.c:1084
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:1042
+#: glib/gmarkup.c:1120
#, 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”"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "A dokumentumnak egy elemmel kell kezdődnie (pl. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
msgstr ""
"„%s” nem érvényes karakter a „<” karakter után; elem neve nem kezdődhet vele"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Furcsa karakter („%s”) - „>” karakternek kellett volna jönnie, hogy lezárja a"
"(z) „%s” elem kezdő címkéjét"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Furcsa karakter („%s”) - „=” karakternek kellett volna jönnie a(z) „%s” elem "
"„%s” attribútumneve után"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"„%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:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"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:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"„%s” nem érvényes karakter a „</” karakterek után; „%s” karakterrel nem "
"kezdődhet egy elem neve"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"„%s” nem érvényes karakter a „%s” lezáró elemnév után; az engedélyezett "
"karakter egyedül a „>”."
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "A dokumentum üres volt, vagy csak üreshely karaktereket tartalmazott"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
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:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"A dokumentum váratlanul véget ért, pedig még nyitva vannak elemek - „%s” az "
"utoljára megnyitott elem"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"A dokumentum váratlanul véget ért; a(z) <%s/> elemet lezáró hegyes "
"zárójelnek kellett volna következnie"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "A dokumentum váratlanul véget ért egy elemnéven belül"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
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:1810
+#: glib/gmarkup.c:1895
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:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"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:1823
+#: glib/gmarkup.c:1908
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:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"A dokumentum váratlanul véget ért egy megjegyzésen vagy feldolgozási "
msgid "Operation was cancelled"
msgstr "A művelet megszakítva"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Ismeretlen típus"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s fájltípus"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s típus"
msgid "Unexpected early end-of-stream"
msgstr "Váratlan korai adatfolyam vége"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Névtelen"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "A desktop fájl nem adta meg az Exec mezőt"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Nem található az alkalmazáshoz szükséges terminál"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
"Nem hozható létre a(z) %s felhasználói alkalmazáskonfigurációs mappa: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Nem hozható létre a(z) %s felhasználói MIME konfigurációs mappa: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Nem hozható létre a felhasználói desktop fájl (%s)"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "%s egyéni meghatározása"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "a meghajtó nem valósítja meg a kiadást"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "a meghajtó nem valósítja meg a média lekérdezését"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "A művelet nem támogatott"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "A tartalmazó csatolás nem létezik"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Nem lehet a könyvtárra másolni"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "A könyvtár nem másolható könyvtárba"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "A célfájl létezik"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "A könyvtár nem másolható rekurzívan"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Érvénytelen szimbolikus link érték került megadásra"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "A Kuka nem támogatott"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "A fájlnevek nem tartalmazhatnak „%c” karaktert"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "a kötet nem valósítja meg a csatolást"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Nincs alkalmazás regisztrálva a fájl kezeléséhez"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "A csatolás nem valósítja meg a leválasztást"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "A csatolás nem valósítja meg a kiadást"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "A csatolás nem valósítja meg az újracsatolást"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "A csatolás nem valósítja meg a leválasztást"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "A kimeneti adatfolyam nem valósítja meg az írást"
msgid "Error closing unix: %s"
msgstr "Hiba a unix lezárásakor: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Fájlrendszer gyökere"
msgid "Error writing to unix: %s"
msgstr "Hiba a unix írásakor: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "a kötet nem valósítja meg a kiadást"
msgstr ""
"Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 16bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Չի հաջողվել կարդալ '%s' սիմվոլիկ հղումը՝ %s"
msgid "Error opening directory '%s': %s"
msgstr "'%s' պանակը բացելու սխալ՝ %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Չի հաջովում հատկացնել %lu բայթ \"%s\" ֆայլը կարդալու համար"
msgid "Error reading file '%s': %s"
msgstr "'%s' ֆայլը կարդալու սխալ՝ %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Չի հաջողվում կարդալ '%s' ֆայլից՝ %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Չի հաջողվել բացել '%s' ֆայլը՝ %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Չի հաջողվել բացել '%s' ֆայլը՝ fdopen() խափանվեց՝ %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Չի հաջողվել վերանվանել '%s' ֆայլը որպես '%s'՝ g_rename() խափանվեց՝ %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Չի հաջողվել ստեղծել ֆայլ '%s'՝ %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Չի հաջողվել բացել '%s' ֆայլը գրելու համար՝ fdopen() խափանվել է՝ %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Չի հաողվել գրել '%s' ֆայլ՝ fwrite() խափանվեց՝ %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Չի հաջովել փակել '%s' ֆայլը՝ fclose() խափանվեց՝ %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "'%s' ֆայլը չի կարող վերացվել՝ g_unlink() խափանվեց՝ %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr ""
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr ""
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Չի հաջողվել կարդալ '%s' սիմվոլիկ հղումը՝ %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Սիմվոլիկ հղումները չեն ապահովվում"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr ""
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Սխալ %d տողի %d տառում՝ %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Սխալ %d տողում՝ %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"it as &"
msgstr ""
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr ""
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr ""
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
msgstr ""
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (ê for example) - perhaps the digit is too large"
msgstr ""
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr ""
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"as &"
msgstr ""
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr ""
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr ""
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Սխալ UTF-8 կոդավորված տեքստ"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Սխալ UTF-8 կոդավորված տեքստ"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Սխալ UTF-8 կոդավորված տեքստ"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Փաստաթուղթը պետք է սկսվի որևէ էլէմենտով (օրինակ <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr ""
-#: glib/gmarkup.c:1184
+#: glib/gmarkup.c:1266
#, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"character in an attribute name"
msgstr ""
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, 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:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
msgstr ""
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
msgstr ""
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr ""
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr ""
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr ""
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr ""
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr ""
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr ""
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "Սիմվոլիկ հղումները չեն ապահովվում"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Սիմվոլիկ հղումները չեն ապահովվում"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Սխալ %d տողում՝ %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "'%s' ֆայլը կարդալու սխալ՝ %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, fuzzy, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
"Ada karakter aneh '%s'. Seharusnya ada karakter '=' setelah nama atribut '%"
"s' pada elemen '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
#, fuzzy
msgid "No valid bookmark file found in data dirs"
msgstr "File kunci yang benar tidak ditemukan pada direktori data"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Gagal saat membaca link simbolik '%s': %s"
msgid "Error opening directory '%s': %s"
msgstr "Error saat membuka direktori '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Tidak dapat mengalokasikan %lu byte untuk membaca file '%s'"
msgid "Error reading file '%s': %s"
msgstr "Error saat membaca file '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Gagal saat membaca file '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Gagal saat membuka file '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
"Gagal saat mengambil atribut file '%s': Fungsi fstat() mengalami kegagalan: %"
"s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Gagal saat membuka file '%s': fungsi fdopen() mengalami kegagalan: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Gagal untuk mengubah nama file '%s' menjadi '%s': g_rename() gagal: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Gagal saat membuat file '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Gagal untuk membuka file '%s' untuk menulis: fdopen() gagal: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Gagal untuk menulis file '%s': fwrite() gagal: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Gagal untuk menutup file '%s': fclose() gagal: '%s'"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "File '%s' tidak dapat dibuang: g_unlink() gagal: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Template '%s' salah, seharusnya tidak boleh berisi '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Template '%s' tidak boleh diakhiri dengan XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Gagal saat membaca link simbolik '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Link simbolik tidak didukung oleh sistem"
msgstr ""
"Gagal saat memetakan berkas '%s': fungsi mmap() mengalami kegagalan: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Error pada baris %d huruf ke %d: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Error pada baris ke %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Ada entitas '&;' yang kosong; Entitas yang benar antara lain adalah: & "
"" < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"yang boleh ada pada awal entitas; Bila ampersand ini dianggap bukan sebuah "
"entitas, Beri kode escape dan tulis sebagai &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Karakter '%s' tidak boleh digunakan pada nama entitas"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Nama entitas '%s' tidak diketahui"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"ampersand tanpa bermaksud menjadikannya sebagai entitas - silakan pakai "
"& saja"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Gagal saat mengurai '%-.*s'. yang seharusnya sebuah digit dalam referensi "
"karakter (misalnya ê) - mungkin digitnya terlalu besar"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
"Referensi karakter '%-.*s' tidak mengencodekan karakter yang diperbolehkan"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Refensi karakter kosong. Seharusnya berisi digit, mislanya dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"menggunakan karakter ampersand tanpa bermaksud menjadikannya sebagai "
"entitas. Silakan gunakan & saja"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Referensi entitas yang tidak sempurna"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Refersi karakter yang tidak sempurna"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Teks UTF-8 tidak benar"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Teks UTF-8 tidak benar"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Teks UTF-8 tidak benar"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumen harus dimulai dengan elemen (misalnya <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' bukanlah karakter yang benar bila diikuti dengan karakter '<'. Ini "
"tidak boleh menjadi nama elemen"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Ada karakter aneh '%s'. Seharusnya ada '>' untuk mengakhiri tag awal pada "
"elemen '%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Ada karakter aneh '%s'. Seharusnya ada karakter '=' setelah nama atribut '%"
"s' pada elemen '%s'"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"padaelemen '%s', atau bisa juga ada atribut lain. Mungkin Anda menggunakan "
"karakter yang tidak diperbolehkan pada nama atribut."
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Ada karakter aneh '%s'. Seharusnya ada tanda kutip buka setelah tanda sama "
"dengan saat memberikan nilai atribut '%s' pada elemen '%s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' bukan karakter yang benar bila diikuti dengan karakter '</'. Karena itu "
"'%s' tidak boleh dijadikan awal nama elemen"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' bukan karakter yang benar bila diikuti elemen penutup '%s'. Karakter "
"yang diperbolehkan adalah '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokumen kosong atau berisi whitespace saja"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Dokumen terpotong tidak sempurna sesaat setelah membuka kurung siku '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Dokumen terpotong tidak sempurna dengan elemen yang masih terbuka - '%s' "
"adalah elemen terakhir yang dibuka"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Dokumen terpotong tidak sempurna, seharusnya ada kurung siku penutup untuk "
"mengakhiri tag <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumen terpotong tidak sempurna pada dalam nama elemen"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokumen terpotong tidak sempurna di dalam nama atribut"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokumen terpotong tidak sempurna di dalam tag pembukaan elemen."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Dokumen terpotong tidak sempurna setelah tanda sama dengan mengikuti nama "
"atribut. Tidak ada nilai atribut yang diperoleh"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokumen tidak sempura saat ada dalam nilai atribut"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokumen terpotong tidak sempurna di dalam keterangan atau instruksi "
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "Pilihan tidak diketahui %s"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "Link simbolik tidak didukung oleh sistem"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Link simbolik tidak didukung oleh sistem"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Error pada baris ke %d: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Error saat melakukan konversi: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib 2.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, fuzzy, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
"Undarlegt tákn '%s', átti von á '=' eftir heiti eiginleika '%s' af mengi '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "gat ekki lesið tákntengið '%s': %s"
msgid "Error opening directory '%s': %s"
msgstr "Villa við að opna möppuna '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Gat ekki frátekið %lu bæti til að lesa skrána \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Villa við lestur skráarinnar '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Gat ekki lesið úr skránni '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Gat ekki opnað skrána '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "gat ekki lesið eiginleika skráarinnar '%s': fstat() brást: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Gat ekki opnað skrána '%s': fdopen() brást: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, fuzzy, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Gat ekki opnað skrána '%s': fdopen() brást: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "gat ekki búið til skrána '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, fuzzy, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Gat ekki opnað skrána '%s': fdopen() brást: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, fuzzy, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Gat ekki opnað skrána '%s': fdopen() brást: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, fuzzy, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Gat ekki opnað skrána '%s': fdopen() brást: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Sniðmátið '%s' er ógilt og ætti ekki að innihalda '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Sniðmátið '%s' endar ekki á XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "gat ekki lesið tákntengið '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Tákntengi eru ekki studd"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Gat ekki opnað skrána '%s': fdopen() brást: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Villa á línu %d tákn %d: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Villa á línu %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Tómt viðfang '&;' fannst; gild viðföng eru: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"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 &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Viðfangið '%s' er óþekkt"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Viðfangið endar ekki á semikommu; líklega notaðir þú og-merkið án þess að "
"ætla að byrja viðfang. Ritaðu það sem &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, fuzzy, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Gat ekki þáttað '%s' sem ætti að vera tölustafur innan í tilvísun í tákn "
"(til dæmis ê). Ef til vill er talan of stór"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Tóm tákntilvísun; hún ætti að innihalda tölur eins og dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"Viðfangið endar ekki á semikommu; líklega notaðir þú og-merkið án þess að "
"ætla að byrja viðfang. Ritaðu það sem &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Hálfkláruð viðfangatilvísun"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Hálfkláruð tákntilvísun"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Ógildur UTF-8 þýddur texti"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Ógildur UTF-8 þýddur texti"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Ógildur UTF-8 þýddur texti"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Skjalið verður að byrja á viðfangi (t.d. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' er ekki gilt tákn strax á eftir '<' tákninu; það má ekki byrja á heiti "
"viðfangs"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"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:1273
+#: glib/gmarkup.c:1355
#, 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:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"viðfangi '%s', eða eiginleika; Þú notaðir ef til vill ógilt tákn í heiti "
"eiginleika"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Undarlegt tákn '%s', átti von á tilvísunarmerki eftir samasem merkinu þegar "
"gildi er gefið með eiginleikanum '%s' af menginu '%s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' er ekki gilt tákn strax á eftir '</'; '%s' má ekki vera fyrsta tákn í "
"heiti mengis"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
msgstr ""
"'%s' er ekki gilt tákn strax á eftir lokun mengis '%s'. Leyfilegt tákn er '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Skjalið var tómt eða innihélt einungis orðabil"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
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:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Skjalið endar óvænt með mengi sem enn eru opin. '%s' var mengið sem síðast "
"var opnað"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
msgstr ""
"Skjalið endar óvænt. Átti von á að sjá stærraen merki sem lokar taginu <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Skjalið endar óvænt inn í heiti mengis"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Skjalið endar óvænt inn í heiti eiginleika"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Skjalið endar óvænt inn í tagi sem opnar mengi."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Skjalið endar óvænt eftir samasem merkið sem fylgir heiti eiginleika og það "
"er ekkert gildi"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Skjalið endar óvænt inn í gildi eiginleika"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Skjalið endar óvænt inni í athugasemd eða í miðri skipun"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr ""
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "Tákntengi eru ekki studd"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Tákntengi eru ekki studd"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Villa á línu %d: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Villa við umbreytingu: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib 2.17.x\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-05-31 11:32+0200\n"
"Last-Translator: Luca Ferretti <elle.uca@libero.it>\n"
"Language-Team: Italian <tp@lists.linux.it>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Attributo \"%s\" inatteso per l'elemento \"%s\""
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Attributo \"%s\" dell'elemento \"%s\" non trovato"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Tag \"%s\" inatteso; atteso il tag \"%s\""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Tag \"%s\" inatteso all'interno di \"%s\""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
"Non è stato trovato alcun file di segnalibri valido nelle directory dei dati"
# usate le «» perché forse questa compare nella UI
#
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Esiste già un segnalibro per l'URI «%s»"
# vedi sopra per «»
#
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Non è stato trovato alcun segnalibro per l'URI «%s»"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Nessuna definizione di tipo MIME nel segnalibro per l'URI \"%s\""
# o private è il nome della flag (che quindi diventa opzione)?
# cercare nel codice... -Luca
#
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
"Non è stata definita alcuna flag privata nel segnalibro per l'URI \"%s\""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Nessun gruppo impostato nel segnalibro per l'URI \"%s\""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Nessuna applicazione di nome «%s» ha registrato un segnalibro per «%s»"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Espansione della riga exec \"%s\" con l'URI \"%s\" fallita"
msgstr "Errore nell'aprire la directory \"%s\": %s"
# GLIB-2-16
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Impossibile allocare %lu byte per leggere il file \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Errore nel leggere il file \"%s\": %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Lettura dal file \"%s\" fallita: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Apertura del file \"%s\" fallita: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Lettura degli attributi del file \"%s\" fallita: fstat() fallita: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Apertura del file \"%s\" fallita: fdopen() fallita: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"Cambio di nome del file \"%s\" in \"%s\" fallito: g_rename() fallita: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Creazione del file \"%s\" fallita: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Apertura del file \"%s\" in scrittura fallita: fdopen() fallita: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Scrittura del file \"%s\" fallita: fwrite() fallita: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Chiusura del file \"%s\" fallita: fclose() fallita: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
# c[1] = dir_separator;
# c[2] = '\0';
#
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Il modello \"%s\" non è valido, non dovrebbe contenere un \"%s\""
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Il modello \"%s\" non contiene XXXXXX"
# GLIB-2-16
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f kB"
# GLIB-2-16
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
# GLIB-2-16
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Lettura del collegamento simbolico \"%s\" fallita: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Collegamenti simbolici non supportati"
msgstr "Mappatura del file \"%s\" fallita: mmap() fallita: %s"
# GLIB-2-16
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Errore alla riga %d carattere %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Errore alla riga %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Rilevata entità vuota '&;' (sono entità valide & " < > ')"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"'&' dà inizio a un'entità; se questo simbolo \"e commerciale\" non vuole "
"essere l'inizio di una entità, ricorrere a &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Il nome di entità '%s' è sconosciuto"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"utilizzata una \"e commerciale\" senza l'intento di iniziare una entità. In "
"tal caso ricorrere a \"&\""
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"riferimento a carattere (es. ê) - probabilmente il numero è troppo "
"grande"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr ""
"Riferimento a carattere vuoto; dovrebbe includere un numero, come dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"si è utilizzato un carattere \"e commerciale\" senza l'intenzione di "
"iniziare una nuova entità. In tal caso ricorrere a \"&\""
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Riferimento a entità non terminato"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Riferimento a carattere non terminato"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
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:1006
+#: glib/gmarkup.c:1084
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:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Testo in codifica UTF-8 non valido - '%s' non valido"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Il documento deve iniziare con un elemento (es. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' non è un carattere valido dopo il carattere '<'; non può iniziare con "
"il nome di un elemento"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Trovato carattere '%s', atteso invece un carattere '>' per terminare il tag "
"di inizio dell'elemento \"%s\""
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Trovato carattere '%s', atteso invece un carattere '=' dopo il nome "
"dell'attributo \"%s\" dell'elemento \"%s\""
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"attributo. Probabilmente è stato usato un carattere non valido nel nome di "
"un attributo"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"segno di uguale per attribuire un valore all'attributo \"%s\" dell'elemento "
"\"%s\""
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' non è un carattere valido dopo i caratteri '</'; '%s' non può dare "
"inizio a un nome di elemento"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' non è un carattere valido per seguire la chiusura del nome "
"dell'elemento \"%s\"; il carattere permesso è '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "È stato chiuso l'elemento \"%s\", nessun elemento correntemente aperto"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Il documento era vuoto oppure conteneva unicamente spazi"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
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:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Il documento è terminato in modo inatteso con elementi ancora aperti - \"%s"
"\" era l'ultimo elemento aperto"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Il documento è terminato in modo inatteso, mancando la parentesi angolare di "
"chiusura per il tag <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
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:1805
+#: glib/gmarkup.c:1890
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:1810
+#: glib/gmarkup.c:1895
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:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Il documento è terminato in modo inatteso dopo il segno di uguale che segue "
"un nome di attributo; l'attributo non ha un valore"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
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:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Il documento è terminato inaspettatamente all'interno del tag di chiusura "
"per l'elemento \"%s\""
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Il documento è terminato in modo inatteso all'interno di un commento o "
msgid "Operation was cancelled"
msgstr "L'operazione è stata annullata"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Tipo sconosciuto"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "Tipo di file %s"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "Tipo %s"
msgstr "End-of-stream prematuro inatteso"
# NdT: nome di applicazione (quando manca)
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Senza nome"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Il file .desktop non specifica il campo Exec"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Impossibile trovare il terminale richiesto per l'applicazione"
# NdT il primo %s è il percorso alla cartella .local/share/application
# messo tra parentesi per scelta stilistica...
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
# NdT il primo %s è il percorso alla cartella .local/share/application
# messo tra parentesi per scelta stilistica...
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Impossibile creare la cartella utente di configurazione MIME (%s): %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Impossibile creare il file .desktop utente %s"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Definizione personalizzata per %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "l'unità non implementa l'espulsione"
# sondaggio ????
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "l'unità non supporta il sondaggio di supporti"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Operazione non supportata"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "L'oggetto mount contenuto non esiste"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Impossibile copiare sopra la directory"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Impossibile copiare la directory sopra la directory"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Il file destinazione esiste"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Impossibile copiare la directory ricorsivamente"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Fornito valore di collegamento simbolico non valido"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Cestino non supportato"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "I nomi di file non possono contenere '%c'"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "il volume non implementa il montaggio"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Non risulta registrata alcuna applicazione per gestire questo file"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "l'oggetto mount non implementa lo smontaggio"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "l'oggetto mount non implementa l'espulsione"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "l'oggetto mount non implementa il rimontaggio"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "l'oggetto mount non implementa lo smontaggio"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Lo stream di output non implementa la scrittura"
msgid "Error closing unix: %s"
msgstr "Errore nel chiudere unix: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "File system radice"
msgid "Error writing to unix: %s"
msgstr "Errore nello scrivere su unix: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "il volume non implementa l'espulsione"
msgstr ""
"Project-Id-Version: glib trunk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-11 20:46+0900\n"
"Last-Translator: Takeshi AIHANA <takeshi.aihana@gmail.com>\n"
"Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "想定外の属性 '%s' (要素 '%s') です"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "属性 '%s' (要素 '%s') がありません"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "想定外のタグ '%s' です (想定していたタグは '%s')"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "想定外のタグ '%s' ('%s' 内) です"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "データ・ディレクトリの中に妥当なブックマーク・ファイルはありません"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI が '%s' であるブックマークは既に存在します"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "URI '%s' のブックマークが見つかりませんでした"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI '%s' のブックマークの中で MIME 型が定義されていません"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
"URI '%s' のブックマークの中でプライベートではないフラグが定義されています"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI '%s' のブックマークの中にグループがありません"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "アプリケーション '%s' は '%s' のブックマークを登録していません"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "実行ラインの '%s' を URI '%s' で展開できませんでした"
msgid "Error opening directory '%s': %s"
msgstr "ディレクトリ '%s' を開く時にエラー: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "%lu バイトを確保できませんでした (ファイル \"%s\" の読み込みに必要)"
msgid "Error reading file '%s': %s"
msgstr "ファイル '%s' の読み出し中にエラー: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "ファイル '%s' を読めません: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "ファイル '%s' を開けません: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "ファイル '%s' の属性の取得できません: fstat() が失敗: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "ファイル '%s' を開けません: fdopen() が失敗: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"'%s' から '%s' へのファイル名の変更に失敗しました: g_rename() が失敗: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "ファイル '%s' の生成に失敗しました: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "ファイル '%s' を書き込みモードで開けませんでした: fdopen() が失敗: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "ファイル '%s' への書き込みに失敗しました: fwrite() が失敗: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "ファイル '%s' を閉じれません: fclose() が失敗: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "既存のファイル '%s' を削除できませんでした: g_unlink() が失敗: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "テンプレート '%s' が正しくありません ('%s' を含めないこと)"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "テンプレート '%s' に XXXXXX が含まれていません"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "シンボリック・リンク '%s' の読み込みが失敗: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "シンボリック・リンクはサポートしていません"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "ファイル '%s' のマップに失敗しました: mmap() が失敗: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "%d 行の %d 文字目でエラー:"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "%d 行目でエラー: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"空のエンティティ '&;' があります; 正しいエンティティは: & " < "
"> '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"表わします。もしアンパサンドがエンティティでなければ、& のようにエスケー"
"プしてください"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "文字 '%s' はエンティティ名として使えません"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "エンティティ名 '%s' というのは不明です"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"ドを使ったのではないでしょうか。アンパサンドは & のようにエスケープしてく"
"ださい"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"'%-.*s' をパースできません。文字参照には数字が含まれなくてはなりません (例: "
"ê) おそらく数字が大きすぎます"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "文字参照 '%-.*s' が使用可能な文字をエンコードしていません"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "空の文字参照です。dž のように数字がなくてはなりません"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"サンド文字を使っているのかもしれません。アンパサンドは & とエスケープして"
"ください"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "中途半端な実体参照です"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "中途半端な文字参照です"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "UTF-8 として正しくない文字列です (シーケンスが長すぎます)"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "UTF-8 として正しくない文字列です (文字で始まっていません)"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "UTF-8 として正しくない文字列です ('%s' は妥当ではありません)"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "ドキュメントは要素 (例 <book>) で始まってなくてはなりません"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' は '<' に続く文字としては正しくありません。おそらく要素名の開始になって"
"いません"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"おかしな文字 '%s' があります。要素 '%s' の開始タグの最後は '>' でなくてはなり"
"ません"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "おかしな文字 '%s' です。属性名'%s' (要素 '%s') の後には '=' が必要です"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"はなりません。あるいは属性になります。おかしな文字を属性名に使ったのかもしれ"
"ません"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"おかしな文字 '%s' です。属性 '%s' (要素 '%s') の値を設定するには等号記号の後"
"は引用記号で始まってなくてはなりません"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' は '</' に続く文字としては正しくありません。'%s' では要素名は始まってま"
"せん"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' は閉じ要素名 '%s' に続く文字としては正しくありあません。'>' のみが使用で"
"きます"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "要素 '%s' は閉じています。要素は何も開かれてません"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "要素'%s' が閉ました。しかし現在開いている要素は '%s' です"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "ドキュメントが空か、空白だけが含まれています"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "ドキュメントが開きカギカッコ '<' の直後で終了しています"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"ドキュメントが突然終了しています。要素が開きっぱなしです。最後に開いた要素は "
"'%s' です。"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"ドキュメントはタグ <%s/> で終了しているものと想定していましたが、突然終了して"
"います。"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "要素名の途中でドキュメントが突然終了しています"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "属性名の途中でドキュメントが突然終了しています"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "要素の開始タグの途中でドキュメントが突然終了しています"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"属性名の後にある等号記号の次でドキュメントが突然終了しています: 属性値があり"
"ません"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "ドキュメントが属性値の途中で突然終了しています"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "ドキュメントが要素 '%s' の閉じタグの途中で突然終了しています"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"ドキュメントがコメントあるいはプロセシング指示子の途中で突然終了しています"
msgid "Operation was cancelled"
msgstr "操作がキャンセルされました"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "不明な種類"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s (ファイルの種類)"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s (種類)"
msgid "Unexpected early end-of-stream"
msgstr "想定していたよりも早くストリームの最後に到達しました"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "名前なし"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "デスクトップ・ファイルで Exec 項目を指定してませんでした"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "アプリケーションで必要な端末が見つかりませんでした"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "ユーザのアプリケーション設定フォルダ %s を生成できません: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "ユーザの MIME 型設定フォルダ %s を生成できません: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "ユーザのデスクトップ・ファイル %s を生成できません"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "%s に対する独自の設定"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "ドライブ側で取り出しの操作を実装していません"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "ドライブ側でポーリングによるメディアの検出を実装していません"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "サポートしていない操作です"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "マウントを含んでいるものはありません"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "ディレクトリ全体をコピーできません"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "ディレクトリからディレクトリへコピーできません"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "対象となるファイルが存在しています"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "ディレクトリを再帰的にコピーできません"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "指定したシンボリックリンクは間違っています"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "ゴミ箱はサポートしていません"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "ファイル名に '%c' を含めることはできません"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "ボリュームはマウントを実装していません"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "このファイルを扱うアプリケーションが登録されていません"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "マウントはアンマウントを実装していません"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "マウントは取り出しを実装していません"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "マウントは再マウントを実装していません"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "マウントはアンマウントを実装していません"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "出力ストリームは書き込みを実装していません"
msgid "Error closing unix: %s"
msgstr "unix を閉じる際にエラー: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "ファイルシステムのルート"
msgid "Error writing to unix: %s"
msgstr "unix に書き込む際にエラー: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "ボリュームは取り出しを実装していません"
msgstr ""
"Project-Id-Version: ka\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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-"
"Plural-Forms: nplurals=1; plural=0\n"
"X-Generator: KBabel 1.11.4\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "მოულოდნელი ატრიბუტი '%s' ელემენტ '%s'-თვის"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "ატრიბუტი'%s' ელემენტისთვის '%s' ვერ მოიძებნა"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "უცნობი ჭდე '%s', მოსალოდნელი იყო '%s'"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "უცნობი ჭდე '%s' - '%s'-ში"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "მონაცემთა დასტებში მართებული საკვანძო ფაილი ვერ მოიძებნა"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI '%s' სანიშნე უკვე არსებობს"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "URI '%s'-თვის სანიშნე ვერ მოიძებნა"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI '%s' სანიშნეში MIME ტიპი არ მითითებულა"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI '%s' სანიშნეში პირადი ალამი არ მითითებულა"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI '%s' სანიშნეში ჯგუფები არ მითითებულა"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "პროგრამისთვის სახელით '%s' არ მითითებულა სანიშნე '%s'"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "შეუძლებელია '%s' exec line-ს გაფართოება, მისამართით URI '%s'"
msgid "Error opening directory '%s': %s"
msgstr "შეცდომ \"%s\" დასტის გახსნისას: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "ვერ ხერხდება %lu ბაიტის გამოყოფა \"%s\" ფაილის წასაკითხად"
msgid "Error reading file '%s': %s"
msgstr "ფაილის \"%s\" წაკითხვის შეცდომა: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "ფაილიდან \"%s\" წაკითხვის შეცდომა: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "ფაილის \"%s\" გახსნის შეცდომა: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "ფაილის \"%s\" ატრიბუტების წაკითხვის შეცდომა: ფუნქცია - fstat(): %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "ფაილის \"%s\" გახსნის შეცდომა: ფუნქცია - fdopen(): %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "ვერ მოხერხდა '%s' ფაილის გადარქმევა - '%s': g_rename() ვერ შედგა: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "ვერ ვქმნი '%s' ფაილს: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "ვერ ვხსნი '%s' ფაილს ჩასაწერად: fdopen() ვერ შედგა: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "ვერ ვწერ '%s' ფაილს: fwrite() ვერ შედგა: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "ვერ ვხურავ '%s' ფაილს: fclose() ვერ შედგა: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "არსებული '%s' ფაილი ვერ ამოიშლება: g_unlink() ვერ შედგა: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "თარგი '%s' მცდარია და '%s'-ს არ უნდა შეიცავდეს"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "ნიმუში '%s' არ შეიცავს XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "სიმბოლური ბმის \"%s\" წაკითხვის შეცდომა: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "სიმბოლური ბმების გამოყენება არაა რეალიზებული"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "ვერ მოხერხდა '%s' ფაილის განთავსება: mmap() ვერ შედგა: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "შეცდომა სტრიქონში %d სიმბოლო %d: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "შეცდომა სტრიქონში %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"ცარიელი ერთეული \"&;\"; შესაძლო ერთეულებია: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"სიმბოლოთი; თუ ეს სიმბოლო სიმბოლო ერთეულის ნაწილი უნდა იყოს გამოსახეთ იგი, "
"როგორც &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "სიმბოლო \"%s\" ერთეულის სახელში დაუშვებელია"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "ერთეულის სახელი \"%s\" უცნობია"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"ერთეული არ მთავრდება წერტილ-მძიმით; როგორც ჩანს, სახელის დასაწყისში "
"გამოყენებულია სიმბოლო \"&\". გამოსახეთ იგი, როგორც &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"ვერ მუშავდება სტრიქონი '%-.*s', რომელშიც უნდა იყოს სიმბოლოს ნომერი "
"(მაგალითად, ê): შესაძლოა რიცხვი მეტისმეტად დიდია"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "სიმბოლოს ნომერი '%-.*s' დაუშვებელია"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr ""
"სიმბოლოს დამოწმება ცარიელია; იგი ნომერს უნდა შეიცავდეს, მაგალითად, dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"სიმბოლოს ნომერი არ მთავრდება წერტილ-მძიმით; როგორც ჩანს, სახელის დასაწყისში "
"გამოყენებულია სიმბოლო \"&\". გამოსახეთ იგი, როგორც &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "ერთეულის დამოწმება არაა დასრულებული"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "სიმბოლოს დამოწმება არაა დასრულებული"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "ტექსტი მიუღებელი UTF-8 კოდირებით - overlong sequence"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "ტექსტი მიუღებელი UTF-8 კოდირებით - not a start char"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "ტექსტი მიუღებელი UTF-8 კოდირებით - მიუღებელი '%s'"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "დოკუმენტი უნდა დაიწყოს ელემეტით (მაგალითად <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"სიმბოლო \"%s\" დაუშვებელია \"<\" სიმბოლოს შემდეგ; ამ სიმბოლოთი ელემენტის "
"სახელის დაწყება არ შეიძლება"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"ზედმეტი სიმბოლო \"%s\", მოსალოდნელია \">\" სიმბოლო ელემენტის \"%s\" ჭდის "
"დასახურად"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"ზედმეტი სიმბოლო \"%s\", მოსალოდნელია \"=\"ატრიბუტის სახელის \"%s\" შემდეგ "
"ელემენტისთვის \"%s\""
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"გამხსნელი ჭდის დასახურად ან დამატებითი ატრიბუტი; ასევე, შესაძლოა მცდარი "
"სიმბოლო ატრიბუტის სახელში"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"ზედმეტი სიმბოლო \"%s\", მოსალოდნელია გახსნილი ბრჭყალები ტოლობის ნიშნის "
"შემდეგ ატრიბუტისთვის \"%s\" მნიშვნელობის მისანიჭებლად ელემენტისთვის \"%s\""
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"სიმბოლო \"%s\" დაუშვებელია \"</\" შემდეგ; სიმბოლო \"%s\" არ შეიძლება იყოს "
"ელემენტის სახელის დასაწყისში"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"სიმბოლო \"%s\" დაუშვებელია ელემენტის \"%s\" დახურვის ჭდის შემდეგ; დასაშვები "
"სიმბოლოა \">\""
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "ელემენტი \"%s\" დაიხურა, არცერთი ელემენტი არაა გახსნილი"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "ელემენტი \"%s\" დაიხურა, მაგრამ გახსნილია ელემენტი \"%s\""
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "დოკუმენტი ცარიელია ან მხოლოდ ხარეებს შეიცავს"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "დოკუმენტი დასრულდა უშუალოდ კუთხოვანი ფრჩხილის \"<\" შემდეგ"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"დოკუმენტი მოულოდნელად დასრულდა გახსნილი ელემენტებით - \"%s\" ბოლო გახსნილი "
"ელემენტია"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
msgstr ""
"დოკუმენტი მოულოდნელად დასრულდა, მოსალოდნელია ჩამკეტი კუთხოვანი ფრჩხილი <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "დოკუმენტი მოულოდნელად დასრულდა ელემენტის სახელის შიგნით"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "დოკუმენტი მოულოდნელად დასრულდა ატრიბუტის სახელის შიგნით"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "დოკუმენტი მოულოდნელად დასრულდა ელემენტის გამხსნელი ჭდის შიგნით."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"დოკუმენტი მოულოდნელად დასრულდა ატრიბუტის სახელის შემდგომი ტოლობის ნიშნის "
"შემდეგ; ატრიბუტის მნიშვნელობა არ მითითებულა"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "დოკუმენტი მოულოდნელად დასრულდა ატრიბუტის მნიშვნელობის შიგნით"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "დოკუმენტი მოულოდნელად დასრულდა ელემენტის \"%s\" ჩამკეტი ჭდის შიგნით"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"დოკუმენტი მოულოდნელად დასრულდა კომენტარის ან დამუშავების ინსტრუქციის შიგნით"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "უცნობი შეცდომა"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "სიმბოლური ბმების გამოყენება არაა რეალიზებული"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "სიმბოლური ბმების გამოყენება არაა რეალიზებული"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
#, fuzzy
msgid "No application is registered as handling this file"
msgstr "პროგრამისთვის სახელით '%s' არ მითითებულა სანიშნე '%s'"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "შეცდომა სტრიქონში %d: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "შეცდომის გაანალიზების პარამეტრი: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib.HEAD.kn\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-02-13 14:34+0530\n"
"Last-Translator: Shankar Prasad <svenkate@redhat.com>\n"
"Language-Team: Kannada <en@li.org>\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "'%s'ಘಟಕಕ್ಕೆ ಅನಪೇಕ್ಷಿತ ಗುಣ ವಿಶೇಷ '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "'%s' ದ ಘಟಕಕ್ಕೆ '%s' ಗುಣವಿಶೇಷ ಪತ್ತೆಯಾಗಿಲ್ಲ"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "ಅನಪೇಕ್ಷಿತ ಪದಗುಚ್ಛ '%s', ಪದಗುಚ್ಛ '%s' ವನ್ನು ಅಪೇಕ್ಷಿಸಲಾಗಿತ್ತು"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "'%s' ದ ಒಳಗೆ ಅನಪೇಕ್ಷಿತ ಪದಗುಚ್ಛ '%s"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "ದತ್ತಾಂಶ ಕೋಶದಲ್ಲಿ ಯಾವುದೇ ಮಾನ್ಯ ಬುಕ್ ಮಾರ್ಕ್ ಕಂಡು ಬಂದಿಲ್ಲ"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI '%s' ಗೆ ಈಗಾಗಲೆ ಒಂದು ಬುಕ್ ಮಾರ್ಕ್ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "URI '%s' ಗೆ ಯಾವುದೇ ಬುಕ್ ಮಾರ್ಕ್ ಕಂಡು ಬಂದಿಲ್ಲ"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI '%s' ಗಾಗಿನ ಬುಕ್ ಮಾರ್ಕಿನಲ್ಲಿ ಯಾವುದೇ MIME ಪ್ರಕಾರವು ಕಂಡುಬಂದಿಲ್ಲ"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI '%s' ನ ಬುಕ್ ಮಾರ್ಕಿನಲ್ಲಿ ಯಾವುದೇ ಖಾಸಗಿ ನಿಶಾನೆಯು ಸೂಚಿತವಾಗಿಲ್ಲ"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI '%s' ಗಾಗಿ ಯಾವುದೇ ಸಮೂಹವು ಸಂಯೋಜಿತವಾಗಿಲ್ಲ"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "'%s' ಎಂಬ ಹೆಸರಿನ ಯಾವುದೇ ಅನ್ವಯವು '%s' ಗಾಗಿ ಒಂದು ಬುಕ್-ಮಾರ್ಕನ್ನು ನೊಂದಾಯಿಸಿಲ್ಲ"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "exec ಸಾಲು '%s' ಅನ್ನು URI '%s' ನೊಂದಿಗೆ ವಿಸ್ತರಿಸುವಲ್ಲಿ ವಿಫಲತೆ ಎದುರಾಗಿದೆ"
msgid "Error opening directory '%s': %s"
msgstr "ಕಡತ ಕೋಶ '%s' ವನ್ನು ತೆರೆಯುವಲ್ಲಿ ದೋಷ: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "%lu ಬೈಟ್ಗಳನ್ನು, \"%s\" ಕಡತವನ್ನು ಓದುವಂತೆ ನಿಯೋಜಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ"
msgid "Error reading file '%s': %s"
msgstr "'%s' ಕಡತವನ್ನು ಓದುವಲ್ಲಿ ದೋಷ: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "'%s' ಕಡತದಿಂದ ಓದುವಲ್ಲಿ ವಿಫಲತೆ: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "'%s' ಅನ್ನು ತೆರೆಯಲು ವಿಫಲವಾಗಿದೆ: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "'%s' ಕಡತದಿಂದ ಗುಣಲಕ್ಷಣಗಳನ್ನು ಪಡೆಯುವಲ್ಲಿ ವಿಫಲತೆ: fstat() ವಿಫಲಗೊಂಡಿದೆ: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "'%s' ಕಡತವನ್ನು ಓದುವಲ್ಲಿ ವಿಫಲತೆ: fdopen() ವಿಫಲಗೊಂಡಿದೆ: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "'%s' ಕಡತವನ್ನು '%s' ಕ್ಕೆ ಪುನರ್ ನಾಮಕರಣ ಮಾಡುವಲ್ಲಿ: g_rename() ವಿಫಲಗೊಂಡಿದೆ: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "'%s' ಕಡತವನ್ನು ರಚಿಸುವಲ್ಲಿ ವಿಫಲತೆ: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
"ಕಡತ '%s' ವನ್ನು ಬರೆಯಲು ಅನುವಾಗುವಣ್ತೆ ತೆರೆಯುವಲ್ಲಿ ವಿಫಲತೆ: fdopen() ವಿಫಲಗೊಂಡಿದೆ: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "ಕಡತ '%s'ವನ್ನು ಬರೆಯುವಲ್ಲಿ ವಿಫಲತೆ: fwrite() ವಿಫಲಗೊಂಡಿದೆ: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "ಕಡತ '%s' ವನ್ನು ಮುಚ್ಚುವಲ್ಲಿ ವಿಫಲತೆ: fclose() ವಿಫಲಗೊಂಡಿದೆ: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
"ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ '%s' ಕಡತವನ್ನು ತೆಗೆದು ಹಾಕಲಾಗುವುದಿಲ್ಲ: g_unlink() ವಿಫಲಗೊಂಡಿದೆ: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "ಮಾದರಿ '%s' ಅಮಾನ್ಯವಾಗಿದೆ, ಅದು ಒಂದು '%s' ಅನ್ನು ಹೊಂದಿರುವಂತಿಲ್ಲ"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "ಮಾದರಿ '%s' ಯು XXXXXX ಅನ್ನು ಹೊಂದಿಲ್ಲ"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "ಸಾಂಕೇತಿಕ ಲಿಂಕ್ '%s' ಅನ್ನು ಓದುವಲ್ಲಿ ವಿಫಲತೆ: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "ಸಾಂಕೇತಿಕ ಲಿಂಕುಗಳು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' ವನ್ನು ನಕ್ಷೆ ಕಡತಮಾಡುವಲ್ಲಿ ವಿಫಲ: mmap() ವಿಫಲಗೊಂಡಿದೆ: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "%d ಸಾಲಿನ %d ಚಿಹ್ನೆಯಲ್ಲಿ ದೋಷ:"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "%d ಸಾಲಿನಲ್ಲಿ ದೋಷ: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"ಖಾಲಿ ಘಟಕ '&;' ಕಂಡು ಬಂದಿದೆ; ಮಾನ್ಯ ನಮೂದುಗಳೆಂದರೆ: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"'%s' ವು ಒಂದು ಘಟಕದ ಹೆಸರಿನ ಒಂದು ಆರಂಭದಲ್ಲಿ ಇರುವಂತಿಲ್ಲ; & ಅಕ್ಷರವು ಒಂದು ಘಟಕದ "
"ಆರಂಭದಲ್ಲಿರಬೇಕು ಇದರಿಂದ ಹೊರಬರಲು & ಮಾಡಿ"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "ಒಂದು ಘಟಕದ ಹೆಸರಿನಲ್ಲಿ ಅಕ್ಷರ '%s' ವು ಮಾನ್ಯವಾದುದಲ್ಲ"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "ತಿಳಿದಿಲ್ಲದ ಘಟಕದ ಹೆಸರು '%s'"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"ಆರಂಭಿಸುವ ಉದ್ದೇಶವಿಲ್ಲದೇ ampersand ಅಕ್ಷರವನ್ನು ಬಳಸಿದ್ದೀರಿ - ampersand ನಿಂದ ಹೊರಬರಲು "
"& ಎಂದು ಮಾಡಿ"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"'%-.*s' ಅನ್ನು parse ಮಾಡುವಲ್ಲಿ ವಿಫಲ, ಇದು ಒಂದು ಉಲ್ಲೇಖ ಅಕ್ಷರದ ಒಳಗಿನ ಒಂದು "
"ಅಂಕಿಯಾಗಿರಬೇಕಿತ್ತು(ê ಉದಾಹರಣೆಗೆ) - ಬಹುಷಃ ಅಂಕಿಯು ಬಹಳ ದೊಡ್ಡದಾಗಿರಬೇಕು"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "ಅಕ್ಷರ ಉಲ್ಲೇಖ '%-.*s' ವು ಒಂದು ಅನುಮತಿ ಇರುವ ಅಕ್ಷರವನ್ನು encode ಮಾಡುವುದಿಲ್ಲ"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "ಖಾಲಿ ಉಲ್ಲೇಖ ಅಕ್ಷರ; dž ನಂತಹ ಅಂಕಿಗಳನ್ನು ಒಳಗೊಂಡಿರಬೇಕು"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"ಘಟಕವನ್ನು ಆರಂಭಿಸುವ ಉದ್ದೇಶವಿಲ್ಲದೇ ampersand ಅಕ್ಷರವನ್ನು ಬಳಸಿದ್ದೀರಿ - ampersand ನಿಂದ "
"ಹೊರಬರಲು & ಎಂದು ಮಾಡಿ"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "ಪೂರ್ಣಗೊಳಿಸದ ಘಟಕ ಉಲ್ಲೇಖ"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "ಪೂರ್ಣಗೊಳಿಸದ ಅಕ್ಷರ ಉಲ್ಲೇಖ"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "ಅಮಾನ್ಯ UTF-8 ಎನ್ಕೋಡ್ ಆದ ಪಠ್ಯ - ಬಹಳ ಉದ್ದವಾದ ಅನುಕ್ರಮ"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "ಅಮಾನ್ಯ UTF-8 ಎನ್ಕೋಡ್ ಆದ ಪಠ್ಯ - ಒಂದು ಆರಂಭ char ಅಲ್ಲ"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "ಅಮಾನ್ಯ UTF-8 ಎನ್ಕೋಡ್ ಆದ ಪಠ್ಯ - ಮಾನ್ಯವಾದ '%s' ಅಲ್ಲ"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "ದಸ್ತಾವೇಜುಗಳು ಒಂದು ಅಂಶದಿಂದ ಆರಂಭಗೊಳ್ಳಬೇಕು (e.g. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'<' ಅಕ್ಷರವು ಬಂದ ನಂತರ, '%s' ವು ಒಂದು ಮಾನ್ಯವಲ್ಲದ ಅಕ್ಷರವಾಗಿದೆ; ಅದು ಒಂದು ಅಂಶದ ಹೆಸರನ್ನು "
"ಆರಂಭಿಸದೇ ಇರಬಹುದು"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"ಸರಿಯಲ್ಲದ ಅಕ್ಷರ '%s', '%s' ಅಂಶದ ಟ್ಯಾಗಿನ ಆರಂಭವು ಒಂದು '>' ಅಕ್ಷರದಿಂದ ಕೊನೆಗೊಳ್ಳಬೇಕು "
"ಎಂದು ಅಪೇಕ್ಷಿಸಲಾಗಿತ್ತು"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"ಸರಿಯಲ್ಲದ ಅಕ್ಷರ '%s', '%s'ವು '%s' ಅಂಶದ ಗುಣಲಕ್ಷಣ ಹೆಸರಾಗಿದ್ದು ಅದರ ನಂತರ ಒಂದು '=' "
"ಅನ್ನು ಅಪೇಕ್ಷಿಸಲಾಗಿತ್ತು"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"ಕೊನೆಗೊಳ್ಳಬೇಕು ಎಂದು ಅಪೇಕ್ಷಿಸಲಾಗಿತ್ತು, ಅಥವ ಆಯ್ಕಾತ್ಮಕವಾಗಿ ಒಂದು ಗುಣಲಕ್ಷಣ; ಬಹುಷಃ ನೀವು "
"ಅಮಾನ್ಯ ಅಕ್ಷರವನ್ನು ಒಂದು ಗುಣಲಕ್ಷಣದ ಹೆಸರಿನಲ್ಲಿ ಬಳಸಿದ್ದೀರೆಂದು ತೋರುತ್ತದೆ"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"ಸರಿಯಲ್ಲದ ಅಕ್ಷರ '%s', ಗುಣಲಕ್ಷಣ '%s'ವು '%s' ದ ಅಂಶವಾಗಿದ್ದು, ಇದಕ್ಕೆ ಒಂದು ಮೌಲ್ಯವನ್ನು "
"ಕೊಡುವಾಗ ಸಮ ಚಿಹ್ನೆಯ ನಂತರ ಒಂದು ಮುಕ್ತ ಉದ್ಧರಣ ಚಿಹ್ನೆಯನ್ನು ನಿರೀಕ್ಷಿಸಲಾಗಿತ್ತು"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' ವು '</' ಗಳಂತಹ ಅಕ್ಷರಗಳ ನಂತರ ಬರುವ ಒಂದು ಮಾನ್ಯವಾದ ಅಕ್ಷರವಲ್ಲ; ಒಂದು ಅಂಶದ ಹೆಸರು '%"
"s' ನಿಂದ ಆರಂಭಗೊಳ್ಳುವುದಿಲ್ಲ"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' ವು ಮುಚ್ಚಲ್ಪಟ್ಟ ಅಂಶ ಹೆಸರು '%s' ನಂತರ ಬರುವ ಒಂದು ಮಾನ್ಯವಾದ ಅಕ್ಷರವಲ್ಲ; '>' ವು "
"ಅನುಮತಿ ಇರುವ ಅಕ್ಷರವಾಗಿರುತ್ತದೆ"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "ಅಂಶವು '%s' was closed, no element is currently open"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "ಅಂಶ '%s' ವು ಮುಚ್ಚಲ್ಪಟ್ಟಿದೆ, ಆದರೆ ಪ್ರಸ್ತುತ ಮುಕ್ತವಾಗಿರುವ ಅಂಶವೆಂದರೆ '%s' ಆಗಿದೆ"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "ದಸ್ತಾವೇಜು ಖಾಲಿಯಾಗಿತ್ತು ಅಥವ ಕೇವಲ ಕೇವಲ ಖಾಲಿ ಜಾಗಗಳನ್ನು ಹೊಂದಿತ್ತು"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಮುಕ್ತ ಕೋನ ಆವರಣ ಚಿಹ್ನೆ '<' ಯ ನಂತರ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"ಅಂಶಗಳು ತೆರೆದಿರುವಾಗಲೇ ದಸ್ತಾವೇಜು ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ - '%s' ಯು ತೆರೆಯಲ್ಪಟ್ಟ "
"ಕೊನೆಯ ಅಂಶ"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"ದಸ್ತಾವೇಜು ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ, <%s/> ಟ್ಯಾಗಿನ ಕೊನೆಯಲ್ಲಿ ಒಂದು ಮುಕ್ತ ಕೋನ ಆವರಣ "
"ಚಿಹ್ನೆಯನ್ನು ಕಾಣಲು ಅಪೇಕ್ಷಿಸಲಾಗಿತ್ತು"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಅಂಶದ ಹೆಸರಿನಲ್ಲಿ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಗುಣಲಕ್ಷಣ ಹೆಸರಿನಲ್ಲಿ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಅಂಶ ತೆರೆಯುವ ಟ್ಯಾಗಿನ ಒಳಗೆ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"ದಸ್ತಾವೇಜು ಒಂದು ಗುಣಲಕ್ಷಣದ ಹೆಸರಿನ ನಂತರದ ಸಮ ಚಿಹ್ನೆಯ ನಂತರ ಅನಿರೀಕ್ಷಿತವಾಗಿ "
"ಕೊನೆಗೊಂಡಿದೆ; ಯಾವುದೇ ಗುಣಲಕ್ಷಣ ಮೌಲ್ಯವಿಲ್ಲ"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಗುಣಲಕ್ಷಣ ಮೌಲ್ಯದ ಒಳಗಿರುವಾಗ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಅಂಶ'%s'ದ ಮುಚ್ಚಲ್ಪಟ್ಟ ಟ್ಯಾಗಿನ ಒಳಗೆ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಹೇಳಿಕೆ ಅಥವ ಪ್ರಕ್ರಿಯೆ ಸೂಚನೆಯ ಒಳಗೆ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
msgid "Operation was cancelled"
msgstr "ಕಾರ್ಯವು ರದ್ದುಗೊಂಡಿದೆ"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "ಗೊತ್ತಿರದ ಬಗೆ"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s ಕಡತದ ಬಗೆ"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s ಬಗೆ"
msgid "Unexpected early end-of-stream"
msgstr "ಸ್ಟ್ರೀಮ್ನ ಅನಿರೀಕ್ಷಿತ ಕ್ಷಿಪ್ರ ಅಂತ್ಯ"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "ಹೆಸರಿಸಲಾಗದ"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "ಗಣಕತೆರೆ ಕಡತವು Exec ಕ್ಷೇತ್ರವನ್ನು ಸೂಚಿಸಿಲ್ಲ"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "ಅನ್ವಯಕ್ಕೆ ಅಗತ್ಯವಿರುವ ಟರ್ಮಿನಲ್ ಅನ್ನು ಪತ್ತೆಮಾಡಲಾಗಲಿಲ್ಲ"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "ಬಳಕೆದಾರ ಅನ್ವಯ ಸಂರಚನಾ ಫೋಲ್ಡರ್ %s ಅನ್ನು ರಚಿಸಲಾಗಿಲ್ಲ: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "ಬಳಕೆದಾರ MIME ಸಂರಚನಾ ಫೋಲ್ಡರ್ %s ಅನ್ನು ರಚಿಸಲಾಗಿಲ್ಲ: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "ಬಳಕೆದಾರನ ಡೆಸ್ಕ್ಟಾಪ್ ಕಡತ %s ಅನ್ನು ತೆರೆಯಲಾಗಿಲ್ಲ"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "%s ಗಾಗಿನ ಕಸ್ಟಮ್ ವಿವರಣೆ"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "ಹೊರತಳ್ಳುವುದನ್ನು ಡ್ರೈವ್ ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "ಮಾಧ್ಯಮಕ್ಕಾಗಿ ಪೋಲ್ ಮಾಡುವುದನ್ನು ಡ್ರೈವ್ ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "ಕಾರ್ಯವು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "ಹೊಂದಿರುವ ಮೌಂಟ್ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "ಕೋಶಕ್ಕೆ ನಕಲಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "ಕೋಶವನ್ನು ಕೋಶಕ್ಕೆ ನಕಲಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "ಸೂಚಿತ ಕಡತವು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "ಕೋಶವನ್ನು ಪುನರಾವರ್ತಿತವಾಗಿ ನಕಲಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "ಅಮಾನ್ಯವಾದ ಸಿಮ್ಲಿಂಕ್ ಮೌಲ್ಯವನ್ನು ಒದಗಿಸಲಾಗಿದೆ"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "ಟ್ರ್ಯಾಶ್ ಬೆಂಬಲಿತವಾಗಿಲ್ಲ"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "ಕಡತದ ಹೆಸರುಗಳು '%c' ಅನ್ನು ಹೊಂದುವಂತಿಲ್ಲ"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "ಪರಿಮಾಣವು ಆರೋಹಿಸುವುದನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "ಈ ಪುಟವನ್ನು ನಿಭಾಯಿಸಲು ಯಾವುದೆ ಅನ್ವಯವು ಅನುಸ್ಥಾಪಿತಗೊಂಡಿಲ್ಲ"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "ಆರೋಹಣವು ಅವರೋಹಣವನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "ಆರೋಹಣವು ಹೊರತೆಗೆಯುವುದನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "ಆರೋಹಣವು ಪುನಃ ಆರೋಹಿಸುವುದನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "ಆರೋಹಣವು ಅವರೋಹಣವನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "ಪ್ರದಾನ ಸ್ಟ್ರೀಮ್ ಬರೆಯುವುದನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ"
msgid "Error closing unix: %s"
msgstr "ಯುನಿಕ್ಸ್ ಅನ್ನು ಮುಚ್ಚುವಲ್ಲಿ ದೋಷ: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "ಕಡತವ್ಯವಸ್ಥೆ ಮೂಲ"
msgid "Error writing to unix: %s"
msgstr "ಯುನಿಕ್ಸ್ಗೆ ಬರೆಯುವಲ್ಲೆ ದೋಷ: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "ಪರಿಮಾಣವು ಹೊರ ತಳ್ಳುವುದನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವುದಿಲ್ಲ"
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-06-23 07:37+0900\n"
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
"Language-Team: GNOME Korea <gnome-kr-hackers@lists.kldp.net>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "예상치 못하게 '%2$s' 엘리먼트에 '%1$s' 애트리뷰트가 있습니다"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "'%2$s' 엘리먼트에 '%1$s' 애트리뷰트가 없습니다"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "예상치 못하게 '%s' 태그가 있습니다. '%s' 태그가 있어야 합니다"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "예상치 못하게 '%2$s' 안에 '%1$s' 태그가 있습니다"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "데이터 디렉토리에 올바른 북마크 파일이 없습니다"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "'%s' URL에 대한 북마크가 이미 있습니다"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "'%s' URL에 대한 북마크가 없습니다"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "'%s' URL에 대한 북마크에 MIME 타입이 없습니다"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "'%s' URL에 대한 북마크에 개인 플래그가 없습니다"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "'%s' URL에 대한 북마크에 그룹이 설정되어 있지 않습니다"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "이름이 '%s'인 어떤 프로그램도 '%s'에 대한 북마크를 등록하지 않았습니다"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "URI '%s'을(를) 사용해 '%s' 실행줄 확장하기에 실패했습니다"
msgid "Error opening directory '%s': %s"
msgstr "디렉토리 '%s' 여는 중 오류 : %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "파일 \"%2$s\"을(를) 읽은 %1$lu 바이트를 할당할 수 없습니다"
msgid "Error reading file '%s': %s"
msgstr "파일 '%s'을(를) 읽는 중 오류: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "파일 '%s'에서 읽기 실패 : %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "파일 '%s' 열기 실패 : %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "파일 '%s'의 속성을 가져오기 실패 : fstat() 실패: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "파일 '%s' 열기 실패: fdopen() 실패: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "파일 '%s'의 이름을 '%s'(으)로 바꾸는 데 실패: g_rename() 실패: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "파일 '%s' 만들기 실패: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "파일 '%s' 쓰기 용도로 열기 실패: fdopen() 실패: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "파일 '%s' 쓰기 실패: fwrite() 실패: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "파일 '%s' 닫기 실패: fclose() 실패: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "기존의 '%s' 파일을 지울 수 없습니다: g_unlink() 실패: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "템플리트 '%s'이(가) 잘못되었습니다, '%s'이(가) 들어 있으면 안 됩니다"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "템플리트 '%s'에 XXXXXX가 없습니다"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "심볼릭 링크 '%s' 읽기 실패: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "심볼릭 링크를 지원하지 않습니다"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "파일 '%s' 매핑 실패: mmap() 실패: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "%d째 줄 %d 문자에서 오류: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "%d째 줄에서 오류: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"' 입니다"
# FIXME: "escape"라는 동사를 번역?
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"작합니다. 이 & 기호가 엔티티에 사용되는 것이 아닌 경우에는, & 라고 쓰십"
"시오"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "문자 '%s'은(는) 엔티티 이름에서 올바르지 않습니다"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "엔티티 이름 '%s'이(가) 알려져 있지 않습니다"
# FIXME: "escape"라는 동사를 번역?
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"고 하지 않은 곳에서 & 기호를 사용한 경우일 것입니다 - 이런 경우 & 라고쓰"
"십시오"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"'%-.*s'의 구문 해석에 실패했습니다. 문자 참조에는 숫자를 써야 합니다 (예를 "
"들어 ê) - 숫자가 너무 클 수도 있습니다"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "문자 참조 '%-*s'에 대응되는 문자는 허용되지 않습니다"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "문자 참조가 비어 있습니다; dž처럼 숫자를 써야 합니다"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"려고 하지 않은 곳에서 & 기호를 사용한 경우일 것입니다 - 이런 경우 & 라고"
"쓰십시오"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "엔티티 참조가 미완성입니다"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "문자 참조가 미완성입니다"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "잘못된 UTF-8 인코딩된 텍스트 - 너무 시퀀스가 깁니다"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "잘못된 UTF-8 인코딩된 텍스트 - 시작 문자가 아닙니다"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "잘못된 UTF-8 인코딩된 텍스트 - '%s' 부분이 올바르지 않습니다"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "문서는 엘리먼트로 시작하여야 합니다 (예 <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s'은(는) '<' 문자 다음에 쓸 수 없습니다; 이 문자로는 엘리먼트 이름을 시작"
"할 수 없습니다"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"이상한 문자 '%s'. 엘리먼트 '%s'의 시작태그를 끝내는 '>'가 나타나야 합니다"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"이상한 문자 '%1$s'. 엘리먼트 '%3$s'의 애트리뷰트 이름 '%2$s' 다음에 '='이 나"
"타나야 합니다"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"나, 애트리뷰트가 나와야 합니다; 아마도 애트리뷰트 이름에 잘못된 문자를 쓴 경"
"우일 것입니다"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"이상한 문자 '%1$s'. 엘리먼트 '%3$s'의 애트리뷰트 '%2$s'의 값을 부여할 때 = "
"기호 다음에 따옴표가 나타나야 합니다"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s'은(는) '</' 다음에 쓸 수 있는 문자가 아닙니다; '%s'은(는) 엘리먼트 이름"
"을 시작할 수 없습니다"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s'은(는) 엘리먼트 '%s'을(를) 닫은 다음에 쓸 수 있는 문자가 아닙니다; '>' 문"
"자를 쓸 수 있습니다"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "'%s' 엘리먼트는 닫혔고, 현재 아무 엘리먼트도 열려 있지 않습니다"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "'%s' 엘리먼트는 닫혔고, 현재 열려 있는 엘리먼트는 '%s'입니다"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "문서가 비어있거나 공백문자만 들어 있습니다"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "'<' 바로 다음에 문서가 갑작스럽게 끝났습니다"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"엘리먼트가 열려 있는 상태로 문서가 갑작스럽게 끝났습니다 - 마지막에 열려 있"
"던 엘리먼트는 '%s'입니다"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
msgstr ""
"문서가 갑작스럽게 끝났습니다. <%s/> 태그를 끝내는 > 기호가 나타나야 합니다"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "엘리먼트 이름에서 문서가 갑작스럽게 끝났습니다"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "에트리뷰트 이름에서 문서가 갑작스럽게 끝났습니다"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "엘리먼트의 열기 태그 안에서 문서가 갑작스럽게 끝났습니다."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"애트리뷰트 이름 다음의 = 기호 다음에서 문서가 갑작스럽게 끝났습니다; 애트리뷰"
"트 값이 없습니다"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "애트리뷰트 값 안에서 문서가 갑작스럽게 끝났습니다"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "엘리먼트 '%s'의 닫기 태그 안에서 문서가 갑작스럽게 끝났습니다"
# FIXME: processing instruction?
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "주석문 혹은 처리 안내자 태그 안에서 문서가 갑작스럽게 끝났습니다"
msgid "Operation was cancelled"
msgstr "동작이 취소되었습니다"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "알 수 없는 종류"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s 파일종류"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s 종류"
msgid "Unexpected early end-of-stream"
msgstr "예기치 않게 일찍 스트림이 끝났습니다"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "이름없음"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "desktop 파일에 Exec 필드를 지정하지 않았습니다"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "프로그램에 필요한 터미널을 찾을 수 없습니다"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "사용자 프로그램 설정 폴더(%s)를 만들 수 없습니다: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "사용자 MIME 설정 폴더(%s)를 만들 수 없습니다: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "%s 사용자 desktop 파일을 만들 수 없습니다"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "%s에 대한 사용자 설정 정의"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "드라이브가 eject를 구현하지 않았습니다"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "드라이브가 미디어의 폴링을 구현하지 않았습니다"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "동작을 지원하지 않습니다"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "들어 있는 마운트가 없습니다"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "디렉토리를 덮어 써서 복사할 수 없습니다"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "디렉토리를 덮어 써서 디렉토리를 복사할 수 없습니다"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "대상 파일이 있습니다"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "디렉토리를 재귀적으로 복사할 수 없습니다"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "잘못된 심볼릭 링크 값이 주어졌습니다"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "휴지통을 지원하지 않습니다"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "파일 이름에 '%c' 문자가 들어갈 수 없습니다"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "볼륨이 mount를 구현하지 않았습니다"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "이 파일을 처리하는 프로그램을 아무 것도 등록하지 않았습니다"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "마운트가 unmount를 구현하지 않았습니다"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "마운트가 eject를 구현하지 않았습니다"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "마운트가 remount를 구현하지 않았습니다"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "마운트가 unmount를 구현하지 않았습니다"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "출력 스트림이 write를 구현하지 않았습니다"
msgid "Error closing unix: %s"
msgstr "유닉스 소켓을 닫는 중 오류: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "파일 시스템 루트"
msgid "Error writing to unix: %s"
msgstr "유닉스 소켓에 쓰는 중 오류: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "볼륨이 eject를 구현하지 않았습니다"
msgstr ""
"Project-Id-Version: glib.glib-2-8\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.10\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Vekirina dosiya '%s' serneket: %s"
msgid "Error opening directory '%s': %s"
msgstr ""
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr ""
msgid "Error reading file '%s': %s"
msgstr "Di xwendina dosyeya '%s' de çewtî: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr ""
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Vekirina dosiya '%s' serneket: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr ""
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr ""
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr ""
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr ""
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr ""
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr ""
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr ""
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr ""
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Di rêza %d tîpa %d de çewtî: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Di rêza %d de çewtî: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"it as &"
msgstr ""
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr ""
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr ""
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
msgstr ""
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (ê for example) - perhaps the digit is too large"
msgstr ""
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr ""
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"as &"
msgstr ""
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr ""
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr ""
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr ""
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr ""
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr ""
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr ""
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr ""
-#: glib/gmarkup.c:1184
+#: glib/gmarkup.c:1266
#, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"character in an attribute name"
msgstr ""
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, 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:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
msgstr ""
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
msgstr ""
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr ""
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr ""
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr ""
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr ""
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr ""
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "Vebijêrka nenas %s"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr ""
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr ""
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Di rêza %d de çewtî: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Di xwendina dosyeya '%s' de çewtî: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: lt\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-11 12:44+0200\n"
"Last-Translator: Žygimantas Beručka <zygis@gnome.org>\n"
"Language-Team: Lithuanian <gnome-lt@lists.akl.lt>\n"
"100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: KBabel 1.11.4\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Netikėtas požymis „%s“ elementui „%s“"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Elemento „%2$s“ požymis „%1$s“ nerastas"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Netikėta žymė „%s“, tikėtasi žymės „%s“"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Netikėta žymė „%s“ viduje „%s“"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "Duomenų aplankuose nerasta tinkamo žymelių failo"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI „%s“ žymelė jau egzistuoja"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Žymelė URI „%s“ nerasta"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI „%s“ žymelėje neapibrėžtas MIME tipas"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI „%s“ žymelėje neapibrėžta privati vėliavėlė"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI „%s“ žymelėje nenurodyta jokia grupė"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Nėra programos pavadinimu „%s“ registravusios „%s“ žymelę"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Nepavyko išskleisti vykdomosios eilutės „%s“ su URI „%s“"
msgid "Error opening directory '%s': %s"
msgstr "Klaida atidarant aplanką „%s“: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Nepavyko paskirti %lu baitų reikalingų perskaityti failą „%s“"
msgid "Error reading file '%s': %s"
msgstr "Klaida skaitant failą „%s“: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Nepavyko perskaityti failo „%s“: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Nepavyko atverti failo „%s“: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Nepavyko gauti failo „%s“ požymių: fstat() klaida: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Nepavyko atverti failo „%s“: fdopen() klaida: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Nepavyko pervadinti failo „%s“ į „%s“: g_rename() klaida: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Nepavyko sukurti failo „%s“: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Nepavyko atverti failo „%s“ rašymui: fdopen() klaida: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Nepavyko įrašyti failo „%s“: fwrite() klaida: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Nepavyko užverti failo „%s“: fclose() klaida: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Nepavyko pašalinti egzistuojančio failo „%s“: g_unlink() failed: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Šablonas „%s“ klaidingas, jame negali būti „%s“"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Šablone „%s“ nėra XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Nepavyko perskaityti simbolinės nuorodos „%s“: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Simbolinės nuorodos nepalaikomos"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Nepavyko rasti failo „%s“: mmap() klaida: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Klaida eilutėje %d simbolyje %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Klaida eilutėje %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Aptiktas tuščias elementas '&;'; galimi elementai yra: & " < "
"> '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"elemento įvedimą; jei šis ampersendas nėra elemento pradžia, apeikite jį su "
"&"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Simbolis „%s“ nepriimtinas elemento varde"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Nežinomas elemento vardas „%s“"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Elementas nepasibaigė kabliataškiu; greičiausiai Jūs panaudojote ampersendo "
"simbolį nepradėdami elemento įvedimo - apeikite ampersendą įvesdami &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Nepavyko apdoroti „%-.*s“, kuris galėjo turėti skaičius simbolio aprašyme "
"(pvz. ê) - gal skaičius per didelis"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Simbolio aprašymas „%-.*s“ neatitinka leistinus simbolius"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Tuščias simbolio aprašymas; ten turėtų būti skaičiai, pvz. dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"ampersendo simbolį nepradėdami elemento įvedimo - apeikite ampersendą "
"įvesdami &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Nebaigtas elemento aprašymas"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Nebaigtas simbolio aprašymas"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Klaidingai koduotas UTF-8 tekstas – per ilga seka"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Klaidingai koduotas UTF-8 tekstas – ne pradžios simbolis"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Klaidingai koduotas UTF-8 tekstas – netinkamas „%s“"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumentas turėtų prasidėti elementu (pvz. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
msgstr ""
"„%s“ negali būti rašomas po „<“ simbolio; jis nepradeda jokio elemento vardo"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Neįprastas simbolis „%s“, tikėtasi sulaukti „>“ simbolio, užbaigiančio "
"pradinį elementą „%s“"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Neįprastas simbolis „%1$s“, tikėtasi sulaukti „=“ po elemento „%3$s“ požymio "
"vardo „%2$s“"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"užbaigiančių elementą „%s“, arba papildomo požymio; gal Jūs panaudojote "
"netinkama simbolį požymio varde"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"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:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"„%s“ negali būti rašomas po simbolių „</“; „%s“ negali būti kokio nors "
"elemento vardu"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"„%s“ negali būti rašomas po uždarančio elemento vardo „%s“; leistinas "
"simbolis yra „>“"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokumentas tuščias arba susideda tik iš tarpų"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokumentas netikėtai pasibaigė tuoj po atidarančių skliaustų '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Dokumentas netikėtai pasibaigė neuždarius dalies elementų - „%s“ yra "
"paskutinis atviras elementas"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Dokumentas netikėtai pasibaigė, nesulaukta uždarančių skliaustų simbolio <%s/"
">"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumentas netikėtai pasibaigė elemento varde"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokumentas netikėtai pasibaigė požymio varde"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokumentas netikėtai pasibaigė elemento atvėrimo žyme."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Dokumentas netikėtai pasibaigė lygybės simboliu einančio po požymio vardo; "
"nerasta požymio reikšmė"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokumentas netikėtai pasibaigė požymio verte"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokumentas netikėtai pasibaigė komentaruose arba apdorojimo instrukcijose"
msgid "Operation was cancelled"
msgstr "Operacija nutraukta"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Nežinomas tipas"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s failo tipos"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s tipas"
msgid "Unexpected early end-of-stream"
msgstr "Netikėta ankstyva srauto pabaiga"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Nepavadinta"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Darbalaukio failas nenurodė Exec lauko"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Nerastas terminalas, reikalingas programai"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "Nepavyko sukurti naudotojo nustatymų aplanko %s: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Nepavyko sukurti naudotojo MIME nustatymų aplanko %s: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Nepavyko sukurti naudotojo darbalaukio failo %s"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Specialus apibrėžimas %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "įrenginys nerealizuoja išstūmimo"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "įrenginys nerealizuoja laikmenos tikrinimo užklausimo"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Operacija nepalaikoma"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Tėvinis prijungimo taškas neegzistuoja"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Negalima kopijuoti ant aplanko"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Negalima kopijuoti aplanko ant aplanko"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Nurodytas failas jau egzistuoja"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Negalima rekursyviai kopijuoti aplanko"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Netaisyklinga simbolinės nuorodos reikšmė"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Šiukšlės nepalaikomos"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Failų varduose negali būti '%c'"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "skirsnis nepalaiko prijungimo"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Nėra programos, priregistruotos kaip skaitančios šį failą"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "prijungimo taškas nepalaiko atjungimo"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "prijungimo taškas nepalaiko išstūmimo"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "prijungimo taškas nepalaiko prijungimo iš naujo"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "prijungimo taškas nepalaiko atjungimo"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Išvedimo srautas nepalaiko rašymo"
msgid "Error closing unix: %s"
msgstr "Klaida užveriant unix: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Failų sistemos šaknis"
msgid "Error writing to unix: %s"
msgstr "Klaida rašant į unix: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "skirsnis nerealizuoja išstūmimo"
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, fuzzy, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
"Savāda rakstzīme '%s', gaidīju '=' aiz atribūta nosaukuma '%s' elementam '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Neizdevās izveidot failu '%s': %s"
msgid "Error opening directory '%s': %s"
msgstr "Kļūda atverot direktoriju '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Nevarēju atrast %lu baitus, lai nolasītu failu \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Kļūda nolasot failu '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Nespēju nolasīt no faila '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Nevarēju atvērt failu '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Nevarēju dabūt faila '%s' atribūtus: fstat() neizdevās: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Nevarēju atvērt '%s': fdopen() neizdevās: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, fuzzy, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Nevarēju atvērt '%s': fdopen() neizdevās: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Neizdevās izveidot failu '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, fuzzy, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Nevarēju atvērt '%s': fdopen() neizdevās: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, fuzzy, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Nevarēju atvērt '%s': fdopen() neizdevās: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, fuzzy, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Nevarēju atvērt '%s': fdopen() neizdevās: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Veidne '%s' nepareizs, nedrīkstētu saturēt '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Veidne '%s' nebeidzas ar XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, fuzzy, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Neizdevās izveidot failu '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr ""
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Nevarēju atvērt '%s': fdopen() neizdevās: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Kļūda rindā %d rakstzīme %d: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Kļūda rindā %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Pamanīta tukša entītija '&;'; derīgas entītijas ir: & " < > "
"'"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"entītiju; ja šī zīme netiek atbalstīta, lai būtu entītija, aizvieto to ar "
"&"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entītijas nosaukums \"%s\" nav zināms"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"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 &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, fuzzy, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Nevarēju parsēt '%s', kur vajadzētu būt ciparam iekš rakstzīmes atsauces "
"(ê piemēram) - iespējams, ka cipars ir pārāk liels"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Tukša rakstzīmes atsauce; būtu jāiekļauj cipars, kā dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"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 &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Nepabeigta entītijas atsauce"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Nepabeigta rakstzīmes atsauce"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Nepareizi kodēts UTF-8 teksts"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Nepareizi kodēts UTF-8 teksts"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Nepareizi kodēts UTF-8 teksts"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumentam jāsākās ar elementu (piem., <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' nav atļauta rakstzīme, sekojoša aiz rakstzīmes '<'; tā nedrīkst iesākt "
"elementa vārdu."
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Savāda rakstzīme '%s', gaidīju '>' rakstzīmi, kas nobeigtu sākuma tagu "
"elementam '%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, 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:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"tagu elementam '%s' vai fakultatīvi atribūtu; iespējams, jūs lietojāt "
"nepareizu rakstzīmi atribūta nosaukumā"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"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:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' nav derīga rakstzīme, sekojot rakstzīmēm '</'; '%s' nevar sākt elementa "
"nosaukumu"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' nav derīga rakstzīme, sekojot aizverošā eementa nosaukumam '%s'; "
"atļautā rakstzīme ir '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokuments bija tukšs vai saturēja tikai tukšu atstarpi"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
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:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Dokuments negaidīti izbeidzās ar joprojām atvērtiem elementiem - '%s' bija "
"pēdējais atvērtais elements"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Dokuments negaidīti izbeidzās, cerēju ieraudzīt aizverošo stūra iekavu, "
"beidzoties ar tagu <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokuments negaidīti izbeidzās iekšā elementa nosaukumā"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokuments negaidīti izbeidzās iekšā atribūta nosaukumā"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokuments negaidīti izbeidzās elementa-atverošajā tagā."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Dokuments negaidīti izbeidzās aiz vienādības zīmes, sekojot atribūta "
"nosaukumam; nav atribūta vētības"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
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:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokuments negaidīti izbeidzās iekšā komentārā vai apstrādes instrukcijā"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr ""
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr ""
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr ""
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Kļūda rindā %d: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Kļūda konversējot: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: GLIB VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Marika manokana '%s' ho an'ny '%s' tsy nampoizina"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Tsy hita ny marika manokana '%s' ho an'ny '%s'"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Tsy nampoizina ny taf '%s', nantenaina ny tag '%s'"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Misy tag '%s' tsy nampoizina anatin'ny '%s'"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "Tsy misy raki-drohy mitombina anatin'ny lahatahiry misy ny data"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Efa misy rohy ny URI '%s'"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Tsy nahitana rohy ny URI '%s'"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Tsy misy karazana MIME voafaritra ho an'ny rohin'ny URI '%s'"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Tsy misy saina manokana voafaritra ho an'ny rohin'ny URI '%s'"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Tsy misy vondrona voafaritra ho an'ny rohin'ny URI '%s'"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
"Tsy misy rindranasa mitondra ny anarana '%s' nanambara rohy ho an'ny '%s'"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Tsy voavaky ny rohy misolotena '%s': %s"
msgid "Error opening directory '%s': %s"
msgstr "Nisy olana teo am-panokafana ny lahatahiry '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Tsy nahatokana %lu byte hamakiana ny rakitra \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Nisy olana teo am-pamakiana ny rakitra '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Ny nahavaky ny mpiatin'ny rakitra '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Tsy voasokatran y rakitra '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Tsy azo ny marika manokan'ny rakitra '%s': tsy nahomby ny fstat(): %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Tsy voasokatra ny rakitra '%s': tsy nahomby ny fdopen(): %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"Tsy voaova ny anaran'ny rakitra '%s' mba ho '%s': tsy nahomby ny g_rename(): "
"%s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Tsy voaforona ny rakitra '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
"Tsy voasotra mba hanoratana ny rakitra '%s': tsy nahomby ny fdopen(): %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Tsy voasoratra ny rakitra '%s': tsy nahomby ny fwrite(): %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Tsy voahidy ny rakitra '%s': tsy nahomby ny fclose(): %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Tsy mety fafàna ny rakitra '%s' misy: tsy nahomby ny g_unlink(): %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Tsy mitombina ny lasitra '%s'; tsy tokony hisy '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Tsy misy XXXXXX ny lasitra '%s'"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Tsy voavaky ny rohy misolotena '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Tsy raisina an-tànana ny rohy misolotena"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Tsy voamap ny rakitra '%s': tsy nahomby ny mmap(): %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Misy tsy fetezana amin'ny andalana %d marika %d: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Misy tsy fetezana amin'ny andalana %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Nahita ary '&;' foana; ireto no fidirana ekena: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"anaran'ny ary. Raha toa ka tsy raisin'ny ary iray an-tànana io marika io "
"(&), dia ataovy & mba ialana izany"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Tsy fantatra ny anaran'ary '%s'"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"hampiasa esperluette hanombohana ary angamba ianao - esperluette fialana toy "
"ny &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Tsy voazarazara ny '%-.*s' izay tokony ho isa anaty fiantsoana marika "
"(ê, ohatra). Mety lehibe loatra angamba ilay isa."
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Fiantsoana marika foana; tokony hisy isa toy ny dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"nihevitra hampiasa esperluette hanombohana ary angamba ianao - esperluette "
"fialana toy ny &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Fiantsoana ary tsy vita"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Fiantsoana marika tsy vita"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Lahabolana voafango UTF-8 tsy mitombina"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Lahabolana voafango UTF-8 tsy mitombina"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Lahabolana voafango UTF-8 tsy mitombina"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr ""
"Tsy maintsy manomboka amina singantaharo ilay tahirin-kevitra (oh. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"Tsy mety atao aorian'ny marika '<' ny marika '%s'. Tsy mety anombohana "
"anaran-tsingataharo io"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Marika '%s' hafahafa; nanantena marika '>' hamarana ny tag manomboka ny "
"singantaharo '%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Marika '%s' hafahafa; nanantena '=' aorian'ny anaran'ny marika manokana '%s' "
"amin'ny singantaharo '%s'"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"ny singantaharo '%s', na koa marika manokana iray. Mety nampiasa marika tsy "
"ekena amin'ny anarana marika manokana angamba ianao."
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Marika '%s' hafahafa; nanantena farango manokatra aorian'ny mira rehefa "
"manome ny sanda ny marika manokana '%s' amin'ny singantaharo '%s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"Tsy mety atao aorian'ny marika '</' ny marika '%s'. Tsy mety anombohana "
"anaran-tsingantaharo ny '%s'."
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' dia tsy mety atao aorian'ny anaran'ny singantaharo mamarana ny marika '%"
"s'. '>' no marika mety atao eo"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Foana na tsy misy afa-tsy elanelana ilay tahirin-kevitra"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Nifarana tampoka taoriana fonon-teny kitso loha '<' ilay tahirin-kevitra"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Nifarana tampoka ilay tahirin-kevitra nefa misy singantaharo mbola "
"misokatra; '%s' no singantaharo farany nisokatra"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Nifarana tampoka ilay singantaharo; nanantena fonon-teny kitso loha mamarana "
"ny tag <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Nifarana tampoka tanaty anaran-tsingataharo ilay tahirin-kevitra"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Nifarana tampoka tanaty anarana marika manokana ilay tahirin-kevitra"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"Nifarana tampoka tanaty tag manomboka singantaharo ilay tahirin-kevitra."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Nifarana tampoka taorian'ny mira manaraka anarana marika manokana ilay "
"tahirin-kevitra; tsy misy sanda-marika manokana"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
"Nifarana tampoka ilay tahirin-kevitra raha mbola tanaty sanda-marika manokana"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Nifarana tampoka tanaty teny fanampiny na torolàlana fikirakirana ilay "
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "Safidy %s tsy fantatra"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "Tsy raisina an-tànana ny rohy misolotena"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Tsy raisina an-tànana ny rohy misolotena"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
#, fuzzy
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Misy tsy fetezana amin'ny andalana %d: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Nisy olana teo am-pizarazarana ny safidy %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib.HEAD.mk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Plural-Forms: nplurals=3; plural= n%10==1 && n%100!=11 ? 0 : 1\n"
"X-Generator: KBabel 1.11.4\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Неочекуван атрибут „%s“ за елементот „%s“"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Атрибутот „%s“ на елементот „%s“ не е пронајден"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Неочекувана етикета „%s“, се очекуваше „%s“"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Неочекувана етикета „%s“ во „%s“"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
"Не е пронајдена валидна датотека за обележувач во дирекориумите со податоци"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Обележувач за URI „%s“ веќе постои"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Не е пронајден обележувач за URI „%s“"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Не е дефиниран MIME тип во обележувачот за URI „%s“"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Не е дефинирано приватно знаме за обележувачот за URI „%s“"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Не се поставени групи во обележувачот за URI „%s“"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Нема апликација со име „%s“ која регистрирала обележувач за „%s“"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Не успеав да ја проширам линијата за извршување „%s“ со URI „%s“"
msgid "Error opening directory '%s': %s"
msgstr "Грешка при отворање на директориумот „%s“: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Не можам да алоцирам %lu бајти за да ја прочитам датотеката \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Грешка при читањето на датотеката „%s“: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Не успеав да прочитам од датотеката „%s“: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Не успеав да ја отворам датотеката „%s“: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
"Не успеав да ги добијам атрибутите на датотеката „%s“: fstat() failed: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Не успеав да ја отворам датотеката „%s“: fdopen() failed: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"Не успеав да ја реименувам датотеката „%s“ во „%s“: g_rename() не успеа: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Не успеав да ја креирам датотеката „%s“: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
"Не успеав да ја отворам датотеката „%s“ за запишување: fdopen() не успеа: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Не успеав да запишам во датотеката „%s“: fwrite() не успеа: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Не успеав да ја затворам датотeката „%s“: fclose() не успеа: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
"Постоечката датотека „%s“ не може да биде отстранета: g_unlink()·не успеа "
"за: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Мострата „%s“ е невалидна, не треба да содржи „%s“"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Мострата „%s“ не содржи со XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Не успеав да ја прочитам симболичката врска „%s“: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Симболичките врски не се поддржани"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Не успеав да ја означам датотеката „%s“: mmap() не успеа: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Грешка на линија %d знак %d"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Грешка на линија %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Празен ентитет '&;' видени; валидни ентитети се: & " < > "
"'"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"Карактерот „%s“ претставува невалиден почеток на име на ентитет, карактерот "
"& го започнува ентитетот;"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Карактерот „%s“ не е валиден внатре во името на ентитетот"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Името на ентитетот „%s“ е познато"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Ентитетот не заврши со полуколоната; најверојатно сте користеле симбол без "
"намера да започнете ентитет - избегнете го симболот со &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"внатрешен дигитален карактер (на пример, ê) - најверојатно бројот е "
"преголем"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Параметарот на карактерот '%-.*s' не енкодира забранет карактер"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Параметар за празен карактер; треба да содржи бројка како што е dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"користеле симбол без намера да започнете ентитет - одбегнете го симболот со "
"&"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Недовршен параметар за ентитет"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Недовршен параметар за карактер"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Невалиден UTF-8 енкодиран текст - предолга секвенца"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Невалиден UTF-8 енкодиран текст - нема почетен знак"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Невалиден UTF-8 енкодиран текст - невалидно „%s“"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Документите мора да започнуваат со елемент (пр. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
msgstr ""
"„%s“ не е валиден карактер по '<' карактер; не може да започне име на елемент"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Чуден карактер „%s“, очекував '>' карактер да го заврши почетниот таг на "
"елементот „%s“"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Чуден карактер „%s“, очекував '=' по името на атрибутот „%s“ од елементот '%"
"s'"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"Чуден карактер „%s“, очекував '>' или '/' за да го затворам почетниот таг на "
"елементот „%s“; можеби сте користеле невалиден карактер во името на атрибутот"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Чуден карактер „%s“, се очекува отворен забележан цитат по еднаквите знаци "
"кога се даваат вредности за атрибутот „%s“· од елементот „%s“·"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"„%s“ не е валиден карактер, по карактерите </';·„%s“·не може да започне име "
"на елемент"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"„%s“·не е валиден карактер што би можел да доје по името на елементот „%s“, "
"дозволениот карактер е '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Елементот „%s“ е затворен. Во моментов не е отворен ниеден елемент"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Елементот „%s“ е затворен, но тековно отворениот елемент е „%s“"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Документот е празен или содржи само празни места"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Документот заврши неочекувано веднаш по заградата за отворениот агол '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Документот заврши неочекувано со сеуште отворени елементи - „%s“ беше "
"последниот отворен елемент"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Документот заврши неочекувано, очекував да видам го видам аголот на "
"заградата за затворање на тагот <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Документот заврши неочекувано внатре во иметп на елементот"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Документот заврши неочекувано внатре во името на атрибутот"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Документот заврши неочекувано внатре во тагот за отворање на елементи."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr "Нема вредност за атрибутот"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
"Документот заврши неочекувано додека беше внатре во вредноста на атрибутот"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Документот заврши неочекувано внатре во тагот за затворање на елементи „%s“"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Документот заврши неочекувано внатре во коментар или инструкција за "
msgid "Operation was cancelled"
msgstr "Операцијата беше прекината"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Непознат тип"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s тип на датотека"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s тип"
msgid "Unexpected early end-of-stream"
msgstr "Неочекувано прерано завршување на стрим"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Неименувано"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Desktop датотеката не одреди Exec поле"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "не успеав да најдам терминал потребен за апликација"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
"Не можам да креирам папка за конфигурација на корисничките апликации %s: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Не можам да креирам папка за MIME конфигурации %s: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Не можам да креирам корисничка desktop датотека %s"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Сопствена дефиниција на %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "уредот нема имплементирано вадење"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "уредот нема имплементирано барање за медиум"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Операцијата не е поддржана"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Монтирањето кое се содржи не постои"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Не можам да копирам над директориум"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Не можам да копирам директориум над директориум"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Целната датотека постои"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Не можам рекурзивно да го ископирам директориумот"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Дадена е невалидна вредност за симболичката врска"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Ѓубрето не е поддржано"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Имињата на датотеки не можат да содржат „%c“"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "просторот нема имплементирано монтирање"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Не е регистрирана апликација за справување со оваа датотека"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "mount нема имплементирано одмонтирање"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "mount нема имплементирано вадење"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "mount нема имплементирано запишување"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "mount нема имплементирано одмонтирање"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Излезниот стрим нема имплементирано запишување"
msgid "Error closing unix: %s"
msgstr "Грешка во затворањето на unix: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Root на датотечниот систем"
msgid "Error writing to unix: %s"
msgstr "Грешка во запишувањето на unix: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "просторот нема имплементирано вадење"
msgstr ""
"Project-Id-Version: glib.HEAD.ml\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-03 17:37+0530\n"
"Last-Translator: Ani Peter <apeter@redhat.com>\n"
"Language-Team: Malayalam <smc-discuss@googlegroups.com>\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "r'%s' എലമെന്റിന് അപ്രതീക്ഷിതമായ സവിശേഷത '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "എലമെന്റ് '%s'-ന്റെ സവിശേഷതയായ '%s' കണ്ടുകിട്ടിയില്ല"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "അപ്രതീക്ഷിതമായ ടാഗ് '%s', ടാഗ് '%s' പ്രതീക്ഷിച്ചിരുന്നു"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "'%s'-ന്റെ ഉളളില് അപ്രതീക്ഷിതമായ ടാഗ് '%s'"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "ഡേറ്റാ ഡയറക്ടറികളില് സാധുതയുളള ബുക്ക് മാര്ക്ക് കണ്ടുകിട്ടിയില്ല"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI '%s'-നുളള ബുക്ക് മാര്ക്ക് നിലവിലുണ്ട് "
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "URI '%s'-നുളള ബുക്ക് മാര്ക്ക് ലഭ്യമല്ല"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI '%s'-നുളള ബുക്ക് മാര്ക്കില് MIME തരം വ്യക്തമാക്കിയിട്ടില്ല"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI '%s'-നുളള ബുക്ക് മാര്ക്കില് സ്വകാര്യ ഫ്ളാഗ് വ്യക്തമാക്കിയിട്ടില്ല"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI '%s'-നുളള ബുക്ക് മാര്ക്കില് ഗ്രൂപ്പുകളൊന്നും ക്രമീകരിച്ചിട്ടില്ല"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "'%s' എന്ന് പേരുളള ഒരു പ്രയോഗവും '%s'-നുളള ബുക്ക് മാര്ക്കില് രജിസ്ടര് ചെയ്തിട്ടില്ല"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "'%s' എന്ന URI ഉളള '%s' എന്ന exec വരി വികസിപ്പിക്കുന്നതില് പരാജയപ്പെട്ടു"
msgid "Error opening directory '%s': %s"
msgstr "ഡയറക്ടറി '%s' തുറക്കുന്നതില് പിശക്: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "%lu ബൈറ്റ്സ് ഫയല് \"%s\" വായിക്കുന്നതിനായി നീക്ക് വയ്ക്കുവാന് സാധ്യമല്ല"
msgid "Error reading file '%s': %s"
msgstr "%s വായിക്കുന്നതില് പരാജയം : %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "ഫയല് '%s'-ല് നിന്നും വായിക്കുന്നതില് പരാജയം: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "%s തുറക്കുന്നതില് പരാജയം : %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "%s-ന്റെ വിശേഷതകള് കണ്ടെത്തുന്നതില് പരാജയം: fstat() പരാജയപ്പെട്ടു: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "'%s' തുറക്കുന്നതില് പരാജയം: fdopen() പരാജയപ്പെട്ടു: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"ഫയല് '%s'-ന്റെ പേര് '%s' ആയി മാറ്റുന്നതില് പരാജയപ്പെട്ടു: g_rename() പരാജയപ്പെട്ടു: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "ഫയല് '%s' സൃഷ്ടിക്കുന്നതില് പരാജയം: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "എഴുതുന്നതിനായി '%s' തുറക്കുവാന് പരാജയപ്പെട്ടു: fdopen() പരാജയപ്പെട്ടു: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "ഫയല് '%s' എഴുതുവാന് പരാജയപ്പെട്ടു: fwrite() പരാജയപ്പെട്ടു: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "ഫയല് '%s' അടയ്ക്കുന്നതില് പരാജയപ്പെട്ടു: fclose() പരാജയപ്പെട്ടു: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "നിലവിലുളള ഫയല് '%s' നീക്കം ചെയ്യുവാന് സാധ്യമല്ല: g_unlink() പരാജയപ്പെട്ടു: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "ടെംപ്ളേറ്റ് \"%s\" അസാധുവാണ്,ഇതില് \"%s\" ഉണ്ടാകുവാന് പാടില്ല"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "ടെംപ്ളേറ്റ് \"%s\"-ല് XXXXXX ലഭ്യമല്ല"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "സിബോളിക്ക് ലിങ്ക് '%s' വായിക്കുന്നതില് പരാജയപ്പെട്ടു: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "സിബോളിക്ക് ലിങ്ക് പിന്തുണയ്ക്കുന്നില്ല"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "ഫയല് '%s' മാപ്പ് ചെയ്യുന്നതില് പരാജയപ്പെട്ടു: mmap() പരാജയപ്പെട്ടു: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "%d-ആം വരിയില് %d-ആം അക്ഷരത്തില് പിശക്:"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "വരി %d-ല് പിശക്: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"ശൂന്യമായ എന്റിന്റി '&;' കണ്ടു; അനുവദനീയമായവ ഇവയാണ്: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"%sല് ഒരു എന്റിന്റി തുടങ്ങാവുന്നതല്ല. & എന്ന അക്ഷരം ഒരു എന്റിന്റിയുടെ തുടക്കം കുറിക്കുന്നു. & ഒരു "
"എന്റിന്റിഅല്ലെങ്കില് & എന്ന് പ്രത്യേകം സൂചിപ്പിക്കുക"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "'%s' എന്ന അക്ഷരത്തിന് എന്റിന്റിയുടെ പേരിനുള്ളില് സാധുതയില്ല"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "എന്റിന്റി നാമം '%s' അപരിചിതമാണ്"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"എന്റിന്റി ഒരു അര്ദ്ധവിരാമത്തില് അവസാനിക്കുന്നില്ല. & എന്ന അക്ഷരം അറിയാതെ ഉള്ക്കൊളളാന് "
"ഇടയായോ? & ഒരു എന്റിന്റി അല്ലെങ്കില് & എന്ന് പ്രത്യേകം സൂചിപ്പിക്കുക"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"'%-.*s' പാഴ്സ് ചെയ്യുന്നതില് പരാജയപ്പെട്ടു, ഇത് അക്ഷര റഫറന്സിനുളളില് ഒരു അക്കം ആയിരിക്കണമാരുന്നു "
"(ê ഉദാഹരണത്തിന്) - ഒരു പക്ഷേ അക്കം വളരെ വലുതാവാം"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
"അക്ഷരത്തിന്റെ സൂചനയായ '%-.*s' ഒരു അനുവദനീയമായ രഹസ്യ അക്ഷരത്തിലേക്കല്ല വേര്തിരിക്കുന്നത്"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "ശൂന്യമായ അക്ഷര സൂചനാ; dž പോലുളള അക്കം ഉല്പ്പെടുത്തേണ്ടതാണ്;"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"അക്ഷരസൂചകം ഒരു അര്ദ്ധവിരാമത്തില് അവസാനിക്കുന്നില്ല. & എന്ന അക്ഷരം അറിയാതെ ഉള്ക്കൊളളാന് "
"ഇടയായോ? & ഒരു സത്ത അല്ലെങ്കില് & എന്ന് പ്രത്യേകം സൂചിപ്പിക്കുക"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "പൂര്ണ്ണമാകാത്ത എന്റിന്റി സൂചനാ"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "പൂര്ണ്ണമാകാത്ത അക്ഷര സൂചനാ"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr ""
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr ""
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "സാധുതയില്ലാത്ത UTF-8 രഹസ്യ വാചകം - '%s' തെറ്റാകുന്നു"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "രേഖ തുടങ്ങേണ്ടത് ഒരു എലമെന്റിലാണ് (ഉദാ <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
msgstr ""
"'<' അക്ഷരത്തിന് പിന്നിലുളള '%s' ഒരു അസാധുവായ അക്ഷരമാണ്; ഇത് ഒരു എലമെന്റ് പേര് തുടങ്ങില്ല"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"ഓഡ് അക്ഷരം '%s', എലമെന്റ് '%s' ആരംഭിക്കുന്ന ടാഗ് അവസാനിക്കേണ്ടത് '>' അക്ഷരത്തിലാവും എന്ന് "
"പ്രതീക്ഷിക്കുന്നു"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"ഓഡ് അക്ഷരം '%s', എലമെന്റ് '%s'-ന്റെ സവിശേഷത നാമം '%s'-ന് ശേഷം ഒരു '=' പ്രതീക്ഷിക്കുന്നു"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"ആട്റിബ്യൂട്ട് ആണ് '%s' എന്ന എലമെന്റിന്റെ ആരംഭത്തിലുളള ടാഗ് അവസാനിപ്പിക്കുന്നതിന് പ്രതീക്ഷിച്ചത്; "
"ഒരു പക്ഷേ, ആട്റിബ്യൂട്ടിന്റെ പേരില് നിങ്ങള് തെറ്റായ അക്ഷരം ആവാം ഉപയോഗിച്ചത്"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"'%s' ഒരു ഓഡ് അക്ഷരം ആണ്, '%s' എന്ന എലമെന്റിന്റെ ആട്റിബ്യൂട്ട് ആയ '%s'-നുളള മൂല്ല്യം നല്കുമ്പോള് "
"സമം എന്ന ചിഹ്നത്തിന് ശേഷം ഒരു തുറന്ന കോട്ട് ആണ് പ്റതീക്ഷിച്ചത്"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
msgstr ""
"'</' അക്ഷരങ്ങള്ക്ക് ശേഷം ഉളള '%s', അസാധുവായ അക്ഷരമാണ്; '%s' ഒരു എലമെന്റ് നാമം തുടങ്ങുന്നില്ല"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
msgstr ""
"എലമെന്റ് നാമം '%s'-ന് ശേഷം ഉളള '%s', ഒരു അസാധുവായ അക്ഷരമാണ്; '>' അക്ഷരമാണ് അനുവദിക്കുന്നത്"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "എലമെന്റ് '%s' അടച്ചിരിക്കുന്നു, ഒരു എലമെന്റുകളും നിലവില് തുറന്നിട്ടില്ല"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "എലമെന്റ് '%s' അടച്ചിരിക്കുന്നു, പക്ഷേ നിലവില് ലഭ്യമായ എലമെന്റ് '%s' ആണ്"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "രേഖ ശൂന്യമാണ് അല്ലെങ്കില് അതില് വയിറ്റ് സ്പെയിസ് മാത്രമേ ഉള്ളൂ"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "ഒരു '<' ബ്രാക്കറ്റിന് ശേഷം രേഖ അപ്രതീക്ഷിതമായി അവസാനിച്ചിരിക്കുന്നു "
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"എലമെന്റുകള് തുറന്നു കിടക്കുന്പോള് തന്നെ രേഖ അപ്രതീക്ഷമായ അടഞ്ഞിരിക്കുന്നു - ഒടുവില് തുറന്ന എലമെന്റ് "
"'%s' ആണ്"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"തന്നെ രേഖ അപ്രതീക്ഷമായ അടഞ്ഞിരിക്കുന്നു, ടാഗ് <%s/>-ന് അവസാനമായി ഒരു ക്ളോസ് ആങ്കില് ബ്രാക്കറ്റ് "
"പ്രതീക്ഷിക്കുന്നു"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "ഒരു എലമെന്റിന്റെ നാമത്തിനുളളില് രേഖ അപ്രതീക്ഷിതമായി അവസാനിച്ചു"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "ഒരു സവിശേഷത നാമത്തിനുളളില് രേഖ അപ്രതീക്ഷിതമായി അവസാനിച്ചു"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "ഒരു എലമെന്റ്-ഓപ്പണിങ് ടാഗിനുളളില് രേഖ അപ്രതീക്ഷിതമായി അവസാനിച്ചു"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"സമം ചിഹ്നത്തിന് ശേഷം ഒരു ആട്റിബ്യൂട്ടിന്റെ പേര് ആയതിനാല് അപ്റതീക്ഷിതമായി ഡോക്യുമെന്റ് "
"അവസാനിച്ചു; ആട്റിബ്യൂട്ടിന് മൂല്ല്യം ലഭ്യമല്ല"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "ഒരു സവിശേഷത നാമത്തിനുളളില് വച്ച് രേഖ അപ്രതീക്ഷിതമായി അവസാനിച്ചു"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "എലമെന്റ് '%s'-ന്റെ ക്ളോസ് ടാഗിനുള്ളില് രേഖ അപ്രതീക്ഷിതമായി അവസാനിച്ചു"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"ഒരു അഭിപ്രായം അല്ലെങ്കില് ഒരു പ്രക്രിയ നടത്തുന്ന നിര്ദ്ദേശത്തിനുള്ളില് രേഖ അപ്രതീക്ഷിതമായി "
msgid "Operation was cancelled"
msgstr "പ്രക്രിയ റദ്ദാക്കിയിരിക്കുന്നു"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "അപരിചിതമായ തരത്തിലുള്ളത്"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s ഫയല് രീതിയിലുള്ള"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s തരത്തിലുള്ള"
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "പേരിടാത്ത"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "ഉപയോക്താവിനുള്ള MIME ക്രമികരണ ഫയല് %s ഉണ്ടാക്കുവാന് സാധ്യമായില്ല: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "ഉപയോക്താവിനുള്ള ഡസ്ക്ടോപ്പ് ഫയല് %s ഉണ്ടാക്കുവാന് സാധ്യമായില്ല"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "പ്രക്രിയ പിന്തുണയ്ക്കുന്നില്ല"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "ഡയറക്ടറിയില് പകര്ത്തുവാന് സാധ്യമല്ല"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "ഒരു ഡയറക്ടറിയില് മറ്റൊരു ഡയറക്ടറി പകര്ത്തുവാന് സാധ്യമല്ല"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "ലക്ഷ്യസ്ഥാനത്തുള്ള ഫയല് നിലവിലുണ്ട്"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "ആവര്ത്തിച്ച് ഡയറക്ടറി പകര്ത്തുവാന് സാധ്യമല്ല"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "ചവറ്റുകുട്ട പിന്തുണയ്ക്കുന്നില്ല"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "ഫയലിന്റെ പേരില് '%c' ഉണ്ടാകുവാന് പാടില്ല"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "യൂണിക്സ് അടയ്ക്കുന്നതില് പിശക്: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "ഫയല്സിസ്റ്റം റൂട്ട്"
msgid "Error writing to unix: %s"
msgstr "യൂണിക്സിലേക്ക് എഴുതുന്നതില് പിശക്: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"X-Poedit-Country: MONGOLIA\n"
"X-Poedit-SourceCharset: utf-8\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, fuzzy, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
"Сонин тэмдэгт »%s«, »%s« элементийн »%s« аттрибутын нэрийн дараа »=« хүлээгдэж "
"байна"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
#, fuzzy
msgid "No valid bookmark file found in data dirs"
msgstr "Өгөгдлийн лавлахаас хүчинтэй утга олдсонгүй"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "»%s« символик холбоос уншигдсангүй: %s"
msgid "Error opening directory '%s': %s"
msgstr "»%s« лавлахыг нээхэд алдаа: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "%lu байтуудыг »%s« файлыг уншихдаа байрлуулж чадсангүй"
msgid "Error reading file '%s': %s"
msgstr "Файл »%s« -ыг уншиж байхад алдаа: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "»%s« файлаас уншиж болохгүй байна: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "»%s« файл нээгдэхгүй байна: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "»%s« файлын аттрибут тодорхойлогдсонгүй: fstat() нурлаа: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "»%s« файл нээгдэхгүй байна: fdopen() нурлаа: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, fuzzy, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "»%s« файл нээгдэхгүй байна: fdopen() нурлаа: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "»%s« файл үүсгэгдсэнгүй: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, fuzzy, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "»%s« файл нээгдэхгүй байна: fdopen() нурлаа: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, fuzzy, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "»%s« файл нээгдэхгүй байна: fdopen() нурлаа: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, fuzzy, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "»%s« файл нээгдэхгүй байна: fdopen() нурлаа: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "»%s« хэв хүчингүй, »%s« -г агуулах хэрэггүй"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "»%s« хэв XXXXXX -р төгсөхгүй байна"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "»%s« символик холбоос уншигдсангүй: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Символик холбоос дэмжигдээгүй"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "»%s« файл нээгдэхгүй байна: fdopen() нурлаа: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "%d мөрөнд %d тэмдэгт алдаатай байна: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "%d мөрөнд алдаа: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Хоосон абт »&;« олдлоо; хүчинтэй абтууд & " < > ' юм. "
"(абт=аский биш тэмдэгт)"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"Абтын нэрийн эхлэлийн »%s« тэмдэгт хүчингүй; Абт & тэмдэгтээр эхэлдэг; Хэрвээ "
"энэ амперсаныг абт бишээр авах хэрэгтэй бол & гэж бичнэ үү"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "»%s« тэмдэгт абтын нэрэнд хүчингүй"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Абтын нэр »%s« тодорхойгүй"
# CHECK
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Абт цэг таслалаар төгсөөгүй байна; Та магад амперсандыг абтын эхлэл бусаар "
"хэрэглэхийг хүссэн байх - Та & гэж бичнэ үү"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"»%-.*s« тэмдэгтийн дотор тоо байх ёстой (ê шиг) , задлан ялгалд "
"танигдсангүй - магадгүй хэтэрхий том тоо байна уу"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "»%-.*s« тэмдэгт холбоос зөвшөөрөгдөөгүй тэмдэгтээр кодлогдсон байна"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Хоосон тэмдэгтийн холбоос; dž гэх мэт тоо агуулах ёстой"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"Тэмдэгт холбоос цэг таслалаар төгсөөгүй байна; Та магад амперсандыг абтын "
"эхлэл бусаар хэрэглэхийг хүссэн байх - Та & гэж бичнэ үү"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Төгсгөлгүй абт холбоос"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Төгсгөлгүй тэмдэгт холбоос"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Хүчингүй UTF-8-р кодлогдсон текст"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Хүчингүй UTF-8-р кодлогдсон текст"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Хүчингүй UTF-8-р кодлогдсон текст"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Баримт ямар нэгэн элементээр эхлэх ёстой (Ж.нь <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"»%s« нь »<«-тэмдэгтийн арын хүчингүй тэмдэгт; Энэ нь элементийн нэрээр эхэлж "
"болохгүй."
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Сонин тэмдэгт »%s«, »%s« элементийн эхлэлийн тагийг хаахад »>« тэмдэгт дутуу "
"байна"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Сонин тэмдэгт »%s«, »%s« элементийн »%s« аттрибутын нэрийн дараа »=« хүлээгдэж "
"байна"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"эсвэл харин »>« эсвэл »/« тэмдэгт хүлээгдэж байна; Магадгүй та аттрибутын "
"нэрэндээ хүчингүй тэмдэгт хэрэглэжээ"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Сонин тэмдэгт »%s«; »%s« элементийн »%s« аттрибутын хувьд өгсөн утга тэнцүүгийн "
"тэмдэгийн дараах хашилтыг хүлээж байна"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"»%s« хүчингүй тэмдэгт, хэрвээ энэ нь »</« тэмдэгтийн ард орвол; »%s« "
"ньэлементийн нэрээр эхэлж болохгүй"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"»%s« хүчингүй тэмдэгт, хэрвээ энэ нь хааж буй »%s« элементийн нэрийн ард "
"байгаа бол; »>« тэмдэгт хүчинтэй"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "»%s« элемент хаагдсан, Одоогоор ямарч элемент нээлттэй бус байна"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "»%s« элемент хаагдсан, харин одоогоор »%s« элемент нээлттэй байна"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Баримт хоосон эсвэл зүгээр цагаан зай агуулж байна"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Баримт нээлттэй өнцөгтэй хаалт »<« -н дараа гэнэт төгсөв"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Баримт нээлттэй элементүүдтэйгээр гэнэтийн байдлаар төгсөв - »%s« сүүлчийн "
"нээлттэй элемент нь"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Баримт гэнэтийн байдлаар төгсөв, таг <%s/> -г хаах өнцөгтэй хаалт "
"»>«хүлээгдэж байна"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Баримт нэгэн элементийн нэрийн дотор гэнэтийн байдлаар төгсөв"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Баримт нэгэн аттрибут нэрийн дотор гэнэтийн байдлаар төгсөв"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"Баримт нээгдэж буй тагийн нэгэн элементийн нэрийн дотор гэнэтийн байдлаар "
"төгсөв."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Баримт аттрибут нэрийн дараах тэнцүүгийн тэмдэгийн дараа гэнэтийн байдлаар "
"төгсөв; аттрибутын утга алга"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Баримт нэгэн аттрибутын утгын дотор гэнэтийн байдлаар төгсөв"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Баримт гэнэтийн байдлаар нэгэн хаагдаж буй »%s« элементийн тагийн дотор төгсөв"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Баримт тайлбар эсвэл заавар боловсруулалтын дотор гэнэтийн байдлаар төгсөв"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "Тодорхойгүй утга %s"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "Символик холбоос дэмжигдээгүй"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Символик холбоос дэмжигдээгүй"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "%d мөрөнд алдаа: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Хөрвүүлж байхад алдаа: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib.HEAD.mr\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-04 17:38+0530\n"
"Last-Translator: Sandeep Shedmake <sandeep.shedmake@gmail.com>\n"
"Language-Team: marathi\n"
"Plural-Forms: nplurals=2; plural=(n!=1);\n"
"X-Generator: KBabel 1.11.4\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "'%s' घटकाकरीता '%s' अनपेक्षित गुणधर्म"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "'%s' घटकाकरीता '%s' गुणधर्म आढळले नाही"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "अनपेक्षीत टॅग '%s', टॅग '%s' अपेक्षीत"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "'%2$s' च्या आत, '%1$s' अनपेक्षीत टॅग"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "माहिती संचयीकेत वैध ओळखचिन्ह आढळले नाही"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI '%s' करीता ओळखचिन्ह आधिपासूनच अस्तित्वात आहे"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "URI '%s' करीता ओळखचिन्ह आढळले नाही"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI '%s' करीता ओळखचिन्हात MIME प्रकार व्याख्यीत नाही."
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI '%s' करीता ओळखचिन्हात वैयक्तिक बाब व्याख्यीत नाही."
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI '%s' करीता ओळखचिन्हात गट निश्चित नाही."
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "'%s' नामांकीत कुठल्याही अनुप्रयोगाने '%s' करीता ओळखचिन्ह पंजीकृत केले नाही"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "'%s' पासून कार्यान्वीत ओळ '%s' विस्तारीत करू शकले नाही"
msgid "Error opening directory '%s': %s"
msgstr "संचयीका '%s' उघडतेवेळी त्रूटी: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "वाचतायेण्याजोगी फाइल \"%2$s\" करीता %1$lu बाइट वाटप करू शकले नाही"
msgid "Error reading file '%s': %s"
msgstr "'%s' फाइल वाचताना त्रुटि : %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "'%s' फाइल वाचतेवेळी त्रूटी: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "'%s' फाइल उघडण्यास अपयशी: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "फाइल '%s'चे गुणधर्म प्राप्त करण्यास अयशस्वी: fstat() अपयशी: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "'%s' फाइल उघडण्यास अपयशी: fdopen() अपयशी : %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "फाइलला '%s पासून '%s' असे पुनर्नामांकन करण्यास अपयशी: g_rename() अपयशी: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "फाइल बनविण्यास अपयशी '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "लिहण्यासाठी '%s' फाइल उघडण्यास अपयशी: fdopen() अपयशी: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "'%s' फाइलवर लिहण्यास अपयशी: fwrite() अपयशी: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "'%s' फाइल बंद करण्यास अपयशी: fclose() अपयशी: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "उपलब्ध फाइल '%s' काढूण टाकल्या जाऊ शकत नाही: g_unlink() अपयशी: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "आराखडा '%s' अवैध, '%s' समाविष्टीत नसायला हवे"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "आराखडा '%s' मध्ये XXXXXX समाविष्टीत नाही"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "बोधचिन्ह लिंक '%s' वाचण्यास अपयशी: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "बोधचिन्ह लिंक समर्थीत नाही"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' फाइल महत्व जुळवू शकले नाही: mmap() f: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "ओळ %d अक्षर %d वर त्रूटी आढळली: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "ओळ %d वर त्रूटी: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"रिकामी वस्तु '&;' आढळली; वैध वस्तू याप्रकारे आहेत: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"वस्तुच्या सुरवातीस अक्षर '%s' वैध नाही ; वस्तुची सुरवात & अक्षर पासून होते; जर ऐम्परसेंड "
"वस्तु नसल्यास, त्यास & या स्वरूपी करा"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "वस्तुच्या नावात अक्षर '%s' वैध राहत नाही"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "वस्तुचे नाव '%s' अपरिचीत आहे"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"वस्तू सेमीकोलनवर संपत नाही; शक्यतः तुम्ही वस्तुला सुरू करण्याकरीता & स्वरूप न वापरता "
"ऐम्परसेंड अक्षर वापरले असावे"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"'%-.*s' वाचता आले नाही, जे अक्षर संदर्भच्या आत अंक म्हणून असायला हवे होते (उदाहर्णाथ "
"ê) - तसेच अंक खूप मोठे आहे"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "अक्षर संदर्भ '%-.*s' परवानगीय अक्षरास एनकोड करीत नाही"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "रिक्त अक्षर संदर्भात; dž सारखे अंक समाविष्टीत केले पाहीजे"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"अक्षर संदर्भ सेमीकोलनवर संपत नाही; शक्यतः तुम्ही वस्तुला सुरू करण्याकरीता & स्वरूप न "
"वापरता तुम्ही ऐम्परसेंड अक्षर वापरले असावे"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "अपूरे वस्तू संदर्भ"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "अपूरे अक्षर संदर्भ"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "अवैध UTF-8 ऐनकोड पाठ्य - अतिलांब श्रृंखला"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "अवैध UTF-8 ऐनकोड पाठ्य - प्रारंभ अक्षर नाही"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "अवैध UTF-8 ऐनकोड पाठ्य - वैध '%s' नाही"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "दस्तऐवजची सुरवात घटकाशी व्हावी (उ.दा. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "'<' अक्षरानंतर '%s' वैध अक्षर नाही; त्यामुळे घटक नाव सुरू होऊ शकणार नाही"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"'%s' असाधारण अक्षर आहे, घटकाचे प्रारंभीक टॅग '%s' समाप्त करण्याकरीता '>' अक्षर अपेक्षीत"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "'%s' असाधारण अक्षर आहे, घटक '%s' च्या '%s' गुणधर्म नावानंतर '=' अपेक्षीत"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"अक्षर अपेक्षीत, किंवा पर्यायस्वरूपी गुणधर्म अपेक्षीत; तसेच तुम्ही गुणधर्म नावात अवैध अक्षर "
"वापरले"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"'%s' असाधारण अक्षर आहे, घटक '%s' च्या गुणधर्म '%s' करीता मुल्य प्रदान करतेवेळी समांतर "
"चिन्हा नंतर उघडे क्वोट अपेक्षीत"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, 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:1583
+#: glib/gmarkup.c:1665
#, 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:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "घटक '%s' बंद केले गेले,कुठलेही घटक आता उघडे नाही"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "घटक '%s' बंद केले गेले, पण सद्या '%s' हे घटक उघडे आहे"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "दस्तऐवज रिकामे होते किंवा फक्त रिक्त जागा समाविष्टीत होती"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "उघडे कोन कंस '<' नंतरच दस्तऐवज अनपेक्षितरित्या समाप्त झाले"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr "घटक उघडे असूनही दस्तऐवज अनपेक्षितरित्या समाप्त झाले - '%s'शेवटचे उगडे घटक होते"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"दस्तऐवज अनपेक्षितरित्या समाप्त झाले, टॅग <%s/> ला बंद करण्याकरीता समाप्तीय कोन कंस "
"उपेक्षीत"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "घटकाच्या नावाअंतर्गत दस्तऐवज अनपेक्षितरित्या समाप्त झाले"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "गुणधर्माच्या नावाअंतर्गत दस्तऐवज अनपेक्षितरित्या समाप्त झाले"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "घटकाच्या-खुल्या टॅग अंतर्गत दस्तऐवज अनपेक्षितरित्या समाप्त झाले"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"गुणधर्म नावा पाठोपाठ समांतर चिन्हानंतर दस्तऐवज अनपेक्षितरित्या समाप्त झाले; गुणधर्माचे मुल्य "
"नाही"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "गुणधर्म मुल्यच्या अंतर्भूत राहतेवेळी दस्तऐवज अनपेक्षितरित्या समाप्त झाले"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "दस्तऐवज अनपेक्षितरित्या घटक '%s' करीता बंद टॅगच्या आत समाप्त झाले"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "दस्तऐवज अनपेक्षितरित्या टिप्पणी किंवा सुचनाचे विषलेशन करतेवेळी समाप्त झाले"
msgid "Operation was cancelled"
msgstr "कार्य रद्द करण्यात आले"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "अपरिचीत प्रकार"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s फाइलप्रकार"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s प्रकार"
msgid "Unexpected early end-of-stream"
msgstr "अपरिचीत पूर्वरत end-of-stream"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "अनामीक"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "डेस्कटॉप फाइल मध्ये Exec नोंदणी निश्चित नाही"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "अनुप्रयोगकरीता आवश्यक टर्मिनल आढळले नाही"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "वापरकर्ता अनुप्रयोग संयोजन संचयीका %s बनवू शकले नाही: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "वापरकर्ता MIME संयोजन संचयीका %s बनवू शकले नाही: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "वापरकर्ता डेस्कटॉप फाइल %s बनवू शकत नाही"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "%s करीता इच्छिक व्याख्या"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "ड्राइव्ह बाहेर कडा कार्यान्वीत करत नाही"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "ड्राइव्ह मिडीयाकरीता पोलींग कार्यान्वीत करत नाही"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "कार्य समर्थित नाही"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "समाविष्टीत आरोहन अस्तीत्वात नाही"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "संचयीकेवर प्रत बनवू शकत नाही"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "संचयीकेवर संचयीकेची प्रत बनवू शकत नाही"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "लक्ष्य फाइल अस्तित्वात आहे"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "संचयीकेची पुनः प्रत बनवू शकत नाही"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "अवैध symlink मुल्य दिले गेले"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "कचरापेटी समर्थित नाही"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "फाइल नावात '%c' असू शकत नाही"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "खंड आरोहन कार्यारत करत नाही"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "ही फाइल हाताळण्याकरीता कुठलेही अनुप्रयोग पंजीकृत नाही"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "आरोहन अनारोहन कार्यान्वीत करीत नाही"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "आरोहन बाहेर पडा कार्यान्वीत करत नाही"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "आरोहन पुनःआरोहन कार्यान्वीत करत नाही"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "आरोहन अनारोहन कार्यान्वीत करीत नाही"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "आगत श्रृंखला लिहीतायेण्याजोगी कार्यरत करत नाही"
msgid "Error closing unix: %s"
msgstr "युनीक्स बंद करतेवेळी त्रूटी: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "रूट फाइलप्रणाली"
msgid "Error writing to unix: %s"
msgstr "युनीक्सकरीता लिहितेवेळी त्रूटी: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "खंड बाहेर कडा कार्यन्वीत होत नाही"
msgstr ""
"Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, fuzzy, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
"Aksara ganjil '%s', dijangkakan '=' selepas nama atribut '%s' unsur '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Gagal membaca pautan simbolik '%s': %s"
msgid "Error opening directory '%s': %s"
msgstr "Ralat membuka direktori %s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Tak dapat memperuntukkan %lu byte untuk membaca fail \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Ralat membaca fail '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Gagal membaca fail '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Gagal membuka fail '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Gagal mendapatkan atribut fail '%s': fstat() gagal: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Gagal membuka fail '%s': fdopen() gagal: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, fuzzy, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Gagal membuka fail '%s': fdopen() gagal: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Gagal mencipta fail %s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, fuzzy, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Gagal membuka fail '%s': fdopen() gagal: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, fuzzy, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Gagal membuka fail '%s': fdopen() gagal: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, fuzzy, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Gagal membuka fail '%s': fdopen() gagal: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Templet '%s' tidak sah, sepatutnya tidak mengandungi '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Templet '%s' tidak berakhir dengan XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Gagal membaca pautan simbolik '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Pautan simbolik tidak disokong"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Gagal membuka fail '%s': fdopen() gagal: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Ralat pada baris %d aksara %d: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Ralat pada baris %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Entiti kosong '&;' kelihatan; entiti sah ialah : & " < > "
"'"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"memulakan entiti; jika & tidak disokong untuk dijadikan entiti, escapekan "
"sebagai &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Nama entiti '%s' tidak diketahui"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Entiti tidak berakhir dengan titik bertindih; mungkin anda gunakan aksara "
"'&' tanpa menyedari untuk memulakan entiti - escape & sebagai &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, fuzzy, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"gagal menghantar '%s', yang sepatutnya satu digit didalam satu rujukan "
"aksara (ê sebagai contoh) - mungkin digit terlalu besar"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Rujukan aksara kosong; sepatutnya disertakan digit seperti dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"Rujukan aksara tidak berakhir dengan semicolon; agaknya anda menggunakan "
"aksara '&' tanpa niat untuk memulakan entiti - escapekan & sebagai &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Rujukan entiti tidak tamat"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Rujukan aksara tidak tamat"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Teks terenkod UTF-8 tidak sah"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Teks terenkod UTF-8 tidak sah"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Teks terenkod UTF-8 tidak sah"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumen mesti dimulakan dengan unsur (e.g. <buku>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' adalah bukan aksara sah diikuti sengan aksara '<'; ia tidak sepatutnya "
"bermula dengan nama unsur"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Aksara ganjil '%s', dijangkakan aksara '>' untuk mengakhiri tag permulaan "
"unsur '%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, 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:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"permulaan unsur '%s', atau atribut; meungkin anda gunakan aksara tidak sah "
"pada nama atribut"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Aksara ganjil '%s', menjangka tanda petikan membuka selepas tanda = bila "
"memberi nilai atribut untuk '%s' unsur '%s' "
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' adalah bukan aksara sah diikuti aksara '</'; '%s' tak boleh memulakan "
"nama unsur"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' adalah bukan aksara sah diikuti dengan nama unsur penutup '%s'; aksara "
"yang diizinkan ialah '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Unsur '%s' telah ditutup, tiada unsur yang dibuka"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokumen kosong atau hanya menandungi ruangputih"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokumen berakhir tanpa diduga sebaik selepas membuka '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Dokumen berakhir tanpa diduga dengan unsur yang masih dibuka - '%s' adalah "
"unsur dibuka"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, 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:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumen berakhir tanpa diduga di dalam nama unsur"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokumen berakhir tanpa diduga di dalam nama atribut"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokumen berakhir tanpa diduga di dalam tag element-opening"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Dokumen berakhir tanpa diduga selepas tanda '=' diikuti dengan nama atribut; "
"tiana nilai atribut"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokumen berakhir tanpa diduga semasa di dalam nilai atribut"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Dokumen berakhir tanpa diduga di dalam komen atau memproses arahan"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr ""
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "Pautan simbolik tidak disokong"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Pautan simbolik tidak disokong"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Ralat pada baris %d: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Ralat semasa penukaran: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib 2.13.x\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-06-07 20:40+0200\n"
"Last-Translator: Espen Stefansen <espens@svn.gnome.org>\n"
"Language-Team: Norwegian bokmal <i18n-nb@lister.ping.uio.no>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Uventet attributt «%s» for element «%s»"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Attributt «%s» i element «%s» ble ikke funnet"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Uventet tagg «%s», tagg «%s» forventet"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Uventet tagg «%s» i «%s»"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "Ingen gyldig bokmerkefil ble funnet i datakatalogene"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Et bokmerke eksisterer allerede for URI «%s»"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Ingen bokmerker funnet for URI «%s»"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Ingen MIME-type definert i bokmerke for URI «%s»"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Ingen private flagg er definert i bokmerke for URI «%s»"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Ingen grupper satt i bokmerke for URI «%s»"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Ingen program med navn «%s» har registrert et bokmerke for «%s»"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Feil under utvidelse av exec-linje «%s» med URI «%s»"
msgid "Error opening directory '%s': %s"
msgstr "Feil under åpning av katalog «%s»: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Kunne ikke allokere %lu bytes til lest fil «%s»"
msgid "Error reading file '%s': %s"
msgstr "Feil under lesing av fil «%s»: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Feil under lesing fra fil «%s»: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Feil under åpning av fil «%s»: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Feil ved uthenting av attributter for fil «%s»: fstat() feilet: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Feil under åpning av fil «%s»: fdopen() feilet: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Feil under endring av navn på filen «%s» til «%s»: g_rename() feilet: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Feil under oppretting av fil «%s»: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Feil under åpning av filen «%s» for skriving: fdopen() feilet: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Kunne ikke skrive fil «%s»: fwrite() feilet: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Kunne ikke lukke fil «%s»: fclose() feilet: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Eksisterende fil «%s» kunne ikke bli fjernet: g_unlink() feilet: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Mal «%s» er ugyldig, må ikke inneholde «%s»"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Mal «%s» inneholder ikke XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Feil under lesing av symbolsk lenke «%s»: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Symbolske lenker er ikke støttet"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Kunne ikke lese fil «%s» inn i minnet: mmap() feilet: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Feil på linje %d tegn %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Feil på linje %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Tom entitet «&;» funnet; gyldige entiteter er: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"starter en entitet; hvis dette og-tegnet ikke er ment å være en entitet, "
"unngå dette ved å bruke & i stedet"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entitetsnavn «%s» er ikke kjent"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"tegn uten at det var ment å starte en entitet - ungå ved å bruke & i "
"stedet"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Feil under lesing av «%-.*s», som skulle vært et tall inne i en tegnreferanse "
"(ê for eksempel) - tallet er muligens for stort"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Tegnreferanse «%-.*s» koder ikke et tillatt tegn"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Tom tegnreferanse; skulle inkludert et tall slik som dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"og-tegn uten at det var ment å starte en entitet - unngå ved å bruke & i "
"stedet"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Uferdig referanse til entitet"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Uferdig referanse til tegn"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Ugyldig UTF-8 kodet tekst - for lang sekvens"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Ugyldig UTF-8 kodet tekst - ikke et starttegn"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Ugyldig UTF-8 kodet tekst - ikke gyldig «%s»"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumentet må starte med et element (f.eks <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"«%s» er ikke et gyldig tegn etter en «<» tegn; det kan ikke være begynnelsen "
"på et elementnavn"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Rart tegn «%s», forventet et «>» tegn for å avslutte start-taggen til "
"elementet «%s»"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, 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:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"element «%s», eller alternativt en attributt; kanskje du brukte et ugyldig "
"tegn i attributtnavnet"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Rart tegn «%s», ventet et åpent sitattegn etter likhetstegnet når verdi for "
"attributt «%s» for element «%s» oppgis"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"«%s» er ikke et gyldig tegn etter tegnene «</»; «%s» er kanskje ikke "
"begynnelsen på et elementnavn"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"«%s» er ikke et gyldig tegn etter element for lukking med navn «%s»; tillatt "
"tegn er «>»"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element «%s» ble lukket, ingen åpne elementer nå"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokumentet var tomt eller inneholdt kun blanke tegn"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokumentet sluttet uventet rett etter en åpen vinkelparantes «<»"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
msgstr ""
"Dokumentet sluttet uventet med åpne elementer - «%s» var siste åpne element"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Dokumentet sluttet uventet, forventet å se en vinkelparantes for å slutte av "
"den siste taggen <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumentet sluttet uventet inni et elementnavn"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokumentet sluttet uventet inni et attributtnavn"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokumentet sluttet uventet inni en tagg for åpning av element."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Dokumentet sluttet uventet etter likhetstegnet som følger et attributtnavn; "
"ingen attributtverdi"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokumentet sluttet uventet inni en attributtverdi"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokumentet sluttet uventet inni en kommentar eller prosesseringsinstruksjon"
msgid "Operation was cancelled"
msgstr "Operasjonen ble avbrutt"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Ukjent type"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "filtype %s"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "type %s"
msgid "Unexpected early end-of-stream"
msgstr "Uventet tidlig slutt på strøm"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Uten navn"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Desktop-filen hadde ingen verdi i Exec-feltet"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Kan ikke finne terminalen som kreves for programmet"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "Kan ikke opprette konfigurasjonsmappe %s for brukers program: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Kan ikke opprette brukers konfigurasjonsmappe %s for MIME: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Kan ikke opprette brukers desktop-fil %s"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Egendefinert definisjon for %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "stasjonen implementerer ikke utløsing"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "stasjonen implementerer ikke sjekk om medie er satt inn"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Operasjonen er ikke støttet"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Omsluttende monteringspunkt finnes ikke"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Kan ikke kopiere over katalog"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Kan ikke kopiere katalog over katalog"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Målfilen eksisterer"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Kan ikke kopiere katalog rekursivt"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Ugyldig verdi oppgitt for symbolsk lenke"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Papirkurv er ikke støttet"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Filnavn kan ikke inneholde «%c»"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "volumet implementerer ikke montering"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Ingen program registrert for å håndtere denne filen"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "monteringspunktet implementerer ikke avmontering"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "montering implementerer ikke utløsing"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "montering implementerer ikke remontering"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "monteringspunktet implementerer ikke avmontering"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Ut-strømmen implementerer ikke skriving"
msgid "Error closing unix: %s"
msgstr "Feil ved lukking av unix: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Filsystemrot"
msgid "Error writing to unix: %s"
msgstr "Feil ved skriving til unix: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "volumet implementerer ikke utløsing"
msgstr ""
"Project-Id-Version: glib.glib-2-10.ne\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"X-Generator: KBabel 1.10.2\n"
"Plural-Forms: nplurals=2;plural=(n!=1)\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, fuzzy, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "विजोड क्यारेक्टर '%s' ले,'%s' तत्वको गुण नाम '%s' पछि अपेक्षा गरिएको एउटा '=' "
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
#, fuzzy
msgid "No valid bookmark file found in data dirs"
msgstr "वैध कुञ्जी फाइल डेटा डाइरेक्टरीहरूमा फेला परेन"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "सांकेतिक सम्बन्ध '%s' पढ्न असफल: %s"
msgid "Error opening directory '%s': %s"
msgstr "डाइरेक्टरी '%s' खोल्दा त्रुटि: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "फाइल \"%2$s\" पढ्न %1$lu बाईट्स बाँडफाँड गर्न सकिएन"
msgid "Error reading file '%s': %s"
msgstr "'%s' फाइल पढ्दा त्रुटि : %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "'%s' फाइलबाट पढ्न असफल : %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "'%s'फाइल खोल्न असफल : %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "'%s' फाइलको विशेषता पाउन असफल: fstat() असफल भयो: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "'%s' फाइल खोल्न असफल : fdopen() खोल्न असफल : %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "फाइल '%s लाई '%s' मा पुन: नामकरण गर्न असफल:g_rename() असफल: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "'%s' फाइल सिर्जना गर्न असफल: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "लेख्नका लागि '%s' फाइल खोल्न असफल : fdopen() असफल : %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "'%s' फाइल लेख्न असफल : fलेख्न() असफल : %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "'%s' फाइल बन्द गर्न असफल : fबन्द गर्न() असफल : %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "अवस्थित फाइल '%s' हटाउन सकिएन:g_unlink() असफल: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "'%s ' टेम्प्लेट अवैध, एउटा '%s' सम्मिलित हुनु हुँदैन"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "'%s' टेम्प्लेट XXXXXX संगसमाप्त हुँदैन"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "सांकेतिक सम्बन्ध '%s' पढ्न असफल: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "सांकेतिक सम्बन्ध समर्थन गरिएन"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' फाइल नक्सा असफल : m नक्सा() असफल : %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "लाइन %d क्यारेक्टर %d मा त्रुटि: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "लाइन %d मा त्रुटि: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"खाली अस्तित्व '&;' देखियो; वैध अस्तित्वहरू निम्न हुन : & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"यदि यो एम्परस्यान्ड भएमा एउटा अस्तित्वको रूपमा मानिँदैन,यसलाई & को रूपमा परित्याग "
"गर्नुहोस्"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "अस्तित्व नाम भित्रको क्यारेक्टर '%s' वैध छैन"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "अस्तित्व नाम '%s' ज्ञात होइन"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"अस्तित्व अर्धविराममा सकिएन; तपाईँले धेरैजसो ऐम्परसेण्ड क्यारेक्टरबाट एउटा अस्तित्व सुरु गर्नको "
"लागि प्रयास नगरिकन सुरु गर्नुभयो - & को रूपमा ऐम्परसेंन्ड निकास गर्नुहोस्"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"'%-*s' पद वर्णन गर्न सकिएन, जुन एउटा क्यारेक्टर सन्दर्भ (उदाहरणका लागि; ê) हुनु "
"पर्थ्यो - संभवत अङ्क ज्यादै ठूलो छ"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "क्यारेक्टर सन्दर्भ '%-.*s' ले स्वीकृत क्यारेक्टरको सङ्केतन गर्दैन "
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "खाली क्यारेक्टर सन्दर्भ, dž जस्तो अङ्क समाहित हुनुपर्छ"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"क्यारेक्टर सन्दर्भ अर्धविराममा सकिएन;तपाईँले धेरैजसो ऐम्परसेण्ड क्यारेक्टरबाट एउटा अस्तित्व सुरु "
"गर्नका लागि प्रयास नगरिकन सुरु गर्नुभयो - & को रूपमा ऐम्परसेंन्ड निकास गर्नुहोस्"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "अधुरो अस्तित्व सन्दर्भ"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "अधुरो क्यारेक्टर सन्दर्भ"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "अवैध UTF-8 सङ्केतन गरिएको पाठ"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "अवैध UTF-8 सङ्केतन गरिएको पाठ"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "अवैध UTF-8 सङ्केतन गरिएको पाठ"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "कागजात एउटा तत्व बाट सुरु हुनैपर्छ (जस्तै: <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"एउटा '<' क्यारेक्टर पछ्याउन '%s' वैधानिक क्यारेक्टर होइन; यस्ले एउटा तत्व नाम प्रारम्भ "
"नगर्न सक्छ"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"बिजोड क्यारेक्टर '%s', एउटा अपेक्षा गरिएको क्यारेक्टर '>', '%s' को सुरु ट्याग अन्त्य "
"गर्नलाइ"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "विजोड क्यारेक्टर '%s' ले,'%s' तत्वको गुण नाम '%s' पछि अपेक्षा गरिएको एउटा '=' "
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"'/' क्यारेक्टर, वा वैकल्पिक रूपमा एउटा विशेषता ,सायद तपाईँले एउटा विशेषता नाममा अवैध "
"क्यारेक्टर प्रयोग गर्नुभयो"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"बिजोड क्यारेक्टर '%s',तत्व '%s' को '%s' विशेषताका लागि मान दिइएको बेला बराबर चिन्ह "
"पछि खुला उद्धरण चिन्हको अपेक्षा गरेको हुन्छ।"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' एउटा वैध क्यारेक्टर होइन निम्न क्यारेक्टरहरू '</'; '%s' एउटा तत्व नाम प्रारम्भ नगर्न "
"सक्छन"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"बन्द तत्व नाम '%s' को पछि लाग्ने '%s' मान्य क्यारेक्टर होइन; अनुमति पाएको क्यारेक्टर '>' "
"हो।"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "तत्व '%s' बन्द थियो, हाल कुनै तत्व खुलेको छैन"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "तत्व '%s' बन्द थियो, तर हाल खुला तत्व '%s' हो"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "कागजात खाली छ वा सेतो खाली स्थान मात्र राखिएको छ"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "एउटा खुल्ला कोण कोष्ठ पछि '<' कागजात अनपेक्षित रूपले समाप्त भयो।"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr "'%s' खोलिएको अन्तिम तत्व संगकागजात अप्रत्याशित रूपले समाप्त भयो।"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"कागजपत्र अप्रत्याशित रूपले समाप्त भयो, ट्याग <%s/> को अन्तमा बन्द कोण कोष्ठको अपेक्षा "
"गर्दछ।"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "तत्व नाम भित्र कागजात अपेक्षित रूपले समाप्त भयो।"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "विशेषता नाम भित्र कागजात अपेक्षित रूपले समाप्त भयो।"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "तत्व-खुल्ला ट्याग भित्र कागजात अपेक्षित रूपले समाप्त भयो।"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"बिशेषता नाम पछ्याउन बराबर चिन्ह पछि कागजातपत्र अप्रत्याशित रूपले समाप्त भयो; गुण मान "
"होइन"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "गुण मान भित्र भएको बेला कागजपत्र अप्रत्याशित रूपले समाप्त भयो"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "तत्व '%s' का लागि बन्द ट्याग भित्र कागजात अनपेक्षित रूपले समाप्त भयो।"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "एउटा टिप्पणी वा प्रक्रिया निर्देशन भित्र कागजपत्र अप्रत्याशित रूपले समाप्त भयो"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "अज्ञात विकल्प %s"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "सांकेतिक सम्बन्ध समर्थन गरिएन"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "सांकेतिक सम्बन्ध समर्थन गरिएन"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "लाइन %d मा त्रुटि: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "पद वर्णन विकल्पमा त्रुटि %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-12 16:03+0100\n"
"Last-Translator: Wouter Bolsterlee <wbolster@gnome.org>\n"
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Onverwacht attribuut ‘%s’ voor element ‘%s’"
# aangetroffen hier mooier dan gevonden
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Attribuut ‘%s’ van element ‘%s’ is niet aangetroffen"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Onverwachte tag ‘%s’, tag ‘%s’ werd verwacht"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Onverwachte tag ‘%s’ binnen ‘%s’"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "Er is geen geldig bladwijzerbestand gevonden in de datamappen"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Er bestaat al een bladwijzer voor de URI ‘%s’"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Geen bladwijzer gevonden voor URI ‘%s’"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Er is geen MIME-type gedefinieerd in de bladwijzer voor URI ‘%s’"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Er is geen privé-vlag gedefinieerd in de bladwijzer voor URI ‘%s’"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Er zijn geen groepen ingesteld in de bladwijzer voor URI ‘%s’"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
"Er is geen programma genaamd ‘%s’ die een bladwijzer geregistreerd heeft "
"voor ‘%s’"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Exec-regel ‘%s’ kon niet worden verwerkt met URI ‘%s’"
msgstr "Fout bij het openen van map ‘%s’: %s"
# Allocatie van %lu bytes om bestand "%s" te lezen is mislukt<
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Kon geen %lu byte geheugenruimte reserveren om bestand ‘%s’ te lezen"
msgid "Error reading file '%s': %s"
msgstr "Fout bij het lezen van bestand ‘%s’: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Lezen uit bestand ‘%s’ is mislukt: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Openen van bestand ‘%s’ is mislukt: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Opvragen gegevens van bestand ‘%s’ is mislukt: fstat() is mislukt: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Openen van bestand ‘%s’ is mislukt: fdopen() is mislukt: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"Hernoemen van bestand ‘%s’ naar ‘%s’ is mislukt: g_rename() is mislukt: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Aanmaken van bestand ‘%s’ is mislukt: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
"Openen van bestand ‘%s’ voor schrijven is mislukt: fdopen() is mislukt: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Schrijven van bestand ‘%s’ is mislukt: fwrite() is mislukt: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Sluiten van bestand ‘%s’ is mislukt: fclose() is mislukt: %s"
# bestaand bestand is een beetje dubbelop
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Bestand ‘%s’ kon niet worden verwijderd: g_unlink() is mislukt: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Sjabloon ‘%s’ is ongeldig, het zou geen ‘%s’ moeten bevatten"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Sjabloon ‘%s’ bevat geen XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Lezen van symbolische verwijzing ‘%s’ is mislukt: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Symbolische verwijzingen zijn niet mogelijk"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Openen van bestand ‘%s’ is mislukt: mmap() is mislukt: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Fout in regel %d teken %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Fout in regel %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Lege entiteit ‘&;’ gevonden; geldige entiteiten zijn: & " < "
"> '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"Teken ‘%s’ is niet geldig aan het begin van een entiteitnaam; het &-teken "
"begint een entiteit; indien dat niet de bedoeling is, gebruik dan &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entiteitnaam ‘%s’ is niet bekend"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"ampersand-teken gebruikt zonder daarmee een entiteit te willen beginnen - "
"gebruik in plaats daarvan &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"zou moeten zijn (bijvoorbeeld ê) - misschien is het getal te groot"
# niet geoorloofd/toegestaan/ongeoorloofd
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Tekenreferentie ‘%-.*s’ staat niet voor een geoorloofd teken"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Lege tekenreferentie; ze zou een getal moeten bevatten, zoals dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"ampersand-teken gebruikt zonder daarmee een entiteit te willen beginnen - "
"gebruik in plaats daarvan &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Onbeëindigde entiteitreferentie"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Onbeëindigde tekenreferentie"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
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:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Ongeldige UTF-8-gecodeerde tekst - geen startteken"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Ongeldige UTF-8-gecodeerde tekst - niet geldig ‘%s’"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Het document moet beginnen met een element (bijv. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
msgstr ""
"‘%s’ is geen geldig teken na ‘<’; een elementnaam mag er niet mee beginnen"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Onverwacht teken ‘%s’, er werd een ‘>’-teken verwacht om de start-tag van "
"het element ‘%s’ af te sluiten"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Onverwacht teken ‘%s’, er werd een ‘=’ verwacht na de attribuutnaam ‘%s’ van "
"element ‘%s’"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"start-tag van element ‘%s’ af te sluiten, of eventueel een attribuut; "
"misschien heeft u ongeldige tekens gebruikt in een attribuutnaam"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Onverwacht teken ‘%s’, er werd een ‘\"’-teken verwacht na het ‘=’-teken bij "
"de attribuutwaarde van ‘%s’ in element ‘%s’"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
msgstr ""
"‘%s’ is geen geldig teken na ‘</’; een elementnaam mag niet met ‘%s’ beginnen"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"‘%s’ is geen geldig teken na de elementnaam ‘%s’ in de afluitingstag; het "
"teken dat toegestaan is is ‘>’ "
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Het document was leeg of bevatte slechts lege ruimte"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Het document eindigde onverwacht na een openingshaakje: ‘<’"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Het document eindigde onverwacht met niet-afgesloten elementen - ‘%s’ is het "
"laatstgeopende element"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Het document eindigde onverwacht, er werd een sluithaakje (‘>’) verwacht "
"voor de tag <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Het document eindigde onverwacht in een elementnaam"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Het document eindigde onverwacht in een attribuutnaam"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Het document eindigde onverwacht in een element-openingstag."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Het document eindigde onverwacht na een ‘=’-teken dat op een attribuutnaam "
"volgde; geen attribuutwaarde"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Het document eindigde onverwacht in een attribuutwaarde"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Het document eindigde onverwacht in commentaar of een bewerkingsinstructie"
msgid "Operation was cancelled"
msgstr "De bewerking werd afgebroken"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Onbekend type"
# bestandssoort/bestandstype
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "bestandstype %s"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "type %s"
msgstr "Voortijdig einde aan gegevensstroom"
# naamloos/zonder naam/onbenoemd
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Zonder naam"
# bureaubladbestand/desktopbestand
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Desktopbestand bevat geen Exec-veld"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Kan geen terminalvenster vinden voor het uitvoeren van het programma"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "Kan persoonlijke programmaconfiguratiemap %s niet aanmaken: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Kan persoonlijke MIME-configuratiemap %s niet aanmaken: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Kan desktopbestand %s niet aanmaken"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Zelfgemaakte definitie voor %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "dit station begrijpt de opdracht ‘uitwerpen’ niet"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "dit station kan niet onderzocht worden op de aanwezigheid van media"
# niet ondersteund/niet mogelijk
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "De bewerking is niet mogelijk"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Kan niet over map kopiëren"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Kan map niet over map kopiëren"
# er is al een bestand met die naam?
# Het doelbestand bestaat (al)
# er was ook een msgid: Target file already exists
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Doelbestand bestaat al"
# map/de map
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Kan map niet recursief kopiëren"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Ongeldige symbolische verwijzing gegeven"
# wordt hier niet ondersteund
# (dus bijv. op een aangekoppelde externe opslag?)
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Prullenbak wordt ondersteund"
# Een bestandsnaam mag het teken / niet bevatten
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Het teken ‘%c’ mag niet in een bestandsnaam voorkomen"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "volumen begrijpt de opdracht ‘aankoppelen’ niet"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Er is geen programma toegewezen om dit bestand te openen"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "ontkoppelen niet ondersteund door koppeling"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "uitwerpen niet ondersteund door koppeling"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "opnieuw koppelen niet ondersteund door koppeling"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "ontkoppelen niet ondersteund door koppeling"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Uitvoerdatastroom begrijpt de opdracht ‘schrijven’ niet"
msgstr "Fout bij sluiten van unix: %s"
# hoofdmap van bestandssysteem
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Hoofdmap bestandssysteem"
# volumen kan niet uitgeworpen worden/implemeteert 'uitwerpen' niet/
# begrijpt de opdracht 'uitwerpen' niet
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "volumen begrijpt de opdracht ‘uitwerpen’ niet"
msgstr ""
"Project-Id-Version: nn\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Uventa attributt «%s» til elementet «%s»"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Attributt «%s» til elementet «%s» ikkje funne"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Uventa merke «%s», venta merket «%s»"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Uventa merke «%s» inni «%s»"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "Klarte ikkje å finna gyldig bokmerkefil i datamappene"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Eit bokmerke for adressa «%s» finst frå før"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Klarte ikkje å finna noko bokmerke for adressa «%s»"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Det er ikkje definert nokon MIME-type i bokmerket for adressa «%s»"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Privat-flagg er ikkje definert i bokmerket for adressa «%s»"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Det er ikkje laga nokon grupper i bokmerket for adressa «%s»"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
"Det er ikkje nokon program som heiter «%s» som har registrert bokmerke for «%s»"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Klarte ikkje å utvida køyrelinja «%s» med adressa «%s»"
msgid "Error opening directory '%s': %s"
msgstr "Feil ved opning av katalog «%s»: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Klarte ikkje allokera %lu byte for å lesa «%s»"
msgid "Error reading file '%s': %s"
msgstr "Feil ved lesing av fil «%s»: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Klarte ikkje å lesa frå fila «%s»: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Klarte ikkje å opna fila «%s»: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Klarte ikkje å få tak i eigenskapar for fila «%s»: fstat() feila: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Kunne ikkje opna fila «%s»: fdopen() feila: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Klarte ikkje å endra namnet på fila «%s» til «%s»: g_rename() feila: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Klarte ikkje å oppretta fila «%s»: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Klarte ikkje å opna fila «%s» for skriving: fdopen() feila: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Klarte ikkje å skriva til fila «%s»: fwrite() feila: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Klarte ikkje å lukka fila «%s»: fclose() feila: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Klarte ikkje å fjerna den eksisterande fila «%s»: g_unlink() feila: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Malen «%s» er ugyldig, kan ikkje ikkje innehalda ein «%s»"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Malfila «%s» inneheld ikkje XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KiB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MiB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GiB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Klarte ikkje å lesa den symbolske lenkja «%s»: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Symbolske lenkjer er ikkje støtta"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Klarte ikkje å kopiera fila «%s» til minnet: mmap() feila: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Feil på linje %d teikn %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Feil på linje %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr "Fann tom entitet «&;»; gyldige entitetar er: & " < '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"ein entitet; om dette et-teiknet ikkje er meint å vere ein entitet, skriv "
"den som &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entitetsnamnet «%s» er ikkje kjent"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Entiteten slutta ikkje med eit semikolon. Du brukte truleg eit et-teikn utan "
"å meina å opna ein entitet. Skriv et-teikn som «&»."
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Klarte ikkje å tolka «%-.*s», som burde vera eit teikn i ein teiknreferanse "
"(ê, til dømes) – kan henda talet er for stort"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Tom teiknreferanse, bør innehalda eit nummer slik som dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"Teiknreferansen slutta ikkje med eit semikolon; sannsynlegvis brukte du eit "
"et-teikn utan å villa starte ein entitet – skriv et-teikn som &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Referansen til entiteten er uferdig"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Referansen til teiknet er uferdig"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Ugyldig UTF-8-koda tekst - for lang sekvens"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Ugyldig UTF-8-koda tekst - ikkje eit startteikn"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Ugyldig UTF-8-koda tekst - ikkje gyldig «%s»"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumentet må byrja med eit element (t.d. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"«%s» er ikkje eit gyldig teikn etter ein «<»-teikn. Det kan ikkje vera det "
"fyrste teiknet i eit elementnamn"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Merkeleg teikn «%s», venta eit «>»-teikn for å avslutta startmerket av "
"elementet «%s»"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, 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:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"startmerket av elementet «%s», eller ein valfri attributt. Kan henda du "
"brukte eit ugyldig teikn i attributtnamnet"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Merkeleg teikn «%s», venta eit ope siteringsmerke etter likskapsteiknet for å "
"gje ein verdi for attributten «%s» av elementet «%s»"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"«%s» er ikkje eit gyldig teikn etter teikna «<» eller «/». «%s» kan ikkje starta "
"eit elementnamn"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"«%s» er ikkje eit gyldig teikn etter avsluttande merket «%s»; det tillatne "
"teiknet er «>»"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokumentet var tomt eller innheldt berre tomme teikn"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokument avslutta uventa rett etter ei open vinkelhake «<»"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Dokumentet slutta uventa med element framleis opne. «%s» var det siste "
"elementet som vart opna"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Dokumentet slutta uventa, venta å sjå at ei vinkelhake lukka det avsluttande "
"merket <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumentet tok uventa slutt inni eit elementnamn"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokumentet tok uventa slutt inni eit attributtnamn"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
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:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Dokumentet slutta uventa etter likskapsteiknet etter attributtnamnet; ingen "
"attributtverdi"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokumentet avslutta uventa medan det var inne i ein attributtverdi"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokumentet avslutta uventa inne i ein merknad eller prosseseringsinstruksjon"
msgid "Operation was cancelled"
msgstr "Operasjonen vart avbroten"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Ukjend type"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s-filtype"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s-type"
msgid "Unexpected early end-of-stream"
msgstr "Uventa tidleg slutt på straumen"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Utan namn"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Skrivebordfila oppgav ikkje Exec-felt"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Klarte ikkje å finna terminalen programmet krev"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "Kan ikkje laga programoppsettmappe %s for brukaren: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Kan ikkje laga MIME-oppsettmappe %s: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Kan ikkje laga skrivebordfila %s for brukaren"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Sjølvvald definisjon av %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "stasjonen støttar ikkje å løysa ut"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "stasjonen støttar ikkje å spørja etter media"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Operasjonen er ikkje støtta"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Omsluttande monteringspunkt finst ikkje"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Kan ikkje skriva over mappe"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Kan ikkje skriva ei mappe over ei mappe"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Målfila finst"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Kan ikkje kopiera katalog rekursivt"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Ugyldig symlink-verdi oppgjeven"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Papirkorg er ikkje støtta"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Filnamn kan ikkje innehalda «%c»"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "volumet støttar ikkje montering"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Ingen program er registrert til å handtera denne fila"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "monteringspunktet støttar ikkje avmontering"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "monteringspunktet støttar ikkje å løysa ut"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "monteringspunktet støttar ikkje å remontera"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "monteringspunktet støttar ikkje avmontering"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "utstraumen støttar ikkje skriving"
msgid "Error closing unix: %s"
msgstr "Feilved lukking av: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Filsystemrot"
msgid "Error writing to unix: %s"
msgstr "Feil under skriving til unix: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "volumet støttar ikkje å løysa ut"
msgstr ""
"Project-Id-Version: oc\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr ""
msgid "Error opening directory '%s': %s"
msgstr ""
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr ""
msgid "Error reading file '%s': %s"
msgstr "Error de lectura del fichièr '%s' : %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr ""
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Impossible de dobrir le fichièr '%s' : %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr ""
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr ""
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr ""
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr ""
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr ""
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f ko"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f Mo"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f Go"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr ""
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr ""
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr ""
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr ""
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr ""
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"it as &"
msgstr ""
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr ""
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr ""
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
msgstr ""
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (ê for example) - perhaps the digit is too large"
msgstr ""
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr ""
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"as &"
msgstr ""
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr ""
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr ""
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr ""
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr ""
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr ""
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr ""
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr ""
-#: glib/gmarkup.c:1184
+#: glib/gmarkup.c:1266
#, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"character in an attribute name"
msgstr ""
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, 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:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
msgstr ""
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
msgstr ""
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr ""
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr ""
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr ""
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr ""
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr ""
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Tipe desconegut"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Sens nom"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr ""
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr ""
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr ""
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr ""
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib.HEAD.or\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2007-06-11 18:17+0530\n"
"Last-Translator: Subhransu Behera <arya_subhransu@yahoo.co.in>\n"
"Language-Team: Oriya <oriya-group@lists.sarovar.org>\n"
"\n"
"\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "'%s' ର ଗୁଣ '%s' ଉପାଦାନ ପାଇଁ ଅପ୍ରତ୍ଯାଶିତ ଅଟେ"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "'%s' ଗୁଣକୁ '%s' ଉପାଦାନ ପାଇଁ ଖୋଜି ପାରିଲା ନାହିଁ"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "ଅପ୍ରତ୍ଯାଶିିତ '%s' ସୂଚକ, '%s' ସୂଚକକୁ ଆଶା କରାଯାଉଥିଲା"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "ଅପ୍ରତ୍ଯାଶିିତ '%s' ସୂଚକଟି '%s' ମଧ୍ଯରେ ଅଛି"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "ତଥ୍ଯ ଡିରେକ୍ଟୋରି ମାନଙ୍କରେ କୌଣସି ବୈଧ ଚିହ୍ନିତ ସ୍ଥାନ ମିଳିଲା ନାହିଁ"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "'%s' ୟୁ.ଆର.ଆଇ. ପାଇଁ ଗୋଟିଏ ବୁକ୍ ମାର୍କ ପୂର୍ବରୁ ଅବସ୍ଥିତ ଅଛି"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "'%s' ୟୁ.ଆର.ଆଇ. ପାଇଁ କୌଣସି ବୁକ୍ ମାର୍କ ମିଳିଲା ନାହିଁ"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "'%s' ୟୁ.ଆର.ଆଇ. ପାଇଁ ବୁକ୍ ମାର୍କରେ କୌଣସି MIME ପ୍ରକାରକୁ ବ୍ଯାଖ୍ଯା କରାଯାଇ ନାହିଁ"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "'%s' ୟୁ.ଆର.ଆଇ. ପାଇଁ ବୁକ୍ ମାର୍କରେ କୌଣସି ଗୁପ୍ତ ଚିହ୍ନକକୁ ବ୍ଯାଖ୍ଯା କରାଯାଇ ନାହିଁ"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "'%s' ୟୁ.ଆର.ଆଇ. ପାଇଁ ବୁକ୍ ମାର୍କରେ କୈଣସି ସମୂହକୁ ସେଟ କରାଯାଇ ନାହିଁ"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "'%s' ନାମରେ ନାମିତ କୌଣସି ପ୍ରୟୋଗ '%s' ପାଇଁ ଗୋଟିଏ ବୁକ୍ ମାର୍କକୁ ପଞ୍ଜିକ୍ରୁତ କରିନାହିଁ"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "'%s' ୟୁ.ଆର.ଆଇ. ସହିତ '%s' ନିଷ୍ପାଦନ ଧାଡିକୁ ବର୍ଦ୍ଧନ କରିବାରେ ବିଫଳ"
msgid "Error opening directory '%s': %s"
msgstr "%s' ଡିରେକ୍ଟୋରି ଖୋଲିବାରେ ତ୍ରୁଟି: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "\"%2$s\" ଫାଇଲ ପଢିବା ପାଇଁ %1$lu ବାଇଟ୍ ବାଣ୍ଟିହେଲା ନାହିଁ"
msgid "Error reading file '%s': %s"
msgstr "'%s' ଫାଇଲ ପଢିବାରେ ତ୍ରୁଟି: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "'%s' ଫାଇଲ ପଢିବାରେ ଅସଫଳ: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "'%s' ଫାଇଲ ଖୋଲିବାରେ ଅସଫଳ: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "'%s' ଫାଇଲର ଗୁଣ ପାଇବାରେ ଅସଫଳ: fstat() ଅସଫଳ: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "'%s' ଫାଇଲ ଖୋଲିବାରେ ଅସଫଳ: fdopen() ଅସଫଳ: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "'%s' ଫାଇଲ ରୁ '%s' ନାମ ବଦଳାଇ ବାରେ ଅସଫଳ: g_rename() ଅସଫଳ: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "'%s' ଫାଇଲ ସ୍ରୁଷ୍ଟି କରିବାରେ ଅସଫଳ: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "'%s' ଫାଇଲ କୁ େଲଖନ ପାଇଁ ଖୋଲିବାରେ ଅସଫଳ: fdopen() ଅସଫଳ: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "'%s' ଫାଇଲ ଖୋଲିବାରେ ଅସଫଳ: fwrite() ଅସଫଳ: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "'%s' ଫାଇଲ କୁ ବନ୍ଦ କରିବା ରେ ଅସଫଳ: fclose() ଅସଫଳ: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "ଅବସ୍ଥିତ '%s' ଫାଇଲ କାଢି ହେଲା ନାହଁି: g_unlink ଅସଫଳ %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "'%s' ନମୁନା ଟି ଅବୈଧ ଅଟେ, '%s' ଧାରଣ କରିବା ଉଚିତ ନୁହେଁ"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "'%s' ନମୁନା ଟି XXXXXXକୁ ଧାରଣ କରିନାହିଁ"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "'%s' ପ୍ରତିକାତ୍ମକ ସଂୟୋଗ ପଢିବାରେ ଅସଫଳ: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "ପ୍ରତିକାତ୍ମକ ସଂୟୋଗ ଅସହାୟକ"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' ଫାଇଲ କୁ ମ୍ଯାପ୍ କରିବାରେ ଅସଫଳ: mmap() ଅସଫଳ: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "%d ଧାଡ଼ିର %d ଅକ୍ଷରରେ ତ୍ରୁଟି: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "%d ଧାଡ଼ିରେ ତ୍ରୁଟି: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr "ଖାଲି ବସ୍ତୁ '&;' ଦେଖା ଗଲା; ବୈଧ ବସ୍ତୁଗୁଡ଼ିକ ହେଲା: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"ଗୋଟିଏ ବସ୍ତୁର ନାମର ଆରମ୍ଭ ରେ '%s' ଅକ୍ଷର ବୈଧ ନୁହେଁ; ଅକ୍ଷର & ଗୋଟିଏ ବସ୍ତୁକୁ ଆରମ୍ଭ କରେ; ଯଦି ଏହି "
"ଆମ୍ପର୍ସେଣ୍ଡ୍ ଗୋଟିଏ ବସ୍ତୁ ନୁହେଁ, ଏହାକୁ & ଭାବରେ ଏସ୍କେପ୍ କରନ୍ତୁ;"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "ବସ୍ତୁ ନାମ ମଦ୍ଧ୍ଯ ରେ '%s' ଅକ୍ଷର ବୈଧ ନୁହେଁ"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "'%s' ବସ୍ତୁ ନାମ ଜଣା ନାହିଁ"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"ବସ୍ତୁଟି ସେମିକୋଲନରେ ଶେଷ ହେଲା ନାହିଁ; ସମ୍ଭବତଃ ଆପଣ ଗୋଟିଏ ବସ୍ତୁ ଆରମ୍ଭ କରିବାକୁ ନ ଚାହିଁ, ଏକ "
"ଆମ୍ପର୍ସେଣ୍ଡ୍ ଅକ୍ଷର ବ୍ଯବହାର କରିଛନ୍ତି - ତାହାକୁ & ଭାବରେ ଏସ୍କେପ୍ କରନ୍ତୁ"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"'%-.*s' କୁ ବିଶ୍ଳେଷଣ କରିବାରେ ଅସଫଳ, ଯାହାକି ଗୋଟିଏ ଅକ୍ଷର ରେଫରେନ୍ସ ମଦ୍ଧ୍ଯରେ ଏକ ଅଙ୍କ ହେବା ଉଚିତ "
"ଥିଲା(ଉଦାହରଣ ସ୍ବରୂପେ &#୨୩୪;) - ବୋଧହୁଏ ଅଙ୍କଟି ବହୁତ ବଡ଼ ଅଟେ"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "'%-.*s' ଅକ୍ଷର ରେଫରେନ୍ସ ଟି ଗୋଟିଏ ଅନୁମତ ଅକ୍ଷରକୁ ସଙ୍କେତ କରୁ ନାହିଁ"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "ଖାଲି ଅକ୍ଷର ରେଫରେନ୍ସ; ଗୋଟିଏ ଅଙ୍କକୁ ଅନୁର୍ଭୁକ୍ତ କରିବା ଉଚିତ, ଯେପରିକି &#୪୫୪;"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"ଅକ୍ଷର ରେଫରେନ୍ସ ସେମିକୋଲନରେ ସମାପ୍ତ ହେଉ ନାହିଁ; ସମ୍ଭବତଃ ଆପଣ ଗୋଟିଏ ବସ୍ତୁ ଆରମ୍ଭ କରିବାକୁ ନ ଚାହିଁ, "
"ଏକ ଆମ୍ପର୍ସେଣ୍ଡ୍ ଅକ୍ଷର ବ୍ଯବହାର କରିଛନ୍ତି - ତାହାକୁ & ଭାବରେ ଏସ୍କେପ୍ କରନ୍ତୁ"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "ଅସମାପ୍ତ ବସ୍ତୁ ରେଫରେନ୍ସ"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "ଅସମାପ୍ତ ଅକ୍ଷର ରେଫରେନ୍ସ"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "ଅବୈଧ ଇଉ.ଟି.ଏଫ.-୮ ସାଙ୍କେତିକ ପାଠ୍ଯ"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "ଅବୈଧ ଇଉ.ଟି.ଏଫ.-୮ ସାଙ୍କେତିକ ପାଠ୍ଯ"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "ଅବୈଧ ଇଉ.ଟି.ଏଫ.-୮ ସାଙ୍କେତିକ ପାଠ୍ଯ"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "ଦଲିଲ ଗୋଟିଏ ଉପାଦାନରେ ଆରମ୍ଭ ହେବା ଉଚିତ (ଉଦାହରଣ ସ୍ବରୂପ <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
msgstr ""
"'<' ଅକ୍ଷର ପଛରେ ଆସୁଥିବା '%s' ଅକ୍ଷର ବୈଧ ନୁହେଁ; ଏହା ଗୋଟିଏ ବସ୍ତୁର ନାମକୁ ଆରମ୍ଭ କରିପାରିବ ନାହିଁ"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"ବିଚିତ୍ର ଅକ୍ଷର '%s', '%s' ଉପାଦାନର ପ୍ରାରମ୍ଭ ସୂଚକକୁ ସମାପ୍ତ କରିବା ପାଇଁ '>' ଅକ୍ଷର ପ୍ରତ୍ଯାଶିତ ଥିଲା"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, 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:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"ପ୍ରତ୍ଯାଶିତ ଥିଲା, ଅଥବା ଇଚ୍ଛାଧୀନ ଭାବରେ ଗୋଟିଏ ଗୁଣ; ବୋଧହୁଏ ଆପଣ ଗୋଟିଏ ଗୁଣର ନାମରେ ଏକ ଅବୈଧ "
"ଅକ୍ଷର ବ୍ଯବହାର କରିଛନ୍ତି"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"ବିଚିତ୍ର ଅକ୍ଷର '%1$s', ସମାନ ଚିହ୍ନ ପରେ '%3$s' ଉପାଦାନର '%2$s' ଗୁଣର ମୂଲ୍ଯ ଦେବା ପାଇଁ ଗୋଟିଏ "
"ଖୋଲା ଉଦ୍ଧ୍ରୁତି ଚିହ୍ନ ପ୍ରତ୍ଯାଶିତ ଥିଲା"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'</' ଅକ୍ଷରଗୁଡ଼ିକ ପଛରେ ଆସୁଥିବା '%s' ଅକ୍ଷର ବୈଧ ନୁହେଁ; '%s' ଗୋଟିଏ ଉପାଦାନର ନାମର ଆରମ୍ଭ "
"କରିପାରିବ ନାହିଁ"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
msgstr ""
"ବନ୍ଦ ଉପାଦାନ ନାମ '%2$s' ପଛରେ ଆସୁଥିବା '%1$s' ଅକ୍ଷର ବୈଧ ନୁହେଁ; ଅନୁମତ ଅକ୍ଷର ହେଲା '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "ଉପାଦାନ '%s' ବନ୍ଦ କରାଯାଇଥିଲା, ବର୍ତ୍ତମାନ କୌଣସି ଉପାଦାନ ଖୋଲା ନାହିଁ"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "ଉପାଦାନ '%s' ବନ୍ଦ କରାଯାଇଥିଲା, କିନ୍ତୁ ବର୍ତ୍ତମାନ '%s' ଉପାଦାନଟି ଖୋଲା ଅଛି"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "ଦଲିଲ ଖାଲି ଥିଲା ବା କେବଳ ଖାଲି ଯାଗା ଧାରଣ କରିଥିଲା"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "ଦଲିଲଟି ଗୋଟିଏ କୌଣିକ ବନ୍ଧନୀ '<'ର ଠିକ ପରେ ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"ଉପାଦାନଗୁଡ଼ିକ ଖୋଲା ଥାଇ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା'%s' ଉପାଦାନ ସର୍ବଶେଷ ଖୋଲା "
"ଥିଲା"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା, <%s/> ସୂଚକ ସମାପ୍ତ କରିବା ପାଇଁ ଗୋଟିଏ ବନ୍ଦ କୌଣିକ "
"ବନ୍ଧନୀ ପ୍ରତ୍ଯାଶିତ ଥିଲା"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "ଉପାଦାନର ନାମ ମଧ୍ଯରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "ଗୁଣର ନାମ ମଧ୍ଯରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "ଉପାଦାନ ଆରମ୍ଭର ସୂଚକ ମଧ୍ଯରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"ଗୁଣର ନାମ ପଛରେ ଆସୁଥିବା ସମାନ ଚିହ୍ନ ପରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା; ଗୁଣର କିଛି "
"ମୂଲ୍ଯ ନାହିଁ"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "ଗୁଣର ମୂଲ୍ଯ ମଧ୍ଯରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "'%s' ଉପାଦାନର ବନ୍ଦ ସୂଚକ ମଧ୍ଯରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "ଟିପ୍ପଣୀ ବା ସଂସାଧନ ସାଧନ ମଧ୍ଯରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "ଅଜଣା ତୃଟି"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "ପ୍ରତିକାତ୍ମକ ସଂୟୋଗ ଅସହାୟକ"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "ପ୍ରତିକାତ୍ମକ ସଂୟୋଗ ଅସହାୟକ"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
#, fuzzy
msgid "No application is registered as handling this file"
msgstr "'%s' ନାମରେ ନାମିତ କୌଣସି ପ୍ରୟୋଗ '%s' ପାଇଁ ଗୋଟିଏ ବୁକ୍ ମାର୍କକୁ ପଞ୍ଜିକ୍ରୁତ କରିନାହିଁ"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "%d ଧାଡ଼ିରେ ତ୍ରୁଟି: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "ରୁପାନ୍ତରଣ ର ବିକଲ୍ପ ରେ ତ୍ରୁଟି: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-04 23:30+0530\n"
"Last-Translator: Amanpreet Singh Alam <apreet.alam@gmail.com>\n"
"Language-Team: Punjabi/Panjabi <punjabi-users@list.sf.net>\n"
"X-Generator: LoKalize 0.2\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "ਇਕਾਈ '%2$s' ਲਈ ਗਲਤ ਗੁਣ '%1$s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "ਇਕਾਈ '%2$s' ਲਈ '%1$s' ਗੁਣ ਨਹੀਂ ਲੱਭਿਆ"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "ਗਲਤ ਟੈਗ '%s', ਟੈਗ '%s' ਲੋੜੀਦਾ ਸੀ"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "'%2$s' ਵਿੱਚ '%1$s' ਟੈਗ"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "ਡਾਟਾ ਡਾਇਰੈਕਟਰੀਆਂ ਵਿੱਚ ਕੋਈ ਢੁੱਕਵੀਂ ਬੁੱਕਮਾਰਕ ਫਾਇਲ ਨਹੀਂ ਲੱਭੀ"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI '%s' ਲਈ ਇੱਕ ਬੁੱਕਮਾਰਕ ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "URI '%s' ਲਈ ਕੋਈ ਬੁੱਕਮਾਰਕ ਨਹੀਂ ਲੱਭਾ"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI '%s' ਲਈ ਬੁੱਕਮਾਰਕ ਵਿੱਚ ਕੋਈ MIME ਕਿਸਮ ਪਰਿਭਾਸ਼ਿਤ ਨਹੀਂ ਹੈ"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI '%s' ਲਈ ਬੁੱਕਮਾਰਕ ਕੋਈ ਪ੍ਰਾਈਵੇਟ ਫਲੈਗ ਨਹੀਂ ਦੱਸਿਆ ਗਿਆ"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI '%s' ਲਈ ਬੁੱਕਮਾਰਕ ਵਿੱਚ ਕੋਈ ਗਰੁੱਪ ਸੈੱਟ ਨਹੀਂ ਕੀਤਾ ਗਿਆ"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "ਕਿਸੇ ਕਾਰਜ ਨੇ '%2$s' ਲਈ '%1$s' ਨਾਂ ਨਾਲ ਕੋਈ ਬੁੱਕਮਾਰਕ ਰਜਿਸਟਰ ਨਹੀਂ ਕੀਤਾ"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "exec ਲਾਈਨ '%s' ਨੂੰ URI '%s' ਨਾਲ ਫੈਲਾਉਣ ਲਈ ਫੇਲ੍ਹ ਹੋਇਆ"
msgid "Error opening directory '%s': %s"
msgstr "ਡਾਇਰੈਕਟਰੀ '%s' ਖੋਲ੍ਹਣ ਲਈ ਗਲਤੀ: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "ਫਾਇਲ \"%2$s\" ਖੋਲ੍ਹਣ ਲਈ %1$lu ਬਾਈਟ ਨਹੀਂ ਦਿੱਤੇ ਜਾ ਸਕੇ"
msgid "Error reading file '%s': %s"
msgstr "'%s' ਫਾਇਲ ਪੜ੍ਹਨ 'ਚ ਗਲਤੀ: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "ਫਾਇਲ '%s' ਤੋਂ ਪੜ੍ਹਨ 'ਚ ਅਸਫ਼ਲ: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "'%s' ਫਾਇਲ ਖੋਲ੍ਹ 'ਚ ਗਲਤੀ %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "ਫਾਇਲ '%s' ਦੀਆਂ ਵਿਸ਼ੇਸਤਾ ਖੋਲ੍ਹਣ 'ਚ ਫੇਲ੍ਹ: fstat() ਫੇਲ੍ਹ: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "ਫਾਇਲ '%s' ਖੋਲ੍ਹਣ ਵਿੱਚ ਫੇਲ੍ਹ: fdopen() ਫੇਲ੍ਹ: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "ਫਾਇਲ '%s' ਦਾ ਨਾਂ '%s' ਬਦਲਣ 'ਚ ਅਸਫ਼ਲ: g_rename() ਫੇਲ੍ਹ: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "ਫਾਇਲ %s' ਬਣਾਉਣ ਵਿੱਚ ਫੇਲ੍ਹ: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "ਫਾਇਲ '%s' ਨੂੰ ਲਿਖਣ ਲਈ ਖੋਲ੍ਹਣ ਵਾਸਤੇ ਫੇਲ੍ਹ: fdopen() ਫੇਲ੍ਹ: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "ਫਾਇਲ '%s' ਨੂੰ ਲਿਖਣ ਲਈ ਫੇਲ੍ਹ: fwrite() ਫੇਲ੍ਹ: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "ਫਾਇਲ '%s' ਨੂੰ ਬੰਦ ਕਰਨ 'ਚ ਫੇਲ੍ਹ: fdopen() ਫੇਲ੍ਹ: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "ਮੌਜੂਦਾ ਫਾਇਲ '%s' ਨੂੰ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: g_unlink() ਫੇਲ੍ਹ: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "ਟੈਪਲੇਟ '%s' ਸਹੀਂ ਨਹੀਂ ਹੈ, ਇਸ ਕੋਲ '%s' ਨਹੀਂ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "ਟੈਂਪਲੇਟ '%s' XXXXXX ਨਹੀਂ ਰੱਖਦਾ ਹੈ"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "ਸਿੰਬੋਲਿਕ ਲਿੰਕ '%s' ਪੜ੍ਹਨ ਲਈ ਫੇਲ੍ਹ: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "ਸਿੰਬੋਲਿਕ ਲਿੰਕ ਮੱਦਦ ਪ੍ਰਾਪਤ ਨਹੀਂ ਹਨ"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "ਫਾਇਲ '%s' ਮਿਲਾਉਣ ਵਿੱਚ ਫੇਲ੍ਹ: mmap() ਫੇਲ੍ਹ ਹੋਇਆ: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "ਲਾਈਨ %d ਅੱਖਰ %d ਉੱਤੇ ਗਲਤੀ:"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "ਸਤਰ %d ਉੱਤੇ ਗਲਤੀ: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr "ਖਾਲੀ ਐਂਟਟੀ '&;' ਵੇਖੋ; ਵੈਧ ਐਂਟਟੀਆਂ ਹਨ : & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"ਇਹ %s ਅੱਖਰ ਕੋਈ ਐਂਟਟੀ ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਗਲਤ ਹੈ & ਅੱਖਰ ਇਕਾਈ ਆਰੰਭ ਕਰਦਾ ਹੈ; ਜੇਕਰ ਇਹ ਐਪਰਸੈਡ ਐਂਟਟੀ "
"ਬਣਨਯੋਗ ਨਹੀਂ ਤਾਂ ਇਸ ਨੂੰ ਇੰਝ & ਛੱਡ ਦਿਓ"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "'%s' ਅੱਖਰ ਇੱਕ ਐਂਟਟੀ ਦੇ ਨਾਂ ਲਈ ਜਾਇਜ਼ ਨਹੀਂ ਹੈ"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "ਐਂਟਟੀ ਨਾਂ '%s' ਪਤਾ ਨਹੀਂ ਹੈ"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"ਐਂਟਟੀ ਸੈਮੀਕਾਲਨ ਨਾਲ ਖਤਮ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੋ ਸਕਦਾ ਕਿ ਤੁਸੀਂ ਇੱਕ ਐਪਰਸੈਨਡ ਅੱਖਰ ਬਿਨਾਂ ਐਂਟਟੀ ਸ਼ੁਰੂ ਕੀਤੇ "
"ਹੀ ਵਰਤ ਰਹੇ ਹੋ, ਐਪਰਸੈਨਡ ਇਸਤਰਾਂ & ਛੱਡੋ"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
" '%-.*s' ਪਾਰਸ ਕਰਨ ਵਿੱਚ ਫੇਲ੍ਹ, ਜੋ ਕਿ ਅੱਖਰ ਵਿੱਚ ਨੰਬਰ ਹੋਣ ਚਾਹੀਦਾ ਹੈ ਵੇਖੋ (ê ਉਦਾਹਰਨ "
"ਲਈ) - ਅੱਖਰ ਬਹੁਤ ਲੰਮਾ ਹੋ ਗਿਆ ਹੈ"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "ਅੱਖਰ ਰੈਫਰੈਂਸ '%-.*s' ਇਕ ਚੁਣੇ ਅੱਖਰ ਨੂੰ ਇਨਕੋਡ ਨਹੀਂ ਕਰ ਸਕਦਾ"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "ਖਾਲੀ ਅੱਖਰ ਰੈਫਰੈਂਸ, ਕੋਈ ਨੰਬਰ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ ਜਿਵੇਂ ਕਿ dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"ਅੱਖਰੀ ਰੈਫਰੈਂਸ ਸੈਮੀਕਾਲਨ ਨਾਲ ਖਤਮ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੋ ਕਿ ਤੁਸੀ ਇੱਕ ਐਪਰਸੈਨਡ ਅੱਖਰ ਬਿਨਾਂ ਐਂਟਟੀ ਸ਼ੁਰੂ ਕੀਤੇ "
"ਹੀ ਵਰਤ ਰਹੇ ਹੋ, ਐਪਰਸੈਨਡ ਇੰਝ & ਛੱਡੋ"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "ਅਧੂਰਾ ਐਂਟਟੀ ਰੈਫਰੈਂਸ"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "ਅਧੂਰਾ ਅੱਖਰੀ ਰੈਫਰੈਂਸ"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "ਗਲਤ UTF-8 ਇੰਕੋਡ ਟੈਕਸਟ - ਓਵਰਲਾਂਗ ਕ੍ਰਮ"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "ਗਲਤ UTF-8 ਇੰਕੋਡ ਟੈਕਸਟ - ਇੱਕ ਸ਼ੁਰੂਆਤੀ ਅੱਖਰ ਨਹੀਂ"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "ਗਲਤ UTF-8 ਇੰਕੋਡ ਅੱਖਰ - ਵੈਧ '%s' ਨਹੀਂ"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "ਦਸਤਾਵੇਜ਼ ਇਕ ਐਲੀਮਿੰਟ (ਜਿਵੇਂ ਕਿ <book>) ਨਾਲ ਸ਼ੁਰੂ ਹੋਣਾ ਜਰੂਰੀ ਹੈ"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"ਇਹ '%s' ਜਾਇਜ ਅੱਖਰ ਨਹੀਂ ਹੈ ਜੋ ਕਿ '<' ਅੱਖਰ ਤੋਂ ਮਗਰ ਹੈ, ਇਹ ਕਿਸੇ ਐਲੀਮਿੰਟ ਦੇ ਨਾਂ ਨਾਲ ਆਰੰਭ ਨਹੀਂ "
"ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"ਅਨਿਸ਼ਚਿਤਅੱਖਰ '%s', ਇਹ '>' ਅੱਖਰ ਦੀ ਉਮੀਦ ਸੀ ਤਾਂ ਕਿ ਐਲੀਮਿੰਟ '%s' ਦੇ ਸ਼ੁਰੂ ਟੈਗ ਨੂੰ ਬੰਦ ਕੀਤਾ "
"ਜਾ ਸਕੇ"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, 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:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"ਅਨਿਸ਼ਚਿਤ ਅੱਖਰ '%s' ਹੈ, ਇਕ ਅੱਖਰ '>'ਜਾਂ '/' ਨਿਸ਼ਚਿਤ ਅੱਖਰ ਹੈ ਤਾਂ ਕਿ ਹਿੱਸੇ ਦੇ ਸ਼ੁਰੂ ਕੀਤੇ ਟੈਗ ਨੂੰ "
"ਖਤਮ ਕੀਤੀ ਜਾ ਸਕੇ '%s', ਜਾਂ ਚੁਣਿਆ ਪ੍ਰਤੀਕ, ਜਿਸ ਲ਼ਈ ਤੁਸੀ ਗਲਤ ਨਾਂ ਭਰਿਆ ਹੈ।"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"ਅਨਿਸ਼ਚਿਤ ਅੱਖਰ '%1$s', ਬਰਾਬਰ ਦੇ ਨਿਸ਼ਾਨ ਮਗਰੋਂ ਇਕ ਖੁੱਲਾ ਹਵਾਲਾ ਨਿਸ਼ਾਨ ਜ਼ਰੂਰੀ ਹੈ, ਜਦੋਂ ਕਿ ਤੁਸੀਂ "
"ਇੱਕ ਐਲੀਮਿੰਟ '%3$s' ਦੀ ਵਿਸ਼ੇਸ਼ਤਾ '%2$s' ਲਈ ਮੁੱਲ ਦੇ ਰਹੇ ਹੋ।"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"ਇਸ '</' ਅੱਖਰ ਮਗਰੋਂ ਇਹ %s' ਅੱਖਰ ਜ਼ਾਇਜ ਨਹੀਂ ਹੈ, '%s' ਇੱਕ ਐਲੀਮਿੰਟ ਦੇ ਨਾਂ ਨਾਲ ਸ਼ੁਰੂ ਨਹੀਂ ਹੋ ਸਕਦਾ "
"ਹੈ।"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, 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:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "ਇਹ ਐਲੀਮਿੰਟ '%s' ਬੰਦ ਸੀ, ਕੋਈ ਐਲੀਮਿੰਟ ਖੁੱਲ੍ਹਾ ਨਹੀਂ ਹੈ"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "ਇਹ ਐਲੀਮਿੰਟ '%s' ਬੰਦ ਸੀ, ਪਰ ਅਜੇ '%s' ਐਲੀਮਿੰਟ ਖੁੱਲਾ ਹੈ"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "ਦਸਤਾਵੇਜ਼ ਖਾਲੀ ਹੈ ਜਾਂ ਕੇਵਲ ਖਾਲੀ ਥਾਂ ਹੀ ਰੱਖਦਾ ਹੈ"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ, ਇਕ ਖੁੱਲੀ ਬਰੈਕਟ '<' ਪਾਉਣ ਮਗਰੋਂ"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr "ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ, ਜਦੋਂ ਕਿ-ਇਹ '%s' ਆਖਰੀ ਐਲੀਮਿੰਟ ਖੁੱਲਾ ਹੈ"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
msgstr ""
"ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ, ਇਕ ਬੰਦ ਬਰੈਕਟ <%s/> ਜੋ ਕਿ ਪੱਟੀ ਨੂੰ ਬੰਦ ਕਰਦੀ ਹੈ, ਦੀ ਉਮੀਦ ਸੀ"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "ਇਕ ਐਲੀਮਿੰਟ ਦੇ ਨਾਂ ਕਰਕੇ ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "ਇਕ ਗੁਣ ਦੇ ਨਾਂ ਕਰਕੇ ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "ਇਕ ਐਲੀਮਿੰਟ-ਖੋਲ੍ਹਣ ਟੈਗ ਕਰਕੇ ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"ਇਕ ਗੁਣ ਦੇ ਨਾਂ ਤੋਂ ਪਹਿਲਾਂ ਬਰਾਬਰ ਦੇ ਨਿਸ਼ਾਨ ਕਰਕੇ ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ, ਗੁਣ ਦਾ ਕੋਈ ਮੁੱਲ "
"ਨਹੀਂ ਹੈ"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "ਇਕ ਗੁਣ ਦੇ ਮੁੱਲ ਕਰਕੇ ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "ਇਕ ਐਲੀਮਿੰਟ '%s' ਦੇ ਟੈਗ ਕਰਕੇ ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "ਇਕ ਟਿੱਪਣੀ ਜਾਂ ਹਦਾਇਤ ਚਲਾਉਣ ਦੌਰਾਨ ਦਸਤਾਵੇਜ਼ ਅਚਾਨਕ ਬੰਦ ਹੋ ਗਿਆ ਹੈ"
msgid "Operation was cancelled"
msgstr "ਓਪਰੇਸ਼ਨ ਰੱਦ ਕੀਤਾ ਗਿਆ"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "ਅਣਜਾਣ ਟਾਈਪ"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s ਫਾਇਲ-ਟਾਈਪ"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s ਟਾਈਪ"
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "ਬਿਨ-ਨਾਂ"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "ਡੈਸਕਟਾਪ ਫਾਇਲ ਨੇ Exec ਫੀਲਡ ਨਹੀਂ ਦਿੱਤਾ ਹੈ"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "ਐਪਲੀਕੇਸ਼ਨ ਲਈ ਟਰਮੀਨਲ ਲੋੜ ਲੱਭਣ ਲਈ ਅਸਮਰੱਥ ਹੈ"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "ਯੂਜ਼ਰ ਐਪਲੀਕੇਸ਼ਨ ਸੰਰਚਨਾ ਫੋਲਡਰ %s ਬਣਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "ਯੂਜ਼ਰ MIME ਸੰਰਚਨਾ ਫੋਲਡਰ %s ਬਣਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "ਯੂਜ਼ਰ ਡੈਸਕਟਾਪ ਫਾਇਲ %s ਬਣਾਈ ਨਹੀਂ ਜਾ ਸਕਦੀ"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "%s ਲਈ ਕਸਟਮ ਪਰਿਭਾਸ਼ਾ"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "ਡਰਾਇਵ ਲਈ ਬਾਹਰ ਕੱਢਣਾ ਨਹੀਂ ਬਣਾਇਆ"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "ਓਪਰੇਸ਼ਨ ਸਹਾਇਕ ਨਹੀਂ"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "ਰੱਖਣ ਵਾਲਾ ਮਾਊਂਟ ਮੌਜੂਦ ਨਹੀਂ"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "ਡਾਇਰੈਕਟਰੀ ਉੱਤੇ ਕਾਪੀ ਨਹੀਂ ਹੋ ਸਕਦਾ"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "ਡਾਇਰੈਕਟਰੀ ਡਾਇਰੈਕਟਰੀ ਉੱਤੇ ਕਾਪੀ ਨਹੀਂ ਹੋ ਸਕਦੀ"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "ਟਾਰਗੇਟ ਫਾਇਲ ਮੌਜੂਦ ਹੈ"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "ਡਾਇਰੈਕਟਰੀ ਲਗਾਤਾਰ ਕਾਪੀ ਨਹੀਂ ਹੋ ਸਕਦੀ"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "ਗਲਤ ਸਿੰਬੋਲਿੰਕ ਮੁੱਲ ਦਿੱਤਾ"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "ਰੱਦ ਸਹਾਇਕ ਨਹੀਂ"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "ਫਾਇਲ ਨਾਂ ਵਿੱਚ ' %c' ਮੌਜੂਦ ਨਹੀਂ ਹੋ ਸਕਦਾ"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "ਵਾਲੀਅਮ ਲਈ ਮਾਊਂਟ ਸਥਾਪਤ ਨਹੀਂ ਹੈ"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "ਇਹ ਫਾਈਲ ਹੈਂਡਲ ਕਰਨ ਲਈ ਕੋਈ ਐਪਲੀਕੇਸ਼ਨ ਰਜਿਸਟਰ ਨਹੀਂ ਹੈ"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "ਵਾਲੀਅਮ ਲਈ ਮਾਊਂਟ ਸਥਾਪਤ ਨਹੀਂ ਹੈ"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "unix ਬੰਦ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "ਫਾਇਲ ਸਿਸਟਮ ਰੂਟ"
msgid "Error writing to unix: %s"
msgstr "unix ਉੱਤੇ ਲਿਖਣ ਦੌਰਾਨ ਗਲਤੀ: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib.HEAD.pl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2007-09-14 17:12+0200\n"
"Last-Translator: wadim dziedzic <wdziedzi@aviary.pl>\n"
"Language-Team: Polish <translators@gnomepl.org>\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Niespodziewany atrybut \"%s\" dla elementu \"%s\""
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Nie odnaleziono atrybutu \"%s\" dla elementu \"%s\""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Nieoczekiwany znacznik \"%s\", oczekiwano znacznika \"%s\""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Nieoczekiwany znacznik \"%s\" wewnątrz \"%s\""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "Nie można odnaleźć poprawnego pliku zakładek w katalogach danych"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Zakładka dla URI \"%s\" już istnieje"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Nie znaleziono zakładki dla URI \"%s\""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Nie zdefiniowano typu MIME w zakładce dla URI \"%s\""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Nie zdefiniowano prywatnej flag w zakładce dla URI \"%s\""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Nie ustawiono grup w zakładce dla URI \"%s\""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Żadna aplikacja o nazwie \"%s\" nie zarejestrowała zakładki dla \"%s\""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Rozwinięcie linii \"%s\" z adresem URI \"%s\" nie powiodło się"
msgid "Error opening directory '%s': %s"
msgstr "Wystąpił błąd przy otwieraniu katalogu \"%s\": %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Nie można przydzielić %lu bajtów do odczytu pliku \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Wystąpił błąd przy odczycie pliku \"%s\": %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Nie można odczytać z pliku \"%s\": %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Nie można otworzyć pliku \"%s\": %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
"Nie można uzyskać atrybutów pliku \"%s\": funkcja fstat() zwróciła błąd: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Nie można otworzyć pliku \"%s\": funkcja fdopen() zwróciła błąd: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"Nie można zmienić nazwy pliku \"%s\" na \"%s\": funkcja g_rename() zwróciła "
"błąd: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Nie można utworzyć pliku \"%s\": %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
"Nie można otworzyć pliku \"%s\" do zapisu: funkcja fdopen() zwróciła błąd: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Nie można zapisać pliku \"%s\": funkcja fwrite() zwróciła błąd: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Nie można zamknąć pliku \"%s\": funkcja fclose() zwróciła błąd: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
"Nie można usunąć istniejącego pliku \"%s\": funkcja g_unlink() zwróciła "
"błąd: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Szablon \"%s\" jest niepoprawny, nie powinien on zawierać \"%s\""
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Szablon \"%s\" nie zawiera XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Niepowodzenie podczas odczytu dowiązania symbolicznego \"%s\": %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Dowiązania symboliczne nie są obsługiwane"
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:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Błąd w wierszu %d przy znaku %d: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Błąd w wierszu %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Napotkano pustą jednostkę \"&;\"; poprawnymi jednostkami są: & " "
"< > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"rozpoczyna jednostkę; jeśli znak ten nie powinien rozpoczynać jednostki, "
"należy go zapisać jako &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Nazwa jednostki \"%s\" nie jest znana"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Jednostka nie jest zakończona średnikiem; najprawdopodobniej został użyty "
"znak &, który nie miał oznaczać jednostki - należy go zapisać jako &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"będąca częścią odniesienia do znaku (np. ê) - być może liczba jest zbyt "
"duża"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Puste odniesienie do znaku; powinno ono zawierać cyfry, np. dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"został użyty znak &, który nie miał oznaczać jednostki - należy go zapisać "
"jako &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Niezakończone odniesienie do jednostki"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Niezakończone odniesienie do znaku"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Tekst nie jest poprawnym łańcuchem UTF-8 - za długa sekwencja"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
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:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Tekst nie jest poprawnym łańcuchem UTF-8 - niepoprawne \"%s\""
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokument musi rozpoczynać się jakimś elementem (np. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"Znak \"%s\" nie powinien występować po znaku \"<\"; nie może on rozpoczynać "
"nazwy elementu"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Niespodziewany znak \"%s\"; oczekiwano znaku \">\", kończącego początkowy "
"znacznik elementu \"%s\""
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Niespodziewany znak \"%s\"; po nazwie atrybutu \"%s\" elementu \"%s\" "
"oczekiwano znaku \"=\""
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"znacznik początkowy elementu \"%s\" lub opcjonalnie atrybutu; być może w "
"nazwie atrybutu został użyty niepoprawny znak"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Niespodziewany znak \"%s\"; oczekiwano otwierającego znaku cudzysłowu po "
"znaku równości przy podawaniu wartości atrybutu \"%s\" elementu \"%s\""
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"Znak \"%s\" nie jest znakiem, który może pojawić się po sekwencji \"</\"; \"%"
"s\" nie może rozpoczynać nazwy elementu"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"Znak \"%s\" nie jest znakiem, który może wystąpić po domykającej nazwie "
"elementu \"%s\"; dopuszczalnym znakiem jest \">\""
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokument jest pusty lub zawiera tylko separatory"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Zaraz po znaku \"%s\" nastąpił nieoczekiwany koniec dokumentu"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Nastąpił nieoczekiwany koniec dokumentu, gdy pewne elementy są wciąż otwarte "
"- \"%s\" był ostatnim otwartym elementem"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Nastąpił nieoczekiwany koniec dokumentu; oczekiwano znaku \">\", kończącego "
"znacznik <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Nastąpił nieoczekiwany koniec dokumentu wewnątrz nazwy elementu"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Nastąpił nieoczekiwany koniec dokumentu wewnątrz nazwy atrybutu"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"Nastąpił nieoczekiwany koniec dokumentu wewnątrz znacznika otwierającego "
"element."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Nastąpił nieoczekiwany koniec dokumentu po znaku równości występującym po "
"nazwie atrybutu; brak wartości atrybutu"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Nastąpił nieoczekiwany koniec dokumentu wewnątrz wartości atrybutu"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Nastąpił nieoczekiwany koniec dokumentu wewnątrz komentarza lub instrukcji "
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "nieznany błąd"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "Dowiązania symboliczne nie są obsługiwane"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Dowiązania symboliczne nie są obsługiwane"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
#, fuzzy
msgid "No application is registered as handling this file"
msgstr "Żadna aplikacja o nazwie \"%s\" nie zarejestrowała zakładki dla \"%s\""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Błąd w wierszu %d: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Błąd podczas przetwarzania opcji %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib.head\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-05-16 22:53+0000\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-07-14 19:07-0800\n"
"Last-Translator: Zabeeh Khan <zabeehkhan@gmail.com>\n"
"Language-Team: Pashto <pathanisation@googlegroups.com>\n"
"X-Poedit-Language: Pashto, Pushto\n"
"X-Poedit-Country: AFGHANISTAN\n"
-#: ../glib/gbookmarkfile.c:728
-#: ../glib/gbookmarkfile.c:805
-#: ../glib/gbookmarkfile.c:884
-#: ../glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
-#: ../glib/gbookmarkfile.c:739
-#: ../glib/gbookmarkfile.c:816
-#: ../glib/gbookmarkfile.c:826
-#: ../glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: ../glib/gbookmarkfile.c:1112
-#: ../glib/gbookmarkfile.c:1177
-#: ../glib/gbookmarkfile.c:1241
-#: ../glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: ../glib/gbookmarkfile.c:1137
-#: ../glib/gbookmarkfile.c:1151
-#: ../glib/gbookmarkfile.c:1219
-#: ../glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: ../glib/gbookmarkfile.c:1798
-#, c-format
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "په اومتوک درکموندونو کې کومه سمه ليکنښه دوتنه ونه موندل شوه"
-#: ../glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "لپاره يوه ليکنښه د مخکې نه شته دی URI '%s' د"
-#: ../glib/gbookmarkfile.c:2045
-#: ../glib/gbookmarkfile.c:2202
-#: ../glib/gbookmarkfile.c:2287
-#: ../glib/gbookmarkfile.c:2367
-#: ../glib/gbookmarkfile.c:2452
-#: ../glib/gbookmarkfile.c:2535
-#: ../glib/gbookmarkfile.c:2613
-#: ../glib/gbookmarkfile.c:2692
-#: ../glib/gbookmarkfile.c:2734
-#: ../glib/gbookmarkfile.c:2831
-#: ../glib/gbookmarkfile.c:2957
-#: ../glib/gbookmarkfile.c:3147
-#: ../glib/gbookmarkfile.c:3223
-#: ../glib/gbookmarkfile.c:3388
-#: ../glib/gbookmarkfile.c:3477
-#: ../glib/gbookmarkfile.c:3567
-#: ../glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "لپاره کومه ليکنښه ونه مونل شوه URI '%s' د"
-#: ../glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: ../glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: ../glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: ../glib/gbookmarkfile.c:3241
-#: ../glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: ../glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr ""
-#: ../glib/gconvert.c:431
-#: ../glib/gconvert.c:509
-#: ../glib/giochannel.c:1158
+#: glib/gconvert.c:431 glib/gconvert.c:509 glib/giochannel.c:1158
#, c-format
msgid "Conversion from character set '%s' to '%s' is not supported"
msgstr ""
-#: ../glib/gconvert.c:435
-#: ../glib/gconvert.c:513
+#: glib/gconvert.c:435 glib/gconvert.c:513
#, c-format
msgid "Could not open converter from '%s' to '%s'"
msgstr ""
-#: ../glib/gconvert.c:632
-#: ../glib/gconvert.c:1017
-#: ../glib/giochannel.c:1330
-#: ../glib/giochannel.c:1372
-#: ../glib/giochannel.c:2215
-#: ../glib/gutf8.c:956
-#: ../glib/gutf8.c:1405
-#, c-format
+#: glib/gconvert.c:632 glib/gconvert.c:1017 glib/giochannel.c:1330
+#: glib/giochannel.c:1372 glib/giochannel.c:2216 glib/gutf8.c:956
+#: glib/gutf8.c:1405
msgid "Invalid byte sequence in conversion input"
msgstr ""
-#: ../glib/gconvert.c:638
-#: ../glib/gconvert.c:944
-#: ../glib/giochannel.c:1337
-#: ../glib/giochannel.c:2227
+#: glib/gconvert.c:638 glib/gconvert.c:944 glib/giochannel.c:1337
+#: glib/giochannel.c:2228
#, c-format
msgid "Error during conversion: %s"
msgstr "%s :د اړونې پر مهال ستونزه"
-#: ../glib/gconvert.c:669
-#: ../glib/gutf8.c:952
-#: ../glib/gutf8.c:1156
-#: ../glib/gutf8.c:1297
-#: ../glib/gutf8.c:1401
-#, c-format
+#: glib/gconvert.c:669 glib/gutf8.c:952 glib/gutf8.c:1156 glib/gutf8.c:1297
+#: glib/gutf8.c:1401
msgid "Partial character sequence at end of input"
msgstr ""
-#: ../glib/gconvert.c:919
+#: glib/gconvert.c:919
#, c-format
msgid "Cannot convert fallback '%s' to codeset '%s'"
msgstr ""
-#: ../glib/gconvert.c:1734
+#: glib/gconvert.c:1734
#, c-format
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
msgstr ""
-#: ../glib/gconvert.c:1744
+#: glib/gconvert.c:1744
#, c-format
msgid "The local file URI '%s' may not include a '#'"
msgstr ""
-#: ../glib/gconvert.c:1761
+#: glib/gconvert.c:1761
#, c-format
msgid "The URI '%s' is invalid"
msgstr "ناسم دی URI '%s'"
-#: ../glib/gconvert.c:1773
+#: glib/gconvert.c:1773
#, c-format
msgid "The hostname of the URI '%s' is invalid"
msgstr ""
-#: ../glib/gconvert.c:1789
+#: glib/gconvert.c:1789
#, c-format
msgid "The URI '%s' contains invalidly escaped characters"
msgstr ""
-#: ../glib/gconvert.c:1884
+#: glib/gconvert.c:1884
#, c-format
msgid "The pathname '%s' is not an absolute path"
msgstr ""
-#: ../glib/gconvert.c:1894
-#, c-format
+#: glib/gconvert.c:1894
msgid "Invalid hostname"
msgstr "ناسم کوربه نوم"
-#: ../glib/gdir.c:104
-#: ../glib/gdir.c:124
+#: glib/gdir.c:109 glib/gdir.c:129
#, c-format
msgid "Error opening directory '%s': %s"
msgstr "%s :درکموند پرانيستلو کې ستونزه '%s'"
-#: ../glib/gfileutils.c:557
-#: ../glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr ""
-#: ../glib/gfileutils.c:572
+#: glib/gfileutils.c:572
#, c-format
msgid "Error reading file '%s': %s"
msgstr "%s :دوتنه لوسلو کې ستونزه '%s'"
-#: ../glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "%s :دوتنې نه لوستلو کې پاتې راغی '%s' د"
-#: ../glib/gfileutils.c:705
-#: ../glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "%s :دوتنه پرانيستلو کې پاتې راغی '%s'"
-#: ../glib/gfileutils.c:722
-#: ../glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
-#: ../glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr ""
-#: ../glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
-#: ../glib/gfileutils.c:932
-#: ../glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "%s :دوتنې جوړولو کې پاتې راغی '%s' د"
-#: ../glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
-#: ../glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr ""
-#: ../glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr ""
-#: ../glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
-#: ../glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr ""
-#: ../glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr ""
-#: ../glib/gfileutils.c:1826
-#, c-format
-msgid "%u byte"
-msgid_plural "%u bytes"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f ک ب"
-#: ../glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f م ب"
-#: ../glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f ګ ب"
-#: ../glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "%s :په لوستلو کې پاتې راغی '%s' د پېلامي تړنې"
-#: ../glib/gfileutils.c:1908
-#, c-format
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "پېلامي تړنې نه منل کيږي"
-#: ../glib/giochannel.c:1162
+#: glib/giochannel.c:1162
#, c-format
msgid "Could not open converter from '%s' to '%s': %s"
msgstr ""
-#: ../glib/giochannel.c:1507
-#, c-format
+#: glib/giochannel.c:1507
msgid "Can't do a raw read in g_io_channel_read_line_string"
msgstr ""
-#: ../glib/giochannel.c:1554
-#: ../glib/giochannel.c:1811
-#: ../glib/giochannel.c:1898
-#, c-format
+#: glib/giochannel.c:1554 glib/giochannel.c:1812 glib/giochannel.c:1899
msgid "Leftover unconverted data in read buffer"
msgstr ""
-#: ../glib/giochannel.c:1634
-#: ../glib/giochannel.c:1711
-#, c-format
+#: glib/giochannel.c:1635 glib/giochannel.c:1712
msgid "Channel terminates in a partial character"
msgstr ""
-#: ../glib/giochannel.c:1697
-#, c-format
+#: glib/giochannel.c:1698
msgid "Can't do a raw read in g_io_channel_read_to_end"
msgstr ""
-#: ../glib/gmappedfile.c:116
+#: glib/gmappedfile.c:116
#, c-format
msgid "Failed to open file '%s': open() failed: %s"
msgstr ""
-#: ../glib/gmappedfile.c:193
+#: glib/gmappedfile.c:193
#, c-format
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr ""
-#: ../glib/gmarkup.c:234
-#: ../glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr ""
-#: ../glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr ""
-#: ../glib/gmarkup.c:448
-msgid "Empty entity '&;' seen; valid entities are: & " < > '"
+#: glib/gmarkup.c:483
+msgid ""
+"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
-#: ../glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, 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 &"
+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 &"
msgstr ""
-#: ../glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr ""
-#: ../glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr ""
-#: ../glib/gmarkup.c:540
-msgid "Entity did not end with a semicolon; most likely you used an ampersand character without intending to start an entity - escape ampersand as &"
+#: glib/gmarkup.c:575
+msgid ""
+"Entity did not end with a semicolon; most likely you used an ampersand "
+"character without intending to start an entity - escape ampersand as &"
msgstr ""
-#: ../glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
-msgid "Failed to parse '%-.*s', which should have been a digit inside a character reference (ê for example) - perhaps the digit is too large"
+msgid ""
+"Failed to parse '%-.*s', which should have been a digit inside a character "
+"reference (ê for example) - perhaps the digit is too large"
msgstr ""
-#: ../glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
-#: ../glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr ""
-#: ../glib/gmarkup.c:643
-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 &"
+#: glib/gmarkup.c:678
+msgid ""
+"Character reference did not end with a semicolon; most likely you used an "
+"ampersand character without intending to start an entity - escape ampersand "
+"as &"
msgstr ""
-#: ../glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr ""
-#: ../glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr ""
-#: ../glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr ""
-#: ../glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr ""
-#: ../glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr ""
-#: ../glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr ""
-#: ../glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
-msgid "'%s' is not a valid character following a '<' character; it may not begin an element name"
+msgid ""
+"'%s' is not a valid character following a '<' character; it may not begin an "
+"element name"
msgstr ""
-#: ../glib/gmarkup.c:1184
+#: glib/gmarkup.c:1266
#, c-format
-msgid "Odd character '%s', expected a '>' character to end the start tag of element '%s'"
+msgid ""
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
-#: ../glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
-msgid "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
+msgid ""
+"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
-#: ../glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
-msgid "Odd character '%s', expected a '>' or '/' character to end the start tag of element '%s', or optionally an attribute; perhaps you used an invalid character in an attribute name"
+msgid ""
+"Odd character '%s', expected a '>' or '/' character to end the start tag of "
+"element '%s', or optionally an attribute; perhaps you used an invalid "
+"character in an attribute name"
msgstr ""
-#: ../glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
-msgid "Odd character '%s', expected an open quote mark after the equals sign when giving value for attribute '%s' of element '%s'"
+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:1543
+#: glib/gmarkup.c:1625
#, c-format
-msgid "'%s' is not a valid character following the characters '</'; '%s' may not begin an element name"
+msgid ""
+"'%s' is not a valid character following the characters '</'; '%s' may not "
+"begin an element name"
msgstr ""
-#: ../glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
-msgid "'%s' is not a valid character following the close element name '%s'; the allowed character is '>'"
+msgid ""
+"'%s' is not a valid character following the close element name '%s'; the "
+"allowed character is '>'"
msgstr ""
-#: ../glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
-#: ../glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
-#: ../glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr ""
-#: ../glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
-#: ../glib/gmarkup.c:1785
-#: ../glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
-msgid "Document ended unexpectedly with elements still open - '%s' was the last element opened"
+msgid ""
+"Document ended unexpectedly with elements still open - '%s' was the last "
+"element opened"
msgstr ""
-#: ../glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
-msgid "Document ended unexpectedly, expected to see a close angle bracket ending the tag <%s/>"
+msgid ""
+"Document ended unexpectedly, expected to see a close angle bracket ending "
+"the tag <%s/>"
msgstr ""
-#: ../glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr ""
-#: ../glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
-#: ../glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
-#: ../glib/gmarkup.c:1816
-msgid "Document ended unexpectedly after the equals sign following an attribute name; no attribute value"
+#: glib/gmarkup.c:1901
+msgid ""
+"Document ended unexpectedly after the equals sign following an attribute "
+"name; no attribute value"
msgstr ""
-#: ../glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
-#: ../glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
-#: ../glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
-#: ../glib/gregex.c:131
+#: glib/gregex.c:131
msgid "corrupted object"
msgstr "اندرغل څيز"
-#: ../glib/gregex.c:133
+#: glib/gregex.c:133
msgid "internal error or corrupted object"
msgstr "دنننۍ تېروتنه يا اندرغل څيز"
-#: ../glib/gregex.c:135
+#: glib/gregex.c:135
msgid "out of memory"
msgstr "له ياده بهر"
-#: ../glib/gregex.c:140
+#: glib/gregex.c:140
msgid "backtracking limit reached"
msgstr ""
-#: ../glib/gregex.c:152
-#: ../glib/gregex.c:160
+#: glib/gregex.c:152 glib/gregex.c:160
msgid "the pattern contains items not supported for partial matching"
msgstr ""
-#: ../glib/gregex.c:154
-#: ../gio/glocalfile.c:1963
+#: glib/gregex.c:154 gio/glocalfile.c:1981
msgid "internal error"
msgstr "دنننۍ تېروتنه"
-#: ../glib/gregex.c:162
+#: glib/gregex.c:162
msgid "back references as conditions are not supported for partial matching"
msgstr ""
-#: ../glib/gregex.c:171
+#: glib/gregex.c:171
msgid "recursion limit reached"
msgstr ""
-#: ../glib/gregex.c:173
+#: glib/gregex.c:173
msgid "workspace limit for empty substrings reached"
msgstr ""
-#: ../glib/gregex.c:175
+#: glib/gregex.c:175
msgid "invalid combination of newline flags"
msgstr ""
-#: ../glib/gregex.c:179
+#: glib/gregex.c:179
msgid "unknown error"
msgstr "ناپېژندلې تېروتنه"
-#: ../glib/gregex.c:199
+#: glib/gregex.c:199
msgid "\\ at end of pattern"
msgstr ""
-#: ../glib/gregex.c:202
+#: glib/gregex.c:202
msgid "\\c at end of pattern"
msgstr ""
-#: ../glib/gregex.c:205
+#: glib/gregex.c:205
msgid "unrecognized character follows \\"
msgstr ""
-#: ../glib/gregex.c:212
+#: glib/gregex.c:212
msgid "case-changing escapes (\\l, \\L, \\u, \\U) are not allowed here"
msgstr ""
-#: ../glib/gregex.c:215
+#: glib/gregex.c:215
msgid "numbers out of order in {} quantifier"
msgstr ""
-#: ../glib/gregex.c:218
+#: glib/gregex.c:218
msgid "number too big in {} quantifier"
msgstr ""
-#: ../glib/gregex.c:221
+#: glib/gregex.c:221
msgid "missing terminating ] for character class"
msgstr ""
-#: ../glib/gregex.c:224
+#: glib/gregex.c:224
msgid "invalid escape sequence in character class"
msgstr ""
-#: ../glib/gregex.c:227
+#: glib/gregex.c:227
msgid "range out of order in character class"
msgstr ""
-#: ../glib/gregex.c:230
+#: glib/gregex.c:230
msgid "nothing to repeat"
msgstr ""
-#: ../glib/gregex.c:233
+#: glib/gregex.c:233
msgid "unrecognized character after (?"
msgstr ""
-#: ../glib/gregex.c:237
+#: glib/gregex.c:237
msgid "unrecognized character after (?<"
msgstr ""
-#: ../glib/gregex.c:241
+#: glib/gregex.c:241
msgid "unrecognized character after (?P"
msgstr ""
-#: ../glib/gregex.c:244
+#: glib/gregex.c:244
msgid "POSIX named classes are supported only within a class"
msgstr ""
-#: ../glib/gregex.c:247
+#: glib/gregex.c:247
msgid "missing terminating )"
msgstr ""
-#: ../glib/gregex.c:251
+#: glib/gregex.c:251
msgid ") without opening ("
msgstr ""
#. translators: '(?R' and '(?[+-]digits' are both meant as (groups of)
#. * sequences here, '(?-54' would be an example for the second group.
#.
-#: ../glib/gregex.c:258
+#: glib/gregex.c:258
msgid "(?R or (?[+-]digits must be followed by )"
msgstr ""
-#: ../glib/gregex.c:261
+#: glib/gregex.c:261
msgid "reference to non-existent subpattern"
msgstr ""
-#: ../glib/gregex.c:264
+#: glib/gregex.c:264
msgid "missing ) after comment"
msgstr ""
-#: ../glib/gregex.c:267
+#: glib/gregex.c:267
msgid "regular expression too large"
msgstr ""
-#: ../glib/gregex.c:270
+#: glib/gregex.c:270
msgid "failed to get memory"
msgstr ""
-#: ../glib/gregex.c:273
+#: glib/gregex.c:273
msgid "lookbehind assertion is not fixed length"
msgstr ""
-#: ../glib/gregex.c:276
+#: glib/gregex.c:276
msgid "malformed number or name after (?("
msgstr ""
-#: ../glib/gregex.c:279
+#: glib/gregex.c:279
msgid "conditional group contains more than two branches"
msgstr ""
-#: ../glib/gregex.c:282
+#: glib/gregex.c:282
msgid "assertion expected after (?("
msgstr ""
-#: ../glib/gregex.c:285
+#: glib/gregex.c:285
msgid "unknown POSIX class name"
msgstr ""
-#: ../glib/gregex.c:288
+#: glib/gregex.c:288
msgid "POSIX collating elements are not supported"
msgstr ""
-#: ../glib/gregex.c:291
+#: glib/gregex.c:291
msgid "character value in \\x{...} sequence is too large"
msgstr ""
-#: ../glib/gregex.c:294
+#: glib/gregex.c:294
msgid "invalid condition (?(0)"
msgstr ""
-#: ../glib/gregex.c:297
+#: glib/gregex.c:297
msgid "\\C not allowed in lookbehind assertion"
msgstr ""
-#: ../glib/gregex.c:300
+#: glib/gregex.c:300
msgid "recursive call could loop indefinitely"
msgstr ""
-#: ../glib/gregex.c:303
+#: glib/gregex.c:303
msgid "missing terminator in subpattern name"
msgstr ""
-#: ../glib/gregex.c:306
+#: glib/gregex.c:306
msgid "two named subpatterns have the same name"
msgstr ""
-#: ../glib/gregex.c:309
+#: glib/gregex.c:309
msgid "malformed \\P or \\p sequence"
msgstr ""
-#: ../glib/gregex.c:312
+#: glib/gregex.c:312
msgid "unknown property name after \\P or \\p"
msgstr ""
-#: ../glib/gregex.c:315
+#: glib/gregex.c:315
msgid "subpattern name is too long (maximum 32 characters)"
msgstr ""
-#: ../glib/gregex.c:318
+#: glib/gregex.c:318
msgid "too many named subpatterns (maximum 10,000)"
msgstr ""
-#: ../glib/gregex.c:321
+#: glib/gregex.c:321
msgid "octal value is greater than \\377"
msgstr ""
-#: ../glib/gregex.c:324
+#: glib/gregex.c:324
msgid "DEFINE group contains more than one branch"
msgstr ""
-#: ../glib/gregex.c:327
+#: glib/gregex.c:327
msgid "repeating a DEFINE group is not allowed"
msgstr ""
-#: ../glib/gregex.c:330
+#: glib/gregex.c:330
msgid "inconsistent NEWLINE options"
msgstr ""
-#: ../glib/gregex.c:333
-msgid "\\g is not followed by a braced name or an optionally braced non-zero number"
+#: glib/gregex.c:333
+msgid ""
+"\\g is not followed by a braced name or an optionally braced non-zero number"
msgstr ""
-#: ../glib/gregex.c:338
+#: glib/gregex.c:338
msgid "unexpected repeat"
msgstr ""
-#: ../glib/gregex.c:342
+#: glib/gregex.c:342
msgid "code overflow"
msgstr ""
-#: ../glib/gregex.c:346
+#: glib/gregex.c:346
msgid "overran compiling workspace"
msgstr ""
-#: ../glib/gregex.c:350
+#: glib/gregex.c:350
msgid "previously-checked referenced subpattern not found"
msgstr ""
-#: ../glib/gregex.c:526
-#: ../glib/gregex.c:1593
+#: glib/gregex.c:526 glib/gregex.c:1593
#, c-format
msgid "Error while matching regular expression %s: %s"
msgstr ""
-#: ../glib/gregex.c:1098
+#: glib/gregex.c:1098
msgid "PCRE library is compiled without UTF8 support"
msgstr ""
-#: ../glib/gregex.c:1107
+#: glib/gregex.c:1107
msgid "PCRE library is compiled without UTF8 properties support"
msgstr ""
-#: ../glib/gregex.c:1161
+#: glib/gregex.c:1161
#, c-format
msgid "Error while compiling regular expression %s at char %d: %s"
msgstr ""
-#: ../glib/gregex.c:1197
+#: glib/gregex.c:1197
#, c-format
msgid "Error while optimizing regular expression %s: %s"
msgstr ""
-#: ../glib/gregex.c:2021
+#: glib/gregex.c:2021
msgid "hexadecimal digit or '}' expected"
msgstr ""
-#: ../glib/gregex.c:2037
+#: glib/gregex.c:2037
msgid "hexadecimal digit expected"
msgstr ""
-#: ../glib/gregex.c:2077
+#: glib/gregex.c:2077
msgid "missing '<' in symbolic reference"
msgstr ""
-#: ../glib/gregex.c:2086
+#: glib/gregex.c:2086
msgid "unfinished symbolic reference"
msgstr ""
-#: ../glib/gregex.c:2093
+#: glib/gregex.c:2093
msgid "zero-length symbolic reference"
msgstr ""
-#: ../glib/gregex.c:2104
+#: glib/gregex.c:2104
msgid "digit expected"
msgstr ""
-#: ../glib/gregex.c:2122
+#: glib/gregex.c:2122
msgid "illegal symbolic reference"
msgstr ""
-#: ../glib/gregex.c:2184
+#: glib/gregex.c:2184
msgid "stray final '\\'"
msgstr ""
-#: ../glib/gregex.c:2188
+#: glib/gregex.c:2188
msgid "unknown escape sequence"
msgstr ""
-#: ../glib/gregex.c:2198
+#: glib/gregex.c:2198
#, c-format
msgid "Error while parsing replacement text \"%s\" at char %lu: %s"
msgstr ""
-#: ../glib/gshell.c:70
+#: glib/gshell.c:70
#, c-format
msgid "Quoted text doesn't begin with a quotation mark"
msgstr ""
-#: ../glib/gshell.c:160
+#: glib/gshell.c:160
#, c-format
msgid "Unmatched quotation mark in command line or other shell-quoted text"
msgstr ""
-#: ../glib/gshell.c:538
+#: glib/gshell.c:538
#, c-format
msgid "Text ended just after a '\\' character. (The text was '%s')"
msgstr ""
-#: ../glib/gshell.c:545
+#: glib/gshell.c:545
#, c-format
msgid "Text ended before matching quote was found for %c. (The text was '%s')"
msgstr ""
-#: ../glib/gshell.c:557
-#, c-format
+#: glib/gshell.c:557
msgid "Text was empty (or contained only whitespace)"
msgstr "ليکنه تشه وه (يا يوازې سپينه تشه يې لرله)"
-#: ../glib/gspawn-win32.c:279
-#, c-format
+#: glib/gspawn-win32.c:279
msgid "Failed to read data from child process"
msgstr "د ماشوم بهير نه د اومتوک په لوستلو کې پاتې راغی"
-#: ../glib/gspawn-win32.c:294
-#: ../glib/gspawn.c:1455
+#: glib/gspawn-win32.c:294 glib/gspawn.c:1467
#, c-format
msgid "Failed to create pipe for communicating with child process (%s)"
msgstr ""
-#: ../glib/gspawn-win32.c:332
-#: ../glib/gspawn-win32.c:340
-#: ../glib/gspawn.c:1119
+#: glib/gspawn-win32.c:332 glib/gspawn-win32.c:340 glib/gspawn.c:1131
#, c-format
msgid "Failed to read from child pipe (%s)"
msgstr ""
-#: ../glib/gspawn-win32.c:363
-#: ../glib/gspawn.c:1324
+#: glib/gspawn-win32.c:363 glib/gspawn.c:1336
#, c-format
msgid "Failed to change to directory '%s' (%s)"
msgstr "(%s) درکموند ته بدلېدلو کې پاتې راغی '%s'"
-#: ../glib/gspawn-win32.c:369
-#: ../glib/gspawn-win32.c:493
+#: glib/gspawn-win32.c:369 glib/gspawn-win32.c:493
#, c-format
msgid "Failed to execute child process (%s)"
msgstr "(%s) د ماشوم بهيرپه پېلولو کې پاتې راغی"
-#: ../glib/gspawn-win32.c:440
+#: glib/gspawn-win32.c:440
#, c-format
msgid "Invalid program name: %s"
msgstr "%s :ناسم کړنلار نوم"
-#: ../glib/gspawn-win32.c:450
-#: ../glib/gspawn-win32.c:723
-#: ../glib/gspawn-win32.c:1282
+#: glib/gspawn-win32.c:450 glib/gspawn-win32.c:723 glib/gspawn-win32.c:1282
#, c-format
msgid "Invalid string in argument vector at %d: %s"
msgstr ""
-#: ../glib/gspawn-win32.c:461
-#: ../glib/gspawn-win32.c:738
-#: ../glib/gspawn-win32.c:1315
+#: glib/gspawn-win32.c:461 glib/gspawn-win32.c:738 glib/gspawn-win32.c:1315
#, c-format
msgid "Invalid string in environment: %s"
msgstr ""
-#: ../glib/gspawn-win32.c:719
-#: ../glib/gspawn-win32.c:1263
+#: glib/gspawn-win32.c:719 glib/gspawn-win32.c:1263
#, c-format
msgid "Invalid working directory: %s"
msgstr "%s :ناسم کارونې درکموند"
-#: ../glib/gspawn-win32.c:787
+#: glib/gspawn-win32.c:787
#, c-format
msgid "Failed to execute helper program (%s)"
msgstr "په پېلولو کې پاتې راغی (%s) د مرستندويه کړنلار"
-#: ../glib/gspawn-win32.c:1002
-#, c-format
-msgid "Unexpected error in g_io_channel_win32_poll() reading data from a child process"
+#: glib/gspawn-win32.c:1002
+msgid ""
+"Unexpected error in g_io_channel_win32_poll() reading data from a child "
+"process"
msgstr ""
-#: ../glib/gspawn.c:180
+#: glib/gspawn.c:188
#, c-format
msgid "Failed to read data from child process (%s)"
msgstr ""
-#: ../glib/gspawn.c:317
+#: glib/gspawn.c:325
#, c-format
msgid "Unexpected error in select() reading data from a child process (%s)"
msgstr ""
-#: ../glib/gspawn.c:400
+#: glib/gspawn.c:408
#, c-format
msgid "Unexpected error in waitpid() (%s)"
msgstr ""
-#: ../glib/gspawn.c:1184
+#: glib/gspawn.c:1196
#, c-format
msgid "Failed to fork (%s)"
msgstr ""
-#: ../glib/gspawn.c:1334
+#: glib/gspawn.c:1346
#, c-format
msgid "Failed to execute child process \"%s\" (%s)"
msgstr ""
-#: ../glib/gspawn.c:1344
+#: glib/gspawn.c:1356
#, c-format
msgid "Failed to redirect output or input of child process (%s)"
msgstr ""
-#: ../glib/gspawn.c:1353
+#: glib/gspawn.c:1365
#, c-format
msgid "Failed to fork child process (%s)"
msgstr ""
-#: ../glib/gspawn.c:1361
+#: glib/gspawn.c:1373
#, c-format
msgid "Unknown error executing child process \"%s\""
msgstr ""
-#: ../glib/gspawn.c:1383
+#: glib/gspawn.c:1395
#, c-format
msgid "Failed to read enough data from child pid pipe (%s)"
msgstr ""
-#: ../glib/gutf8.c:1030
-#, c-format
+#: glib/gutf8.c:1030
msgid "Character out of range for UTF-8"
msgstr ""
-#: ../glib/gutf8.c:1124
-#: ../glib/gutf8.c:1133
-#: ../glib/gutf8.c:1265
-#: ../glib/gutf8.c:1274
-#: ../glib/gutf8.c:1415
-#: ../glib/gutf8.c:1511
-#, c-format
+#: glib/gutf8.c:1124 glib/gutf8.c:1133 glib/gutf8.c:1265 glib/gutf8.c:1274
+#: glib/gutf8.c:1415 glib/gutf8.c:1511
msgid "Invalid sequence in conversion input"
msgstr ""
-#: ../glib/gutf8.c:1426
-#: ../glib/gutf8.c:1522
-#, c-format
+#: glib/gutf8.c:1426 glib/gutf8.c:1522
msgid "Character out of range for UTF-16"
msgstr ""
-#: ../glib/goption.c:615
+#: glib/goption.c:615
msgid "Usage:"
msgstr ":کارونه"
-#: ../glib/goption.c:615
+#: glib/goption.c:615
msgid "[OPTION...]"
msgstr "[...غوراوی]"
-#: ../glib/goption.c:719
+#: glib/goption.c:719
msgid "Help Options:"
msgstr ":مرسته غوراوي"
-#: ../glib/goption.c:720
+#: glib/goption.c:720
msgid "Show help options"
msgstr "مرسته غوراوي ښودل"
-#: ../glib/goption.c:726
+#: glib/goption.c:726
msgid "Show all help options"
msgstr "ټول مرسته غوراوي ښودل"
-#: ../glib/goption.c:788
+#: glib/goption.c:788
msgid "Application Options:"
msgstr ":کاريال غوراوي"
-#: ../glib/goption.c:849
-#: ../glib/goption.c:919
+#: glib/goption.c:849 glib/goption.c:919
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr ""
-#: ../glib/goption.c:859
-#: ../glib/goption.c:927
+#: glib/goption.c:859 glib/goption.c:927
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "صحيح ارزښت له سيمې بهر دی '%s' لپاره د %s د"
-#: ../glib/goption.c:884
+#: glib/goption.c:884
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr ""
-#: ../glib/goption.c:892
+#: glib/goption.c:892
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr ""
-#: ../glib/goption.c:1229
+#: glib/goption.c:1229
#, c-format
msgid "Error parsing option %s"
msgstr ""
-#: ../glib/goption.c:1260
-#: ../glib/goption.c:1371
+#: glib/goption.c:1260 glib/goption.c:1371
#, c-format
msgid "Missing argument for %s"
msgstr ""
-#: ../glib/goption.c:1766
+#: glib/goption.c:1766
#, c-format
msgid "Unknown option %s"
msgstr "%s ناپېژندلې غوراوی"
-#: ../glib/gkeyfile.c:358
-#, c-format
+#: glib/gkeyfile.c:358
msgid "Valid key file could not be found in search dirs"
msgstr ""
-#: ../glib/gkeyfile.c:393
-#, c-format
+#: glib/gkeyfile.c:393
msgid "Not a regular file"
msgstr "ساده دوتنه نه ده"
-#: ../glib/gkeyfile.c:401
-#, c-format
+#: glib/gkeyfile.c:401
msgid "File is empty"
msgstr "دوتنه تشه ده"
-#: ../glib/gkeyfile.c:761
+#: glib/gkeyfile.c:761
#, c-format
-msgid "Key file contains line '%s' which is not a key-value pair, group, or comment"
+msgid ""
+"Key file contains line '%s' which is not a key-value pair, group, or comment"
msgstr ""
-#: ../glib/gkeyfile.c:821
+#: glib/gkeyfile.c:821
#, c-format
msgid "Invalid group name: %s"
msgstr "%s :ناسم ډله نوم"
-#: ../glib/gkeyfile.c:843
-#, c-format
+#: glib/gkeyfile.c:843
msgid "Key file does not start with a group"
msgstr "کيلۍ دوتنه د کومې ډلې سره نه پېليږي"
-#: ../glib/gkeyfile.c:869
+#: glib/gkeyfile.c:869
#, c-format
msgid "Invalid key name: %s"
msgstr "%s :ناسم کيلۍ نوم"
-#: ../glib/gkeyfile.c:896
+#: glib/gkeyfile.c:896
#, c-format
msgid "Key file contains unsupported encoding '%s'"
msgstr "لري '%s' کيلۍ دوتنه ناسمه کوډييزونه"
-#: ../glib/gkeyfile.c:1109
-#: ../glib/gkeyfile.c:1269
-#: ../glib/gkeyfile.c:2487
-#: ../glib/gkeyfile.c:2555
-#: ../glib/gkeyfile.c:2690
-#: ../glib/gkeyfile.c:2825
-#: ../glib/gkeyfile.c:2978
-#: ../glib/gkeyfile.c:3165
-#: ../glib/gkeyfile.c:3226
+#: glib/gkeyfile.c:1112 glib/gkeyfile.c:1272 glib/gkeyfile.c:2490
+#: glib/gkeyfile.c:2558 glib/gkeyfile.c:2693 glib/gkeyfile.c:2828
+#: glib/gkeyfile.c:2981 glib/gkeyfile.c:3168 glib/gkeyfile.c:3229
#, c-format
msgid "Key file does not have group '%s'"
msgstr "ډله نه لري '%s' کيلۍ دوتنه"
-#: ../glib/gkeyfile.c:1281
+#: glib/gkeyfile.c:1284
#, c-format
msgid "Key file does not have key '%s'"
msgstr "کيلۍ نه لري '%s' کيلۍ دوتنه"
-#: ../glib/gkeyfile.c:1383
-#: ../glib/gkeyfile.c:1496
+#: glib/gkeyfile.c:1386 glib/gkeyfile.c:1499
#, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr ""
-#: ../glib/gkeyfile.c:1403
-#: ../glib/gkeyfile.c:1516
-#: ../glib/gkeyfile.c:1891
+#: glib/gkeyfile.c:1406 glib/gkeyfile.c:1519 glib/gkeyfile.c:1894
#, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr ""
-#: ../glib/gkeyfile.c:2106
-#: ../glib/gkeyfile.c:2318
+#: glib/gkeyfile.c:2109 glib/gkeyfile.c:2321
#, c-format
-msgid "Key file contains key '%s' in group '%s' which has value that cannot be interpreted."
+msgid ""
+"Key file contains key '%s' in group '%s' which has value that cannot be "
+"interpreted."
msgstr ""
-#: ../glib/gkeyfile.c:2502
-#: ../glib/gkeyfile.c:2705
-#: ../glib/gkeyfile.c:3237
+#: glib/gkeyfile.c:2505 glib/gkeyfile.c:2708 glib/gkeyfile.c:3240
#, c-format
msgid "Key file does not have key '%s' in group '%s'"
msgstr "کيلۍ نه لري '%s' ډله کې '%s' کيلۍ دوتنه په"
-#: ../glib/gkeyfile.c:3471
-#, c-format
+#: glib/gkeyfile.c:3474
msgid "Key file contains escape character at end of line"
msgstr ""
-#: ../glib/gkeyfile.c:3493
+#: glib/gkeyfile.c:3496
#, c-format
msgid "Key file contains invalid escape sequence '%s'"
msgstr ""
-#: ../glib/gkeyfile.c:3635
+#: glib/gkeyfile.c:3638
#, c-format
msgid "Value '%s' cannot be interpreted as a number."
msgstr "ارزښت د شمېرې په توګه نه شي ژباړل کېدی '%s'"
-#: ../glib/gkeyfile.c:3649
+#: glib/gkeyfile.c:3652
#, c-format
msgid "Integer value '%s' out of range"
msgstr "د سيمې نه بهر دی '%s' صحيح ارزښت"
-#: ../glib/gkeyfile.c:3682
+#: glib/gkeyfile.c:3685
#, c-format
msgid "Value '%s' cannot be interpreted as a float number."
msgstr ""
-#: ../glib/gkeyfile.c:3706
+#: glib/gkeyfile.c:3709
#, c-format
msgid "Value '%s' cannot be interpreted as a boolean."
msgstr ""
-#: ../gio/gbufferedinputstream.c:483
-#: ../gio/ginputstream.c:186
-#: ../gio/ginputstream.c:318
-#: ../gio/ginputstream.c:559
-#: ../gio/ginputstream.c:684
-#: ../gio/goutputstream.c:193
-#: ../gio/goutputstream.c:647
+#: gio/gbufferedinputstream.c:485 gio/ginputstream.c:187
+#: gio/ginputstream.c:319 gio/ginputstream.c:560 gio/ginputstream.c:685
+#: gio/goutputstream.c:195 gio/goutputstream.c:649
#, c-format
msgid "Too large count value passed to %s"
msgstr ""
-#: ../gio/gbufferedinputstream.c:870
-#: ../gio/ginputstream.c:894
-#: ../gio/goutputstream.c:1076
-#, c-format
+#: gio/gbufferedinputstream.c:872 gio/ginputstream.c:895
+#: gio/goutputstream.c:1078
msgid "Stream is already closed"
msgstr ""
-#: ../gio/gcancellable.c:296
-#: ../gio/glocalfile.c:1956
-#: ../gio/gsimpleasyncresult.c:611
-#, c-format
+#: gio/gcancellable.c:295 gio/glocalfile.c:1974 gio/gsimpleasyncresult.c:612
msgid "Operation was cancelled"
msgstr "چار بند شو"
-#: ../gio/gcontenttype.c:159
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "ناپېژندلی ډول"
-#: ../gio/gcontenttype.c:160
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "دوتنه ډول %s"
-#: ../gio/gcontenttype.c:577
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "ډول %s"
-#: ../gio/gdatainputstream.c:309
-#, c-format
+#: gio/gdatainputstream.c:310
msgid "Unexpected early end-of-stream"
msgstr ""
-#: ../gio/gdesktopappinfo.c:411
-#: ../gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "بېنومه"
-#: ../gio/gdesktopappinfo.c:588
-#, c-format
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: ../gio/gdesktopappinfo.c:882
-#, c-format
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: ../gio/gdesktopappinfo.c:1114
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: ../gio/gdesktopappinfo.c:1118
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: ../gio/gdesktopappinfo.c:1457
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "نه شي جوړولی %s د کارن سرپاڼې دوتنه"
-#: ../gio/gdesktopappinfo.c:1532
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "لپاره دوديز پېژنداوی %s د"
-#: ../gio/gdrive.c:372
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: ../gio/gdrive.c:439
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: ../gio/gfile.c:811
-#: ../gio/gfile.c:1039
-#: ../gio/gfile.c:1172
-#: ../gio/gfile.c:1403
-#: ../gio/gfile.c:1456
-#: ../gio/gfile.c:1512
-#: ../gio/gfile.c:1594
-#: ../gio/gfile.c:2651
-#: ../gio/gfile.c:2696
-#: ../gio/gfile.c:2746
-#: ../gio/gfile.c:2786
-#: ../gio/gfile.c:3110
-#: ../gio/gfile.c:3512
-#: ../gio/gfile.c:3595
-#: ../gio/gfile.c:3678
-#: ../gio/gfile.c:3758
-#, c-format
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "چار نه منل کيږي"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: ../gio/gfile.c:1291
-#: ../gio/glocalfile.c:1046
-#: ../gio/glocalfile.c:1057
-#: ../gio/glocalfile.c:1070
-#, c-format
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: ../gio/gfile.c:1933
-#: ../gio/glocalfile.c:2106
-#, c-format
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "د درکموند پر سر نه شي لمېسلی"
-#: ../gio/gfile.c:1993
-#, c-format
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "درکموند د درکموند پر سر نه شي لمېسلی"
-#: ../gio/gfile.c:2001
-#: ../gio/glocalfile.c:2115
-#, c-format
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "موخه دوتنه شتون لري"
-#: ../gio/gfile.c:2019
-#, c-format
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: ../gio/gfile.c:2736
-#, c-format
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "ناسم پېلامتړنې ارزښت ورکړل شوی"
-#: ../gio/gfile.c:2829
-#, c-format
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr ""
-#: ../gio/gfile.c:2876
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "نه شي لرلی '%c' دوتنه نومونه"
-#: ../gio/gfile.c:4812
-#: ../gio/gvolume.c:357
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: ../gio/gfile.c:4920
-#, c-format
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
-#: ../gio/gfileenumerator.c:151
-#, c-format
+#: gio/gfileenumerator.c:205
msgid "Enumerator is closed"
msgstr ""
-#: ../gio/gfileenumerator.c:158
-#: ../gio/gfileenumerator.c:217
-#: ../gio/gfileenumerator.c:317
-#: ../gio/gfileenumerator.c:426
-#, c-format
+#: gio/gfileenumerator.c:212 gio/gfileenumerator.c:271
+#: gio/gfileenumerator.c:371 gio/gfileenumerator.c:480
msgid "File enumerator has outstanding operation"
msgstr ""
-#: ../gio/gfileenumerator.c:307
-#: ../gio/gfileenumerator.c:416
+#: gio/gfileenumerator.c:361 gio/gfileenumerator.c:470
msgid "File enumerator is already closed"
msgstr ""
-#: ../gio/gfileinputstream.c:154
-#: ../gio/gfileinputstream.c:421
-#: ../gio/gfileoutputstream.c:168
-#: ../gio/gfileoutputstream.c:523
-#, c-format
+#: gio/gfileinputstream.c:157 gio/gfileinputstream.c:424
+#: gio/gfileoutputstream.c:171 gio/gfileoutputstream.c:526
msgid "Stream doesn't support query_info"
msgstr ""
-#: ../gio/gfileinputstream.c:336
-#: ../gio/gfileoutputstream.c:381
-#, c-format
+#: gio/gfileinputstream.c:339 gio/gfileoutputstream.c:384
msgid "Seek not supported on stream"
msgstr ""
-#: ../gio/gfileinputstream.c:380
-#, c-format
+#: gio/gfileinputstream.c:383
msgid "Truncate not allowed on input stream"
msgstr ""
-#: ../gio/gfileoutputstream.c:457
-#, c-format
+#: gio/gfileoutputstream.c:460
msgid "Truncate not supported on stream"
msgstr ""
-#: ../gio/ginputstream.c:195
-#, c-format
+#: gio/ginputstream.c:196
msgid "Input stream doesn't implement read"
msgstr ""
#. Translators: This is an error you get if there is
#. * already an operation running against this stream when
#. * you try to start one
-#: ../gio/ginputstream.c:904
-#: ../gio/goutputstream.c:1086
-#, c-format
+#: gio/ginputstream.c:905 gio/goutputstream.c:1088
msgid "Stream has outstanding operation"
msgstr ""
-#: ../gio/glocaldirectorymonitor.c:270
-#, c-format
+#: gio/glocaldirectorymonitor.c:274
msgid "Unable to find default local directory monitor type"
msgstr ""
-#: ../gio/glocalfile.c:599
+#: gio/glocalfile.c:601
#, c-format
msgid "Invalid filename %s"
msgstr "%s ناسم دوتنه نوم"
-#: ../gio/glocalfile.c:962
+#: gio/glocalfile.c:972
#, c-format
msgid "Error getting filesystem info: %s"
msgstr "%s :د دوتنه غونډال خبرتياوو اخيستلو کې ستونزه"
-#: ../gio/glocalfile.c:1090
-#, c-format
+#: gio/glocalfile.c:1108
msgid "Can't rename root directory"
msgstr "ولۍ درکموند نه شي بيانومولی"
-#: ../gio/glocalfile.c:1108
-#, c-format
+#: gio/glocalfile.c:1126
msgid "Can't rename file, filename already exist"
msgstr "دوتنه نه شي بيانومولی، دوتنه نوم د مخکې نه شته"
-#: ../gio/glocalfile.c:1121
-#: ../gio/glocalfile.c:1985
-#: ../gio/glocalfile.c:2014
-#: ../gio/glocalfile.c:2168
-#: ../gio/glocalfileoutputstream.c:472
-#: ../gio/glocalfileoutputstream.c:517
-#: ../gio/glocalfileoutputstream.c:925
-#, c-format
+#: gio/glocalfile.c:1139 gio/glocalfile.c:2003 gio/glocalfile.c:2032
+#: gio/glocalfile.c:2186 gio/glocalfileoutputstream.c:472
+#: gio/glocalfileoutputstream.c:517 gio/glocalfileoutputstream.c:925
msgid "Invalid filename"
msgstr "ناسم دوتنه نوم"
-#: ../gio/glocalfile.c:1125
+#: gio/glocalfile.c:1143
#, c-format
msgid "Error renaming file: %s"
msgstr "%s :دوتنه بيانومولو کې ستونزه"
-#: ../gio/glocalfile.c:1244
+#: gio/glocalfile.c:1262
#, c-format
msgid "Error opening file: %s"
msgstr "%s :دوتنه پرانيستلو کې ستونزه"
-#: ../gio/glocalfile.c:1254
-#, c-format
+#: gio/glocalfile.c:1272
msgid "Can't open directory"
msgstr "درکموند نه شي پرانيستلی"
-#: ../gio/glocalfile.c:1314
-#: ../gio/glocalfile.c:1989
+#: gio/glocalfile.c:1332
#, c-format
msgid "Error removing file: %s"
msgstr "%s :دوتنې ړنګولو کې ستونزه"
-#: ../gio/glocalfile.c:1678
+#: gio/glocalfile.c:1696
#, c-format
msgid "Error trashing file: %s"
msgstr ""
-#: ../gio/glocalfile.c:1701
+#: gio/glocalfile.c:1719
#, c-format
msgid "Unable to create trash dir %s: %s"
msgstr ""
-#: ../gio/glocalfile.c:1722
-#, c-format
+#: gio/glocalfile.c:1740
msgid "Unable to find toplevel directory for trash"
msgstr ""
-#: ../gio/glocalfile.c:1801
-#: ../gio/glocalfile.c:1821
-#, c-format
+#: gio/glocalfile.c:1819 gio/glocalfile.c:1839
msgid "Unable to find or create trash directory"
msgstr ""
-#: ../gio/glocalfile.c:1855
+#: gio/glocalfile.c:1873
#, c-format
msgid "Unable to create trashing info file: %s"
msgstr ""
-#: ../gio/glocalfile.c:1880
-#: ../gio/glocalfile.c:1955
-#: ../gio/glocalfile.c:1962
+#: gio/glocalfile.c:1898 gio/glocalfile.c:1973 gio/glocalfile.c:1980
#, c-format
msgid "Unable to trash file: %s"
msgstr ""
-#: ../gio/glocalfile.c:2018
+#: gio/glocalfile.c:2007
+#, fuzzy, c-format
+msgid "Error creating directory: %s"
+msgstr "%s :درکموند پرانيستلو کې ستونزه '%s'"
+
+#: gio/glocalfile.c:2036
#, c-format
msgid "Error making symbolic link: %s"
msgstr "%s :د پېلامي تړنې په جوړولو کې ستونزه"
-#: ../gio/glocalfile.c:2078
-#: ../gio/glocalfile.c:2172
+#: gio/glocalfile.c:2096 gio/glocalfile.c:2190
#, c-format
msgid "Error moving file: %s"
msgstr "%s :دوتنه خوځولو کې ستونزه"
-#: ../gio/glocalfile.c:2101
-#, c-format
+#: gio/glocalfile.c:2119
msgid "Can't move directory over directory"
msgstr "يو درکموند پر بل درکموند نه شي خوځولی"
-#: ../gio/glocalfile.c:2128
-#: ../gio/glocalfileoutputstream.c:777
-#: ../gio/glocalfileoutputstream.c:791
-#: ../gio/glocalfileoutputstream.c:806
-#: ../gio/glocalfileoutputstream.c:822
-#: ../gio/glocalfileoutputstream.c:836
-#, c-format
+#: gio/glocalfile.c:2146 gio/glocalfileoutputstream.c:777
+#: gio/glocalfileoutputstream.c:791 gio/glocalfileoutputstream.c:806
+#: gio/glocalfileoutputstream.c:822 gio/glocalfileoutputstream.c:836
msgid "Backup file creation failed"
msgstr "د شاتړ دوتنې جوړونه پاتې راغله"
-#: ../gio/glocalfile.c:2147
+#: gio/glocalfile.c:2165
#, c-format
msgid "Error removing target file: %s"
msgstr "%s :د موخه دوتنې په ړنګولو کې ستونزه"
-#: ../gio/glocalfile.c:2161
-#, c-format
+#: gio/glocalfile.c:2179
msgid "Move between mounts not supported"
msgstr "د ماونټونو ترمنځ خوځېدنه نه منل کيږي"
-#: ../gio/glocalfileinfo.c:716
-#, c-format
+#: gio/glocalfileinfo.c:716
msgid "Attribute value must be non-NULL"
msgstr ""
-#: ../gio/glocalfileinfo.c:723
-#, c-format
+#: gio/glocalfileinfo.c:723
msgid "Invalid attribute type (string expected)"
msgstr ""
-#: ../gio/glocalfileinfo.c:730
-#, c-format
+#: gio/glocalfileinfo.c:730
msgid "Invalid extended attribute name"
msgstr ""
-#: ../gio/glocalfileinfo.c:770
+#: gio/glocalfileinfo.c:770
#, c-format
msgid "Error setting extended attribute '%s': %s"
msgstr ""
-#: ../gio/glocalfileinfo.c:1456
-#: ../gio/glocalfileoutputstream.c:666
+#: gio/glocalfileinfo.c:1456 gio/glocalfileoutputstream.c:666
#, c-format
msgid "Error stating file '%s': %s"
msgstr ""
-#: ../gio/glocalfileinfo.c:1527
+#: gio/glocalfileinfo.c:1526
msgid " (invalid encoding)"
msgstr " (ناسمه کوډييزونه)"
-#: ../gio/glocalfileinfo.c:1693
+#: gio/glocalfileinfo.c:1696
#, c-format
msgid "Error stating file descriptor: %s"
msgstr ""
-#: ../gio/glocalfileinfo.c:1738
-#, c-format
+#: gio/glocalfileinfo.c:1741
msgid "Invalid attribute type (uint32 expected)"
msgstr ""
-#: ../gio/glocalfileinfo.c:1756
-#, c-format
+#: gio/glocalfileinfo.c:1759
msgid "Invalid attribute type (uint64 expected)"
msgstr ""
-#: ../gio/glocalfileinfo.c:1775
-#, c-format
+#: gio/glocalfileinfo.c:1778
msgid "Invalid attribute type (byte string expected)"
msgstr ""
-#: ../gio/glocalfileinfo.c:1801
+#: gio/glocalfileinfo.c:1804
#, c-format
msgid "Error setting permissions: %s"
msgstr "%s :د پرېښلو په امستلو کې ستونزه"
-#: ../gio/glocalfileinfo.c:1852
-#: ../gio/glocalfileinfo.c:2020
+#: gio/glocalfileinfo.c:1855 gio/glocalfileinfo.c:2023
#, c-format
msgid "Error setting owner: %s"
msgstr "%s :د خاوند په امستلو کې ستونزه"
-#: ../gio/glocalfileinfo.c:1875
-#, c-format
+#: gio/glocalfileinfo.c:1878
msgid "symlink must be non-NULL"
msgstr ""
-#: ../gio/glocalfileinfo.c:1885
-#: ../gio/glocalfileinfo.c:1904
-#: ../gio/glocalfileinfo.c:1915
+#: gio/glocalfileinfo.c:1888 gio/glocalfileinfo.c:1907
+#: gio/glocalfileinfo.c:1918
#, c-format
msgid "Error setting symlink: %s"
msgstr ""
-#: ../gio/glocalfileinfo.c:1894
-#, c-format
+#: gio/glocalfileinfo.c:1897
msgid "Error setting symlink: file is not a symlink"
msgstr ""
-#: ../gio/glocalfileinfo.c:2075
+#: gio/glocalfileinfo.c:2078
#, c-format
msgid "Setting attribute %s not supported"
msgstr ""
-#: ../gio/glocalfileinputstream.c:160
-#: ../gio/glocalfileoutputstream.c:570
+#: gio/glocalfileinputstream.c:160 gio/glocalfileoutputstream.c:570
#, c-format
msgid "Error reading from file: %s"
msgstr "%s :دوتنې نه لوستلو کې ستونزه"
-#: ../gio/glocalfileinputstream.c:191
-#: ../gio/glocalfileinputstream.c:203
-#: ../gio/glocalfileinputstream.c:312
-#: ../gio/glocalfileoutputstream.c:372
-#: ../gio/glocalfileoutputstream.c:854
+#: gio/glocalfileinputstream.c:191 gio/glocalfileinputstream.c:203
+#: gio/glocalfileinputstream.c:312 gio/glocalfileoutputstream.c:372
+#: gio/glocalfileoutputstream.c:854
#, c-format
msgid "Error seeking in file: %s"
msgstr ""
-#: ../gio/glocalfileinputstream.c:233
-#: ../gio/glocalfileoutputstream.c:279
+#: gio/glocalfileinputstream.c:233 gio/glocalfileoutputstream.c:279
#, c-format
msgid "Error closing file: %s"
msgstr "%s :دوتنه بندولو کې ستونزه"
-#: ../gio/glocalfilemonitor.c:197
-#, c-format
+#: gio/glocalfilemonitor.c:198
msgid "Unable to find default local file monitor type"
msgstr ""
-#: ../gio/glocalfileoutputstream.c:172
-#: ../gio/glocalfileoutputstream.c:591
+#: gio/glocalfileoutputstream.c:172 gio/glocalfileoutputstream.c:591
#, c-format
msgid "Error writing to file: %s"
msgstr "%s :پر دوتنې ليکلو کې ستونزه"
-#: ../gio/glocalfileoutputstream.c:213
+#: gio/glocalfileoutputstream.c:213
#, c-format
msgid "Error removing old backup link: %s"
msgstr "%s :د زوړ شاتړ تړون په ړنګولو کې ستونزه"
-#: ../gio/glocalfileoutputstream.c:227
-#: ../gio/glocalfileoutputstream.c:240
+#: gio/glocalfileoutputstream.c:227 gio/glocalfileoutputstream.c:240
#, c-format
msgid "Error creating backup copy: %s"
msgstr "%s :شاتړ لمېسې جوړولو کې ستونزه"
-#: ../gio/glocalfileoutputstream.c:258
+#: gio/glocalfileoutputstream.c:258
#, c-format
msgid "Error renaming temporary file: %s"
msgstr "%s :د لنډمهاله دوتنې په بيانومولو کې ستونزه"
-#: ../gio/glocalfileoutputstream.c:418
-#: ../gio/glocalfileoutputstream.c:871
+#: gio/glocalfileoutputstream.c:418 gio/glocalfileoutputstream.c:871
#, c-format
msgid "Error truncating file: %s"
msgstr ""
-#: ../gio/glocalfileoutputstream.c:478
-#: ../gio/glocalfileoutputstream.c:523
-#: ../gio/glocalfileoutputstream.c:654
-#: ../gio/glocalfileoutputstream.c:931
+#: gio/glocalfileoutputstream.c:478 gio/glocalfileoutputstream.c:523
+#: gio/glocalfileoutputstream.c:654 gio/glocalfileoutputstream.c:931
#, c-format
msgid "Error opening file '%s': %s"
msgstr "%s :دوتنه پرانيستلو کې ستونزه '%s'"
-#: ../gio/glocalfileoutputstream.c:679
-#, c-format
+#: gio/glocalfileoutputstream.c:679
msgid "Target file is a directory"
msgstr "موخه دوتنه يوه پوښۍ ده"
-#: ../gio/glocalfileoutputstream.c:684
-#, c-format
+#: gio/glocalfileoutputstream.c:684
msgid "Target file is not a regular file"
msgstr "موخه دوتنه ساده دوتنه نه ده"
-#: ../gio/glocalfileoutputstream.c:696
-#, c-format
+#: gio/glocalfileoutputstream.c:696
msgid "The file was externally modified"
msgstr "دوتنه په بهرنۍ توګه بدله شوې وه"
-#: ../gio/gmemoryinputstream.c:487
-#: ../gio/gmemoryoutputstream.c:545
-#, c-format
+#: gio/gmemoryinputstream.c:487 gio/gmemoryoutputstream.c:545
msgid "Invalid GSeekType supplied"
msgstr ""
-#: ../gio/gmemoryinputstream.c:497
-#: ../gio/gmemoryoutputstream.c:555
-#, c-format
+#: gio/gmemoryinputstream.c:497 gio/gmemoryoutputstream.c:555
msgid "Invalid seek request"
msgstr ""
-#: ../gio/gmemoryinputstream.c:521
-#, c-format
+#: gio/gmemoryinputstream.c:521
msgid "Cannot truncate GMemoryInputStream"
msgstr ""
-#: ../gio/gmemoryoutputstream.c:288
-#, c-format
+#: gio/gmemoryoutputstream.c:288
msgid "Reached maximum data array limit"
msgstr ""
-#: ../gio/gmemoryoutputstream.c:323
-#, c-format
+#: gio/gmemoryoutputstream.c:323
msgid "Memory output stream not resizable"
msgstr ""
-#: ../gio/gmemoryoutputstream.c:339
-#, c-format
+#: gio/gmemoryoutputstream.c:339
msgid "Failed to resize memory output stream"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: ../gio/gmount.c:344
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: ../gio/gmount.c:419
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: ../gio/gmount.c:501
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
-#: ../gio/goutputstream.c:202
-#: ../gio/goutputstream.c:403
-#, c-format
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
+#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
-#: ../gio/goutputstream.c:363
-#: ../gio/goutputstream.c:771
-#, c-format
+#: gio/goutputstream.c:365 gio/goutputstream.c:773
msgid "Source stream is already closed"
msgstr ""
-#: ../gio/gthemedicon.c:206
+#: gio/gthemedicon.c:206
msgid "name"
msgstr "نوم"
-#: ../gio/gthemedicon.c:207
+#: gio/gthemedicon.c:207
msgid "The name of the icon"
msgstr "د انځورن نوم"
-#: ../gio/gthemedicon.c:218
+#: gio/gthemedicon.c:218
msgid "names"
msgstr "نومونه"
-#: ../gio/gthemedicon.c:219
+#: gio/gthemedicon.c:219
msgid "An array containing the icon names"
msgstr ""
-#: ../gio/gthemedicon.c:244
+#: gio/gthemedicon.c:244
msgid "use default fallbacks"
msgstr ""
-#: ../gio/gthemedicon.c:245
-msgid "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:245
+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/gunixinputstream.c:202
-#: ../gio/gunixinputstream.c:222
-#: ../gio/gunixinputstream.c:300
-#: ../gio/gunixoutputstream.c:289
+#: gio/gunixinputstream.c:201 gio/gunixinputstream.c:221
+#: gio/gunixinputstream.c:299 gio/gunixoutputstream.c:288
#, c-format
msgid "Error reading from unix: %s"
msgstr "%s :د يونېکس نه په لوستلو کې تېروتنه"
-#: ../gio/gunixinputstream.c:255
-#: ../gio/gunixinputstream.c:437
-#: ../gio/gunixoutputstream.c:244
-#: ../gio/gunixoutputstream.c:395
+#: gio/gunixinputstream.c:254 gio/gunixinputstream.c:436
+#: gio/gunixoutputstream.c:243 gio/gunixoutputstream.c:394
#, c-format
msgid "Error closing unix: %s"
msgstr "%s :د يونېکس په بندولو کې تېروتنه"
-#: ../gio/gunixmounts.c:1790
-#: ../gio/gunixmounts.c:1827
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "دوتنه غونډال ولۍ"
-#: ../gio/gunixoutputstream.c:190
-#: ../gio/gunixoutputstream.c:211
+#: gio/gunixoutputstream.c:189 gio/gunixoutputstream.c:210
#, c-format
msgid "Error writing to unix: %s"
msgstr "%s :پر يونېکس ليکلو کې تېروتنه"
-#: ../gio/gvolume.c:423
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
-#: ../gio/gwin32appinfo.c:277
-#, c-format
+#: gio/gwin32appinfo.c:277
msgid "Can't find application"
msgstr "کاريال نه شي موندلی"
-#: ../gio/gwin32appinfo.c:312
+#: gio/gwin32appinfo.c:312
#, c-format
msgid "Error launching application: %s"
msgstr "%s :د کاريال په پېلولو کې تېروتنه"
-#: ../gio/gwin32appinfo.c:349
-#, c-format
+#: gio/gwin32appinfo.c:349
msgid "URIs not supported"
msgstr "نه منل کيږي URIs"
-#: ../gio/gwin32appinfo.c:371
-#, c-format
+#: gio/gwin32appinfo.c:371
msgid "association changes not supported on win32"
msgstr ""
-#: ../gio/gwin32appinfo.c:383
-#, c-format
+#: gio/gwin32appinfo.c:383
msgid "Association creation not supported on win32"
msgstr ""
-#: ../tests/gio-ls.c:27
+#: tests/gio-ls.c:27
msgid "do not hide entries"
msgstr "ننوتنې نه پټول"
-#: ../tests/gio-ls.c:29
+#: tests/gio-ls.c:29
msgid "use a long listing format"
msgstr "د اوږد لړونې بڼه کارول"
-#: ../tests/gio-ls.c:37
+#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[...دوتنه]"
-
msgstr ""
"Project-Id-Version: 2.22\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-11 08:25+0000\n"
"Last-Translator: Duarte Loreto <happyguy_pt@hotmail.com>\n"
"Language-Team: Portuguese <gnome_pt@yahoogroups.com>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Atributo '%s' inesperado para o elemento '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Atributo '%s' do elemento '%s' não foi encontrado"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Etiqueta '%s' inesperada, esperada a etiqueta '%s'"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Etiqueta '%s' inesperada dentro de '%s'"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
"Não foi encontrado nenhum ficheiro de marcador válido nos directórios de "
"dados"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Já existe um marcador para o URI '%s'"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Não foi encontrado nenhum marcador para o URI '%s'"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Nenhum tipo MIME definido no marcador para o URI '%s'"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Nenhum sinal privado definido no marcador para o URI '%s'"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Nenhum grupo definido no marcador para o URI '%s'"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Nenhuma aplicação denominada '%s' registou um marcador para '%s'"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Falha ao expandir a linha de execução '%s' com o URI '%s'"
msgid "Error opening directory '%s': %s"
msgstr "Erro ao abrir o directório '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Incapaz de alocar %lu bytes para ler o ficheiro \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Erro ao ler o ficheiro '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Falha ao ler do ficheiro '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Falha ao abrir o ficheiro '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Falha ao obter atributos do ficheiro '%s': falha no fstat(): %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Falha ao abrir o ficheiro '%s': falha no fdopen(): %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Falha ao renomear o ficheiro '%s' para '%s': falha no g_rename(): %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Falha ao criar o ficheiro '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Falha ao abrir o ficheiro '%s' para escrita: falha no fdopen(): %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Falha ao escrever o ficheiro '%s': falha no fwrite(): %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Falha ao fechar o ficheiro '%s': falha no fclose(): %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Incapaz de remover o ficheiro '%s' existente: falha no g_unlink(): %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Modelo '%s' inválido, não deveria conter um '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Modelo '%s' não contém XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Falha ao ler o atalho '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Atalhos não são suportados"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Falha ao mapear o ficheiro '%s': falha no mmap(): %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Erro na linha %d caracter %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Erro na linha %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Detectada entidade vazia '&;'; entidades válidas são: & " < > "
"'"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"inicia uma entidade; se este 'i comercial' não é suposto ser uma entidade, "
"mascare-o como &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Nome de entidade '%s' desconhecido"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"caracter 'i comercial' sem intenção de iniciar uma entidade - mascare-o como "
"&"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Falha ao parsear '%-.*s', que deveria ser um dígito dentro de uma referência "
"de caracter (ê por exemplo) - talvez o dígito seja demasiado grande"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Referência de caracter vazia; deverá incluir um dígito tal como dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"utilizado um caracter 'i comercial' sem intenção de iniciar uma entidade - "
"mascare-o como &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Referência de entidade por terminar"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Referência de caracter por terminar"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Texto codificado UTF-8 inválido - sequência demasiado extensa"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
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:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Texto codificado UTF-8 inválido - '%s' inválido"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Documento tem de começar com um elemento (ex. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' não é um caracter válido após um caracter '<'; não pode iniciar um nome "
"de elemento"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Caracter estranho '%s', era esperado um caracter '>' para terminar a "
"etiqueta inicial do elemento '%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Caracter estranho '%s', era esperado um '=' após o nome do atributo '%s' do "
"elemento '%s'"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"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:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"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:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' não é um caracter válido após os caracteres '</'; '%s' não pode iniciar "
"o nome de um elemento"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' não é um caracter válido após o nome do elemento de fecho '%s'; o "
"caracter permitido é '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Documento estava vazio ou apenas continha espaços"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Documento terminou inesperadamente logo após um caracter menor que '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Documento terminou inesperadamente com elementos ainda abertos - '%s' foi o "
"último elemento aberto"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Documento terminou inesperadamente, era esperado um maior que '>' para "
"terminar a etiqueta <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Documento terminou inesperadamente dentro do nome de um elemento"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Documento terminou inesperadamente dentro do nome de um atributo"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"Documento terminou inesperadamente dentro da etiqueta de abertura de um "
"elemento."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Documento terminou inesperadamente após o sinal de igual posterior a um nome "
"de atributo; nenhum valor de atributo"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Documento terminou inesperadamente dentro do valor de um atributo"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Documento terminou inesperadamente dentro de um comentário ou instrução de "
msgid "Operation was cancelled"
msgstr "A operção foi cancelada"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Tipo desconhecido"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "Tipo de ficheiro %s"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "Tipo %s"
msgid "Unexpected early end-of-stream"
msgstr "Final precoce de fluxo inesperado"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Sem nome"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Ficheiro de área de trabalho não especifica campo Exec"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Incapaz de encontrar a consola necessária à aplicação"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
"Incapaz de criar a pasta de configurações de utilizador da aplicação %s: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Incapaz de criar a pasta de configurações MIME do utilizador %s: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Incapaz de criar ficheiro de área de trabalho de utilizador %s"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Definição personalizada de %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "a unidade não implementa a ejecção"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "a unidade não implementa a verificação de existência de media"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Operação não suportada"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Montagem contida não existe"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Incapaz de copiar sobre um directório"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Incapaz de copiar um directório sobre um directório"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Ficheiro de destino já existe"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Incapaz de copiar directório recursivamente"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Dado um valor de atalho inválido"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Não existe suporte para o Lixo"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Nomes de ficheiros não podem conter '%c'"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "unidade não implementa a montagem"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Não existe nenhuma aplicação registada para gerir este ficheiro"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "montar não implementa desmontar"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "montar não implementa ejectar"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "montar não implementa remontar"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "montar não implementa desmontar"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Fluxo de saída não implementa a escrita"
msgid "Error closing unix: %s"
msgstr "Erro ao fechar unix: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Raiz do sistema de ficheiros"
msgid "Error writing to unix: %s"
msgstr "Erro ao escrever no unix: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "unidade não implementa a ejecção"
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-07-20 23:58-0300\n"
"Last-Translator: Leonardo Ferreira Fontenelle <leonardof@gnome.org>\n"
"Language-Team: Brazilian Portuguese <gnome-l10n-br@listas.cipsga.org.br>\n"
"X-Poedit-Country: BRAZIL\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Atributo \"%s\" inesperado para elemento \"%s\""
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Não foi localizado atributo \"%s\" do elemento \"%s\""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Marca \"%s\" inesperada, esperava marca \"%s\""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Marca \"%s\" inesperada dentro de \"%s\""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
"Não foi localizado arquivo de marcadores válido nos diretórios de dados"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Já existe um marcador para o URI \"%s\""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Não foi localizado marcador para o URI \"%s\""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Não foi definido tipo MIME no marcador para o URI \"%s\""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Não foi definido sinal de particular no marcador para o URI \"%s\""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Não há grupos definidos no marcador para o URI \"%s\""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Nenhum aplicativo chamado \"%s\" registrou um marcador para \"%s\""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Falha em expandir linha de execução \"%s\" com URI \"%s\""
msgid "Error opening directory '%s': %s"
msgstr "Erro ao abrir o diretório \"%s\": %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Não foi possível alocar %lu bytes para ler arquivo \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Erro ao ler arquivo \"%s\": %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Falha ao ler do arquivo \"%s\": %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Falha ao abrir arquivo \"%s\": %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Falha ao obter atributos do arquivo \"%s\": fstat() falhou: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Falha ao abrir arquivo \"%s\": fdopen() falhou: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Falha ao renomear arquivo \"%s\" para \"%s\": g_rename() falhou: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Falha ao criar arquivo \"%s\": %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Falha ao abrir arquivo \"%s\" para escrita: fdopen() falhou: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Falha ao escrever no arquivo \"%s\": fwrite() falhou: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Falha ao fechar arquivo \"%s\": fclose() falhou: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "O arquivo \"%s\" não pôde ser removido: g_unlink() falhou: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Modelo \"%s\" inválido, não deveria conter um \"%s\""
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Modelo \"%s\" não contém XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Falha ao ler link simbólico \"%s\": %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Não há suporte a links simbólicos"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Falha ao mapear arquivo \"%s\": mmap() falhou: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Erro na linha %d caractere %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Erro na linha %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Entidade \"&;\" vazia vista; as entidades válidas são: & " < "
"> '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"inicia uma entidade; se este \"e\" comercial não é suposto ser uma entidade, "
"escape-o como &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Nome de entidade \"%s\" não é conhecido"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Entidade não termina com um ponto e vírgula; provavelmente você utilizou um "
"\"e\" comercial sem desejar iniciar uma entidade - escape-o com &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"referência de caractere (ê por exemplo) - talvez o dígito seja grande "
"demais"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr ""
"Referência de caractere vazia; deveria incluir um dígito tal como dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"utilizou um caractere \"e\" comercial sem desejar iniciar uma entidade - "
"escape-o com &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Referência de entidade inacabada"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Referência de caractere inacabada"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Texto codificado em UTF-8 inválido - seqüência muito extensa"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
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:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Texto codificado em UTF-8 inválido - '%s' não válido"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Documento tem de começar com um elemento (ex. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"\"%s\" não é um caractere válido após um caractere \"<\"; não poderá começar "
"um nome de elemento"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Caractere estranho \"%s\", esperava-se um caractere \">\" para terminar a "
"marca inicial do elemento \"%s\""
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Caractere estranho \"%s\", esperava-se um \"=\" após o nome do atributo \"%s"
"\" do elemento \"%s\""
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"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:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"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:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"\"%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:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"\"%s\" não é um caractere válido após o nome do elemento de fecho \"%s\"; o "
"caractere permitido é \">\""
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Documento estava vazio ou apenas continha espaços"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Documento terminou inesperadamente logo após um menor que \"<\""
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Documento terminou inesperadamente com elementos ainda abertos - \"%s\" foi "
"o último elemento aberto"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Documento terminou inesperadamente, esperava-se ver um maior que (\">\") "
"para terminar a marca <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Documento terminou inesperadamente dentro de um nome de elemento"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Documento terminou inesperadamente dentro de um nome de atributo"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
"Documento terminou inesperadamente dentro de uma marca de abertura de "
"elemento."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Documento terminou inesperadamente após o sinal de igual que se seguiu a um "
"nome de atributo; nenhum valor de atributo"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Documento terminou inesperadamente dentro de um valor de atributo"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Documento terminou inesperadamente dentro de um comentário ou instrução de "
msgid "Operation was cancelled"
msgstr "A operação foi cancelada"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Tipo desconhecido"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "tipo de arquivo %s"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "tipo %s"
msgid "Unexpected early end-of-stream"
msgstr "Fim do fluxo precoce não esperado"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Não nomeado"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "O arquivo da área de trabalho não especifica o campo Exec"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Não foi possível localizar o terminal requerido para o aplicativo"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
"Não foi possível criar pasta de configuração do aplicativo do usuário %s: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Não foi possível criar pasta de configuração MIME do usuário %s: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Não foi possível criar arquivo %s da área de trabalho do usuário"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Definição personalizada para %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "drive não implementa ejetar"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "drive não implementa verificação por mídia"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Operação sem suporte"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Ponto de montagem contido não existe"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Não foi possível copiar sobre diretório"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Não foi possível copiar diretório sobre diretório"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Arquivo alvo existe"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Não foi possível copiar o diretório recursivamente"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Valor fornecido de link simbólico inválido"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Não há suporte para lixeira"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Nomes de arquivo não podem conter \"%c\""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "volume não implementa montagem"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Nenhum aplicativo está registrado como manipulador deste arquivo"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "montar não implementa desmontar"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "montar não implementa ejetar"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "montar não implementa remontar"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "montar não implementa desmontar"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Fluxo de saída não implementa escrita"
msgid "Error closing unix: %s"
msgstr "Erro ao fechar unix: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Sistema de arquivos root"
msgid "Error writing to unix: %s"
msgstr "Erro ao escrever para unix: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "volume não implementa ejetar"
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-06 23:16+0200\n"
"Last-Translator: Mişu Moldovan <dumol@gnome.ro>\n"
"Language-Team: Română <gnomero-list@lists.sourceforge.net>\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2;\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Nu se aştepta un atribut „%s” pentru elementul „%s”"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Atributul „%s” al elementului „%s” nu a putut fi găsit"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "S-a primit eticheta „%s”, se aştepta eticheta „%s”"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Nu se aştepta eticheta „%s” în „%s”"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "Nu s-a găsit un fişier valid cu favorite în directoarele de date"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Un favorit pentru URI-ul „%s” există deja"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Nu s-a găsit nici un favorit pentru URI-ul „%s”"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Nu există un tip MIME definit în favoritul URI-ului „%s”"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Nu există un indicator privat definit în favoritul URI-ului „%s”"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Nu există grupuri definite în favoritul URI-ului „%s”"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
"Nu există o aplicaţie cu numele „%s” înregistrată în favoritul pentru „%s”"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Nu s-a putut expanda linia de comandă „%s” cu URI-ul %s"
msgid "Error opening directory '%s': %s"
msgstr "Eroare la deschiderea directorului „%s”: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Nu s-au putut aloca %lu octeţi pentru citirea fişierului „%s”"
msgid "Error reading file '%s': %s"
msgstr "Eroare la citirea fişierului „%s”: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Nu s-a putut citi din fişierul „%s”: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Nu s-a putut deschide fişierul „%s”: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Nu s-au putut obţine atributele fişierului „%s”: fstat() a eşuat: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Nu s-a putut deschide fişierul „%s”: fdopen() a eşuat: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Nu s-a putut redenumi fişierul „%s” în „%s”: g_rename() a eşuat: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Nu s-a putut crea fişierul „%s”: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
"Nu s-a putut deschide fişierul „%s” pentru scriere, fdopen() a eşuat: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Nu s-a putut scrie fişierul „%s”: fwrite() a eşuat: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Nu s-a putut închide fişierul „%s”: fclose() a eşuat: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Fişierul existent „%s” nu a putut fi şters: g_unlink() a eşuat: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Şablonul „%s” este invalid, n-ar trebui să conţină un „%s”"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Şablonul „%s” nu conţine XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KO"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MO"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Nu s-a putut citi legătura simbolică „%s”: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Legăturile simbolice nu sunt implementate"
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:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Eroare în linia %d, caracterul %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Eroare în linia %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"S-a depistat o entitate nulă „&;”. Entităţile valide sunt: & " < "
"> '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"„&” e cel ce începe o entitate. Dacă acest ampersand nu ar trebui să fie "
"într-o entitate, utilizaţi &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Numele entităţii „%s” nu este cunoscut"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"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 &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Nu s-a putut procesa „%-.*s”, care ar fi trebui să fie o cifră într-un "
"caracter referinţă (de exemplu ê). Poate cifra este prea mare"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Referinţă caracter goală. Ar trebui să includă o cifră precum dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"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 &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Referinţă neterminată la o entitate"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Referinţă caracter neterminată"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Text codat UTF-8 invalid - secvenţă prea lungă"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Text codat UTF-8 invalid - nu e un caracter de start"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Text codat UTF-8 invalid - „%s” invalid"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Documentul trebuie să înceapă cu un element (de ex. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"„%s” nu este un caracter valid după caracterul „<”. Nu poate începe cu "
"numele unui element"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Caracter neobişnuit „%s”, se aştepta un „>” pentru a termina eticheta de "
"început a elementului „%s”"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Caracter neobişnuit „%s”, se aştepta un „=” după numele atributului „%s” al "
"elementului „%s”"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"eticheta de început a elementului „%s” sau opţional un atribut. Poate aţi "
"utilizat un caracter invalid în numele atributului"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"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:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"„%s” nu este un caracter valid după caracterele „</”. „%s” nu poate începe "
"un nume de element"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"„%s” nu este un caracter valid după numele elementului de închidere „%s”. "
"Caracterul permis este „>”"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Documentul era gol sau conţinea doar spaţiu gol"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
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:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Documentul s-a terminat în mod neaşteptat cu unele elemente încă deschise. „%"
"s” a fost ultimul element deschis"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Documentul s-a terminat în mod neaşteptat, se aştepta un caracter „>” care "
"să încheie eticheta <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
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:1805
+#: glib/gmarkup.c:1890
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:1810
+#: glib/gmarkup.c:1895
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:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Documentul s-a terminat în mod neaşteptat după semnul egal ce urma unui nume "
"atribut. Nici o valoare pentru atribut"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
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:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
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 "
msgid "Operation was cancelled"
msgstr "Operaţiunea a fost anulată"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Tip necunoscută"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "tip de fişier %s"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "tip %s"
msgid "Unexpected early end-of-stream"
msgstr "„End-of-stream” neaşteptat de timpuriu"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Nedenumit"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Fişierul desktop nu a specificat un câmp „Exec”"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Nu s-a găsit un terminal pentru pornirea aplicaţiei"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
"Nu se poate crea pentru utilizator directorul cu opţiunile aplicaţiei %s: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Nu se poate crea pentru utilizator directorul cu opţiunile MIME %s: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Nu se poate crea fişierul desktop %s"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Definiţie personalizată pentru %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "unitatea nu poate ejecta discul"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "unitatea nu poate verifica ciclic pentru discuri noi"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Operaţiune neimplementată"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Montarea conţinută nu există"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Nu se poate copia peste director"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Nu se poate copia un director peste un alt director"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Fişierul destinaţie există deja"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Nu se poate copia recursiv directorul"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "S-a primit o valoare invalidă pentru legătura simbolică"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Nu există o implementare pentru coşul de gunoi"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Numele de fişiere nu pot conţine „%c”"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "volumul nu implementează montarea"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Nu există o aplicaţie înregistrată pentru deschiderea acestui fişier"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "obiectul montat nu implementează demontarea"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "obiectul montat nu implementează ejectarea"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "obiectul montat nu implementează remontarea"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "obiectul montat nu implementează demontarea"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Fluxul de ieşire nu implementează scriere"
msgid "Error closing unix: %s"
msgstr "Eroare la închiderea „unix”: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Rădăcina sistemului de fişiere"
msgid "Error writing to unix: %s"
msgstr "Eroare la scrierea în „unix”: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "Volumul nu implementează ejectarea"
msgstr ""
"Project-Id-Version: glib trunk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-11 20:54+0300\n"
"Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\n"
"Language-Team: Russian <gnome-cyr@gnome.org>\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Встретился неожиданный атрибут «%s» элемента «%s»"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Не найден атрибут «%s» элемента «%s»"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Неожиданный тэг «%s», ожидался тэг «%s»"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Неожиданный тэг «%s» внутри «%s»"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "Не удалось найти допустимый файл закладок в каталогах поиска"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Закладка для ресурса URI «%s» уже существует"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Для ресурса URI «%s» закладок не найдено"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "В закладке на ресурс «%s» не определён тип MIME"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Отметка о приватности данных в закладке для URI «%s» не определена"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "В закладке для URI «%s» не определена группа"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Нет приложения с именем «%s», создавшего закладку для «%s»"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Не удалось дополнить строку выполнения «%s» с помощью URI «%s»"
msgid "Error opening directory '%s': %s"
msgstr "Произошла ошибка при открытии каталога «%s»: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Не удалось выделить %lu байтов для прочтения файла «%s»"
msgid "Error reading file '%s': %s"
msgstr "Произошла ошибка при чтении файла «%s»: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Не удалось прочитать из файла «%s»: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Не удалось открыть файл «%s»: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Не удалось получить атрибуты файла «%s»: сбой в функции fstat(): %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Не удалось открыть файл «%s»: сбой в функции fdopen(): %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Не удалось переименовать файл «%s» в «%s»: сбой в функции g_rename(): %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Не удалось создать файл «%s»: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Не удалось открыть файл «%s» для записи: сбой в функции fdopen(): %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Не удалось записать файл «%s»: сбой в функции fwrite(): %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Не удалось закрыть файл «%s»: сбой в функции fclose(): %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
"Не удалось удалить существующий файл «%s»: сбой в функции g_unlink(): %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Шаблон «%s» недопустим: он не должен содержать «%s»"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Шаблон «%s» не содержит XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f КБ"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f МБ"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f ГБ"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Не удалось прочитать символьную ссылку «%s»: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Символьные ссылки не поддерживаются"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Не удалось отобразить файл «%s»: сбой в функции mmap(): %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Ошибка в строке %d на символе %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Ошибка в строке %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Обнаружена пустая конструкция «&;»; допустимыми конструкциями являются: & "
"" < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"конструкцию; если этот символ не должен быть частью конструкции, то "
"экранируйте его конструкцией «&»"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Символ «%s» недопустим внутри названия конструкции"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Наименование конструкции «%s» неизвестно"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"использован не для обозначения начала конструкции — экранируйте его как "
"«&»"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Не удалось разобрать строку «%-.*s», которая должна быть числом внутри ссылки "
"на символ (например ê) — возможно, номер слишком велик"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Ссылка на символ «%-.*s» не определяет допустимый символ"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Ссылка на символ пуста; она должна включать номер, например dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"использован не для обозначения начала конструкции — экранируйте его как "
"«&»"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Ссылка на конструкцию не закончена"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Ссылка на символ не закончена"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr ""
"Текст закодирован как UTF-8 недопустимым образом — слишком длинная "
"последовательность"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr ""
"Текст закодирован как UTF-8 недопустимым образом — неправильный начальный "
"символ"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr ""
"Текст закодирован как UTF-8 недопустимым образом — недопустимая "
"последовательность «%s»"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Документ должен начинаться с элемента (например <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"Символ «%s» является недопустимым после символа «<»; этот символ не может "
"начинать имя элемента"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Встретился лишний символ «%s», ожидался символ «>» для завершения открывающего "
"тэга элемента «%s»"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Встретился лишний символ «%s», ожидался символ «=» после имени атрибута «%s» "
"элемента «%s»"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"открывающего тэга элемента «%s», либо, возможно, атрибут; может быть, был "
"использован недопустимый символ в имени атрибута"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Встретился лишний символ «%s», ожидалась открывающая двойная кавычка после "
"знака равенства при присваивании значения атрибуту «%s» элемента «%s»"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"Символ «%s» недопустим после символов «</»; символ «%s» не может начинать имя "
"элемента"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"Символ «%s» недопустим после закрывающего элемента имени «%s»; допустимым "
"символом является «>»"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Элемент «%s» был закрыт, ни один элемент в настоящий момент не открыт"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
"Элемент «%s» был закрыт, но открытым в настоящий момент является элемент «%s»"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Документ был пуст или содержал только пробелы"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Документ неожиданно окончился сразу же после открывающей угловой скобки «<»"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Документ неожиданно окончился, когда ещё были открыты элементы — «%s» был "
"последним открытым элементом"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
msgstr ""
"Документ неожиданно окончился, ожидалась закрывающая тэг <%s/> угловая скобка"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Документ неожиданно окончился внутри имени элемента"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Документ неожиданно окончился внутри имени атрибута"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Документ неожиданно окончился внутри открывающего элемент тэга"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Документ неожиданно окончился после знака равенства, следующего за именем "
"атрибута; значение атрибута не указано"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Документ неожиданно окончился внутри значения атрибута"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Документ неожиданно окончился внутри тэга, закрывающего элемент «%s»"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Документ неожиданно окончился внутри комментария или инструкции обработки"
msgid "Operation was cancelled"
msgstr "Действие было отменено"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Неизвестный тип"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "тип файлов %s"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "тип %s"
msgid "Unexpected early end-of-stream"
msgstr "Неожиданный ранний конец потока"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Без имени"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "В desktop-файле не указано поле Exec"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Не удалось найти терминал, требуемый для приложения"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "Не удалось создать пользовательскую папку настроек приложения %s: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Не удалось создать пользовательскую папку настроек MIME %s: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Не удалось создать пользовательский desktop-файл %s"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Особое определение для %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "привод не реализует извлечение"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "привод не реализует опрос носителя"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Действие не поддерживается"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Содержащая точка монтирования не существует"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Нельзя скопировать поверх каталога"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Нельзя скопировать каталог поверх каталога"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Целевой файл существует"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Не удалось рекурсивно скопировать каталог"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Дано неверное значение символьной ссылки"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Корзина не поддерживается"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Имена файлов не могут содержать «%c»"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "том не реализует присоединение"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Нет зарегистрированного приложения для обработки данного файла"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "точка монтирования не реализует отсоединение"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "точка монтирования не реализует извлечение"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "точка монтирования не реализует пересоединение"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "точка монтирования не реализует отсоединение"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Выходной поток не реализует запись"
msgid "Error closing unix: %s"
msgstr "Произошла ошибка при закрытии unix: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Корень файловой системы"
msgid "Error writing to unix: %s"
msgstr "Произошла ошибка при записи в unix: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "том не реализует извлечение"
msgstr ""
"Project-Id-Version: glib 2.12\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, fuzzy, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Inyuguti Ikitezwe: a Nyuma Ikiranga Izina: Bya Ikigize:"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
#, fuzzy
msgid "No valid bookmark file found in data dirs"
msgstr "Urufunguzo IDOSIYE OYA Byabonetse in Ibyatanzwe"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Kuri Gusoma Ihuza"
msgid "Error opening directory '%s': %s"
msgstr "Gufungura %s%S bushyinguro"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, fuzzy, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "OYA Bayite Kuri Gusoma IDOSIYE"
msgid "Error reading file '%s': %s"
msgstr "Ikosa mu gusoma idosiye"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, fuzzy, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Kuri Gusoma Bivuye IDOSIYE"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, fuzzy, c-format
msgid "Failed to open file '%s': %s"
msgstr "Kuri Gufungura IDOSIYE"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, fuzzy, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Kuri Kubona Ibiranga Bya IDOSIYE Byanze"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, fuzzy, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Kuri Gufungura IDOSIYE Byanze"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, fuzzy, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Kuri Guhindura izina IDOSIYE Kuri Byanze"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, fuzzy, c-format
msgid "Failed to create file '%s': %s"
msgstr "Kuri Kurema IDOSIYE"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, fuzzy, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Kuri Gufungura IDOSIYE kugirango Byanze"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, fuzzy, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Kuri IDOSIYE Byanze"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, fuzzy, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Kuri Gufunga IDOSIYE Byanze"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, fuzzy, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "IDOSIYE OYA Cyavanyweho Byanze"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, fuzzy, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Sibyo OYA a"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Impera Na:"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, fuzzy, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Kuri Gusoma Ihuza"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
#, fuzzy
msgid "Symbolic links not supported"
msgstr "amahuza OYA"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Kuri Gufungura IDOSIYE Byanze"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "ku Umurongo INYUGUTI"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, fuzzy, c-format
msgid "Error on line %d: %s"
msgstr "ku Umurongo"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
#, fuzzy
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr "Byemewe"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, fuzzy, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"it as &"
msgstr "ni OYA Byemewe ku Gutangira Bya Izina: Inyuguti NIBA iyi Kuri Nka"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, fuzzy, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "ni OYA Byemewe Mo Imbere Izina:"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, fuzzy, c-format
msgid "Entity name '%s' is not known"
msgstr "Izina: ni OYA"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
#, 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 &"
msgstr "OYA Impera Na: a Akabago n'Akitso Inyuguti Kuri Gutangira Nka"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, fuzzy, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (ê for example) - perhaps the digit is too large"
msgstr "Kuri a Mo Imbere a Inyuguti Indango kugirango Urugero ni Binini"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, fuzzy, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Indango OYA a Inyuguti"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
#, fuzzy
msgid "Empty character reference; should include a digit such as dž"
msgstr "Inyuguti Indango Gushyiramo a Nka"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
#, fuzzy
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"as &"
msgstr "Indango OYA Impera Na: a Akabago n'Akitso Inyuguti Kuri Gutangira Nka"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
#, fuzzy
msgid "Unfinished entity reference"
msgstr "Indango"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
#, fuzzy
msgid "Unfinished character reference"
msgstr "Inyuguti Indango"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "8 Umwandiko"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "8 Umwandiko"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "8 Umwandiko"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
#, fuzzy
msgid "Document must begin with an element (e.g. <book>)"
msgstr "g."
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, 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:1184
+#: glib/gmarkup.c:1266
#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Inyuguti Ikitezwe: a Inyuguti Kuri Impera Gutangira Itagi: Bya Ikigize:"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, 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:1315
+#: glib/gmarkup.c:1397
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"Inyuguti Ikitezwe: a Cyangwa Inyuguti Kuri Impera Gutangira Itagi: Bya "
"Ikigize: Cyangwa Ikiranga Sibyo Inyuguti in Ikiranga Izina:"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Inyuguti Ikitezwe: Gufungura Gushyiraho akugarizo Ikimenyetso Nyuma "
"IKIMENYETSO Ryari: Agaciro kugirango Ikiranga Bya Ikigize:"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, 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:1583
+#: glib/gmarkup.c:1665
#, 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:1594
+#: glib/gmarkup.c:1676
#, fuzzy, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Oya Ikigize: ni Gufungura"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, fuzzy, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Gufungura Ikigize: ni"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
#, fuzzy
msgid "Document was empty or contained only whitespace"
msgstr "ubusa Cyangwa"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
#, fuzzy
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Nyuma Gufungura Imfuruka"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, 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:1793
+#: glib/gmarkup.c:1878
#, 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:1799
+#: glib/gmarkup.c:1884
#, fuzzy
msgid "Document ended unexpectedly inside an element name"
msgstr "Mo Imbere Ikigize: Izina:"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
#, fuzzy
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Mo Imbere Ikiranga Izina:"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
#, fuzzy
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Mo Imbere Ikigize: Gufungura%S Itagi:"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
#, 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:1823
+#: glib/gmarkup.c:1908
#, fuzzy
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Mo Imbere Ikiranga Agaciro"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, fuzzy, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Mo Imbere Gufunga Itagi: kugirango Ikigize:"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
#, fuzzy
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Mo Imbere a Icyo wongeraho Cyangwa Inonosora"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "Ihitamo ritazwi:"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "amahuza OYA"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "amahuza OYA"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "ku Umurongo"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Ihindurangero"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib.si\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "'%s' මූලය සඳහා බලාපොරොත්තු නොවු '%s' විශේෂණය"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "'%s' මූලයෙහි '%s' විශේෂණය හමුවුයේ නැත"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "'%s'බලාපොරොත්තු නොවු ටැගයකි, බලාපොරොත්තු වුයේ '%s' ටැගයයි"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "'%s'බලාපොරොත්තු නොවු ටැගයක් '%s' තුළ ඇත"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "දත්ත බහලුම් තුළ නිරවද්ය පිටු සළකුණක් හමුවූයෙ නැත"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "'%s' URI සඳහා වු පිටු සළකුණ දැනට භාවිතයේ ඇත"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "'%s' URI සඳහා පිටු සළකුණු හමුවුයේ නැත"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "'%s' URI සඳහා වු පිටු සළකුණු තුළ MIME වර්හගයක් සදහන් කරුයේ නැත"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "'%s' URI සඳහා වු පිටු සළකුණු තුළ සමූහ කට්ටලය නැත"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr ""
msgid "Error opening directory '%s': %s"
msgstr "'%s' ගහලුම විවෘත කිරීම දෝෂ සහිතයි: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, fuzzy, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr " \"%s\" ගොනුව කියවීම සඳහා %lu බයිට් ප්රමාණයක් යෙදවිය නොහැකි විය"
msgid "Error reading file '%s': %s"
msgstr "'%s' ගොනුව කියවීම දෝෂ සහිතයි: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "'%s' ගොනුවෙන් කියවීම අසමත් විය: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "'%s' ගොනුව විවෘත කිරීම අසමත් විය: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "'%s' ගොනුවේ විශේෂණ ලබා ගැනීම අසමත් විය: fstat() අසමත් විය: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "'%s' ගොනුව විවෘත කිරීම අසමත් විය: fdopen() අසමත් විය: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "'%s' ගොනුව '%s' ලෙස නම වෙනස් ත කිරීම අසමත් විය: g_rename(අසමත් වියed: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "'%s' ගොනුව නිර්මාණය දෝෂ සහිතයි: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "ලිවීම සඳහා '%s' ගොනුව විවෘත කිරීම අසමත් විය: fdopen() අසමත් විය: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "'%s' ගොනුවට ලිවීම අසමත් විය: fwrite() අසමත් විය: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "'%s' ගොනුව වැසීමීම අසමත් විය: fclose() අසමත් විය: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "දැනට ඇති '%s' ගොනුව ඉවත් කළ නොහැක: g_unlink() අසමත් විය: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "'%s' ආකෘතිය සාවද්ය වේ, '%s' අඩංගු නොවිය යූතුය"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "'%s' ආකෘතියේ XXXXXX අඩංගු නොවේ"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "'%s' සංකේතාත්මක පුරුක කියවිම අසමත් විය: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "සංකේතාත්මක පුරුක සහාය දක්නන්නේ නැත"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' ගොනුව අනුරුපණය කිරීම අසමත් විය: mmap()අසමත් විය: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "%d පේළියේ %d අක්ෂරය මත දෝෂයකි: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "%d පේළියේ ත දෝෂයකි: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"it as &"
msgstr ""
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "ඇතුළත් කළ නම තුළ ඇති '%s' අක්ෂරය සාද්යවේ "
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "'%s' වස්තුවේ නම නොදනී"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
msgstr ""
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (ê for example) - perhaps the digit is too large"
msgstr ""
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr ""
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"as &"
msgstr ""
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "අවසන් නොකළ වස්තු යොමුව"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "අවසන් නොකළ අක්ෂර යොමුව"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "සාවද්ය UTF-8 සංකේතාංකන පෙළ"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "සාවද්ය UTF-8 සංකේතාංකන පෙළ"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "සාවද්ය UTF-8 සංකේතාංකන පෙළ"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "ලේඛණය මූලයකින්ම ආරම්භ කළ යුතුම වේ (උදා. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr ""
-#: glib/gmarkup.c:1184
+#: glib/gmarkup.c:1266
#, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"character in an attribute name"
msgstr ""
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, 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:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
msgstr ""
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
msgstr ""
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "'%s' මූලය වසා ඇති අතර කිසිම මූලයක් විවෘතව ඇත"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "'%s' මූලය වසා ඇති අතර දැනට'%s' මූලය විවෘතව ඇත"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
#, fuzzy
msgid "Document was empty or contained only whitespace"
msgstr "ලේඛණය හිස්ව තිබුනි හෝ තිබුනේ සුදුඉඩ පමණි"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr ""
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr ""
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr ""
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr ""
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "නොදන්නා දෝෂය"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "සංකේතාත්මක පුරුක සහාය දක්නන්නේ නැත"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "සංකේතාත්මක පුරුක සහාය දක්නන්නේ නැත"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "%d පේළියේ ත දෝෂයකි: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "පරිවර්තනයේදි දෝෂයකි : %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural= (n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Neočakávaná vlastnosť '%s' prvku '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Vlastnosť '%s' prvku '%s' nenájdená"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Neočakávaná značka '%s', bola očakávaná značka '%s'"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Neočakávaná značka '%s' vo vnútri '%s'"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
#, fuzzy
msgid "No valid bookmark file found in data dirs"
msgstr "Nepodarilo sa nájsť platný súbor kľúčov v dátových adresároch"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Záložka pre URI '%s' už existuje"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Nenastavené skupiny v záložke pre URI '%s'"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Nepodarilo sa prečítať symbolický odkaz '%s': %s"
msgid "Error opening directory '%s': %s"
msgstr "Chyba pri otváraní priečinka '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Nepodarilo sa alokovať %lu bajtov pre načítanie súboru \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Chyba pri čítaní súboru '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Nepodarilo sa čítanie súboru '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Nepodarilo sa otvoriť súbor '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Nepodarilo sa získať atribúty súboru '%s': fstat() zlyhala: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Nepodarilo sa otvoriť súbor '%s': fdopen() zlyhala: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"Nepodarilo sa premenovať súbor '%s' na '%s': funkcia g_rename() zlyhala: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Nepodarilo sa vytvoriť súbor '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
"Nepodarilo sa otvoriť súbor '%s' pre zápis: funkcia fdopen() zlyhala: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Nepodarilo sa zapísať súbor '%s': funkcia fwrite() zlyhala: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Nepodarilo sa zatvoriť súbor '%s': funkcia fclose() zlyhala: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
"Existujúci súbor '%s' nemohol byť odstránený: funkcia g_unlink() zlyhala: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Šablóna '%s' je neplatná, nesmie obsahovať '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Šablóna '%s' neobsahuje XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Nepodarilo sa prečítať symbolický odkaz '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Symbolické odkazy nepodporované"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Nepodarilo sa namapovať súbor '%s': mmap() zlyhala: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Chyba na riadku %d znak %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Chyba na riadku %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Nájdená prázdna entita '&;', platné entity sú: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"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 &."
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Znak '%s' nie je platný v mene entity"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Meno entity '%s' nie je známe"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Entita nekončí bodkočiarkou. Asi ste použili znak & bez toho, aby ste ho "
"zapísali ako &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Nepodarilo sa spracovať '%-.*s', čo by mala byť číslica v odkaze na znak "
"(napríklad ê) - možno je číslica príliš veľká"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr ""
"Prázdny odkaz na znak. Odkaz by mal obsahovať číslice, napríklad Ʋ"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"Odkaz na znak neskončil bodkočiarkou. Asi ste použili & a nezadali ste ho "
"ako &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Neukončený odkaz na entitu"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Neukončený odkaz na znak"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Neplatný text v kódovaní UTF-8"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
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:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Neplatný text v kódovaní UTF-8 - neplatné '%s'"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokument musí začínať elementom (napr. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, 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:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Prebytočný znak '%s'. Bol očakávaný znak '>', aby skončil začiatočnú značku "
"elementu '%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Prebytočný znak '%s'. Bol očakávaný znak '=' za menom atribútu '%s' elementu "
"'%s'"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"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:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Prebytočný znak '%s'. Boli očakávané úvodzovky po '=' pri zadávaní hodnoty "
"atribútu '%s' v elemente '%s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
msgstr ""
"'%s' nie je platný znak po znakoch '</'. '%s' nesmie začínať meno elementu"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
msgstr ""
"'%s' nie je platný znak po koncovom mene elementu '%s'. Povolený znak je '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokument je prázdny alebo obsahuje iba medzery"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
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:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Dokument neočakávane skončil s otvorenými elementami - '%s' bol posledný "
"otvorený element."
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
msgstr ""
"Dokument neočakávane skončil, očakával sa znak '>' pre ukončenie značky <%s>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokument neočakávane skončil v mene elementu"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokument neočakávane skončil v mene atribútu"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
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:1816
+#: glib/gmarkup.c:1901
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:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokument neočakávane skončil v hodnote atribútu"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
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"
msgid "Operation was cancelled"
msgstr "Operácia bola zrušená"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Neznámy typ"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "typ súboru %s"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "typ %s"
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Nepomenované"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Vlastná definícia pre %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Nepodporovaná operácia"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Cieľový súbor existuje"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Symbolické odkazy nepodporované"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "pripojenie neimplementuje odpojenie"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "pripojenie neimplementuje vysunutie"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "pripojenie neimplementuje opätovné pripojenie"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "pripojenie neimplementuje odpojenie"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Výstupný prúd neimplementuje zápis"
msgid "Error closing unix: %s"
msgstr "Chyba pri zatváraní unixu: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Koreň súborového systému"
msgid "Error writing to unix: %s"
msgstr "Chyba pri zápise do unixu: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "zväzok neimplementuje vysunutie"
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-21 19:16+0100\n"
"Last-Translator: Matej Urbančič <mateju@svn.gnome.org>\n"
"Language-Team: Slovenian <sl@li.org>\n"
"X-Poedit-Language: Slovenian\n"
"X-Poedit-SourceCharset: utf-8\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Nepričakovan atribut '%s' za element '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Atribut '%s' elementa '%s' ni najden"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Nepričakovana oznaka '%s'. Pričakovana je oznaka '%s'"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Nepričakovana oznaka '%s' znotraj '%s'"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "Ni veljavne datoteke zaznamkov v podatkovnih mapah"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Zaznamek za URI '%s' že obstaja"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Ni veljavnega zaznamka za URI '%s'"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "V zaznamku za URI '%s' ni določena vrsta MIME"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "V zaznamku za URI '%s' ni določene zasebne zastavice"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "V zaznamku za URI '%s' ni nastavljenih skupin"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Program z imenom '%s' ni ustvaril zaznamka za '%s'"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Napaka pri razširjanju ukazne vrstice '%s' z URI '%s'"
msgid "Error opening directory '%s': %s"
msgstr "Napaka ob odpiranju imenika '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Ni mogoče rezervirati %lu bajtov za branje datoteke \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Napaka ob branju datoteke '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Ni mogoče brati iz datoteke '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Ni mogoče odpreti datoteke '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Ni mogoče dobiti atributov datoteke '%s': fstat() ni uspel: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Ni mogoče odpreti datoteke '%s': fdopen() ni uspel: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Ni mogoče preimenovati datoteke '%s' v '%s': g_rename() ni uspel: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Ni mogoče ustvariti datoteke '%s' %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Ni mogoče odpreti datoteke '%s' za pisanje: fdopen() ni uspel: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Ni mogoče zapisati datoteke '%s': fwrite() ni uspel: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Ni mogoče zapreti datoteke '%s': fclose() ni uspel: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Obstoječe datoteke '%s' ni mogoče odstraniti: g_unlink() ni uspel: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Predloga '%s' je neveljavna, saj ne sme vsebovati '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Predloga '%s' ne vsebuje XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Ni mogoče prebrati simbolne povezave '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Simbolne povezave niso podprte"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Ni mogoče preslikati datoteke '%s': mmap() ni uspel: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Napaka v vrstici %d, znak %d:"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Napaka v vrstici %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Zaznana prazna entiteta '&;'; veljavne entitete so: & " < > "
"'"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"Znak '%s' ni veljaven na začetku imena entitete; entiteto začne znak &; v "
"primeru, da znak ne predstavlja entitete, mora biti zapisan kot &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Znak '%s' ni veljaven znotraj imena entitete"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Neznano ime entitete '%s'"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Entiteta se ne zaključi s podpičjem; najverjetneje je uporabljen znak '&' "
"brez povezave z entiteto - znak '&' mora biti zapisan kot '&'"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Ni mogoče razčleniti '%-.*s', ki bi morala biti številka znotraj reference "
"znaka (na primer ê) - morda je številka prevelika"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Referenca znaka '%-.*s' ne šifrira dovoljenega znaka"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Prazna referenca znaka; vsebovati bi morala številko kot dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"Referenca znaka se ni končala s podpičjem; najverjetneje je uporabljen znak "
"'&' brez povezave z entiteto - znak '&' mora biti zapisan kot '&'"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Nedokončano nanašanje na entiteto"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Nedokončano nanašanje na znak"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Neveljavno UTF-8 kodirano besedilo - predolgo zaporedje"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Neveljavno UTF-8 kodirano besedilo - ni začetnega znaka"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Neveljavno UTF-8 kodirano besedilo - neveljaven '%s'"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokument se mora začeti z elementom (na primer <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' ni veljaven znak, kadar sledi znaku '<'; morda se ne začne z imenom "
"elementa"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Nenavaden znak '%s'. Pričakovan znak je '>', da se zaključi oznako elementa "
"'%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Nenavaden znak '%s'. Za imenom atributa '%s' (elementa '%s') je pričakovan "
"znak '='"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"elementa '%s' ali atribut; morda ste uporabili neveljaven znak v imenu "
"atributa'"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Nenavaden znak '%s'. Za enačajem je pričakovan narekovaj znotraj katerega je "
"podana vrednost atributa '%s' elementa '%s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
msgstr ""
"'%s' ni veljaven znak za znakoma '</'; ime elementa se ne sme začeti z '%s'"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"Znak '%s' ni veljaven kadar sledi zaprtju imena elementa '%s'; dovoljen znak "
"je '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element '%s' je zaprt, trenutno ni odprtega elementa"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokument je prazen ali pa vsebuje le presledke"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokument nepričakovano zaključen takoj za odprtjem predmeta '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Dokument nepričakovano zaključen s še odprtimi elementi - '%s' je zadnji "
"odprt element"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Dokument nepričakovano zaključen, pričakovan je zaključni zaklepaj oznake <%"
"s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokument nepričakovano zaključen sredi imena elementa"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokument nepričakovano zaključen sredi imena atributa"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokument nepričakovano zaključen sredi oznake za odprtje elementa."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Dokument nepričakovano zaključen za enačajem, ki sledil imenu atributa; ni "
"določena vrednosti atributa"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokument nepričakovano zaključen sredi vrednosti atributa"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Dokument nepričakovano zaključen sredi komentarja ali ukaza"
msgid "Operation was cancelled"
msgstr "Operacija je bila preklicana."
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "neznana vrsta"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s vrsta datoteke"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s vrsta"
msgid "Unexpected early end-of-stream"
msgstr "Nepričakovan prezgodnji konec pretoka"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Neimenovan"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Namizna datoteka ne vsebuje določenega polja Exec"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Ni mogoče najti terminala, ki ga zahteva program"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "Ni mogoče ustvariti nastavitvene mape uporabnikovega programa %s: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Ni mogoče ustvariti uporabnikove nastavitvene MIME mape %s: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Ni mogoče ustvariti uporabnikove datoteke namizja %s"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Določilo po meri za %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "pogona ni mogoče izvreči"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "pogon ne podpira preverjanja enote"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Operacija ni podprta"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Obstoječa enota ne obstaja"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Ni mogoče kopirati preko mape"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Ni mogoče kopirati mape preko mape"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Ciljna datoteka obstaja"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Ni mogoče kopirati drevesne strukture mape"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Neveljavna vrednost simbolne povezave"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Smeti niso podprte"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Ni mogoče uporabiti '%c' v imenu datoteke"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "enota ne podpira priklopa"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Na voljo ni programa z a upravljanje s to datoteko"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "enota ne podpira odklopa"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "enote ni mogoče izvreči"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "enota ne podpira ponovnega priklopa"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "enota ne podpira odklopa"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Odvodni pretok ne podpira pisanja"
msgid "Error closing unix: %s"
msgstr "Napaka med zapiranjem unix-a: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Koren datotečnega sistema"
msgid "Error writing to unix: %s"
msgstr "Napaka med pisanjem na unix: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "medija ni mogoče izvreči"
msgstr ""
"Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-16 15:26+0200\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-18 16:47+0100\n"
"Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n"
"Language-Team: albanian <gnome-albanian-perkthyesit@lists.sourceforge.net>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../glib/gbookmarkfile.c:728 ../glib/gbookmarkfile.c:805
-#: ../glib/gbookmarkfile.c:884 ../glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Atribut i papritur '%s' për elementin '%s'"
-#: ../glib/gbookmarkfile.c:739 ../glib/gbookmarkfile.c:816
-#: ../glib/gbookmarkfile.c:826 ../glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Atributi '%s' i elementit '%s' nuk u gjet"
-#: ../glib/gbookmarkfile.c:1112 ../glib/gbookmarkfile.c:1177
-#: ../glib/gbookmarkfile.c:1241 ../glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Tag '%s' i papritur, pritej tag '%s'"
-#: ../glib/gbookmarkfile.c:1137 ../glib/gbookmarkfile.c:1151
-#: ../glib/gbookmarkfile.c:1219 ../glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Tag '%s' i papritur në brendësi të '%s'"
-#: ../glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
"Nuk u gjet asnjë file i vlefshëm libërshënimesh tek directory e të dhënave"
-#: ../glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Një libërshënim për URI '%s' ekziston rregullisht"
-#: ../glib/gbookmarkfile.c:2045 ../glib/gbookmarkfile.c:2202
-#: ../glib/gbookmarkfile.c:2287 ../glib/gbookmarkfile.c:2367
-#: ../glib/gbookmarkfile.c:2452 ../glib/gbookmarkfile.c:2535
-#: ../glib/gbookmarkfile.c:2613 ../glib/gbookmarkfile.c:2692
-#: ../glib/gbookmarkfile.c:2734 ../glib/gbookmarkfile.c:2831
-#: ../glib/gbookmarkfile.c:2957 ../glib/gbookmarkfile.c:3147
-#: ../glib/gbookmarkfile.c:3223 ../glib/gbookmarkfile.c:3388
-#: ../glib/gbookmarkfile.c:3477 ../glib/gbookmarkfile.c:3567
-#: ../glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Nuk u gjet asnjë libërshënim për URI '%s'"
-#: ../glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Asnjë përcaktim i llojit të MIME në libërshënimin për URI '%s'"
-#: ../glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Nuk është përcaktuar asnjë flag privat në libërshënimin për URI '%s'"
-#: ../glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Nuk është përcaktuar asnjë grup për URI '%s'"
-#: ../glib/gbookmarkfile.c:3241 ../glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Asnjë aplikativ me emrin '%s' ka regjistruar një libërshënues për '%s'"
-#: ../glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Zgjerimi i rreshtit exec '%s' me URI '%s' dështoi"
-#: ../glib/gconvert.c:431 ../glib/gconvert.c:509 ../glib/giochannel.c:1158
+#: glib/gconvert.c:431 glib/gconvert.c:509 glib/giochannel.c:1158
#, c-format
msgid "Conversion from character set '%s' to '%s' is not supported"
msgstr "Konvertimi nga familja e simboleve '%s' në '%s' nuk suportohet"
-#: ../glib/gconvert.c:435 ../glib/gconvert.c:513
+#: glib/gconvert.c:435 glib/gconvert.c:513
#, c-format
msgid "Could not open converter from '%s' to '%s'"
msgstr "E pamundur hapja e konvertuesit nga '%s' në '%s'"
-#: ../glib/gconvert.c:632 ../glib/gconvert.c:1017 ../glib/giochannel.c:1330
-#: ../glib/giochannel.c:1372 ../glib/giochannel.c:2216 ../glib/gutf8.c:956
-#: ../glib/gutf8.c:1405
+#: glib/gconvert.c:632 glib/gconvert.c:1017 glib/giochannel.c:1330
+#: glib/giochannel.c:1372 glib/giochannel.c:2216 glib/gutf8.c:956
+#: glib/gutf8.c:1405
msgid "Invalid byte sequence in conversion input"
msgstr "Sekuencë byte e pavlefshme tek të dhënat për konvertim"
-#: ../glib/gconvert.c:638 ../glib/gconvert.c:944 ../glib/giochannel.c:1337
-#: ../glib/giochannel.c:2228
+#: glib/gconvert.c:638 glib/gconvert.c:944 glib/giochannel.c:1337
+#: glib/giochannel.c:2228
#, c-format
msgid "Error during conversion: %s"
msgstr "Gabim gjatë konvertimit: %s"
# (pofilter) doublewords: The word 'të' is repeated
-#: ../glib/gconvert.c:669 ../glib/gutf8.c:952 ../glib/gutf8.c:1156
-#: ../glib/gutf8.c:1297 ../glib/gutf8.c:1401
+#: glib/gconvert.c:669 glib/gutf8.c:952 glib/gutf8.c:1156 glib/gutf8.c:1297
+#: glib/gutf8.c:1401
msgid "Partial character sequence at end of input"
msgstr "Sekuencë e pjesëshme simbolesh në fund të së dhënave në hyrje"
-#: ../glib/gconvert.c:919
+#: glib/gconvert.c:919
#, c-format
msgid "Cannot convert fallback '%s' to codeset '%s'"
msgstr "I pamundur konvertimi i '%s' në familjen e simboleve '%s'"
-#: ../glib/gconvert.c:1734
+#: glib/gconvert.c:1734
#, c-format
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
msgstr "URI '%s' nuk është një URI absolute duke përdorur skemën e \"file\""
-#: ../glib/gconvert.c:1744
+#: glib/gconvert.c:1744
#, c-format
msgid "The local file URI '%s' may not include a '#'"
msgstr "URI për file lokal '%s' mund të mos përdorë një '#'"
-#: ../glib/gconvert.c:1761
+#: glib/gconvert.c:1761
#, c-format
msgid "The URI '%s' is invalid"
msgstr "URI '%s' është e pasaktë"
-#: ../glib/gconvert.c:1773
+#: glib/gconvert.c:1773
#, c-format
msgid "The hostname of the URI '%s' is invalid"
msgstr "Emri i host të URI '%s' është i pasaktë"
-#: ../glib/gconvert.c:1789
+#: glib/gconvert.c:1789
#, c-format
msgid "The URI '%s' contains invalidly escaped characters"
msgstr "URI '%s' përmban simbole escape të pavlefshëm"
-#: ../glib/gconvert.c:1884
+#: glib/gconvert.c:1884
#, c-format
msgid "The pathname '%s' is not an absolute path"
msgstr "Pozicioni me emër '%s' nuk është një pozicion absolut"
-#: ../glib/gconvert.c:1894
+#: glib/gconvert.c:1894
msgid "Invalid hostname"
msgstr "Emër host i pasaktë"
-#: ../glib/gdir.c:109 ../glib/gdir.c:129
+#: glib/gdir.c:109 glib/gdir.c:129
#, c-format
msgid "Error opening directory '%s': %s"
msgstr "Gabim gjatë hapjes së directory '%s': %s"
-#: ../glib/gfileutils.c:557 ../glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "I pamundur grumbullimi i %lu bytes për të lexuar file \"%s\""
-#: ../glib/gfileutils.c:572
+#: glib/gfileutils.c:572
#, c-format
msgid "Error reading file '%s': %s"
msgstr "Gabim gjatë leximit të file '%s': %s"
-#: ../glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "I pamundur leximi nga file '%s': %s"
-#: ../glib/gfileutils.c:705 ../glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "E pamundur hapja e file '%s': %s"
-#: ../glib/gfileutils.c:722 ../glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "E pamundur marrja e pronësive të file '%s': fstat() dështoi: %s"
-#: ../glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Dështoi hapja e file '%s': fdopen() dështoi: %s"
# (pofilter) puncspacing: checks for bad spacing after punctuation
-#: ../glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"Ndryshimi i emrit të file nga '%s' në '%s' dështoi: g_rename() dështoi: %s"
-#: ../glib/gfileutils.c:932 ../glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Dështoi krijimi i file '%s': %s"
-#: ../glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Hapja e file '%s' për shkrim dështoi: fdopen() dështoi: %s"
# (pofilter) puncspacing: checks for bad spacing after punctuation
-#: ../glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Shkrimi i file '%s' dështoi: fwrite() dështoi: %s"
# (pofilter) puncspacing: checks for bad spacing after punctuation
-#: ../glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Mbyllja e file '%s' dështoi: fclose() dështoi: %s"
# (pofilter) puncspacing: checks for bad spacing after punctuation
-#: ../glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "E pamundur heqja e file ekzistues '%s': g_unlink() dështoi: %s"
-#: ../glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Shabllon '%s' i pavlefshëm, nuk mund të përmbajë një '%s'"
-#: ../glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Modeli '%s' nuk përmban XXXXXX"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: ../glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "I pamundur leximi i lidhjes simbolike '%s': %s"
-#: ../glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Lidhjet simbolike nuk suportohen"
-#: ../glib/giochannel.c:1162
+#: glib/giochannel.c:1162
#, c-format
msgid "Could not open converter from '%s' to '%s': %s"
msgstr "Nuk arrij të hap konvertuesin nga '%s' në '%s': %s"
-#: ../glib/giochannel.c:1507
+#: glib/giochannel.c:1507
msgid "Can't do a raw read in g_io_channel_read_line_string"
msgstr ""
"I pamundur leximi i të dhënave të papërpunuara tek "
"g_io_channel_read_line_string"
-#: ../glib/giochannel.c:1554 ../glib/giochannel.c:1812
-#: ../glib/giochannel.c:1899
+#: glib/giochannel.c:1554 glib/giochannel.c:1812 glib/giochannel.c:1899
msgid "Leftover unconverted data in read buffer"
msgstr "Kanë tepruar të dhëna të pakonvertuara tek buffer i leximit"
-#: ../glib/giochannel.c:1635 ../glib/giochannel.c:1712
+#: glib/giochannel.c:1635 glib/giochannel.c:1712
msgid "Channel terminates in a partial character"
msgstr "Kanali përfundon me një simbol të pjesëshëm"
-#: ../glib/giochannel.c:1698
+#: glib/giochannel.c:1698
msgid "Can't do a raw read in g_io_channel_read_to_end"
msgstr ""
"I pamundur leximi i të dhënave të papërpunuara tek g_io_channel_read_to_end"
-#: ../glib/gmappedfile.c:116
+#: glib/gmappedfile.c:116
#, c-format
msgid "Failed to open file '%s': open() failed: %s"
msgstr "E pamundur hapja e file '%s': open() dështoi: %s"
-#: ../glib/gmappedfile.c:193
+#: glib/gmappedfile.c:193
#, c-format
msgid "Failed to map file '%s': mmap() failed: %s"
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:269 ../glib/gmarkup.c:285
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Gabim tek rreshti %d simboli %d: "
-#: ../glib/gmarkup.c:379
+#: glib/gmarkup.c:379
#, 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:483
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"U gjet një entitet bosh '&;'; entitetet e vlefshme janë: & " < "
"> '"
-#: ../glib/gmarkup.c:493
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"një entitet; nëse ky simbol nuk do të jetë fillimi i një entiteti, përdore "
"si &"
-#: ../glib/gmarkup.c:527
+#: glib/gmarkup.c:527
#, 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:564
+#: glib/gmarkup.c:564
#, 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:575
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
# (pofilter) puncspacing: checks for bad spacing after punctuation
# (pofilter) sentencecount: The number of sentences differ: 1 versus 2
-#: ../glib/gmarkup.c:628
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"I pamundur analizimi i '%-.*s', duhet të ishte një numër brenda riferimeve "
"të një simboli (p.sh. ê) - ndoshta numri është tepër i madh"
-#: ../glib/gmarkup.c:653
+#: glib/gmarkup.c:653
#, 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:668
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Simbol bosh, duhet të përmbajë një vlerë numerike, si dž"
# (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:678
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"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 & "
-#: ../glib/gmarkup.c:764
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Riferim entiteti i papërfunduar"
-#: ../glib/gmarkup.c:770
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Referim i papërfunduar i simbolit"
-#: ../glib/gmarkup.c:1056
+#: glib/gmarkup.c:1056
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:1084
+#: glib/gmarkup.c:1084
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:1120
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Tekst i kodifikuar UTF-8 i pavlefshëm - '%s' e pavlefshme"
-#: ../glib/gmarkup.c:1158
+#: glib/gmarkup.c:1158
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:1198
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' nuk është një simbol i vlefshëm mbas simbolit '<', nuk mund të fillojë "
"me emrin e një elementi"
-#: ../glib/gmarkup.c:1266
+#: glib/gmarkup.c:1266
#, fuzzy, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the empty-element tag '%"
"U gjet simboli '%s', në pritje të një simboli '>' për të përfunduar tag-un e "
"fillimit të elementit '%s'"
-#: ../glib/gmarkup.c:1355
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"U gjet simboli '%s', përkundrazi pritej një '=' mbas emrit të atributit '%s' "
"të elementit '%s'"
-#: ../glib/gmarkup.c:1397
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"shumë mundësi të keni përdorur një simbol të pavlefshëm tek emri i një "
"atributi"
-#: ../glib/gmarkup.c:1483
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"U gjet simboli '%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:1625
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' nuk është një simbol i vlefshëm mbrapa simboleve '</'; '%s' nuk mund të "
"nisë emrin e një elementi"
-#: ../glib/gmarkup.c:1665
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%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:1676
+#: glib/gmarkup.c:1676
#, 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:1685
+#: glib/gmarkup.c:1685
#, 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:1848
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokumenti ishte bosh apo përmbante vetëm hapësira të bardha"
-#: ../glib/gmarkup.c:1862
+#: glib/gmarkup.c:1862
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:1870 ../glib/gmarkup.c:1915
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Dokumenti u mbyll papritur me elementë akoma të hapur - '%s' ishte elementi "
"i fundit i hapur"
-#: ../glib/gmarkup.c:1878
+#: glib/gmarkup.c:1878
#, 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:1884
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumenti përfundoi papritur në brendësi të emrit të një elementi"
-#: ../glib/gmarkup.c:1890
+#: glib/gmarkup.c:1890
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:1895
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokumenti u mbyll papritur brënda një etikete hapje elementi"
-#: ../glib/gmarkup.c:1901
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Dokumenti u mbyll papritur mbas shenjës së barazimit që vjen mbas emrit të "
"një atributi; atributi nuk ka vlerë"
-#: ../glib/gmarkup.c:1908
+#: glib/gmarkup.c:1908
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:1924
+#: glib/gmarkup.c:1924
#, 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:1930
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokumenti u mbyll papritur në brendësi të një komenti apo instruksioni "
"proçesi"
-#: ../glib/gregex.c:131
+#: glib/gregex.c:131
msgid "corrupted object"
msgstr "objekt i korruptuar"
-#: ../glib/gregex.c:133
+#: glib/gregex.c:133
msgid "internal error or corrupted object"
msgstr "gabim i brendshëm ose objekt i korruptuar"
-#: ../glib/gregex.c:135
+#: glib/gregex.c:135
msgid "out of memory"
msgstr "mbi memorjen"
-#: ../glib/gregex.c:140
+#: glib/gregex.c:140
msgid "backtracking limit reached"
msgstr "u arrit kufiri i backtracking"
# (pofilter) startcaps: checks that the message starts with the correct capitalisation
-#: ../glib/gregex.c:152 ../glib/gregex.c:160
+#: glib/gregex.c:152 glib/gregex.c:160
msgid "the pattern contains items not supported for partial matching"
msgstr "modeli përmban elementë të pasuportuar për korrispondimin e pjesëshëm"
-#: ../glib/gregex.c:154 ../gio/glocalfile.c:1981
+#: glib/gregex.c:154 gio/glocalfile.c:1981
msgid "internal error"
msgstr "gabim i brendshëm"
-#: ../glib/gregex.c:162
+#: glib/gregex.c:162
msgid "back references as conditions are not supported for partial matching"
msgstr ""
"për korrispondimin e pjesëshëm nuk suportohen referimet mbrapsht si kushte"
-#: ../glib/gregex.c:171
+#: glib/gregex.c:171
msgid "recursion limit reached"
msgstr "u arrit kufiri i ndjekjes"
-#: ../glib/gregex.c:173
+#: glib/gregex.c:173
msgid "workspace limit for empty substrings reached"
msgstr "u arrit kufiri i hapësirës së punës pën nënstringa boshe"
-#: ../glib/gregex.c:175
+#: glib/gregex.c:175
msgid "invalid combination of newline flags"
msgstr "kombinim i pavlefshëm i flag të fund'rreshtit"
-#: ../glib/gregex.c:179
+#: glib/gregex.c:179
msgid "unknown error"
msgstr "gabim i panjohur"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:199
+#: glib/gregex.c:199
msgid "\\ at end of pattern"
msgstr "\\ në fund të modelit"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:202
+#: glib/gregex.c:202
msgid "\\c at end of pattern"
msgstr "\\c në fund të modelit"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:205
+#: glib/gregex.c:205
msgid "unrecognized character follows \\"
msgstr "simbol i papërshtatshëm mbas \\"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:212
+#: glib/gregex.c:212
msgid "case-changing escapes (\\l, \\L, \\u, \\U) are not allowed here"
msgstr "ndryshimet gërma të vogla/mëdha nuk (\\l, \\L, \\u, \\U) lejohen këtu"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:215
+#: glib/gregex.c:215
msgid "numbers out of order in {} quantifier"
msgstr "numra jashtë rendit në sasiuesin {}"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:218
+#: glib/gregex.c:218
msgid "number too big in {} quantifier"
msgstr "numër tepër i madh në sasiuesin {}"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
# (pofilter) startcaps: checks that the message starts with the correct capitalisation
# (pofilter) brackets: translation is missing ']'
-#: ../glib/gregex.c:221
+#: glib/gregex.c:221
msgid "missing terminating ] for character class"
msgstr "] përfunduese munguese për klasën e simboleve"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
# (pofilter) startcaps: checks that the message starts with the correct capitalisation
-#: ../glib/gregex.c:224
+#: glib/gregex.c:224
msgid "invalid escape sequence in character class"
msgstr "sekuencë escape e pavlefshme në klasën e simboleve"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:227
+#: glib/gregex.c:227
msgid "range out of order in character class"
msgstr "interval i parregullt në klasën e simboleve"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:230
+#: glib/gregex.c:230
msgid "nothing to repeat"
msgstr "asgjë për tu përsëritur"
# (pofilter) endpunc: checks whether punctuation at the end of the strings match
# (pofilter) startcaps: checks that the message starts with the correct capitalisation
# (pofilter) brackets: translation is missing '('
-#: ../glib/gregex.c:233
+#: glib/gregex.c:233
msgid "unrecognized character after (?"
msgstr "simbol i panjohur mbas (?"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
# (pofilter) startcaps: checks that the message starts with the correct capitalisation
# (pofilter) brackets: translation is missing '('
-#: ../glib/gregex.c:237
+#: glib/gregex.c:237
msgid "unrecognized character after (?<"
msgstr "simbol i panjohur mbas (?<"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
# (pofilter) startcaps: checks that the message starts with the correct capitalisation
# (pofilter) brackets: translation is missing '('
-#: ../glib/gregex.c:241
+#: glib/gregex.c:241
msgid "unrecognized character after (?P"
msgstr "simbol i panjohur mbas (?P"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:244
+#: glib/gregex.c:244
msgid "POSIX named classes are supported only within a class"
msgstr "klasat e përmendura POSIX suportohen vetëm në brendësi të një klase"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:247
+#: glib/gregex.c:247
msgid "missing terminating )"
msgstr ") përfunduese mungon"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:251
+#: glib/gregex.c:251
msgid ") without opening ("
msgstr ") pa ( hapje"
#. translators: '(?R' and '(?[+-]digits' are both meant as (groups of)
#. * sequences here, '(?-54' would be an example for the second group.
#.
-#: ../glib/gregex.c:258
+#: glib/gregex.c:258
msgid "(?R or (?[+-]digits must be followed by )"
msgstr "(?R ose (?[+-]shifra duhet të ndiqet nga )"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:261
+#: glib/gregex.c:261
msgid "reference to non-existent subpattern"
msgstr "riferim ndaj një nën-modeli joekzistues"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:264
+#: glib/gregex.c:264
msgid "missing ) after comment"
msgstr ") mungon mbas komentit"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:267
+#: glib/gregex.c:267
msgid "regular expression too large"
msgstr "shprehje e rregullt tepër e gjatë"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:270
+#: glib/gregex.c:270
msgid "failed to get memory"
msgstr "rekuperimi i memorjes dështoi"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:273
+#: glib/gregex.c:273
msgid "lookbehind assertion is not fixed length"
msgstr "kushti lookbehind nuk ka gjatësi të fiksuar"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:276
+#: glib/gregex.c:276
msgid "malformed number or name after (?("
msgstr "numër apo emër i keqformuar mbas (?("
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:279
+#: glib/gregex.c:279
msgid "conditional group contains more than two branches"
msgstr "grupi kushtëzor përmban më shumë se dy degëzime"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:282
+#: glib/gregex.c:282
msgid "assertion expected after (?("
msgstr "pritej kushti mbas (?("
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:285
+#: glib/gregex.c:285
msgid "unknown POSIX class name"
msgstr "emër i panjohur klase POSIX"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
# (pofilter) acronyms: acronyms should not be translated: POSIX
-#: ../glib/gregex.c:288
+#: glib/gregex.c:288
msgid "POSIX collating elements are not supported"
msgstr "elementët vendosës POSIX nuk suportohen"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:291
+#: glib/gregex.c:291
msgid "character value in \\x{...} sequence is too large"
msgstr "vlera e simbolit në sekuencën \\x{...} është tepër e madhe"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:294
+#: glib/gregex.c:294
msgid "invalid condition (?(0)"
msgstr "kusht (?(0) i pavlefshëm"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:297
+#: glib/gregex.c:297
msgid "\\C not allowed in lookbehind assertion"
msgstr "\\C e palejuar në kushtin lookbehind"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:300
+#: glib/gregex.c:300
msgid "recursive call could loop indefinitely"
msgstr "thirrja rekursive mund të hyjë në loop pafund"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:303
+#: glib/gregex.c:303
msgid "missing terminator in subpattern name"
msgstr "mungon përfunduesi në emrin e nën-modelit"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:306
+#: glib/gregex.c:306
msgid "two named subpatterns have the same name"
msgstr "dy nën-modelet e emërtuar kanë të njëjtin emër"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:309
+#: glib/gregex.c:309
msgid "malformed \\P or \\p sequence"
msgstr "sekuencë \\P ose \\p e keqformuar"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:312
+#: glib/gregex.c:312
msgid "unknown property name after \\P or \\p"
msgstr "emër i panjohur pronësie mbas \\P ose \\p"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:315
+#: glib/gregex.c:315
msgid "subpattern name is too long (maximum 32 characters)"
msgstr "emri i nën-modelit është tepër i gjatë (maksimum 32 simbole)"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:318
+#: glib/gregex.c:318
msgid "too many named subpatterns (maximum 10,000)"
msgstr "emërtuar tepër nën-modele (maksimum 10,000)"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:321
+#: glib/gregex.c:321
msgid "octal value is greater than \\377"
msgstr "vlera tetore është më e madhe se \\377"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:324
+#: glib/gregex.c:324
msgid "DEFINE group contains more than one branch"
msgstr "grupi DEFINE përmban më shumë se një degëzim"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:327
+#: glib/gregex.c:327
msgid "repeating a DEFINE group is not allowed"
msgstr "përsëritja e një grupi DEFINE nuk është e lejuar"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:330
+#: glib/gregex.c:330
msgid "inconsistent NEWLINE options"
msgstr "opsione NEWLINE jokoerente"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:333
+#: glib/gregex.c:333
msgid ""
"\\g is not followed by a braced name or an optionally braced non-zero number"
msgstr ""
"dëshirë në kllapa"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:338
+#: glib/gregex.c:338
msgid "unexpected repeat"
msgstr "përsëritje e papritur"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:342
+#: glib/gregex.c:342
msgid "code overflow"
msgstr "sasi e tepërt kodi"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:346
+#: glib/gregex.c:346
msgid "overran compiling workspace"
msgstr "tejkalim kufir gjatë kompilimit të zonës së punës"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../glib/gregex.c:350
+#: glib/gregex.c:350
msgid "previously-checked referenced subpattern not found"
msgstr "nën-model referues i kontrolluar më parë nuk u gjet"
-#: ../glib/gregex.c:526 ../glib/gregex.c:1593
+#: glib/gregex.c:526 glib/gregex.c:1593
#, c-format
msgid "Error while matching regular expression %s: %s"
msgstr ""
"Gabim gjatë kërkimit të korrispondimeve për shprehjen e rregullt %s: %s"
-#: ../glib/gregex.c:1098
+#: glib/gregex.c:1098
msgid "PCRE library is compiled without UTF8 support"
msgstr "Libraria PCRE është kompiluar pa suportin për UTF8"
-#: ../glib/gregex.c:1107
+#: glib/gregex.c:1107
msgid "PCRE library is compiled without UTF8 properties support"
msgstr "Libraria PCRE është kompiluar pa suportin për pronësitë UTF8"
-#: ../glib/gregex.c:1161
+#: glib/gregex.c:1161
#, c-format
msgid "Error while compiling regular expression %s at char %d: %s"
msgstr "Gabim gjatë kompilimit të shprehjes së rregullt %s tek simboli %d: %s"
-#: ../glib/gregex.c:1197
+#: glib/gregex.c:1197
#, c-format
msgid "Error while optimizing regular expression %s: %s"
msgstr "Gabim gjatë optimizimit të shprehjes së rregullt %s: %s"
-#: ../glib/gregex.c:2021
+#: glib/gregex.c:2021
msgid "hexadecimal digit or '}' expected"
msgstr "pritej një shifër exadecimale ose '}'"
-#: ../glib/gregex.c:2037
+#: glib/gregex.c:2037
msgid "hexadecimal digit expected"
msgstr "pritej një shifër exadecimale"
-#: ../glib/gregex.c:2077
+#: glib/gregex.c:2077
msgid "missing '<' in symbolic reference"
msgstr "mungon '<' në referimin simbolik"
# (pofilter) startcaps: checks that the message starts with the correct capitalisation
-#: ../glib/gregex.c:2086
+#: glib/gregex.c:2086
msgid "unfinished symbolic reference"
msgstr "Riferim simbolik i papërfunduar"
-#: ../glib/gregex.c:2093
+#: glib/gregex.c:2093
msgid "zero-length symbolic reference"
msgstr "referim simbolik me gjatësi zero"
-#: ../glib/gregex.c:2104
+#: glib/gregex.c:2104
msgid "digit expected"
msgstr "pritej një shifër"
-#: ../glib/gregex.c:2122
+#: glib/gregex.c:2122
msgid "illegal symbolic reference"
msgstr "referim simbolik i palejuar"
# (pofilter) startpunc: checks whether punctuation at the beginning of the strings match
-#: ../glib/gregex.c:2184
+#: glib/gregex.c:2184
msgid "stray final '\\'"
msgstr "'\\' në fund e izoluar"
-#: ../glib/gregex.c:2188
+#: glib/gregex.c:2188
msgid "unknown escape sequence"
msgstr "sekuencë e panjohur escape"
-#: ../glib/gregex.c:2198
+#: glib/gregex.c:2198
#, c-format
msgid "Error while parsing replacement text \"%s\" at char %lu: %s"
msgstr ""
"Gabim gjatë analizimit të tekstit zëvendësues \"%s\" tek simboli %lu: %s"
-#: ../glib/gshell.c:70
+#: glib/gshell.c:70
#, c-format
msgid "Quoted text doesn't begin with a quotation mark"
msgstr "Teksti i kuotuar nuk fillon me shenjën e kuotimit"
-#: ../glib/gshell.c:160
+#: glib/gshell.c:160
#, c-format
msgid "Unmatched quotation mark in command line or other shell-quoted text"
msgstr ""
"kuotuar nga shell"
# (pofilter) puncspacing: checks for bad spacing after punctuation
-#: ../glib/gshell.c:538
+#: glib/gshell.c:538
#, c-format
msgid "Text ended just after a '\\' character. (The text was '%s')"
msgstr "Teksti përfundoi menjëherë pas një simboli '\\'. (Teksti ishte '%s')"
-#: ../glib/gshell.c:545
+#: glib/gshell.c:545
#, c-format
msgid "Text ended before matching quote was found for %c. (The text was '%s')"
msgstr ""
"Teksti përfundoi përpara se të gjente tekstin e kërkuar për %c. (Teksti "
"ishte '%s')"
-#: ../glib/gshell.c:557
+#: glib/gshell.c:557
msgid "Text was empty (or contained only whitespace)"
msgstr "Teksti është bosh (ose përmban vetëm hapsira të bardha)"
-#: ../glib/gspawn-win32.c:279
+#: glib/gspawn-win32.c:279
msgid "Failed to read data from child process"
msgstr "I pamundur leximi i të dhënave nga proçesi bir"
-#: ../glib/gspawn-win32.c:294 ../glib/gspawn.c:1467
+#: glib/gspawn-win32.c:294 glib/gspawn.c:1467
#, c-format
msgid "Failed to create pipe for communicating with child process (%s)"
msgstr "I pamundur krijimi i pipe për të komunikuar me proçesin bir (%s)"
-#: ../glib/gspawn-win32.c:332 ../glib/gspawn-win32.c:340 ../glib/gspawn.c:1131
+#: glib/gspawn-win32.c:332 glib/gspawn-win32.c:340 glib/gspawn.c:1131
#, c-format
msgid "Failed to read from child pipe (%s)"
msgstr "I pamundur leximi nga pipe bijë (%s)"
-#: ../glib/gspawn-win32.c:363 ../glib/gspawn.c:1336
+#: glib/gspawn-win32.c:363 glib/gspawn.c:1336
#, c-format
msgid "Failed to change to directory '%s' (%s)"
msgstr "I pamundur ndryshimi i directory në '%s' (%s)"
-#: ../glib/gspawn-win32.c:369 ../glib/gspawn-win32.c:493
+#: glib/gspawn-win32.c:369 glib/gspawn-win32.c:493
#, c-format
msgid "Failed to execute child process (%s)"
msgstr "I pamundur ekzekutimi i proçesit bir (%s)"
-#: ../glib/gspawn-win32.c:440
+#: glib/gspawn-win32.c:440
#, c-format
msgid "Invalid program name: %s"
msgstr "Emër i pasaktë programi: %s"
-#: ../glib/gspawn-win32.c:450 ../glib/gspawn-win32.c:723
-#: ../glib/gspawn-win32.c:1282
+#: glib/gspawn-win32.c:450 glib/gspawn-win32.c:723 glib/gspawn-win32.c:1282
#, c-format
msgid "Invalid string in argument vector at %d: %s"
msgstr "Vlerë e pasaktë në vektorin e argumentit tek %d: %s"
-#: ../glib/gspawn-win32.c:461 ../glib/gspawn-win32.c:738
-#: ../glib/gspawn-win32.c:1315
+#: glib/gspawn-win32.c:461 glib/gspawn-win32.c:738 glib/gspawn-win32.c:1315
#, c-format
msgid "Invalid string in environment: %s"
msgstr "Vlerë e pavlefshme në ambient: %s"
-#: ../glib/gspawn-win32.c:719 ../glib/gspawn-win32.c:1263
+#: glib/gspawn-win32.c:719 glib/gspawn-win32.c:1263
#, c-format
msgid "Invalid working directory: %s"
msgstr "Directory e pavlefshme pune: %s"
-#: ../glib/gspawn-win32.c:787
+#: glib/gspawn-win32.c:787
#, c-format
msgid "Failed to execute helper program (%s)"
msgstr "I pamundur ekzekutimi i programit ndihmues (%s)"
# (pofilter) doublewords: The word 'të' is repeated
-#: ../glib/gspawn-win32.c:1002
+#: glib/gspawn-win32.c:1002
msgid ""
"Unexpected error in g_io_channel_win32_poll() reading data from a child "
"process"
"Gabim i papritur në g_io_channel_win32_poll() gjatë leximit të të dhënave "
"nga një proçes bir"
-#: ../glib/gspawn.c:188
+#: glib/gspawn.c:188
#, c-format
msgid "Failed to read data from child process (%s)"
msgstr "I pamundur leximi i të dhënave nga proçesi bir (%s)"
# (pofilter) doublewords: The word 'të' is repeated
-#: ../glib/gspawn.c:325
+#: glib/gspawn.c:325
#, c-format
msgid "Unexpected error in select() reading data from a child process (%s)"
msgstr ""
"Gabim i papritur në select() gjatë leximit të të dhënave nga një proçes bir "
"(%s)"
-#: ../glib/gspawn.c:408
+#: glib/gspawn.c:408
#, c-format
msgid "Unexpected error in waitpid() (%s)"
msgstr "Gabim i papritur në waitpid() (%s)"
-#: ../glib/gspawn.c:1196
+#: glib/gspawn.c:1196
#, c-format
msgid "Failed to fork (%s)"
msgstr "E pamundur kryerja e fork (%s)"
-#: ../glib/gspawn.c:1346
+#: glib/gspawn.c:1346
#, c-format
msgid "Failed to execute child process \"%s\" (%s)"
msgstr "I pamundur zbatimi i proçesit bir \"%s\" (%s)"
-#: ../glib/gspawn.c:1356
+#: glib/gspawn.c:1356
#, c-format
msgid "Failed to redirect output or input of child process (%s)"
msgstr ""
"I pamundur ridrejtimi i të dhënave në hyrje apo dalje të proçesit bir (%s)"
-#: ../glib/gspawn.c:1365
+#: glib/gspawn.c:1365
#, c-format
msgid "Failed to fork child process (%s)"
msgstr "E pamundur kryerja e fork për proçesin bir (%s)"
-#: ../glib/gspawn.c:1373
+#: glib/gspawn.c:1373
#, c-format
msgid "Unknown error executing child process \"%s\""
msgstr "Gabim i panjohur gjatë ekzekutimit të proçesit bir \"%s\""
-#: ../glib/gspawn.c:1395
+#: glib/gspawn.c:1395
#, c-format
msgid "Failed to read enough data from child pid pipe (%s)"
msgstr ""
"I pamundur leximi i një sasie të dhënash të mjaftueshme nga pid pipe bir (%s)"
-#: ../glib/gutf8.c:1030
+#: glib/gutf8.c:1030
msgid "Character out of range for UTF-8"
msgstr "Simboli nuk ekziston në UTF-8"
-#: ../glib/gutf8.c:1124 ../glib/gutf8.c:1133 ../glib/gutf8.c:1265
-#: ../glib/gutf8.c:1274 ../glib/gutf8.c:1415 ../glib/gutf8.c:1511
+#: glib/gutf8.c:1124 glib/gutf8.c:1133 glib/gutf8.c:1265 glib/gutf8.c:1274
+#: glib/gutf8.c:1415 glib/gutf8.c:1511
msgid "Invalid sequence in conversion input"
msgstr "Sekuencë e pavlefshme në hyrje për konvertimin"
-#: ../glib/gutf8.c:1426 ../glib/gutf8.c:1522
+#: glib/gutf8.c:1426 glib/gutf8.c:1522
msgid "Character out of range for UTF-16"
msgstr "Simboli nuk ekziston në UTF-16"
-#: ../glib/goption.c:615
+#: glib/goption.c:615
msgid "Usage:"
msgstr "Përdorimi:"
# (pofilter) acronyms: acronyms should not be translated: OPTION
-#: ../glib/goption.c:615
+#: glib/goption.c:615
msgid "[OPTION...]"
msgstr "[OPSIONI...]"
-#: ../glib/goption.c:719
+#: glib/goption.c:719
msgid "Help Options:"
msgstr "Opcionet e ndihmës:"
-#: ../glib/goption.c:720
+#: glib/goption.c:720
msgid "Show help options"
msgstr "Shfaq opcionet e ndihmës"
-#: ../glib/goption.c:726
+#: glib/goption.c:726
msgid "Show all help options"
msgstr "Shfaq të gjithë opcionet e ndihmës"
-#: ../glib/goption.c:788
+#: glib/goption.c:788
msgid "Application Options:"
msgstr "Opcionet e programit:"
-#: ../glib/goption.c:849 ../glib/goption.c:919
+#: glib/goption.c:849 glib/goption.c:919
#, 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:859 ../glib/goption.c:927
+#: glib/goption.c:859 glib/goption.c:927
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "Vlera integruese '%s' për %s është jashtë kufirit"
-#: ../glib/goption.c:884
+#: glib/goption.c:884
#, 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:892
+#: glib/goption.c:892
#, 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:1229
+#: glib/goption.c:1229
#, c-format
msgid "Error parsing option %s"
msgstr "Gabim gjatë analizimit të opsionit %s"
-#: ../glib/goption.c:1260 ../glib/goption.c:1371
+#: glib/goption.c:1260 glib/goption.c:1371
#, c-format
msgid "Missing argument for %s"
msgstr "Mungojnë argumentë për %s"
-#: ../glib/goption.c:1766
+#: glib/goption.c:1766
#, c-format
msgid "Unknown option %s"
msgstr "Opcion i panjohur %s"
-#: ../glib/gkeyfile.c:358
+#: glib/gkeyfile.c:358
msgid "Valid key file could not be found in search dirs"
msgstr "Nuk u gjet asnjë file i vlefshëm kyçi tek directory e kërkimit"
-#: ../glib/gkeyfile.c:393
+#: glib/gkeyfile.c:393
msgid "Not a regular file"
msgstr "Nuk është një file i rregullt"
-#: ../glib/gkeyfile.c:401
+#: glib/gkeyfile.c:401
msgid "File is empty"
msgstr "File është bosh"
-#: ../glib/gkeyfile.c:761
+#: glib/gkeyfile.c:761
#, c-format
msgid ""
"Key file contains line '%s' which is not a key-value pair, group, or comment"
msgstr ""
"Kyçi përmban rreshtin '%s' që nuk është një vlerë çift, grup apo koment kyçi"
-#: ../glib/gkeyfile.c:821
+#: glib/gkeyfile.c:821
#, c-format
msgid "Invalid group name: %s"
msgstr "Emër i pasaktë grupi: %s"
-#: ../glib/gkeyfile.c:843
+#: glib/gkeyfile.c:843
msgid "Key file does not start with a group"
msgstr "File i kyçit nuk fillon me një grup"
-#: ../glib/gkeyfile.c:869
+#: glib/gkeyfile.c:869
#, c-format
msgid "Invalid key name: %s"
msgstr "Emër i pasaktë kyçi: %s"
-#: ../glib/gkeyfile.c:896
+#: glib/gkeyfile.c:896
#, c-format
msgid "Key file contains unsupported encoding '%s'"
msgstr "File i kyçit përmban kodifikimin e pasuportuar '%s'"
-#: ../glib/gkeyfile.c:1112 ../glib/gkeyfile.c:1272 ../glib/gkeyfile.c:2490
-#: ../glib/gkeyfile.c:2558 ../glib/gkeyfile.c:2693 ../glib/gkeyfile.c:2828
-#: ../glib/gkeyfile.c:2981 ../glib/gkeyfile.c:3168 ../glib/gkeyfile.c:3229
+#: glib/gkeyfile.c:1112 glib/gkeyfile.c:1272 glib/gkeyfile.c:2490
+#: glib/gkeyfile.c:2558 glib/gkeyfile.c:2693 glib/gkeyfile.c:2828
+#: glib/gkeyfile.c:2981 glib/gkeyfile.c:3168 glib/gkeyfile.c:3229
#, c-format
msgid "Key file does not have group '%s'"
msgstr "File i kyçit nuk ka grupin '%s'"
-#: ../glib/gkeyfile.c:1284
+#: glib/gkeyfile.c:1284
#, c-format
msgid "Key file does not have key '%s'"
msgstr "File i kyçit nuk përmban kyçin '%s'"
-#: ../glib/gkeyfile.c:1386 ../glib/gkeyfile.c:1499
+#: glib/gkeyfile.c:1386 glib/gkeyfile.c:1499
#, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "File i kyçit përmban kyçin '%s' me vlerë '%s' që nuk është në UTF-8"
-#: ../glib/gkeyfile.c:1406 ../glib/gkeyfile.c:1519 ../glib/gkeyfile.c:1894
+#: glib/gkeyfile.c:1406 glib/gkeyfile.c:1519 glib/gkeyfile.c:1894
#, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "File i kyçit përmban kyçin '%s' që ka një vlerë të painterpretueshme."
-#: ../glib/gkeyfile.c:2109 ../glib/gkeyfile.c:2321
+#: glib/gkeyfile.c:2109 glib/gkeyfile.c:2321
#, c-format
msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be "
"File i kyçit përmban kyçin '%s' në grupin '%s' që ka një vlerë të "
"painterpretueshme."
-#: ../glib/gkeyfile.c:2505 ../glib/gkeyfile.c:2708 ../glib/gkeyfile.c:3240
+#: glib/gkeyfile.c:2505 glib/gkeyfile.c:2708 glib/gkeyfile.c:3240
#, c-format
msgid "Key file does not have key '%s' in group '%s'"
msgstr "File i kyçit nuk ka kyçin '%s' në grupin '%s'"
-#: ../glib/gkeyfile.c:3474
+#: glib/gkeyfile.c:3474
msgid "Key file contains escape character at end of line"
msgstr "File i kyçit përmban simbolin escape në fund të rreshtit"
-#: ../glib/gkeyfile.c:3496
+#: glib/gkeyfile.c:3496
#, c-format
msgid "Key file contains invalid escape sequence '%s'"
msgstr "File i kyçit përmban sekuencën e pavlefshme escape '%s'"
-#: ../glib/gkeyfile.c:3638
+#: glib/gkeyfile.c:3638
#, c-format
msgid "Value '%s' cannot be interpreted as a number."
msgstr "Vlera '%s' nuk mund të interpretohet si një numër."
-#: ../glib/gkeyfile.c:3652
+#: glib/gkeyfile.c:3652
#, c-format
msgid "Integer value '%s' out of range"
msgstr "Vlera integruese '%s' është jashtë kufirit"
-#: ../glib/gkeyfile.c:3685
+#: glib/gkeyfile.c:3685
#, c-format
msgid "Value '%s' cannot be interpreted as a float number."
msgstr "Vlera '%s' nuk mund të interpretohet si një numër float."
-#: ../glib/gkeyfile.c:3709
+#: glib/gkeyfile.c:3709
#, c-format
msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "Vlera '%s' nuk mund të interpretohet si një boolean."
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gbufferedinputstream.c:485 ../gio/ginputstream.c:187
-#: ../gio/ginputstream.c:319 ../gio/ginputstream.c:560
-#: ../gio/ginputstream.c:685 ../gio/goutputstream.c:195
-#: ../gio/goutputstream.c:649
+#: gio/gbufferedinputstream.c:485 gio/ginputstream.c:187
+#: gio/ginputstream.c:319 gio/ginputstream.c:560 gio/ginputstream.c:685
+#: gio/goutputstream.c:195 gio/goutputstream.c:649
#, c-format
msgid "Too large count value passed to %s"
msgstr "Vlerë count tepër e madhe kaluar tek %s"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gbufferedinputstream.c:872 ../gio/ginputstream.c:895
-#: ../gio/goutputstream.c:1078
+#: gio/gbufferedinputstream.c:872 gio/ginputstream.c:895
+#: gio/goutputstream.c:1078
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:295 ../gio/glocalfile.c:1974
-#: ../gio/gsimpleasyncresult.c:612
+#: gio/gcancellable.c:295 gio/glocalfile.c:1974 gio/gsimpleasyncresult.c:612
msgid "Operation was cancelled"
msgstr "Operacioni është anulluar"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
# (pofilter) startcaps: checks that the message starts with the correct capitalisation
-#: ../gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Lloj i panjohur"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "Lloj file %s"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "Lloj %s"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gdatainputstream.c:310
+#: gio/gdatainputstream.c:310
msgid "Unexpected early end-of-stream"
msgstr "End-of-stream i parakohshëm papritur"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gdesktopappinfo.c:429 ../gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Paemër"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gdesktopappinfo.c:606
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "File .desktop nuk specifikon fushën Exec"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gdesktopappinfo.c:900
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "E pamundur gjetja e terminalit të kërkuar nga aplikativi"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gdesktopappinfo.c:1132
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
"(%s): %s"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gdesktopappinfo.c:1136
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
"E pamundur gjetja e kartelës së përdoruesit për konfigurimin MIME (%s): %s"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gdesktopappinfo.c:1475
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "I pamundur krijimi i file .desktop të përdoruesit %s"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gdesktopappinfo.c:1550
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Përcaktimi i personalizuar për %s"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "njësia nuk suporton nxjerrjen jashtë"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "njësia nuk suporton shqyrtimin e suporteve"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
-#: ../gio/gfile.c:824 ../gio/gfile.c:1054 ../gio/gfile.c:1189
-#: ../gio/gfile.c:1425 ../gio/gfile.c:1479 ../gio/gfile.c:1536
-#: ../gio/gfile.c:1619 ../gio/gfile.c:2680 ../gio/gfile.c:2731
-#: ../gio/gfile.c:2859 ../gio/gfile.c:2899 ../gio/gfile.c:3226
-#: ../gio/gfile.c:3628 ../gio/gfile.c:3712 ../gio/gfile.c:3795
-#: ../gio/gfile.c:3875
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Veprimi nuk suportohet"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: ../gio/gfile.c:1310 ../gio/glocalfile.c:1064 ../gio/glocalfile.c:1075
-#: ../gio/glocalfile.c:1088
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Objekti mount i përmbajtur nuk ekziston"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gfile.c:1962 ../gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "I pamundur kopjimi mbi directory"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gfile.c:2022
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "I pamundur kopjimi i directory mbi directory"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gfile.c:2030 ../gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "File objektiv ekziston"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gfile.c:2048
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "I pamundur kopjimi rekursiv i directory"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gfile.c:2849
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Dhënë vlerë e pavlefshme lidhje simbolike"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
-#: ../gio/gfile.c:2942
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Koshi nuk suportohet"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gfile.c:2991
+#: gio/gfile.c:2992
#, c-format
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:4961 ../gio/gvolume.c:369
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "Volumi nuk suporton montimin"
# (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/gfile.c:5069
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Nuk rezulton i regjistruar asnjë aplikativ për të manazhuar këtë file"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gfileenumerator.c:205
+#: gio/gfileenumerator.c:205
msgid "Enumerator is closed"
msgstr "Enumuruesi është mbyllur"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gfileenumerator.c:212 ../gio/gfileenumerator.c:271
-#: ../gio/gfileenumerator.c:371 ../gio/gfileenumerator.c:480
+#: gio/gfileenumerator.c:212 gio/gfileenumerator.c:271
+#: gio/gfileenumerator.c:371 gio/gfileenumerator.c:480
msgid "File enumerator has outstanding operation"
msgstr "Enumuruesi i file prezanton një operacion të papërfunduar"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gfileenumerator.c:361 ../gio/gfileenumerator.c:470
+#: gio/gfileenumerator.c:361 gio/gfileenumerator.c:470
msgid "File enumerator is already closed"
msgstr "Enumuruesi i file është rregullisht i mbyllur"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gfileinputstream.c:157 ../gio/gfileinputstream.c:424
-#: ../gio/gfileoutputstream.c:171 ../gio/gfileoutputstream.c:526
+#: gio/gfileinputstream.c:157 gio/gfileinputstream.c:424
+#: gio/gfileoutputstream.c:171 gio/gfileoutputstream.c:526
msgid "Stream doesn't support query_info"
msgstr "Stream nuk suporton query_info"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gfileinputstream.c:339 ../gio/gfileoutputstream.c:384
+#: gio/gfileinputstream.c:339 gio/gfileoutputstream.c:384
msgid "Seek not supported on stream"
msgstr "Pikëvendosja nuk suportohet në stream"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gfileinputstream.c:383
+#: gio/gfileinputstream.c:383
msgid "Truncate not allowed on input stream"
msgstr "Ndërprerja nuk suportohet tek stream në hyrje"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gfileoutputstream.c:460
+#: gio/gfileoutputstream.c:460
msgid "Truncate not supported on stream"
msgstr "Ndërprerja nuk suportohet tek stream"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/ginputstream.c:196
+#: gio/ginputstream.c:196
msgid "Input stream doesn't implement read"
msgstr "Stream i input nuk suporton leximin"
#. Translators: This is an error you get if there is
#. * already an operation running against this stream when
#. * you try to start one
-#: ../gio/ginputstream.c:905 ../gio/goutputstream.c:1088
+#: gio/ginputstream.c:905 gio/goutputstream.c:1088
msgid "Stream has outstanding operation"
msgstr "Stream prezanton një operacion në pritje"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocaldirectorymonitor.c:274
+#: gio/glocaldirectorymonitor.c:274
msgid "Unable to find default local directory monitor type"
msgstr ""
"E pamundur gjetja e llojit të monitorit të paracaktuar për directory lokale"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
-#: ../gio/glocalfile.c:601
+#: gio/glocalfile.c:601
#, c-format
msgid "Invalid filename %s"
msgstr "Emër file i pasaktë %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/glocalfile.c:972
+#: gio/glocalfile.c:972
#, c-format
msgid "Error getting filesystem info: %s"
msgstr "Gabim gjatë marrjes së informacioneve mbi file të sistemit: %s"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocalfile.c:1108
+#: gio/glocalfile.c:1108
msgid "Can't rename root directory"
msgstr "I pamundur riemërtimi i directory root"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocalfile.c:1126
+#: gio/glocalfile.c:1126
msgid "Can't rename file, filename already exist"
msgstr "I pamundur riemërtimi i file, emër ekzistues file"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
-#: ../gio/glocalfile.c:1139 ../gio/glocalfile.c:2003 ../gio/glocalfile.c:2032
-#: ../gio/glocalfile.c:2186 ../gio/glocalfileoutputstream.c:472
-#: ../gio/glocalfileoutputstream.c:517 ../gio/glocalfileoutputstream.c:925
+#: gio/glocalfile.c:1139 gio/glocalfile.c:2003 gio/glocalfile.c:2032
+#: gio/glocalfile.c:2186 gio/glocalfileoutputstream.c:472
+#: gio/glocalfileoutputstream.c:517 gio/glocalfileoutputstream.c:925
msgid "Invalid filename"
msgstr "Emër i pavlefshëm file"
# (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/glocalfile.c:1143
+#: gio/glocalfile.c:1143
#, c-format
msgid "Error renaming file: %s"
msgstr "Gabim gjatë ndryshimit të emrit të file: %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/glocalfile.c:1262
+#: gio/glocalfile.c:1262
#, c-format
msgid "Error opening file: %s"
msgstr "Gabim gjatë hapjes së file: %s"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocalfile.c:1272
+#: gio/glocalfile.c:1272
msgid "Can't open directory"
msgstr "E pamundur hapja e directory"
# (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/glocalfile.c:1332
+#: gio/glocalfile.c:1332
#, c-format
msgid "Error removing file: %s"
msgstr "Gabim gjatë fshirjes së file: %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/glocalfile.c:1696
+#: gio/glocalfile.c:1696
#, c-format
msgid "Error trashing file: %s"
msgstr "Gabim gjatë hedhjes në kosh të file: %s"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
# (pofilter) singlequoting: checks whether singlequoting is consistent between the two strings
-#: ../gio/glocalfile.c:1719
+#: gio/glocalfile.c:1719
#, c-format
msgid "Unable to create trash dir %s: %s"
msgstr "I pamundur krijimi i directory koshit \"%s\": %s"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocalfile.c:1740
+#: gio/glocalfile.c:1740
msgid "Unable to find toplevel directory for trash"
msgstr "E pamundur gjetja e directory së sipërme për koshin"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocalfile.c:1819 ../gio/glocalfile.c:1839
+#: gio/glocalfile.c:1819 gio/glocalfile.c:1839
msgid "Unable to find or create trash directory"
msgstr "I pamundur krijimi apo gjetja e directory të koshit"
# (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/glocalfile.c:1873
+#: gio/glocalfile.c:1873
#, c-format
msgid "Unable to create trashing info file: %s"
msgstr "I pamundur krijimi i një file me informacionet e hedhjes në kosh: %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/glocalfile.c:1898 ../gio/glocalfile.c:1973 ../gio/glocalfile.c:1980
+#: gio/glocalfile.c:1898 gio/glocalfile.c:1973 gio/glocalfile.c:1980
#, c-format
msgid "Unable to trash file: %s"
msgstr "E pamundur hedhja në kosh e file: %s"
# (pofilter) variables: translation contains variables not in original: %s, %s
-#: ../gio/glocalfile.c:2007
+#: gio/glocalfile.c:2007
#, c-format
msgid "Error creating directory: %s"
msgstr "Gabim gjatë krijimit të directory: %s"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
-#: ../gio/glocalfile.c:2036
+#: gio/glocalfile.c:2036
#, c-format
msgid "Error making symbolic link: %s"
msgstr "Gabim gjatë krijimit të lidhjes simbolike: %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/glocalfile.c:2096 ../gio/glocalfile.c:2190
+#: gio/glocalfile.c:2096 gio/glocalfile.c:2190
#, c-format
msgid "Error moving file: %s"
msgstr "Gabim gjatë lëvizjes së file: %s"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocalfile.c:2119
+#: gio/glocalfile.c:2119
msgid "Can't move directory over directory"
msgstr "E pamundur lëvizja e directory mbi directory"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocalfile.c:2146 ../gio/glocalfileoutputstream.c:777
-#: ../gio/glocalfileoutputstream.c:791 ../gio/glocalfileoutputstream.c:806
-#: ../gio/glocalfileoutputstream.c:822 ../gio/glocalfileoutputstream.c:836
+#: gio/glocalfile.c:2146 gio/glocalfileoutputstream.c:777
+#: gio/glocalfileoutputstream.c:791 gio/glocalfileoutputstream.c:806
+#: gio/glocalfileoutputstream.c:822 gio/glocalfileoutputstream.c:836
msgid "Backup file creation failed"
msgstr "Krijimi i file backup dështoi"
# (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/glocalfile.c:2165
+#: gio/glocalfile.c:2165
#, c-format
msgid "Error removing target file: %s"
msgstr "Gabim gjatë heqjes së file objektiv: %s"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocalfile.c:2179
+#: gio/glocalfile.c:2179
msgid "Move between mounts not supported"
msgstr "Lëvizja midis objekteve mount nuk suportohet"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocalfileinfo.c:716
+#: gio/glocalfileinfo.c:716
msgid "Attribute value must be non-NULL"
msgstr "Vlera e atributit duhet të jetë jo-NULL"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocalfileinfo.c:723
+#: gio/glocalfileinfo.c:723
msgid "Invalid attribute type (string expected)"
msgstr "Lloj i pasaktë atributi (pritej string)"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
-#: ../gio/glocalfileinfo.c:730
+#: gio/glocalfileinfo.c:730
msgid "Invalid extended attribute name"
msgstr "Emër i pavlefshëm atributi të zgjeruar"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
-#: ../gio/glocalfileinfo.c:770
+#: gio/glocalfileinfo.c:770
#, c-format
msgid "Error setting extended attribute '%s': %s"
msgstr "Gabim gjatë caktimit të atributit të zgjeruar '%s': %s"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
-#: ../gio/glocalfileinfo.c:1456 ../gio/glocalfileoutputstream.c:666
+#: gio/glocalfileinfo.c:1456 gio/glocalfileoutputstream.c:666
#, c-format
msgid "Error stating file '%s': %s"
msgstr "E pamundur kryerja e stat të file '%s': %s"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocalfileinfo.c:1526
+#: gio/glocalfileinfo.c:1526
msgid " (invalid encoding)"
msgstr " (kodifikim i pavlefshëm)"
# (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/glocalfileinfo.c:1696
+#: gio/glocalfileinfo.c:1696
#, c-format
msgid "Error stating file descriptor: %s"
msgstr "Gabim gjatë kryerjes së stat të përshkruesit të file: %s"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocalfileinfo.c:1741
+#: gio/glocalfileinfo.c:1741
msgid "Invalid attribute type (uint32 expected)"
msgstr "Lloj i pasaktë atributi (pritej uint32)"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocalfileinfo.c:1759
+#: gio/glocalfileinfo.c:1759
msgid "Invalid attribute type (uint64 expected)"
msgstr "Lloj i pasaktë atributi (pritej uint64)"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocalfileinfo.c:1778
+#: gio/glocalfileinfo.c:1778
msgid "Invalid attribute type (byte string expected)"
msgstr "Lloj i pasaktë atributi (pritej byte string)"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
-#: ../gio/glocalfileinfo.c:1804
+#: gio/glocalfileinfo.c:1804
#, c-format
msgid "Error setting permissions: %s"
msgstr "Gabim gjatë caktimit të së drejtave: %s"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
-#: ../gio/glocalfileinfo.c:1855 ../gio/glocalfileinfo.c:2023
+#: gio/glocalfileinfo.c:1855 gio/glocalfileinfo.c:2023
#, c-format
msgid "Error setting owner: %s"
msgstr "Gabim gjatë caktimit të pronarit: %s"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocalfileinfo.c:1878
+#: gio/glocalfileinfo.c:1878
msgid "symlink must be non-NULL"
msgstr "symlink duhet të jetë jo-NULL"
# (pofilter) variables: translation contains variables not in original: %d
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
# (pofilter) printf: checks whether printf format strings match
-#: ../gio/glocalfileinfo.c:1888 ../gio/glocalfileinfo.c:1907
-#: ../gio/glocalfileinfo.c:1918
+#: gio/glocalfileinfo.c:1888 gio/glocalfileinfo.c:1907
+#: gio/glocalfileinfo.c:1918
#, c-format
msgid "Error setting symlink: %s"
msgstr "Gabim gjatë caktimit të symlink: %s"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocalfileinfo.c:1897
+#: gio/glocalfileinfo.c:1897
msgid "Error setting symlink: file is not a symlink"
msgstr "Gabim gjatë caktimit të symlink: file nuk është një lidhje simbolike"
# (pofilter) variables: do not translate: %s
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
# (pofilter) printf: checks whether printf format strings match
-#: ../gio/glocalfileinfo.c:2078
+#: gio/glocalfileinfo.c:2078
#, c-format
msgid "Setting attribute %s not supported"
msgstr "Caktimi i atributit %s nuk suportohet"
# (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/glocalfileinputstream.c:160 ../gio/glocalfileoutputstream.c:570
+#: gio/glocalfileinputstream.c:160 gio/glocalfileoutputstream.c:570
#, c-format
msgid "Error reading from file: %s"
msgstr "Gabim gjatë leximit nga file: %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/glocalfileinputstream.c:191 ../gio/glocalfileinputstream.c:203
-#: ../gio/glocalfileinputstream.c:312 ../gio/glocalfileoutputstream.c:372
-#: ../gio/glocalfileoutputstream.c:854
+#: gio/glocalfileinputstream.c:191 gio/glocalfileinputstream.c:203
+#: gio/glocalfileinputstream.c:312 gio/glocalfileoutputstream.c:372
+#: gio/glocalfileoutputstream.c:854
#, c-format
msgid "Error seeking in file: %s"
msgstr "Gabim gjatë pikëvendosjes në brendësi të file: %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/glocalfileinputstream.c:233 ../gio/glocalfileoutputstream.c:279
+#: gio/glocalfileinputstream.c:233 gio/glocalfileoutputstream.c:279
#, c-format
msgid "Error closing file: %s"
msgstr "Gabim gjatë mbylljes së file: %s"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocalfilemonitor.c:198
+#: gio/glocalfilemonitor.c:198
msgid "Unable to find default local file monitor type"
msgstr "E pamundur gjetja e llojit të monitorit të paracaktuar për file lokalë"
# (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/glocalfileoutputstream.c:172 ../gio/glocalfileoutputstream.c:591
+#: gio/glocalfileoutputstream.c:172 gio/glocalfileoutputstream.c:591
#, c-format
msgid "Error writing to file: %s"
msgstr "Gabim gjatë shkrimit tek file: %s"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
-#: ../gio/glocalfileoutputstream.c:213
+#: gio/glocalfileoutputstream.c:213
#, c-format
msgid "Error removing old backup link: %s"
msgstr "Gabim gjatë heqjes së lidhjes së vjetër të backup: %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/glocalfileoutputstream.c:227 ../gio/glocalfileoutputstream.c:240
+#: gio/glocalfileoutputstream.c:227 gio/glocalfileoutputstream.c:240
#, c-format
msgid "Error creating backup copy: %s"
msgstr "Gabim gjatë krijimit të kopjes së backup: %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/glocalfileoutputstream.c:258
+#: gio/glocalfileoutputstream.c:258
#, c-format
msgid "Error renaming temporary file: %s"
msgstr "Gabim gjatë riemërtimit të përkohshëm të file: %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/glocalfileoutputstream.c:418 ../gio/glocalfileoutputstream.c:871
+#: gio/glocalfileoutputstream.c:418 gio/glocalfileoutputstream.c:871
#, c-format
msgid "Error truncating file: %s"
msgstr "Gabim gjatë ndarjes së file: %s"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
-#: ../gio/glocalfileoutputstream.c:478 ../gio/glocalfileoutputstream.c:523
-#: ../gio/glocalfileoutputstream.c:654 ../gio/glocalfileoutputstream.c:931
+#: gio/glocalfileoutputstream.c:478 gio/glocalfileoutputstream.c:523
+#: gio/glocalfileoutputstream.c:654 gio/glocalfileoutputstream.c:931
#, c-format
msgid "Error opening file '%s': %s"
msgstr "Gabim gjatë hapjes së file '%s': %s"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocalfileoutputstream.c:679
+#: gio/glocalfileoutputstream.c:679
msgid "Target file is a directory"
msgstr "File objektiv është një directory"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
-#: ../gio/glocalfileoutputstream.c:684
+#: gio/glocalfileoutputstream.c:684
msgid "Target file is not a regular file"
msgstr "File objektiv nuk është një file i rregullt"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/glocalfileoutputstream.c:696
+#: gio/glocalfileoutputstream.c:696
msgid "The file was externally modified"
msgstr "File është ndryshuar nga jashtë"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gmemoryinputstream.c:487 ../gio/gmemoryoutputstream.c:545
+#: gio/gmemoryinputstream.c:487 gio/gmemoryoutputstream.c:545
msgid "Invalid GSeekType supplied"
msgstr "Dhënë GSeekType i pavlefshëm"
# (pofilter) variables: translation contains variables not in original: %s
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
# (pofilter) printf: checks whether printf format strings match
-#: ../gio/gmemoryinputstream.c:497 ../gio/gmemoryoutputstream.c:555
+#: gio/gmemoryinputstream.c:497 gio/gmemoryoutputstream.c:555
msgid "Invalid seek request"
msgstr "Kërkesë pikëvendosje e pavlefshme"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gmemoryinputstream.c:521
+#: gio/gmemoryinputstream.c:521
msgid "Cannot truncate GMemoryInputStream"
msgstr "E pamundur ndërprerja e GMemoryInputStream"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gmemoryoutputstream.c:288
+#: gio/gmemoryoutputstream.c:288
msgid "Reached maximum data array limit"
msgstr "U arrit kufiri maksimum i array të së dhënave"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gmemoryoutputstream.c:323
+#: gio/gmemoryoutputstream.c:323
msgid "Memory output stream not resizable"
msgstr "Stream output memorje të papërmasueshme"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gmemoryoutputstream.c:339
+#: gio/gmemoryoutputstream.c:339
msgid "Failed to resize memory output stream"
msgstr "Ripërmasimi i stream të output të memories dështoi"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: ../gio/gmount.c:357
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "objekti mount nuk suporton zmontimin"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: ../gio/gmount.c:432
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "objekti mount nuk suporton nxjerrjen jashtë"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: ../gio/gmount.c:514
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "objekti mount nuk suporton rimontimin"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement content type guessing.
-#: ../gio/gmount.c:597
+#: gio/gmount.c:600
#, fuzzy
msgid "mount doesn't implement content type guessing"
msgstr "objekti mount nuk suporton zmontimin"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/goutputstream.c:204 ../gio/goutputstream.c:405
+#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Stream i output nuk suporton shkrimin"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/goutputstream.c:365 ../gio/goutputstream.c:773
+#: gio/goutputstream.c:365 gio/goutputstream.c:773
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:206
+#: gio/gthemedicon.c:206
msgid "name"
msgstr "emri"
# (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:207
+#: gio/gthemedicon.c:207
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:218
+#: gio/gthemedicon.c:218
msgid "names"
msgstr "emrat"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gthemedicon.c:219
+#: gio/gthemedicon.c:219
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:244
+#: gio/gthemedicon.c:244
msgid "use default fallbacks"
msgstr "përdor alternativat e paracaktuara"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gthemedicon.c:245
+#: gio/gthemedicon.c:245
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
# (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:201 ../gio/gunixinputstream.c:221
-#: ../gio/gunixinputstream.c:299 ../gio/gunixoutputstream.c:288
+#: gio/gunixinputstream.c:201 gio/gunixinputstream.c:221
+#: gio/gunixinputstream.c:299 gio/gunixoutputstream.c:288
#, c-format
msgid "Error reading from unix: %s"
msgstr "Gabim gjatë leximit nga unix: %s"
# (pofilter) variables: translation contains variables not in original: %d
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
# (pofilter) printf: checks whether printf format strings match
-#: ../gio/gunixinputstream.c:254 ../gio/gunixinputstream.c:436
-#: ../gio/gunixoutputstream.c:243 ../gio/gunixoutputstream.c:394
+#: gio/gunixinputstream.c:254 gio/gunixinputstream.c:436
+#: gio/gunixoutputstream.c:243 gio/gunixoutputstream.c:394
#, c-format
msgid "Error closing unix: %s"
msgstr "Gabim duke mbyllur unix: %s"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gunixmounts.c:1776 ../gio/gunixmounts.c:1813
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "File rrënjë i sistemit"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
-#: ../gio/gunixoutputstream.c:189 ../gio/gunixoutputstream.c:210
+#: gio/gunixoutputstream.c:189 gio/gunixoutputstream.c:210
#, c-format
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:438
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "volumi nuk suporton nxjerrjen jashtë"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gwin32appinfo.c:277
+#: gio/gwin32appinfo.c:277
msgid "Can't find application"
msgstr "E pamundur gjetja e aplikativit"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
-#: ../gio/gwin32appinfo.c:312
+#: gio/gwin32appinfo.c:312
#, c-format
msgid "Error launching application: %s"
msgstr "Gabim gjatë nisjes së aplikativit: %s"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
-#: ../gio/gwin32appinfo.c:349
+#: gio/gwin32appinfo.c:349
msgid "URIs not supported"
msgstr "URI nuk suportohen"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gwin32appinfo.c:371
+#: gio/gwin32appinfo.c:371
msgid "association changes not supported on win32"
msgstr "ndryshimi i shoqërimeve nuk suportohet në win32"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../gio/gwin32appinfo.c:383
+#: gio/gwin32appinfo.c:383
msgid "Association creation not supported on win32"
msgstr "Krijimi i shoqërimeve nuk suportohet në win32"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../tests/gio-ls.c:27
+#: tests/gio-ls.c:27
msgid "do not hide entries"
msgstr "mos fshih zërat"
# (pofilter) untranslated: checks whether a string has been translated at all
-#: ../tests/gio-ls.c:29
+#: tests/gio-ls.c:29
msgid "use a long listing format"
msgstr "përdor një format liste të gjatë"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
# (pofilter) acronyms: acronyms should not be translated: FILE
-#: ../tests/gio-ls.c:37
+#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[FILE...]"
msgstr ""
"Project-Id-Version: 2.8\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Неочекивано својство „%s“ елемента „%s“"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Својство „%s“ елемента „%s“ није пронађено"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Неочекивана ознака „%s“, очекивано је „%s“"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Неочекивана ознака „%s“ унутар „%s“"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
"Не могу да нађем исправну датотеку са обележивачима међу фасциклама са "
"подацима"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Обележивач ка „%s“ већ постоји"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Није пронађен обележивач ка „%s“"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "У обележивачу ка „%s“ није одређен МИМЕ тип"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "У обележивачу ка „%s“ није одређена приватна заставица"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "У обележивачу ка „%s“ нису одређене групе"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Програм „%s“ није регистровао обележивач ка „%s“"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Не могу да проширим комадну линију „%s“ са везом ка „%s“"
msgstr "Грешка при отварању директоријума „%s“: %s"
# bug: plural-forms
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Не могу да обезбедим %lu бајтова за читање датотеке „%s“"
msgid "Error reading file '%s': %s"
msgstr "Грешка при читању датотеке „%s“: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Не могу да прочитам из датотеке „%s“: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Не могу да отворим датотеку „%s“: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Не могу да сазнам особине датотеке „%s“: неуспешан fstat(): %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Не могу да отворим датотеку „%s“: неуспешан fdopen(): %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Не могу да преименујем датотеку „%s“ у „%s“: неуспешан g_rename(): %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Не могу да направим датотеку „%s“: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Не могу да отворим датотеку „%s“ ради уписа: неуспешан fdopen(): %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Не могу да упишем датотеку „%s“: неуспешан fwrite(): %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Не могу да затворим датотеку „%s“: неуспешан fclose(): %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Постојећа датотека „%s“ се не може уклонити: неуспешан g_unlink(): %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Неисправан шаблон „%s“, не сме садржати „%s“"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Шаблон „%s“ не садржи XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Не могу да прочитам симболичку везу „%s“: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Симболичке везе нису подржане"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Не могу да мапирам датотеку „%s“: неуспешан mmap(): %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Грешка у %d. реду, %d. знак: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Грешка у %d. реду: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Уочен празан ентитет „&;“; прихватљиви ентитети су & " < > "
"'"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"Име ентитета не може почети знаком „%s“ ; знак & започиње ентитет; ако овај "
"знак не означава ентитет, истакните га помоћу &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Знак „%s“ није дозвољен у имену ентитета"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Ентитет „%s“ није познат"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Ентитет се не завршава тачка-запетом; највероватније сте користили амперсанд "
"без намере да започнете ентитет — назначите амперсанд са &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Нисам успео да рашчланим „%-.*s“, што је требало да представља цифру унутар "
"знаковне референце (на пример ê) — можда је цифра превелика"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Знаковна референца „%-.*s“ не представља дозвољени знак"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Празна знаковна референца; мора да садржи цифру као на пример ˫"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"користили амперсанд без намере да започнете ентитет — назначите амперсанд са "
"&"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Недовршена референца ентитета"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Недовршена знаковна референца"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Неисправан текст у УТФ-8 запису – предугачка секвенца"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Неисправан текст у УТФ-8 запису — карактер није почетни"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Неисправан текст у УТФ-8 запису — „%s“ није исправно"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Документ мора почети елементом (нпр. <књига>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"„%s“ не представља исправан знак након знака „<“; име елемента не може њиме "
"почети"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Чудан знак „%s“, а очекивао сам „>“ знак ради окончања почетне ознаке "
"елемента „%s“"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"Чудан знак „%s“, очекивао сам „=“ после имена атрибута „%s“ елемента „%s“"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"елемента „%s“, или можда атрибут; можда сте користили неисправан знак у "
"имену атрибута"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Чудан знак „%s“, очекивао сам почетни наводник након знака једнакости при "
"додели вредности атрибута „%s“ елемента „%s“"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
msgstr ""
"„%s“ није исправан знак након низа „</“; „%s“ не може започети име елемента"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"„%s“ није исправан знак након имена затвореног елемента „%s“; дозвољени знак "
"је „>“"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Елемент „%s“ је затворен, нема тренутно отворених елемената"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Елемент „%s“ је затворен, а тренутно отворен елемент је „%s“"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Документ је празан или садржи само белине"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Документ завршен неочекивано непосредно након отворене косоугле заграде „<“"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Документ завршен неочекивано са отвореним елементима — „%s“ је последње "
"отворен елемент"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Документ завршен неочекивано, очекивао сам да наиђем на затворену косоуглу "
"заграду која затвара ознаку <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Документ завршен неочекивано усред имена елемента"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Документ завршен неочекивано усред имена атрибута"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Документ завршен неочекивано усред почетне ознаке елемента."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Документ завршен неочекивано након знака једнакости после имена атрибута; "
"вредност атрибута није наведена"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Документ завршен неочекивано усред вредности атрибута"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Документ завршен неочекивано усред завршне ознаке елемента „%s“"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Документ завршен неочекивано усред примедбе или упута за обраду"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "непозната грешка"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "Симболичке везе нису подржане"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Симболичке везе нису подржане"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
#, fuzzy
msgid "No application is registered as handling this file"
msgstr "Програм „%s“ није регистровао обележивач ка „%s“"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Грешка у %d. реду: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Грешка при рашчлањивању могућности %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: 2.8\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Neočekivano svojstvo „%s“ elementa „%s“"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Svojstvo „%s“ elementa „%s“ nije pronađeno"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Neočekivana oznaka „%s“, očekivano je „%s“"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Neočekivana oznaka „%s“ unutar „%s“"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
"Ne mogu da nađem ispravnu datoteku sa obeleživačima među fasciklama sa "
"podacima"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Obeleživač ka „%s“ već postoji"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Nije pronađen obeleživač ka „%s“"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "U obeleživaču ka „%s“ nije određen MIME tip"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "U obeleživaču ka „%s“ nije određena privatna zastavica"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "U obeleživaču ka „%s“ nisu određene grupe"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Program „%s“ nije registrovao obeleživač ka „%s“"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Ne mogu da proširim komadnu liniju „%s“ sa vezom ka „%s“"
msgstr "Greška pri otvaranju direktorijuma „%s“: %s"
# bug: plural-forms
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Ne mogu da obezbedim %lu bajtova za čitanje datoteke „%s“"
msgid "Error reading file '%s': %s"
msgstr "Greška pri čitanju datoteke „%s“: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Ne mogu da pročitam iz datoteke „%s“: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Ne mogu da otvorim datoteku „%s“: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Ne mogu da saznam osobine datoteke „%s“: neuspešan fstat(): %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Ne mogu da otvorim datoteku „%s“: neuspešan fdopen(): %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Ne mogu da preimenujem datoteku „%s“ u „%s“: neuspešan g_rename(): %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Ne mogu da napravim datoteku „%s“: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Ne mogu da otvorim datoteku „%s“ radi upisa: neuspešan fdopen(): %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Ne mogu da upišem datoteku „%s“: neuspešan fwrite(): %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Ne mogu da zatvorim datoteku „%s“: neuspešan fclose(): %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Postojeća datoteka „%s“ se ne može ukloniti: neuspešan g_unlink(): %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Neispravan šablon „%s“, ne sme sadržati „%s“"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Šablon „%s“ ne sadrži XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Ne mogu da pročitam simboličku vezu „%s“: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Simboličke veze nisu podržane"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Ne mogu da mapiram datoteku „%s“: neuspešan mmap(): %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Greška u %d. redu, %d. znak: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Greška u %d. redu: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Uočen prazan entitet „&;“; prihvatljivi entiteti su & " < > "
"'"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"Ime entiteta ne može početi znakom „%s“ ; znak & započinje entitet; ako ovaj "
"znak ne označava entitet, istaknite ga pomoću &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Znak „%s“ nije dozvoljen u imenu entiteta"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entitet „%s“ nije poznat"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Entitet se ne završava tačka-zapetom; najverovatnije ste koristili ampersand "
"bez namere da započnete entitet — naznačite ampersand sa &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Nisam uspeo da raščlanim „%-.*s“, što je trebalo da predstavlja cifru unutar "
"znakovne reference (na primer ê) — možda je cifra prevelika"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Znakovna referenca „%-.*s“ ne predstavlja dozvoljeni znak"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Prazna znakovna referenca; mora da sadrži cifru kao na primer ˫"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"koristili ampersand bez namere da započnete entitet — naznačite ampersand sa "
"&"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Nedovršena referenca entiteta"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Nedovršena znakovna referenca"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Neispravan tekst u UTF-8 zapisu – predugačka sekvenca"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Neispravan tekst u UTF-8 zapisu — karakter nije početni"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Neispravan tekst u UTF-8 zapisu — „%s“ nije ispravno"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokument mora početi elementom (npr. <knjiga>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"„%s“ ne predstavlja ispravan znak nakon znaka „<“; ime elementa ne može "
"njime početi"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Čudan znak „%s“, a očekivao sam „>“ znak radi okončanja početne oznake "
"elementa „%s“"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, 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:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"elementa „%s“, ili možda atribut; možda ste koristili neispravan znak u "
"imenu atributa"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Čudan znak „%s“, očekivao sam početni navodnik nakon znaka jednakosti pri "
"dodeli vrednosti atributa „%s“ elementa „%s“"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
msgstr ""
"„%s“ nije ispravan znak nakon niza „</“; „%s“ ne može započeti ime elementa"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"„%s“ nije ispravan znak nakon imena zatvorenog elementa „%s“; dozvoljeni "
"znak je „>“"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Element „%s“ je zatvoren, nema trenutno otvorenih elemenata"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokument je prazan ili sadrži samo beline"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Dokument završen neočekivano neposredno nakon otvorene kosougle zagrade „<“"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Dokument završen neočekivano sa otvorenim elementima — „%s“ je poslednje "
"otvoren element"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Dokument završen neočekivano, očekivao sam da naiđem na zatvorenu kosouglu "
"zagradu koja zatvara oznaku <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokument završen neočekivano usred imena elementa"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokument završen neočekivano usred imena atributa"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokument završen neočekivano usred početne oznake elementa."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Dokument završen neočekivano nakon znaka jednakosti posle imena atributa; "
"vrednost atributa nije navedena"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokument završen neočekivano usred vrednosti atributa"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Dokument završen neočekivano usred primedbe ili uputa za obradu"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "nepoznata greška"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "Simboličke veze nisu podržane"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Simboličke veze nisu podržane"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
#, fuzzy
msgid "No application is registered as handling this file"
msgstr "Program „%s“ nije registrovao obeleživač ka „%s“"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Greška u %d. redu: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Greška pri raščlanjivanju mogućnosti %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: 2.4\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, fuzzy, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Чудан знак „%s“, очекивао сам „=“ после особине „%s“ елемента „%s“"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Не могу да прочитам симболичку везу „%s“: %s"
msgstr "Грешка при отварању директоријума „%s“: %s"
# bug: plural-forms
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Не могу да обезбједим %lu бајтова за читање датотеке „%s“"
msgid "Error reading file '%s': %s"
msgstr "Грешка при читању датотеке „%s“: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Не могу да прочитам из датотеке „%s“: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Не могу да отворим датотеку „%s“: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Не могу да сазнам особине датотеке „%s“: неуспјешан fstat(): %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Не могу да отворим датотеку „%s“: неуспјешан fdopen(): %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, fuzzy, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Не могу да отворим датотеку „%s“: неуспјешан fdopen(): %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Не могу да направим датотеку „%s“: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, fuzzy, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Не могу да отворим датотеку „%s“: неуспјешан fdopen(): %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, fuzzy, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Не могу да отворим датотеку „%s“: неуспјешан fdopen(): %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, fuzzy, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Не могу да отворим датотеку „%s“: неуспјешан fdopen(): %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Неисправан шаблон „%s“, не смије садржати „%s“"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Шаблон „%s“ се не завршава са XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Не могу да прочитам симболичку везу „%s“: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Симболичке везе нису подржане"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Не могу да отворим датотеку „%s“: неуспјешан fdopen(): %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Грешка у %d. реду, %d. знак: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Грешка у %d. реду: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Уочен празан ентитет „&;“; прихватљиви ентитети су & " < > "
"'"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"Име ентитета не може почети знаком „%s“ ; знак & започиње ентитет; ако овај "
"знак не означава ентитет, истакните га помоћу &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Знак „%s“ није дозвољен у имену ентитета"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Ентитет „%s“ није познат"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Ентитет се не завршава тачка-запетом; највјероватније сте користили "
"амперсанд без намере да започнете ентитет — назначите амперсанд као &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, fuzzy, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Нисам успио да рашчланим „%s“, што је требало да представља цифру унутар "
"позива знака (на пример ê) — можда је цифра превелика"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, fuzzy, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Позив знака „%s“ не стоји за дозвољени знак"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Празан позив знака; морао би садржати цифру као на примјер ˫"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"Позив знака се не завршава тачка-запетом; највјероватније сте користили "
"амперсанд без намере да започнете ентитет — назначите амперсанд као &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Недовршена ознака ентитета"
# позив уместо ознака?
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Недовршен позив знака"
# ознака знака??? неееее
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Неисправан текст у УТФ-8 запису"
# ознака знака??? неееее
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Неисправан текст у УТФ-8 запису"
# ознака знака??? неееее
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Неисправан текст у УТФ-8 запису"
# може и ћирилица: „Уникод ТрансФормација 8“
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Документ мора почети елементом (нпр. <књига>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"„%s“ не представља исправан знак након знака „<“; име елемента не може њиме "
"почети"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Чудан знак „%s“, а очекивао сам „>“ знак ради окончања почетне ознаке "
"елемента „%s“"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "Чудан знак „%s“, очекивао сам „=“ после особине „%s“ елемента „%s“"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"елемента „%s“, или могућу особину; можда сте користили неисправан знак у "
"имену особине"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Чудан знак „%s“, очекивао сам почетни наводник након знака једнакости при "
"додјели вриједности особини „%s“ елемента „%s“"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
msgstr ""
"„%s“ није исправан знак након низа „</“; „%s“ не може започети име елемента"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"„%s“ није исправан знак након имена затвореног елемента „%s“; дозвољени знак "
"је „>“"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Елемент „%s“ је затворен, нема тренутно отворених елемената"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Елемент „%s“ је затворен, а тренутно отворен елемент је „%s“"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Документ је празан или садржи само бјелине"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Документ завршен неочекивано непосредно након отворене косоугле заграде „<“"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Документ завршен неочекивано са отвореним елементима — „%s“ је последње "
"отворен елемент"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Документ завршен неочекивано, очекивао сам да наиђем на затворену косоуглу "
"заграду која затвара ознаку <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Документ завршен неочекивано усред имена елемента"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Документ завршен неочекивано усред имена особине"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Документ завршен неочекивано усред почетне ознаке елемента."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Документ завршен неочекивано након знака једнакости после имена особине; "
"вриједност особине није наведена"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Документ завршен неочекивано усред вриједности особине"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "Документ завршен неочекивано усред завршне ознаке елемента „%s“"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Документ завршен неочекивано усред примедбе или упута за обраду"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr ""
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "Симболичке везе нису подржане"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Симболичке везе нису подржане"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Грешка у %d. реду: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Грешка при претварању: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-11 21:23+0100\n"
"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Oväntat attribut \"%s\" för elementet \"%s\""
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Attributet \"%s\" för elementet \"%s\" hittades inte"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Oväntad tagg \"%s\"\", taggen \"%s\" förväntades"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Oväntad tagg \"%s\" inom \"%s\""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "Ingen giltig bokmärkesfil hittades i datakataloger"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Ett bokmärke för uri \"%s\" finns redan"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Inget bokmärke hittades för uri \"%s\""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Ingen Mime-typ definierad i bokmärket för uri \"%s\""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Ingen privat flagga har definierats i bokmärket för uri \"%s\""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Inga grupper inställda i bokmärket för uri \"%s\""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Inget program med namnet \"%s\" registrerade ett bokmärke för \"%s\""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Misslyckades med att expandera exec-raden \"%s\" med URI \"%s\""
msgid "Error opening directory '%s': %s"
msgstr "Fel vid öppning av katalogen \"%s\": %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Kunde inte allokera %lu byte för att läsa filen \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Fel vid läsning av filen \"%s\": %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Misslyckades med att läsa från filen \"%s\": %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Misslyckades med att öppna filen \"%s\": %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
"Misslyckades med att få tag på attributen på filen \"%s\": fstat() "
"misslyckades: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Misslyckades med att öppna filen \"%s\": fdopen() misslyckades: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"Misslyckades med att byta namn på filen \"%s\" till \"%s\": g_rename() "
"misslyckades: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Misslyckades med att skapa filen \"%s\": %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
"Misslyckades med att öppna filen \"%s\" för skrivning: fdopen() "
"misslyckades: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Misslyckades med att skriva filen \"%s\": fwrite() misslyckades: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Misslyckades med att stänga filen \"%s\": fclose() misslyckades: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
"Befintliga filen \"%s\" kunde inte tas bort: g_unlink() misslyckades: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Mallen \"%s\" är ogiltig, den får inte innehålla ett \"%s\""
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Mallen \"%s\" innehåller inte XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Misslyckades med att läsa den symboliska länken \"%s\": %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Symboliska länkar stöds inte"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Misslyckades med att mappa filen \"%s\": mmap() misslyckades: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Fel på rad %d tecken %d:"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Fel på rad %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Tom entitet \"&;\" hittades, giltiga entiteter är: & " < > "
"'"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"inleder en entitet. Om detta &-tecken inte ska vara en entitet måste du "
"skriva om det som &."
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Tecknet \"%s\" är inte giltigt inuti ett entitetsnamn"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Entitetsnamnet \"%s\" är okänt"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Entiteten slutade inte med ett semikolon. Troligtvis använde du ett &-tecken "
"utan att avse att starta en entitet. Skriv om &-tecknet som &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Misslyckades med att tolka \"%-.*s\", som skulle ha varit ett tal inuti en "
"teckenreferens (ê till exempel). Talet är kanske för stort"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Teckenreferensen \"%-.*s\" kodar inte ett tillåtet tecken"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Tom teckenreferens, måste innehålla ett tal som exempelvis dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"Teckenreferensen slutade inte med ett semikolon. Troligtvis använde du ett &-"
"tecken utan att avse att starta en entitet. Skriv om &-tecknet som &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Oavslutad entitetsreferens"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Oavslutad teckenreferens"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Ogiltigt UTF-8-kodad text - för lång sekvens"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Ogiltigt UTF-8-kodad text - inte ett starttecken"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Ogiltigt UTF-8-kodad text - inte giltig \"%s\""
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Dokumentet måste börja med ett element (exempelvis <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"\"%s\" är inte ett giltigt tecken efter ett \"<\"-tecken. Det får inte "
"inleda ett elementnamn"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Konstigt tecken \"%s\", ett \">\"-tecken förväntades för att avsluta "
"starttaggen för elementet \"%s\""
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Konstigt tecken \"%s\", ett \"=\" förväntades efter attributnamnet \"%s\" "
"till elementet \"%s\""
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"avsluta starttaggen för elementet \"%s\", eller möjligtvis ett attribut. Du "
"kanske använde ett ogiltigt tecken i ett attributnamn"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"likhetstecknet när värdet av attributet \"%s\" till elementet \"%s\" "
"tilldelades"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"\"%s\" är inte ett giltigt tecken efter tecknen \"</\". \"%s\" får inte "
"inleda ett elementnamn"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"\"%s\" är inte ett giltigt tecken efter stängelementnamnet \"%s\". Det "
"tillåtna tecknet är \">\""
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Dokumentet var tomt eller innehöll endast tomrum"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "Dokumentet tog oväntat slut efter ett öppningsklammer \"<\""
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Dokumentet tog oväntat slut då element fortfarande var öppna. \"%s\" var det "
"senast öppnade elementet"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Dokumentet tog oväntat slut, en stängningsklammer föräntades för att avsluta "
"taggen <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Dokumentet tog oväntat slut inuti ett elementnamn"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Dokumentet tog oväntat slut inuti ett attributnamn"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Dokumentet tog oväntat slut inuti en elementöppnande tagg."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Dokumentet tog oväntat slut efter likhetstecknet som följde ett "
"attributnamn. Inget attributvärde"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Dokumentet tog oväntat slut inuti ett attributvärde"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Dokumentet tog oväntat slut inuti en kommentar eller behandlingsinstruktion"
msgid "Operation was cancelled"
msgstr "Åtgärden avbröts"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Okänd typ"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s-filtyp"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s-typ"
msgid "Unexpected early end-of-stream"
msgstr "Oväntat tidig end-of-stream"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Namnlös"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Skrivbordsfilen angav inget Exec-fält"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Kunde inte hitta terminal som krävs för programmet"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "Kan inte skapa programkonfigurationsmapp för användare %s: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Kan inte skapa MIME-konfigurationsmapp för användare %s: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Kan inte skapa skrivbordsfil för användare %s"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Anpassad definition för %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "enheten har inte implementerat utmatning"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "enheten har inte implementerat pollning av media"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Åtgärden stöds inte"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Infattande montering finns inte"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Kan inte kopiera över katalog"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Kan inte kopiera katalog över katalog"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Målfilen finns"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Kan inte kopiera katalogen rekursivt"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Ogiltigt värde för symbolisk länk angivet"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Papperskorgen stöds inte"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Filnamn får inte innehålla \"%c\""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "volymen har inte implementerat montering"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Inget program är registrerat för hantering av denna fil"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "montering har inte implementerat avmontering"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "montering har inte implementerat utmatning"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "montering har inte implementerat återmontering"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "montering har inte implementerat avmontering"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Utmatningsström har inte implementerat skrivning"
msgid "Error closing unix: %s"
msgstr "Fel vid stängning av unix: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Filsystemsrot"
msgid "Error writing to unix: %s"
msgstr "Fel vid skrivning till unix: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "volymen har inte implementerat utmatning"
msgstr ""
"Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2007-08-13 09:47+0530\n"
"Last-Translator: Dr.T.Vasudevan <agnihot3@gmail.com>\n"
"Language-Team: TAMIL <ubuntu-l10n-tam@lists.ubuntu.com>\n"
"\n"
"\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "எதிர்பாராத பண்புக்கூறு '%s' இந்த உறுப்புக்கு '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "மதிப்பு '%s' க்கு '%s' உறுப்பு எதுவும் இல்லை"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "எதிர்பாராத ஒட்டு'%s', ஒட்டு '%s' எதிர்பார்க்கப்பட்டது"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "'%s' க்குள் எதிர்பாராத ஒட்டு '%s' உள்ளது"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "தரவு அடைவுகளில் சரியான புத்தகக்குறி கோப்பு எதுவும் இல்லை"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI '%s' க்கு ஏற்கனவே புத்தகக்குறி உள்ளது"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "URIக்கு புத்தகக்குறி எதுவும் இல்லை '%s'"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI '%s'க்கு MIME வகை எதுவும் புத்தகக்குறியில் குறிப்பிடப்படவில்லை"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI '%s'க்கு புத்தகக்குறியில் தனிபட்ட கொடி எதுவும் குறிப்பிடப்படவில்லை"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI '%s'க்கான புத்தகக்குறியில் குழுக்கள் எதுவும் அமைக்கப்படவில்லை"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "'%s' பெயரிலுள்ள பயன்பாடு '%s'க்கு ஒரு புத்தகக்குறியை பதிவு செய்தது"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "exec வரி '%s' ஐ யூஆர்ஐ (URI) '%s' உடன் விரிவாக்குதல் தோல்வியுற்றது"
msgid "Error opening directory '%s': %s"
msgstr "'%s' அடைவு திறக்கும்போது பிழை: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "%lu பைட்டுகளை \"%s\" கோப்பு வாசிப்பதற்கு ஒதுக்கிவைக்க முடியவில்லை"
msgid "Error reading file '%s': %s"
msgstr "'%s' கோப்பு வாசிக்கும் போது பிழை: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "'%s' கோப்பிலிருந்து வாசிக்க முடியவில்லை: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "'%s' கோப்பு திறக்க முடியவில்லை: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "'%s' கோப்பின் பண்புகளை பெறமுடியவில்லை: fstat() செயலிழந்தது: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "'%s' கோப்பை திறக்க முடியவில்லை: fdopen() செயலிழந்தது: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "'%s'கோப்பினை '%s'க்கு மறுபெயரிட முடியவில்லை: g_rename() செயலிழந்தது: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "'%s' கோப்பை படைக்க முடியவில்லை: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "'%s' கோப்பினை திறக்க முடியவில்லை: fdopen() செயலிழந்தது: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "'%s' கோப்பினை எழுத முடியவில்லை: fwrite() செயலிழந்தது: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "'%s'கோப்பினை மூட முடியவில்லை: fclose() செயலிழந்தது: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "இருக்கும் கோப்பு '%s' ஐ நீக்க முடியாது: g_unlink() செயலிழந்தது: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "'%s' படிம அச்சு செல்லுபடியாகாதது; அதனில் '%s' இருக்கக் கூடாது"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "'%s' படிம அச்சில் XXXXXX இல்லை"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "'%s' என்பதன்-குறுக்கம் இணைப்பை வாசிக்க முடியவில்லை: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "என்பதன்-குறுக்கம் இணைப்புகளுக்கு ஆதரவு கிடையாது"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' கோப்பினை ஒப்பிட முடியவில்லை: mmap() செயலிழந்தது: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "%d வரியில் %d வரியுருவில் பிழை: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "%d வரியில் பிழை: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"வெற்றா பிரதிநிதி '&;' கண்டது; சரியான பிரதிநிதிகள்: & " < &qt; '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"'%s' வரியுரு பிரதிநிதியின் தொடக்கத்தில் வரக்கூடாது; & வரியுரு பிரதிநிதியைத் "
"தொடங்கும்; இந்த & ஓர் பிரதிநிதியாக இருக்கக்கூடாது என்றால்; அதை & ஆக விடுவி;"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "'%s' வரியுரு பிரதிநிதியின் பெயரில் பிழையானது"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "பிரதிநிதியின் பெயர் '%s' தெரியாதது"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"பிரதிநிதி ';' உடன் முடிவடையவில்லை; நீங்கள் பிரதிநிதி ஒன்றை தொடங்க யோசிக்காமல் '&' "
"பயன்படுத்தி இருக்கலாம் - '&'சை & ஆக விடுவி;"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"'%-.*s'ஐ கூறிட முடியவில்லை,அதன் ஒரு எழுத்துக்குள் ஒரு தசமத்தை கொண்டிருக்க வேண்டும் "
"குறிப்பு (ê எடுத்துக்காட்டாக) - எனினும் தசமம் மிக பெரியதாக உள்ளது"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "எழுத்து குறிப்பு '%-.*s' ஒரு அனுமதிக்கப்பட்ட எழுத்தினை குறிமுறையாக்கவில்லை"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "வேற்றான வரியுரு குறிப்பு; dž ஆகிய இலக்கங்கள் சேர்ந்திருக் வேண்டும்;"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"ampersand character without intending to start an entity - escape ampersand "
"as &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "முடிவடையாத உள்ளீட்பு மேற்கோள்"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "முடிவடையாத வரியுரு மேற்கோள்"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "பிழையான UTF-8 குறியீடு செய்யப்பட்ட உரை - மிக நீண்ட உரை"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "பிழையான UTF-8 குறியீடு செய்யப்பட்ட உரை - துவங்கும் குறியல்ல"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "பிழையான UTF-8 குறியீடு செய்யப்பட்ட உரை - செல்லுபடியாகும் '%s' அல்ல"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "ஆவணம் ஓர் உறுப்புடன் (உதாரணம்: <book>) தொடங்க வேண்டும்"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'<' வரியுருவை தொடர்ந்து '%s' வர முடியாது; அதைப் பயன்படுத்தி ஓர் உறுப்படியின் பெயரைத் "
"தொடங்க முடியாது"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"ஒற்றை வரியுரு '%s', '%s' உறுப்படி தொடங்கல் ஒட்டை ஓர் '>' வரியுரு முடிவு செய்யும் "
"என்று எதிர்பார்த்தது"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"'%s' ஓர் ஒற்றை வரியுரு, பண்பின் பெயர் '%s' பின் ('%s' உறுப்பின்) எதிர்பார்த்தது ஓர் '=' "
"வரியுரு"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"element '%s', or optionally an attribute; perhaps you used an invalid "
"character in an attribute name"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Odd character '%s', expected an open quote mark after the equals sign when "
"giving value for attribute '%s' of element '%s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "'%s' உறுப்பு மூடப்பட்டுல்லது, தற்பொது ஒரு உறுப்பும் திறந்து இல்லை"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "'%s' உறுப்பு மூடப்பட்டுல்லது, அனால் தற்பொது திறந்திறுக்கும் உறுப்பு '%s'"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "வெற்றான ஆவணம் அல்லது ஆவணத்தில் இறுப்பது அனைத்தும் வெண்வெளி"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "'<' பிறகு ஆவணம் திடீரென முடிவடைந்தது"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"உறுப்புகள் திறந்திறுக்கும்போது ஆவணம் திடீரென முடிவடைந்தது - கடைசியாகத் திறக்கப்பட்ட "
"உறுப்பு '%s'"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"ஆவணம் திடீரென முடிவடைந்தது, அடையாள ஒட்டு <%s/> முடிவில் ஓர் '}' இருக்கும் என "
"எதிர்பார்த்தது"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "உறுப்பு பெயர் உள்ளே ஆவணம் திடீரென முடிவடைந்தது"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "பண்பு பெயர் உள்ளே ஆவணம் திடீரென முடிவடைந்தது"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "உறுப்பு-தொடங்களின் அடையாள ஒட்டு உள்ளே ஆவணம் திடீரென முடிவடைந்தது"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "பண்பு பெயர் உள்ளிறுக்கும் போது ஆவணம் திடீரென முடிவடைந்தது"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "'%s' என்னும் மூடு-அடையாள ஒட்டு உள்ளே ஆவணம் திடீரென முடிவடைந்தது"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "ஆவணம் திடீரென குறிப்புரையுல் அல்லது செயலாக்கம் ஆணையுல் முடிவடைந்தது"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "தெரியாத தவறு"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "என்பதன்-குறுக்கம் இணைப்புகளுக்கு ஆதரவு கிடையாது"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "என்பதன்-குறுக்கம் இணைப்புகளுக்கு ஆதரவு கிடையாது"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
#, fuzzy
msgid "No application is registered as handling this file"
msgstr "'%s' பெயரிலுள்ள பயன்பாடு '%s'க்கு ஒரு புத்தகக்குறியை பதிவு செய்தது"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "%d வரியில் பிழை: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "கூறிடும் போது பிழை: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: GLIB\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2004-12-13 20:16+0100\n"
"Last-Translator: రమణ సాయి <rmn_sai@yahoo.com>\n"
"Language-Team: Free Software Foundation, Andhra Pradesh <fsfap@gnu.org.in>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, fuzzy, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "బేసి అక్షరము '%s', ఊహించిన '=' తర్వాత '%s' ఆపాదించు నామం '%s' మూలకం "
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
#, fuzzy
msgid "No valid bookmark file found in data dirs"
msgstr " సరియైన మీటదస్త్రం దత్తాంశవివరణలో లభించలేదు "
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr " '%s' చిహ్న పూరితజోడి చదువుటలో విఫలమయినావు : %s"
msgid "Error opening directory '%s': %s"
msgstr " వివరణ తెరచుటలో దోషం '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "%lu బైట్లని దస్త్రం \"%s\" చదువుటకు ఇవ్వలేము"
msgid "Error reading file '%s': %s"
msgstr "దస్త్రం '%s': %s చదువుటలో దోషం"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr " దస్త్రం '%s': %s నుండి చదువుటలో విఫలమైనారు"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr " దస్త్రం '%s': %s తెరుచుటలో విఫలమైనారు"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "దస్త్ర ఆపాదనలు విఫలమగును '%s': ఎఫ్ స్టాట్() విఫలమైనది: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "దస్త్రం '%s' తెరుచుటలో విఫలమైనారు: ఎఫ్ డిఓపన్() విఫలమైనది: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, fuzzy, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "దస్త్రం '%s' తెరుచుటలో విఫలమైనారు: ఎఫ్ డిఓపన్() విఫలమైనది: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr " '%s' దస్త్రమును సృష్టించుటలో విఫలమయినావు. :%s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, fuzzy, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "దస్త్రం '%s' తెరుచుటలో విఫలమైనారు: ఎఫ్ డిఓపన్() విఫలమైనది: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, fuzzy, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "దస్త్రం '%s' తెరుచుటలో విఫలమైనారు: ఎఫ్ డిఓపన్() విఫలమైనది: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, fuzzy, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "దస్త్రం '%s' తెరుచుటలో విఫలమైనారు: ఎఫ్ డిఓపన్() విఫలమైనది: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr " '%s' మాదిరి, '%s' కలిగియుండలెదు. "
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr " '%s' మాదిరి XXXXXX అంతం అవలేదు. "
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr " '%s' చిహ్న పూరితజోడి చదువుటలో విఫలమయినావు : %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "చిహ్న పూరితజోడి సహకరించలెదు. "
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "దస్త్రం '%s' తెరుచుటలో విఫలమైనారు: ఎఫ్ డిఓపన్() విఫలమైనది: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr " %d క్యార్ %d వరుసలో దోషం కలదు : %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "%d వరుసలో దోషం కలదు : %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr " ఖాశి వ్యష్టి '&;' చూడబడినది; వర్తించు వ్యష్టిలు: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
" వ్యష్టినామముతో ప్రారంభమగు అక్షరము '%s' నిస్సారము; వ్యష్టి & అక్షరముతో ప్రారంభమగును;వ్యష్టి "
"ప్రారంబమగును; ఒక వేశ ఆంపర్సండ్ ఊహించిన విధంగా వ్యష్టి కాకపోతే , ఎస్కేప్it as &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr " వ్యష్టినామంలో అక్షరము '%s' నిస్సారము "
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr " '%s' వ్యష్టి నామం తెలియదు "
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
" వ్యష్టి సెమికోలన్ తో పూర్తవలేదు; దాదాపుగా యాంపర్ సెండ్ ఉపయెగించవలెను అక్షరము దాదాపుగా -' ఎస్కేప్ "
"యంపర్ సెండ్ యాజ్ &యాంప్;' తో ప్రారంభమవలేదు. "
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"అక్షరములో అంకె కలిగియున్నందువలన '%-.*s', పార్సింగ్ విఫలమైనది.దాదాపుగా అంక్య భారీగా ఉన్నది -నివేదన "
"(ఉదాహరణకు : ê )"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "అక్షర నివేదన '%-.*s' అనుమతించబడిన అక్షరము ఎన్ కోడ్ అవ్వదు."
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr " ఖాళీ అక్షర నివేదన తప్పనిసరిగా dž ఈ సంఖ్యను కలుపుకొనవలెను"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"అక్షర నివేదన సెమికోలన్ తో ముగియలేదు; దాదాపుగా యిది ఉపయెగించండి యాంపర్ సెండ్ అక్షరం తో ప్రారంభమవరాదు - "
"ఎస్సేప్ యాంపర్ సెండ్ యాజ్ &యాంప్ "
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr " పూర్తికాని వ్యష్టినివెదన "
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr " అక్షర నివేదన పూర్తికాలేదు "
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "నిస్సారమైన యుటిఎఫ్-8 ఎన్ కోడెడ్ పాఠం"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "నిస్సారమైన యుటిఎఫ్-8 ఎన్ కోడెడ్ పాఠం"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "నిస్సారమైన యుటిఎఫ్-8 ఎన్ కోడెడ్ పాఠం"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "పత్రం తప్పనిసరిగా ఒక మూలకంతో ప్రారంభమవలెను (ఉదా. <బుక్>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
msgstr ""
" '<' తో ప్రారంభమగు '%s' అనునది సరరిఐన అక్షరం కాదు ; యిది మూలక నామంతో ప్రారంభమవలేదు. "
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr "బేసి అక్షరము '%s', ఊహించిన '>' అక్షరము చివరి ప్రారంభ బొందు మూతకం '%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "బేసి అక్షరము '%s', ఊహించిన '=' తర్వాత '%s' ఆపాదించు నామం '%s' మూలకం "
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"'%s' ఊహించిన బేసి అక్షరము '>' లేక '/' చివరి ర్రంభ బొందు అక్షరము మాలకం %sలేక ఇచ్చాపూర్వక "
"ఆపాదన; దాదాపుగా ఆపాదన నామంలో అనర్హమైన అక్షరం ఉపమెగించినావు"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
msgstr ""
"బేసి అక్షరము '%s', ఊహించిన తెరచిన క్వోట్ చిహ్నం తరాత ఇచ్చిన ఆపాదన విలువ '%s' మూతకము '%s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, 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:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr " '%s' మూలకం మూయబడినది, ప్రస్ధుతం ఏ మూలకము తెరచియుండలెదు "
# ../glib/gmarkup.c:1588
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "'%s' మూలకం మూయబడినది, కాని ప్రస్ధుతం తెరువ బడిన మూలకం '%s'"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr " పత్రం ఖాలిగా ఉన్నది లేక ఒక వైట్ స్పేస్ కలిగి యున్నది. "
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "పత్రం చివర కోణ కుండలీకరణము'<' వెంటనె అనవసరముగా ముగింపు అయినది"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
msgstr ""
"మూలకములు ఇంకను తెరచియున్న పత్రం ఊహించని విధంగా అంతమైనది- '%s' చివరిది మూలకము తెరచబడినది"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
msgstr ""
"పత్రం ఊహించని విధంగా అంతమైనది,మూసిన కోణకుండశికరణం అంతము చూచుటకు ఊహించబడినది బొందు <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr " పత్రం చివర ఊహించని మూలకనామం కలదు "
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "పత్రం చివర ఊహించని ఆపాదననామం కలదు"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "పత్రం చివర ఊహించని తెరచిన బొందు కలదు."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
#, fuzzy
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
msgstr ""
" '=' చిహ్నము తర్వాత క్రింద కనబరిచిన ఆపాదన పాఠం చివర ఊహించకుండా ఉన్నది. నామం; ఆపాదన విలువ లేదు."
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr " లోపల ఆపాదన విలువ ఉన్నపుడు పాఠం ఊహించకుండా ముగింపు అయినది "
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr " '%s'మూలకము యోక్క మూసిన బొందు ఊహించకుండా పాఠం ముగింపు అయినది "
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr " లోపల వ్యాఖ్య క్రమగతి ఆదేశం ఉండగా ఊహించకుండా పాఠం ముగింపు అయినది "
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "తెలియని ఇచ్ఛాపూర్వకము %s"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "చిహ్న పూరితజోడి సహకరించలెదు. "
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "చిహ్న పూరితజోడి సహకరించలెదు. "
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "%d వరుసలో దోషం కలదు : %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "పరివర్తనం నందు దోషం కలదు: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib 2.14.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-10 19:33+0700\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-07-10 19:34+0700\n"
"Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n"
"Language-Team: Thai <thai-l10n@googlegroups.com>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805
-#: glib/gbookmarkfile.c:884 glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "พบแอตทริบิวต์ '%s' ที่ไม่ต้องการ สำหรับอิลิเมนต์ '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816
-#: glib/gbookmarkfile.c:826 glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "ไม่พบแอตทริบิวต์ '%s' สำหรับอิลิเมนต์ '%s'"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "พบแท็ก '%s' ที่ไม่ต้องการ ขณะที่ต้องการแท็ก '%s'"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "พบแท็ก '%s' ที่ไม่ต้องการภายใน '%s'"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "ไม่พบแฟ้มที่คั่นหน้าที่ใช้การได้ในไดเรกทอรีข้อมูล"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "มีที่คั่นหน้าสำหรับ URI '%s' อยู่ก่อนแล้ว"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "ไม่พบที่คั่นหน้าสำหรับ URI '%s'"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "ไม่ได้กำหนดชนิด MIME ไว้ในที่คั่นหน้าสำหรับ URI '%s'"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "ไม่ได้กำหนดแฟล็กส่วนตัวไว้ในที่คั่นหน้าสำหรับ URI '%s'"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "ไม่ได้กำหนดกลุ่มไว้ในที่คั่นหน้าสำหรับ URI '%s'"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "ไม่มีโปรแกรมประยุกต์ชื่อ '%s' ที่ลงทะเบียนที่คั่นหน้าสำหรับ '%s' ไว้"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "กระจายบรรทัดคำสั่ง '%s' ด้วย URI '%s' ไม่สำเร็จ"
msgid "Error during conversion: %s"
msgstr "เกิดข้อผิดพลาดระหว่างแปลงรหัส: %s"
-#: glib/gconvert.c:669 glib/gutf8.c:952 glib/gutf8.c:1156
-#: glib/gutf8.c:1297 glib/gutf8.c:1401
+#: glib/gconvert.c:669 glib/gutf8.c:952 glib/gutf8.c:1156 glib/gutf8.c:1297
+#: glib/gutf8.c:1401
msgid "Partial character sequence at end of input"
msgstr "มีลำดับไบต์ไม่เต็มอักขระอยู่ที่ท้ายข้อมูลเข้า"
msgid "Error opening directory '%s': %s"
msgstr "เกิดข้อผิดพลาดขณะเปิดไดเรกทอรี '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "ไม่สามารถจองหน่วยความจำ %lu ไบต์เพื่ออ่านแฟ้ม \"%s\" ได้"
msgid "Error reading file '%s': %s"
msgstr "เกิดข้อผิดพลาดขณะอ่านแฟ้ม '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "อ่านข้อมูลจากแฟ้ม '%s' ไม่สำเร็จ: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "เปิดแฟ้ม '%s' ไม่สำเร็จ: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "อ่านแอตทริบิวต์ของแฟ้ม '%s' ไม่สำเร็จ: fstat() ล้มเหลว: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "เปิดแฟ้ม '%s' ไม่สำเร็จ: fdopen() ล้มเหลว: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "เปลี่ยนชื่อแฟ้ม '%s' ไปเป็น '%s' ไม่สำเร็จ: g_rename() ล้มเหลว: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "สร้างแฟ้ม '%s' ไม่สำเร็จ: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "เปิดแฟ้ม '%s' เพื่อเขียนไม่สำเร็จ: fdopen() ล้มเหลว: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "เขียนแฟ้ม '%s' ไม่สำเร็จ: fwrite() ล้มเหลว: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "ปิดแฟ้ม '%s' ไม่สำเร็จ: fclose() ล้มเหลว: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "ไม่สามารถลบแฟ้ม '%s' ที่มีอยู่ได้: g_unlink() ล้มเหลว: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "แม่แบบ '%s' ใช้ไม่ได้ ไม่ควรมี '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "แม่แบบ '%s' ไม่มี XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "อ่านลิงก์สัญลักษณ์ '%s' ไม่สำเร็จ: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "ไม่รองรับลิงก์สัญลักษณ์"
msgid "Can't do a raw read in g_io_channel_read_line_string"
msgstr "ไม่สามารถอ่านข้อมูลแบบดิบใน g_io_channel_read_line_string"
-#: glib/giochannel.c:1554 glib/giochannel.c:1812
-#: glib/giochannel.c:1899
+#: glib/giochannel.c:1554 glib/giochannel.c:1812 glib/giochannel.c:1899
msgid "Leftover unconverted data in read buffer"
msgstr "มีข้อมูลตกค้างไม่ได้แปลงอยู่ในบัฟเฟอร์สำหรับอ่าน"
msgstr "'%s' ไม่ใช่อักขระที่ใช้ตามหลัง '<' ได้ จึงไม่สามารถใช้ขึ้นต้นชื่ออิลิเมนต์ได้"
#: glib/gmarkup.c:1266
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr "พบอักขระแปลกปลอม '%s' ในขณะที่มองหาอักขระ '>' ที่จะมาปิดแท็กตั้งต้นอิลิเมนต์ '%s'"
#: glib/gmarkup.c:1355
msgid "Invalid program name: %s"
msgstr "ชื่อโปรแกรมผิดรูปแบบ: %s"
-#: glib/gspawn-win32.c:450 glib/gspawn-win32.c:723
-#: glib/gspawn-win32.c:1282
+#: glib/gspawn-win32.c:450 glib/gspawn-win32.c:723 glib/gspawn-win32.c:1282
#, c-format
msgid "Invalid string in argument vector at %d: %s"
msgstr "สตริงผิดรูปแบบในเวกเตอร์ของอาร์กิวเมนต์ที่ตำแหน่ง %d: %s"
-#: glib/gspawn-win32.c:461 glib/gspawn-win32.c:738
-#: glib/gspawn-win32.c:1315
+#: glib/gspawn-win32.c:461 glib/gspawn-win32.c:738 glib/gspawn-win32.c:1315
#, c-format
msgid "Invalid string in environment: %s"
msgstr "สตริงผิดรูปแบบในตัวแปรสภาพแวดล้อม: %s"
msgid "Character out of range for UTF-8"
msgstr "อักขระอยู่นอกช่วงของ UTF-8"
-#: glib/gutf8.c:1124 glib/gutf8.c:1133 glib/gutf8.c:1265
-#: glib/gutf8.c:1274 glib/gutf8.c:1415 glib/gutf8.c:1511
+#: glib/gutf8.c:1124 glib/gutf8.c:1133 glib/gutf8.c:1265 glib/gutf8.c:1274
+#: glib/gutf8.c:1415 glib/gutf8.c:1511
msgid "Invalid sequence in conversion input"
msgstr "มีลำดับข้อมูลที่ไม่ถูกต้องในข้อมูลที่ป้อนให้ตัวแปลงรหัส"
msgstr "ค่า '%s' ไม่สามารถตีความเป็นบูลีนได้"
#: gio/gbufferedinputstream.c:485 gio/ginputstream.c:187
-#: gio/ginputstream.c:319 gio/ginputstream.c:560
-#: gio/ginputstream.c:685 gio/goutputstream.c:195
-#: gio/goutputstream.c:649
+#: gio/ginputstream.c:319 gio/ginputstream.c:560 gio/ginputstream.c:685
+#: gio/goutputstream.c:195 gio/goutputstream.c:649
#, c-format
msgid "Too large count value passed to %s"
msgstr "มีการส่งค่า count ที่สูงเกินไปมาให้ %s"
msgid "Stream is already closed"
msgstr "สตรีมถูกปิดไปแล้ว"
-#: gio/gcancellable.c:295 gio/glocalfile.c:1974
-#: gio/gsimpleasyncresult.c:612
+#: gio/gcancellable.c:295 gio/glocalfile.c:1974 gio/gsimpleasyncresult.c:612
msgid "Operation was cancelled"
msgstr "การกระทำถูกยกเลิก"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "ชนิดข้อมูลไม่รู้จัก"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "ชนิดแฟ้ม %s"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "ชนิด %s"
msgid "Custom definition for %s"
msgstr "ข้อกำหนดกำหนดเองสำหรับ %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "ไดรว์ไม่สามารถใช้คำสั่งดันแผ่นออกได้"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "ไดรว์ไม่สามารถใช้คำสั่งตรวจสอบสื่อได้"
-#: gio/gfile.c:823 gio/gfile.c:1051 gio/gfile.c:1184
-#: gio/gfile.c:1415 gio/gfile.c:1468 gio/gfile.c:1524
-#: gio/gfile.c:1606 gio/gfile.c:2663 gio/gfile.c:2714
-#: gio/gfile.c:2842 gio/gfile.c:2882 gio/gfile.c:3206
-#: gio/gfile.c:3608 gio/gfile.c:3691 gio/gfile.c:3774
-#: gio/gfile.c:3854
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "ไม่รองรับการกระทำนี้"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1303 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "ไม่มีจุดเมานท์ที่บรรจุแฟ้มอยู่"
-#: gio/gfile.c:1945 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "ไม่สามารถคัดลอกทับไดเรกทอรี"
-#: gio/gfile.c:2005
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "ไม่สามารถคัดลอกไดเรกทอรีทับไดเรกทอรี"
-#: gio/gfile.c:2013 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "มีแฟ้มปลายทางอยู่ก่อนแล้ว"
-#: gio/gfile.c:2031
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "ไม่สามารถคัดลอกไดเรกทอรีทั้งยวง"
-#: gio/gfile.c:2832
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "ได้รับชื่อ symlink ที่ใช้การไม่ได้"
-#: gio/gfile.c:2925
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "ไม่รองรับการใช้ถังขยะ"
-#: gio/gfile.c:2972
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "ชื่อแฟ้มจะมีอักขระ '%c' ไม่ได้"
-#: gio/gfile.c:4938 gio/gvolume.c:369
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "โวลุมไม่รองรับการเมานท์"
-#: gio/gfile.c:5046
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "ไม่มีโปรแกรมที่ลงทะเบียนสำหรับจัดการแฟ้มประเภทนี้ไว้"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:357
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "การเมานท์นี้ยังไม่รองรับการเลิกเมานท์"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:432
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "การเมานท์นี้ยังไม่รองรับการดันสื่อออก"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:514
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "การเมานท์นี้ยังไม่รองรับการเมานท์ซ้ำ"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement content type guessing.
-#: gio/gmount.c:597
+#: gio/gmount.c:600
msgid "mount doesn't implement content type guessing"
msgstr "การเมานท์นี้ยังไม่รองรับการเดาชนิดเนื้อหา"
msgid "Error closing unix: %s"
msgstr "เกิดข้อผิดพลาดขณะปิดแฟ้มยูนิกซ์: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "รากระบบแฟ้ม"
msgid "Error writing to unix: %s"
msgstr "เกิดข้อผิดพลาดขณะเขียนข้อมูลลงแฟ้มยูนิกซ์: %s"
-#: gio/gvolume.c:438
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "โวลุมยังไม่รองรับการดันสื่อออก"
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, fuzzy, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
"Kakaibang karakter '%s', inasahan na '=' matapos ng pangalang attribute '%s' "
"ng elementong '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
#, fuzzy
msgid "No valid bookmark file found in data dirs"
msgstr "Walang mahanap na talaksang susi sa mga dir ng datos"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Sawi ang pagbasa ng symbolic link '%s': %s"
msgid "Error opening directory '%s': %s"
msgstr "Error sa pagbukas ng directory '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Hindi makapag-tabi ng %lu byte upang basahin ang talaksang \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Error sa pagbasa ng talaksang '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Sawi ang pagbabasa ng talaksang '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Sawi ang pagbukas ng talaksang '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
"Sawi ang pagkuha ng mga attribute ng talaksang '%s': sawi ang fstat(): %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Sawi ang pagbukas ng talaksang '%s': sawi ang fdopen(): %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"Bigo ang papalit ng pangalan ng talaksang '%s' sa '%s': bigo ang g_rename(): "
"%s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Sawi ang paglikha ng talaksang '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
"Bigo ang pagbukas ng talaksang '%s' para sa pagsusulat: bigo ang fdopen(): %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Bigo sa pagsusulat ng talaksang '%s': bigo ang fwrite(): %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Bigo ang pagsara ng talaksang '%s': bigo ang fclose(): %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Hindi matanggal ang talaksang '%s': bigo ang g_unlink(): %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Hindi tanggap ang template '%s', wala dapat na '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Hindi XXXXXX ang dulo ng template '%s'"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Sawi ang pagbasa ng symbolic link '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Hindi suportado ang mga symbolic link"
msgstr ""
"Bigo ang pagreserba ng memory para sa talaksang '%s': bigo ang mmap(): %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Error sa linya %d char %d: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Error sa linya %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Walang laman na entity '&' ay nakita; tanggap na mga entity ay: & " "
"< > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"karakter ang nag-uumpisa ng entity; kung ang ampersand ay hindi dapat maging "
"entity, itaglay ito bilang &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Pangalan ng entity '%s' ay hindi kilala"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"ampersand karakter na hindi sinasadyang mag-umpisa ng entity - itaglay ang "
"ampersand ng &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Sawi sa pag-parse ng '%-.*s', na dapat ay numero sa loob ng reference sa "
"karakter (halimbawa ay ê) - maaaring ang numero ay sobra ang laki"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr ""
"Walang laman na reference sa karakter; dapat may kasamang numero tulad ng "
"dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"gumamit kayo ng ampersand na karakter na hindi sinadyang mag-umpisa ng "
"entity - itaglay ang ampersand bilang &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Hindi tapos na reference sa entity"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Hindi tapos na reference sa karakter"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Hindi tanggap na tekstong encoded ng UTF-8"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Hindi tanggap na tekstong encoded ng UTF-8"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Hindi tanggap na tekstong encoded ng UTF-8"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Kailangang mag-umpisa ang dokumento ng elemento (hal. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' ay hindi tanggap na karakter matapos ng '<' na karakter; hindi ito "
"maaaring mag-umpisa ng pangalang elemento"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Kakaibang karakter '%s', inasahan na '>' karakter ang pambungad ng pambukas "
"na tag ng elementong '%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Kakaibang karakter '%s', inasahan na '=' matapos ng pangalang attribute '%s' "
"ng elementong '%s'"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"pangbukas na tag ng elementong '%s' o attribute; maaaring gumamit kayo ng "
"hindi tanggap na karakter sa pangalang attribute"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"equals sign kapag nagbigay ng halaga para sa attribute '%s' ng elementong '%"
"s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"Hindi tanggap na karakter ang '%s' matapos ng mga karakter na '</'; Ang '%s' "
"ay hindi maaaring umpisa ng pangalang elemento"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"Hindi tanggap na karakter ang '%s' matapos ang pangsara ng pangalang "
"elemento '%s'; ang tinatanggap na karakter ay '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Sinarhan ang elementong '%s', walang bukas na elemento."
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Walang laman ang dokumento o naglalaman lamang ito ng puwang"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
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:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Nagwakas ng hindi inaasahan ang dokumento na may mga bukas na elemento - '%"
"s' ay ang huling elementong binuksan"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Nagwakas ng hindi inaasahan ang dokumento, inasahan na makita ang angle "
"bracket na pang-sara ng tag <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr ""
"Nagwakas ng hindi inaasahan ang dokumento sa loob ng pangalan ng elemento"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
"Nagwakas ng hindi inaasahan ang dokumento sa loob ng pangalan ng attribute"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
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:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Nagwakas ng hindi inaasahan ang dokumento matapos ang equal sign na sumunod "
"sa pangalan ng attribute; walang halaga ang attribute"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
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:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Nagwakas ang dokumento ng hindi inaasahan sa loob ng komento o utos ng "
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "Hindi kilalang option %s"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "Hindi suportado ang mga symbolic link"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Hindi suportado ang mga symbolic link"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Error sa linya %d: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Error habang nagco-convert: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: tr\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-11 18:56+0200\n"
"Last-Translator: Baris Cicek <baris@teamforce.name.tr>\n"
"Language-Team: Turkish <gnome-turk@gnome.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: KBabel 1.11.4\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "'%2$s' öğesinde beklenmeyen '%1$s' özniteliği"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "'%2$s' öğesinde '%1$s' özelliği bulunamadı"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Beklenmeyen etiket '%s', '%s' bekleniyordu"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "'%2$s' içinde beklenmeyen etiket '%1$s'"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "Veri dizinlerinde geçerli bir yer imi dosyası bulunamadı"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI '%s' için bir yer imi zaten var"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "URI '%s' için bir yer imi bulunamadı"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI '%s' için yer iminde hiç bir MIME tipi belirtilmedi"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI '%s' için yer iminde özel işareti tanımlanmadı"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI '%s' için yer iminde grup tanımlanmadı"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "'%s' adında hiçbir uygulama '%s' için yer imi kaydetmedi"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Exec satırı '%s' URI %s ile genişletilirken başarısız olundu"
msgid "Error opening directory '%s': %s"
msgstr "'%s' dizini açılamadı: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "%lu bayt \"%s\" dosyasını okumak için ayrılamadı"
msgid "Error reading file '%s': %s"
msgstr "'%s' dosyası okunurken hata: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "'%s' dosyasından okuma başarısız: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "'%s' dosyasını açma başarısız: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
"'%s' dosyasının özniteliklerini alma başarısız: fstat() başarısızlığı: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "'%s' dosyasını açma başarısız: fdopen() başarısızlığı: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr ""
"'%s' dosyasının adı '%s' olarak değiştirilirken hata: g_rename() "
"başarısızlığı: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "'%s' dosyasını oluşturma başarısız: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "'%s' dosyası yazma için açılamadı: fdopen() başarısızlığı: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "'%s' dosyasına yazılamadı: fwrite() başarısızlığı: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "'%s' dosyası kapatılamadı: fclose() başarısızlığı: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Varolan dosya '%s' silinemedi: g_unlink() başarısızlığı: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Şablon '%s' geçersiz, '%s' içermemeli"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Şablon '%s' XXXXXX içermiyor"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "'%s' sembolik bağını okuma başarısız: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Sembolik bağlar desteklenmiyor"
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:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Satır %d karakter %d hatalı: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Satır %d hata içeriyor: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Boş özvarlık '&;' görüldü; geçerli öğeler: & " < &qt; '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"özvarlığı başlatır; eger bu & işareti bir özvarlık değilse, & olarak "
"kullanabilirsiniz"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Özvarlık ismi '%s' bilinmiyor"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"istemeksizin & karakteri kullandınız - & işaretini & olarak "
"kullanabilirsiniz"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Karakter referansı içinde bir rakam olması gereken '%-.*s' ayrıştırılamadı, "
"(örneğin; ê) - rakam çok büyük olabilir"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Karakter referansı '%-.*s' izin verilen karakteri kodlamıyor"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Boş karakter referansı; dž gibi bir rakam içermelidir"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"başlatmak istemeksizin & karakteri kullandınız - & işaretini & olarak "
"kullanabilirsiniz"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Tamamlanmamış özvarlık referansı"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Tamamlanmamış karakter referansı"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Geçersiz UTF-8 kodlanmış metin - çok uzun dizi"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Geçersiz UTF-8 kodlanmış metin - başlangıç karakteri yok"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Geçersiz UTF-8 kodlanmış metin - geçersiz '%s'"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Belge bir öğe ile başlamalı (örneğin <kitap>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'<' karakterinden sonra gelen '%s' geçerli bir karakter değil; bir öğe adı "
"başlatmamalı"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Tuhaf karakter '%s', '%s' öğesinin başlangıç etiketinin sonunda '>' "
"karakteri bekleniyor"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Tuhaf karakter '%1$s', '%3$s' öğesinin '%2$s' özniteliğinin sonunda '=' "
"karakteri bekleniyor"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"veya bir öznitelik bekleniyor; öznitelik isminde geçersiz bir karakter "
"kullanmış olabilirsiniz"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"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:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'</' karakterlerini takip eden '%s' geçerli bir karakter değildir; öğe ismi "
"'%s' ile başlamamalı"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s', kapalı öğe ismi '%s' ardından gelebilecek bir karakter değil; izin "
"verilen karakter ise '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Belge boş veya sadece boşluk karakteri içeriyor"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
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:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Belge öğeleri hala açıkken beklenmedik bir şekilde bitti - son açılan öğe: '%"
"s'"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Belge beklenmedik bir şekilde bitti, etiketi bitiren kapalı açı parantezi "
"ile biten <%s/> beklendi"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Belge bir öğe isminin içinde beklenmedik bir şekilde bitti"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Belge bir öznitelik ismi içinde beklenmedik bir şekilde bitti"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
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:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Belge öznitelik adını takip eden eşittir işaretinden sonra beklenmedik bir "
"şekilde bitti; öznitelik değeri yok"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
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:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Belge, '%s' öğesinin kapama etiketi içinde beklenmedik bir şekilde bitti"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Belge bir yorum veya işlem talimatı içindeyken beklenmedik bir şekilde bitti"
msgid "Operation was cancelled"
msgstr "İşlem iptal edildi"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Bilinmeyen tür"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s dosya türü"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s türü"
msgid "Unexpected early end-of-stream"
msgstr "Beklenmeyen erken akış-sonu"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "İsimlendirilmemiş"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Desktop dosyası Exec alanı belirtmemiş"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Uygulama için gerekli uçbirim bulunamadı"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "Kullanıcı uygulaması yapılandırma klasörü %s oluşturulamıyor: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Kullanıcı MIME yapılandırma klasörü %s oluşturulamıyor: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Kullanıcı masaüstü dosyası %s oluşturulamıyor"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "%s için özel tanım"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "sürücü çıkartmayı uygulamıyor"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "sürücü ortam için yoklamayı uygulamıyor"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "İşlem desteklenmiyor"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Bağlama mevcut değil içeriyor"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Dizin üzerine kopyalanamıyor"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Dizin dizin üzerine kopyalanamıyor"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Hedef dosya mevcut"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Dizin iç içe kopyalanamıyor"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Geçersiz sembolik bağ değeri verildi"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Çöp desteklenmiyor"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Dosy adları '%c' içeremez"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "sistem bağlama uygulamıyor"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Bu dosyayı işlemek için hiçbir uygulama kayıtlı değil"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "mount unmount uygulamıyor"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "mount eject uygulamıyor"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "mount remount uygulamıyor"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "mount unmount uygulamıyor"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Çıktı akışı write uygulamıyor"
msgid "Error closing unix: %s"
msgstr "Unix kapatılırken hata: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Dosya sistemi kök dizini"
msgid "Error writing to unix: %s"
msgstr "Unix'e yazılırken hata: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "volume eject uygulamıyor"
msgstr ""
"Project-Id-Version: libgnome\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "'%s' biremennän uqıp bulmadı: %s"
msgid "Error opening directory '%s': %s"
msgstr "'%s' törgägen açıp bulmadı: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr ""
msgid "Error reading file '%s': %s"
msgstr "'%s' biremen uqığanda xata: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "'%s' biremennän uqıp bulmadı: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "'%s' biremen açıp bulmadı: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "'%s' birem üzençälegen belep bulmadı: fstat() uzmadı: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "'%s' biremen açıp bulmadı: fdopen() uzmadı: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "'%s' birem adın '%s' itep üzgärtep bulmadı: g_rename() uzmadı: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "'%s' biremen yasap bulmadı: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Yazu öçen '%s' biremen açıp bulmadı: fdopen() uzmadı: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "'%s' biremen yazıp bulmadı: fwrite() uzmadı: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "'%s' biremen yabıp bulmadı: fclose() uzmadı: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Barlıqtağı '%s' biremen beterep bulmadı: g_unlink() uzmadı: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "'%s' ürçetmäse yaraqsız, eçendä '%s' bula almí"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "'%s' ürçetmäneñ azağında XXXXXX tügel"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr ""
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr ""
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr ""
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "%d. yulnıñ %d. bilgedä xata: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "%d. yulda xata: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"it as &"
msgstr ""
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr ""
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr ""
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
msgstr ""
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (ê for example) - perhaps the digit is too large"
msgstr ""
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr ""
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"as &"
msgstr ""
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr ""
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr ""
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Yazmanıñ UTF-8 bilgelämäse yaraqsız"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Yazmanıñ UTF-8 bilgelämäse yaraqsız"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Yazmanıñ UTF-8 bilgelämäse yaraqsız"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr ""
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr ""
-#: glib/gmarkup.c:1184
+#: glib/gmarkup.c:1266
#, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"character in an attribute name"
msgstr ""
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, 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:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
msgstr ""
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
msgstr ""
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
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:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr ""
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr ""
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr ""
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr ""
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "Bilgesez %s atlı köylämä"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr ""
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr ""
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "%d. yulda xata: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Äyländergändä xata çıqtı: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-01-25 11:56+0300\n"
"Last-Translator: Maxim Dziumanenko <dziumanenko@gmail.com>\n"
"Language-Team: Ukrainian <uk@li.org>\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Неочікуваний атрибут \"%s\" для елемента \"%s\""
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Атрибут \"%s\" для елемента \"%s\" не існує"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Неочікуваний тег \"%s\", очікувався тег \"%s\""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Неочікуваний тег '%s' у '%s'"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "Не вдається знайти правильний файл закладок у каталогах даних"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Файл закладок для URI '%s' вже існує"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Не знайдено закладки для URI '%s'"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Не визначено тип MIME у закладці для URI '%s'"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Не вказано приватну ознаку у закладці для URI '%s'"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Не встановлено групи у закладці для URI '%s'"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Не зареєстровано програму з назвою '%s' для закладки '%s'"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Помилка розкривання рядка виконання \"%s\" для URI %s"
msgid "Error opening directory '%s': %s"
msgstr "Помилка відкривання каталогу \"%s\": %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Не вдається виділити %lu байтів для зчитування файла \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Помилка зчитування файлу \"%s\": %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Помилка зчитування з файлу \"%s\": %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Помилка відкривання файлу \"%s\": %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Помилка отримання атрибутів файлу \"%s\": помилка fstat(): %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Помилка відкривання файлу \"%s\": помилка fdopen(): %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Помилка перейменування файлу \"%s\" на \"%s\": помилка g_rename(): %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Помилка створення файлу \"%s\": %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Помилка відкривання файлу \"%s\" для запису: помилка fdopen(): %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Помилка запису у файл \"%s\": помилка fwrite(): %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Помилка закривання файлу \"%s\": помилка fclose(): %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Не вдається видалити існуючий файл \"%s\": помилка g_unlink(): %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Шаблон \"%s\" неправильний, бо не може містити \"%s\""
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Шаблон \"%s\" не містить XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f кбайт"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f Мбайт"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f Гбайт"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Помилка читання символічного посилання \"%s\": %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Символічні посилання не підтримуються"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Помилка створення карти файлу \"%s\": помилка mmap(): %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Помилка в рядку %d на символі %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Помилка в рядку %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Виявлено порожній предикат \"&;\"; допустимими предикатами є: & " "
"< > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"\"; якщо цей символ вживається не для позначення початку предикату, то "
"повинен екрануватись як символ &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Символ \"%s\" не допускається в назві предикату"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Назва предикату \"%s\" невідома"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"Предикат не закінчується крапкою з комою; очевидно, що символ & було "
"використано не для позначення початку предикату – екрануйте його як &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"Помилка аналізу '%-.*s', де має бути число у символьному посиланні "
"(наприклад, ê), можливо, число надто велике"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Посилання на символ \"%-.*s\" не визначає дозволений символ"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Порожнє посилання на символ, воно має включати число, наприклад dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"Посилання на символ не закінчується крапкою з комою, схоже символ \"&\" було "
"використано не для позначення початку предикату – екрануйте його як &."
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Незавершене посилання на предикат"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Незавершене посилання на символ"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr ""
"Текст закодований як UTF-8 неприпустимим способом - надто довга послідовність"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr ""
"Текст закодований як UTF-8 неприпустимим способом - некоректний початок "
"символу"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr ""
"Текст закодований як UTF-8 неприпустимим способом - некоректна послідовність "
"'%s'"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Документ має починатися з елемента (наприклад, <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"Символ \"%s\" не дозволяється вживати після символу \"<\", він не може "
"починати назву елемента"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Зайвий символ \"%s\", очікувався символ \">\" для закриття початкового тегу "
"елементу \"%s\""
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Зайвий символ \"%s\", очікувався символ \"=\" після назви ознаки \"%s\" "
"елемента \"%s\""
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"початкового тегу елементу \"%s\", чи додаткова ознака; можливо, було "
"використано неприпустимий символ в назві ознаки"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Зайвий символ \"%s\", очікувались відкриваючі лапки після знаку рівності на "
"присвоєнні значення ознаці \"%s\" елементу \"%s\""
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"Символ \"%s\" неприпустимий після символів \"</\"; символ \"%s\" не може "
"починати назву елементу"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"Символ \"%s\" неприпустимий на закритті назви елемента \"%s\"; припустимим "
"символом є \">\""
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Було закрито не відкритий елемент \"%s\""
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "Було закрито елемент \"%s\", але зараз відрито елемент \"%s\""
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Документ порожній чи містить лише пропуски"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Документ раптово закінчився відразу після початкової кутової дужки \"<\""
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Документ раптово закінчився, коли деякі елементи ще були відкритими – \"%s\" "
"був останнім відкритим елементом"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Документ раптово закінчився, очікувалась кінцева кутова дужка для закриття "
"тегу <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Документ раптово закінчився посеред назви елемента"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Документ раптово закінчився посеред назви ознаки"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Документ раптово закінчився у середині тегу, що відкривав елемент"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Документ раптово закінчився після знака рівності, що йшов за назвою ознаки; "
"значення ознаки не вказано"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Документ раптово закінчився посеред значення ознаки"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"Документ раптово закінчився у середині тегу, що закривав елемент \"%s\""
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "Документ раптово закінчився у середині коментарю чи інструкції обробки"
msgid "Operation was cancelled"
msgstr "Операцію скасовано"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Невідомий тип"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "тип файлу %s"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "тип %s"
msgid "Unexpected early end-of-stream"
msgstr "Неочікуваний передчасний кінець потоку"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Без назви"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "У Desktop-файлі не визначено поле Exec"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Неможливо знайти термінал, що потрібен програмі"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "Не вдається створити теку параметрів програми %s: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Не вдається створити теку параметрів MIME %s: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Не вдається створити для користувача desktop-файл %s"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Власне визначення %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "пристрій не має функції витягування носія"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "пристрій не має функції опитування наявності носія"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Операція не підтримується"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Вкладена точка монтування не існує"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Не вдається копіювати у каталог"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Не вдається копіювати каталог у каталог"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Цільовий файл існує"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Не вдається рекурсивно скопіювати каталог"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Неправильне значення символьного посилання"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Смітник не підтримується"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "назви файлів не можуть містити символ '%c'"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "том не підтримує операцію монтування"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
#, fuzzy
msgid "No application is registered as handling this file"
msgstr "Не зареєстровано програму з назвою що створило закладку"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "для точки монтування не реалізовано операцію відмонтування"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "для точки монтування не реалізовано операцію витягування носія"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "для точки монтування не реалізовано перемонтування"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "для точки монтування не реалізовано операцію відмонтування"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "У потоці виводу не реалізовано операцію запису"
msgid "Error closing unix: %s"
msgstr "Помилка при закриванні unix-сокету: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Корінь файлової системи"
msgid "Error writing to unix: %s"
msgstr "Помилка при записі до unix-сокету: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "том не підтримує операцію витягування носія"
msgstr ""
"Project-Id-Version: glib GNOME TRUNK\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-23 15:50+0700\n"
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: LocFactoryEditor 1.7b1\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "Thuộc tính bất thường « %s » cho yếu tố « %s »"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "Không tìm thấy thuộc tính « %s » của yếu tố « %s »"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "Thẻ bất thường « %s », mong đợi thẻ « %s »"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "Thẻ bất thường « %s » bên trong « %s »"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "Không tìm thấy tập tin liên kết lưu hợp lệ trong các thư mục dữ liệu"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "Một liên kết lưu URI « %s » đã có"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "Không tìm thấy liên kết lưu URI « %s »"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "Chưa xác định kiểu MIME trong liên kết lưu URI « %s »"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "Chưa xác định cờ riêng trong liên kết lưu URI « %s »"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "Chưa đặt nhóm trong liên kết lưu URI « %s »"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "Không có ứng dụng tên « %s » đã đăng ký một liên kết lưu « %s »"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Lỗi mở rộng dòng thực hiện « %s » bằng URI « %s »"
msgid "Error opening directory '%s': %s"
msgstr "Gặp lỗi khi mở thư mục « %s »: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Không thẻ cấp phát %lu byte để đọc tập tin « %s »"
msgid "Error reading file '%s': %s"
msgstr "Gặp lỗi khi đọc tập tin « %s »: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Lỗi đọc từ tập tin « %s »: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Lỗi mở tập tin « %s »: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "Lỗi lấy các thuộc tính của tập tin « %s »: lỗi « fstat() »: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Lỗi mở tập tin « %s »: lỗi « fdopen() »: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Lỗi thay đổi tên tập tin « %s » thành « %s »: lỗi « g_rename() »: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Lỗi tạo tập tin « %s »: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Lỗi mở tập tin « %s »: lỗi « fdopen() »: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Lỗi ghi tập tin « %s »: lỗi « fdopen() »: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Lỗi đóng tập tin « %s »: lỗi « fclose() »: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "Không thể gỡ bỏ tập tin tồn tại « %s »: lỗi « g_unlink() »: %s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Biểu mẫu « %s » không hợp lệ, không nên chứa « %s »"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Biểu mẫu « %s » không chứa XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Lỗi đọc liên kết tượng trưng « %s »: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Không hỗ trợ khả năng sử dụng liên kết tượng trưng"
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:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "Lỗi trên dòng %d ký tự %d: "
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Lỗi trên dòng %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Thấy thực thể rỗng « &; »; những thực thể hợp lệ là: & " < > "
"'"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"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à « "
"& »"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Không biết tên thực thể « %s »"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"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à « & »"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"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. « ê ») — có lẽ chư số quá lớn."
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, 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:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Tham chiếu ký tự trống; nên chứa chữ số như là « dž »."
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"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à « & »"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Tham chiếu thực thể chưa hoàn thành"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Tham chiếu ký tự chưa hoàn thành"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
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:1006
+#: glib/gmarkup.c:1084
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:1042
+#: glib/gmarkup.c:1120
#, 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ệ"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
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:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"« %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:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Ký tự lẻ « %s », mong đợi một dấu ngoặc nhọn đóng « > » để kết thúc thẻ khởi "
"đầu của yếu tố « %s »"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"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:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"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:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"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:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"« %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:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"« %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:1594
+#: glib/gmarkup.c:1676
#, 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:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
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:1777
+#: glib/gmarkup.c:1862
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:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"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:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"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:1799
+#: glib/gmarkup.c:1884
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:1805
+#: glib/gmarkup.c:1890
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:1810
+#: glib/gmarkup.c:1895
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:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"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:1823
+#: glib/gmarkup.c:1908
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:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
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ý"
msgid "Operation was cancelled"
msgstr "Thao tác bị thôi"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "Không rõ kiểu"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "kiểu tập tin %s"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "kiểu %s"
msgid "Unexpected early end-of-stream"
msgstr "Kết thúc luồng sớm bất thường"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "Không có tên"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "Tập tin Desktop không ghi rõ trường Exec (thực hiện)"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "Không tìm thấy thiết bị cuối cần thiết cho ứng dụng"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "Không thể tạo thư mục cấu hình ứng dụng người dùng %s: %s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Không thể tạo thư mục cấu hình MIME người dùng %s: %s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "Không thể tạo tập tin desktop %s"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "Lời định nghĩa riêng cho %s"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "ổ đĩa không thực hiện chức năng đẩy ra"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "ổ đĩa không thực hiện chức năng thăm dò có phương tiện không"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "Thao tác không được hỗ trợ"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "Bộ lắp chứa không tồn tại"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "Không thể sao chép đè lên thư mục"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "Không thể sao chép thư mục đè lên thư mục"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "Tập tin đích đã có"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "Không thể sao chép đệ quy thư mục"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "Đưa ra giá trị liên kết tượng trưng không hợp lệ"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "Thùng rác không được hỗ trợ"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "Tên tập tin không thể chứa « %c »"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
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)"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "Không có ứng dụng đăng ký xử lý tập tin này"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "hàm mount (lắp) không thực hiện hàm unmount (bỏ lắp)"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "hàm mount (lắp) không thực hiện hàm eject (đầy ra)"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "hàm mount (lắp) không thực hiện hàm remount (lắp lại)"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "hàm mount (lắp) không thực hiện hàm unmount (bỏ lắp)"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "Luồng xuất không thực hiện hàm write (ghi)"
msgid "Error closing unix: %s"
msgstr "Gặp lỗi khi đóng UNIX: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "Gốc hệ thống tập tin"
msgid "Error writing to unix: %s"
msgstr "Gặp lỗi khi ghi vào UNIX: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "hàm volume (khối tin) không thực hiện hàm eject (đầy ra)"
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Dji n' a savou lére li loyén simbolike «%s»: %s"
msgid "Error opening directory '%s': %s"
msgstr "Åk n' a nén stî tot drovant l' ridant «%s»: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Dji n' a savou alouwer %lu octets po lére li fitchî «%s»"
msgid "Error reading file '%s': %s"
msgstr "Åk n' a nén stî tot léjhant l' fitchî «%s»: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Dji n' a nén savou lére li fitchî «%s»: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Dji n' a savou drovi li fitchî «%s»: %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
"Dji n' a nén savou aveur les atributs do fitchî «%s»: fstat() a fwait "
"berwete: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Dji n' a savou drovi li fitchî «%s»: fdopen() a fwait berwete: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, fuzzy, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Dji n' a savou drovi li fitchî «%s»: fdopen() a fwait berwete: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Dji n' a savou askepyî l' fitchî «%s»: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, fuzzy, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Dji n' a savou drovi li fitchî «%s»: fdopen() a fwait berwete: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, fuzzy, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Dji n' a savou drovi li fitchî «%s»: fdopen() a fwait berwete: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, fuzzy, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Dji n' a savou drovi li fitchî «%s»: fdopen() a fwait berwete: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "Li patron «%s» n' est nén valide, i n' doet nén aveur on «%s»"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "Li patron «%s» èn finixh nén avou XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Dji n' a savou lére li loyén simbolike «%s»: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Loyéns simbolikes nén sopoirté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:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Aroke el roye %d caractere %d: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Aroke el roye %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Vude intité «&;» di trovêye; les intités valides sont: & " < > "
"'"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"caractere & cmince ene intité; si ç' caractere ampersande doet esse håyné té "
"ké, adon el fåt scrire come « & »"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, 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:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Li no d' intité «%s» n' est nén cnoxhou"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"on caractere ampersande sins vleur sicrire ene intité, dins ç' cas el fåt "
"scrire insi: « ↦ »"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (ê for example) - perhaps the digit is too large"
msgstr ""
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr ""
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr ""
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"as &"
msgstr ""
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr ""
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr ""
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Tecse ecôdé en UTF-8 nén valide"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Tecse ecôdé en UTF-8 nén valide"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, 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:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Li documint doet cmincî avou èn elemint (eg: <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr ""
-#: glib/gmarkup.c:1184
+#: glib/gmarkup.c:1266
#, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"character in an attribute name"
msgstr ""
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, 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:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
msgstr ""
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
msgstr ""
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr ""
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr ""
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Li documint esteut vude ou avou seulmint des blancs"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr ""
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr ""
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr ""
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr ""
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr ""
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr ""
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr ""
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr ""
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "Loyéns simbolikes nén sopoirtés"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Loyéns simbolikes nén sopoirtés"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Aroke el roye %d: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Åk n' a nén stî tot cviersant: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, fuzzy, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
"Uphawu olutenxileyo '%s', lulindele '=' emva kwegama lophawu '%s' "
"lwesiqalelo '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
#, fuzzy
msgid "No valid bookmark file found in data dirs"
msgstr ""
"Iqhosha elisebenzayo lefayili alifumanekanga kwidata yoovimba beefayili"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "Akuphumelelanga ukufunda ikhonkco elingumfuziselo '%s': %s"
msgid "Error opening directory '%s': %s"
msgstr "Impazamo yokuvula uvimba weefayili '%s': %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "Akwazekanga ukwaba %lu ii-byte ukufunda ifayili \"%s\""
msgid "Error reading file '%s': %s"
msgstr "Impazamo yokufunda ifayili '%s': %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "Akuphumelelekanga ukufunda ifayili '%s': %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "Akuphumelelekanga ukuvula ifayili '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr ""
"Akuphumelelekanga ukufumana iimpawu zefayili '%s': fstat() "
"akuphumelelekanga: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "Akuphumelelekanga ukuvula ifayili '%s': fdopen() akuphumelelekanga: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, fuzzy, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "Akuphumelelekanga ukuvula ifayili '%s': fdopen() akuphumelelekanga: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "Akuphumelelekanga ukudala ifayili '%s': %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, fuzzy, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "Akuphumelelekanga ukuvula ifayili '%s': fdopen() akuphumelelekanga: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, fuzzy, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "Akuphumelelekanga ukuvula ifayili '%s': fdopen() akuphumelelekanga: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, fuzzy, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "Akuphumelelekanga ukuvula ifayili '%s': fdopen() akuphumelelekanga: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "I-Template '%s' ayisebenzi, kufuneka ingaqulathi i '%s'"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "I-Template '%s' ayipheli ngo XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "Akuphumelelanga ukufunda ikhonkco elingumfuziselo '%s': %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "Ikhonkco elingumfuziselo alixhaswanga"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "Akuphumelelekanga ukuvula ifayili '%s': fdopen() akuphumelelekanga: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "Impazamo emgceni %d uphawu %d: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "Impazamo emgceni %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"Into ezimeleyo eze '&;' ebonwayo; izinto ezizimeleyo ezisebenzayo: & "
"" < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"into ezimeleyo; ukuba le ampersand ayifanelanga ukuba yinto ezimeleyo, "
"yiphephise njenge &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "Uphawu '%s' alusebenzi ngaphakathi kwegama lento ezimeleyo"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "Igama lento ezimeleyo '%s' alaziwa"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"lwe- ampersand ungazimiselanga ukuqala into ezimeleyo - phepha i- ampersand "
"njenge &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"ngaphakathi kophawu lokuthumela (ê umzekelo) - mhlawumbi umvo mkhulu "
"kakhulu"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "Uphawu lokuthumela '%-.*s' alulunxulumanisi uphawu olunemvume"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "Uphawu lokuthumela oluze; kufuneka luquke umvo ofana nalo dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"uphawu lwe- ampersand ungenanjongo yokuqala into ezimeleyo - phepha i- "
"ampersand njenge &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "Into ezimeleyo yokuthumela engagqitywanga"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "Uphawu lokuthumela olungagqitywanga"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "Umbhalo onxulumanisayo ongasebenziyo we- UTF-8"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "Umbhalo onxulumanisayo ongasebenziyo we- UTF-8"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "Umbhalo onxulumanisayo ongasebenziyo we- UTF-8"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "Uxwebhu kufuneka luqale ngesiqalelo (umzkl. <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' asilophawu elisebenzayo elilandela u '<' uphawu; linokungaqali igama "
"lesiqalelo"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"Uphawu olutenxileyo '%s', lulindele '>' uphawu lokuphelisa ilebhile "
"yokuqalisa isiqalelo '%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"Uphawu olutenxileyo '%s', lulindele '=' emva kwegama lophawu '%s' "
"lwesiqalelo '%s'"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"ilebhile yokuqala isiqalelo '%s', okanye ngokhetho lophawu; mhlawumbi "
"usebenzise uphawu olungasebenziyo kwigama lophawu"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"Uphawu olutenxileyo '%s', lulindele uphawu locaphulo oluvulekileyo emva "
"kweempawu zokulingana xa kunikwa ixabiso lophawu '%s' lwesiqalelo '%s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' asilophawu olusebenzayo ukulandela iimpawu '</'; '%s' linokungaqali "
"igama lesiqalelo"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' asilophawu olusebenzayo ukulandela igama lesiqalelo elikufuphi '%s'; "
"uphawu oluvunyelweyo lolu '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "Isiqalelo '%s' besivaliwe, akukho siqalelo sivuliweyo njengangoku"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, 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:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "Uxwebhu beluze okanye luqulathe isikhewu esimhlophe kuphela"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr ""
"Uxwebhu luphele ngesiquphe kanye emva kwesibiyeli sedolo elivulekileyo '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"Uxwebhu luphele ngesiquphe xeshikweni iziqalelo bezisavulile - '%s' "
"isiqalelo sokugqibela besivuliwe"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"Uxwebhu luphele ngesiquphe, kulindelwe ukubona isibiyeli sedolo elivaliweyo "
"esiphelisa ilebhile <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "Uxwebhu luphele ngesiquphe ngaphakathi kwegama lesiqalelo"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "Uxwebhu luphele ngesiquphe ngaphakathi kwegama lophawu"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "Uxwebhu luphele ngesiquphe ngaphakathi kwelebhile evula isiqalelo."
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"Uxwebhu luphele ngesiquphe emva kokuba uphawu lokulingana lulandele igama "
"lophawu; kungekho xabiso lophawu"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "Uxwebhu luphele ngesiquphe xeshikweni lungaphakathi kwexabiso lophawu"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, 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:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"Uxwebhu luphele ngesiquphe ngaphaikathi komyalelo wezimvo okanye inkqubo"
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
#, fuzzy
msgid "Unknown type"
msgstr "Ukhetho olungaziwayo %s"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
#, fuzzy
msgid "Operation not supported"
msgstr "Ikhonkco elingumfuziselo alixhaswanga"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
#, fuzzy
msgid "Trash not supported"
msgstr "Ikhonkco elingumfuziselo alixhaswanga"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "Impazamo emgceni %d: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "Impazamo ngelixa lenguqulo: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: 1.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-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"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, fuzzy, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr ""
"מאָדנע שריפֿטצײכן '%s'; דערװאַרט אַ '=' שריפֿטצײכן נאָך אַטריבוט־נאָמען %s פֿונעם "
"עלעמענט '%s'"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr ""
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr ""
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr ""
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr ""
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr ""
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, fuzzy, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "ניט געקענט שאַפֿן טעקע %s: %s"
msgid "Error opening directory '%s': %s"
msgstr "דורכפֿאַל אין עפֿענען פּאַפּקע %s: %s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "ניט געקענט אױסטײלן %lu אַכטעלעך צו לײענען טעקע %s"
msgid "Error reading file '%s': %s"
msgstr "דורכפֿאַל אין לײענען טעקע %s: %s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "ניט געקענט לײענען טעקע %s: %s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "ניט געקענט עפֿענען טעקע '%s': %s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "ניט געקענט באַקומען אַטריבוטן פֿון טעקע %s: fstat() איז דורכגעפֿאַלן: %s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "ניט געקענט עפֿענען טעקע %s: fdopen() איז דורכגעפֿאַלן: %s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, fuzzy, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "ניט געקענט עפֿענען טעקע %s: fdopen() איז דורכגעפֿאַלן: %s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "ניט געקענט שאַפֿן טעקע %s: %s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, fuzzy, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "ניט געקענט עפֿענען טעקע %s: fdopen() איז דורכגעפֿאַלן: %s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, fuzzy, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "ניט געקענט עפֿענען טעקע %s: fdopen() איז דורכגעפֿאַלן: %s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, fuzzy, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "ניט געקענט עפֿענען טעקע %s: fdopen() איז דורכגעפֿאַלן: %s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "מוסטער %s אומלעקסיק, טאָר ניט כּולל זײַן %s"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, fuzzy, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "מוסטער %s ענדיקט זיך ניט מיט XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr ""
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr ""
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr ""
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, fuzzy, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "ניט געקענט שאַפֿן טעקע %s: %s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr ""
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "ניט געקענט עפֿענען טעקע %s: fdopen() איז דורכגעפֿאַלן: %s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, fuzzy, c-format
msgid "Error on line %d char %d: "
msgstr "דורכפֿאַל אױף שורה %d פּאָזיציע %d: %s"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "דורכפֿאַל אױף שורה %d: %s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"לײדיקער אײנס '&;' געזען; לעקסיקע אײנסן זײַנען: & " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"שריפֿטצײכן %s איז ניט לעקסיק צום אָנהײב פֿון אַן אײנסנאָמען; דער & שריפֿטצײכן הײבט "
"אַן אײנס אָן; אױב מיט דעם דאָזיקן & מײנט מען ניט קײן אײנס, נאָרמאַליר אים װי &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "שריפֿטצײכן %s איז אומלעקסיק אין מיטן פֿון אַן אײנסנאָמען"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "אײנסנאָמען %s איז ניט באַקאַנט"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"אײנס האָט זיך ניט געענדיקט מיט קײן \";\". מסתּמא האָט מען געשריבן אַן & "
"שריפֿטצײכן אָן דער כּװנה אָנצוהײבן אַן אײנס. נאָרמאַליר & װי &"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, fuzzy, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"דורכפֿאַל אין אַנאַליזירן '%s', װאָס זאָל האָבן אַ ציפֿער אין דער שריפֿטצײכן־רעפֿערענץ "
"(למשל ê); אפֿשר איז דער ציפֿער צו גרױס"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, fuzzy, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "שריפֿטצײכן־רעפֿערענץ '%s' קאָדירט ניט קײן דערלאָזטן שריפֿטצײכן"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "נוליקע שריפֿטצײכן־רעפֿערענץ; מוז כּולל זײַן אַ ציפֿער, װי dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"שריפֿטצײכן־רעפֿערענץ האָט זיך ניט געענדיקט מיט קײן \";\". מסתּמא האָט מען געשריבן "
"אַן & שריפֿטצײכן אָן דער כּװנה אָנצוהײבן אַן אײנס. נאָרמאַליר & װי &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "ניט־געענדיקט אײנס־רעפֿערענץ"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "ניט־געענדיקט שריפֿטצײכן־רעפֿערענץ"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "אומלעקסיק UTF־8 קאָדירטער טעקסט"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "אומלעקסיק UTF־8 קאָדירטער טעקסט"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "אומלעקסיק UTF־8 קאָדירטער טעקסט"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "דאָקומענט מוז אָנהײבן מיט אַן עלעמענט (װי למשל <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"'%s' איך ניט קײן לעקסיקער שריפֿטצײכן נאָך אַ '<' שריפֿטצײכן;עס טאָר ניט אָנהײבן "
"קײן אײנסנאָמען"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr ""
"מאָדנע שריפֿטצײכן '%s'; דערװאַרט אַ '>' שריפֿטצײכן צו ענדיקן דעם אָנהײב־הענטל "
"פֿונעם עלעמענט '%s'"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
"מאָדנע שריפֿטצײכן '%s'; דערװאַרט אַ '=' שריפֿטצײכן נאָך אַטריבוט־נאָמען %s פֿונעם "
"עלעמענט '%s'"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"אָנהײב־הענטל פֿונעם עלעמענט '%s'; אפֿשר האָט מען געלײגט אַן אומלעקסיקן שריפֿטצײכן "
"אין אַן אַטריבוט־נאָמען"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"מאָדנע שריפֿטצײכן '%s'; דערװאַרט אַ '\"' נאָך דעם '=' צו באַשטעטיקן דעם באַטרעף פֿון "
"אַטריבוט '%s' פֿונעם עלעמענט '%s'"
-#: glib/gmarkup.c:1543
+#: glib/gmarkup.c:1625
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"'%s' איז ניט קײן לעקסיקער שריפֿטצײכן נאָך די שריפֿטצײכנס '</'; '%s' טאָר ניט "
"אָנהײבן קײן עלעמענט־נאָמען"
-#: glib/gmarkup.c:1583
+#: glib/gmarkup.c:1665
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"'%s' איז ניט קײן לעקסיקער שריפֿטצײכן נאָך דעם שלאָס־עלעמענט נאָמען '%s'; מען מוז "
"שטעלן '>'"
-#: glib/gmarkup.c:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "עלעמענט '%s' איז פֿאַרמאַכט; קײן עלעמענט איז דערװײַל אָפֿן"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "עלעמענט '%s' איז פֿאַרמאַכט; דער איצטיקער אָפֿענער עלעמענט איז '%s'"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "דאָקומענט איז פּוסט אָדער איז כּולל בלױז לײדיק אָרט"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "דאָקומענט ענדיקט זיך אומגעריכטערהײט נאָך אַן עפֿן־צײכן '<'"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"דאָקומענט ענדיקט זיך אומגעריכטערהײט מיט אָפֿענע עלעמענטן; '%s' איז געװען דער "
"לעצט־געעפֿנטער עלעמענט"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"דאָקומענט ענדיקט זיך אומגעריכטערהײט; דערװאַרט אַ שלאָס־צײכן '>' צו ענדיקן דעם "
"הענטל <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "דאָקומענט ענדיקט זיך אומגעריכטערהײט אין דרינען פֿון אַן עלעמענט־נאָמען"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "דאָקומענט ענדיקט זיך אומגעריכטערהײט אין דרינען פֿון אַן אַטריבוט־נאָמען"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "דאָקומענט ענדיקט זיך אומגעריכטערהײט אין דרינען פֿון אַן עלעמענט־עפֿן הענטל"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
"דאָקומענט ענדיקט זיך אומגעריכטערהײט נאָך דעם '=' שריפֿטצײכן נאָך אַן "
"אַטריבוט־נאָמען אָן קײן אַטריבוט־באַטרעף"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "דאָקומענט ענדיקט זיך אומגעריכטערהײט אין דרינען פֿון אַן אַטריבוט־באַטרעף"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr ""
"דאָקומענט ענדיקט זיך אומגעריכטערהײט אין דרינען פֿון דעם שלאָס־הענטל פֿון עלעמענט "
"'%s'"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr ""
"דאָקומענט ענדיקט זיך אומגעריכטערהײט אין דרינען פֿון אַ קאָמענטאַר אָדער אַ "
msgid "Operation was cancelled"
msgstr ""
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr ""
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr ""
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr ""
msgid "Unexpected early end-of-stream"
msgstr ""
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr ""
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr ""
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr ""
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr ""
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr ""
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr ""
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr ""
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr ""
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr ""
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr ""
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr ""
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr ""
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr ""
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr ""
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr ""
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr ""
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr ""
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr ""
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr ""
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+msgid "mount doesn't implement content type guessing"
+msgstr ""
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr ""
msgid "Error closing unix: %s"
msgstr "דורכפֿאַל אױף שורה %d: %s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr ""
msgid "Error writing to unix: %s"
msgstr "דורכפֿאַל בשעת פֿאַרװאַנדלונג: %s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr ""
msgstr ""
"Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-02 20:10-0400\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-03-13 10:20+0800\n"
"Last-Translator: Deng Xiyue <manphiz@gmail.com>\n"
"Language-Team: i18n-zh <i18n-zh@googlegroups.com>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0\n"
-#: glib/gbookmarkfile.c:728 glib/gbookmarkfile.c:805 glib/gbookmarkfile.c:884
-#: glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "元素“%2$s”的意外属性“%1$s”"
-#: glib/gbookmarkfile.c:739 glib/gbookmarkfile.c:816 glib/gbookmarkfile.c:826
-#: glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "元素“%2$s”的属性“%1$s”未找到"
-#: glib/gbookmarkfile.c:1112 glib/gbookmarkfile.c:1177
-#: glib/gbookmarkfile.c:1241 glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "意外标签“%s”,需要标签“%s”"
-#: glib/gbookmarkfile.c:1137 glib/gbookmarkfile.c:1151
-#: glib/gbookmarkfile.c:1219 glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "“%2$s”的意外标签“%1$s”"
-#: glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "无法在数据目录中找到有效的书签文件"
-#: glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI“%s”的书签已经存在"
-#: glib/gbookmarkfile.c:2045 glib/gbookmarkfile.c:2202
-#: glib/gbookmarkfile.c:2287 glib/gbookmarkfile.c:2367
-#: glib/gbookmarkfile.c:2452 glib/gbookmarkfile.c:2535
-#: glib/gbookmarkfile.c:2613 glib/gbookmarkfile.c:2692
-#: glib/gbookmarkfile.c:2734 glib/gbookmarkfile.c:2831
-#: glib/gbookmarkfile.c:2957 glib/gbookmarkfile.c:3147
-#: glib/gbookmarkfile.c:3223 glib/gbookmarkfile.c:3388
-#: glib/gbookmarkfile.c:3477 glib/gbookmarkfile.c:3567
-#: glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "未找到 URI“%s”的书签"
-#: glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI“%s”的书签未定义 MIME 类型"
-#: glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI“%s”的书签未定义私有标志"
-#: glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI“%s”的书签未设定组"
-#: glib/gbookmarkfile.c:3241 glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "没有名为“%s”的应用程序为“%s”注册书签"
-#: glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "用 URI “%2$s”展开 exec 行“%1$s”失败"
msgid "Error opening directory '%s': %s"
msgstr "打开目录“%s”时发生错误:%s"
-#: glib/gfileutils.c:557 glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "无法分配 %lu 字节以读取文件“%s”"
msgid "Error reading file '%s': %s"
msgstr "读取文件“%s”出错:%s"
-#: glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "读取文件“%s”失败:%s"
-#: glib/gfileutils.c:705 glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "打开文件“%s”失败:%s"
-#: glib/gfileutils.c:722 glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "获得文件“%s”的属性失败:fstat() 失败:%s"
-#: glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "打开文件“%s”失败:fdopen() 失败:%s"
-#: glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "将文件“%s”重命名为“%s”失败:g_rename() 失败:%s"
-#: glib/gfileutils.c:932 glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "创建文件“%s”失败:%s"
-#: glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "打开文件“%s”写入失败:fdopen() 失败:%s"
-#: glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "写入文件“%s”失败:fwrite() 失败:%s"
-#: glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "关闭文件“%s”失败:fclose() 失败:%s"
-#: glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "无法删除已有文件“%s”:g_unlink() 失败:%s"
-#: glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "模板“%s”无效,不应该包含“%s”"
-#: glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "模板“%s”的不包含 XXXXXX"
-#: glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "读取符号链接“%s”失败:%s"
-#: glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "不支持符号链接"
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "映射文件“%s”失败:mmap() 失败:%s"
-#: glib/gmarkup.c:234 glib/gmarkup.c:250
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "第%d行第%d个字符出错:"
-#: glib/gmarkup.c:344
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "第%d行出错:%s"
-#: glib/gmarkup.c:448
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr "发现空的实体“&;”。有效的实体为:& " < > '"
-#: glib/gmarkup.c:458
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"字符“%s”出现在实体名的开头无效。实体都以 & 字符 开头,如果这个 & 不是一个实体"
"的开头,把它变为 &"
-#: glib/gmarkup.c:492
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "字符“%s”在实体名中无效"
-#: glib/gmarkup.c:529
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "未知的实体名“%s”"
-#: glib/gmarkup.c:540
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"实体没有以分号结束。很可能您使用了 & 字符而又不是一个实体 - 将这个 & 变为 "
"&"
-#: glib/gmarkup.c:593
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (ê for example) - perhaps the digit is too large"
msgstr "分析“%-.*s”失败。它应该是字符引用中的数字(如ê) - 可能该数字太大了"
-#: glib/gmarkup.c:618
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "字符引用“%-.*s”不是编码一个被允许的字符"
-#: glib/gmarkup.c:633
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "空的字符引用;应该包括数字,如 dž"
-#: glib/gmarkup.c:643
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"字符引用没有以分号结束。很可能您使用了 & 字符而又不是一个实体 - 将这个 & 变"
"为 &"
-#: glib/gmarkup.c:729
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "未完成的实体引用"
-#: glib/gmarkup.c:735
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "未完成的字符引用"
-#: glib/gmarkup.c:978
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "无效的 UTF-8 编码文本 - 序列过长"
-#: glib/gmarkup.c:1006
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "无效的 UTF-8 编码文本 - 非开始字符"
-#: glib/gmarkup.c:1042
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "无效的 UTF-8 编码文本 - “%s”无效"
-#: glib/gmarkup.c:1080
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "文档必须以一个元素开始(例如 <book>)"
-#: glib/gmarkup.c:1120
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "“%s”出现在字符“<”后是无效字符;它不能作为元素名的开头"
-#: glib/gmarkup.c:1184
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr "字符“%s”无效,应该以字符“>”来结束元素“%s”的起始标记"
-#: glib/gmarkup.c:1273
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "字符“%s”无效,在属性名“%s”(元素“%s”)的后应该是字符“=”"
-#: glib/gmarkup.c:1315
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"字符“%s”无效,应该以“>”或“/”结束元素“%s”的起始标记,或紧跟该元素的属性;可能"
"您在属性名中使用了无效字符"
-#: glib/gmarkup.c:1401
+#: glib/gmarkup.c:1483
#, 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:1543
+#: glib/gmarkup.c:1625
#, 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:1583
+#: glib/gmarkup.c:1665
#, 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:1594
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "元素“%s”已经结束,没有未结束的元素"
-#: glib/gmarkup.c:1603
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "元素“%s”已经结束,当前未结束的元素是“%s”"
-#: glib/gmarkup.c:1763
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "文档为空或仅含空白字符"
-#: glib/gmarkup.c:1777
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "文档在一个打开的尖括号“<”后意外结束"
-#: glib/gmarkup.c:1785 glib/gmarkup.c:1830
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr "文档在还存在未结束元素时意外结束 - 最后的未结束元素是“%s”"
-#: glib/gmarkup.c:1793
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr "文档意外结束,应该以右尖括号“>”来结束标记 <%s/>"
-#: glib/gmarkup.c:1799
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "文档在元素名中意外结束"
-#: glib/gmarkup.c:1805
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "文档在属性名中意外结束"
-#: glib/gmarkup.c:1810
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "文档在元素起始标记中意外结束"
-#: glib/gmarkup.c:1816
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr "文档在跟在属性名后的等号后意外结束;没有属性值"
-#: glib/gmarkup.c:1823
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "文档在属性值中意外结束"
-#: glib/gmarkup.c:1839
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "文档在元素“%s”结束标记中意外结束"
-#: glib/gmarkup.c:1845
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "文档在注释或处理指令中意外结束"
msgid "Operation was cancelled"
msgstr "操作被取消"
-#: gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "未知类型"
-#: gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s 文件类型"
-#: gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s 类型"
msgid "Unexpected early end-of-stream"
msgstr "非预期的过早的流结束符"
-#: gio/gdesktopappinfo.c:430 gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "未命名"
-#: gio/gdesktopappinfo.c:607
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "桌面文件未指定 Exec 区域"
-#: gio/gdesktopappinfo.c:901
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "无法找到应用程序需要的终端"
-#: gio/gdesktopappinfo.c:1133
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "无法创建用户应用程序配置文件夹 %s:%s"
-#: gio/gdesktopappinfo.c:1137
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "无法创建用户 MIME 配置文件夹 %s:%s"
-#: gio/gdesktopappinfo.c:1476
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "无法创建用户桌面文件 %s"
-#: gio/gdesktopappinfo.c:1551
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "%s 的自制定定义"
-#: gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "驱动未实现探出"
-#: gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "驱动未实现媒体轮询"
-#: gio/gfile.c:817 gio/gfile.c:1045 gio/gfile.c:1178 gio/gfile.c:1409
-#: gio/gfile.c:1462 gio/gfile.c:1518 gio/gfile.c:1600 gio/gfile.c:2657
-#: gio/gfile.c:2708 gio/gfile.c:2836 gio/gfile.c:2876 gio/gfile.c:3200
-#: gio/gfile.c:3602 gio/gfile.c:3685 gio/gfile.c:3768 gio/gfile.c:3848
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "不支持该操作"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: gio/gfile.c:1297 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "包含的挂载不存在"
-#: gio/gfile.c:1939 gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "无法复制目录"
-#: gio/gfile.c:1999
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "无法将目录复制到目录"
-#: gio/gfile.c:2007 gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "目标文件已存在"
-#: gio/gfile.c:2025
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "无法递归复制目录"
-#: gio/gfile.c:2826
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "给出的符号链接值无效"
-#: gio/gfile.c:2919
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "不支持垃圾箱"
-#: gio/gfile.c:2966
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "文件名不能包含“%c”"
-#: gio/gfile.c:4932 gio/gvolume.c:359
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "卷未实现挂载"
-#: gio/gfile.c:5040
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "没有注册为处理此文件的应用程序"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: gio/gmount.c:346
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "挂载未实现卸载"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: gio/gmount.c:421
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "挂载未实现弹出"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: gio/gmount.c:503
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "挂载没有实现重新挂载"
+#. Translators: This is an error
+#. * message for mount objects that
+#. * don't implement content type guessing.
+#: gio/gmount.c:600
+#, fuzzy
+msgid "mount doesn't implement content type guessing"
+msgstr "挂载未实现卸载"
+
#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "输出流未实现写入"
msgid "Error closing unix: %s"
msgstr "关闭 unix 出错:%s"
-#: gio/gunixmounts.c:1789 gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "文件系统根目录"
msgid "Error writing to unix: %s"
msgstr "写入 unix 出错:%s"
-#: gio/gvolume.c:425
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "卷未实现弹出"
msgstr ""
"Project-Id-Version: glib 2.17.3\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-14 16:27+0800\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2008-07-14 16:27+0800\n"
"Last-Translator: Woodman Tuen <wmtuen@gmail.com>\n"
"Language-Team: Chinese (Hong Kong) <community@linuxhall.org>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0\n"
-#: ../glib/gbookmarkfile.c:728 ../glib/gbookmarkfile.c:805
-#: ../glib/gbookmarkfile.c:884 ../glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "元素‘%2$s’中的不明屬性‘%1$s’"
-#: ../glib/gbookmarkfile.c:739 ../glib/gbookmarkfile.c:816
-#: ../glib/gbookmarkfile.c:826 ../glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "找不到元素‘%2$s’的屬性‘%1$s’"
-#: ../glib/gbookmarkfile.c:1112 ../glib/gbookmarkfile.c:1177
-#: ../glib/gbookmarkfile.c:1241 ../glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "不明的標籤‘%s’,應為標籤‘%s’"
-#: ../glib/gbookmarkfile.c:1137 ../glib/gbookmarkfile.c:1151
-#: ../glib/gbookmarkfile.c:1219 ../glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "‘%2$s’中有不明的標籤‘%1$s’"
-#: ../glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "在資料目錄中找不到有效的書籤檔案"
-#: ../glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI‘%s’的書籤已經存在"
-#: ../glib/gbookmarkfile.c:2045 ../glib/gbookmarkfile.c:2202
-#: ../glib/gbookmarkfile.c:2287 ../glib/gbookmarkfile.c:2367
-#: ../glib/gbookmarkfile.c:2452 ../glib/gbookmarkfile.c:2535
-#: ../glib/gbookmarkfile.c:2613 ../glib/gbookmarkfile.c:2692
-#: ../glib/gbookmarkfile.c:2734 ../glib/gbookmarkfile.c:2831
-#: ../glib/gbookmarkfile.c:2957 ../glib/gbookmarkfile.c:3147
-#: ../glib/gbookmarkfile.c:3223 ../glib/gbookmarkfile.c:3388
-#: ../glib/gbookmarkfile.c:3477 ../glib/gbookmarkfile.c:3567
-#: ../glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "找不到 URI‘%s’的書籤"
-#: ../glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI‘%s’的書籤中沒有定義 MIME 類型"
-#: ../glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI‘%s’的書籤中沒有定義 private flag"
-#: ../glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI‘%s’的書籤中並沒有設定羣組"
-#: ../glib/gbookmarkfile.c:3241 ../glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "沒有一個名為‘%s’的應用程式註冊一個書籤給‘%s’"
-#: ../glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "以 URI‘%2$s’ 展開 exec 行‘%1$s’失敗"
-#: ../glib/gconvert.c:431 ../glib/gconvert.c:509 ../glib/giochannel.c:1158
+#: glib/gconvert.c:431 glib/gconvert.c:509 glib/giochannel.c:1158
#, c-format
msgid "Conversion from character set '%s' to '%s' is not supported"
msgstr "不支援將字符集‘%s’轉換成‘%s’"
-#: ../glib/gconvert.c:435 ../glib/gconvert.c:513
+#: glib/gconvert.c:435 glib/gconvert.c:513
#, c-format
msgid "Could not open converter from '%s' to '%s'"
msgstr "無法將‘%s’轉換至‘%s’"
-#: ../glib/gconvert.c:632 ../glib/gconvert.c:1017 ../glib/giochannel.c:1330
-#: ../glib/giochannel.c:1372 ../glib/giochannel.c:2216 ../glib/gutf8.c:956
-#: ../glib/gutf8.c:1405
+#: glib/gconvert.c:632 glib/gconvert.c:1017 glib/giochannel.c:1330
+#: glib/giochannel.c:1372 glib/giochannel.c:2216 glib/gutf8.c:956
+#: glib/gutf8.c:1405
msgid "Invalid byte sequence in conversion input"
msgstr "轉換輸入資料時遇到不正確的位元組組合"
-#: ../glib/gconvert.c:638 ../glib/gconvert.c:944 ../glib/giochannel.c:1337
-#: ../glib/giochannel.c:2228
+#: glib/gconvert.c:638 glib/gconvert.c:944 glib/giochannel.c:1337
+#: glib/giochannel.c:2228
#, c-format
msgid "Error during conversion: %s"
msgstr "轉換時發生錯誤:%s"
-#: ../glib/gconvert.c:669 ../glib/gutf8.c:952 ../glib/gutf8.c:1156
-#: ../glib/gutf8.c:1297 ../glib/gutf8.c:1401
+#: glib/gconvert.c:669 glib/gutf8.c:952 glib/gutf8.c:1156 glib/gutf8.c:1297
+#: glib/gutf8.c:1401
msgid "Partial character sequence at end of input"
msgstr "輸入資料結束時字符仍未完整"
-#: ../glib/gconvert.c:919
+#: glib/gconvert.c:919
#, c-format
msgid "Cannot convert fallback '%s' to codeset '%s'"
msgstr "無法將後備字串‘%s’的字符集轉換成‘%s’"
-#: ../glib/gconvert.c:1734
+#: glib/gconvert.c:1734
#, c-format
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
msgstr "URI‘%s’不是使用“file”格式的絕對 URI"
-#: ../glib/gconvert.c:1744
+#: glib/gconvert.c:1744
#, c-format
msgid "The local file URI '%s' may not include a '#'"
msgstr "本機檔案的 URI‘%s’不應含有‘#’"
-#: ../glib/gconvert.c:1761
+#: glib/gconvert.c:1761
#, c-format
msgid "The URI '%s' is invalid"
msgstr "URI‘%s’無效"
-#: ../glib/gconvert.c:1773
+#: glib/gconvert.c:1773
#, c-format
msgid "The hostname of the URI '%s' is invalid"
msgstr "URI‘%s’中的主機名稱無效"
-#: ../glib/gconvert.c:1789
+#: glib/gconvert.c:1789
#, c-format
msgid "The URI '%s' contains invalidly escaped characters"
msgstr "URI‘%s’含有「不正確跳出」的字符"
-#: ../glib/gconvert.c:1884
+#: glib/gconvert.c:1884
#, c-format
msgid "The pathname '%s' is not an absolute path"
msgstr "路徑名稱‘%s’不是絕對路徑"
-#: ../glib/gconvert.c:1894
+#: glib/gconvert.c:1894
msgid "Invalid hostname"
msgstr "主機名稱無效"
-#: ../glib/gdir.c:109 ../glib/gdir.c:129
+#: glib/gdir.c:109 glib/gdir.c:129
#, c-format
msgid "Error opening directory '%s': %s"
msgstr "開啟目錄‘%s’時發生錯誤:%s"
-#: ../glib/gfileutils.c:557 ../glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "無法配置 %lu 位元來讀取檔案“%s”"
-#: ../glib/gfileutils.c:572
+#: glib/gfileutils.c:572
#, c-format
msgid "Error reading file '%s': %s"
msgstr "讀取檔案‘%s’時發生錯誤:%s"
-#: ../glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "讀取檔案‘%s’失敗:%s"
-#: ../glib/gfileutils.c:705 ../glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "開啟檔案‘%s’失敗:%s"
-#: ../glib/gfileutils.c:722 ../glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "獲取檔案‘%s’的屬性失敗:fstat() 失敗:%s"
-#: ../glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "開啟檔案‘%s’失敗:fdopen() 失敗:%s"
-#: ../glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "檔案名稱由‘%s’改為‘%s’失敗:g_rename() 失敗:%s"
-#: ../glib/gfileutils.c:932 ../glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "建立檔案‘%s’失敗:%s"
-#: ../glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "開啟檔案‘%s’作寫入失敗:fdopen() 失敗:%s"
-#: ../glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "寫入檔案‘%s’失敗:fwrite() 失敗:%s"
-#: ../glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "關閉檔案‘%s’失敗:fclose() 失敗:%s"
-#: ../glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "現存檔案‘%s’無法移除:g_unlink() 失敗:%s"
-#: ../glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "樣式‘%s’無效,不應含有‘%s’"
# (Abel) this is file template for mktemp/mkstemp
-#: ../glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "檔案樣式‘%s’沒有包含 XXXXXX"
-#: ../glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: ../glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: ../glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: ../glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "讀取符號連結‘%s’失敗:%s"
-#: ../glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "不支援符號連結"
-#: ../glib/giochannel.c:1162
+#: glib/giochannel.c:1162
#, c-format
msgid "Could not open converter from '%s' to '%s': %s"
msgstr "無法開啟將‘%s’轉換至‘%s’的轉換器:%s"
-#: ../glib/giochannel.c:1507
+#: glib/giochannel.c:1507
msgid "Can't do a raw read in g_io_channel_read_line_string"
msgstr "在 g_io_channel_read_line_string 中無法讀取原始資料"
-#: ../glib/giochannel.c:1554 ../glib/giochannel.c:1812
-#: ../glib/giochannel.c:1899
+#: glib/giochannel.c:1554 glib/giochannel.c:1812 glib/giochannel.c:1899
msgid "Leftover unconverted data in read buffer"
msgstr "用來讀取資料的緩衝區中仍有未轉換的資料"
-#: ../glib/giochannel.c:1635 ../glib/giochannel.c:1712
+#: glib/giochannel.c:1635 glib/giochannel.c:1712
msgid "Channel terminates in a partial character"
msgstr "在字符未完整之前,輸入管道已經結束"
-#: ../glib/giochannel.c:1698
+#: glib/giochannel.c:1698
msgid "Can't do a raw read in g_io_channel_read_to_end"
msgstr "g_io_channel_read_to_end 中無法讀取原始資料"
-#: ../glib/gmappedfile.c:116
+#: glib/gmappedfile.c:116
#, c-format
msgid "Failed to open file '%s': open() failed: %s"
msgstr "開啟檔案‘%s’失敗:open() 失敗:%s"
-#: ../glib/gmappedfile.c:193
+#: glib/gmappedfile.c:193
#, c-format
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "對應檔案‘%s’失敗:mmap() 失敗:%s"
-#: ../glib/gmarkup.c:269 ../glib/gmarkup.c:285
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "第 %d 行第 %d 個字發生錯誤:"
-#: ../glib/gmarkup.c:379
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "第 %d 行發生錯誤:%s"
-#: ../glib/gmarkup.c:483
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr "出現空白的實體‘&;’;可用的實體為:& " < > '"
-#: ../glib/gmarkup.c:493
+#: glib/gmarkup.c:493
#, 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 &"
-msgstr "實體名稱不應以‘%s’開始,應該使用 & 字符;如果這個 & 字符不是作為實體使用,請將 & 轉換為 &"
+msgstr ""
+"實體名稱不應以‘%s’開始,應該使用 & 字符;如果這個 & 字符不是作為實體使用,請"
+"將 & 轉換為 &"
-#: ../glib/gmarkup.c:527
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "實體名稱中不應含有字符‘%s’"
-#: ../glib/gmarkup.c:564
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "實體名稱‘%s’意義不明"
-#: ../glib/gmarkup.c:575
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
-msgstr "實體的結束部分不是分號;很可能你想使用 & 字符但未將它變為實體 ─ 請將 & 轉換為 &"
+msgstr ""
+"實體的結束部分不是分號;很可能你想使用 & 字符但未將它變為實體 ─ 請將 & 轉換"
+"為 &"
-#: ../glib/gmarkup.c:628
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (ê for example) - perhaps the digit is too large"
msgstr "無法解析‘%-.*s’,字符參引內應該含有數字(例如 ê)─ 可能是數字太大"
-#: ../glib/gmarkup.c:653
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "字符參引‘%-.*s’無法表示任何能接受的字符"
-#: ../glib/gmarkup.c:668
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "字符參引是空白的;它應該包括數字,像 dž"
-#: ../glib/gmarkup.c:678
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"as &"
-msgstr "字符參引的結束部分不是分號;很可能你想使用 & 字符但未將它變為實體 ─ 請將 & 轉換為 &"
+msgstr ""
+"字符參引的結束部分不是分號;很可能你想使用 & 字符但未將它變為實體 ─ 請將 & 轉"
+"換為 &"
-#: ../glib/gmarkup.c:764
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "未完成的實體參引"
-#: ../glib/gmarkup.c:770
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "未完成的字符參引"
-#: ../glib/gmarkup.c:1056
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "無效的 UTF-8 編碼文字 - 序列過長"
-#: ../glib/gmarkup.c:1084
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "無效的 UTF-8 編碼文字 - 非開始字符"
-#: ../glib/gmarkup.c:1120
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "無效的 UTF-8 編碼文字 - 不是合法的「%s」"
-#: ../glib/gmarkup.c:1158
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "文件開始必須為一元素(例如 <book>)"
-#: ../glib/gmarkup.c:1198
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "‘<’字符後的‘%s’不是有效的字符;這樣不可能是元素名稱的開始部份"
-#: ../glib/gmarkup.c:1266
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr "字符‘%s’不尋常,元素‘%s’的開始標籤應該以‘>’字符結束"
-#: ../glib/gmarkup.c:1355
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "不尋常的字符‘%s’,屬性名稱‘%s’(屬於元素‘%s’)後應該是‘=’字符"
-#: ../glib/gmarkup.c:1397
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"element '%s', or optionally an attribute; perhaps you used an invalid "
"character in an attribute name"
-msgstr "不尋常的字符‘%s’,元素‘%s’的開始標籤應該以‘>’或‘/’字符終結,也可以是屬性;或許你在屬性名稱中使用了無效的字符"
+msgstr ""
+"不尋常的字符‘%s’,元素‘%s’的開始標籤應該以‘>’或‘/’字符終結,也可以是屬性;或"
+"許你在屬性名稱中使用了無效的字符"
-#: ../glib/gmarkup.c:1483
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"giving value for attribute '%s' of element '%s'"
-msgstr "不尋常的字符‘%s’,當指定屬性‘%s’的值(屬於元素‘%s’)時,等號後應該出現開引號"
+msgstr ""
+"不尋常的字符‘%s’,當指定屬性‘%s’的值(屬於元素‘%s’)時,等號後應該出現開引號"
-#: ../glib/gmarkup.c:1625
+#: glib/gmarkup.c:1625
#, 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:1665
+#: glib/gmarkup.c:1665
#, 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:1676
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "元素‘%s’已關閉,沒有開啟中的元素"
-#: ../glib/gmarkup.c:1685
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "元素‘%s’已關閉,但開啟中的元素是‘%s’"
-#: ../glib/gmarkup.c:1848
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "文件完全空白或只含有空白字符"
-#: ../glib/gmarkup.c:1862
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "文件在尖角括號‘<’後突然終止"
-#: ../glib/gmarkup.c:1870 ../glib/gmarkup.c:1915
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr "在仍然有開啟中的元素時,文件突然結束 ─‘%s’是最後一個開啟的元素"
-#: ../glib/gmarkup.c:1878
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr "文件突然結束,本來應該出現用來關閉標籤 <%s/> 的尖角括號"
-#: ../glib/gmarkup.c:1884
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "在元素的名稱內,文件突然結束"
-#: ../glib/gmarkup.c:1890
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "在屬性名稱內,文件突然結束"
-#: ../glib/gmarkup.c:1895
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "在元素的開啟標籤內,文件突然結束"
-#: ../glib/gmarkup.c:1901
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr "在屬性名稱的等號後,文件突然結束;沒有屬性值"
-#: ../glib/gmarkup.c:1908
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "在屬性值內,文件突然結束"
-#: ../glib/gmarkup.c:1924
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "在元素‘%s’的關閉標籤內,文件突然結束"
-#: ../glib/gmarkup.c:1930
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "在註解或處理指示內,文件突然結束"
-#: ../glib/gregex.c:131
+#: glib/gregex.c:131
msgid "corrupted object"
msgstr "損毀的物件"
-#: ../glib/gregex.c:133
+#: glib/gregex.c:133
msgid "internal error or corrupted object"
msgstr "內部錯誤或損毀的物件"
-#: ../glib/gregex.c:135
+#: glib/gregex.c:135
msgid "out of memory"
msgstr "記憶體耗盡"
-#: ../glib/gregex.c:140
+#: glib/gregex.c:140
msgid "backtracking limit reached"
msgstr "已達回溯上限"
-#: ../glib/gregex.c:152 ../glib/gregex.c:160
+#: glib/gregex.c:152 glib/gregex.c:160
msgid "the pattern contains items not supported for partial matching"
msgstr "此模式包含了不支援部分比對的項目"
-#: ../glib/gregex.c:154 ../gio/glocalfile.c:1981
+#: glib/gregex.c:154 gio/glocalfile.c:1981
msgid "internal error"
msgstr "內部的錯誤"
-#: ../glib/gregex.c:162
+#: glib/gregex.c:162
msgid "back references as conditions are not supported for partial matching"
msgstr "部分比對不支援以反向參照為條件"
-#: ../glib/gregex.c:171
+#: glib/gregex.c:171
msgid "recursion limit reached"
msgstr "已達遞廻上限"
-#: ../glib/gregex.c:173
+#: glib/gregex.c:173
msgid "workspace limit for empty substrings reached"
msgstr "已達空白子字串的工作區上限"
-#: ../glib/gregex.c:175
+#: glib/gregex.c:175
msgid "invalid combination of newline flags"
msgstr "無效的換行旗標組合"
-#: ../glib/gregex.c:179
+#: glib/gregex.c:179
msgid "unknown error"
msgstr "不明的錯誤"
-#: ../glib/gregex.c:199
+#: glib/gregex.c:199
msgid "\\ at end of pattern"
msgstr "\\ 於模式結尾"
-#: ../glib/gregex.c:202
+#: glib/gregex.c:202
msgid "\\c at end of pattern"
msgstr "\\c 於模式結尾"
-#: ../glib/gregex.c:205
+#: glib/gregex.c:205
msgid "unrecognized character follows \\"
msgstr "無法辨識的字符接着 \\"
-#: ../glib/gregex.c:212
+#: glib/gregex.c:212
msgid "case-changing escapes (\\l, \\L, \\u, \\U) are not allowed here"
msgstr "這裏不允許使用改變大小寫的轉義符(\\l, \\L, \\u, \\U)"
-#: ../glib/gregex.c:215
+#: glib/gregex.c:215
msgid "numbers out of order in {} quantifier"
msgstr "{} 裏的數字次序顛倒了"
-#: ../glib/gregex.c:218
+#: glib/gregex.c:218
msgid "number too big in {} quantifier"
msgstr "{} 裏的數字太大了"
-#: ../glib/gregex.c:221
+#: glib/gregex.c:221
msgid "missing terminating ] for character class"
msgstr "字符類別缺少結束的 ]"
-#: ../glib/gregex.c:224
+#: glib/gregex.c:224
msgid "invalid escape sequence in character class"
msgstr "字符類別中無效的跳脫序列"
-#: ../glib/gregex.c:227
+#: glib/gregex.c:227
msgid "range out of order in character class"
msgstr "字符類別的範圍次序顛倒"
-#: ../glib/gregex.c:230
+#: glib/gregex.c:230
msgid "nothing to repeat"
msgstr "沒有東西可重複"
-#: ../glib/gregex.c:233
+#: glib/gregex.c:233
msgid "unrecognized character after (?"
msgstr "在 (? 後有無法辨識的字符"
-#: ../glib/gregex.c:237
+#: glib/gregex.c:237
msgid "unrecognized character after (?<"
msgstr "在 (?< 後有無法辨識的字符"
-#: ../glib/gregex.c:241
+#: glib/gregex.c:241
msgid "unrecognized character after (?P"
msgstr "在 (?P 後有無法辨識的字符"
-#: ../glib/gregex.c:244
+#: glib/gregex.c:244
msgid "POSIX named classes are supported only within a class"
msgstr "POSIX 命名類別只在單一類別中支援"
-#: ../glib/gregex.c:247
+#: glib/gregex.c:247
msgid "missing terminating )"
msgstr "缺少結束的 )"
-#: ../glib/gregex.c:251
+#: glib/gregex.c:251
msgid ") without opening ("
msgstr ") 沒有開頭的 ("
#. translators: '(?R' and '(?[+-]digits' are both meant as (groups of)
#. * sequences here, '(?-54' would be an example for the second group.
#.
-#: ../glib/gregex.c:258
+#: glib/gregex.c:258
msgid "(?R or (?[+-]digits must be followed by )"
msgstr "(?R 或 (?[+-]數字必須接着 )"
-#: ../glib/gregex.c:261
+#: glib/gregex.c:261
msgid "reference to non-existent subpattern"
msgstr "參照不存在的子模式"
-#: ../glib/gregex.c:264
+#: glib/gregex.c:264
msgid "missing ) after comment"
msgstr "註解後缺少 )"
-#: ../glib/gregex.c:267
+#: glib/gregex.c:267
msgid "regular expression too large"
msgstr "正規表示式太長"
-#: ../glib/gregex.c:270
+#: glib/gregex.c:270
msgid "failed to get memory"
msgstr "取得記憶體失敗"
-#: ../glib/gregex.c:273
+#: glib/gregex.c:273
msgid "lookbehind assertion is not fixed length"
msgstr "lookbehind 判斷提示(assertion) 不是固定的長度"
-#: ../glib/gregex.c:276
+#: glib/gregex.c:276
msgid "malformed number or name after (?("
msgstr "(?( 之後有格式不正確的數字或名稱"
-#: ../glib/gregex.c:279
+#: glib/gregex.c:279
msgid "conditional group contains more than two branches"
msgstr "條件式羣組包含了兩個以上的分支"
-#: ../glib/gregex.c:282
+#: glib/gregex.c:282
msgid "assertion expected after (?("
msgstr "(?( 後應該有判斷提示(assertion)"
-#: ../glib/gregex.c:285
+#: glib/gregex.c:285
msgid "unknown POSIX class name"
msgstr "未知的 POSIX 類別名稱"
-#: ../glib/gregex.c:288
+#: glib/gregex.c:288
msgid "POSIX collating elements are not supported"
msgstr "不支援 POSIX 整理元件"
-#: ../glib/gregex.c:291
+#: glib/gregex.c:291
msgid "character value in \\x{...} sequence is too large"
msgstr "\\x{...} 序列中的字符值太大"
-#: ../glib/gregex.c:294
+#: glib/gregex.c:294
msgid "invalid condition (?(0)"
msgstr "無效的條件 (?(0)"
-#: ../glib/gregex.c:297
+#: glib/gregex.c:297
msgid "\\C not allowed in lookbehind assertion"
msgstr "在 lookbehind 判斷提示(assertion) 中不支援\\C"
-#: ../glib/gregex.c:300
+#: glib/gregex.c:300
msgid "recursive call could loop indefinitely"
msgstr "遞廻呼叫可能變成無限廻圈"
-#: ../glib/gregex.c:303
+#: glib/gregex.c:303
msgid "missing terminator in subpattern name"
msgstr "子模式名稱中缺少結束字符"
-#: ../glib/gregex.c:306
+#: glib/gregex.c:306
msgid "two named subpatterns have the same name"
msgstr "兩個命名的子模式具有相同的名稱"
-#: ../glib/gregex.c:309
+#: glib/gregex.c:309
msgid "malformed \\P or \\p sequence"
msgstr "格式不正確的 \\P 或 \\p 序列"
-#: ../glib/gregex.c:312
+#: glib/gregex.c:312
msgid "unknown property name after \\P or \\p"
msgstr "在 \\P 或 \\p 後有未知的屬性名稱"
-#: ../glib/gregex.c:315
+#: glib/gregex.c:315
msgid "subpattern name is too long (maximum 32 characters)"
msgstr "子模式名稱太長(最多 32 字符)"
-#: ../glib/gregex.c:318
+#: glib/gregex.c:318
msgid "too many named subpatterns (maximum 10,000)"
msgstr "太多命名的子模式(最大值 10,000)"
-#: ../glib/gregex.c:321
+#: glib/gregex.c:321
msgid "octal value is greater than \\377"
msgstr "8 進位值大於 \\377"
-#: ../glib/gregex.c:324
+#: glib/gregex.c:324
msgid "DEFINE group contains more than one branch"
msgstr "DEFINE 羣組包含一個以上的分支"
-#: ../glib/gregex.c:327
+#: glib/gregex.c:327
msgid "repeating a DEFINE group is not allowed"
msgstr "不允許重複 DEFINE 羣組"
-#: ../glib/gregex.c:330
+#: glib/gregex.c:330
msgid "inconsistent NEWLINE options"
msgstr "不一致的 NEWLINE 選項"
-#: ../glib/gregex.c:333
+#: glib/gregex.c:333
msgid ""
"\\g is not followed by a braced name or an optionally braced non-zero number"
msgstr "\\g 並未隨着具有大括弧的名稱或選用的具大括弧的非零數值"
-#: ../glib/gregex.c:338
+#: glib/gregex.c:338
msgid "unexpected repeat"
msgstr "未預期的重複"
-#: ../glib/gregex.c:342
+#: glib/gregex.c:342
msgid "code overflow"
msgstr "程式碼溢流"
-#: ../glib/gregex.c:346
+#: glib/gregex.c:346
msgid "overran compiling workspace"
msgstr "編譯工作區超出範圍"
-#: ../glib/gregex.c:350
+#: glib/gregex.c:350
msgid "previously-checked referenced subpattern not found"
msgstr "找不到預先核取的參照子字串"
-#: ../glib/gregex.c:526 ../glib/gregex.c:1593
+#: glib/gregex.c:526 glib/gregex.c:1593
#, c-format
msgid "Error while matching regular expression %s: %s"
msgstr "比對正規表示式 %s 發生錯誤:%s"
-#: ../glib/gregex.c:1098
+#: glib/gregex.c:1098
msgid "PCRE library is compiled without UTF8 support"
msgstr "PCRE 程式庫並未編譯對 UTF8 的支援"
-#: ../glib/gregex.c:1107
+#: glib/gregex.c:1107
msgid "PCRE library is compiled without UTF8 properties support"
msgstr "PCRE 程式庫並未編譯對 UTF8 屬性的支援"
-#: ../glib/gregex.c:1161
+#: glib/gregex.c:1161
#, c-format
msgid "Error while compiling regular expression %s at char %d: %s"
msgstr "編譯正規表示式 %s 時於第 %d 個字發生錯誤:%s"
-#: ../glib/gregex.c:1197
+#: glib/gregex.c:1197
#, c-format
msgid "Error while optimizing regular expression %s: %s"
msgstr "最佳化正規表示式 %s 時發生錯誤:%s"
-#: ../glib/gregex.c:2021
+#: glib/gregex.c:2021
msgid "hexadecimal digit or '}' expected"
msgstr "應為 16 進位數字或「}」"
-#: ../glib/gregex.c:2037
+#: glib/gregex.c:2037
msgid "hexadecimal digit expected"
msgstr "應為 16 進位數字"
-#: ../glib/gregex.c:2077
+#: glib/gregex.c:2077
msgid "missing '<' in symbolic reference"
msgstr "在符號參照中缺少「<」"
-#: ../glib/gregex.c:2086
+#: glib/gregex.c:2086
msgid "unfinished symbolic reference"
msgstr "未完成的符號參照"
-#: ../glib/gregex.c:2093
+#: glib/gregex.c:2093
msgid "zero-length symbolic reference"
msgstr "零-長度的符號參照"
-#: ../glib/gregex.c:2104
+#: glib/gregex.c:2104
msgid "digit expected"
msgstr "預期數字"
-#: ../glib/gregex.c:2122
+#: glib/gregex.c:2122
msgid "illegal symbolic reference"
msgstr "不合法的符號參照"
-#: ../glib/gregex.c:2184
+#: glib/gregex.c:2184
msgid "stray final '\\'"
msgstr "缺少最後的「\\」"
-#: ../glib/gregex.c:2188
+#: glib/gregex.c:2188
msgid "unknown escape sequence"
msgstr "不明的跳脫序列"
-#: ../glib/gregex.c:2198
+#: glib/gregex.c:2198
#, c-format
msgid "Error while parsing replacement text \"%s\" at char %lu: %s"
msgstr "當分析於字符 %2$lu 的取代文字「%1$s」時發生錯誤:%3$s"
-#: ../glib/gshell.c:70
+#: glib/gshell.c:70
#, c-format
msgid "Quoted text doesn't begin with a quotation mark"
msgstr "應該用引號括起來的文字不是以括號為開始"
-#: ../glib/gshell.c:160
+#: glib/gshell.c:160
#, c-format
msgid "Unmatched quotation mark in command line or other shell-quoted text"
msgstr "指令列或其它標為指令的字串內有不對稱的引號"
-#: ../glib/gshell.c:538
+#: glib/gshell.c:538
#, c-format
msgid "Text ended just after a '\\' character. (The text was '%s')"
msgstr "文字在‘\\’字符後就終止了。(文字為‘%s’)"
-#: ../glib/gshell.c:545
+#: glib/gshell.c:545
#, c-format
msgid "Text ended before matching quote was found for %c. (The text was '%s')"
msgstr "字串完結前仍沒有對應於 %c 的引號(字串為‘%s’)"
-#: ../glib/gshell.c:557
+#: glib/gshell.c:557
msgid "Text was empty (or contained only whitespace)"
msgstr "文字是空白的(或只含有空白字符)"
-#: ../glib/gspawn-win32.c:279
+#: glib/gspawn-win32.c:279
msgid "Failed to read data from child process"
msgstr "無法從副進程讀取資料"
-#: ../glib/gspawn-win32.c:294 ../glib/gspawn.c:1467
+#: glib/gspawn-win32.c:294 glib/gspawn.c:1467
#, c-format
msgid "Failed to create pipe for communicating with child process (%s)"
msgstr "無法建立管道來和副進程溝通 (%s)"
-#: ../glib/gspawn-win32.c:332 ../glib/gspawn-win32.c:340 ../glib/gspawn.c:1131
+#: glib/gspawn-win32.c:332 glib/gspawn-win32.c:340 glib/gspawn.c:1131
#, c-format
msgid "Failed to read from child pipe (%s)"
msgstr "無法從管道讀取資料 (%s)"
-#: ../glib/gspawn-win32.c:363 ../glib/gspawn.c:1336
+#: glib/gspawn-win32.c:363 glib/gspawn.c:1336
#, c-format
msgid "Failed to change to directory '%s' (%s)"
msgstr "無法進入目錄‘%s’(%s)"
-#: ../glib/gspawn-win32.c:369 ../glib/gspawn-win32.c:493
+#: glib/gspawn-win32.c:369 glib/gspawn-win32.c:493
#, c-format
msgid "Failed to execute child process (%s)"
msgstr "無法執行副進程 (%s)"
-#: ../glib/gspawn-win32.c:440
+#: glib/gspawn-win32.c:440
#, c-format
msgid "Invalid program name: %s"
msgstr "程式名稱無效:%s"
-#: ../glib/gspawn-win32.c:450 ../glib/gspawn-win32.c:723
-#: ../glib/gspawn-win32.c:1282
+#: glib/gspawn-win32.c:450 glib/gspawn-win32.c:723 glib/gspawn-win32.c:1282
#, c-format
msgid "Invalid string in argument vector at %d: %s"
msgstr "第 %d 個引數中含無效的字串:%s"
-#: ../glib/gspawn-win32.c:461 ../glib/gspawn-win32.c:738
-#: ../glib/gspawn-win32.c:1315
+#: glib/gspawn-win32.c:461 glib/gspawn-win32.c:738 glib/gspawn-win32.c:1315
#, c-format
msgid "Invalid string in environment: %s"
msgstr "環境變數中的字串無效:%s"
-#: ../glib/gspawn-win32.c:719 ../glib/gspawn-win32.c:1263
+#: glib/gspawn-win32.c:719 glib/gspawn-win32.c:1263
#, c-format
msgid "Invalid working directory: %s"
msgstr "無效的工作目錄:%s"
-#: ../glib/gspawn-win32.c:787
+#: glib/gspawn-win32.c:787
#, c-format
msgid "Failed to execute helper program (%s)"
msgstr "無法執行協助程式 (%s)"
-#: ../glib/gspawn-win32.c:1002
+#: glib/gspawn-win32.c:1002
msgid ""
"Unexpected error in g_io_channel_win32_poll() reading data from a child "
"process"
msgstr "當 g_io_channel_win32_poll() 從副進程讀取資料時發生無法預計的錯誤"
-#: ../glib/gspawn.c:188
+#: glib/gspawn.c:188
#, c-format
msgid "Failed to read data from child process (%s)"
msgstr "無法從副進程讀取資料 (%s)"
-#: ../glib/gspawn.c:325
+#: glib/gspawn.c:325
#, c-format
msgid "Unexpected error in select() reading data from a child process (%s)"
msgstr "當 select() 從副進程讀取資料時發生無法預計的錯誤 (%s)"
-#: ../glib/gspawn.c:408
+#: glib/gspawn.c:408
#, c-format
msgid "Unexpected error in waitpid() (%s)"
msgstr "waitpid() 發生無法預計的錯誤 (%s)"
-#: ../glib/gspawn.c:1196
+#: glib/gspawn.c:1196
#, c-format
msgid "Failed to fork (%s)"
msgstr "無法衍生進程 (%s)"
-#: ../glib/gspawn.c:1346
+#: glib/gspawn.c:1346
#, c-format
msgid "Failed to execute child process \"%s\" (%s)"
msgstr "無法執行副進程“%s”(%s)"
-#: ../glib/gspawn.c:1356
+#: glib/gspawn.c:1356
#, c-format
msgid "Failed to redirect output or input of child process (%s)"
msgstr "無法將副進程的輸出或輸入重新導向 (%s)"
-#: ../glib/gspawn.c:1365
+#: glib/gspawn.c:1365
#, c-format
msgid "Failed to fork child process (%s)"
msgstr "無法衍生副進程 (%s)"
-#: ../glib/gspawn.c:1373
+#: glib/gspawn.c:1373
#, c-format
msgid "Unknown error executing child process \"%s\""
msgstr "執行副進程“%s”時發生不明的錯誤"
-#: ../glib/gspawn.c:1395
+#: glib/gspawn.c:1395
#, c-format
msgid "Failed to read enough data from child pid pipe (%s)"
msgstr "無法從 child pid pipe 讀取足夠的資料 (%s)"
-#: ../glib/gutf8.c:1030
+#: glib/gutf8.c:1030
msgid "Character out of range for UTF-8"
msgstr "字符不在 UTF-8 範圍之內"
-#: ../glib/gutf8.c:1124 ../glib/gutf8.c:1133 ../glib/gutf8.c:1265
-#: ../glib/gutf8.c:1274 ../glib/gutf8.c:1415 ../glib/gutf8.c:1511
+#: glib/gutf8.c:1124 glib/gutf8.c:1133 glib/gutf8.c:1265 glib/gutf8.c:1274
+#: glib/gutf8.c:1415 glib/gutf8.c:1511
msgid "Invalid sequence in conversion input"
msgstr "轉換輸入資料時出現無效的字符次序"
-#: ../glib/gutf8.c:1426 ../glib/gutf8.c:1522
+#: glib/gutf8.c:1426 glib/gutf8.c:1522
msgid "Character out of range for UTF-16"
msgstr "字符不在 UTF-16 範圍之內"
-#: ../glib/goption.c:615
+#: glib/goption.c:615
msgid "Usage:"
msgstr "用法:"
-#: ../glib/goption.c:615
+#: glib/goption.c:615
msgid "[OPTION...]"
msgstr "[選項...]"
-#: ../glib/goption.c:719
+#: glib/goption.c:719
msgid "Help Options:"
msgstr "說明選項:"
-#: ../glib/goption.c:720
+#: glib/goption.c:720
msgid "Show help options"
msgstr "顯示說明的選項"
-#: ../glib/goption.c:726
+#: glib/goption.c:726
msgid "Show all help options"
msgstr "顯示所有的說明選項"
-#: ../glib/goption.c:788
+#: glib/goption.c:788
msgid "Application Options:"
msgstr "應用程式選項:"
-#: ../glib/goption.c:849 ../glib/goption.c:919
+#: glib/goption.c:849 glib/goption.c:919
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "無法給 %2$s 解析整數值‘%1$s’"
-#: ../glib/goption.c:859 ../glib/goption.c:927
+#: glib/goption.c:859 glib/goption.c:927
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "%2$s 的整數值‘%1$s’超出範圍"
-#: ../glib/goption.c:884
+#: glib/goption.c:884
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "無法給 %2$s 解析雙精度浮點數‘%1$s’"
-#: ../glib/goption.c:892
+#: glib/goption.c:892
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "%2$s 的雙精度浮點數‘%1$s’超出範圍"
-#: ../glib/goption.c:1229
+#: glib/goption.c:1229
#, c-format
msgid "Error parsing option %s"
msgstr "解析 %s 選項時發生錯誤"
-#: ../glib/goption.c:1260 ../glib/goption.c:1371
+#: glib/goption.c:1260 glib/goption.c:1371
#, c-format
msgid "Missing argument for %s"
msgstr "缺少 %s 的參數"
-#: ../glib/goption.c:1766
+#: glib/goption.c:1766
#, c-format
msgid "Unknown option %s"
msgstr "未知的選項 %s"
-#: ../glib/gkeyfile.c:358
+#: glib/gkeyfile.c:358
msgid "Valid key file could not be found in search dirs"
msgstr "在資料目錄中找不到有效的設定鍵檔案"
-#: ../glib/gkeyfile.c:393
+#: glib/gkeyfile.c:393
msgid "Not a regular file"
msgstr "不是普通檔案"
-#: ../glib/gkeyfile.c:401
+#: glib/gkeyfile.c:401
msgid "File is empty"
msgstr "檔案是空白的"
-#: ../glib/gkeyfile.c:761
+#: glib/gkeyfile.c:761
#, c-format
msgid ""
"Key file contains line '%s' which is not a key-value pair, group, or comment"
msgstr "設定鍵檔案中‘%s’行並非設定鍵值配對、羣組或註解"
-#: ../glib/gkeyfile.c:821
+#: glib/gkeyfile.c:821
#, c-format
msgid "Invalid group name: %s"
msgstr "無效的羣組名稱:%s"
-#: ../glib/gkeyfile.c:843
+#: glib/gkeyfile.c:843
msgid "Key file does not start with a group"
msgstr "設定鍵檔案並非以羣組開頭"
-#: ../glib/gkeyfile.c:869
+#: glib/gkeyfile.c:869
#, c-format
msgid "Invalid key name: %s"
msgstr "無效的設定鍵名稱:%s"
-#: ../glib/gkeyfile.c:896
+#: glib/gkeyfile.c:896
#, c-format
msgid "Key file contains unsupported encoding '%s'"
msgstr "設定鍵檔案包含不支援的編碼‘%s’"
-#: ../glib/gkeyfile.c:1112 ../glib/gkeyfile.c:1272 ../glib/gkeyfile.c:2490
-#: ../glib/gkeyfile.c:2558 ../glib/gkeyfile.c:2693 ../glib/gkeyfile.c:2828
-#: ../glib/gkeyfile.c:2981 ../glib/gkeyfile.c:3168 ../glib/gkeyfile.c:3229
+#: glib/gkeyfile.c:1112 glib/gkeyfile.c:1272 glib/gkeyfile.c:2490
+#: glib/gkeyfile.c:2558 glib/gkeyfile.c:2693 glib/gkeyfile.c:2828
+#: glib/gkeyfile.c:2981 glib/gkeyfile.c:3168 glib/gkeyfile.c:3229
#, c-format
msgid "Key file does not have group '%s'"
msgstr "設定鍵檔案沒有羣組‘%s’"
-#: ../glib/gkeyfile.c:1284
+#: glib/gkeyfile.c:1284
#, c-format
msgid "Key file does not have key '%s'"
msgstr "設定鍵檔案沒有設定鍵‘%s’"
-#: ../glib/gkeyfile.c:1386 ../glib/gkeyfile.c:1499
+#: glib/gkeyfile.c:1386 glib/gkeyfile.c:1499
#, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "設定鍵檔案包含的設定鍵‘%s’(數值為‘%s’)並非 UTF-8"
-#: ../glib/gkeyfile.c:1406 ../glib/gkeyfile.c:1519 ../glib/gkeyfile.c:1894
+#: glib/gkeyfile.c:1406 glib/gkeyfile.c:1519 glib/gkeyfile.c:1894
#, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "設定鍵檔案包含的設定鍵‘%s’的數值無法解譯。"
-#: ../glib/gkeyfile.c:2109 ../glib/gkeyfile.c:2321
+#: glib/gkeyfile.c:2109 glib/gkeyfile.c:2321
#, c-format
msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted."
msgstr "設定鍵檔案包含的羣組‘%2$s’中設定鍵‘%1$s’數值無法解譯"
-#: ../glib/gkeyfile.c:2505 ../glib/gkeyfile.c:2708 ../glib/gkeyfile.c:3240
+#: glib/gkeyfile.c:2505 glib/gkeyfile.c:2708 glib/gkeyfile.c:3240
#, c-format
msgid "Key file does not have key '%s' in group '%s'"
msgstr "設定鍵檔案的羣組‘%2$s’中沒有設定鍵‘%1$s’"
-#: ../glib/gkeyfile.c:3474
+#: glib/gkeyfile.c:3474
msgid "Key file contains escape character at end of line"
msgstr "設定鍵檔案在行尾包含跳出字符"
-#: ../glib/gkeyfile.c:3496
+#: glib/gkeyfile.c:3496
#, c-format
msgid "Key file contains invalid escape sequence '%s'"
msgstr "設定鍵檔案含有不正確的「跳出字符」‘%s’"
-#: ../glib/gkeyfile.c:3638
+#: glib/gkeyfile.c:3638
#, c-format
msgid "Value '%s' cannot be interpreted as a number."
msgstr "數值‘%s’不能被解譯為數字。"
-#: ../glib/gkeyfile.c:3652
+#: glib/gkeyfile.c:3652
#, c-format
msgid "Integer value '%s' out of range"
msgstr "整數值‘%s’超出範圍"
-#: ../glib/gkeyfile.c:3685
+#: glib/gkeyfile.c:3685
#, c-format
msgid "Value '%s' cannot be interpreted as a float number."
msgstr "數值‘%s’不能被解譯為浮點數。"
-#: ../glib/gkeyfile.c:3709
+#: glib/gkeyfile.c:3709
#, c-format
msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "數值‘%s’不能被解譯為邏輯值。"
-#: ../gio/gbufferedinputstream.c:485 ../gio/ginputstream.c:187
-#: ../gio/ginputstream.c:319 ../gio/ginputstream.c:560
-#: ../gio/ginputstream.c:685 ../gio/goutputstream.c:195
-#: ../gio/goutputstream.c:649
+#: gio/gbufferedinputstream.c:485 gio/ginputstream.c:187
+#: gio/ginputstream.c:319 gio/ginputstream.c:560 gio/ginputstream.c:685
+#: gio/goutputstream.c:195 gio/goutputstream.c:649
#, c-format
msgid "Too large count value passed to %s"
msgstr "傳給 %s 的計數值太大"
-#: ../gio/gbufferedinputstream.c:872 ../gio/ginputstream.c:895
-#: ../gio/goutputstream.c:1078
+#: gio/gbufferedinputstream.c:872 gio/ginputstream.c:895
+#: gio/goutputstream.c:1078
msgid "Stream is already closed"
msgstr "串流已經關閉"
-#: ../gio/gcancellable.c:295 ../gio/glocalfile.c:1974
-#: ../gio/gsimpleasyncresult.c:612
+#: gio/gcancellable.c:295 gio/glocalfile.c:1974 gio/gsimpleasyncresult.c:612
msgid "Operation was cancelled"
msgstr "操作已被取消"
-#: ../gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "未知的類型"
-#: ../gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s 檔案類型"
-#: ../gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s 類型"
-#: ../gio/gdatainputstream.c:310
+#: gio/gdatainputstream.c:310
msgid "Unexpected early end-of-stream"
msgstr "未預期的串流過早結束"
-#: ../gio/gdesktopappinfo.c:429 ../gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "未命名的"
-#: ../gio/gdesktopappinfo.c:606
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "桌面(Desktop)檔案未指定 Exec 欄位"
-#: ../gio/gdesktopappinfo.c:900
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "無法找到應用程式要求的終端機"
-#: ../gio/gdesktopappinfo.c:1132
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "不能建立使用者應用程式組態資料夾 %s:%s"
-#: ../gio/gdesktopappinfo.c:1136
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "不能建立使用者 MIME 組態資料夾 %s:%s"
-#: ../gio/gdesktopappinfo.c:1475
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "不能建立使用者桌面檔案 %s"
-#: ../gio/gdesktopappinfo.c:1550
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "自選 %s 的定義"
-#: ../gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "裝置無法實作退出功能(eject)"
-#: ../gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "裝置無法實作媒體的輪詢"
-#: ../gio/gfile.c:823 ../gio/gfile.c:1051 ../gio/gfile.c:1184
-#: ../gio/gfile.c:1415 ../gio/gfile.c:1468 ../gio/gfile.c:1524
-#: ../gio/gfile.c:1606 ../gio/gfile.c:2663 ../gio/gfile.c:2714
-#: ../gio/gfile.c:2842 ../gio/gfile.c:2882 ../gio/gfile.c:3206
-#: ../gio/gfile.c:3608 ../gio/gfile.c:3691 ../gio/gfile.c:3774
-#: ../gio/gfile.c:3854
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "不支援操作"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: ../gio/gfile.c:1303 ../gio/glocalfile.c:1064 ../gio/glocalfile.c:1075
-#: ../gio/glocalfile.c:1088
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "包含了不存在的掛載點"
-#: ../gio/gfile.c:1945 ../gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "不能複製整個目錄"
-#: ../gio/gfile.c:2005
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "不能從目錄複製到目錄"
-#: ../gio/gfile.c:2013 ../gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "目標檔案已存在"
-#: ../gio/gfile.c:2031
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "不能遞廻複製目錄"
-#: ../gio/gfile.c:2832
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "提供了無效的符號連結值"
-#: ../gio/gfile.c:2925
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "不支援回收筒"
-#: ../gio/gfile.c:2972
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "檔案名稱不能包含「%c」"
-#: ../gio/gfile.c:4938 ../gio/gvolume.c:369
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "儲存裝置尚未實作掛載功能"
-#: ../gio/gfile.c:5046
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "沒有應用程式註冊為用以處理這個檔案"
-#: ../gio/gfileenumerator.c:205
+#: gio/gfileenumerator.c:205
msgid "Enumerator is closed"
msgstr "檔案列舉器(enumerator)已關閉"
-#: ../gio/gfileenumerator.c:212 ../gio/gfileenumerator.c:271
-#: ../gio/gfileenumerator.c:371 ../gio/gfileenumerator.c:480
+#: gio/gfileenumerator.c:212 gio/gfileenumerator.c:271
+#: gio/gfileenumerator.c:371 gio/gfileenumerator.c:480
msgid "File enumerator has outstanding operation"
msgstr "檔案列舉器(enumerator)有異常操作"
-#: ../gio/gfileenumerator.c:361 ../gio/gfileenumerator.c:470
+#: gio/gfileenumerator.c:361 gio/gfileenumerator.c:470
msgid "File enumerator is already closed"
msgstr "檔案列舉器(enumerator)已經關閉"
-#: ../gio/gfileinputstream.c:157 ../gio/gfileinputstream.c:424
-#: ../gio/gfileoutputstream.c:171 ../gio/gfileoutputstream.c:526
+#: gio/gfileinputstream.c:157 gio/gfileinputstream.c:424
+#: gio/gfileoutputstream.c:171 gio/gfileoutputstream.c:526
msgid "Stream doesn't support query_info"
msgstr "串流不支援 query_info"
-#: ../gio/gfileinputstream.c:339 ../gio/gfileoutputstream.c:384
+#: gio/gfileinputstream.c:339 gio/gfileoutputstream.c:384
msgid "Seek not supported on stream"
msgstr "不支援在串流中搜尋"
-#: ../gio/gfileinputstream.c:383
+#: gio/gfileinputstream.c:383
msgid "Truncate not allowed on input stream"
msgstr "在輸入串流中不允許截短(truncate)"
-#: ../gio/gfileoutputstream.c:460
+#: gio/gfileoutputstream.c:460
msgid "Truncate not supported on stream"
msgstr "在串流中不支援截短(truncate)"
-#: ../gio/ginputstream.c:196
+#: gio/ginputstream.c:196
msgid "Input stream doesn't implement read"
msgstr "輸入串流尚未實作讀取"
#. Translators: This is an error you get if there is
#. * already an operation running against this stream when
#. * you try to start one
-#: ../gio/ginputstream.c:905 ../gio/goutputstream.c:1088
+#: gio/ginputstream.c:905 gio/goutputstream.c:1088
msgid "Stream has outstanding operation"
msgstr "串流有異常操作"
-#: ../gio/glocaldirectorymonitor.c:274
+#: gio/glocaldirectorymonitor.c:274
msgid "Unable to find default local directory monitor type"
msgstr "無法找到預設的本地端目錄監視器類型"
-#: ../gio/glocalfile.c:601
+#: gio/glocalfile.c:601
#, c-format
msgid "Invalid filename %s"
msgstr "無效的檔案名稱 %s"
-#: ../gio/glocalfile.c:972
+#: gio/glocalfile.c:972
#, c-format
msgid "Error getting filesystem info: %s"
msgstr "取得檔案系統資訊時發生錯誤:%s"
-#: ../gio/glocalfile.c:1108
+#: gio/glocalfile.c:1108
msgid "Can't rename root directory"
msgstr "不能重新命名根目錄"
-#: ../gio/glocalfile.c:1126
+#: gio/glocalfile.c:1126
msgid "Can't rename file, filename already exist"
msgstr "不能重新命名檔案,該檔案名稱已存在"
-#: ../gio/glocalfile.c:1139 ../gio/glocalfile.c:2003 ../gio/glocalfile.c:2032
-#: ../gio/glocalfile.c:2186 ../gio/glocalfileoutputstream.c:472
-#: ../gio/glocalfileoutputstream.c:517 ../gio/glocalfileoutputstream.c:925
+#: gio/glocalfile.c:1139 gio/glocalfile.c:2003 gio/glocalfile.c:2032
+#: gio/glocalfile.c:2186 gio/glocalfileoutputstream.c:472
+#: gio/glocalfileoutputstream.c:517 gio/glocalfileoutputstream.c:925
msgid "Invalid filename"
msgstr "無效的檔案名稱"
-#: ../gio/glocalfile.c:1143
+#: gio/glocalfile.c:1143
#, c-format
msgid "Error renaming file: %s"
msgstr "重新命名檔案時發生錯誤:%s"
-#: ../gio/glocalfile.c:1262
+#: gio/glocalfile.c:1262
#, c-format
msgid "Error opening file: %s"
msgstr "開啓檔案時發生錯誤:%s"
-#: ../gio/glocalfile.c:1272
+#: gio/glocalfile.c:1272
msgid "Can't open directory"
msgstr "無法開啟目錄"
-#: ../gio/glocalfile.c:1332
+#: gio/glocalfile.c:1332
#, c-format
msgid "Error removing file: %s"
msgstr "移除檔案時發生錯誤:%s"
-#: ../gio/glocalfile.c:1696
+#: gio/glocalfile.c:1696
#, c-format
msgid "Error trashing file: %s"
msgstr "移動檔案至回收筒時發生錯誤:%s"
-#: ../gio/glocalfile.c:1719
+#: gio/glocalfile.c:1719
#, c-format
msgid "Unable to create trash dir %s: %s"
msgstr "無法建立回收筒目錄 %s:%s"
-#: ../gio/glocalfile.c:1740
+#: gio/glocalfile.c:1740
msgid "Unable to find toplevel directory for trash"
msgstr "無法找到回收筒的頂端層級目錄"
-#: ../gio/glocalfile.c:1819 ../gio/glocalfile.c:1839
+#: gio/glocalfile.c:1819 gio/glocalfile.c:1839
msgid "Unable to find or create trash directory"
msgstr "無法找到或建立回收筒目錄"
-#: ../gio/glocalfile.c:1873
+#: gio/glocalfile.c:1873
#, c-format
msgid "Unable to create trashing info file: %s"
msgstr "無法建立回收筒資訊檔案:%s"
-#: ../gio/glocalfile.c:1898 ../gio/glocalfile.c:1973 ../gio/glocalfile.c:1980
+#: gio/glocalfile.c:1898 gio/glocalfile.c:1973 gio/glocalfile.c:1980
#, c-format
msgid "Unable to trash file: %s"
msgstr "無法將檔案移至回收筒:%s"
-#: ../gio/glocalfile.c:2007
+#: gio/glocalfile.c:2007
#, fuzzy, c-format
msgid "Error creating directory: %s"
msgstr "開啟目錄‘%s’時發生錯誤:%s"
-#: ../gio/glocalfile.c:2036
+#: gio/glocalfile.c:2036
#, c-format
msgid "Error making symbolic link: %s"
msgstr "建立符號連結時發生錯誤:%s"
-#: ../gio/glocalfile.c:2096 ../gio/glocalfile.c:2190
+#: gio/glocalfile.c:2096 gio/glocalfile.c:2190
#, c-format
msgid "Error moving file: %s"
msgstr "移動檔案時發生錯誤:%s"
-#: ../gio/glocalfile.c:2119
+#: gio/glocalfile.c:2119
msgid "Can't move directory over directory"
msgstr "不能將目錄移動到目錄"
-#: ../gio/glocalfile.c:2146 ../gio/glocalfileoutputstream.c:777
-#: ../gio/glocalfileoutputstream.c:791 ../gio/glocalfileoutputstream.c:806
-#: ../gio/glocalfileoutputstream.c:822 ../gio/glocalfileoutputstream.c:836
+#: gio/glocalfile.c:2146 gio/glocalfileoutputstream.c:777
+#: gio/glocalfileoutputstream.c:791 gio/glocalfileoutputstream.c:806
+#: gio/glocalfileoutputstream.c:822 gio/glocalfileoutputstream.c:836
msgid "Backup file creation failed"
msgstr "備份檔案建立失敗"
-#: ../gio/glocalfile.c:2165
+#: gio/glocalfile.c:2165
#, c-format
msgid "Error removing target file: %s"
msgstr "移除目標檔案時發生錯誤:%s"
-#: ../gio/glocalfile.c:2179
+#: gio/glocalfile.c:2179
msgid "Move between mounts not supported"
msgstr "不支援在掛載點之間移動"
-#: ../gio/glocalfileinfo.c:716
+#: gio/glocalfileinfo.c:716
msgid "Attribute value must be non-NULL"
msgstr "屬性數值必須為非-NULL"
-#: ../gio/glocalfileinfo.c:723
+#: gio/glocalfileinfo.c:723
msgid "Invalid attribute type (string expected)"
msgstr "無效的屬性類型(應為字串值)"
-#: ../gio/glocalfileinfo.c:730
+#: gio/glocalfileinfo.c:730
msgid "Invalid extended attribute name"
msgstr "無效的延伸屬性名稱"
-#: ../gio/glocalfileinfo.c:770
+#: gio/glocalfileinfo.c:770
#, c-format
msgid "Error setting extended attribute '%s': %s"
msgstr "設定延伸屬性「%s」時發生錯誤:%s"
-#: ../gio/glocalfileinfo.c:1456 ../gio/glocalfileoutputstream.c:666
+#: gio/glocalfileinfo.c:1456 gio/glocalfileoutputstream.c:666
#, c-format
msgid "Error stating file '%s': %s"
msgstr "取得檔案「%s」狀態時發生錯誤:%s"
-#: ../gio/glocalfileinfo.c:1526
+#: gio/glocalfileinfo.c:1526
msgid " (invalid encoding)"
msgstr "(無效的編碼)"
-#: ../gio/glocalfileinfo.c:1696
+#: gio/glocalfileinfo.c:1696
#, c-format
msgid "Error stating file descriptor: %s"
msgstr "取得檔案描述狀態時發生錯誤:%s"
-#: ../gio/glocalfileinfo.c:1741
+#: gio/glocalfileinfo.c:1741
msgid "Invalid attribute type (uint32 expected)"
msgstr "無效的屬性類型(應為 uint32 值)"
-#: ../gio/glocalfileinfo.c:1759
+#: gio/glocalfileinfo.c:1759
msgid "Invalid attribute type (uint64 expected)"
msgstr "無效的屬性類型(應為 uint64 值)"
-#: ../gio/glocalfileinfo.c:1778
+#: gio/glocalfileinfo.c:1778
msgid "Invalid attribute type (byte string expected)"
msgstr "無效的屬性類型(應為 byte string 值)"
-#: ../gio/glocalfileinfo.c:1804
+#: gio/glocalfileinfo.c:1804
#, c-format
msgid "Error setting permissions: %s"
msgstr "設定權限時發生錯誤:%s"
-#: ../gio/glocalfileinfo.c:1855 ../gio/glocalfileinfo.c:2023
+#: gio/glocalfileinfo.c:1855 gio/glocalfileinfo.c:2023
#, c-format
msgid "Error setting owner: %s"
msgstr "設定擁有者時發生錯誤:%s"
-#: ../gio/glocalfileinfo.c:1878
+#: gio/glocalfileinfo.c:1878
msgid "symlink must be non-NULL"
msgstr "符號連結必須為非-NULL"
-#: ../gio/glocalfileinfo.c:1888 ../gio/glocalfileinfo.c:1907
-#: ../gio/glocalfileinfo.c:1918
+#: gio/glocalfileinfo.c:1888 gio/glocalfileinfo.c:1907
+#: gio/glocalfileinfo.c:1918
#, c-format
msgid "Error setting symlink: %s"
msgstr "設定符號連結時發生錯誤:%s"
-#: ../gio/glocalfileinfo.c:1897
+#: gio/glocalfileinfo.c:1897
msgid "Error setting symlink: file is not a symlink"
msgstr "設定符號連結時發生錯誤:檔案不是符號連結"
-#: ../gio/glocalfileinfo.c:2078
+#: gio/glocalfileinfo.c:2078
#, c-format
msgid "Setting attribute %s not supported"
msgstr "不支援設定屬性 %s"
-#: ../gio/glocalfileinputstream.c:160 ../gio/glocalfileoutputstream.c:570
+#: gio/glocalfileinputstream.c:160 gio/glocalfileoutputstream.c:570
#, c-format
msgid "Error reading from file: %s"
msgstr "從檔案讀取時發生錯誤:%s"
-#: ../gio/glocalfileinputstream.c:191 ../gio/glocalfileinputstream.c:203
-#: ../gio/glocalfileinputstream.c:312 ../gio/glocalfileoutputstream.c:372
-#: ../gio/glocalfileoutputstream.c:854
+#: gio/glocalfileinputstream.c:191 gio/glocalfileinputstream.c:203
+#: gio/glocalfileinputstream.c:312 gio/glocalfileoutputstream.c:372
+#: gio/glocalfileoutputstream.c:854
#, c-format
msgid "Error seeking in file: %s"
msgstr "在檔案中搜尋時發生錯誤:%s"
-#: ../gio/glocalfileinputstream.c:233 ../gio/glocalfileoutputstream.c:279
+#: gio/glocalfileinputstream.c:233 gio/glocalfileoutputstream.c:279
#, c-format
msgid "Error closing file: %s"
msgstr "關閉檔案時發生錯誤:%s"
-#: ../gio/glocalfilemonitor.c:198
+#: gio/glocalfilemonitor.c:198
msgid "Unable to find default local file monitor type"
msgstr "無法找到預設的本地端檔案監視器類型"
-#: ../gio/glocalfileoutputstream.c:172 ../gio/glocalfileoutputstream.c:591
+#: gio/glocalfileoutputstream.c:172 gio/glocalfileoutputstream.c:591
#, c-format
msgid "Error writing to file: %s"
msgstr "寫入至檔案時發生錯誤:%s"
-#: ../gio/glocalfileoutputstream.c:213
+#: gio/glocalfileoutputstream.c:213
#, c-format
msgid "Error removing old backup link: %s"
msgstr "移除舊備份連結時發生錯誤:%s"
-#: ../gio/glocalfileoutputstream.c:227 ../gio/glocalfileoutputstream.c:240
+#: gio/glocalfileoutputstream.c:227 gio/glocalfileoutputstream.c:240
#, c-format
msgid "Error creating backup copy: %s"
msgstr "建立備份複本時發生錯誤:%s"
-#: ../gio/glocalfileoutputstream.c:258
+#: gio/glocalfileoutputstream.c:258
#, c-format
msgid "Error renaming temporary file: %s"
msgstr "重新命名暫存檔案時發生錯誤:%s"
-#: ../gio/glocalfileoutputstream.c:418 ../gio/glocalfileoutputstream.c:871
+#: gio/glocalfileoutputstream.c:418 gio/glocalfileoutputstream.c:871
#, c-format
msgid "Error truncating file: %s"
msgstr "截短檔案時發生錯誤:%s"
-#: ../gio/glocalfileoutputstream.c:478 ../gio/glocalfileoutputstream.c:523
-#: ../gio/glocalfileoutputstream.c:654 ../gio/glocalfileoutputstream.c:931
+#: gio/glocalfileoutputstream.c:478 gio/glocalfileoutputstream.c:523
+#: gio/glocalfileoutputstream.c:654 gio/glocalfileoutputstream.c:931
#, c-format
msgid "Error opening file '%s': %s"
msgstr "開啟檔案「%s」時發生錯誤:%s"
-#: ../gio/glocalfileoutputstream.c:679
+#: gio/glocalfileoutputstream.c:679
msgid "Target file is a directory"
msgstr "目標檔案是一個目錄"
-#: ../gio/glocalfileoutputstream.c:684
+#: gio/glocalfileoutputstream.c:684
msgid "Target file is not a regular file"
msgstr "目標檔案不是正規的檔案"
-#: ../gio/glocalfileoutputstream.c:696
+#: gio/glocalfileoutputstream.c:696
msgid "The file was externally modified"
msgstr "該檔案已被外部程式修改"
-#: ../gio/gmemoryinputstream.c:487 ../gio/gmemoryoutputstream.c:545
+#: gio/gmemoryinputstream.c:487 gio/gmemoryoutputstream.c:545
msgid "Invalid GSeekType supplied"
msgstr "提供了無效的 GSeek 類型"
-#: ../gio/gmemoryinputstream.c:497 ../gio/gmemoryoutputstream.c:555
+#: gio/gmemoryinputstream.c:497 gio/gmemoryoutputstream.c:555
msgid "Invalid seek request"
msgstr "無效的搜尋要求"
-#: ../gio/gmemoryinputstream.c:521
+#: gio/gmemoryinputstream.c:521
msgid "Cannot truncate GMemoryInputStream"
msgstr "不能截短 GMemoryInputStream"
-#: ../gio/gmemoryoutputstream.c:288
+#: gio/gmemoryoutputstream.c:288
msgid "Reached maximum data array limit"
msgstr "已達最大資料陣列上限"
-#: ../gio/gmemoryoutputstream.c:323
+#: gio/gmemoryoutputstream.c:323
msgid "Memory output stream not resizable"
msgstr "記憶體輸出串流不能改變大小"
-#: ../gio/gmemoryoutputstream.c:339
+#: gio/gmemoryoutputstream.c:339
msgid "Failed to resize memory output stream"
msgstr "改變記憶體輸出串流的大小失敗"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: ../gio/gmount.c:357
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "掛載點尚未實作卸載"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: ../gio/gmount.c:432
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "掛載點尚未實作退出"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: ../gio/gmount.c:514
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "掛載點尚未實作重新掛載"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement content type guessing.
-#: ../gio/gmount.c:597
+#: gio/gmount.c:600
#, fuzzy
msgid "mount doesn't implement content type guessing"
msgstr "掛載點尚未實作卸載"
-#: ../gio/goutputstream.c:204 ../gio/goutputstream.c:405
+#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "輸出串流尚未實作寫入"
-#: ../gio/goutputstream.c:365 ../gio/goutputstream.c:773
+#: gio/goutputstream.c:365 gio/goutputstream.c:773
msgid "Source stream is already closed"
msgstr "來源串流已經關閉"
-#: ../gio/gthemedicon.c:206
+#: gio/gthemedicon.c:206
msgid "name"
msgstr "名稱"
-#: ../gio/gthemedicon.c:207
+#: gio/gthemedicon.c:207
msgid "The name of the icon"
msgstr "圖示的名稱"
-#: ../gio/gthemedicon.c:218
+#: gio/gthemedicon.c:218
msgid "names"
msgstr "名稱"
-#: ../gio/gthemedicon.c:219
+#: gio/gthemedicon.c:219
msgid "An array containing the icon names"
msgstr "包含圖示名稱的陣列"
-#: ../gio/gthemedicon.c:244
+#: gio/gthemedicon.c:244
msgid "use default fallbacks"
msgstr "使用預設的回饋"
-#: ../gio/gthemedicon.c:245
+#: gio/gthemedicon.c:245
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
-msgstr "是否使用縮短過在「-」字符的名稱找到的預設回饋。如果提供多個名稱則忽略第一個以外的名稱。"
+msgstr ""
+"是否使用縮短過在「-」字符的名稱找到的預設回饋。如果提供多個名稱則忽略第一個以"
+"外的名稱。"
-#: ../gio/gunixinputstream.c:201 ../gio/gunixinputstream.c:221
-#: ../gio/gunixinputstream.c:299 ../gio/gunixoutputstream.c:288
+#: gio/gunixinputstream.c:201 gio/gunixinputstream.c:221
+#: gio/gunixinputstream.c:299 gio/gunixoutputstream.c:288
#, c-format
msgid "Error reading from unix: %s"
msgstr "從 unix 讀取時發生錯誤:%s"
-#: ../gio/gunixinputstream.c:254 ../gio/gunixinputstream.c:436
-#: ../gio/gunixoutputstream.c:243 ../gio/gunixoutputstream.c:394
+#: gio/gunixinputstream.c:254 gio/gunixinputstream.c:436
+#: gio/gunixoutputstream.c:243 gio/gunixoutputstream.c:394
#, c-format
msgid "Error closing unix: %s"
msgstr "關閉 unix 時發生錯誤:%s"
-#: ../gio/gunixmounts.c:1789 ../gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "根檔案系統"
-#: ../gio/gunixoutputstream.c:189 ../gio/gunixoutputstream.c:210
+#: gio/gunixoutputstream.c:189 gio/gunixoutputstream.c:210
#, c-format
msgid "Error writing to unix: %s"
msgstr "寫入至 unix 時發生錯誤:%s"
-#: ../gio/gvolume.c:438
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "儲存裝置尚未實作退出(eject)"
-#: ../gio/gwin32appinfo.c:277
+#: gio/gwin32appinfo.c:277
msgid "Can't find application"
msgstr "找不到應用程式"
-#: ../gio/gwin32appinfo.c:312
+#: gio/gwin32appinfo.c:312
#, c-format
msgid "Error launching application: %s"
msgstr "執行應用程式時發生錯誤:%s"
-#: ../gio/gwin32appinfo.c:349
+#: gio/gwin32appinfo.c:349
msgid "URIs not supported"
msgstr "不支援 URIs"
-#: ../gio/gwin32appinfo.c:371
+#: gio/gwin32appinfo.c:371
msgid "association changes not supported on win32"
msgstr "關聯更改在 win32 上不支援"
-#: ../gio/gwin32appinfo.c:383
+#: gio/gwin32appinfo.c:383
msgid "Association creation not supported on win32"
msgstr "關聯建立在 win32 上不支援"
-#: ../tests/gio-ls.c:27
+#: tests/gio-ls.c:27
msgid "do not hide entries"
msgstr "不要隱藏項目"
-#: ../tests/gio-ls.c:29
+#: tests/gio-ls.c:29
msgid "use a long listing format"
msgstr "使用長式表列格式"
-#: ../tests/gio-ls.c:37
+#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[檔案...]"
msgstr ""
"Project-Id-Version: glib 2.17.3\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-14 16:27+0800\n"
+"POT-Creation-Date: 2008-07-21 13:36-0400\n"
"PO-Revision-Date: 2007-02-27 09:08+0800\n"
"Last-Translator: Woodman Tuen <wmtuen@gmail.com>\n"
"Language-Team: Chinese (Taiwan) <community@linuxhall.org>\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0\n"
-#: ../glib/gbookmarkfile.c:728 ../glib/gbookmarkfile.c:805
-#: ../glib/gbookmarkfile.c:884 ../glib/gbookmarkfile.c:931
+#: glib/gbookmarkfile.c:733 glib/gbookmarkfile.c:812 glib/gbookmarkfile.c:899
+#: glib/gbookmarkfile.c:946
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "元素‘%2$s’中的不明屬性‘%1$s’"
-#: ../glib/gbookmarkfile.c:739 ../glib/gbookmarkfile.c:816
-#: ../glib/gbookmarkfile.c:826 ../glib/gbookmarkfile.c:942
+#: glib/gbookmarkfile.c:744 glib/gbookmarkfile.c:823 glib/gbookmarkfile.c:833
+#: glib/gbookmarkfile.c:957
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "找不到元素‘%2$s’的屬性‘%1$s’"
-#: ../glib/gbookmarkfile.c:1112 ../glib/gbookmarkfile.c:1177
-#: ../glib/gbookmarkfile.c:1241 ../glib/gbookmarkfile.c:1251
+#: glib/gbookmarkfile.c:1127 glib/gbookmarkfile.c:1192
+#: glib/gbookmarkfile.c:1256 glib/gbookmarkfile.c:1266
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "不明的標籤‘%s’,應為標籤‘%s’"
-#: ../glib/gbookmarkfile.c:1137 ../glib/gbookmarkfile.c:1151
-#: ../glib/gbookmarkfile.c:1219 ../glib/gbookmarkfile.c:1271
+#: glib/gbookmarkfile.c:1152 glib/gbookmarkfile.c:1166
+#: glib/gbookmarkfile.c:1234 glib/gbookmarkfile.c:1286
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "‘%2$s’中有不明的標籤‘%1$s’"
-#: ../glib/gbookmarkfile.c:1798
+#: glib/gbookmarkfile.c:1814
msgid "No valid bookmark file found in data dirs"
msgstr "在資料目錄中找不到有效的書籤檔案"
-#: ../glib/gbookmarkfile.c:1999
+#: glib/gbookmarkfile.c:2015
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI‘%s’的書籤已經存在"
-#: ../glib/gbookmarkfile.c:2045 ../glib/gbookmarkfile.c:2202
-#: ../glib/gbookmarkfile.c:2287 ../glib/gbookmarkfile.c:2367
-#: ../glib/gbookmarkfile.c:2452 ../glib/gbookmarkfile.c:2535
-#: ../glib/gbookmarkfile.c:2613 ../glib/gbookmarkfile.c:2692
-#: ../glib/gbookmarkfile.c:2734 ../glib/gbookmarkfile.c:2831
-#: ../glib/gbookmarkfile.c:2957 ../glib/gbookmarkfile.c:3147
-#: ../glib/gbookmarkfile.c:3223 ../glib/gbookmarkfile.c:3388
-#: ../glib/gbookmarkfile.c:3477 ../glib/gbookmarkfile.c:3567
-#: ../glib/gbookmarkfile.c:3694
+#: glib/gbookmarkfile.c:2061 glib/gbookmarkfile.c:2219
+#: glib/gbookmarkfile.c:2304 glib/gbookmarkfile.c:2384
+#: glib/gbookmarkfile.c:2469 glib/gbookmarkfile.c:2552
+#: glib/gbookmarkfile.c:2630 glib/gbookmarkfile.c:2709
+#: glib/gbookmarkfile.c:2751 glib/gbookmarkfile.c:2848
+#: glib/gbookmarkfile.c:2974 glib/gbookmarkfile.c:3164
+#: glib/gbookmarkfile.c:3240 glib/gbookmarkfile.c:3405
+#: glib/gbookmarkfile.c:3494 glib/gbookmarkfile.c:3584
+#: glib/gbookmarkfile.c:3712
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "找不到 URI‘%s’的書籤"
-#: ../glib/gbookmarkfile.c:2376
+#: glib/gbookmarkfile.c:2393
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI‘%s’的書籤中沒有定義 MIME 類型"
-#: ../glib/gbookmarkfile.c:2461
+#: glib/gbookmarkfile.c:2478
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI‘%s’的書籤中沒有定義 private flag"
-#: ../glib/gbookmarkfile.c:2840
+#: glib/gbookmarkfile.c:2857
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI‘%s’的書籤中並沒有設定群組"
-#: ../glib/gbookmarkfile.c:3241 ../glib/gbookmarkfile.c:3398
+#: glib/gbookmarkfile.c:3258 glib/gbookmarkfile.c:3415
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "沒有一個名為‘%s’的應用程式註冊一個書籤給‘%s’"
-#: ../glib/gbookmarkfile.c:3421
+#: glib/gbookmarkfile.c:3438
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "以 URI‘%2$s’ 展開 exec 行‘%1$s’失敗"
-#: ../glib/gconvert.c:431 ../glib/gconvert.c:509 ../glib/giochannel.c:1158
+#: glib/gconvert.c:431 glib/gconvert.c:509 glib/giochannel.c:1158
#, c-format
msgid "Conversion from character set '%s' to '%s' is not supported"
msgstr "不支援將字元集‘%s’轉換成‘%s’"
-#: ../glib/gconvert.c:435 ../glib/gconvert.c:513
+#: glib/gconvert.c:435 glib/gconvert.c:513
#, c-format
msgid "Could not open converter from '%s' to '%s'"
msgstr "無法將‘%s’轉換至‘%s’"
-#: ../glib/gconvert.c:632 ../glib/gconvert.c:1017 ../glib/giochannel.c:1330
-#: ../glib/giochannel.c:1372 ../glib/giochannel.c:2216 ../glib/gutf8.c:956
-#: ../glib/gutf8.c:1405
+#: glib/gconvert.c:632 glib/gconvert.c:1017 glib/giochannel.c:1330
+#: glib/giochannel.c:1372 glib/giochannel.c:2216 glib/gutf8.c:956
+#: glib/gutf8.c:1405
msgid "Invalid byte sequence in conversion input"
msgstr "轉換輸入資料時遇到不正確的位元組組合"
-#: ../glib/gconvert.c:638 ../glib/gconvert.c:944 ../glib/giochannel.c:1337
-#: ../glib/giochannel.c:2228
+#: glib/gconvert.c:638 glib/gconvert.c:944 glib/giochannel.c:1337
+#: glib/giochannel.c:2228
#, c-format
msgid "Error during conversion: %s"
msgstr "轉換時發生錯誤:%s"
-#: ../glib/gconvert.c:669 ../glib/gutf8.c:952 ../glib/gutf8.c:1156
-#: ../glib/gutf8.c:1297 ../glib/gutf8.c:1401
+#: glib/gconvert.c:669 glib/gutf8.c:952 glib/gutf8.c:1156 glib/gutf8.c:1297
+#: glib/gutf8.c:1401
msgid "Partial character sequence at end of input"
msgstr "輸入資料結束時字元仍未完整"
-#: ../glib/gconvert.c:919
+#: glib/gconvert.c:919
#, c-format
msgid "Cannot convert fallback '%s' to codeset '%s'"
msgstr "無法將後備字串‘%s’的字元集轉換成‘%s’"
-#: ../glib/gconvert.c:1734
+#: glib/gconvert.c:1734
#, c-format
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
msgstr "URI‘%s’不是使用“file”格式的絕對 URI"
-#: ../glib/gconvert.c:1744
+#: glib/gconvert.c:1744
#, c-format
msgid "The local file URI '%s' may not include a '#'"
msgstr "本機檔案的 URI‘%s’不應含有‘#’"
-#: ../glib/gconvert.c:1761
+#: glib/gconvert.c:1761
#, c-format
msgid "The URI '%s' is invalid"
msgstr "URI‘%s’無效"
-#: ../glib/gconvert.c:1773
+#: glib/gconvert.c:1773
#, c-format
msgid "The hostname of the URI '%s' is invalid"
msgstr "URI‘%s’中的主機名稱無效"
-#: ../glib/gconvert.c:1789
+#: glib/gconvert.c:1789
#, c-format
msgid "The URI '%s' contains invalidly escaped characters"
msgstr "URI‘%s’含有「不正確跳出」的字元"
-#: ../glib/gconvert.c:1884
+#: glib/gconvert.c:1884
#, c-format
msgid "The pathname '%s' is not an absolute path"
msgstr "路徑名稱‘%s’不是絕對路徑"
-#: ../glib/gconvert.c:1894
+#: glib/gconvert.c:1894
msgid "Invalid hostname"
msgstr "主機名稱無效"
-#: ../glib/gdir.c:109 ../glib/gdir.c:129
+#: glib/gdir.c:109 glib/gdir.c:129
#, c-format
msgid "Error opening directory '%s': %s"
msgstr "開啟目錄‘%s’時發生錯誤:%s"
-#: ../glib/gfileutils.c:557 ../glib/gfileutils.c:630
+#: glib/gfileutils.c:557 glib/gfileutils.c:645
#, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "無法配置 %lu 位元來讀取檔案“%s”"
-#: ../glib/gfileutils.c:572
+#: glib/gfileutils.c:572
#, c-format
msgid "Error reading file '%s': %s"
msgstr "讀取檔案‘%s’時發生錯誤:%s"
-#: ../glib/gfileutils.c:654
+#: glib/gfileutils.c:586
+#, c-format
+msgid "File \"%s\" is too large"
+msgstr ""
+
+#: glib/gfileutils.c:669
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "讀取檔案‘%s’失敗:%s"
-#: ../glib/gfileutils.c:705 ../glib/gfileutils.c:792
+#: glib/gfileutils.c:720 glib/gfileutils.c:807
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "開啟檔案‘%s’失敗:%s"
-#: ../glib/gfileutils.c:722 ../glib/gmappedfile.c:133
+#: glib/gfileutils.c:737 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "獲取檔案‘%s’的屬性失敗:fstat() 失敗:%s"
-#: ../glib/gfileutils.c:756
+#: glib/gfileutils.c:771
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "開啟檔案‘%s’失敗:fdopen() 失敗:%s"
-#: ../glib/gfileutils.c:890
+#: glib/gfileutils.c:905
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "檔案名稱由‘%s’改為‘%s’失敗:g_rename() 失敗:%s"
-#: ../glib/gfileutils.c:932 ../glib/gfileutils.c:1390
+#: glib/gfileutils.c:947 glib/gfileutils.c:1405
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "建立檔案‘%s’失敗:%s"
-#: ../glib/gfileutils.c:946
+#: glib/gfileutils.c:961
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr "開啟檔案‘%s’作寫入失敗:fdopen() 失敗:%s"
-#: ../glib/gfileutils.c:971
+#: glib/gfileutils.c:986
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "寫入檔案‘%s’失敗:fwrite() 失敗:%s"
-#: ../glib/gfileutils.c:990
+#: glib/gfileutils.c:1005
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "關閉檔案‘%s’失敗:fclose() 失敗:%s"
-#: ../glib/gfileutils.c:1108
+#: glib/gfileutils.c:1123
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr "現存檔案‘%s’無法移除:g_unlink() 失敗:%s"
-#: ../glib/gfileutils.c:1352
+#: glib/gfileutils.c:1367
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "樣式‘%s’無效,不應含有‘%s’"
# (Abel) this is file template for mktemp/mkstemp
-#: ../glib/gfileutils.c:1365
+#: glib/gfileutils.c:1380
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "檔案樣式‘%s’沒有包含 XXXXXX"
-#: ../glib/gfileutils.c:1834
+#: glib/gfileutils.c:1849
#, c-format
msgid "%.1f KB"
msgstr "%.1f KB"
-#: ../glib/gfileutils.c:1839
+#: glib/gfileutils.c:1854
#, c-format
msgid "%.1f MB"
msgstr "%.1f MB"
-#: ../glib/gfileutils.c:1844
+#: glib/gfileutils.c:1859
#, c-format
msgid "%.1f GB"
msgstr "%.1f GB"
-#: ../glib/gfileutils.c:1887
+#: glib/gfileutils.c:1902
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "讀取符號連結‘%s’失敗:%s"
-#: ../glib/gfileutils.c:1908
+#: glib/gfileutils.c:1923
msgid "Symbolic links not supported"
msgstr "不支援符號連結"
-#: ../glib/giochannel.c:1162
+#: glib/giochannel.c:1162
#, c-format
msgid "Could not open converter from '%s' to '%s': %s"
msgstr "無法開啟將‘%s’轉換至‘%s’的轉換器:%s"
-#: ../glib/giochannel.c:1507
+#: glib/giochannel.c:1507
msgid "Can't do a raw read in g_io_channel_read_line_string"
msgstr "在 g_io_channel_read_line_string 中無法讀取原始資料"
-#: ../glib/giochannel.c:1554 ../glib/giochannel.c:1812
-#: ../glib/giochannel.c:1899
+#: glib/giochannel.c:1554 glib/giochannel.c:1812 glib/giochannel.c:1899
msgid "Leftover unconverted data in read buffer"
msgstr "用來讀取資料的緩衝區中仍有未轉換的資料"
-#: ../glib/giochannel.c:1635 ../glib/giochannel.c:1712
+#: glib/giochannel.c:1635 glib/giochannel.c:1712
msgid "Channel terminates in a partial character"
msgstr "在字元未完整之前,輸入管道已經結束"
-#: ../glib/giochannel.c:1698
+#: glib/giochannel.c:1698
msgid "Can't do a raw read in g_io_channel_read_to_end"
msgstr "g_io_channel_read_to_end 中無法讀取原始資料"
-#: ../glib/gmappedfile.c:116
+#: glib/gmappedfile.c:116
#, c-format
msgid "Failed to open file '%s': open() failed: %s"
msgstr "開啟檔案‘%s’失敗:open() 失敗:%s"
-#: ../glib/gmappedfile.c:193
+#: glib/gmappedfile.c:193
#, c-format
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "對應檔案‘%s’失敗:mmap() 失敗:%s"
-#: ../glib/gmarkup.c:269 ../glib/gmarkup.c:285
+#: glib/gmarkup.c:269 glib/gmarkup.c:285
#, c-format
msgid "Error on line %d char %d: "
msgstr "第 %d 行第 %d 個字發生錯誤:"
-#: ../glib/gmarkup.c:379
+#: glib/gmarkup.c:379
#, c-format
msgid "Error on line %d: %s"
msgstr "第 %d 行發生錯誤:%s"
-#: ../glib/gmarkup.c:483
+#: glib/gmarkup.c:483
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr "出現空白的實體‘&;’;可用的實體為:& " < > '"
-#: ../glib/gmarkup.c:493
+#: glib/gmarkup.c:493
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"實體名稱不應以‘%s’開始,應該使用 & 字元;如果這個 & 字元不是作為實體使用,請"
"將 & 轉換為 &"
-#: ../glib/gmarkup.c:527
+#: glib/gmarkup.c:527
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "實體名稱中不應含有字元‘%s’"
-#: ../glib/gmarkup.c:564
+#: glib/gmarkup.c:564
#, c-format
msgid "Entity name '%s' is not known"
msgstr "實體名稱‘%s’意義不明"
-#: ../glib/gmarkup.c:575
+#: glib/gmarkup.c:575
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
"實體的結束部分不是分號;很可能您想使用 & 字元但未將它變為實體 ─ 請將 & 轉換"
"為 &"
-#: ../glib/gmarkup.c:628
+#: glib/gmarkup.c:628
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (ê for example) - perhaps the digit is too large"
msgstr "無法解析‘%-.*s’,字元參引內應該含有數字(例如 ê)─ 可能是數字太大"
-#: ../glib/gmarkup.c:653
+#: glib/gmarkup.c:653
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "字元參引‘%-.*s’無法表示任何能接受的字元"
-#: ../glib/gmarkup.c:668
+#: glib/gmarkup.c:668
msgid "Empty character reference; should include a digit such as dž"
msgstr "字元參引是空白的;它應該包括數字,像 dž"
-#: ../glib/gmarkup.c:678
+#: glib/gmarkup.c:678
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"字元參引的結束部分不是分號;很可能您想使用 & 字元但未將它變為實體 ─ 請將 & 轉"
"換為 &"
-#: ../glib/gmarkup.c:764
+#: glib/gmarkup.c:764
msgid "Unfinished entity reference"
msgstr "未完成的實體參引"
-#: ../glib/gmarkup.c:770
+#: glib/gmarkup.c:770
msgid "Unfinished character reference"
msgstr "未完成的字元參引"
-#: ../glib/gmarkup.c:1056
+#: glib/gmarkup.c:1056
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "無效的 UTF-8 編碼文字 - 序列過長"
-#: ../glib/gmarkup.c:1084
+#: glib/gmarkup.c:1084
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "無效的 UTF-8 編碼文字 - 非開始字元"
-#: ../glib/gmarkup.c:1120
+#: glib/gmarkup.c:1120
#, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "無效的 UTF-8 編碼文字 - 不是合法的「%s」"
-#: ../glib/gmarkup.c:1158
+#: glib/gmarkup.c:1158
msgid "Document must begin with an element (e.g. <book>)"
msgstr "文件開始必須為一元素(例如 <book>)"
-#: ../glib/gmarkup.c:1198
+#: glib/gmarkup.c:1198
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr "‘<’字元後的‘%s’不是有效的字元;這樣不可能是元素名稱的開始部份"
-#: ../glib/gmarkup.c:1266
-#, c-format
+#: glib/gmarkup.c:1266
+#, fuzzy, c-format
msgid ""
-"Odd character '%s', expected a '>' character to end the start tag of element "
-"'%s'"
+"Odd character '%s', expected a '>' character to end the empty-element tag '%"
+"s'"
msgstr "字元‘%s’不尋常,元素‘%s’的開始標籤應該以‘>’字元結束"
-#: ../glib/gmarkup.c:1355
+#: glib/gmarkup.c:1355
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr "不尋常的字元‘%s’,屬性名稱‘%s’(屬於元素‘%s’)後應該是‘=’字元"
-#: ../glib/gmarkup.c:1397
+#: glib/gmarkup.c:1397
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"不尋常的字元‘%s’,元素‘%s’的開始標籤應該以‘>’或‘/’字元終結,也可以是屬性;或"
"許您在屬性名稱中使用了無效的字元"
-#: ../glib/gmarkup.c:1483
+#: glib/gmarkup.c:1483
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
msgstr ""
"不尋常的字元‘%s’,當指定屬性‘%s’的值(屬於元素‘%s’)時,等號後應該出現開引號"
-#: ../glib/gmarkup.c:1625
+#: glib/gmarkup.c:1625
#, 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:1665
+#: glib/gmarkup.c:1665
#, 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:1676
+#: glib/gmarkup.c:1676
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "元素‘%s’已關閉,沒有開啟中的元素"
-#: ../glib/gmarkup.c:1685
+#: glib/gmarkup.c:1685
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "元素‘%s’已關閉,但開啟中的元素是‘%s’"
-#: ../glib/gmarkup.c:1848
+#: glib/gmarkup.c:1848
msgid "Document was empty or contained only whitespace"
msgstr "文件完全空白或只含有空白字元"
-#: ../glib/gmarkup.c:1862
+#: glib/gmarkup.c:1862
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "文件在尖角括號‘<’後突然終止"
-#: ../glib/gmarkup.c:1870 ../glib/gmarkup.c:1915
+#: glib/gmarkup.c:1870 glib/gmarkup.c:1915
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr "在仍然有開啟中的元素時,文件突然結束 ─‘%s’是最後一個開啟的元素"
-#: ../glib/gmarkup.c:1878
+#: glib/gmarkup.c:1878
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr "文件突然結束,本來應該出現用來關閉標籤 <%s/> 的尖角括號"
-#: ../glib/gmarkup.c:1884
+#: glib/gmarkup.c:1884
msgid "Document ended unexpectedly inside an element name"
msgstr "在元素的名稱內,文件突然結束"
-#: ../glib/gmarkup.c:1890
+#: glib/gmarkup.c:1890
msgid "Document ended unexpectedly inside an attribute name"
msgstr "在屬性名稱內,文件突然結束"
-#: ../glib/gmarkup.c:1895
+#: glib/gmarkup.c:1895
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "在元素的開啟標籤內,文件突然結束"
-#: ../glib/gmarkup.c:1901
+#: glib/gmarkup.c:1901
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr "在屬性名稱的等號後,文件突然結束;沒有屬性值"
-#: ../glib/gmarkup.c:1908
+#: glib/gmarkup.c:1908
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "在屬性值內,文件突然結束"
-#: ../glib/gmarkup.c:1924
+#: glib/gmarkup.c:1924
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "在元素‘%s’的關閉標籤內,文件突然結束"
-#: ../glib/gmarkup.c:1930
+#: glib/gmarkup.c:1930
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "在註解或處理指示內,文件突然結束"
-#: ../glib/gregex.c:131
+#: glib/gregex.c:131
msgid "corrupted object"
msgstr "損毀的物件"
-#: ../glib/gregex.c:133
+#: glib/gregex.c:133
msgid "internal error or corrupted object"
msgstr "內部錯誤或損毀的物件"
-#: ../glib/gregex.c:135
+#: glib/gregex.c:135
msgid "out of memory"
msgstr "記憶體耗盡"
-#: ../glib/gregex.c:140
+#: glib/gregex.c:140
msgid "backtracking limit reached"
msgstr "已達回溯上限"
-#: ../glib/gregex.c:152 ../glib/gregex.c:160
+#: glib/gregex.c:152 glib/gregex.c:160
msgid "the pattern contains items not supported for partial matching"
msgstr "此模式包含了不支援部分比對的項目"
-#: ../glib/gregex.c:154 ../gio/glocalfile.c:1981
+#: glib/gregex.c:154 gio/glocalfile.c:1981
msgid "internal error"
msgstr "內部的錯誤"
-#: ../glib/gregex.c:162
+#: glib/gregex.c:162
msgid "back references as conditions are not supported for partial matching"
msgstr "部分比對不支援以反向參照為條件"
-#: ../glib/gregex.c:171
+#: glib/gregex.c:171
msgid "recursion limit reached"
msgstr "已達遞廻上限"
-#: ../glib/gregex.c:173
+#: glib/gregex.c:173
msgid "workspace limit for empty substrings reached"
msgstr "已達空白子字串的工作區上限"
-#: ../glib/gregex.c:175
+#: glib/gregex.c:175
msgid "invalid combination of newline flags"
msgstr "無效的換行旗標組合"
-#: ../glib/gregex.c:179
+#: glib/gregex.c:179
msgid "unknown error"
msgstr "不明的錯誤"
-#: ../glib/gregex.c:199
+#: glib/gregex.c:199
msgid "\\ at end of pattern"
msgstr "\\ 於模式結尾"
-#: ../glib/gregex.c:202
+#: glib/gregex.c:202
msgid "\\c at end of pattern"
msgstr "\\c 於模式結尾"
-#: ../glib/gregex.c:205
+#: glib/gregex.c:205
msgid "unrecognized character follows \\"
msgstr "無法辨識的字元接著 \\"
-#: ../glib/gregex.c:212
+#: glib/gregex.c:212
msgid "case-changing escapes (\\l, \\L, \\u, \\U) are not allowed here"
msgstr "這裡不允許使用改變大小寫的轉義符(\\l, \\L, \\u, \\U)"
-#: ../glib/gregex.c:215
+#: glib/gregex.c:215
msgid "numbers out of order in {} quantifier"
msgstr "{} 裡的數字次序顛倒了"
-#: ../glib/gregex.c:218
+#: glib/gregex.c:218
msgid "number too big in {} quantifier"
msgstr "{} 裡的數字太大了"
-#: ../glib/gregex.c:221
+#: glib/gregex.c:221
msgid "missing terminating ] for character class"
msgstr "字元類別缺少結束的 ]"
-#: ../glib/gregex.c:224
+#: glib/gregex.c:224
msgid "invalid escape sequence in character class"
msgstr "字元類別中無效的跳脫序列"
-#: ../glib/gregex.c:227
+#: glib/gregex.c:227
msgid "range out of order in character class"
msgstr "字元類別的範圍次序顛倒"
-#: ../glib/gregex.c:230
+#: glib/gregex.c:230
msgid "nothing to repeat"
msgstr "沒有東西可重複"
-#: ../glib/gregex.c:233
+#: glib/gregex.c:233
msgid "unrecognized character after (?"
msgstr "在 (? 後有無法辨識的字元"
-#: ../glib/gregex.c:237
+#: glib/gregex.c:237
msgid "unrecognized character after (?<"
msgstr "在 (?< 後有無法辨識的字元"
-#: ../glib/gregex.c:241
+#: glib/gregex.c:241
msgid "unrecognized character after (?P"
msgstr "在 (?P 後有無法辨識的字元"
-#: ../glib/gregex.c:244
+#: glib/gregex.c:244
msgid "POSIX named classes are supported only within a class"
msgstr "POSIX 命名類別只在單一類別中支援"
-#: ../glib/gregex.c:247
+#: glib/gregex.c:247
msgid "missing terminating )"
msgstr "缺少結束的 )"
-#: ../glib/gregex.c:251
+#: glib/gregex.c:251
msgid ") without opening ("
msgstr ") 沒有開頭的 ("
#. translators: '(?R' and '(?[+-]digits' are both meant as (groups of)
#. * sequences here, '(?-54' would be an example for the second group.
#.
-#: ../glib/gregex.c:258
+#: glib/gregex.c:258
msgid "(?R or (?[+-]digits must be followed by )"
msgstr "(?R 或 (?[+-]數字必須接著 )"
-#: ../glib/gregex.c:261
+#: glib/gregex.c:261
msgid "reference to non-existent subpattern"
msgstr "參照不存在的子模式"
-#: ../glib/gregex.c:264
+#: glib/gregex.c:264
msgid "missing ) after comment"
msgstr "註解後缺少 )"
-#: ../glib/gregex.c:267
+#: glib/gregex.c:267
msgid "regular expression too large"
msgstr "正規表示式太長"
-#: ../glib/gregex.c:270
+#: glib/gregex.c:270
msgid "failed to get memory"
msgstr "取得記憶體失敗"
-#: ../glib/gregex.c:273
+#: glib/gregex.c:273
msgid "lookbehind assertion is not fixed length"
msgstr "lookbehind 判斷提示(assertion) 不是固定的長度"
-#: ../glib/gregex.c:276
+#: glib/gregex.c:276
msgid "malformed number or name after (?("
msgstr "(?( 之後有格式不正確的數字或名稱"
-#: ../glib/gregex.c:279
+#: glib/gregex.c:279
msgid "conditional group contains more than two branches"
msgstr "條件式群組包含了兩個以上的分支"
-#: ../glib/gregex.c:282
+#: glib/gregex.c:282
msgid "assertion expected after (?("
msgstr "(?( 後應該有判斷提示(assertion)"
-#: ../glib/gregex.c:285
+#: glib/gregex.c:285
msgid "unknown POSIX class name"
msgstr "未知的 POSIX 類別名稱"
-#: ../glib/gregex.c:288
+#: glib/gregex.c:288
msgid "POSIX collating elements are not supported"
msgstr "不支援 POSIX 整理元件"
-#: ../glib/gregex.c:291
+#: glib/gregex.c:291
msgid "character value in \\x{...} sequence is too large"
msgstr "\\x{...} 序列中的字元值太大"
-#: ../glib/gregex.c:294
+#: glib/gregex.c:294
msgid "invalid condition (?(0)"
msgstr "無效的條件 (?(0)"
-#: ../glib/gregex.c:297
+#: glib/gregex.c:297
msgid "\\C not allowed in lookbehind assertion"
msgstr "在 lookbehind 判斷提示(assertion) 中不支援\\C"
-#: ../glib/gregex.c:300
+#: glib/gregex.c:300
msgid "recursive call could loop indefinitely"
msgstr "遞廻呼叫可能變成無限廻圈"
-#: ../glib/gregex.c:303
+#: glib/gregex.c:303
msgid "missing terminator in subpattern name"
msgstr "子模式名稱中缺少結束字元"
-#: ../glib/gregex.c:306
+#: glib/gregex.c:306
msgid "two named subpatterns have the same name"
msgstr "兩個命名的子模式具有相同的名稱"
-#: ../glib/gregex.c:309
+#: glib/gregex.c:309
msgid "malformed \\P or \\p sequence"
msgstr "格式不正確的 \\P 或 \\p 序列"
-#: ../glib/gregex.c:312
+#: glib/gregex.c:312
msgid "unknown property name after \\P or \\p"
msgstr "在 \\P 或 \\p 後有未知的屬性名稱"
-#: ../glib/gregex.c:315
+#: glib/gregex.c:315
msgid "subpattern name is too long (maximum 32 characters)"
msgstr "子模式名稱太長(最多 32 字元)"
-#: ../glib/gregex.c:318
+#: glib/gregex.c:318
msgid "too many named subpatterns (maximum 10,000)"
msgstr "太多命名的子模式(最大值 10,000)"
-#: ../glib/gregex.c:321
+#: glib/gregex.c:321
msgid "octal value is greater than \\377"
msgstr "8 進位值大於 \\377"
-#: ../glib/gregex.c:324
+#: glib/gregex.c:324
msgid "DEFINE group contains more than one branch"
msgstr "DEFINE 群組包含一個以上的分支"
-#: ../glib/gregex.c:327
+#: glib/gregex.c:327
msgid "repeating a DEFINE group is not allowed"
msgstr "不允許重複 DEFINE 群組"
-#: ../glib/gregex.c:330
+#: glib/gregex.c:330
msgid "inconsistent NEWLINE options"
msgstr "不一致的 NEWLINE 選項"
-#: ../glib/gregex.c:333
+#: glib/gregex.c:333
msgid ""
"\\g is not followed by a braced name or an optionally braced non-zero number"
msgstr "\\g 並未隨著具有大括弧的名稱或選用的具大括弧的非零數值"
-#: ../glib/gregex.c:338
+#: glib/gregex.c:338
msgid "unexpected repeat"
msgstr "未預期的重複"
-#: ../glib/gregex.c:342
+#: glib/gregex.c:342
msgid "code overflow"
msgstr "程式碼溢流"
-#: ../glib/gregex.c:346
+#: glib/gregex.c:346
msgid "overran compiling workspace"
msgstr "編譯工作區超出範圍"
-#: ../glib/gregex.c:350
+#: glib/gregex.c:350
msgid "previously-checked referenced subpattern not found"
msgstr "找不到預先核取的參照子字串"
-#: ../glib/gregex.c:526 ../glib/gregex.c:1593
+#: glib/gregex.c:526 glib/gregex.c:1593
#, c-format
msgid "Error while matching regular expression %s: %s"
msgstr "比對正規表示式 %s 發生錯誤:%s"
-#: ../glib/gregex.c:1098
+#: glib/gregex.c:1098
msgid "PCRE library is compiled without UTF8 support"
msgstr "PCRE 程式庫並未編譯對 UTF8 的支援"
-#: ../glib/gregex.c:1107
+#: glib/gregex.c:1107
msgid "PCRE library is compiled without UTF8 properties support"
msgstr "PCRE 程式庫並未編譯對 UTF8 屬性的支援"
-#: ../glib/gregex.c:1161
+#: glib/gregex.c:1161
#, c-format
msgid "Error while compiling regular expression %s at char %d: %s"
msgstr "編譯正規表示式 %s 時於第 %d 個字發生錯誤:%s"
-#: ../glib/gregex.c:1197
+#: glib/gregex.c:1197
#, c-format
msgid "Error while optimizing regular expression %s: %s"
msgstr "最佳化正規表示式 %s 時發生錯誤:%s"
-#: ../glib/gregex.c:2021
+#: glib/gregex.c:2021
msgid "hexadecimal digit or '}' expected"
msgstr "應為 16 進位數字或「}」"
-#: ../glib/gregex.c:2037
+#: glib/gregex.c:2037
msgid "hexadecimal digit expected"
msgstr "應為 16 進位數字"
-#: ../glib/gregex.c:2077
+#: glib/gregex.c:2077
msgid "missing '<' in symbolic reference"
msgstr "在符號參照中缺少「<」"
-#: ../glib/gregex.c:2086
+#: glib/gregex.c:2086
msgid "unfinished symbolic reference"
msgstr "未完成的符號參照"
-#: ../glib/gregex.c:2093
+#: glib/gregex.c:2093
msgid "zero-length symbolic reference"
msgstr "零-長度的符號參照"
-#: ../glib/gregex.c:2104
+#: glib/gregex.c:2104
msgid "digit expected"
msgstr "預期數字"
-#: ../glib/gregex.c:2122
+#: glib/gregex.c:2122
msgid "illegal symbolic reference"
msgstr "不合法的符號參照"
-#: ../glib/gregex.c:2184
+#: glib/gregex.c:2184
msgid "stray final '\\'"
msgstr "缺少最後的「\\」"
-#: ../glib/gregex.c:2188
+#: glib/gregex.c:2188
msgid "unknown escape sequence"
msgstr "不明的跳脫序列"
-#: ../glib/gregex.c:2198
+#: glib/gregex.c:2198
#, c-format
msgid "Error while parsing replacement text \"%s\" at char %lu: %s"
msgstr "當分析於字元 %2$lu 的取代文字「%1$s」時發生錯誤:%3$s"
-#: ../glib/gshell.c:70
+#: glib/gshell.c:70
#, c-format
msgid "Quoted text doesn't begin with a quotation mark"
msgstr "應該用引號括起來的文字不是以括號為開始"
-#: ../glib/gshell.c:160
+#: glib/gshell.c:160
#, c-format
msgid "Unmatched quotation mark in command line or other shell-quoted text"
msgstr "指令列或其它標為指令的字串內有不對稱的引號"
-#: ../glib/gshell.c:538
+#: glib/gshell.c:538
#, c-format
msgid "Text ended just after a '\\' character. (The text was '%s')"
msgstr "文字在‘\\’字元後就終止了。(文字為‘%s’)"
-#: ../glib/gshell.c:545
+#: glib/gshell.c:545
#, c-format
msgid "Text ended before matching quote was found for %c. (The text was '%s')"
msgstr "字串完結前仍沒有對應於 %c 的引號(字串為‘%s’)"
-#: ../glib/gshell.c:557
+#: glib/gshell.c:557
msgid "Text was empty (or contained only whitespace)"
msgstr "文字是空白的(或只含有空白字元)"
-#: ../glib/gspawn-win32.c:279
+#: glib/gspawn-win32.c:279
msgid "Failed to read data from child process"
msgstr "無法從副進程讀取資料"
-#: ../glib/gspawn-win32.c:294 ../glib/gspawn.c:1467
+#: glib/gspawn-win32.c:294 glib/gspawn.c:1467
#, c-format
msgid "Failed to create pipe for communicating with child process (%s)"
msgstr "無法建立管道來和副進程溝通 (%s)"
-#: ../glib/gspawn-win32.c:332 ../glib/gspawn-win32.c:340 ../glib/gspawn.c:1131
+#: glib/gspawn-win32.c:332 glib/gspawn-win32.c:340 glib/gspawn.c:1131
#, c-format
msgid "Failed to read from child pipe (%s)"
msgstr "無法從管道讀取資料 (%s)"
-#: ../glib/gspawn-win32.c:363 ../glib/gspawn.c:1336
+#: glib/gspawn-win32.c:363 glib/gspawn.c:1336
#, c-format
msgid "Failed to change to directory '%s' (%s)"
msgstr "無法進入目錄‘%s’(%s)"
-#: ../glib/gspawn-win32.c:369 ../glib/gspawn-win32.c:493
+#: glib/gspawn-win32.c:369 glib/gspawn-win32.c:493
#, c-format
msgid "Failed to execute child process (%s)"
msgstr "無法執行副進程 (%s)"
-#: ../glib/gspawn-win32.c:440
+#: glib/gspawn-win32.c:440
#, c-format
msgid "Invalid program name: %s"
msgstr "程式名稱無效:%s"
-#: ../glib/gspawn-win32.c:450 ../glib/gspawn-win32.c:723
-#: ../glib/gspawn-win32.c:1282
+#: glib/gspawn-win32.c:450 glib/gspawn-win32.c:723 glib/gspawn-win32.c:1282
#, c-format
msgid "Invalid string in argument vector at %d: %s"
msgstr "第 %d 個引數中含無效的字串:%s"
-#: ../glib/gspawn-win32.c:461 ../glib/gspawn-win32.c:738
-#: ../glib/gspawn-win32.c:1315
+#: glib/gspawn-win32.c:461 glib/gspawn-win32.c:738 glib/gspawn-win32.c:1315
#, c-format
msgid "Invalid string in environment: %s"
msgstr "環境變數中的字串無效:%s"
-#: ../glib/gspawn-win32.c:719 ../glib/gspawn-win32.c:1263
+#: glib/gspawn-win32.c:719 glib/gspawn-win32.c:1263
#, c-format
msgid "Invalid working directory: %s"
msgstr "無效的工作目錄:%s"
-#: ../glib/gspawn-win32.c:787
+#: glib/gspawn-win32.c:787
#, c-format
msgid "Failed to execute helper program (%s)"
msgstr "無法執行協助程式 (%s)"
-#: ../glib/gspawn-win32.c:1002
+#: glib/gspawn-win32.c:1002
msgid ""
"Unexpected error in g_io_channel_win32_poll() reading data from a child "
"process"
msgstr "當 g_io_channel_win32_poll() 從副進程讀取資料時發生無法預計的錯誤"
-#: ../glib/gspawn.c:188
+#: glib/gspawn.c:188
#, c-format
msgid "Failed to read data from child process (%s)"
msgstr "無法從副進程讀取資料 (%s)"
-#: ../glib/gspawn.c:325
+#: glib/gspawn.c:325
#, c-format
msgid "Unexpected error in select() reading data from a child process (%s)"
msgstr "當 select() 從副進程讀取資料時發生無法預計的錯誤 (%s)"
-#: ../glib/gspawn.c:408
+#: glib/gspawn.c:408
#, c-format
msgid "Unexpected error in waitpid() (%s)"
msgstr "waitpid() 發生無法預計的錯誤 (%s)"
-#: ../glib/gspawn.c:1196
+#: glib/gspawn.c:1196
#, c-format
msgid "Failed to fork (%s)"
msgstr "無法衍生進程 (%s)"
-#: ../glib/gspawn.c:1346
+#: glib/gspawn.c:1346
#, c-format
msgid "Failed to execute child process \"%s\" (%s)"
msgstr "無法執行副進程“%s”(%s)"
-#: ../glib/gspawn.c:1356
+#: glib/gspawn.c:1356
#, c-format
msgid "Failed to redirect output or input of child process (%s)"
msgstr "無法將副進程的輸出或輸入重新導向 (%s)"
-#: ../glib/gspawn.c:1365
+#: glib/gspawn.c:1365
#, c-format
msgid "Failed to fork child process (%s)"
msgstr "無法衍生副進程 (%s)"
-#: ../glib/gspawn.c:1373
+#: glib/gspawn.c:1373
#, c-format
msgid "Unknown error executing child process \"%s\""
msgstr "執行副進程“%s”時發生不明的錯誤"
-#: ../glib/gspawn.c:1395
+#: glib/gspawn.c:1395
#, c-format
msgid "Failed to read enough data from child pid pipe (%s)"
msgstr "無法從 child pid pipe 讀取足夠的資料 (%s)"
-#: ../glib/gutf8.c:1030
+#: glib/gutf8.c:1030
msgid "Character out of range for UTF-8"
msgstr "字元不在 UTF-8 範圍之內"
-#: ../glib/gutf8.c:1124 ../glib/gutf8.c:1133 ../glib/gutf8.c:1265
-#: ../glib/gutf8.c:1274 ../glib/gutf8.c:1415 ../glib/gutf8.c:1511
+#: glib/gutf8.c:1124 glib/gutf8.c:1133 glib/gutf8.c:1265 glib/gutf8.c:1274
+#: glib/gutf8.c:1415 glib/gutf8.c:1511
msgid "Invalid sequence in conversion input"
msgstr "轉換輸入資料時出現無效的字元次序"
-#: ../glib/gutf8.c:1426 ../glib/gutf8.c:1522
+#: glib/gutf8.c:1426 glib/gutf8.c:1522
msgid "Character out of range for UTF-16"
msgstr "字元不在 UTF-16 範圍之內"
-#: ../glib/goption.c:615
+#: glib/goption.c:615
msgid "Usage:"
msgstr "用法:"
-#: ../glib/goption.c:615
+#: glib/goption.c:615
msgid "[OPTION...]"
msgstr "[選項...]"
-#: ../glib/goption.c:719
+#: glib/goption.c:719
msgid "Help Options:"
msgstr "說明選項:"
-#: ../glib/goption.c:720
+#: glib/goption.c:720
msgid "Show help options"
msgstr "顯示說明的選項"
-#: ../glib/goption.c:726
+#: glib/goption.c:726
msgid "Show all help options"
msgstr "顯示所有的說明選項"
-#: ../glib/goption.c:788
+#: glib/goption.c:788
msgid "Application Options:"
msgstr "應用程式選項:"
-#: ../glib/goption.c:849 ../glib/goption.c:919
+#: glib/goption.c:849 glib/goption.c:919
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr "無法給 %2$s 解析整數值‘%1$s’"
-#: ../glib/goption.c:859 ../glib/goption.c:927
+#: glib/goption.c:859 glib/goption.c:927
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "%2$s 的整數值‘%1$s’超出範圍"
-#: ../glib/goption.c:884
+#: glib/goption.c:884
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "無法給 %2$s 解析雙精度浮點數‘%1$s’"
-#: ../glib/goption.c:892
+#: glib/goption.c:892
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "%2$s 的雙精度浮點數‘%1$s’超出範圍"
-#: ../glib/goption.c:1229
+#: glib/goption.c:1229
#, c-format
msgid "Error parsing option %s"
msgstr "解析 %s 選項時發生錯誤"
-#: ../glib/goption.c:1260 ../glib/goption.c:1371
+#: glib/goption.c:1260 glib/goption.c:1371
#, c-format
msgid "Missing argument for %s"
msgstr "缺少 %s 的參數"
-#: ../glib/goption.c:1766
+#: glib/goption.c:1766
#, c-format
msgid "Unknown option %s"
msgstr "未知的選項 %s"
-#: ../glib/gkeyfile.c:358
+#: glib/gkeyfile.c:358
msgid "Valid key file could not be found in search dirs"
msgstr "在資料目錄中找不到有效的設定鍵檔案"
-#: ../glib/gkeyfile.c:393
+#: glib/gkeyfile.c:393
msgid "Not a regular file"
msgstr "不是普通檔案"
-#: ../glib/gkeyfile.c:401
+#: glib/gkeyfile.c:401
msgid "File is empty"
msgstr "檔案是空白的"
-#: ../glib/gkeyfile.c:761
+#: glib/gkeyfile.c:761
#, c-format
msgid ""
"Key file contains line '%s' which is not a key-value pair, group, or comment"
msgstr "設定鍵檔案中‘%s’行並非設定鍵值配對、群組或註解"
-#: ../glib/gkeyfile.c:821
+#: glib/gkeyfile.c:821
#, c-format
msgid "Invalid group name: %s"
msgstr "無效的群組名稱:%s"
-#: ../glib/gkeyfile.c:843
+#: glib/gkeyfile.c:843
msgid "Key file does not start with a group"
msgstr "設定鍵檔案並非以群組開頭"
-#: ../glib/gkeyfile.c:869
+#: glib/gkeyfile.c:869
#, c-format
msgid "Invalid key name: %s"
msgstr "無效的設定鍵名稱:%s"
-#: ../glib/gkeyfile.c:896
+#: glib/gkeyfile.c:896
#, c-format
msgid "Key file contains unsupported encoding '%s'"
msgstr "設定鍵檔案包含不支援的編碼‘%s’"
-#: ../glib/gkeyfile.c:1112 ../glib/gkeyfile.c:1272 ../glib/gkeyfile.c:2490
-#: ../glib/gkeyfile.c:2558 ../glib/gkeyfile.c:2693 ../glib/gkeyfile.c:2828
-#: ../glib/gkeyfile.c:2981 ../glib/gkeyfile.c:3168 ../glib/gkeyfile.c:3229
+#: glib/gkeyfile.c:1112 glib/gkeyfile.c:1272 glib/gkeyfile.c:2490
+#: glib/gkeyfile.c:2558 glib/gkeyfile.c:2693 glib/gkeyfile.c:2828
+#: glib/gkeyfile.c:2981 glib/gkeyfile.c:3168 glib/gkeyfile.c:3229
#, c-format
msgid "Key file does not have group '%s'"
msgstr "設定鍵檔案沒有群組‘%s’"
-#: ../glib/gkeyfile.c:1284
+#: glib/gkeyfile.c:1284
#, c-format
msgid "Key file does not have key '%s'"
msgstr "設定鍵檔案沒有設定鍵‘%s’"
-#: ../glib/gkeyfile.c:1386 ../glib/gkeyfile.c:1499
+#: glib/gkeyfile.c:1386 glib/gkeyfile.c:1499
#, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr "設定鍵檔案包含的設定鍵‘%s’(數值為‘%s’)並非 UTF-8"
-#: ../glib/gkeyfile.c:1406 ../glib/gkeyfile.c:1519 ../glib/gkeyfile.c:1894
+#: glib/gkeyfile.c:1406 glib/gkeyfile.c:1519 glib/gkeyfile.c:1894
#, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "設定鍵檔案包含的設定鍵‘%s’的數值無法解譯。"
-#: ../glib/gkeyfile.c:2109 ../glib/gkeyfile.c:2321
+#: glib/gkeyfile.c:2109 glib/gkeyfile.c:2321
#, c-format
msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted."
msgstr "設定鍵檔案包含的群組‘%2$s’中設定鍵‘%1$s’數值無法解譯"
-#: ../glib/gkeyfile.c:2505 ../glib/gkeyfile.c:2708 ../glib/gkeyfile.c:3240
+#: glib/gkeyfile.c:2505 glib/gkeyfile.c:2708 glib/gkeyfile.c:3240
#, c-format
msgid "Key file does not have key '%s' in group '%s'"
msgstr "設定鍵檔案的群組‘%2$s’中沒有設定鍵‘%1$s’"
-#: ../glib/gkeyfile.c:3474
+#: glib/gkeyfile.c:3474
msgid "Key file contains escape character at end of line"
msgstr "設定鍵檔案在行尾包含跳出字元"
-#: ../glib/gkeyfile.c:3496
+#: glib/gkeyfile.c:3496
#, c-format
msgid "Key file contains invalid escape sequence '%s'"
msgstr "設定鍵檔案含有不正確的「跳出字元」‘%s’"
-#: ../glib/gkeyfile.c:3638
+#: glib/gkeyfile.c:3638
#, c-format
msgid "Value '%s' cannot be interpreted as a number."
msgstr "數值‘%s’不能被解譯為數字。"
-#: ../glib/gkeyfile.c:3652
+#: glib/gkeyfile.c:3652
#, c-format
msgid "Integer value '%s' out of range"
msgstr "整數值‘%s’超出範圍"
-#: ../glib/gkeyfile.c:3685
+#: glib/gkeyfile.c:3685
#, c-format
msgid "Value '%s' cannot be interpreted as a float number."
msgstr "數值‘%s’不能被解譯為浮點數。"
-#: ../glib/gkeyfile.c:3709
+#: glib/gkeyfile.c:3709
#, c-format
msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "數值‘%s’不能被解譯為邏輯值。"
-#: ../gio/gbufferedinputstream.c:485 ../gio/ginputstream.c:187
-#: ../gio/ginputstream.c:319 ../gio/ginputstream.c:560
-#: ../gio/ginputstream.c:685 ../gio/goutputstream.c:195
-#: ../gio/goutputstream.c:649
+#: gio/gbufferedinputstream.c:485 gio/ginputstream.c:187
+#: gio/ginputstream.c:319 gio/ginputstream.c:560 gio/ginputstream.c:685
+#: gio/goutputstream.c:195 gio/goutputstream.c:649
#, c-format
msgid "Too large count value passed to %s"
msgstr "傳給 %s 的計數值太大"
-#: ../gio/gbufferedinputstream.c:872 ../gio/ginputstream.c:895
-#: ../gio/goutputstream.c:1078
+#: gio/gbufferedinputstream.c:872 gio/ginputstream.c:895
+#: gio/goutputstream.c:1078
msgid "Stream is already closed"
msgstr "串流已經關閉"
-#: ../gio/gcancellable.c:295 ../gio/glocalfile.c:1974
-#: ../gio/gsimpleasyncresult.c:612
+#: gio/gcancellable.c:295 gio/glocalfile.c:1974 gio/gsimpleasyncresult.c:612
msgid "Operation was cancelled"
msgstr "操作已被取消"
-#: ../gio/gcontenttype.c:176
+#: gio/gcontenttype.c:180
msgid "Unknown type"
msgstr "未知的類型"
-#: ../gio/gcontenttype.c:177
+#: gio/gcontenttype.c:181
#, c-format
msgid "%s filetype"
msgstr "%s 檔案類型"
-#: ../gio/gcontenttype.c:667
+#: gio/gcontenttype.c:678
#, c-format
msgid "%s type"
msgstr "%s 類型"
-#: ../gio/gdatainputstream.c:310
+#: gio/gdatainputstream.c:310
msgid "Unexpected early end-of-stream"
msgstr "未預期的串流過早結束"
-#: ../gio/gdesktopappinfo.c:429 ../gio/gwin32appinfo.c:222
+#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222
msgid "Unnamed"
msgstr "未命名的"
-#: ../gio/gdesktopappinfo.c:606
+#: gio/gdesktopappinfo.c:606
msgid "Desktop file didn't specify Exec field"
msgstr "桌面(Desktop)檔案未指定 Exec 欄位"
-#: ../gio/gdesktopappinfo.c:900
+#: gio/gdesktopappinfo.c:900
msgid "Unable to find terminal required for application"
msgstr "無法找到應用程式要求的終端機"
-#: ../gio/gdesktopappinfo.c:1132
+#: gio/gdesktopappinfo.c:1132
#, c-format
msgid "Can't create user application configuration folder %s: %s"
msgstr "不能建立使用者應用程式組態資料夾 %s:%s"
-#: ../gio/gdesktopappinfo.c:1136
+#: gio/gdesktopappinfo.c:1136
#, c-format
msgid "Can't create user MIME configuration folder %s: %s"
msgstr "不能建立使用者 MIME 組態資料夾 %s:%s"
-#: ../gio/gdesktopappinfo.c:1475
+#: gio/gdesktopappinfo.c:1475
#, c-format
msgid "Can't create user desktop file %s"
msgstr "不能建立使用者桌面檔案 %s"
-#: ../gio/gdesktopappinfo.c:1550
+#: gio/gdesktopappinfo.c:1550
#, c-format
msgid "Custom definition for %s"
msgstr "自訂 %s 的定義"
-#: ../gio/gdrive.c:374
+#: gio/gdrive.c:381
msgid "drive doesn't implement eject"
msgstr "裝置無法實作退出功能(eject)"
-#: ../gio/gdrive.c:441
+#: gio/gdrive.c:451
msgid "drive doesn't implement polling for media"
msgstr "裝置無法實作媒體的輪詢"
-#: ../gio/gfile.c:823 ../gio/gfile.c:1051 ../gio/gfile.c:1184
-#: ../gio/gfile.c:1415 ../gio/gfile.c:1468 ../gio/gfile.c:1524
-#: ../gio/gfile.c:1606 ../gio/gfile.c:2663 ../gio/gfile.c:2714
-#: ../gio/gfile.c:2842 ../gio/gfile.c:2882 ../gio/gfile.c:3206
-#: ../gio/gfile.c:3608 ../gio/gfile.c:3691 ../gio/gfile.c:3774
-#: ../gio/gfile.c:3854
+#: gio/gfile.c:825 gio/gfile.c:1055 gio/gfile.c:1190 gio/gfile.c:1426
+#: gio/gfile.c:1480 gio/gfile.c:1537 gio/gfile.c:1620 gio/gfile.c:2681
+#: gio/gfile.c:2732 gio/gfile.c:2860 gio/gfile.c:2900 gio/gfile.c:3227
+#: gio/gfile.c:3629 gio/gfile.c:3713 gio/gfile.c:3796 gio/gfile.c:3876
+#: gio/gfile.c:4206
msgid "Operation not supported"
msgstr "不支援操作"
#. Translators: This is an error message when trying to find
#. * the enclosing (user visible) mount of a file, but none
#. * exists.
-#: ../gio/gfile.c:1303 ../gio/glocalfile.c:1064 ../gio/glocalfile.c:1075
-#: ../gio/glocalfile.c:1088
+#: gio/gfile.c:1311 gio/glocalfile.c:1064 gio/glocalfile.c:1075
+#: gio/glocalfile.c:1088
msgid "Containing mount does not exist"
msgstr "包含了不存在的掛載點"
-#: ../gio/gfile.c:1945 ../gio/glocalfile.c:2124
+#: gio/gfile.c:1963 gio/glocalfile.c:2124
msgid "Can't copy over directory"
msgstr "不能複製整個目錄"
-#: ../gio/gfile.c:2005
+#: gio/gfile.c:2023
msgid "Can't copy directory over directory"
msgstr "不能從目錄複製到目錄"
-#: ../gio/gfile.c:2013 ../gio/glocalfile.c:2133
+#: gio/gfile.c:2031 gio/glocalfile.c:2133
msgid "Target file exists"
msgstr "目標檔案已存在"
-#: ../gio/gfile.c:2031
+#: gio/gfile.c:2049
msgid "Can't recursively copy directory"
msgstr "不能遞廻複製目錄"
-#: ../gio/gfile.c:2832
+#: gio/gfile.c:2850
msgid "Invalid symlink value given"
msgstr "提供了無效的符號連結值"
-#: ../gio/gfile.c:2925
+#: gio/gfile.c:2943
msgid "Trash not supported"
msgstr "不支援回收筒"
-#: ../gio/gfile.c:2972
+#: gio/gfile.c:2992
#, c-format
msgid "File names cannot contain '%c'"
msgstr "檔案名稱不能包含「%c」"
-#: ../gio/gfile.c:4938 ../gio/gvolume.c:369
+#: gio/gfile.c:4974 gio/gvolume.c:370
msgid "volume doesn't implement mount"
msgstr "儲存裝置尚未實作掛載功能"
-#: ../gio/gfile.c:5046
+#: gio/gfile.c:5082
msgid "No application is registered as handling this file"
msgstr "沒有應用程式註冊為用以處理這個檔案"
-#: ../gio/gfileenumerator.c:205
+#: gio/gfileenumerator.c:205
msgid "Enumerator is closed"
msgstr "檔案列舉器(enumerator)已關閉"
-#: ../gio/gfileenumerator.c:212 ../gio/gfileenumerator.c:271
-#: ../gio/gfileenumerator.c:371 ../gio/gfileenumerator.c:480
+#: gio/gfileenumerator.c:212 gio/gfileenumerator.c:271
+#: gio/gfileenumerator.c:371 gio/gfileenumerator.c:480
msgid "File enumerator has outstanding operation"
msgstr "檔案列舉器(enumerator)有異常操作"
-#: ../gio/gfileenumerator.c:361 ../gio/gfileenumerator.c:470
+#: gio/gfileenumerator.c:361 gio/gfileenumerator.c:470
msgid "File enumerator is already closed"
msgstr "檔案列舉器(enumerator)已經關閉"
-#: ../gio/gfileinputstream.c:157 ../gio/gfileinputstream.c:424
-#: ../gio/gfileoutputstream.c:171 ../gio/gfileoutputstream.c:526
+#: gio/gfileinputstream.c:157 gio/gfileinputstream.c:424
+#: gio/gfileoutputstream.c:171 gio/gfileoutputstream.c:526
msgid "Stream doesn't support query_info"
msgstr "串流不支援 query_info"
-#: ../gio/gfileinputstream.c:339 ../gio/gfileoutputstream.c:384
+#: gio/gfileinputstream.c:339 gio/gfileoutputstream.c:384
msgid "Seek not supported on stream"
msgstr "不支援在串流中搜尋"
-#: ../gio/gfileinputstream.c:383
+#: gio/gfileinputstream.c:383
msgid "Truncate not allowed on input stream"
msgstr "在輸入串流中不允許截短(truncate)"
-#: ../gio/gfileoutputstream.c:460
+#: gio/gfileoutputstream.c:460
msgid "Truncate not supported on stream"
msgstr "在串流中不支援截短(truncate)"
-#: ../gio/ginputstream.c:196
+#: gio/ginputstream.c:196
msgid "Input stream doesn't implement read"
msgstr "輸入串流尚未實作讀取"
#. Translators: This is an error you get if there is
#. * already an operation running against this stream when
#. * you try to start one
-#: ../gio/ginputstream.c:905 ../gio/goutputstream.c:1088
+#: gio/ginputstream.c:905 gio/goutputstream.c:1088
msgid "Stream has outstanding operation"
msgstr "串流有異常操作"
-#: ../gio/glocaldirectorymonitor.c:274
+#: gio/glocaldirectorymonitor.c:274
msgid "Unable to find default local directory monitor type"
msgstr "無法找到預設的本地端目錄監視器類型"
-#: ../gio/glocalfile.c:601
+#: gio/glocalfile.c:601
#, c-format
msgid "Invalid filename %s"
msgstr "無效的檔案名稱 %s"
-#: ../gio/glocalfile.c:972
+#: gio/glocalfile.c:972
#, c-format
msgid "Error getting filesystem info: %s"
msgstr "取得檔案系統資訊時發生錯誤:%s"
-#: ../gio/glocalfile.c:1108
+#: gio/glocalfile.c:1108
msgid "Can't rename root directory"
msgstr "不能重新命名根目錄"
-#: ../gio/glocalfile.c:1126
+#: gio/glocalfile.c:1126
msgid "Can't rename file, filename already exist"
msgstr "不能重新命名檔案,該檔案名稱已存在"
-#: ../gio/glocalfile.c:1139 ../gio/glocalfile.c:2003 ../gio/glocalfile.c:2032
-#: ../gio/glocalfile.c:2186 ../gio/glocalfileoutputstream.c:472
-#: ../gio/glocalfileoutputstream.c:517 ../gio/glocalfileoutputstream.c:925
+#: gio/glocalfile.c:1139 gio/glocalfile.c:2003 gio/glocalfile.c:2032
+#: gio/glocalfile.c:2186 gio/glocalfileoutputstream.c:472
+#: gio/glocalfileoutputstream.c:517 gio/glocalfileoutputstream.c:925
msgid "Invalid filename"
msgstr "無效的檔案名稱"
-#: ../gio/glocalfile.c:1143
+#: gio/glocalfile.c:1143
#, c-format
msgid "Error renaming file: %s"
msgstr "重新命名檔案時發生錯誤:%s"
-#: ../gio/glocalfile.c:1262
+#: gio/glocalfile.c:1262
#, c-format
msgid "Error opening file: %s"
msgstr "開啓檔案時發生錯誤:%s"
-#: ../gio/glocalfile.c:1272
+#: gio/glocalfile.c:1272
msgid "Can't open directory"
msgstr "無法開啟目錄"
-#: ../gio/glocalfile.c:1332
+#: gio/glocalfile.c:1332
#, c-format
msgid "Error removing file: %s"
msgstr "移除檔案時發生錯誤:%s"
-#: ../gio/glocalfile.c:1696
+#: gio/glocalfile.c:1696
#, c-format
msgid "Error trashing file: %s"
msgstr "移動檔案至回收筒時發生錯誤:%s"
-#: ../gio/glocalfile.c:1719
+#: gio/glocalfile.c:1719
#, c-format
msgid "Unable to create trash dir %s: %s"
msgstr "無法建立回收筒目錄 %s:%s"
-#: ../gio/glocalfile.c:1740
+#: gio/glocalfile.c:1740
msgid "Unable to find toplevel directory for trash"
msgstr "無法找到回收筒的頂端層級目錄"
-#: ../gio/glocalfile.c:1819 ../gio/glocalfile.c:1839
+#: gio/glocalfile.c:1819 gio/glocalfile.c:1839
msgid "Unable to find or create trash directory"
msgstr "無法找到或建立回收筒目錄"
-#: ../gio/glocalfile.c:1873
+#: gio/glocalfile.c:1873
#, c-format
msgid "Unable to create trashing info file: %s"
msgstr "無法建立回收筒資訊檔案:%s"
-#: ../gio/glocalfile.c:1898 ../gio/glocalfile.c:1973 ../gio/glocalfile.c:1980
+#: gio/glocalfile.c:1898 gio/glocalfile.c:1973 gio/glocalfile.c:1980
#, c-format
msgid "Unable to trash file: %s"
msgstr "無法將檔案移至回收筒:%s"
-#: ../gio/glocalfile.c:2007
+#: gio/glocalfile.c:2007
#, fuzzy, c-format
msgid "Error creating directory: %s"
msgstr "開啟目錄‘%s’時發生錯誤:%s"
-#: ../gio/glocalfile.c:2036
+#: gio/glocalfile.c:2036
#, c-format
msgid "Error making symbolic link: %s"
msgstr "建立符號連結時發生錯誤:%s"
-#: ../gio/glocalfile.c:2096 ../gio/glocalfile.c:2190
+#: gio/glocalfile.c:2096 gio/glocalfile.c:2190
#, c-format
msgid "Error moving file: %s"
msgstr "移動檔案時發生錯誤:%s"
-#: ../gio/glocalfile.c:2119
+#: gio/glocalfile.c:2119
msgid "Can't move directory over directory"
msgstr "不能將目錄移動到目錄"
-#: ../gio/glocalfile.c:2146 ../gio/glocalfileoutputstream.c:777
-#: ../gio/glocalfileoutputstream.c:791 ../gio/glocalfileoutputstream.c:806
-#: ../gio/glocalfileoutputstream.c:822 ../gio/glocalfileoutputstream.c:836
+#: gio/glocalfile.c:2146 gio/glocalfileoutputstream.c:777
+#: gio/glocalfileoutputstream.c:791 gio/glocalfileoutputstream.c:806
+#: gio/glocalfileoutputstream.c:822 gio/glocalfileoutputstream.c:836
msgid "Backup file creation failed"
msgstr "備份檔案建立失敗"
-#: ../gio/glocalfile.c:2165
+#: gio/glocalfile.c:2165
#, c-format
msgid "Error removing target file: %s"
msgstr "移除目標檔案時發生錯誤:%s"
-#: ../gio/glocalfile.c:2179
+#: gio/glocalfile.c:2179
msgid "Move between mounts not supported"
msgstr "不支援在掛載點之間移動"
-#: ../gio/glocalfileinfo.c:716
+#: gio/glocalfileinfo.c:716
msgid "Attribute value must be non-NULL"
msgstr "屬性數值必須為非-NULL"
-#: ../gio/glocalfileinfo.c:723
+#: gio/glocalfileinfo.c:723
msgid "Invalid attribute type (string expected)"
msgstr "無效的屬性類型(應為字串值)"
-#: ../gio/glocalfileinfo.c:730
+#: gio/glocalfileinfo.c:730
msgid "Invalid extended attribute name"
msgstr "無效的延伸屬性名稱"
-#: ../gio/glocalfileinfo.c:770
+#: gio/glocalfileinfo.c:770
#, c-format
msgid "Error setting extended attribute '%s': %s"
msgstr "設定延伸屬性「%s」時發生錯誤:%s"
-#: ../gio/glocalfileinfo.c:1456 ../gio/glocalfileoutputstream.c:666
+#: gio/glocalfileinfo.c:1456 gio/glocalfileoutputstream.c:666
#, c-format
msgid "Error stating file '%s': %s"
msgstr "取得檔案「%s」狀態時發生錯誤:%s"
-#: ../gio/glocalfileinfo.c:1526
+#: gio/glocalfileinfo.c:1526
msgid " (invalid encoding)"
msgstr "(無效的編碼)"
-#: ../gio/glocalfileinfo.c:1696
+#: gio/glocalfileinfo.c:1696
#, c-format
msgid "Error stating file descriptor: %s"
msgstr "取得檔案描述狀態時發生錯誤:%s"
-#: ../gio/glocalfileinfo.c:1741
+#: gio/glocalfileinfo.c:1741
msgid "Invalid attribute type (uint32 expected)"
msgstr "無效的屬性類型(應為 uint32 值)"
-#: ../gio/glocalfileinfo.c:1759
+#: gio/glocalfileinfo.c:1759
msgid "Invalid attribute type (uint64 expected)"
msgstr "無效的屬性類型(應為 uint64 值)"
-#: ../gio/glocalfileinfo.c:1778
+#: gio/glocalfileinfo.c:1778
msgid "Invalid attribute type (byte string expected)"
msgstr "無效的屬性類型(應為 byte string 值)"
-#: ../gio/glocalfileinfo.c:1804
+#: gio/glocalfileinfo.c:1804
#, c-format
msgid "Error setting permissions: %s"
msgstr "設定權限時發生錯誤:%s"
-#: ../gio/glocalfileinfo.c:1855 ../gio/glocalfileinfo.c:2023
+#: gio/glocalfileinfo.c:1855 gio/glocalfileinfo.c:2023
#, c-format
msgid "Error setting owner: %s"
msgstr "設定擁有者時發生錯誤:%s"
-#: ../gio/glocalfileinfo.c:1878
+#: gio/glocalfileinfo.c:1878
msgid "symlink must be non-NULL"
msgstr "符號連結必須為非-NULL"
-#: ../gio/glocalfileinfo.c:1888 ../gio/glocalfileinfo.c:1907
-#: ../gio/glocalfileinfo.c:1918
+#: gio/glocalfileinfo.c:1888 gio/glocalfileinfo.c:1907
+#: gio/glocalfileinfo.c:1918
#, c-format
msgid "Error setting symlink: %s"
msgstr "設定符號連結時發生錯誤:%s"
-#: ../gio/glocalfileinfo.c:1897
+#: gio/glocalfileinfo.c:1897
msgid "Error setting symlink: file is not a symlink"
msgstr "設定符號連結時發生錯誤:檔案不是符號連結"
-#: ../gio/glocalfileinfo.c:2078
+#: gio/glocalfileinfo.c:2078
#, c-format
msgid "Setting attribute %s not supported"
msgstr "不支援設定屬性 %s"
-#: ../gio/glocalfileinputstream.c:160 ../gio/glocalfileoutputstream.c:570
+#: gio/glocalfileinputstream.c:160 gio/glocalfileoutputstream.c:570
#, c-format
msgid "Error reading from file: %s"
msgstr "從檔案讀取時發生錯誤:%s"
-#: ../gio/glocalfileinputstream.c:191 ../gio/glocalfileinputstream.c:203
-#: ../gio/glocalfileinputstream.c:312 ../gio/glocalfileoutputstream.c:372
-#: ../gio/glocalfileoutputstream.c:854
+#: gio/glocalfileinputstream.c:191 gio/glocalfileinputstream.c:203
+#: gio/glocalfileinputstream.c:312 gio/glocalfileoutputstream.c:372
+#: gio/glocalfileoutputstream.c:854
#, c-format
msgid "Error seeking in file: %s"
msgstr "在檔案中搜尋時發生錯誤:%s"
-#: ../gio/glocalfileinputstream.c:233 ../gio/glocalfileoutputstream.c:279
+#: gio/glocalfileinputstream.c:233 gio/glocalfileoutputstream.c:279
#, c-format
msgid "Error closing file: %s"
msgstr "關閉檔案時發生錯誤:%s"
-#: ../gio/glocalfilemonitor.c:198
+#: gio/glocalfilemonitor.c:198
msgid "Unable to find default local file monitor type"
msgstr "無法找到預設的本地端檔案監視器類型"
-#: ../gio/glocalfileoutputstream.c:172 ../gio/glocalfileoutputstream.c:591
+#: gio/glocalfileoutputstream.c:172 gio/glocalfileoutputstream.c:591
#, c-format
msgid "Error writing to file: %s"
msgstr "寫入至檔案時發生錯誤:%s"
-#: ../gio/glocalfileoutputstream.c:213
+#: gio/glocalfileoutputstream.c:213
#, c-format
msgid "Error removing old backup link: %s"
msgstr "移除舊備份連結時發生錯誤:%s"
-#: ../gio/glocalfileoutputstream.c:227 ../gio/glocalfileoutputstream.c:240
+#: gio/glocalfileoutputstream.c:227 gio/glocalfileoutputstream.c:240
#, c-format
msgid "Error creating backup copy: %s"
msgstr "建立備份複本時發生錯誤:%s"
-#: ../gio/glocalfileoutputstream.c:258
+#: gio/glocalfileoutputstream.c:258
#, c-format
msgid "Error renaming temporary file: %s"
msgstr "重新命名暫存檔案時發生錯誤:%s"
-#: ../gio/glocalfileoutputstream.c:418 ../gio/glocalfileoutputstream.c:871
+#: gio/glocalfileoutputstream.c:418 gio/glocalfileoutputstream.c:871
#, c-format
msgid "Error truncating file: %s"
msgstr "截短檔案時發生錯誤:%s"
-#: ../gio/glocalfileoutputstream.c:478 ../gio/glocalfileoutputstream.c:523
-#: ../gio/glocalfileoutputstream.c:654 ../gio/glocalfileoutputstream.c:931
+#: gio/glocalfileoutputstream.c:478 gio/glocalfileoutputstream.c:523
+#: gio/glocalfileoutputstream.c:654 gio/glocalfileoutputstream.c:931
#, c-format
msgid "Error opening file '%s': %s"
msgstr "開啟檔案「%s」時發生錯誤:%s"
-#: ../gio/glocalfileoutputstream.c:679
+#: gio/glocalfileoutputstream.c:679
msgid "Target file is a directory"
msgstr "目標檔案是一個目錄"
-#: ../gio/glocalfileoutputstream.c:684
+#: gio/glocalfileoutputstream.c:684
msgid "Target file is not a regular file"
msgstr "目標檔案不是正規的檔案"
-#: ../gio/glocalfileoutputstream.c:696
+#: gio/glocalfileoutputstream.c:696
msgid "The file was externally modified"
msgstr "該檔案已被外部程式修改"
-#: ../gio/gmemoryinputstream.c:487 ../gio/gmemoryoutputstream.c:545
+#: gio/gmemoryinputstream.c:487 gio/gmemoryoutputstream.c:545
msgid "Invalid GSeekType supplied"
msgstr "提供了無效的 GSeek 類型"
-#: ../gio/gmemoryinputstream.c:497 ../gio/gmemoryoutputstream.c:555
+#: gio/gmemoryinputstream.c:497 gio/gmemoryoutputstream.c:555
msgid "Invalid seek request"
msgstr "無效的搜尋要求"
-#: ../gio/gmemoryinputstream.c:521
+#: gio/gmemoryinputstream.c:521
msgid "Cannot truncate GMemoryInputStream"
msgstr "不能截短 GMemoryInputStream"
-#: ../gio/gmemoryoutputstream.c:288
+#: gio/gmemoryoutputstream.c:288
msgid "Reached maximum data array limit"
msgstr "已達最大資料陣列上限"
-#: ../gio/gmemoryoutputstream.c:323
+#: gio/gmemoryoutputstream.c:323
msgid "Memory output stream not resizable"
msgstr "記憶體輸出串流不能改變大小"
-#: ../gio/gmemoryoutputstream.c:339
+#: gio/gmemoryoutputstream.c:339
msgid "Failed to resize memory output stream"
msgstr "改變記憶體輸出串流的大小失敗"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement unmount.
-#: ../gio/gmount.c:357
+#: gio/gmount.c:360
msgid "mount doesn't implement unmount"
msgstr "掛載點尚未實作卸載"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement eject.
-#: ../gio/gmount.c:432
+#: gio/gmount.c:435
msgid "mount doesn't implement eject"
msgstr "掛載點尚未實作退出"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement remount.
-#: ../gio/gmount.c:514
+#: gio/gmount.c:517
msgid "mount doesn't implement remount"
msgstr "掛載點尚未實作重新掛載"
#. Translators: This is an error
#. * message for mount objects that
#. * don't implement content type guessing.
-#: ../gio/gmount.c:597
+#: gio/gmount.c:600
#, fuzzy
msgid "mount doesn't implement content type guessing"
msgstr "掛載點尚未實作卸載"
-#: ../gio/goutputstream.c:204 ../gio/goutputstream.c:405
+#: gio/goutputstream.c:204 gio/goutputstream.c:405
msgid "Output stream doesn't implement write"
msgstr "輸出串流尚未實作寫入"
-#: ../gio/goutputstream.c:365 ../gio/goutputstream.c:773
+#: gio/goutputstream.c:365 gio/goutputstream.c:773
msgid "Source stream is already closed"
msgstr "來源串流已經關閉"
-#: ../gio/gthemedicon.c:206
+#: gio/gthemedicon.c:206
msgid "name"
msgstr "名稱"
-#: ../gio/gthemedicon.c:207
+#: gio/gthemedicon.c:207
msgid "The name of the icon"
msgstr "圖示的名稱"
-#: ../gio/gthemedicon.c:218
+#: gio/gthemedicon.c:218
msgid "names"
msgstr "名稱"
-#: ../gio/gthemedicon.c:219
+#: gio/gthemedicon.c:219
msgid "An array containing the icon names"
msgstr "包含圖示名稱的陣列"
-#: ../gio/gthemedicon.c:244
+#: gio/gthemedicon.c:244
msgid "use default fallbacks"
msgstr "使用預設的回饋"
-#: ../gio/gthemedicon.c:245
+#: gio/gthemedicon.c:245
msgid ""
"Whether to use default fallbacks found by shortening the name at '-' "
"characters. Ignores names after the first if multiple names are given."
"是否使用縮短過在「-」字元的名稱找到的預設回饋。如果提供多個名稱則忽略第一個以"
"外的名稱。"
-#: ../gio/gunixinputstream.c:201 ../gio/gunixinputstream.c:221
-#: ../gio/gunixinputstream.c:299 ../gio/gunixoutputstream.c:288
+#: gio/gunixinputstream.c:201 gio/gunixinputstream.c:221
+#: gio/gunixinputstream.c:299 gio/gunixoutputstream.c:288
#, c-format
msgid "Error reading from unix: %s"
msgstr "從 unix 讀取時發生錯誤:%s"
-#: ../gio/gunixinputstream.c:254 ../gio/gunixinputstream.c:436
-#: ../gio/gunixoutputstream.c:243 ../gio/gunixoutputstream.c:394
+#: gio/gunixinputstream.c:254 gio/gunixinputstream.c:436
+#: gio/gunixoutputstream.c:243 gio/gunixoutputstream.c:394
#, c-format
msgid "Error closing unix: %s"
msgstr "關閉 unix 時發生錯誤:%s"
-#: ../gio/gunixmounts.c:1789 ../gio/gunixmounts.c:1826
+#: gio/gunixmounts.c:1778 gio/gunixmounts.c:1815
msgid "Filesystem root"
msgstr "根檔案系統"
-#: ../gio/gunixoutputstream.c:189 ../gio/gunixoutputstream.c:210
+#: gio/gunixoutputstream.c:189 gio/gunixoutputstream.c:210
#, c-format
msgid "Error writing to unix: %s"
msgstr "寫入至 unix 時發生錯誤:%s"
-#: ../gio/gvolume.c:438
+#: gio/gvolume.c:439
msgid "volume doesn't implement eject"
msgstr "儲存裝置尚未實作退出(eject)"
-#: ../gio/gwin32appinfo.c:277
+#: gio/gwin32appinfo.c:277
msgid "Can't find application"
msgstr "找不到應用程式"
-#: ../gio/gwin32appinfo.c:312
+#: gio/gwin32appinfo.c:312
#, c-format
msgid "Error launching application: %s"
msgstr "執行應用程式時發生錯誤:%s"
-#: ../gio/gwin32appinfo.c:349
+#: gio/gwin32appinfo.c:349
msgid "URIs not supported"
msgstr "不支援 URIs"
-#: ../gio/gwin32appinfo.c:371
+#: gio/gwin32appinfo.c:371
msgid "association changes not supported on win32"
msgstr "關聯變更在 win32 上不支援"
-#: ../gio/gwin32appinfo.c:383
+#: gio/gwin32appinfo.c:383
msgid "Association creation not supported on win32"
msgstr "關聯建立在 win32 上不支援"
-#: ../tests/gio-ls.c:27
+#: tests/gio-ls.c:27
msgid "do not hide entries"
msgstr "不要隱藏項目"
-#: ../tests/gio-ls.c:29
+#: tests/gio-ls.c:29
msgid "use a long listing format"
msgstr "使用長式表列格式"
-#: ../tests/gio-ls.c:37
+#: tests/gio-ls.c:37
msgid "[FILE...]"
msgstr "[檔案...]"