mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-23 18:52:09 +01:00
2.10.2
This commit is contained in:
parent
038d94ed1a
commit
2f298768e5
@ -1,3 +1,11 @@
|
||||
2006-04-07 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.10.2 ===
|
||||
|
||||
* NEWS: Updates
|
||||
|
||||
* tests/option-test.c (add_test1): Fix this test.
|
||||
|
||||
2006-04-07 Martyn Russell <martyn@imendio.com>
|
||||
|
||||
* glib/gasyncqueue.[ch]: Added private API
|
||||
|
@ -1,3 +1,11 @@
|
||||
2006-04-07 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.10.2 ===
|
||||
|
||||
* NEWS: Updates
|
||||
|
||||
* tests/option-test.c (add_test1): Fix this test.
|
||||
|
||||
2006-04-07 Martyn Russell <martyn@imendio.com>
|
||||
|
||||
* glib/gasyncqueue.[ch]: Added private API
|
||||
|
4
INSTALL
4
INSTALL
@ -1,8 +1,8 @@
|
||||
Simple install procedure
|
||||
========================
|
||||
|
||||
% gzip -cd glib-2.10.1.tar.gz | tar xvf - # unpack the sources
|
||||
% cd glib-2.10.1 # change to the toplevel directory
|
||||
% gzip -cd glib-2.10.2.tar.gz | tar xvf - # unpack the sources
|
||||
% cd glib-2.10.2 # change to the toplevel directory
|
||||
% ./configure # run the `configure' script
|
||||
% make # build GLIB
|
||||
|
||||
|
33
NEWS
33
NEWS
@ -1,3 +1,36 @@
|
||||
Overview of Changes from GLib 2.10.1 to GLib 2.10.2
|
||||
===================================================
|
||||
|
||||
* Bugs fixed:
|
||||
322476 Missing check for .dylib [Anders Carlsson]
|
||||
332841 Segmentation Fault when %llu is passed to
|
||||
vasnprintf and HAVE_SNPRINTF is not defined [Michael McDonald]
|
||||
333098 Add support for write FDs to GIOChannel [Markus Brinkmann]
|
||||
334519 Memleak in goption.c::parse_short_option [Chris Wilson]
|
||||
334471 g_parse_debug_string reads beyond buffer [Morten Welinder]
|
||||
334611 g_option_context_parse() should not set program
|
||||
name to '<Unknown>' if it is already set [Chong Kai Xiong]
|
||||
335207 g_main_context_unref calls g_source_destroy_internal
|
||||
with incorrect arguments [Chris Wilson]
|
||||
335216 Slight performance gains (GList, GAsyncQueue) [Chris Wilson]
|
||||
335209 Use of unitialised memory in g_mem_profile [Chris Wilson]
|
||||
334943 make check FAIL: threadpool-test
|
||||
336085 g_option_context_new parameter lacks better
|
||||
explanation [Claudio Saavedra]
|
||||
335215 Some breakages with GThreadPool [Chris Wilson]
|
||||
333879 gthread/gthread-win32.c: IsDebuggerPresent needs
|
||||
'#define _WIN32_WINDOWS 0x0401' [Kazuki Iwamoto]
|
||||
334440 dlerror() portability issue causes crash on (old)
|
||||
a.out NetBSD platform [ITOH Yasufumi]
|
||||
333916 g_timer_elapsed docs should mention that
|
||||
microseconds may be NULL [Christian Neumair]
|
||||
334646 goption + error out params [Christian Persch]
|
||||
335294 Documentation should not reference G_HAVE_GINT64,
|
||||
as it's deprecated. [Richard Laager]
|
||||
|
||||
* Translation updates (dz,et,he,hi,ka,or,pt_BR,ro,tr)
|
||||
|
||||
|
||||
Overview of Changes from GLib 2.10.0 to GLib 2.10.1
|
||||
===================================================
|
||||
|
||||
|
2
README
2
README
@ -1,7 +1,7 @@
|
||||
General Information
|
||||
===================
|
||||
|
||||
This is GLib version 2.10.1. GLib is the low-level core
|
||||
This is GLib version 2.10.2. 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,
|
||||
|
@ -1,3 +1,7 @@
|
||||
2006-04-07 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.10.2 ===
|
||||
|
||||
2006-03-20 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/tmpl/types.sgml: Document G_HAVE_GINT64 as deprecated.
|
||||
|
@ -437,8 +437,6 @@ Flags which influence the parsing.
|
||||
@group_name:
|
||||
@key:
|
||||
@value:
|
||||
<!-- # Unused Parameters # -->
|
||||
@boolean:
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_key_file_set_integer ##### -->
|
||||
@ -450,8 +448,6 @@ Flags which influence the parsing.
|
||||
@group_name:
|
||||
@key:
|
||||
@value:
|
||||
<!-- # Unused Parameters # -->
|
||||
@integer:
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_key_file_set_string_list ##### -->
|
||||
|
@ -356,8 +356,6 @@ Checks if any events are pending for the default #GMainContext
|
||||
@context:
|
||||
@source_id:
|
||||
@Returns:
|
||||
<!-- # Unused Parameters # -->
|
||||
@id:
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_main_context_find_source_by_user_data ##### -->
|
||||
|
@ -131,6 +131,8 @@ A convenience function/macro to log a normal message.
|
||||
|
||||
@...:
|
||||
|
||||
@...:
|
||||
|
||||
@...:
|
||||
|
||||
|
||||
@ -156,6 +158,8 @@ A convenience function/macro to log a warning message.
|
||||
|
||||
@...:
|
||||
|
||||
@...:
|
||||
|
||||
@...:
|
||||
|
||||
|
||||
@ -185,6 +189,8 @@ example.
|
||||
|
||||
@...:
|
||||
|
||||
@...:
|
||||
|
||||
@...:
|
||||
|
||||
|
||||
@ -215,6 +221,8 @@ assertion failure.
|
||||
|
||||
@...:
|
||||
|
||||
@...:
|
||||
|
||||
@...:
|
||||
|
||||
|
||||
@ -237,6 +245,8 @@ A convenience function/macro to log a debug message.
|
||||
|
||||
@...:
|
||||
|
||||
@...:
|
||||
|
||||
@...:
|
||||
@Since: 2.6
|
||||
@...:
|
||||
|
@ -547,8 +547,6 @@ possibly non-ASCII character in.
|
||||
@str:
|
||||
@len:
|
||||
@Returns:
|
||||
<!-- # Unused Parameters # -->
|
||||
@string:
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_ascii_strdown ##### -->
|
||||
|
@ -433,8 +433,6 @@ that may contain invalid UTF-8.
|
||||
@p:
|
||||
@end:
|
||||
@Returns:
|
||||
<!-- # Unused Parameters # -->
|
||||
@bound:
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_utf8_find_prev_char ##### -->
|
||||
@ -477,8 +475,6 @@ that may contain invalid UTF-8.
|
||||
@len:
|
||||
@c:
|
||||
@Returns:
|
||||
<!-- # Unused Parameters # -->
|
||||
@ch:
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_utf8_strrchr ##### -->
|
||||
@ -490,8 +486,6 @@ that may contain invalid UTF-8.
|
||||
@len:
|
||||
@c:
|
||||
@Returns:
|
||||
<!-- # Unused Parameters # -->
|
||||
@ch:
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_utf8_strreverse ##### -->
|
||||
|
@ -1,3 +1,7 @@
|
||||
2006-04-07 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.10.2 ===
|
||||
|
||||
2006-03-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gmodule.c (g_module_symbol): Make sure to
|
||||
|
@ -1,3 +1,7 @@
|
||||
2006-04-07 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.10.2 ===
|
||||
|
||||
2006-03-07 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.10.1 ===
|
||||
|
@ -1,3 +1,7 @@
|
||||
2006-04-07 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.10.2 ===
|
||||
|
||||
2006-03-11 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* gthread-win32.c: #define _WIN32_WINDOWS as 0x0401 to get
|
||||
|
@ -1,3 +1,7 @@
|
||||
2006-04-07 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.10.2 ===
|
||||
|
||||
2006-04-04 Pema Geyleg <pema.geyleg@gmail.com>
|
||||
|
||||
* dz.po: Added Dzongkha translation.
|
||||
|
24
po/am.po
24
po/am.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
@ -540,51 +540,51 @@ msgstr ""
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "ፋይል '%s'ን ለማንበብ ስህተት አለ፦ %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr ""
|
||||
|
24
po/ar.po
24
po/ar.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2003-12-19 01:22+0100\n"
|
||||
"Last-Translator: Arafat Medini <lumina@silverpen.de>\n"
|
||||
"Language-Team: Arabic <doc@arabeyes.org>\n"
|
||||
@ -559,51 +559,51 @@ msgstr "سلسلة غير سليمة في مُدخلات التحويل"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "الحرف خارج حدود UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "خطأ أثناء التحويل: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr ""
|
||||
|
24
po/az.po
24
po/az.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD.az\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
@ -577,51 +577,51 @@ msgstr "dönüşdürmə girişi içində hökmsüz qatar"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "UTF-16 üçün hərf sərhədinin xaricindədir"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Dönüşdürmə sırasında xəta yarandı: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr ""
|
||||
|
24
po/be.po
24
po/be.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
@ -678,53 +678,53 @@ msgstr "Недапушчальная пасьлядоўнасьць на ўва
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Сымбаль па-за дыяпазонам UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Выкарыстаньне:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[МОЖНАСЬЦЬ...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Можнасьці дапамогі:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Адлюстраваць можнасьці дапамогі"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Адлюстраваць усе можнасьці дапамогі"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Можнасьці дастасаваньня:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Немагчыма разабраць цэлае значэньне '%s' для %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Цэлае значэньне '%s' для %s па-за межамі"
|
||||
|
||||
# glib/gconvert.c:597 glib/gconvert.c:813 glib/giochannel.c:1289
|
||||
# glib/giochannel.c:2175
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Памылка ў часе пераўтварэньня: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Нестае аргумэнту для %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Невядомая можнасьць %s"
|
||||
|
24
po/bg.po
24
po/bg.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-09 18:39+0200\n"
|
||||
"Last-Translator: Alexander Shopov <ash@contact.bg>\n"
|
||||
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
|
||||
@ -597,52 +597,52 @@ msgstr "Неправилна последователност на входа з
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Символ извън обхвата на UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Употреба:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[ОПЦИЯ...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Настройки на помощта:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Показване на настройките на помощта"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Показване на всички настройки на помощта"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Настройки на приложението:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Не може да се анализира целочислената стойност „%s“ за %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr ""
|
||||
"Целочислената стойност „%s“ за %s е извън интервала на допустими стойности"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Грешка при анализа на опцията: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Липсва аргумент за %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Непозната опция %s"
|
||||
|
24
po/bn.po
24
po/bn.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 0.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2005-10-03 00:24+0600\n"
|
||||
"Last-Translator: Mahay Alam Khan <makl10n@yahoo.com>\n"
|
||||
"Language-Team: Bengali <gnome-translation@bengalinux.org>\n"
|
||||
@ -569,51 +569,51 @@ msgstr "পরিবর্তন করার জন্য দেয়া তথ
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "অক্ষর ইউটিএফ-১৬ আয়তার বাইরে"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "ব্যবহার:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[অপশন]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "সহায়ক তথ্যের অপশন:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "সহায়ক তথ্যের অপশন দেখাও"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "সমস্ত সহায়ক তথ্যের অপশন দেখাও"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "অ্যাপলিকেশন অপশন:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "ইন্টিজার মান %s এর জন্য '%s' পার্স করতে পারেনা"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "ইন্টিজার মান %s এর জন্য '%s' সীমার বাহিরে"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "পরিবর্তন সময়কালীন ভুল: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "%s এর জন্য প্রেরিত মান নিরুদ্দেশ"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "অজানা অপশন %s"
|
||||
|
24
po/bs.po
24
po/bs.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.glib-2-4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
@ -577,51 +577,51 @@ msgstr "Nevažeći niz u unosu za pretvaranje"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Znak izvan raspona za UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Greška tokom pretvaranja: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr ""
|
||||
|
24
po/ca.po
24
po/ca.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.8\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-07 12:52+0100\n"
|
||||
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
|
||||
"Language-Team: Catalan <tradgnome@softcatala.org>\n"
|
||||
@ -598,51 +598,51 @@ msgstr "Seqüència invàlida a l'entrada de la conversió"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "El caràcter és fora de rang per a UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Forma d'ús:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPCIÓ...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Opcions d'ajuda:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Mostra les opcions d'ajuda"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Mostra totes les opcions d'ajuda"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Opcions de l'aplicació:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "No es pot analitzar el valor enter «%s» per a %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "El valor enter «%s» per a %s és fora del rang"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "S'ha produït un error en analitzar l'opció %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Manca un argument per a %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "L'opció %s és desconeguda"
|
||||
|
24
po/cs.po
24
po/cs.po
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-02-07 21:14+0100\n"
|
||||
"Last-Translator: Lukas Novotny <lukasnov@cvs.gnome.org>\n"
|
||||
"Language-Team: Czech <cs@li.org>\n"
|
||||
@ -578,51 +578,51 @@ msgstr "Neplatná posloupnost na vstupu převodu"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Znak je mimo rozsah UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Použití:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[PŘEPÍNAČ...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Přepínače nápovědy:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Zobrazit přepínače nápovědy"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Zobrazit všechny přepínače nápovědy"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Přepínače aplikace:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Nemohu zpracovat celočíselnou hodnotu '%s' pro %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Celočíselná hodnota '%s' pro %s mimo rozsah"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Chyba volby %s při syntaktické analýze"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Chybí parametr %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Neznámý přepínač %s"
|
||||
|
24
po/cy.po
24
po/cy.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-02-04 21:23+0000\n"
|
||||
"Last-Translator: Rhys Jones <rhys@sucs.org>\n"
|
||||
"Language-Team: Welsh <gnome-cy@pengwyn.linux.org.uk>\n"
|
||||
@ -576,51 +576,51 @@ msgstr "Dilyniant annilys ym mewnbwn trawsnewidiad"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Nod y tu allan i ystod ddilys UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Defnydd:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPSIWN...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Cymorth Opsiynau:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Dangos opsiynau cymorth"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Dangos bob opsiwn cymorth"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Opsiynau Rhaglen:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Methu gramadegu'r gwerth cyfanrif '%s' ar gyfer %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Mae'r gwerth cyfanrif '%s' ar gyfer %s y tu allan i'r cwmpas"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Gwall wrth ramadegu opsiwn %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Arg ar goll ar gyfer %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Opsiwn anhysbys %s"
|
||||
|
24
po/da.po
24
po/da.po
@ -14,7 +14,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-18 18:41+0100\n"
|
||||
"Last-Translator: Martin Willemoes Hansen <mwh@sysrq.dk>\n"
|
||||
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
|
||||
@ -589,51 +589,51 @@ msgstr "Ugyldig sekvens i konverteringsinddata"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Tegn uden for gyldigt interval for UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Brug:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[FLAG...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Flag for hjælp:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Vis flag for hjælp"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Vis alle flag for hjælp"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Flag for programmet:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Kan ikke fortolke heltalsværdien \"%s\" for %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Heltalsværdien \"%s\" for %s er ikke i gyldigt interval"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Kunne ikke fortolke tilvalg %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Mangler argument for %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Ukendt flag %s"
|
||||
|
24
po/de.po
24
po/de.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-16 16:45+0100\n"
|
||||
"Last-Translator: Hendrik Richter <hendi@gnome.org>\n"
|
||||
"Language-Team: German <gnome-de@gnome.org>\n"
|
||||
@ -604,51 +604,51 @@ msgstr "Ungültige Folge in Umwandlungseingabe"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Zeichen außerhalb des Bereiches für UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Aufruf:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPTION...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Hilfeoptionen"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Hilfeoptionen anzeigen"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Alle Hilfeoptionen anzeigen"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Anwendungsoptionen"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, 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:663
|
||||
#: glib/goption.c:679
|
||||
#, 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:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Fehler beim Analysieren der Option: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Für %s wird ein Argument benötigt"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Unbekannte Option %s"
|
||||
|
301
po/dz.po
301
po/dz.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD.dz\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-04-04 13:20-0400\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-03-29 17:33-0500\n"
|
||||
"Last-Translator: Mindu Dorji\n"
|
||||
"Language-Team: DZONGKHA <pgeyleg@dit.gov.bt>\n"
|
||||
@ -18,206 +18,213 @@ msgstr ""
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"Plural-Forms: nplurals=2;plural=(n!=1);\n"
|
||||
|
||||
#: ../glib/gconvert.c:408 ../glib/gconvert.c:486 ../glib/giochannel.c:1150
|
||||
#: glib/gconvert.c:408 glib/gconvert.c:486 glib/giochannel.c:1150
|
||||
#, c-format
|
||||
msgid "Conversion from character set '%s' to '%s' is not supported"
|
||||
msgstr "ཡིག་འབྲུའི་ཆ་ཚན་ ‘%s’ ལས་ ‘%s’ ལུ་གཞི་བསྒྱུར་འབད་ནི་ལུ་ རྒྱབ་སྐྱོར་མིན་འདུག"
|
||||
|
||||
#: ../glib/gconvert.c:412 ../glib/gconvert.c:490
|
||||
#: glib/gconvert.c:412 glib/gconvert.c:490
|
||||
#, c-format
|
||||
msgid "Could not open converter from '%s' to '%s'"
|
||||
msgstr "‘%s’ ལས་ '%s' ལུ་ སྒྱུར་བྱེད་ཁ་ཕྱེ་མ་ཚུགས།"
|
||||
|
||||
#: ../glib/gconvert.c:606 ../glib/gconvert.c:995 ../glib/giochannel.c:1322
|
||||
#: ../glib/giochannel.c:1364 ../glib/giochannel.c:2206 ../glib/gutf8.c:943
|
||||
#: ../glib/gutf8.c:1392
|
||||
#: glib/gconvert.c:606 glib/gconvert.c:995 glib/giochannel.c:1322
|
||||
#: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943
|
||||
#: glib/gutf8.c:1392
|
||||
#, c-format
|
||||
msgid "Invalid byte sequence in conversion input"
|
||||
msgstr "གཞི་བསྒྱུར་གྱི་ཨིན་པུཊི་ནང་ བའིཊི་གི་འབྱུང་རིམ་ ནུས་མེད་ཨིན་པས།"
|
||||
|
||||
#: ../glib/gconvert.c:612 ../glib/gconvert.c:922 ../glib/giochannel.c:1329
|
||||
#: ../glib/giochannel.c:2218
|
||||
#: glib/gconvert.c:612 glib/gconvert.c:922 glib/giochannel.c:1329
|
||||
#: glib/giochannel.c:2218
|
||||
#, c-format
|
||||
msgid "Error during conversion: %s"
|
||||
msgstr "གཞི་བསྒྱུར་གྱི་སྐབས་འཛོལ་བ་ :%s"
|
||||
|
||||
#: ../glib/gconvert.c:647 ../glib/gutf8.c:939 ../glib/gutf8.c:1143
|
||||
#: ../glib/gutf8.c:1284 ../glib/gutf8.c:1388
|
||||
#: glib/gconvert.c:647 glib/gutf8.c:939 glib/gutf8.c:1143 glib/gutf8.c:1284
|
||||
#: glib/gutf8.c:1388
|
||||
#, c-format
|
||||
msgid "Partial character sequence at end of input"
|
||||
msgstr "ཨིན་པུཊི་མཇུག་ལུ་ ཡི་གུའི་འབྱུང་རིམ་ཆ་ཤས།"
|
||||
|
||||
#: ../glib/gconvert.c:897
|
||||
#: glib/gconvert.c:897
|
||||
#, c-format
|
||||
msgid "Cannot convert fallback '%s' to codeset '%s'"
|
||||
msgstr "གློ་བུར་རྒྱབ་ཐག ’%s’ ལས་ ཀོཌི་སེཊི་ ’%s’ ལུ་ གཞི་བསྒྱུར་འབད་མི་ཚུགས། "
|
||||
|
||||
#: ../glib/gconvert.c:1706
|
||||
#: glib/gconvert.c:1706
|
||||
#, c-format
|
||||
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
|
||||
msgstr ""
|
||||
"ཡུ་ཨར་ཨའི་ ’%s’ འབད་མི་དེ་ \"file\" འཆར་ལས་ལག་ལེན་འཐབ་པའི་ ཡུ་ཨར་ཨའི་ཡང་དག་ཅིག་མེན།"
|
||||
|
||||
#: ../glib/gconvert.c:1716
|
||||
#: glib/gconvert.c:1716
|
||||
#, c-format
|
||||
msgid "The local file URI '%s' may not include a '#'"
|
||||
msgstr "ཉེ་གནས་་ཀྱི་ཡིག་སྣོད་ ཡུ་ཨར་ཨའི་ ’%s’ འབད་མི་དེ་ནང་ '#' ཅིག་མེདཔ་འོང༌།"
|
||||
|
||||
#: ../glib/gconvert.c:1733
|
||||
#: glib/gconvert.c:1733
|
||||
#, c-format
|
||||
msgid "The URI '%s' is invalid"
|
||||
msgstr "ཡུ་ཨར་ཨའི་ ’%s’ ནུས་མེད་ཨིན་པས།"
|
||||
|
||||
#: ../glib/gconvert.c:1745
|
||||
#: glib/gconvert.c:1745
|
||||
#, c-format
|
||||
msgid "The hostname of the URI '%s' is invalid"
|
||||
msgstr "ཡུ་ཨར་ཨའི་ ’%s’ གི་ ཧོསཊི་ནེམ་དེ་ ནུས་མེད་ཨིན་པས།"
|
||||
|
||||
#: ../glib/gconvert.c:1761
|
||||
#: glib/gconvert.c:1761
|
||||
#, c-format
|
||||
msgid "The URI '%s' contains invalidly escaped characters"
|
||||
msgstr "ཡུ་ཨར་ཨའི་ ’%s’ གི་ནང་ན་ ནུས་མེད་ཐོག་ལས་ཐར་མི་ ཡིག་འབྲུ་་ཚུ་འདུག"
|
||||
|
||||
#: ../glib/gconvert.c:1855
|
||||
#: glib/gconvert.c:1855
|
||||
#, c-format
|
||||
msgid "The pathname '%s' is not an absolute path"
|
||||
msgstr "འགྲུལ་ལམ་གྱི་མིང་ ’%s’ འབད་མི་དེ་ འགྲུལ་ལམ་ཡང་དག་ཅིག་མེན།"
|
||||
|
||||
#: ../glib/gconvert.c:1865
|
||||
#: glib/gconvert.c:1865
|
||||
#, c-format
|
||||
msgid "Invalid hostname"
|
||||
msgstr "ནུས་མེད་ཀྱི་ ཧོསཊི་ནེམ།"
|
||||
|
||||
#: ../glib/gdir.c:121 ../glib/gdir.c:141
|
||||
#: glib/gdir.c:121 glib/gdir.c:141
|
||||
#, c-format
|
||||
msgid "Error opening directory '%s': %s"
|
||||
msgstr "སྣོད་ཐོ་ '%s':%s ཁ་ཕྱེ་ནི་ལུ་འཛོལ་བ།"
|
||||
|
||||
#: ../glib/gfileutils.c:576 ../glib/gfileutils.c:649
|
||||
#: glib/gfileutils.c:576 glib/gfileutils.c:649
|
||||
#, c-format
|
||||
msgid "Could not allocate %lu bytes to read file \"%s\""
|
||||
msgstr "བཱཡིཊི་ %lu བསྐལ་སྤྲོད་འབད་མ་ཚུགས་ \"%s\" ལྷག་ནི་ལུ།"
|
||||
|
||||
#: ../glib/gfileutils.c:591
|
||||
#: glib/gfileutils.c:591
|
||||
#, c-format
|
||||
msgid "Error reading file '%s': %s"
|
||||
msgstr "ཡིག་སྣོད་ ’%s’: %s ལྷག་ནི་ལུ་འཛོལ་བ།"
|
||||
|
||||
#: ../glib/gfileutils.c:673
|
||||
#: glib/gfileutils.c:673
|
||||
#, c-format
|
||||
msgid "Failed to read from file '%s': %s"
|
||||
msgstr "ཡིག་སྣོད་ ’%s’: %s ནང་ལས་ ལྷག་མ་ཚུགས།"
|
||||
|
||||
#: ../glib/gfileutils.c:724 ../glib/gfileutils.c:811
|
||||
#: glib/gfileutils.c:724 glib/gfileutils.c:811
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s': %s"
|
||||
msgstr "ཡིག་སྣོད་ ’%s’: %s ཁ་ཕྱེ་མ་ཚུགས།"
|
||||
|
||||
#: ../glib/gfileutils.c:741 ../glib/gmappedfile.c:133
|
||||
#: glib/gfileutils.c:741 glib/gmappedfile.c:133
|
||||
#, c-format
|
||||
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
|
||||
msgstr "ཡིག་སྣོད་ '%s': fstat() གི་ཁྱད་ཆོས་ཚུ་ ལེན་མ་ཚུགས་ :%sམ་བཏུབ།"
|
||||
|
||||
#: ../glib/gfileutils.c:775
|
||||
#: glib/gfileutils.c:775
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s': fdopen() failed: %s"
|
||||
msgstr "ཡིག་སྣོད་ ’%s’:fdopen() ཁ་ཕྱེ་མ་ཚུགས། %s་མ་བཏུབ།"
|
||||
|
||||
#: ../glib/gfileutils.c:909
|
||||
#: glib/gfileutils.c:909
|
||||
#, c-format
|
||||
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
|
||||
msgstr "ཡིག་སྣོད་ ’%s’ལས་'%s' ལུ་ བསྐྱར་མིང་བཏགས་མ་ཚུགས། g_rename() གིས་ %s ལུ་མ་བཏུབ།"
|
||||
|
||||
#: ../glib/gfileutils.c:950 ../glib/gfileutils.c:1415
|
||||
#: glib/gfileutils.c:950 glib/gfileutils.c:1415
|
||||
#, c-format
|
||||
msgid "Failed to create file '%s': %s"
|
||||
msgstr "ཡིག་སྣོད་ ’%s’:%s གསར་བསྐྲུན་འབད་མ་ཚུགས།"
|
||||
|
||||
#: ../glib/gfileutils.c:964
|
||||
#: glib/gfileutils.c:964
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
|
||||
msgstr "ཡིག་སྣོད་’%s’ འབྲི་ནིའི་དོན་ལུ་ ཁ་ཕྱེ་མ་ཚུགས་: fdopen() མ་བཏུབ་:%s།"
|
||||
|
||||
#: ../glib/gfileutils.c:989
|
||||
#: glib/gfileutils.c:989
|
||||
#, c-format
|
||||
msgid "Failed to write file '%s': fwrite() failed: %s"
|
||||
msgstr "ཡིག་སྣོད་ ’%s’འབྲི་མ་ཚུགས་: fwrite() མ་བཏུབ་:%s།"
|
||||
|
||||
#: ../glib/gfileutils.c:1008
|
||||
#: glib/gfileutils.c:1008
|
||||
#, c-format
|
||||
msgid "Failed to close file '%s': fclose() failed: %s"
|
||||
msgstr "ཡིག་སྣོད་ ’%s’ཁ་བསྡམས་མ་ཚུགས་: fclose() མ་བཏུབ་:%s།"
|
||||
|
||||
#: ../glib/gfileutils.c:1126
|
||||
#: glib/gfileutils.c:1126
|
||||
#, c-format
|
||||
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
|
||||
msgstr "ཡོད་བཞིན་པའི་ཡིག་སྣོད་'%s' དེ་ རྩ་བསྐྲད་གཏང་མ་ཚུགས་: g_unlink() མ་བཏུབ་:%s"
|
||||
|
||||
#: ../glib/gfileutils.c:1376
|
||||
#: glib/gfileutils.c:1376
|
||||
#, c-format
|
||||
msgid "Template '%s' invalid, should not contain a '%s'"
|
||||
msgstr "ཊེམ་པེ་ལེཊི་ '%s' དེ་ནུས་མེད་ཨིན། དེ་ནང་ '%s' འབད་མི་ བཞག་ནི་མི་འོང༌།"
|
||||
|
||||
#: ../glib/gfileutils.c:1390
|
||||
#: glib/gfileutils.c:1390
|
||||
#, c-format
|
||||
msgid "Template '%s' doesn't end with XXXXXX"
|
||||
msgstr "ཊེམ་པེལེཊི་ ’%s’ འབད་མི་དེ་ xxxxxx གིས་ མཇུག་མི་བསྡུ།"
|
||||
|
||||
#: ../glib/gfileutils.c:1865
|
||||
#: glib/gfileutils.c:1865
|
||||
#, c-format
|
||||
msgid "Failed to read the symbolic link '%s': %s"
|
||||
msgstr "བརྡ་མཚོན་འགྲེལ་ལམ་ ’%s’:%s ལྷག་མ་ཚུགས།"
|
||||
|
||||
#: ../glib/gfileutils.c:1886
|
||||
#: glib/gfileutils.c:1886
|
||||
#, c-format
|
||||
msgid "Symbolic links not supported"
|
||||
msgstr "བརྡ་མཚོན་འགྲེལ་ལམ་ལུ་ རྒྱབ་སྐྱོར་མིན་འདུག"
|
||||
|
||||
#: ../glib/giochannel.c:1154
|
||||
#: glib/giochannel.c:1154
|
||||
#, fuzzy, c-format
|
||||
msgid "Could not open converter from '%s' to '%s': %s"
|
||||
msgstr "‘%s’ ལས་ ‘%s’:%s ལུ་སྒྱུར་བྱེད་ ཁ་ཕྱེ་མ་ཚུགས།"
|
||||
|
||||
#: ../glib/giochannel.c:1499
|
||||
#: glib/giochannel.c:1499
|
||||
#, c-format
|
||||
msgid "Can't do a raw read in g_io_channel_read_line_string"
|
||||
msgstr "ཇི་ཨའི་ ཨོ་ རྒྱུ་ལམ་ ལྷག་ གྱལ་རིམ་ ཡིག་རྒྱུན་ཚུ་ནང་ རགས་ལྷག་མི་བཏུབ།"
|
||||
|
||||
#: ../glib/giochannel.c:1546 ../glib/giochannel.c:1803
|
||||
#: ../glib/giochannel.c:1889
|
||||
#: glib/giochannel.c:1546 glib/giochannel.c:1803 glib/giochannel.c:1889
|
||||
#, c-format
|
||||
msgid "Leftover unconverted data in read buffer"
|
||||
msgstr "ལྷག་ནིའི་གནད་ཁོངས་ནང་ གཞི་བསྒྱུར་མ་འབད་བའི་གནད་སྡུད་ ལྷག་ལུས་འདུག"
|
||||
|
||||
#: ../glib/giochannel.c:1626 ../glib/giochannel.c:1703
|
||||
#: glib/giochannel.c:1626 glib/giochannel.c:1703
|
||||
#, c-format
|
||||
msgid "Channel terminates in a partial character"
|
||||
msgstr "ཡིག་འབྲུ་ནང་ཆ་ཤས་ནང་ལུ་ རྒྱུ་ལམ་རྩ་འགྲོལ་འགྱོཝ་ཨིན།"
|
||||
|
||||
#: ../glib/giochannel.c:1689
|
||||
#: glib/giochannel.c:1689
|
||||
#, c-format
|
||||
msgid "Can't do a raw read in g_io_channel_read_to_end"
|
||||
msgstr "ཇི་ཨའི ཨོ་ རྒྱ་ལམ་ མཇུག་ ཚུན་ ལྷག་ནི་ཚུ་ནང་ རགས་ལྷག་མི་བཏུབ།"
|
||||
|
||||
#: ../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:232
|
||||
#: glib/gmarkup.c:232
|
||||
#, c-format
|
||||
msgid "Error on line %d char %d: %s"
|
||||
msgstr "གྱལ་རིམ་%d ཡིག་འབྲུ་ %d:%s ལུ་འཛོལ་བ།"
|
||||
|
||||
#: ../glib/gmarkup.c:330
|
||||
#: glib/gmarkup.c:330
|
||||
#, c-format
|
||||
msgid "Error on line %d: %s"
|
||||
msgstr "གྱལ་རིམ་ %d་: %s ལུ་འཛོལ་བ།"
|
||||
|
||||
#: ../glib/gmarkup.c:434
|
||||
#: glib/gmarkup.c:434
|
||||
msgid ""
|
||||
"Empty entity '&;' seen; valid entities are: & " < > '"
|
||||
msgstr ""
|
||||
"ངོ་བོ་སྟོང་པ་ ’&;’ མཐོང་ཅི། ནུས་ཅན་ངོ་བོ་ཚུ་: & " < > ' ཚུ་ཨིན།"
|
||||
|
||||
#: ../glib/gmarkup.c:444
|
||||
#: glib/gmarkup.c:444
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Character '%s' is not valid at the start of an entity name; the & character "
|
||||
@ -227,17 +234,17 @@ msgstr ""
|
||||
"ངོ་བོའི་མིང་ འགོ་བཙུགས་སར ཡིག་འབྲུ་་ ’%s’ ནུས་མེད་ཨིན་པས། ཡིག་འབྲུ་ & འདི་གིས་ངོ་བོ་ཅིག་ འགོ་"
|
||||
"བཙུགསཔ་ཨིན། གལ་སྲིད་ དང་རྟགས་འདི་ ངོ་བོ་མིནམ་ཅིག་དགོ་པཅིན་ & བཟུམ་ཅིག་སྦེ་ གྲོས་ཐར་འབད།"
|
||||
|
||||
#: ../glib/gmarkup.c:478
|
||||
#: glib/gmarkup.c:478
|
||||
#, c-format
|
||||
msgid "Character '%s' is not valid inside an entity name"
|
||||
msgstr "ཡིག་འབྲུ་ ’%s དེ་ ངོ་བོའི་མིང་ཅིག་གི་ ནང་འཁོད་ལུ་ ནུས་མེད་ཨིན། "
|
||||
|
||||
#: ../glib/gmarkup.c:515
|
||||
#: glib/gmarkup.c:515
|
||||
#, c-format
|
||||
msgid "Entity name '%s' is not known"
|
||||
msgstr "ངོ་བོའི་མིང་ '%s' ཧ་མ་གོ"
|
||||
|
||||
#: ../glib/gmarkup.c:526
|
||||
#: glib/gmarkup.c:526
|
||||
msgid ""
|
||||
"Entity did not end with a semicolon; most likely you used an ampersand "
|
||||
"character without intending to start an entity - escape ampersand as &"
|
||||
@ -245,7 +252,7 @@ msgstr ""
|
||||
"ངོ་བོ་འདི་ སེ་མི་ཀོ་ལཱོན་ ; གིས་འབད་ མཇུག་མ་བསྡུ་བས། ཁྱོད་ཀྱིས་ངོ་བོ་ཅིག་ འགོ་མ་བཙུགས་པར་ དང་རྟགས་"
|
||||
"ཡིག་འབྲུ་ཅིག་ ལག་ལེན་འཐབ་འཐབ་བཟུམ་ཅིག་འདུག དང་རྟགས་་ & བཟུམ་ཅིག་སྦེ་ གྲོས་ཐར་འབད།"
|
||||
|
||||
#: ../glib/gmarkup.c:579
|
||||
#: glib/gmarkup.c:579
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Failed to parse '%-.*s', which should have been a digit inside a character "
|
||||
@ -254,16 +261,16 @@ msgstr ""
|
||||
"'%-.*s'ལུ་ མིང་དཔྱད་འབད་མ་ཚུགས། འདི་ཡིག་འབྲུ་གཞི་བསྟུན་ (དཔེར་ན་ (ê ) ཅིག་ནང་གི་ ཨང་"
|
||||
"ཡིག་ཅིག་འོང་དགོཔ་ཨིན་ - ཨང་ཡིག་དེ་ སྦོམ་དྲགསཔ་འོང་ནི་མས།"
|
||||
|
||||
#: ../glib/gmarkup.c:604
|
||||
#: glib/gmarkup.c:604
|
||||
#, c-format
|
||||
msgid "Character reference '%-.*s' does not encode a permitted character"
|
||||
msgstr "ཡིག་འབྲུ་གཞི་བསྟུན་ '%-.*s' དེ་གིས་ གནང་བ་ཅན་གྱི་ཡིག་འབྲུ་ཅིག་ལུ་ ཨིན་ཀོཌི་མི་འབད་བས།"
|
||||
|
||||
#: ../glib/gmarkup.c:619
|
||||
#: glib/gmarkup.c:619
|
||||
msgid "Empty character reference; should include a digit such as dž"
|
||||
msgstr "ཡིག་འབྲུ་སྟོང་པའི་འབྲེལ་བ་འདི་ནང་ dž བཟུམ་མའི་ ཨང་ཡིག་ཅིག་འོང་དགོ"
|
||||
|
||||
#: ../glib/gmarkup.c:629
|
||||
#: glib/gmarkup.c:629
|
||||
msgid ""
|
||||
"Character reference did not end with a semicolon; most likely you used an "
|
||||
"ampersand character without intending to start an entity - escape ampersand "
|
||||
@ -273,23 +280,23 @@ msgstr ""
|
||||
"མེད་པར་ དང་རྟགས་ ཡིག་འབྲུ་ ལག་ལེན་འཐབ་འཐབ་འོང་ནི་མས། དང་རྟགས་དེ་ & བཟུམ་སྦེ་ གྲོས་ཐར་"
|
||||
"འབད།"
|
||||
|
||||
#: ../glib/gmarkup.c:715
|
||||
#: glib/gmarkup.c:715
|
||||
msgid "Unfinished entity reference"
|
||||
msgstr "མཇུག་མ་བསྡུ་བའི་ ངོ་བོའི་གཞི་བསྟུན།"
|
||||
|
||||
#: ../glib/gmarkup.c:721
|
||||
#: glib/gmarkup.c:721
|
||||
msgid "Unfinished character reference"
|
||||
msgstr "མཇུག་མ་བསྡུ་བའི་ ཡིག་འབྲུའི་གཞི་བསྟུན།"
|
||||
|
||||
#: ../glib/gmarkup.c:964 ../glib/gmarkup.c:992 ../glib/gmarkup.c:1023
|
||||
#: glib/gmarkup.c:964 glib/gmarkup.c:992 glib/gmarkup.c:1023
|
||||
msgid "Invalid UTF-8 encoded text"
|
||||
msgstr "ནུས་མེད་ཡུ་ཊི་ཨེཕ་-༨ ཀྱི ཨིན་ཀོ་དེཌི་ཚིག་ཡིག"
|
||||
|
||||
#: ../glib/gmarkup.c:1059
|
||||
#: glib/gmarkup.c:1059
|
||||
msgid "Document must begin with an element (e.g. <book>)"
|
||||
msgstr "ཡིག་ཆ་དེ་ (དཔེར་ན་ <book>) བཟུམ་མའི་ཆ་ཤས་ཅིག་གིས་ འགོ་བཙུགས་དགོ"
|
||||
|
||||
#: ../glib/gmarkup.c:1099
|
||||
#: glib/gmarkup.c:1099
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following a '<' character; it may not begin an "
|
||||
@ -298,7 +305,7 @@ msgstr ""
|
||||
"ཡིག་འབྲུ་ ’%s’ དེ་ ཡིག་འབྲུ་’<’ ཅིག་གི་རྗེས་སུ་འོངམ་ད་ ནུས་པ་ཡོད་པའི་ཡིག་འབྲུ་ཅིག་མིན། འདི་གིས་ཆ་ཤས་"
|
||||
"ཀྱི་མིང་ཅིག་ འགོ་མི་བཙུགསཔ་འོང༌།"
|
||||
|
||||
#: ../glib/gmarkup.c:1163
|
||||
#: glib/gmarkup.c:1163
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '>' character to end the start tag of element "
|
||||
@ -307,7 +314,7 @@ msgstr ""
|
||||
"’%s’ དེ་རྐྱང་ཡིག་ཨིན་པས། ཆ་ཤས་ཀྱི་ འགོ་བཙུགས་ངོ་རྟགས་ %s’ དེ་མཇུག་བསྡུ་ནི་ལུ་ ཡིག་འབྲུ་ ’>’ ཅིག་ "
|
||||
"ཨིན་པའི་རེ་བ་ཡོད།"
|
||||
|
||||
#: ../glib/gmarkup.c:1252
|
||||
#: glib/gmarkup.c:1252
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
|
||||
@ -315,7 +322,7 @@ msgstr ""
|
||||
"’%s’ དེ་རྐྱང་ཡིག་ཨིན་པས། ’=’ ཅིག་ཡོད་པའི་ རེ་བ་ཡོད་ ཁྱད་ཆོས་ཀྱི་མིང་ ’%s’ ཆ་ཤས་ ’%s’ གི་རྗེས་"
|
||||
"སུ།"
|
||||
|
||||
#: ../glib/gmarkup.c:1294
|
||||
#: glib/gmarkup.c:1294
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
|
||||
@ -325,7 +332,7 @@ msgstr ""
|
||||
"’%s’ དེ་རྐྱང་ཡིག་ཨིན་པས། ཆ་ཤས་ ’%s’ གི་འགོ་བཙུགས་ངོ་རྟགས་ མཇུག་བསྡུ་ནི་ལུ་ ཡིག་འབྲུ་ ’>’ ཡང་ན་ "
|
||||
"’/’ གི་རེ་བ་ཡོད།"
|
||||
|
||||
#: ../glib/gmarkup.c:1383
|
||||
#: glib/gmarkup.c:1383
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected an open quote mark after the equals sign when "
|
||||
@ -334,7 +341,7 @@ msgstr ""
|
||||
"’%s’ དེ་རྐྱང་ཡིག་ཨིན་པས། ཁྱད་ཆོས་’%s’ གི་ ཆ་ཤས’%s’ གི་དོན་ལུ་ བེ་ལུ་བྱིནམ་ད་ མཉམ་རྟགས་ཀྱི་ཤུལ་"
|
||||
"ལུ་ འགོ་བཙུགས་འདྲེན་རྟགས་ཅིག་ ཚུད་ཡོད་པའི་རེ་བ་ཡོད།"
|
||||
|
||||
#: ../glib/gmarkup.c:1528
|
||||
#: glib/gmarkup.c:1528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following the characters '</'; '%s' may not "
|
||||
@ -343,7 +350,7 @@ msgstr ""
|
||||
"’%s’ དེ་ ཡིག་འབྲུ་ནུས་ཅན་ཅིག་མེན་ ཡིག་འབྲུ་ ’</’; ’%s’ ཚུ་གི་རྗེས་ཤུལ་ལུ་འོངམ་ ཆ་ཤས་ཀྱི་མིང་ཅིག་ "
|
||||
"འགོ་མི་བཙུགསཔ་འོང༌།"
|
||||
|
||||
#: ../glib/gmarkup.c:1568
|
||||
#: glib/gmarkup.c:1568
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following the close element name '%s'; the "
|
||||
@ -352,25 +359,25 @@ msgstr ""
|
||||
"’%s’ དེ་ ཡིག་འབྲུ་ནུས་ཅན་ཅིག་མེན། ཁ་བསྡམ་ནིའི་ཆ་ཤས་མིང་ ’%s’; གི་རྟིང་བདའ་འོངམ་ད་ ཆོག་པའི་ཡིག་"
|
||||
"འབྲུ་དེ་ ’>’ ཨིན།"
|
||||
|
||||
#: ../glib/gmarkup.c:1579
|
||||
#: glib/gmarkup.c:1579
|
||||
#, c-format
|
||||
msgid "Element '%s' was closed, no element is currently open"
|
||||
msgstr "ཆ་ཤས་ ’%s’ དེ་ ཁ་བསྡམས་ཏེ་ཡོདཔ་ལས་ ད་ལྟོ་ཆ་ཤས་གཅིག་ཡང་ ཁ་ཕྱེ་ཕྱེཝ་མིན་འདུག"
|
||||
|
||||
#: ../glib/gmarkup.c:1588
|
||||
#: glib/gmarkup.c:1588
|
||||
#, c-format
|
||||
msgid "Element '%s' was closed, but the currently open element is '%s'"
|
||||
msgstr "ཆ་ཤས་ ’%s’ དེ་ ཁ་བསྡམས་ནུག དེ་འབདཝ་ད་ ད་ལྟོ་ཁ་ཕྱེ་སྟེ་ཡོད་མི་ཆ་ཤས་དེ་ ’%s’ ཨིན།"
|
||||
|
||||
#: ../glib/gmarkup.c:1735
|
||||
#: glib/gmarkup.c:1735
|
||||
msgid "Document was empty or contained only whitespace"
|
||||
msgstr "ཡིག་ཆ་དེ་སྟོང་པའམ་ ཡང་ཅིན་ ནང་ན་ས་སྟོང་དཀརཔོ་མ་གཏོགས་ མེདཔ་འོང་ནི་མས།"
|
||||
|
||||
#: ../glib/gmarkup.c:1749
|
||||
#: glib/gmarkup.c:1749
|
||||
msgid "Document ended unexpectedly just after an open angle bracket '<'"
|
||||
msgstr "ཡིག་ཆ་དེ་ ཟུར་ཁུག་གུག་ཤད་ ’<’ ཅིག་གི་ཤུལ་ལས་ རེ་བ་མེད་པར་ རྫོགས་སོ་ཡི།"
|
||||
|
||||
#: ../glib/gmarkup.c:1757 ../glib/gmarkup.c:1801
|
||||
#: glib/gmarkup.c:1757 glib/gmarkup.c:1801
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Document ended unexpectedly with elements still open - '%s' was the last "
|
||||
@ -379,7 +386,7 @@ msgstr ""
|
||||
"ཡིག་ཆ་དེ་ རེ་བ་མེད་པར་རྫོགས་སོ་རུང་ ཆ་ཤས་དེ་ ཁ་ཕྱེ་སྟེ་རང་འདུག མཐའ་མཇུག་ཁ་ཕྱེ་མི་ ཆ་ཤས་དེ་ -’%"
|
||||
"s’ ཨིན་པས།"
|
||||
|
||||
#: ../glib/gmarkup.c:1765
|
||||
#: glib/gmarkup.c:1765
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Document ended unexpectedly, expected to see a close angle bracket ending "
|
||||
@ -388,19 +395,19 @@ msgstr ""
|
||||
"ཡིག་ཆ་དེ་ རེ་བ་མེད་པར་རྫོགས་སོ་ནུག ངོ་རྟགས་ <%s/> མཇུག་བསྡུ་བའི་ ཁ་བསྡམ་ཟུར་ཁུག་གུག་ཤད་ཅིག་ "
|
||||
"མཐོང་བའི་རེ་བ་ཡོད།"
|
||||
|
||||
#: ../glib/gmarkup.c:1771
|
||||
#: glib/gmarkup.c:1771
|
||||
msgid "Document ended unexpectedly inside an element name"
|
||||
msgstr "ཡིག་ཆ་དེ་ ཆ་ཤས་ཅིག་གི་ མིང་གི་ནང་ན་ རེ་བ་མེད་པར་རྫོགས་སོ་ནུག"
|
||||
|
||||
#: ../glib/gmarkup.c:1776
|
||||
#: glib/gmarkup.c:1776
|
||||
msgid "Document ended unexpectedly inside an attribute name"
|
||||
msgstr "ཡིག་ཆ་དེ་ ཁྱད་ཆོས་ཀྱི་མིང་ཅིག་གི་ནང་ན་ རེ་བ་མེད་པར་རྫོགས་སོ་ནུག"
|
||||
|
||||
#: ../glib/gmarkup.c:1781
|
||||
#: glib/gmarkup.c:1781
|
||||
msgid "Document ended unexpectedly inside an element-opening tag."
|
||||
msgstr "ཡིག་ཆ་དེ་ ཆ་ཤས་ཁ་ཕྱེ་ནིའི་ ངོ་རྟགས་ཅིག་གི་ནང་ན་ རེ་བ་མེད་པར་ རྫོགས་སོ་ནུག"
|
||||
|
||||
#: ../glib/gmarkup.c:1787
|
||||
#: glib/gmarkup.c:1787
|
||||
msgid ""
|
||||
"Document ended unexpectedly after the equals sign following an attribute "
|
||||
"name; no attribute value"
|
||||
@ -408,101 +415,103 @@ msgstr ""
|
||||
"ཡིག་ཆ་དེ་ ཁྱད་ཆོས་ཀྱི་མིང་ཅིག་གི་ཤུལ་ལས་ མཉམ་རྟགས་ཀྱི་རྗེས་སུ་ རེ་བ་མེད་པར་ རྫོགས་སོ་ནུག ཁྱད་ཆོས་ཀྱི་བེ་"
|
||||
"ལུ་མིན་འདུག"
|
||||
|
||||
#: ../glib/gmarkup.c:1794
|
||||
#: glib/gmarkup.c:1794
|
||||
msgid "Document ended unexpectedly while inside an attribute value"
|
||||
msgstr "ཡིག་ཆ་དེ་ ཁྱད་ཆོས་ཀྱི་ བེ་ལུ་ཅིག་གི་ནང་ན་སྡོད་པའི་སྐབས་ལུ་ རེ་བ་མེད་པར་ རྫོགས་སོ་ནུག"
|
||||
|
||||
#: ../glib/gmarkup.c:1809
|
||||
#: glib/gmarkup.c:1809
|
||||
#, c-format
|
||||
msgid "Document ended unexpectedly inside the close tag for element '%s'"
|
||||
msgstr "ཡིག་ཆ་དེ་ ཆ་ཤས་ ’%s’ གི་དོན་ལུ་ ཁ་བསྡམ་ངོ་རྟགས་ནང་ན་ རེ་བ་མེད་པར་ རྫོགས་སོ་ནུག"
|
||||
|
||||
#: ../glib/gmarkup.c:1815
|
||||
#: glib/gmarkup.c:1815
|
||||
msgid "Document ended unexpectedly inside a comment or processing instruction"
|
||||
msgstr "ཡིག་ཆ་དེ་ བསམ་བཀོད་ ཡང་ན་ ལས་སྦྱོར་བཀོད་རྒྱ་ཅིག་གི་ནང་ན་ རེ་བ་མེད་པར་ རྫོགས་སོ་ནུག"
|
||||
|
||||
#: ../glib/gshell.c:73
|
||||
#: glib/gshell.c:73
|
||||
#, c-format
|
||||
msgid "Quoted text doesn't begin with a quotation mark"
|
||||
msgstr "ལུང་འདྲེན་ཚིག་ཡིག་ཚུ་ འདྲེན་རྟགས་ཀྱི་ཐོག་ལས་ འགོ་མི་བཙུགས།"
|
||||
|
||||
#: ../glib/gshell.c:163
|
||||
#: glib/gshell.c:163
|
||||
#, c-format
|
||||
msgid "Unmatched quotation mark in command line or other shell-quoted text"
|
||||
msgstr ""
|
||||
"བཀོད་ལམ་ནང་ ཡང་ན་ གཞན་ ཤལ་གྱི་འདྲེན་རྟགས་ནང་བཙུགས་པའི་ཚིག་ཡིག་ཚུ་ནང་ མི་མཐུན་པའི་འདྲེན་རྟགས་"
|
||||
"འདུག"
|
||||
|
||||
#: ../glib/gshell.c:541
|
||||
#: glib/gshell.c:541
|
||||
#, c-format
|
||||
msgid "Text ended just after a '\\' character. (The text was '%s')"
|
||||
msgstr ""
|
||||
"ཚིག་ཡིག་དེ་ ཡིག་འབྲུ་ ’\\’ ཅིག་གི་ རྟིང་བདའ་སྟེ་རང་ རྫོགས་སོ་ནུག (ཚིག་ཡིག་དེ་ ’%s’ ཨིན་པས།)"
|
||||
|
||||
#: ../glib/gshell.c:548
|
||||
#: glib/gshell.c:548
|
||||
#, c-format
|
||||
msgid "Text ended before matching quote was found for %c. (The text was '%s')"
|
||||
msgstr ""
|
||||
"འདྲེན་རྟགས་དང་ མ་མཐུན་པའི་ཧེ་མར་ རྫོགས་སོང་མི་ ཚིག་ཡིག་དེ་ %c ཨིན་མས། (ཚིག་ཡིག་དེ་ ’%s’ ཨིན་པས)"
|
||||
|
||||
#: ../glib/gshell.c:560
|
||||
#: glib/gshell.c:560
|
||||
#, c-format
|
||||
msgid "Text was empty (or contained only whitespace)"
|
||||
msgstr "ཚིག་ཡིག་དེ་ སྟོང་པའམ་ (ཡང་ཅིན་ ནང་ན་ས་སྟོང་དཀརཔོ་རྐྱངམ་ཅིག་ འོང་ནི་མས།)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:276
|
||||
#: glib/gspawn-win32.c:276
|
||||
#, c-format
|
||||
msgid "Failed to read data from child process"
|
||||
msgstr "ཆ་ལག་ལས་སྦྱོར་ནང་ལས་ གནད་སྡུད་ལྷག་མ་ཚུགས། "
|
||||
|
||||
#: ../glib/gspawn-win32.c:291 ../glib/gspawn.c:1364
|
||||
#: glib/gspawn-win32.c:291 glib/gspawn.c:1364
|
||||
#, c-format
|
||||
msgid "Failed to create pipe for communicating with child process (%s)"
|
||||
msgstr ""
|
||||
"ཆ་ལག་ལས་སྦྱོར་ (%s) དང་གཅིག་ཁར་ རྒྱུད་འབྲེལ་འཐབ་ནིའི་དོན་ལུ་ རྒྱུད་དུང་གསར་བསྐྲུན་འབད་མ་ཚུགས།"
|
||||
|
||||
#: ../glib/gspawn-win32.c:329 ../glib/gspawn.c:1028
|
||||
#: glib/gspawn-win32.c:329 glib/gspawn.c:1028
|
||||
#, c-format
|
||||
msgid "Failed to read from child pipe (%s)"
|
||||
msgstr "ཆ་ལག་རྒྱུད་དུང་ (%s) ནང་ལས་ ལྷག་མ་ཚུགས།"
|
||||
|
||||
#: ../glib/gspawn-win32.c:355 ../glib/gspawn.c:1233
|
||||
#: glib/gspawn-win32.c:355 glib/gspawn.c:1233
|
||||
#, c-format
|
||||
msgid "Failed to change to directory '%s' (%s)"
|
||||
msgstr "སྣོད་ཐོ་’%s’ (%s)ལུ་ བསྒྱུར་བཅོས་འབད་མ་ཚུགས། "
|
||||
|
||||
#: ../glib/gspawn-win32.c:361 ../glib/gspawn-win32.c:581
|
||||
#: glib/gspawn-win32.c:361 glib/gspawn-win32.c:581
|
||||
#, c-format
|
||||
msgid "Failed to execute child process (%s)"
|
||||
msgstr "ཆ་ལག་ལས་སྦྱོར་ (%s) དེ་ ལག་ལེན་འཐབ་མ་ཚུགས།"
|
||||
|
||||
#: ../glib/gspawn-win32.c:471 ../glib/gspawn-win32.c:527
|
||||
#: glib/gspawn-win32.c:471 glib/gspawn-win32.c:527
|
||||
#, fuzzy, c-format
|
||||
msgid "Invalid program name: %s"
|
||||
msgstr "ནུས་མེད་ཀྱི་ ཧོསཊི་ནེམ།"
|
||||
|
||||
#: ../glib/gspawn-win32.c:481 ../glib/gspawn-win32.c:537
|
||||
#: ../glib/gspawn-win32.c:780 ../glib/gspawn-win32.c:835
|
||||
#: ../glib/gspawn-win32.c:1370
|
||||
#: glib/gspawn-win32.c:481 glib/gspawn-win32.c:537 glib/gspawn-win32.c:780
|
||||
#: glib/gspawn-win32.c:835 glib/gspawn-win32.c:1370
|
||||
#, fuzzy, c-format
|
||||
msgid "Invalid string in argument vector at %d: %s"
|
||||
msgstr "%s གི་དོན་ལུ་ སྒྲུབ་རྟགས་བརླག་སྟོར་ཞུགས་ནུག"
|
||||
|
||||
#: ../glib/gspawn-win32.c:492 ../glib/gspawn-win32.c:548
|
||||
#: ../glib/gspawn-win32.c:794 ../glib/gspawn-win32.c:848
|
||||
#: ../glib/gspawn-win32.c:1403
|
||||
#: glib/gspawn-win32.c:492 glib/gspawn-win32.c:548 glib/gspawn-win32.c:794
|
||||
#: glib/gspawn-win32.c:848 glib/gspawn-win32.c:1403
|
||||
#, fuzzy, c-format
|
||||
msgid "Invalid string in environment: %s"
|
||||
msgstr "བསྒྱུར་བཅོས་ཀྱི་ ཨིན་པུཊི་ནང་ལུ་ ནུས་མེད་འབྱུང་རིམ་འདུག"
|
||||
|
||||
#: ../glib/gspawn-win32.c:776 ../glib/gspawn-win32.c:831
|
||||
#: ../glib/gspawn-win32.c:1351
|
||||
#: glib/gspawn-win32.c:776 glib/gspawn-win32.c:831 glib/gspawn-win32.c:1351
|
||||
#, fuzzy, c-format
|
||||
msgid "Invalid working directory: %s"
|
||||
msgstr "སྣོད་ཐོ་ '%s':%s ཁ་ཕྱེ་ནི་ལུ་འཛོལ་བ།"
|
||||
|
||||
#: ../glib/gspawn-win32.c:890
|
||||
#: glib/gspawn-win32.c:890
|
||||
#, c-format
|
||||
msgid "Failed to execute helper program (%s)"
|
||||
msgstr "ལས་རོགས་པའི་ལས་རིམ་ (%s) ལག་ལེན་འཐབ་མ་ཚུགས།"
|
||||
|
||||
#: ../glib/gspawn-win32.c:1090
|
||||
#: glib/gspawn-win32.c:1090
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Unexpected error in g_io_channel_win32_poll() reading data from a child "
|
||||
"process"
|
||||
@ -510,195 +519,203 @@ msgstr ""
|
||||
"ཆ་ལག་ལས་སྦྱོར་ནང་ལས་ གནད་སྡུད་ལྷག་ནི་ལུ་ རེ་བ་མེད་པའི་འཛོལ་བ་ g_io_channel_win32_poll() "
|
||||
"ཚུ་འདུག"
|
||||
|
||||
#: ../glib/gspawn.c:168
|
||||
#: glib/gspawn.c:168
|
||||
#, c-format
|
||||
msgid "Failed to read data from child process (%s)"
|
||||
msgstr "ཆ་ལག་ལས་སྦྱོར་ (%s) ནང་ལས་ གནད་སྡུད་ལྷག་མ་ཚུགས།"
|
||||
|
||||
#: ../glib/gspawn.c:300
|
||||
#: glib/gspawn.c:300
|
||||
#, c-format
|
||||
msgid "Unexpected error in select() reading data from a child process (%s)"
|
||||
msgstr ""
|
||||
"སེལ་འཐུ་() ནང་ལུ་ རེ་བ་མེད་པའི་འཛོལ་བ་བྱུང་སྟེ་ ཆ་ལག་ལས་སྦྱོར་ (%s) ནང་ལས་ གནད་སྡུད་ལྷག་དོ།"
|
||||
|
||||
#: ../glib/gspawn.c:383
|
||||
#: glib/gspawn.c:383
|
||||
#, c-format
|
||||
msgid "Unexpected error in waitpid() (%s)"
|
||||
msgstr "ཝེཊི་པིཌི་ () (%s) ནང་ལུ་ རེ་བ་མེད་པའི་འཛོལ་བ། "
|
||||
|
||||
#: ../glib/gspawn.c:1093
|
||||
#: glib/gspawn.c:1093
|
||||
#, c-format
|
||||
msgid "Failed to fork (%s)"
|
||||
msgstr "(%s) ལུ་ ཁ་སྤེལ་མ་ཚུགས།"
|
||||
|
||||
#: ../glib/gspawn.c:1243
|
||||
#: glib/gspawn.c:1243
|
||||
#, c-format
|
||||
msgid "Failed to execute child process \"%s\" (%s)"
|
||||
msgstr "ཆ་ལག་ལས་སྦྱོར་ \"%s\" (%s) ལག་ལེན་འཐབ་མ་ཚུགས།"
|
||||
|
||||
#: ../glib/gspawn.c:1253
|
||||
#: glib/gspawn.c:1253
|
||||
#, c-format
|
||||
msgid "Failed to redirect output or input of child process (%s)"
|
||||
msgstr "ཆ་ལག་ལས་སྦྱོར་ (%s) གི་ ཨའུཊི་པུཊི་ ཡང་ཅིན་ ཨིན་པུཊི་ ལོག་གཏང་མ་ཚུགས།"
|
||||
|
||||
#: ../glib/gspawn.c:1262
|
||||
#: glib/gspawn.c:1262
|
||||
#, c-format
|
||||
msgid "Failed to fork child process (%s)"
|
||||
msgstr "ཆ་ལག་ལས་སྦྱོར་ (%s) ཁ་སྤེལ་མ་ཚུགས།"
|
||||
|
||||
#: ../glib/gspawn.c:1270
|
||||
#: glib/gspawn.c:1270
|
||||
#, c-format
|
||||
msgid "Unknown error executing child process \"%s\""
|
||||
msgstr "མ་ཤེས་པའི་འཛོལ་བ་ཅིག་གིས ཆ་ལག་ལས་སྦྱོར་ \"%s\" ལག་ལེན་འཐབ་དོ།"
|
||||
|
||||
#: ../glib/gspawn.c:1292
|
||||
#: glib/gspawn.c:1292
|
||||
#, c-format
|
||||
msgid "Failed to read enough data from child pid pipe (%s)"
|
||||
msgstr "ཆ་ལག་ པིཨའི་ཌི་ རྒྱུད་དུང་ (%s) ནང་ལས་ གནད་སྡུད་ལངམ་ ལྷག་མ་ཚུགས།"
|
||||
|
||||
#: ../glib/gutf8.c:1017
|
||||
#: glib/gutf8.c:1017
|
||||
#, c-format
|
||||
msgid "Character out of range for UTF-8"
|
||||
msgstr "ཡིག་འབྲུ་ ཡུ་ཊི་ཨེཕ་ - ༨ ཀྱི་ ཁྱབ་ཚད་ཀྱི་ཕྱི་ཁར་ཨིན་མས།"
|
||||
|
||||
#: ../glib/gutf8.c:1111 ../glib/gutf8.c:1120 ../glib/gutf8.c:1252
|
||||
#: ../glib/gutf8.c:1261 ../glib/gutf8.c:1402 ../glib/gutf8.c:1498
|
||||
#: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 glib/gutf8.c:1261
|
||||
#: glib/gutf8.c:1402 glib/gutf8.c:1498
|
||||
#, c-format
|
||||
msgid "Invalid sequence in conversion input"
|
||||
msgstr "བསྒྱུར་བཅོས་ཀྱི་ ཨིན་པུཊི་ནང་ལུ་ ནུས་མེད་འབྱུང་རིམ་འདུག"
|
||||
|
||||
#: ../glib/gutf8.c:1413 ../glib/gutf8.c:1509
|
||||
#: glib/gutf8.c:1413 glib/gutf8.c:1509
|
||||
#, c-format
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "ཡིག་འབྲུ་ ཡུ་ཊི་ཨེཕ་- ༡༦ གི་ ཁྱབ་ཚད་ཀྱི་ཕྱི་ཁར་ཨིན་མས།"
|
||||
|
||||
#: ../glib/goption.c:484
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "ལག་ལེན:"
|
||||
|
||||
#: ../glib/goption.c:484
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[ གདམ་ཁ... ] "
|
||||
|
||||
#: ../glib/goption.c:572
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "གྲོགས་རམ་གདམ་ཁ་ཚུ།"
|
||||
|
||||
#: ../glib/goption.c:573
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "གྲོགས་རམ་གདམ་ཁ་ཚུ་སྟོན།"
|
||||
|
||||
#: ../glib/goption.c:578
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "གྲོགས་རམ་གདམ་ཁ་ཚུ་ ཆ་མཉམ་སྟོན།"
|
||||
|
||||
#: ../glib/goption.c:628
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "གློག་རིམ་གྱི་གདམ་ཁ།"
|
||||
|
||||
#: ../glib/goption.c:669
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "ཧྲིལ་ཨང་བེ་ལུ་ ’%s’དེ་%s གི་དོན་ལུ་ མིང་དཔྱད་འབད་མི་ཚུགས།"
|
||||
|
||||
#: ../glib/goption.c:679
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "%s གི་དོན་ལུ་ ཧྲིལ་ཨང་བེ་ལུ་ ’%s’ དེ་ ཁྱབ་ཚད་ཀྱི་ཕྱི་ཁར་ཨིན་པས།"
|
||||
|
||||
#: ../glib/goption.c:942
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "གདམ་ཁ་%s མིང་དཔྱད་འབད་ནི་ལུ་འཛོལ་བ།"
|
||||
|
||||
#: ../glib/goption.c:973 ../glib/goption.c:1084
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "%s གི་དོན་ལུ་ སྒྲུབ་རྟགས་བརླག་སྟོར་ཞུགས་ནུག"
|
||||
|
||||
#: ../glib/goption.c:1489
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "ཤེས་མ་ཚུགས་པའི་གདམ་ཁ་ %s།"
|
||||
|
||||
#: ../glib/gkeyfile.c:339
|
||||
#: glib/gkeyfile.c:339
|
||||
#, c-format
|
||||
msgid "Valid key file could not be found in data dirs"
|
||||
msgstr "གནད་སྡུད་སྣོད་ཐོ་ཚུ་ནང་ ནུས་ཅན་ལྡེ་མིག་ཡིག་སྣོད་ འཚོལ་མ་ཐོབ།"
|
||||
|
||||
#: ../glib/gkeyfile.c:374
|
||||
#: glib/gkeyfile.c:374
|
||||
#, c-format
|
||||
msgid "Not a regular file"
|
||||
msgstr "དུས་རྒྱུན་གྱི་ཡིག་སྣོད་ཅིག་མེན་པས།"
|
||||
|
||||
#: ../glib/gkeyfile.c:382
|
||||
#: glib/gkeyfile.c:382
|
||||
#, c-format
|
||||
msgid "File is empty"
|
||||
msgstr "ཡིག་སྣོད་སྟོངམ་ཨིན་པས།"
|
||||
|
||||
#: ../glib/gkeyfile.c:697
|
||||
#: glib/gkeyfile.c:697
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Key file contains line '%s' which is not a key-value pair, group, or comment"
|
||||
msgstr "ལྡེ་མིག་ཡིག་སྣོད་ནང་ལུ་ ལྡེ་མིག་-བེ་ལུ་དང་ སྡེ་ཚན་ བསམ་བཀོད་མེན་པའི་ གྱལ་རིམ་'%s' ཡོད། "
|
||||
|
||||
#: ../glib/gkeyfile.c:765
|
||||
#: glib/gkeyfile.c:765
|
||||
#, c-format
|
||||
msgid "Key file does not start with a group"
|
||||
msgstr "ལྡེ་མིག་ཡིག་སྣོད་དེ་ སྡེ་ཚན་ཅིག་གི་ཐོག་ལས་ འགོ་མི་བཙུགས།"
|
||||
|
||||
#: ../glib/gkeyfile.c:808
|
||||
#: glib/gkeyfile.c:808
|
||||
#, c-format
|
||||
msgid "Key file contains unsupported encoding '%s'"
|
||||
msgstr "ལྡེ་མིག་ཡིག་སྣོད་ནང་ལུ་ རྒྱབ་སྐྱོར་མེད་པའི་ ཨིན་ཀོ་ཌིང་'%s'ཡོད།"
|
||||
|
||||
#: ../glib/gkeyfile.c:1017 ../glib/gkeyfile.c:1176 ../glib/gkeyfile.c:2177
|
||||
#: ../glib/gkeyfile.c:2242 ../glib/gkeyfile.c:2361 ../glib/gkeyfile.c:2497
|
||||
#: ../glib/gkeyfile.c:2649 ../glib/gkeyfile.c:2823 ../glib/gkeyfile.c:2880
|
||||
#: glib/gkeyfile.c:1017 glib/gkeyfile.c:1176 glib/gkeyfile.c:2177
|
||||
#: glib/gkeyfile.c:2242 glib/gkeyfile.c:2361 glib/gkeyfile.c:2497
|
||||
#: glib/gkeyfile.c:2649 glib/gkeyfile.c:2823 glib/gkeyfile.c:2880
|
||||
#, c-format
|
||||
msgid "Key file does not have group '%s'"
|
||||
msgstr "ལྡེ་མིག་ཡིག་སྣོད་ནང་ལུ་ སྡེ་ཚན་ '%s' མིན་འདུག།"
|
||||
|
||||
#: ../glib/gkeyfile.c:1188
|
||||
#: glib/gkeyfile.c:1188
|
||||
#, c-format
|
||||
msgid "Key file does not have key '%s'"
|
||||
msgstr "ལྡེ་མིག་ཡིག་སྣོད་ནང་ ལྡེ་མིག་'%s'མིན་འདུག"
|
||||
|
||||
#: ../glib/gkeyfile.c:1289 ../glib/gkeyfile.c:1398
|
||||
#: glib/gkeyfile.c:1289 glib/gkeyfile.c:1398
|
||||
#, c-format
|
||||
msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
|
||||
msgstr "ལྡེ་མིག་ཡིག་སྣོད་ནང་ལུ་ ཡུ་ཊི་ཨེཕ་-༨ མེད་པའི་ ལྡེ་མིག་'%s' བེ་ལུ་'%s' དང་བཅསཔ་སྦེ་འདུག"
|
||||
|
||||
#: ../glib/gkeyfile.c:1307 ../glib/gkeyfile.c:1416 ../glib/gkeyfile.c:1788
|
||||
#: glib/gkeyfile.c:1307 glib/gkeyfile.c:1416 glib/gkeyfile.c:1788
|
||||
#, c-format
|
||||
msgid "Key file contains key '%s' which has value that cannot be interpreted."
|
||||
msgstr "ལྡེ་མིག་ཡིག་སྣོད་ནང་ལུ་ ཁ་བསྒྱུར་འབད་མ་ཚུགས་པའི་ བེ་ལུ་ཡོད་མི་ ལྡེ་མིག་ '%s'འདུག"
|
||||
|
||||
#: ../glib/gkeyfile.c:2004
|
||||
#: glib/gkeyfile.c:2004
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Key file contains key '%s' in group '%s' which has value that cannot be "
|
||||
"interpreted."
|
||||
msgstr "ལྡེ་མིག་ཡིག་སྣོད་ནང་ལུ་ ཁ་བསྒྱུར་འབད་མ་ཚུགས་པའི་ ལྡེ་མིག་'%s'སྡེ་ཚན་'%s' ནང་འདུག།"
|
||||
|
||||
#: ../glib/gkeyfile.c:2192 ../glib/gkeyfile.c:2376 ../glib/gkeyfile.c:2891
|
||||
#: glib/gkeyfile.c:2192 glib/gkeyfile.c:2376 glib/gkeyfile.c:2891
|
||||
#, c-format
|
||||
msgid "Key file does not have key '%s' in group '%s'"
|
||||
msgstr "ལྡེ་མིག་ཡིག་སྣོད་དེ་ལུ་ ལྡེ་མིག་'%s' སྡེ་ཚན་'%s' ནང་མིན་འདུག"
|
||||
|
||||
#: ../glib/gkeyfile.c:3067
|
||||
#: glib/gkeyfile.c:3067
|
||||
#, c-format
|
||||
msgid "Key file contains escape character at end of line"
|
||||
msgstr "ལྡེ་མིག་ཡིག་སྣོད་ནང་ལུ་ གྱལ་རིམ་མཇུག་ལུ་ གྲོས་ཐར་འབད་མི་ཡིག་འབྲུ་འདུག"
|
||||
|
||||
#: ../glib/gkeyfile.c:3089
|
||||
#: glib/gkeyfile.c:3089
|
||||
#, c-format
|
||||
msgid "Key file contains invalid escape sequence '%s'"
|
||||
msgstr "ལྡེ་མིག་ཡིག་སྣོད་ནང་ལུ་ ནུས་མེད་གྲོས་ཐར་འབྱུང་རིམ་ '%s' འདུག"
|
||||
|
||||
#: ../glib/gkeyfile.c:3230
|
||||
#: glib/gkeyfile.c:3230
|
||||
#, c-format
|
||||
msgid "Value '%s' cannot be interpreted as a number."
|
||||
msgstr "བེ་ལུ་'%s'དེ་ ཨང་གྲངས་ཅིག་སྦེ་ ཁ་བསྒྱུར་འབད་མི་ཚུགས།"
|
||||
|
||||
#: ../glib/gkeyfile.c:3240
|
||||
#: glib/gkeyfile.c:3240
|
||||
#, c-format
|
||||
msgid "Integer value '%s' out of range"
|
||||
msgstr "ཧྲིལ་ཨང་བེ་ལུ་ ’%s’ དེ་ ཁྱབ་ཚད་ཀྱི་ཕྱི་ཁར་ཨིན་པས།"
|
||||
|
||||
#: ../glib/gkeyfile.c:3270
|
||||
#: glib/gkeyfile.c:3270
|
||||
#, c-format
|
||||
msgid "Value '%s' cannot be interpreted as a boolean."
|
||||
msgstr "བེ་ལུ་'%s'དེ་ བུ་ལིན་ཅིག་སྦེ་ ཁ་བསྒྱུར་འབད་མི་ཚུགས།"
|
||||
|
24
po/el.po
24
po/el.po
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: el\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-02-20 12:47+0200\n"
|
||||
"Last-Translator: Kostas Papadimas <pkst@gnome.org>\n"
|
||||
"Language-Team: Greek <team@gnome.gr>\n"
|
||||
@ -624,52 +624,52 @@ msgstr "Μή έγκυρη σειρά στην είσοδο μεταροπής"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Ο χαρακτήρας είναι έξω από την εμβέλεια για UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Χρήση:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[ΕΠΙΛΟΓΗ...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Επιλογές βοήθειας:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Εμφάνιση επιλογών βοήθειας"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Εμφάνιση όλων των επιλογών βοήθειας"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Επιλογές εφαρμογής:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Αδυναμία ανάλυσης integer value '%s' για %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Integer value '%s' για %s είναι εκτός εύρους"
|
||||
|
||||
# gconf/gconftool.c:1181
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Σφάλμα επιλογής ανάλυσης %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Λείπει όρισμα για %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Άγνωστη επιλογή %s"
|
||||
|
24
po/en_CA.po
24
po/en_CA.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
@ -573,51 +573,51 @@ msgstr "Invalid sequence in conversion input"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Character out of range for UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Usage:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPTION...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Help Options:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Show help options"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Show all help options"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Application Options:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Cannot parse integer value '%s' for %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Integer value '%s' for %s out of range"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Error parsing option %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Missing argument for %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Unknown option %s"
|
||||
|
24
po/en_GB.po
24
po/en_GB.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GLIB\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2005-04-19 20:16+0100\n"
|
||||
"Last-Translator: David Lodge <dave@cirt.net>\n"
|
||||
"Language-Team: \n"
|
||||
@ -572,51 +572,51 @@ msgstr "Invalid sequence in conversion input"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Character out of range for UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Usage:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPTION...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Help Options:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Show help options"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Show all help options"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Application Options:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Cannot parse integer value '%s' for %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Integer value '%s' for %s out of range"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Error during conversion: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Unknown option %s"
|
||||
|
24
po/eo.po
24
po/eo.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.3.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
@ -570,51 +570,51 @@ msgstr "Nevalida sekvenco en konverta enigo"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Signo ne estas en la UTF-16 intervalo"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Eraro dum konverto: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr ""
|
||||
|
24
po/es.po
24
po/es.po
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnome-control-center\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-07 01:34+0100\n"
|
||||
"Last-Translator: Francisco Javier F. Serrador <serrador@cvs.gnome.org>\n"
|
||||
"Language-Team: Spanish <traductores@es.gnome.org>\n"
|
||||
@ -610,51 +610,51 @@ msgstr "La secuencia en la conversión de entrada no es válida"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "El carácter se encuentra fuera del rango para UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Uso:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPCIÓN...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Opciones de ayuda:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Mostrar opciones de ayuda"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Mostrar todas las opciones de ayuda"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Opciones de la aplicación:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "No se puede analizar gramaticalmente el valor entero «%s» para %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "El valor entero «%s» para %s está fuera de rango"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Error al analizar la opción: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Falta un argumento para %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Opción desconocida %s"
|
||||
|
301
po/et.po
301
po/et.po
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Glib 2.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-01-20 06:26+0100\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-20 14:11+0200\n"
|
||||
"Last-Translator: Ivar Smolin <okul@linux.ee>\n"
|
||||
"Language-Team: Estonian <gnome-et@linux.ee>\n"
|
||||
@ -21,205 +21,212 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ../glib/gconvert.c:408 ../glib/gconvert.c:486 ../glib/giochannel.c:1150
|
||||
#: glib/gconvert.c:408 glib/gconvert.c:486 glib/giochannel.c:1150
|
||||
#, c-format
|
||||
msgid "Conversion from character set '%s' to '%s' is not supported"
|
||||
msgstr "Teisendamine koodistikust '%s' koodistikku '%s' ei ole toetatud"
|
||||
|
||||
#: ../glib/gconvert.c:412 ../glib/gconvert.c:490
|
||||
#: glib/gconvert.c:412 glib/gconvert.c:490
|
||||
#, c-format
|
||||
msgid "Could not open converter from '%s' to '%s'"
|
||||
msgstr "Konverterit '%s'-st '%s'-ks pole võimalik avada"
|
||||
|
||||
#: ../glib/gconvert.c:606 ../glib/gconvert.c:995 ../glib/giochannel.c:1322
|
||||
#: ../glib/giochannel.c:1364 ../glib/giochannel.c:2206 ../glib/gutf8.c:943
|
||||
#: ../glib/gutf8.c:1392
|
||||
#: glib/gconvert.c:606 glib/gconvert.c:995 glib/giochannel.c:1322
|
||||
#: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943
|
||||
#: glib/gutf8.c:1392
|
||||
#, c-format
|
||||
msgid "Invalid byte sequence in conversion input"
|
||||
msgstr "Vigane baidijada sisendi teisendamisel"
|
||||
|
||||
#: ../glib/gconvert.c:612 ../glib/gconvert.c:922 ../glib/giochannel.c:1329
|
||||
#: ../glib/giochannel.c:2218
|
||||
#: glib/gconvert.c:612 glib/gconvert.c:922 glib/giochannel.c:1329
|
||||
#: glib/giochannel.c:2218
|
||||
#, c-format
|
||||
msgid "Error during conversion: %s"
|
||||
msgstr "Viga teisendamisel: %s"
|
||||
|
||||
#: ../glib/gconvert.c:647 ../glib/gutf8.c:939 ../glib/gutf8.c:1143
|
||||
#: ../glib/gutf8.c:1284 ../glib/gutf8.c:1388
|
||||
#: glib/gconvert.c:647 glib/gutf8.c:939 glib/gutf8.c:1143 glib/gutf8.c:1284
|
||||
#: glib/gutf8.c:1388
|
||||
#, c-format
|
||||
msgid "Partial character sequence at end of input"
|
||||
msgstr "Osaline märgijada sisendi lõpus"
|
||||
|
||||
#: ../glib/gconvert.c:897
|
||||
#: glib/gconvert.c:897
|
||||
#, c-format
|
||||
msgid "Cannot convert fallback '%s' to codeset '%s'"
|
||||
msgstr "Taandresiimi '%s' pole võimalik teisendada kooditabelisse '%s'"
|
||||
|
||||
#: ../glib/gconvert.c:1706
|
||||
#: glib/gconvert.c:1706
|
||||
#, c-format
|
||||
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
|
||||
msgstr "URI '%s' ei ole failiskeemi (\"file\") jaoks absoluutne URI"
|
||||
|
||||
#: ../glib/gconvert.c:1716
|
||||
#: glib/gconvert.c:1716
|
||||
#, 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:1733
|
||||
#: glib/gconvert.c:1733
|
||||
#, c-format
|
||||
msgid "The URI '%s' is invalid"
|
||||
msgstr "URI '%s' on vigane"
|
||||
|
||||
#: ../glib/gconvert.c:1745
|
||||
#: glib/gconvert.c:1745
|
||||
#, c-format
|
||||
msgid "The hostname of the URI '%s' is invalid"
|
||||
msgstr "URI '%s' hostinimi on vigane"
|
||||
|
||||
#: ../glib/gconvert.c:1761
|
||||
#: glib/gconvert.c:1761
|
||||
#, c-format
|
||||
msgid "The URI '%s' contains invalidly escaped characters"
|
||||
msgstr "URI '%s' sisaldab vigaseid paomärke"
|
||||
|
||||
#: ../glib/gconvert.c:1855
|
||||
#: glib/gconvert.c:1855
|
||||
#, c-format
|
||||
msgid "The pathname '%s' is not an absolute path"
|
||||
msgstr "Rajanimi '%s' ei ole absoluutne rada"
|
||||
|
||||
#: ../glib/gconvert.c:1865
|
||||
#: glib/gconvert.c:1865
|
||||
#, c-format
|
||||
msgid "Invalid hostname"
|
||||
msgstr "Vigane hostinimi"
|
||||
|
||||
#: ../glib/gdir.c:121 ../glib/gdir.c:141
|
||||
#: glib/gdir.c:121 glib/gdir.c:141
|
||||
#, c-format
|
||||
msgid "Error opening directory '%s': %s"
|
||||
msgstr "Viga kataloogi '%s' avamisel: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:576 ../glib/gfileutils.c:649
|
||||
#: glib/gfileutils.c:576 glib/gfileutils.c:649
|
||||
#, c-format
|
||||
msgid "Could not allocate %lu bytes to read file \"%s\""
|
||||
msgstr "Ei saa eraldada %lu faili \"%s\" lugemiseks"
|
||||
|
||||
#: ../glib/gfileutils.c:591
|
||||
#: glib/gfileutils.c:591
|
||||
#, c-format
|
||||
msgid "Error reading file '%s': %s"
|
||||
msgstr "Viga failist '%s' lugemisel: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:673
|
||||
#: glib/gfileutils.c:673
|
||||
#, c-format
|
||||
msgid "Failed to read from file '%s': %s"
|
||||
msgstr "Tõrge failist '%s' lugemisel: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:724 ../glib/gfileutils.c:811
|
||||
#: glib/gfileutils.c:724 glib/gfileutils.c:811
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s': %s"
|
||||
msgstr "Tõrge faili '%s' avamisel: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:741 ../glib/gmappedfile.c:133
|
||||
#: glib/gfileutils.c:741 glib/gmappedfile.c:133
|
||||
#, c-format
|
||||
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
|
||||
msgstr "Tõrge faili '%s' atribuutide saamisel: fstat() nurjus: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:775
|
||||
#: glib/gfileutils.c:775
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s': fdopen() failed: %s"
|
||||
msgstr "Tõrge faili '%s' avamisel: fdopen() nurjus: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:909
|
||||
#: glib/gfileutils.c:909
|
||||
#, 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:950 ../glib/gfileutils.c:1415
|
||||
#: glib/gfileutils.c:950 glib/gfileutils.c:1415
|
||||
#, c-format
|
||||
msgid "Failed to create file '%s': %s"
|
||||
msgstr "Tõrge faili '%s' loomisel: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:964
|
||||
#: glib/gfileutils.c:964
|
||||
#, 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:989
|
||||
#: glib/gfileutils.c:989
|
||||
#, c-format
|
||||
msgid "Failed to write file '%s': fwrite() failed: %s"
|
||||
msgstr "Tõrge faili '%s' kirjutamisel: fwrite() nurjus: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1008
|
||||
#: glib/gfileutils.c:1008
|
||||
#, c-format
|
||||
msgid "Failed to close file '%s': fclose() failed: %s"
|
||||
msgstr "Tõrge faili '%s' sulgemisel: fclose() nurjus: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1126
|
||||
#: glib/gfileutils.c:1126
|
||||
#, 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:1376
|
||||
#: glib/gfileutils.c:1376
|
||||
#, c-format
|
||||
msgid "Template '%s' invalid, should not contain a '%s'"
|
||||
msgstr "Mall '%s' vigane, ei tohiks sisaldada '%s'"
|
||||
|
||||
#: ../glib/gfileutils.c:1390
|
||||
#: glib/gfileutils.c:1390
|
||||
#, c-format
|
||||
msgid "Template '%s' doesn't end with XXXXXX"
|
||||
msgstr "Mall '%s' ei lõppe XXXXXX-ga"
|
||||
|
||||
#: ../glib/gfileutils.c:1865
|
||||
#: glib/gfileutils.c:1865
|
||||
#, c-format
|
||||
msgid "Failed to read the symbolic link '%s': %s"
|
||||
msgstr "Tõrge nimeviite '%s' lugemisel: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1886
|
||||
#: glib/gfileutils.c:1886
|
||||
#, c-format
|
||||
msgid "Symbolic links not supported"
|
||||
msgstr "Nimeviited ei ole toetatud"
|
||||
|
||||
#: ../glib/giochannel.c:1154
|
||||
#: glib/giochannel.c:1154
|
||||
#, 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:1499
|
||||
#: glib/giochannel.c:1499
|
||||
#, c-format
|
||||
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:1546 ../glib/giochannel.c:1803
|
||||
#: ../glib/giochannel.c:1889
|
||||
#: glib/giochannel.c:1546 glib/giochannel.c:1803 glib/giochannel.c:1889
|
||||
#, c-format
|
||||
msgid "Leftover unconverted data in read buffer"
|
||||
msgstr "Lugemispuhvrisse jäi teisendamata andmeid"
|
||||
|
||||
#: ../glib/giochannel.c:1626 ../glib/giochannel.c:1703
|
||||
#: glib/giochannel.c:1626 glib/giochannel.c:1703
|
||||
#, c-format
|
||||
msgid "Channel terminates in a partial character"
|
||||
msgstr "Kanali katkestus poole märgi pealt"
|
||||
|
||||
#: ../glib/giochannel.c:1689
|
||||
#: glib/giochannel.c:1689
|
||||
#, c-format
|
||||
msgid "Can't do a raw read in g_io_channel_read_to_end"
|
||||
msgstr "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:232
|
||||
#: glib/gmarkup.c:232
|
||||
#, c-format
|
||||
msgid "Error on line %d char %d: %s"
|
||||
msgstr "Viga real %d märgil %d: %s"
|
||||
|
||||
#: ../glib/gmarkup.c:330
|
||||
#: glib/gmarkup.c:330
|
||||
#, c-format
|
||||
msgid "Error on line %d: %s"
|
||||
msgstr "Viga real %d: %s"
|
||||
|
||||
#: ../glib/gmarkup.c:434
|
||||
#: glib/gmarkup.c:434
|
||||
msgid ""
|
||||
"Empty entity '&;' seen; valid entities are: & " < > '"
|
||||
msgstr ""
|
||||
"Avastati tühi olem '&'; lubatud olemid on: & " < > '"
|
||||
|
||||
#: ../glib/gmarkup.c:444
|
||||
#: glib/gmarkup.c:444
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Character '%s' is not valid at the start of an entity name; the & character "
|
||||
@ -229,17 +236,17 @@ msgstr ""
|
||||
"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:478
|
||||
#: glib/gmarkup.c:478
|
||||
#, c-format
|
||||
msgid "Character '%s' is not valid inside an entity name"
|
||||
msgstr "Märk '%s' ei ole olemi nimes lubatud"
|
||||
|
||||
#: ../glib/gmarkup.c:515
|
||||
#: glib/gmarkup.c:515
|
||||
#, c-format
|
||||
msgid "Entity name '%s' is not known"
|
||||
msgstr "Olemi nimi '%s' on tuntmatu"
|
||||
|
||||
#: ../glib/gmarkup.c:526
|
||||
#: glib/gmarkup.c:526
|
||||
msgid ""
|
||||
"Entity did not end with a semicolon; most likely you used an ampersand "
|
||||
"character without intending to start an entity - escape ampersand as &"
|
||||
@ -247,7 +254,7 @@ msgstr ""
|
||||
"Olem ei lõppenud semikooloniga; kõige tõenäolisemalt ei kavatsenud sa "
|
||||
"ampersandi kasutades olemit alustada - märgi see kui &"
|
||||
|
||||
#: ../glib/gmarkup.c:579
|
||||
#: glib/gmarkup.c:579
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Failed to parse '%-.*s', which should have been a digit inside a character "
|
||||
@ -256,16 +263,16 @@ msgstr ""
|
||||
"Viga '%-.*s' parsimisel. See võiks olla märgiviites olev number (näiteks "
|
||||
"ê) - võibolla on number liiga suur"
|
||||
|
||||
#: ../glib/gmarkup.c:604
|
||||
#: glib/gmarkup.c:604
|
||||
#, c-format
|
||||
msgid "Character reference '%-.*s' does not encode a permitted character"
|
||||
msgstr "Märgiviide '%-.*s' ei teisendu lubatud märgiks"
|
||||
|
||||
#: ../glib/gmarkup.c:619
|
||||
#: glib/gmarkup.c:619
|
||||
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:629
|
||||
#: glib/gmarkup.c:629
|
||||
msgid ""
|
||||
"Character reference did not end with a semicolon; most likely you used an "
|
||||
"ampersand character without intending to start an entity - escape ampersand "
|
||||
@ -274,23 +281,23 @@ msgstr ""
|
||||
"Märgiviide ei lõpe semikooloniga. Enamasti kasutatakse ampersand märki ilma "
|
||||
"kavatsuseta olemit alustada - märgi see kui &"
|
||||
|
||||
#: ../glib/gmarkup.c:715
|
||||
#: glib/gmarkup.c:715
|
||||
msgid "Unfinished entity reference"
|
||||
msgstr "Lõpetamata viide olemile"
|
||||
|
||||
#: ../glib/gmarkup.c:721
|
||||
#: glib/gmarkup.c:721
|
||||
msgid "Unfinished character reference"
|
||||
msgstr "Lõpetamata viide märgile"
|
||||
|
||||
#: ../glib/gmarkup.c:964 ../glib/gmarkup.c:992 ../glib/gmarkup.c:1023
|
||||
#: glib/gmarkup.c:964 glib/gmarkup.c:992 glib/gmarkup.c:1023
|
||||
msgid "Invalid UTF-8 encoded text"
|
||||
msgstr "Vigaselt kodeeritud UTF-8 tekst"
|
||||
|
||||
#: ../glib/gmarkup.c:1059
|
||||
#: glib/gmarkup.c:1059
|
||||
msgid "Document must begin with an element (e.g. <book>)"
|
||||
msgstr "Dokument peab algama elemendiga (nt: <book>)"
|
||||
|
||||
#: ../glib/gmarkup.c:1099
|
||||
#: glib/gmarkup.c:1099
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following a '<' character; it may not begin an "
|
||||
@ -298,7 +305,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Märk '%s' ei ole märgi '<' järel lubatud, see võib mitte olla elemendi nimi"
|
||||
|
||||
#: ../glib/gmarkup.c:1163
|
||||
#: glib/gmarkup.c:1163
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '>' character to end the start tag of element "
|
||||
@ -306,7 +313,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Veider märk '%s', oodatakse '>' märki, et lõpetada elemendi '%s' algussilti"
|
||||
|
||||
#: ../glib/gmarkup.c:1252
|
||||
#: glib/gmarkup.c:1252
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
|
||||
@ -314,7 +321,7 @@ msgstr ""
|
||||
"Veider märk '%s', oodatakse '=' märki peale elemendi '%s' tunnust nimega '%"
|
||||
"s' "
|
||||
|
||||
#: ../glib/gmarkup.c:1294
|
||||
#: glib/gmarkup.c:1294
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
|
||||
@ -325,7 +332,7 @@ msgstr ""
|
||||
"sildi algust või lõppu, ühe võimalusena ka atribuuti. Võib-olla kasutad sa "
|
||||
"atribuudi nimes vigast märki?"
|
||||
|
||||
#: ../glib/gmarkup.c:1383
|
||||
#: glib/gmarkup.c:1383
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected an open quote mark after the equals sign when "
|
||||
@ -334,7 +341,7 @@ msgstr ""
|
||||
"Veider märk '%s', oodatakse võrdusmärgi järel tulevat jutumärki, mis aitaks "
|
||||
"atribuudile '%s' väärtust seada (element '%s')"
|
||||
|
||||
#: ../glib/gmarkup.c:1528
|
||||
#: glib/gmarkup.c:1528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following the characters '</'; '%s' may not "
|
||||
@ -343,7 +350,7 @@ msgstr ""
|
||||
"Märk '%s' ei ole märkide '</' järel lubatud, '%s' võib mitte olla elemendi "
|
||||
"nimi"
|
||||
|
||||
#: ../glib/gmarkup.c:1568
|
||||
#: glib/gmarkup.c:1568
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following the close element name '%s'; the "
|
||||
@ -352,25 +359,25 @@ msgstr ""
|
||||
"Märk '%s' ei ole lubatud märk elemendi '%s' nime sulgemise järel, lubatud "
|
||||
"märk on '>'"
|
||||
|
||||
#: ../glib/gmarkup.c:1579
|
||||
#: glib/gmarkup.c:1579
|
||||
#, c-format
|
||||
msgid "Element '%s' was closed, no element is currently open"
|
||||
msgstr "Element '%s' on suletud, avatud elemente ei ole"
|
||||
|
||||
#: ../glib/gmarkup.c:1588
|
||||
#: glib/gmarkup.c:1588
|
||||
#, 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:1735
|
||||
#: glib/gmarkup.c:1735
|
||||
msgid "Document was empty or contained only whitespace"
|
||||
msgstr "Dokument on tühi või sisaldab ainult tühja ruumi"
|
||||
|
||||
#: ../glib/gmarkup.c:1749
|
||||
#: glib/gmarkup.c:1749
|
||||
msgid "Document ended unexpectedly just after an open angle bracket '<'"
|
||||
msgstr "Dokument lõppes ootamatult ilma avatud nurksulgu '<' sulgemata"
|
||||
|
||||
#: ../glib/gmarkup.c:1757 ../glib/gmarkup.c:1801
|
||||
#: glib/gmarkup.c:1757 glib/gmarkup.c:1801
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Document ended unexpectedly with elements still open - '%s' was the last "
|
||||
@ -379,7 +386,7 @@ msgstr ""
|
||||
"Dokument lõppes ootamatult ilma, et avatud elemente sulgemata - '%s' oli "
|
||||
"viimane avatud element"
|
||||
|
||||
#: ../glib/gmarkup.c:1765
|
||||
#: glib/gmarkup.c:1765
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Document ended unexpectedly, expected to see a close angle bracket ending "
|
||||
@ -388,19 +395,19 @@ msgstr ""
|
||||
"Dokument lõppes ootamatult, sildi <%s/> lõpetamiseks loodetakse näha "
|
||||
"nurksulgu"
|
||||
|
||||
#: ../glib/gmarkup.c:1771
|
||||
#: glib/gmarkup.c:1771
|
||||
msgid "Document ended unexpectedly inside an element name"
|
||||
msgstr "Dokument lõppes ootamatult elemendi nime sees"
|
||||
|
||||
#: ../glib/gmarkup.c:1776
|
||||
#: glib/gmarkup.c:1776
|
||||
msgid "Document ended unexpectedly inside an attribute name"
|
||||
msgstr "Dokument lõppes ootamatult atribuudi nime sees"
|
||||
|
||||
#: ../glib/gmarkup.c:1781
|
||||
#: glib/gmarkup.c:1781
|
||||
msgid "Document ended unexpectedly inside an element-opening tag."
|
||||
msgstr "Dokument lõppes ootamatult elemendi avamise sildi sees"
|
||||
|
||||
#: ../glib/gmarkup.c:1787
|
||||
#: glib/gmarkup.c:1787
|
||||
msgid ""
|
||||
"Document ended unexpectedly after the equals sign following an attribute "
|
||||
"name; no attribute value"
|
||||
@ -408,96 +415,98 @@ msgstr ""
|
||||
"Dokument lõppes ootamatult peale atribuudi nime järel olevat võrdusmärki, "
|
||||
"atribuudu väärtus on puudu"
|
||||
|
||||
#: ../glib/gmarkup.c:1794
|
||||
#: glib/gmarkup.c:1794
|
||||
msgid "Document ended unexpectedly while inside an attribute value"
|
||||
msgstr "Dokument lõppes ootamatult keset attribuudi väärtust"
|
||||
|
||||
#: ../glib/gmarkup.c:1809
|
||||
#: glib/gmarkup.c:1809
|
||||
#, 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:1815
|
||||
#: glib/gmarkup.c:1815
|
||||
msgid "Document ended unexpectedly inside a comment or processing instruction"
|
||||
msgstr "Dokument lõppes ootamatult kommentaaride või töötlemis juhiste sees"
|
||||
|
||||
#: ../glib/gshell.c:73
|
||||
#: glib/gshell.c:73
|
||||
#, c-format
|
||||
msgid "Quoted text doesn't begin with a quotation mark"
|
||||
msgstr "Tsiteeritav tekst ei alga jutumärgiga"
|
||||
|
||||
#: ../glib/gshell.c:163
|
||||
#: glib/gshell.c:163
|
||||
#, 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:541
|
||||
#: glib/gshell.c:541
|
||||
#, 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:548
|
||||
#: glib/gshell.c:548
|
||||
#, 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:560
|
||||
#: glib/gshell.c:560
|
||||
#, c-format
|
||||
msgid "Text was empty (or contained only whitespace)"
|
||||
msgstr "Tekst puudus (või sisaldas ainult tühja ruumi)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:276
|
||||
#: glib/gspawn-win32.c:276
|
||||
#, c-format
|
||||
msgid "Failed to read data from child process"
|
||||
msgstr "Tõrge andmete lugemisel alamprotsessilt"
|
||||
|
||||
#: ../glib/gspawn-win32.c:291 ../glib/gspawn.c:1364
|
||||
#: glib/gspawn-win32.c:291 glib/gspawn.c:1364
|
||||
#, c-format
|
||||
msgid "Failed to create pipe for communicating with child process (%s)"
|
||||
msgstr "Tõrge toru loomisel alamprotsessiga suhtlemiseks (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:329 ../glib/gspawn.c:1028
|
||||
#: glib/gspawn-win32.c:329 glib/gspawn.c:1028
|
||||
#, c-format
|
||||
msgid "Failed to read from child pipe (%s)"
|
||||
msgstr "Tõrge alamprotsessi torust lugemisel (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:355 ../glib/gspawn.c:1233
|
||||
#: glib/gspawn-win32.c:355 glib/gspawn.c:1233
|
||||
#, c-format
|
||||
msgid "Failed to change to directory '%s' (%s)"
|
||||
msgstr "Tõrge kataloogi '%s' muutmisel (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:361 ../glib/gspawn-win32.c:581
|
||||
#: glib/gspawn-win32.c:361 glib/gspawn-win32.c:581
|
||||
#, c-format
|
||||
msgid "Failed to execute child process (%s)"
|
||||
msgstr "Tõrge alamprotsessi käivitamisel (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:471 ../glib/gspawn-win32.c:527
|
||||
#: glib/gspawn-win32.c:471 glib/gspawn-win32.c:527
|
||||
#, c-format
|
||||
msgid "Invalid program name: %s"
|
||||
msgstr "Vigane programminimi: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:481 ../glib/gspawn-win32.c:537
|
||||
#: ../glib/gspawn-win32.c:780 ../glib/gspawn-win32.c:835
|
||||
#: ../glib/gspawn-win32.c:1370
|
||||
#: glib/gspawn-win32.c:481 glib/gspawn-win32.c:537 glib/gspawn-win32.c:780
|
||||
#: glib/gspawn-win32.c:835 glib/gspawn-win32.c:1370
|
||||
#, c-format
|
||||
msgid "Invalid string in argument vector at %d: %s"
|
||||
msgstr "Vigane string argumendivektoris %d: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:492 ../glib/gspawn-win32.c:548
|
||||
#: ../glib/gspawn-win32.c:794 ../glib/gspawn-win32.c:848
|
||||
#: ../glib/gspawn-win32.c:1403
|
||||
#: glib/gspawn-win32.c:492 glib/gspawn-win32.c:548 glib/gspawn-win32.c:794
|
||||
#: glib/gspawn-win32.c:848 glib/gspawn-win32.c:1403
|
||||
#, c-format
|
||||
msgid "Invalid string in environment: %s"
|
||||
msgstr "Vigane string keskkonnamuutujates: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:776 ../glib/gspawn-win32.c:831
|
||||
#: ../glib/gspawn-win32.c:1351
|
||||
#: glib/gspawn-win32.c:776 glib/gspawn-win32.c:831 glib/gspawn-win32.c:1351
|
||||
#, c-format
|
||||
msgid "Invalid working directory: %s"
|
||||
msgstr "Vigane töökataloog: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:890
|
||||
#: glib/gspawn-win32.c:890
|
||||
#, c-format
|
||||
msgid "Failed to execute helper program (%s)"
|
||||
msgstr "Tõrge abiprogrammi käivitamisel (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:1090
|
||||
#: glib/gspawn-win32.c:1090
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Unexpected error in g_io_channel_win32_poll() reading data from a child "
|
||||
"process"
|
||||
@ -505,127 +514,133 @@ msgstr ""
|
||||
"Ootamatu viga, kui g_io_channel_win32_poll() funktsioon luges "
|
||||
"lapsprotsessilt andmeid"
|
||||
|
||||
#: ../glib/gspawn.c:168
|
||||
#: glib/gspawn.c:168
|
||||
#, c-format
|
||||
msgid "Failed to read data from child process (%s)"
|
||||
msgstr "Tõrge andmete lugemisel alamprotsessilt (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:300
|
||||
#: glib/gspawn.c:300
|
||||
#, 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:383
|
||||
#: glib/gspawn.c:383
|
||||
#, c-format
|
||||
msgid "Unexpected error in waitpid() (%s)"
|
||||
msgstr "Ootamatu viga funktsioonis waitpid() (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1093
|
||||
#: glib/gspawn.c:1093
|
||||
#, c-format
|
||||
msgid "Failed to fork (%s)"
|
||||
msgstr "Viga poolitamisel funktsiooniga fork() (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1243
|
||||
#: glib/gspawn.c:1243
|
||||
#, c-format
|
||||
msgid "Failed to execute child process \"%s\" (%s)"
|
||||
msgstr "Tõrge alamprotsessi \"%s\" käivitamisel (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1253
|
||||
#: glib/gspawn.c:1253
|
||||
#, 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:1262
|
||||
#: glib/gspawn.c:1262
|
||||
#, c-format
|
||||
msgid "Failed to fork child process (%s)"
|
||||
msgstr "Tõrge alamprotsessi poolitamisel funktsiooniga fork() (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1270
|
||||
#: glib/gspawn.c:1270
|
||||
#, c-format
|
||||
msgid "Unknown error executing child process \"%s\""
|
||||
msgstr "Tundmatu viga alamprotsessi \"%s\" käivitamisel"
|
||||
|
||||
#: ../glib/gspawn.c:1292
|
||||
#: glib/gspawn.c:1292
|
||||
#, 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:1017
|
||||
#: glib/gutf8.c:1017
|
||||
#, c-format
|
||||
msgid "Character out of range for UTF-8"
|
||||
msgstr "Märk on väljaspool UTF-8 ulatust"
|
||||
|
||||
#: ../glib/gutf8.c:1111 ../glib/gutf8.c:1120 ../glib/gutf8.c:1252
|
||||
#: ../glib/gutf8.c:1261 ../glib/gutf8.c:1402 ../glib/gutf8.c:1498
|
||||
#: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 glib/gutf8.c:1261
|
||||
#: glib/gutf8.c:1402 glib/gutf8.c:1498
|
||||
#, c-format
|
||||
msgid "Invalid sequence in conversion input"
|
||||
msgstr "Vigane jada sisendi teisendamisel"
|
||||
|
||||
#: ../glib/gutf8.c:1413 ../glib/gutf8.c:1509
|
||||
#: glib/gutf8.c:1413 glib/gutf8.c:1509
|
||||
#, c-format
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Märk on väljaspool UTF-16 ulatust"
|
||||
|
||||
#: ../glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Kasutamine:"
|
||||
|
||||
#: ../glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[VÕTI...]"
|
||||
|
||||
#: ../glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Abiteabe võtmed:"
|
||||
|
||||
#: ../glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Abiteabe võtmete näitamine"
|
||||
|
||||
#: ../glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Kõikide abiteabe võtmete näitamine"
|
||||
|
||||
#: ../glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Rakenduse võtmed:"
|
||||
|
||||
#: ../glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, 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:663
|
||||
#: glib/goption.c:679
|
||||
#, 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:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Viga võtme parsimisel: %s"
|
||||
|
||||
#: ../glib/goption.c:959 ../glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Puuduv argument %s'i jaoks"
|
||||
|
||||
#: ../glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Tundmatu võti %s"
|
||||
|
||||
#: ../glib/gkeyfile.c:339
|
||||
#: glib/gkeyfile.c:339
|
||||
#, c-format
|
||||
msgid "Valid key file could not be found in data dirs"
|
||||
msgstr "Sobivat võtmefaili ei leitud andmekataloogidest"
|
||||
|
||||
#: ../glib/gkeyfile.c:374
|
||||
#: glib/gkeyfile.c:374
|
||||
#, c-format
|
||||
msgid "Not a regular file"
|
||||
msgstr "Pole tavaline fail"
|
||||
|
||||
#: ../glib/gkeyfile.c:382
|
||||
#: glib/gkeyfile.c:382
|
||||
#, c-format
|
||||
msgid "File is empty"
|
||||
msgstr "Fail on tühi"
|
||||
|
||||
#: ../glib/gkeyfile.c:697
|
||||
#: glib/gkeyfile.c:697
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Key file contains line '%s' which is not a key-value pair, group, or comment"
|
||||
@ -633,39 +648,40 @@ msgstr ""
|
||||
"Võtmefail sisaldab rida '%s', mis ei ole võti-väärtus paar, grupp ega ka "
|
||||
"kommentaar"
|
||||
|
||||
#: ../glib/gkeyfile.c:765
|
||||
#: glib/gkeyfile.c:765
|
||||
#, c-format
|
||||
msgid "Key file does not start with a group"
|
||||
msgstr "Võtmefail ei alga grupiga"
|
||||
|
||||
#: ../glib/gkeyfile.c:808
|
||||
#: glib/gkeyfile.c:808
|
||||
#, c-format
|
||||
msgid "Key file contains unsupported encoding '%s'"
|
||||
msgstr "Võtmefail sisaldab toetamata kodeeringut '%s'"
|
||||
|
||||
#: ../glib/gkeyfile.c:1017 ../glib/gkeyfile.c:1176 ../glib/gkeyfile.c:2177
|
||||
#: ../glib/gkeyfile.c:2242 ../glib/gkeyfile.c:2361 ../glib/gkeyfile.c:2497
|
||||
#: ../glib/gkeyfile.c:2649 ../glib/gkeyfile.c:2823 ../glib/gkeyfile.c:2880
|
||||
#: glib/gkeyfile.c:1017 glib/gkeyfile.c:1176 glib/gkeyfile.c:2177
|
||||
#: glib/gkeyfile.c:2242 glib/gkeyfile.c:2361 glib/gkeyfile.c:2497
|
||||
#: glib/gkeyfile.c:2649 glib/gkeyfile.c:2823 glib/gkeyfile.c:2880
|
||||
#, c-format
|
||||
msgid "Key file does not have group '%s'"
|
||||
msgstr "Võtmefail ei sisalda gruppi '%s'"
|
||||
|
||||
#: ../glib/gkeyfile.c:1188
|
||||
#: glib/gkeyfile.c:1188
|
||||
#, c-format
|
||||
msgid "Key file does not have key '%s'"
|
||||
msgstr "Võtmefail ei sisalda võtit '%s'"
|
||||
|
||||
#: ../glib/gkeyfile.c:1289 ../glib/gkeyfile.c:1398
|
||||
#: glib/gkeyfile.c:1289 glib/gkeyfile.c:1398
|
||||
#, c-format
|
||||
msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
|
||||
msgstr ""
|
||||
"Võtmefail sisaldab võtit '%s', mille väärtus '%s' pole UTF-8 kodeeringus"
|
||||
|
||||
#: ../glib/gkeyfile.c:1307 ../glib/gkeyfile.c:1416 ../glib/gkeyfile.c:1788
|
||||
#: glib/gkeyfile.c:1307 glib/gkeyfile.c:1416 glib/gkeyfile.c:1788
|
||||
#, c-format
|
||||
msgid "Key file contains key '%s' which has value that cannot be interpreted."
|
||||
msgstr "Võtmefail sisaldab võtit '%s', mille väärtus pole võimalik kasutada."
|
||||
|
||||
#: ../glib/gkeyfile.c:2004
|
||||
#: glib/gkeyfile.c:2004
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Key file contains key '%s' in group '%s' which has value that cannot be "
|
||||
@ -674,31 +690,32 @@ msgstr ""
|
||||
"Võtmefail sisaldab võtit '%s' grupis '%s' aga selle väärtust pole võimalik "
|
||||
"kasutada"
|
||||
|
||||
#: ../glib/gkeyfile.c:2192 ../glib/gkeyfile.c:2376 ../glib/gkeyfile.c:2891
|
||||
#: glib/gkeyfile.c:2192 glib/gkeyfile.c:2376 glib/gkeyfile.c:2891
|
||||
#, c-format
|
||||
msgid "Key file does not have key '%s' in group '%s'"
|
||||
msgstr "Võtmefail ei sisalda võtit '%s' grupis '%s'"
|
||||
|
||||
#: ../glib/gkeyfile.c:3067
|
||||
#: glib/gkeyfile.c:3067
|
||||
#, c-format
|
||||
msgid "Key file contains escape character at end of line"
|
||||
msgstr "Võtmefail sisaldab rea lõpus paomärki"
|
||||
|
||||
#: ../glib/gkeyfile.c:3089
|
||||
#: glib/gkeyfile.c:3089
|
||||
#, c-format
|
||||
msgid "Key file contains invalid escape sequence '%s'"
|
||||
msgstr "Võtmefail sisaldab vigast paojada '%s'"
|
||||
|
||||
#: ../glib/gkeyfile.c:3230
|
||||
#: glib/gkeyfile.c:3230
|
||||
#, 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:3240
|
||||
#: glib/gkeyfile.c:3240
|
||||
#, c-format
|
||||
msgid "Integer value '%s' out of range"
|
||||
msgstr "Täisarvu väärtus '%s' on väljaspool lubatud piire"
|
||||
|
||||
#: ../glib/gkeyfile.c:3270
|
||||
#: glib/gkeyfile.c:3270
|
||||
#, c-format
|
||||
msgid "Value '%s' cannot be interpreted as a boolean."
|
||||
msgstr "Väärtust '%s' pole võimalik tõeväärtusena kasutada."
|
||||
|
24
po/eu.po
24
po/eu.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: eu\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-02-21 15:21+0100\n"
|
||||
"Last-Translator: Iñaki Larrañaga <dooteo@euskalgnu.org>\n"
|
||||
"Language-Team: Basque <itzulpena@euskalgnu.org>\n"
|
||||
@ -596,51 +596,51 @@ msgstr "Sekuentzia baliogabea bihurketa-sarreran"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Karakterea honako barrutitik kanpo UTF-16 formaturako"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Erabilera:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[AUKERA...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Laguntzako aukerak:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Erakutsi laguntzako aukerak"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Erakutsi laguntzako aukera guztiak"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Aplikazio-aukerak:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Ezin da '%2$s'(r)en '%1$s' osoko balioa analizatu"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "%2$s(r)en '%1$s' osoko balioa barrutitik kanpo"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Errorea %s aukera analizatzean"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "%s(e)ko argumentua falta da"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "%s aukera ezezaguna"
|
||||
|
24
po/fa.po
24
po/fa.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2005-03-13 11:36+0330\n"
|
||||
"Last-Translator: Hamed Malek <hamed@farsiweb.info>\n"
|
||||
"Language-Team: Persian <farsi@lists.sharif.edu>\n"
|
||||
@ -575,51 +575,51 @@ msgstr "دنبالهی نامعتبر در ورودی تبدیل"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "نویسهی خارج از محدوده برای UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "طریقهی استفاده:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[گزینه...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "گزینههای راهنما:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "نمایش گزینههای راهنما"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "نمایش همهی گزینههای راهنما"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "گزینههای برنامه:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, fuzzy, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "نمیتوان مقدار صحیح «%s» را برای --%s تجزیه کرد"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "مقدار صحیح «%s» برای %s خارج از محدوده است"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "خطا در حین تبدیل: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "گزینه نامعلوم %s"
|
||||
|
24
po/fi.po
24
po/fi.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2005-12-26 11:04+0200\n"
|
||||
"Last-Translator: Ilkka Tuohela <hile@iki.fi>\n"
|
||||
"Language-Team: Finnish <gnome-fi-laatu@lists.sourceforge.net>\n"
|
||||
@ -591,51 +591,51 @@ msgstr "Virheellinen sarja muunnettavassa syötteessä"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Merkki on sallitun UTF-16-välin ulkopuolella"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Käyttö:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[VALITSIN...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Ohjevalitsimet:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Näytä ohjevalitsimet"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Näytä kaikki ohjevalitsimet"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Sovelluksen valitsimet:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Kokonaislukua \"%s\" ei voida tulkita kohteelle %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Kokonaisluku \"%s\" kohteelle %s on ylittää sallitun alueen"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Virhe käsiteltäessä valitsinta %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Puuttuva argumentti kohteelle %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Tuntematon optio %s"
|
||||
|
24
po/fr.po
24
po/fr.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.8.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-02-25 11:48+0100\n"
|
||||
"Last-Translator: Christophe Merlet (RedFox) <redfox@redfoxcenter.org>\n"
|
||||
"Language-Team: GNOME French Team <gnomefr@traduc.org>\n"
|
||||
@ -608,51 +608,51 @@ msgstr "Séquence non valide dans l'entrée du convertisseur"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Caractère hors des limites UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Usage :"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPTION...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Options de l'aide :"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Afficher les options de l'aide"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Afficher toutes les options de l'aide"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Options de l'application :"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Impossible d'analyser la valeur entière « %s » pour %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "La valeur entière « %s » pour %s est hors de limites"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Erreur lors de l'analyse de l'option %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Argument manquant pour %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Option inconnue %s"
|
||||
|
24
po/ga.po
24
po/ga.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2004-03-08 21:28+0000\n"
|
||||
"Last-Translator: Alastair McKinstry <mckinstry@debian.org>\n"
|
||||
"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"
|
||||
@ -539,51 +539,51 @@ msgstr ""
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Teip ar tiontaithe: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr ""
|
||||
|
24
po/gl.po
24
po/gl.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gl\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2005-12-18 13:15+0100\n"
|
||||
"Last-Translator: Ignacio Casal Quinteiro <nacho.resa@gmail.com>\n"
|
||||
"Language-Team: Galego\n"
|
||||
@ -591,51 +591,51 @@ msgstr "Secuencia non válida na entrada da conversión"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Caracter fóra de rango para UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Uso:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPCIÓN...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Opcións de axuda:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Mostrar opcións de axuda"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Mostrar todas as opcións de axuda"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Opcións da aplicación:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Non se pode interpretar o valor enteiro '%s' para %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "O valor enteiro '%s' para %s está fora de rango"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Erro analizando a opción %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Argumento perdido por %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Opción %s descoñecida"
|
||||
|
24
po/gu.po
24
po/gu.po
@ -4,7 +4,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD.gu\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-09 10:34+0530\n"
|
||||
"Last-Translator: Ankit Patel <ankit644@yahoo.com>\n"
|
||||
"Language-Team: Gujarati <indianoss-gujarati@lists.sourceforge.net>\n"
|
||||
@ -560,51 +560,51 @@ msgstr "પરીવર્તિત ઈનપુટની અંદર અયો
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "UTF-૧૬ ની સીમાની બહાર નો અક્ષર"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "વપરાશ:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPTION...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "મદદ વિકલ્પો:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "મદદ વિકલ્પો બતાવો"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "બધા મદદ વિકલ્પો બતાવો"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "કાર્યક્રમ વિકલ્પો:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "પૂર્ણાંક કિંમત '%s' ને %s માટે પદચ્છેદન કરી શકતા નથી"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "પૂર્ણાંક કિંમત '%s' એ %s માટે મર્યાદા બહાર છે"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "ભૂલ પદચ્છેદન વિકલ્પ %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "%s માટેની દલીલ ગુમ થયેલ છે"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "અજ્ઞાત વિકલ્પ %s"
|
||||
|
718
po/he.po
718
po/he.po
@ -12,14 +12,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD.he\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
# *** This file should not be translated to hebrew, please only copy the english text ***
|
||||
# *** Old hebrew ranslation is commented for backup sake ***
|
||||
@ -580,51 +580,51 @@ msgstr "Invalid sequence in conversion input"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Character out of range for UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Usage:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPTION...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Help Options:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Show help options"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Show all help options"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Application Options:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Cannot parse integer value '%s' for %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Integer value '%s' for %s out of range"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Error parsing option %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Missing·argument·for·%s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Unknown option %s"
|
||||
@ -739,695 +739,3 @@ msgstr "Value '%s' cannot be interpreted as a boolean."
|
||||
|
||||
#~ msgid "Conversion from character set `%s' to `%s' is not supported"
|
||||
#~ msgstr "Conversion from character set `%s' to `%s' is not supported"
|
||||
|
||||
#
|
||||
##: glib/gconvert.c:408 glib/gconvert.c:486 glib/giochannel.c:1150
|
||||
##, c-format
|
||||
#msgid "Conversion from character set '%s' to '%s' is not supported"
|
||||
#msgstr "אין תמיכה בהמרה ממערך תוים '%s' ל '%s'"
|
||||
#
|
||||
##: glib/gconvert.c:412 glib/gconvert.c:490
|
||||
##, fuzzy, c-format
|
||||
#msgid "Could not open converter from '%s' to '%s'"
|
||||
#msgstr "לא ניתן לפתוח ממיר מ-'%s' ל-'%s': %s"
|
||||
#
|
||||
##: glib/gconvert.c:606 glib/gconvert.c:995 glib/giochannel.c:1322
|
||||
##: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943
|
||||
##: glib/gutf8.c:1392
|
||||
##, c-format
|
||||
#msgid "Invalid byte sequence in conversion input"
|
||||
#msgstr "רצף תווים לא חוקי בקלט המיועד להמרה"
|
||||
#
|
||||
##: glib/gconvert.c:612 glib/gconvert.c:922 glib/giochannel.c:1329
|
||||
##: glib/giochannel.c:2218
|
||||
##, c-format
|
||||
#msgid "Error during conversion: %s"
|
||||
#msgstr "שגיאה בזמן המרה: %s"
|
||||
#
|
||||
##: glib/gconvert.c:647 glib/gutf8.c:939 glib/gutf8.c:1143 glib/gutf8.c:1284
|
||||
##: glib/gutf8.c:1388
|
||||
##, c-format
|
||||
#msgid "Partial character sequence at end of input"
|
||||
#msgstr "רצף תווים חלקי בסוף הקלט"
|
||||
#
|
||||
##: glib/gconvert.c:897
|
||||
##, c-format
|
||||
#msgid "Cannot convert fallback '%s' to codeset '%s'"
|
||||
#msgstr "לא ניתן להמיר ברירת מחדל '%s' למערך תווים '%s'"
|
||||
#
|
||||
##: glib/gconvert.c:1706
|
||||
##, fuzzy, c-format
|
||||
#msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
|
||||
#msgstr "הכתובת '%s' היא לא אבסולוטית בשימוש בתור מזהה קובץ"
|
||||
#
|
||||
##: glib/gconvert.c:1716
|
||||
##, c-format
|
||||
#msgid "The local file URI '%s' may not include a '#'"
|
||||
#msgstr "הכתובת של קובץ מקומי '%s' אינה יכולה להכיל '#'"
|
||||
#
|
||||
##: glib/gconvert.c:1733
|
||||
##, c-format
|
||||
#msgid "The URI '%s' is invalid"
|
||||
#msgstr "הכתובת '%s' אינה תקפה"
|
||||
#
|
||||
##: glib/gconvert.c:1745
|
||||
##, c-format
|
||||
#msgid "The hostname of the URI '%s' is invalid"
|
||||
#msgstr "שם המארח של הכתובת '%s' אינו תקף"
|
||||
#
|
||||
##: glib/gconvert.c:1761
|
||||
##, c-format
|
||||
#msgid "The URI '%s' contains invalidly escaped characters"
|
||||
#msgstr "הכתובת '%s' מכילה תווים ללא תוי חילוף תקפים"
|
||||
#
|
||||
##: glib/gconvert.c:1855
|
||||
##, c-format
|
||||
#msgid "The pathname '%s' is not an absolute path"
|
||||
#msgstr "שם הנתיב '%s' אינו נתיב מוחלט"
|
||||
#
|
||||
##: glib/gconvert.c:1865
|
||||
##, c-format
|
||||
#msgid "Invalid hostname"
|
||||
#msgstr "שם מחשב מארח לא תקף"
|
||||
#
|
||||
##: glib/gdir.c:121 glib/gdir.c:141
|
||||
##, c-format
|
||||
#msgid "Error opening directory '%s': %s"
|
||||
#msgstr "שגיאה בפתיחת סיפרייה '%s': %s"
|
||||
#
|
||||
##: glib/gfileutils.c:576 glib/gfileutils.c:649
|
||||
##, c-format
|
||||
#msgid "Could not allocate %lu bytes to read file \"%s\""
|
||||
#msgstr "לא ניתן להקצות %lu בתים עבור קריאת קובץ \"%s\""
|
||||
#
|
||||
##: glib/gfileutils.c:591
|
||||
##, c-format
|
||||
#msgid "Error reading file '%s': %s"
|
||||
#msgstr "שגיאה בקריאת קובץ '%s': %s"
|
||||
#
|
||||
##: glib/gfileutils.c:673
|
||||
##, c-format
|
||||
#msgid "Failed to read from file '%s': %s"
|
||||
#msgstr "כשלון בקריאה מקובץ %s': %s"
|
||||
#
|
||||
##: glib/gfileutils.c:724 glib/gfileutils.c:811
|
||||
##, c-format
|
||||
#msgid "Failed to open file '%s': %s"
|
||||
#msgstr "כשלון בפתיחת קובץ %s': %s"
|
||||
#
|
||||
##: glib/gfileutils.c:741 glib/gmappedfile.c:133
|
||||
##, c-format
|
||||
#msgid "Failed to get attributes of file '%s': fstat() failed: %s"
|
||||
#msgstr "כשלון בקבלת מאפייני קובץ '%s': fstat() נכשל: %s"
|
||||
#
|
||||
##: glib/gfileutils.c:775
|
||||
##, c-format
|
||||
#msgid "Failed to open file '%s': fdopen() failed: %s"
|
||||
#msgstr "כשלון בפתיחת קובץ '%s': fdopen() נכשל: %s"
|
||||
#
|
||||
##: glib/gfileutils.c:909
|
||||
##, fuzzy, c-format
|
||||
#msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
|
||||
#msgstr "כשלון בפתיחת קובץ '%s': fdopen() נכשל: %s"
|
||||
#
|
||||
##: glib/gfileutils.c:950 glib/gfileutils.c:1415
|
||||
##, c-format
|
||||
#msgid "Failed to create file '%s': %s"
|
||||
#msgstr "כשלון ביצירת קובץ '%s': %s"
|
||||
#
|
||||
##: glib/gfileutils.c:964
|
||||
##, fuzzy, c-format
|
||||
#msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
|
||||
#msgstr "כשלון בפתיחת קובץ '%s': fdopen() נכשל: %s"
|
||||
#
|
||||
##: glib/gfileutils.c:989
|
||||
##, fuzzy, c-format
|
||||
#msgid "Failed to write file '%s': fwrite() failed: %s"
|
||||
#msgstr "כשלון בפתיחת קובץ '%s': fdopen() נכשל: %s"
|
||||
#
|
||||
##: glib/gfileutils.c:1008
|
||||
##, fuzzy, c-format
|
||||
#msgid "Failed to close file '%s': fclose() failed: %s"
|
||||
#msgstr "כשלון בפתיחת קובץ '%s': fdopen() נכשל: %s"
|
||||
#
|
||||
##: glib/gfileutils.c:1126
|
||||
##, c-format
|
||||
#msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/gfileutils.c:1376
|
||||
##, c-format
|
||||
#msgid "Template '%s' invalid, should not contain a '%s'"
|
||||
#msgstr "תבנית '%s' אינה תקפה, אינה צריכה להכיל '%s'"
|
||||
#
|
||||
##: glib/gfileutils.c:1390
|
||||
##, c-format
|
||||
#msgid "Template '%s' doesn't end with XXXXXX"
|
||||
#msgstr "תבנית '%s' אינה מסתיימת ב-XXXXXX"
|
||||
#
|
||||
##: glib/gfileutils.c:1865
|
||||
##, c-format
|
||||
#msgid "Failed to read the symbolic link '%s': %s"
|
||||
#msgstr "נכשל בקריאת קישור סמלי '%s': %s"
|
||||
#
|
||||
##: glib/gfileutils.c:1886
|
||||
##, c-format
|
||||
#msgid "Symbolic links not supported"
|
||||
#msgstr "קישורים סמליים אינם נתמכים"
|
||||
#
|
||||
##: glib/giochannel.c:1154
|
||||
##, fuzzy, c-format
|
||||
#msgid "Could not open converter from '%s' to '%s': %s"
|
||||
#msgstr "לא ניתן לפתוח ממיר מ-`%s' ל-`%s': %s"
|
||||
#
|
||||
##: glib/giochannel.c:1499
|
||||
##, c-format
|
||||
#msgid "Can't do a raw read in g_io_channel_read_line_string"
|
||||
#msgstr "לא ניתן לבצע קריאה ב-g_io_channel_read_line_string"
|
||||
#
|
||||
##: glib/giochannel.c:1546 glib/giochannel.c:1803 glib/giochannel.c:1889
|
||||
##, c-format
|
||||
#msgid "Leftover unconverted data in read buffer"
|
||||
#msgstr "שאריות מידע לא מומר בחוצץ הקריאה"
|
||||
#
|
||||
##: glib/giochannel.c:1626 glib/giochannel.c:1703
|
||||
##, c-format
|
||||
#msgid "Channel terminates in a partial character"
|
||||
#msgstr "ערוץ מסתיים בתו חלקי"
|
||||
#
|
||||
##: glib/giochannel.c:1689
|
||||
##, c-format
|
||||
#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
|
||||
##, fuzzy, c-format
|
||||
#msgid "Failed to open file '%s': open() failed: %s"
|
||||
#msgstr "כשלון בפתיחת קובץ '%s': fdopen() נכשל: %s"
|
||||
#
|
||||
##: glib/gmappedfile.c:193
|
||||
##, fuzzy, c-format
|
||||
#msgid "Failed to map file '%s': mmap() failed: %s"
|
||||
#msgstr "כשלון בפתיחת קובץ '%s': fdopen() נכשל: %s"
|
||||
#
|
||||
##: glib/gmarkup.c:232
|
||||
##, c-format
|
||||
#msgid "Error on line %d char %d: %s"
|
||||
#msgstr "שגיאה בשורה %d תו %d: %s"
|
||||
#
|
||||
##: glib/gmarkup.c:330
|
||||
##, c-format
|
||||
#msgid "Error on line %d: %s"
|
||||
#msgstr "שגיאה בשורה %d: %s"
|
||||
#
|
||||
##: glib/gmarkup.c:434
|
||||
#msgid ""
|
||||
#"Empty entity '&;' seen; valid entities are: & " < > '"
|
||||
#msgstr "ישות '&;' ריקה נמצאה; ישויות חוקיות הן: & " < > '"
|
||||
#
|
||||
##: glib/gmarkup.c:444
|
||||
##, 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' אינו חוקי בתחילת שם ישות; התו & מתחיל ישות; אם תו & אינו אמור להוות "
|
||||
#"ישות, חלף אותו בתור &"
|
||||
#
|
||||
##: glib/gmarkup.c:478
|
||||
##, c-format
|
||||
#msgid "Character '%s' is not valid inside an entity name"
|
||||
#msgstr "תו '%s' אינו תקף בתוך שם ישות"
|
||||
#
|
||||
##: glib/gmarkup.c:515
|
||||
##, c-format
|
||||
#msgid "Entity name '%s' is not known"
|
||||
#msgstr "שם ישות '%s' אינו ידוע"
|
||||
#
|
||||
##: glib/gmarkup.c:526
|
||||
#msgid ""
|
||||
#"Entity did not end with a semicolon; most likely you used an ampersand "
|
||||
#"character without intending to start an entity - escape ampersand as &"
|
||||
#msgstr ""
|
||||
#"ישות לא הסתיימה בנקודה פסיק; כנראה השתמשת ב-& ללא כוונה להתחיל ישות - חלף את "
|
||||
#"& ב-&"
|
||||
#
|
||||
##: glib/gmarkup.c:579
|
||||
##, 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 ""
|
||||
#"כשלון בפירוק '%s', אשר היה אמור להיות ספרה בתוך ייחוס תו (ê לדוגמא) - "
|
||||
#"יכול להיות שהספרה גדולה מדי"
|
||||
#
|
||||
##: glib/gmarkup.c:604
|
||||
##, fuzzy, c-format
|
||||
#msgid "Character reference '%-.*s' does not encode a permitted character"
|
||||
#msgstr "יחוס תו '%s' אינו מסמל תו מורשה"
|
||||
#
|
||||
##: glib/gmarkup.c:619
|
||||
#msgid "Empty character reference; should include a digit such as dž"
|
||||
#msgstr "יחוס תו ריק; אמור להכיל מספר כגון dž"
|
||||
#
|
||||
##: glib/gmarkup.c:629
|
||||
#msgid ""
|
||||
#"Character reference did not end with a semicolon; most likely you used an "
|
||||
#"ampersand character without intending to start an entity - escape ampersand "
|
||||
#"as &"
|
||||
#msgstr ""
|
||||
#"יחוס תו אינו הסתיים בנקודה פסיק; כנראה השתמשת בתו & ללא כוונה להתחיל ישות - "
|
||||
#"חלף & בתור &"
|
||||
#
|
||||
##: glib/gmarkup.c:715
|
||||
#msgid "Unfinished entity reference"
|
||||
#msgstr "יחוס ישות לא גמור"
|
||||
#
|
||||
##: glib/gmarkup.c:721
|
||||
#msgid "Unfinished character reference"
|
||||
#msgstr "יחוס תו לא גמור"
|
||||
#
|
||||
##: glib/gmarkup.c:964 glib/gmarkup.c:992 glib/gmarkup.c:1023
|
||||
#msgid "Invalid UTF-8 encoded text"
|
||||
#msgstr "קידוד מלל לא תקף ב-UTF-8"
|
||||
#
|
||||
##: glib/gmarkup.c:1059
|
||||
#msgid "Document must begin with an element (e.g. <book>)"
|
||||
#msgstr "מסמך חייב להתחיל באלמנט (כגון: <book>)"
|
||||
#
|
||||
##: glib/gmarkup.c:1099
|
||||
##, c-format
|
||||
#msgid ""
|
||||
#"'%s' is not a valid character following a '<' character; it may not begin an "
|
||||
#"element name"
|
||||
#msgstr "'%s' אינו תו תקף אחרי תו '<'; הוא אינו יכול להתחיל שם אלמנט"
|
||||
#
|
||||
##: glib/gmarkup.c:1163
|
||||
##, c-format
|
||||
#msgid ""
|
||||
#"Odd character '%s', expected a '>' character to end the start tag of element "
|
||||
#"'%s'"
|
||||
#msgstr "תו מוזר '%s', מצפה לתו '>' כדי לסיים את התחלת אלמנט '%s'"
|
||||
#
|
||||
##: glib/gmarkup.c:1252
|
||||
##, c-format
|
||||
#msgid ""
|
||||
#"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
|
||||
#msgstr "תו מוזר '%s', מצפה ל-'=' לאחר שם מאפיין '%s' של אלמנט '%s'"
|
||||
#
|
||||
##: glib/gmarkup.c:1294
|
||||
##, 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', או מאפיין "
|
||||
#"אופצינלי; כנראה השתמשת בתו לא תקף בשם המאפיין"
|
||||
#
|
||||
##: glib/gmarkup.c:1383
|
||||
##, 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:1528
|
||||
##, 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:1568
|
||||
##, 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:1579
|
||||
##, c-format
|
||||
#msgid "Element '%s' was closed, no element is currently open"
|
||||
#msgstr "אלמנט '%s' נסגר, אין אלמנט פתוח כרגע"
|
||||
#
|
||||
##: glib/gmarkup.c:1588
|
||||
##, c-format
|
||||
#msgid "Element '%s' was closed, but the currently open element is '%s'"
|
||||
#msgstr "אלמנט '%s' נסגר, אך האלמנט הפתוח כרגע הוא '%s'"
|
||||
#
|
||||
##: glib/gmarkup.c:1735
|
||||
#msgid "Document was empty or contained only whitespace"
|
||||
#msgstr "המסמך היה ריק או הכיל שטח לבן בלבד"
|
||||
#
|
||||
##: glib/gmarkup.c:1749
|
||||
#msgid "Document ended unexpectedly just after an open angle bracket '<'"
|
||||
#msgstr "המסמך הסתיים בצורה לא צפויה לאחר פתיחת '<'"
|
||||
#
|
||||
##: glib/gmarkup.c:1757 glib/gmarkup.c:1801
|
||||
##, c-format
|
||||
#msgid ""
|
||||
#"Document ended unexpectedly with elements still open - '%s' was the last "
|
||||
#"element opened"
|
||||
#msgstr "המסמך הסתיים בצורה לא צפויה כאשר אלמנט '%s' היה האלמנט הפתוח האחרון"
|
||||
#
|
||||
##: glib/gmarkup.c:1765
|
||||
##, c-format
|
||||
#msgid ""
|
||||
#"Document ended unexpectedly, expected to see a close angle bracket ending "
|
||||
#"the tag <%s/>"
|
||||
#msgstr "המסמך הסתיים בצורה לא צפויה, מצפה לתו 'גדול מ' לסגירת תג <%s/>"
|
||||
#
|
||||
##: glib/gmarkup.c:1771
|
||||
#msgid "Document ended unexpectedly inside an element name"
|
||||
#msgstr "המסמך הסתיים בצורה לא צפויה בתוך שם אלמנט"
|
||||
#
|
||||
##: glib/gmarkup.c:1776
|
||||
#msgid "Document ended unexpectedly inside an attribute name"
|
||||
#msgstr "המסמך הסתיים בצורה לא צפויה בתוך שם מאפיין"
|
||||
#
|
||||
##: glib/gmarkup.c:1781
|
||||
#msgid "Document ended unexpectedly inside an element-opening tag."
|
||||
#msgstr "המסמך הסתיים בצורה לא צפויה בתוך תג פתיחת אלמנט"
|
||||
#
|
||||
##: glib/gmarkup.c:1787
|
||||
#msgid ""
|
||||
#"Document ended unexpectedly after the equals sign following an attribute "
|
||||
#"name; no attribute value"
|
||||
#msgstr ""
|
||||
#"המסמך הסתיים בצורה לא צפויה לאחר תו השווה שבא לאחר שם מאפיין; אין ערך למאפיין"
|
||||
#
|
||||
##: glib/gmarkup.c:1794
|
||||
#msgid "Document ended unexpectedly while inside an attribute value"
|
||||
#msgstr "המסמך הסתיים בצורה לא צפויה בתוך ערך מאפיין"
|
||||
#
|
||||
##: glib/gmarkup.c:1809
|
||||
##, c-format
|
||||
#msgid "Document ended unexpectedly inside the close tag for element '%s'"
|
||||
#msgstr "המסמך הסתיים בצורה לא צפויה בתוך תג סגירה לאלמנט '%s'"
|
||||
#
|
||||
##: glib/gmarkup.c:1815
|
||||
#msgid "Document ended unexpectedly inside a comment or processing instruction"
|
||||
#msgstr "המסמך הסתיים בצורה לא צפויה בתוך הערה או הוראת עיבוד"
|
||||
#
|
||||
##: glib/gshell.c:73
|
||||
##, c-format
|
||||
#msgid "Quoted text doesn't begin with a quotation mark"
|
||||
#msgstr "מלל מצוטט אינו מתחיל בגרשיים"
|
||||
#
|
||||
##: glib/gshell.c:163
|
||||
##, c-format
|
||||
#msgid "Unmatched quotation mark in command line or other shell-quoted text"
|
||||
#msgstr "אין גרשיים סוגרות בשורת הפקודה או במלל מעטפת מצוטט"
|
||||
#
|
||||
##: glib/gshell.c:541
|
||||
##, c-format
|
||||
#msgid "Text ended just after a '\\' character. (The text was '%s')"
|
||||
#msgstr "מלל הסתיים מיד לאחר תו '\\'. (המלל היה '%s')"
|
||||
#
|
||||
##: glib/gshell.c:548
|
||||
##, c-format
|
||||
#msgid "Text ended before matching quote was found for %c. (The text was '%s')"
|
||||
#msgstr "מלל הסתיים לפני שגרשיים סוגרות נמצאו עבור %c. (המלל היה '%s')"
|
||||
#
|
||||
##: glib/gshell.c:560
|
||||
##, c-format
|
||||
#msgid "Text was empty (or contained only whitespace)"
|
||||
#msgstr "המלל היה ריק (או הכיל שטח לבן בלבד)"
|
||||
#
|
||||
##: glib/gspawn-win32.c:276
|
||||
##, c-format
|
||||
#msgid "Failed to read data from child process"
|
||||
#msgstr "כשלון בקריאת מידע מתהליך ילד"
|
||||
#
|
||||
##: glib/gspawn-win32.c:291 glib/gspawn.c:1364
|
||||
##, c-format
|
||||
#msgid "Failed to create pipe for communicating with child process (%s)"
|
||||
#msgstr "כשלון ביצירת צינור לתקשורת עם תהליך ילד (%s)"
|
||||
#
|
||||
##: glib/gspawn-win32.c:329 glib/gspawn.c:1028
|
||||
##, c-format
|
||||
#msgid "Failed to read from child pipe (%s)"
|
||||
#msgstr "כשלון בקריאת מידע מצינור ילד (%s)"
|
||||
#
|
||||
##: glib/gspawn-win32.c:355 glib/gspawn.c:1233
|
||||
##, c-format
|
||||
#msgid "Failed to change to directory '%s' (%s)"
|
||||
#msgstr "כשלון בשינוי לסיפרייה '%s' (%s)"
|
||||
#
|
||||
##: glib/gspawn-win32.c:361 glib/gspawn-win32.c:581
|
||||
##, c-format
|
||||
#msgid "Failed to execute child process (%s)"
|
||||
#msgstr "כשלון בהרצת תהליך ילד (%s)"
|
||||
#
|
||||
##: glib/gspawn-win32.c:471 glib/gspawn-win32.c:527
|
||||
##, fuzzy, c-format
|
||||
#msgid "Invalid program name: %s"
|
||||
#msgstr "שם מחשב מארח לא תקף"
|
||||
#
|
||||
##: glib/gspawn-win32.c:481 glib/gspawn-win32.c:537 glib/gspawn-win32.c:780
|
||||
##: glib/gspawn-win32.c:835 glib/gspawn-win32.c:1370
|
||||
##, c-format
|
||||
#msgid "Invalid string in argument vector at %d: %s"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/gspawn-win32.c:492 glib/gspawn-win32.c:548 glib/gspawn-win32.c:794
|
||||
##: glib/gspawn-win32.c:848 glib/gspawn-win32.c:1403
|
||||
##, fuzzy, c-format
|
||||
#msgid "Invalid string in environment: %s"
|
||||
#msgstr "רצף לא תקף בקלט המרה"
|
||||
#
|
||||
##: glib/gspawn-win32.c:776 glib/gspawn-win32.c:831 glib/gspawn-win32.c:1351
|
||||
##, fuzzy, c-format
|
||||
#msgid "Invalid working directory: %s"
|
||||
#msgstr "שגיאה בפתיחת סיפרייה '%s': %s"
|
||||
#
|
||||
##: glib/gspawn-win32.c:890
|
||||
##, fuzzy, c-format
|
||||
#msgid "Failed to execute helper program (%s)"
|
||||
#msgstr "כשלון בהרצת תוכנת עזר"
|
||||
#
|
||||
##: glib/gspawn-win32.c:1090
|
||||
##, c-format
|
||||
#msgid ""
|
||||
#"Unexpected error in g_io_channel_win32_poll() reading data from a child "
|
||||
#"process"
|
||||
#msgstr "שגיאה לא צפויה ב-g_io_channel_win32_poll()- קריאת מידע מתהליך ילד"
|
||||
#
|
||||
##: glib/gspawn.c:168
|
||||
##, c-format
|
||||
#msgid "Failed to read data from child process (%s)"
|
||||
#msgstr "כשלון בקריאת מידע מתהליך ילד (%s)"
|
||||
#
|
||||
##: glib/gspawn.c:300
|
||||
##, c-format
|
||||
#msgid "Unexpected error in select() reading data from a child process (%s)"
|
||||
#msgstr "שגיאה לא צפויה ב select() בקריאת מידע מתהליך ילד (%s)"
|
||||
#
|
||||
##: glib/gspawn.c:383
|
||||
##, c-format
|
||||
#msgid "Unexpected error in waitpid() (%s)"
|
||||
#msgstr "שגיאה לא צפויה ב waitpid() (%s)"
|
||||
#
|
||||
##: glib/gspawn.c:1093
|
||||
##, c-format
|
||||
#msgid "Failed to fork (%s)"
|
||||
#msgstr "כשלון בשכפול תהליך (%s)"
|
||||
#
|
||||
##: glib/gspawn.c:1243
|
||||
##, c-format
|
||||
#msgid "Failed to execute child process \"%s\" (%s)"
|
||||
#msgstr "כשלון בהרצת תהליך ילד \"%s\" (%s)"
|
||||
#
|
||||
##: glib/gspawn.c:1253
|
||||
##, c-format
|
||||
#msgid "Failed to redirect output or input of child process (%s)"
|
||||
#msgstr "כישלון בניתוב פלט או קלט של תהליך ילד (%s)"
|
||||
#
|
||||
##: glib/gspawn.c:1262
|
||||
##, c-format
|
||||
#msgid "Failed to fork child process (%s)"
|
||||
#msgstr "כשלון בשכפול תהליך ילד (%s)"
|
||||
#
|
||||
##: glib/gspawn.c:1270
|
||||
##, c-format
|
||||
#msgid "Unknown error executing child process \"%s\""
|
||||
#msgstr "שגיאה לא ידועה בהרצת תהליך ילד \"%s\""
|
||||
#
|
||||
##: glib/gspawn.c:1292
|
||||
##, c-format
|
||||
#msgid "Failed to read enough data from child pid pipe (%s)"
|
||||
#msgstr "שגיאה בקריאת מספיק מידע מצינור מזהה תהליך ילד (%s)"
|
||||
#
|
||||
##: glib/gutf8.c:1017
|
||||
##, c-format
|
||||
#msgid "Character out of range for UTF-8"
|
||||
#msgstr "תו מחוץ לטווח UTF-8"
|
||||
#
|
||||
##: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 glib/gutf8.c:1261
|
||||
##: glib/gutf8.c:1402 glib/gutf8.c:1498
|
||||
##, c-format
|
||||
#msgid "Invalid sequence in conversion input"
|
||||
#msgstr "רצף לא תקף בקלט המרה"
|
||||
#
|
||||
##: glib/gutf8.c:1413 glib/gutf8.c:1509
|
||||
##, c-format
|
||||
#msgid "Character out of range for UTF-16"
|
||||
#msgstr "מערך התווים מחוץ לתחום UTF-16"
|
||||
#
|
||||
##: glib/goption.c:468
|
||||
#msgid "Usage:"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/goption.c:468
|
||||
#msgid "[OPTION...]"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/goption.c:556
|
||||
#msgid "Help Options:"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/goption.c:557
|
||||
#msgid "Show help options"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/goption.c:562
|
||||
#msgid "Show all help options"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/goption.c:612
|
||||
#msgid "Application Options:"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/goption.c:653
|
||||
##, c-format
|
||||
#msgid "Cannot parse integer value '%s' for %s"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/goption.c:663
|
||||
##, c-format
|
||||
#msgid "Integer value '%s' for %s out of range"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/goption.c:926
|
||||
##, fuzzy, c-format
|
||||
#msgid "Error parsing option %s"
|
||||
#msgstr "שגיאה בזמן המרה: %s"
|
||||
#
|
||||
##: glib/goption.c:959 glib/goption.c:1070
|
||||
##, c-format
|
||||
#msgid "Missing argument for %s"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/goption.c:1474
|
||||
##, c-format
|
||||
#msgid "Unknown option %s"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/gkeyfile.c:339
|
||||
##, c-format
|
||||
#msgid "Valid key file could not be found in data dirs"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/gkeyfile.c:374
|
||||
##, c-format
|
||||
#msgid "Not a regular file"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/gkeyfile.c:382
|
||||
##, c-format
|
||||
#msgid "File is empty"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/gkeyfile.c:697
|
||||
##, c-format
|
||||
#msgid ""
|
||||
#"Key file contains line '%s' which is not a key-value pair, group, or comment"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/gkeyfile.c:765
|
||||
##, c-format
|
||||
#msgid "Key file does not start with a group"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/gkeyfile.c:808
|
||||
##, c-format
|
||||
#msgid "Key file contains unsupported encoding '%s'"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/gkeyfile.c:1017 glib/gkeyfile.c:1176 glib/gkeyfile.c:2177
|
||||
##: glib/gkeyfile.c:2242 glib/gkeyfile.c:2361 glib/gkeyfile.c:2497
|
||||
##: glib/gkeyfile.c:2649 glib/gkeyfile.c:2823 glib/gkeyfile.c:2880
|
||||
##, c-format
|
||||
#msgid "Key file does not have group '%s'"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/gkeyfile.c:1188
|
||||
##, c-format
|
||||
#msgid "Key file does not have key '%s'"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/gkeyfile.c:1289 glib/gkeyfile.c:1398
|
||||
##, c-format
|
||||
#msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/gkeyfile.c:1307 glib/gkeyfile.c:1416 glib/gkeyfile.c:1788
|
||||
##, c-format
|
||||
#msgid "Key file contains key '%s' which has value that cannot be interpreted."
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/gkeyfile.c:2004
|
||||
##, c-format
|
||||
#msgid ""
|
||||
#"Key file contains key '%s' in group '%s' which has value that cannot be "
|
||||
#"interpreted."
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/gkeyfile.c:2192 glib/gkeyfile.c:2376 glib/gkeyfile.c:2891
|
||||
##, c-format
|
||||
#msgid "Key file does not have key '%s' in group '%s'"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/gkeyfile.c:3067
|
||||
##, c-format
|
||||
#msgid "Key file contains escape character at end of line"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/gkeyfile.c:3089
|
||||
##, fuzzy, c-format
|
||||
#msgid "Key file contains invalid escape sequence '%s'"
|
||||
#msgstr "הכתובת '%s' מכילה תווים ללא תוי חילוף תקפים"
|
||||
#
|
||||
##: glib/gkeyfile.c:3230
|
||||
##, c-format
|
||||
#msgid "Value '%s' cannot be interpreted as a number."
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/gkeyfile.c:3240
|
||||
##, c-format
|
||||
#msgid "Integer value '%s' out of range"
|
||||
#msgstr ""
|
||||
#
|
||||
##: glib/gkeyfile.c:3270
|
||||
##, c-format
|
||||
#msgid "Value '%s' cannot be interpreted as a boolean."
|
||||
#msgstr ""
|
||||
#
|
||||
##, fuzzy
|
||||
##~ msgid "Could not change file mode: fork() failed: %s"
|
||||
##~ msgstr "כשלון בפתיחת קובץ '%s': fdopen() נכשל: %s"
|
||||
#
|
||||
##, fuzzy
|
||||
##~ msgid "Could not change file mode: waitpid() failed: %s"
|
||||
##~ msgstr "לא ניתן להקצות %lu בתים עבור קריאת קובץ \"%s\""
|
||||
#
|
||||
##, fuzzy
|
||||
##~ msgid "Could not change file mode: chmod() failed: %s"
|
||||
##~ msgstr "כשלון בפתיחת קובץ '%s': fdopen() נכשל: %s"
|
||||
#
|
||||
##~ msgid "Conversion from character set `%s' to `%s' is not supported"
|
||||
##~ msgstr "המרה ממערך תווים `%s' ל-`%s' אינה נתמכת"
|
||||
|
323
po/hi.po
323
po/hi.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD.hi\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-10 06:30+0100\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-03-10 12:24+0530\n"
|
||||
"Last-Translator: Rajesh Ranjan <rranjan@redhat.com>\n"
|
||||
"Language-Team: Hindi <fedora-trans-hi@redhat.com>\n"
|
||||
@ -17,206 +17,215 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: KBabel 1.9.1\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n!=1);\n\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n!=1);\n"
|
||||
"\n"
|
||||
"\n"
|
||||
|
||||
#: ../glib/gconvert.c:408 ../glib/gconvert.c:486 ../glib/giochannel.c:1150
|
||||
#: glib/gconvert.c:408 glib/gconvert.c:486 glib/giochannel.c:1150
|
||||
#, c-format
|
||||
msgid "Conversion from character set '%s' to '%s' is not supported"
|
||||
msgstr "अक्षर समूह '%s' से '%s' में परिवर्तन समर्थित नहीं है"
|
||||
|
||||
#: ../glib/gconvert.c:412 ../glib/gconvert.c:490
|
||||
#: glib/gconvert.c:412 glib/gconvert.c:490
|
||||
#, c-format
|
||||
msgid "Could not open converter from '%s' to '%s'"
|
||||
msgstr "'%s' से '%s' परिवर्तक नहीं खोला जा सका"
|
||||
|
||||
#: ../glib/gconvert.c:606 ../glib/gconvert.c:995 ../glib/giochannel.c:1322
|
||||
#: ../glib/giochannel.c:1364 ../glib/giochannel.c:2206 ../glib/gutf8.c:943
|
||||
#: ../glib/gutf8.c:1392
|
||||
#: glib/gconvert.c:606 glib/gconvert.c:995 glib/giochannel.c:1322
|
||||
#: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943
|
||||
#: glib/gutf8.c:1392
|
||||
#, c-format
|
||||
msgid "Invalid byte sequence in conversion input"
|
||||
msgstr "परिवर्तन इनपुट में अवैध बाइट अनुक्रम"
|
||||
|
||||
#: ../glib/gconvert.c:612 ../glib/gconvert.c:922 ../glib/giochannel.c:1329
|
||||
#: ../glib/giochannel.c:2218
|
||||
#: glib/gconvert.c:612 glib/gconvert.c:922 glib/giochannel.c:1329
|
||||
#: glib/giochannel.c:2218
|
||||
#, c-format
|
||||
msgid "Error during conversion: %s"
|
||||
msgstr "परिवर्तन के दौरान त्रुटि: %s"
|
||||
|
||||
#: ../glib/gconvert.c:647 ../glib/gutf8.c:939 ../glib/gutf8.c:1143
|
||||
#: ../glib/gutf8.c:1284 ../glib/gutf8.c:1388
|
||||
#: glib/gconvert.c:647 glib/gutf8.c:939 glib/gutf8.c:1143 glib/gutf8.c:1284
|
||||
#: glib/gutf8.c:1388
|
||||
#, c-format
|
||||
msgid "Partial character sequence at end of input"
|
||||
msgstr "इनपुट के अंत में आंशिक अक्षर अनुक्रम"
|
||||
|
||||
#: ../glib/gconvert.c:897
|
||||
#: glib/gconvert.c:897
|
||||
#, c-format
|
||||
msgid "Cannot convert fallback '%s' to codeset '%s'"
|
||||
msgstr "फालबैक '%s' को कोड सेट '%s' में परिवर्तित नहीं कर सका"
|
||||
|
||||
#: ../glib/gconvert.c:1706
|
||||
#: glib/gconvert.c:1706
|
||||
#, c-format
|
||||
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
|
||||
msgstr "\"file\" योजना का उपयोग करने वाली URI '%s' एक निरपेक्ष यूआरआई नहीं है"
|
||||
|
||||
#: ../glib/gconvert.c:1716
|
||||
#: glib/gconvert.c:1716
|
||||
#, c-format
|
||||
msgid "The local file URI '%s' may not include a '#'"
|
||||
msgstr "स्थानीय फ़ाइल यूआरआई '%s' में एक '#' सम्मिलित नहीं है"
|
||||
|
||||
#: ../glib/gconvert.c:1733
|
||||
#: glib/gconvert.c:1733
|
||||
#, c-format
|
||||
msgid "The URI '%s' is invalid"
|
||||
msgstr "यूआरआई '%s' अवैध है"
|
||||
|
||||
#: ../glib/gconvert.c:1745
|
||||
#: glib/gconvert.c:1745
|
||||
#, c-format
|
||||
msgid "The hostname of the URI '%s' is invalid"
|
||||
msgstr "यूआरआई '%s' का होस्टनाम अवैध है"
|
||||
|
||||
#: ../glib/gconvert.c:1761
|
||||
#: glib/gconvert.c:1761
|
||||
#, c-format
|
||||
msgid "The URI '%s' contains invalidly escaped characters"
|
||||
msgstr "यूआरआई '%s' में अवैध एस्केप्ड अक्षर सम्मिलित हैं"
|
||||
|
||||
#: ../glib/gconvert.c:1855
|
||||
#: glib/gconvert.c:1855
|
||||
#, c-format
|
||||
msgid "The pathname '%s' is not an absolute path"
|
||||
msgstr "पथनाम '%s' एक निरपेक्ष पथ नहीं है"
|
||||
|
||||
#: ../glib/gconvert.c:1865
|
||||
#: glib/gconvert.c:1865
|
||||
#, c-format
|
||||
msgid "Invalid hostname"
|
||||
msgstr "अवैध होस्ट-नाम"
|
||||
|
||||
#: ../glib/gdir.c:121 ../glib/gdir.c:141
|
||||
#: glib/gdir.c:121 glib/gdir.c:141
|
||||
#, c-format
|
||||
msgid "Error opening directory '%s': %s"
|
||||
msgstr "डिरेक्ट्री '%s' को खोलने में त्रुटि: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:576 ../glib/gfileutils.c:649
|
||||
#: glib/gfileutils.c:576 glib/gfileutils.c:649
|
||||
#, c-format
|
||||
msgid "Could not allocate %lu bytes to read file \"%s\""
|
||||
msgstr " %lu बाइट आवंटित नहीं किया जा सकता फ़ाइल \"%s\" को पढ़ने हेतु"
|
||||
|
||||
#: ../glib/gfileutils.c:591
|
||||
#: glib/gfileutils.c:591
|
||||
#, c-format
|
||||
msgid "Error reading file '%s': %s"
|
||||
msgstr "'%s' फ़ाइल को पढ़ने में त्रुटि: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:673
|
||||
#: glib/gfileutils.c:673
|
||||
#, c-format
|
||||
msgid "Failed to read from file '%s': %s"
|
||||
msgstr "फ़ाइल '%s' से पढ़ने में असफल: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:724 ../glib/gfileutils.c:811
|
||||
#: glib/gfileutils.c:724 glib/gfileutils.c:811
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s': %s"
|
||||
msgstr "'%s' फाइल खोलने में असफल :%s"
|
||||
|
||||
#: ../glib/gfileutils.c:741 ../glib/gmappedfile.c:133
|
||||
#: glib/gfileutils.c:741 glib/gmappedfile.c:133
|
||||
#, c-format
|
||||
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
|
||||
msgstr "फ़ाइल '%s' की विशेषता ज्ञात करने में असफल: fstat() असफल: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:775
|
||||
#: glib/gfileutils.c:775
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s': fdopen() failed: %s"
|
||||
msgstr "फ़ाइल '%s': fdopen() खोलने में असफल: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:909
|
||||
#: glib/gfileutils.c:909
|
||||
#, c-format
|
||||
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
|
||||
msgstr "फाइल '%s' को '%s' में नाम बदलने में विफल: g_rename() विफल: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:950 ../glib/gfileutils.c:1415
|
||||
#: glib/gfileutils.c:950 glib/gfileutils.c:1415
|
||||
#, c-format
|
||||
msgid "Failed to create file '%s': %s"
|
||||
msgstr "फ़ाइल '%s' बनाने में असफल: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:964
|
||||
#: glib/gfileutils.c:964
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
|
||||
msgstr "फाइल '%s' को लिखने के लिये खोलने में विफल: fdopen() विफल: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:989
|
||||
#: glib/gfileutils.c:989
|
||||
#, c-format
|
||||
msgid "Failed to write file '%s': fwrite() failed: %s"
|
||||
msgstr "'%s' फाइल को लिखने में विफल: fwrite() विफल: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1008
|
||||
#: glib/gfileutils.c:1008
|
||||
#, c-format
|
||||
msgid "Failed to close file '%s': fclose() failed: %s"
|
||||
msgstr "'%s' फाइल बंद करने में विफल: fclose() विफल: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1126
|
||||
#: glib/gfileutils.c:1126
|
||||
#, c-format
|
||||
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
|
||||
msgstr "'%s' मौजूदा फाइल हटाया नहीं जा सकता: g_unlink() विफल: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1376
|
||||
#: glib/gfileutils.c:1376
|
||||
#, c-format
|
||||
msgid "Template '%s' invalid, should not contain a '%s'"
|
||||
msgstr "टैम्पलेट '%s' अवैध है, इसमें '%s' शामिल नहीं है"
|
||||
|
||||
#: ../glib/gfileutils.c:1390
|
||||
#: glib/gfileutils.c:1390
|
||||
#, c-format
|
||||
msgid "Template '%s' doesn't end with XXXXXX"
|
||||
msgstr "टैम्पलेट '%s' XXXXXX से समाप्त नहीं होता"
|
||||
|
||||
#: ../glib/gfileutils.c:1865
|
||||
#: glib/gfileutils.c:1865
|
||||
#, c-format
|
||||
msgid "Failed to read the symbolic link '%s': %s"
|
||||
msgstr "सिंबालिक लिंक '%s' से थीम पढ़ने में असफल %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1886
|
||||
#: glib/gfileutils.c:1886
|
||||
#, c-format
|
||||
msgid "Symbolic links not supported"
|
||||
msgstr "सिंबालिक लिंक समर्थित नहीं है"
|
||||
|
||||
#: ../glib/giochannel.c:1154
|
||||
#: glib/giochannel.c:1154
|
||||
#, c-format
|
||||
msgid "Could not open converter from '%s' to '%s': %s"
|
||||
msgstr "'%s' से '%s' परिवर्तक नहीं खोला जा सका: %s"
|
||||
|
||||
#: ../glib/giochannel.c:1499
|
||||
#: glib/giochannel.c:1499
|
||||
#, c-format
|
||||
msgid "Can't do a raw read in g_io_channel_read_line_string"
|
||||
msgstr "यहाँ एक रॉ रीड नहीं कर सकता g_io_channel_read_line_string"
|
||||
|
||||
#: ../glib/giochannel.c:1546 ../glib/giochannel.c:1803
|
||||
#: ../glib/giochannel.c:1889
|
||||
#: glib/giochannel.c:1546 glib/giochannel.c:1803 glib/giochannel.c:1889
|
||||
#, c-format
|
||||
msgid "Leftover unconverted data in read buffer"
|
||||
msgstr "रीड बफ़र में शेष है अपरिवर्तित बचा हुआ डेटा"
|
||||
|
||||
#: ../glib/giochannel.c:1626 ../glib/giochannel.c:1703
|
||||
#: glib/giochannel.c:1626 glib/giochannel.c:1703
|
||||
#, c-format
|
||||
msgid "Channel terminates in a partial character"
|
||||
msgstr "आंशिक अक्षर में चैनल समाप्त होता है"
|
||||
|
||||
#: ../glib/giochannel.c:1689
|
||||
#: glib/giochannel.c:1689
|
||||
#, c-format
|
||||
msgid "Can't do a raw read in g_io_channel_read_to_end"
|
||||
msgstr "यहाँ एक रॉ रीड नहीं कर सकता - 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' खोलने में असफल: %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:232
|
||||
#: glib/gmarkup.c:232
|
||||
#, c-format
|
||||
msgid "Error on line %d char %d: %s"
|
||||
msgstr "पंक्ति %d अक्षर %d पर त्रुटि: %s"
|
||||
|
||||
#: ../glib/gmarkup.c:330
|
||||
#: glib/gmarkup.c:330
|
||||
#, c-format
|
||||
msgid "Error on line %d: %s"
|
||||
msgstr "पंक्ति %d: पर त्रुटि %s"
|
||||
|
||||
#: ../glib/gmarkup.c:434
|
||||
msgid "Empty entity '&;' seen; valid entities are: & " < > '"
|
||||
#: glib/gmarkup.c:434
|
||||
msgid ""
|
||||
"Empty entity '&;' seen; valid entities are: & " < > '"
|
||||
msgstr "खाली एंटिटी '&;' देखा; वैध एंटिटी हैं: & " < > '"
|
||||
|
||||
#: ../glib/gmarkup.c:444
|
||||
#: glib/gmarkup.c:444
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Character '%s' is not valid at the start of an entity name; the & character "
|
||||
@ -226,17 +235,17 @@ msgstr ""
|
||||
"एक एंटिटी के प्रारंभ में अक्षर '%s' वैध नहीं है, तथा & अक्षर एक एंटिटी को प्रारंभ करता है; "
|
||||
"यदि यह एम्परसेंड एक एंटिटी नहीं है, तो इसे ऐसे एस्केप करें &"
|
||||
|
||||
#: ../glib/gmarkup.c:478
|
||||
#: glib/gmarkup.c:478
|
||||
#, c-format
|
||||
msgid "Character '%s' is not valid inside an entity name"
|
||||
msgstr " अक्षर '%s' एक एंटिटी नाम के भीतर वैध नहीं है"
|
||||
|
||||
#: ../glib/gmarkup.c:515
|
||||
#: glib/gmarkup.c:515
|
||||
#, c-format
|
||||
msgid "Entity name '%s' is not known"
|
||||
msgstr "एंटिटी नाम '%s' ज्ञात नहीं है"
|
||||
|
||||
#: ../glib/gmarkup.c:526
|
||||
#: glib/gmarkup.c:526
|
||||
msgid ""
|
||||
"Entity did not end with a semicolon; most likely you used an ampersand "
|
||||
"character without intending to start an entity - escape ampersand as &"
|
||||
@ -244,7 +253,7 @@ msgstr ""
|
||||
"एंटिटी अर्धविराम पर समाप्त नहीं होता, बहुत संभव है कि आपने एम्परसेन्ड अक्षर का प्रयोग "
|
||||
"किया है और एक एंटिटी प्रारंभ नहीं करना चाहते- एम्परसेंड को ऐसे एस्केप करें: &"
|
||||
|
||||
#: ../glib/gmarkup.c:579
|
||||
#: glib/gmarkup.c:579
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Failed to parse '%-.*s', which should have been a digit inside a character "
|
||||
@ -253,16 +262,16 @@ msgstr ""
|
||||
"'%-.*s' के विश्लेषण करने में असफल, जो कि अक्षर संदर्भ के भीतर एक अंक होना चाहिए (उदाहरण "
|
||||
"के लिए, ê) - शायद अंक काफी बड़ा है"
|
||||
|
||||
#: ../glib/gmarkup.c:604
|
||||
#: glib/gmarkup.c:604
|
||||
#, c-format
|
||||
msgid "Character reference '%-.*s' does not encode a permitted character"
|
||||
msgstr "संप्रतीक संदर्भ '%-.*s' एक अनुमति प्राप्त संप्रतीक को एनकोड नहीं करता"
|
||||
|
||||
#: ../glib/gmarkup.c:619
|
||||
#: glib/gmarkup.c:619
|
||||
msgid "Empty character reference; should include a digit such as dž"
|
||||
msgstr "रिक्त अक्षर संदर्भ, अंक जैसे dž सम्मिलित अवश्य होने चाहिएँ;"
|
||||
|
||||
#: ../glib/gmarkup.c:629
|
||||
#: glib/gmarkup.c:629
|
||||
msgid ""
|
||||
"Character reference did not end with a semicolon; most likely you used an "
|
||||
"ampersand character without intending to start an entity - escape ampersand "
|
||||
@ -272,42 +281,44 @@ msgstr ""
|
||||
"अक्षर का उपयोग किया है पर एक एंटिटी को प्रारंभ करना नहीं चाहते - एम्परसेंड को एस्केप करें "
|
||||
"ऐसे &"
|
||||
|
||||
#: ../glib/gmarkup.c:715
|
||||
#: glib/gmarkup.c:715
|
||||
msgid "Unfinished entity reference"
|
||||
msgstr "अपूर्ण एंटिटी संदर्भ"
|
||||
|
||||
#: ../glib/gmarkup.c:721
|
||||
#: glib/gmarkup.c:721
|
||||
msgid "Unfinished character reference"
|
||||
msgstr "अपूर्ण अक्षर संदर्भ"
|
||||
|
||||
#: ../glib/gmarkup.c:964 ../glib/gmarkup.c:992 ../glib/gmarkup.c:1023
|
||||
#: glib/gmarkup.c:964 glib/gmarkup.c:992 glib/gmarkup.c:1023
|
||||
msgid "Invalid UTF-8 encoded text"
|
||||
msgstr "अवैध यूटीएफ़-8 एनकोडेड पाठ"
|
||||
|
||||
#: ../glib/gmarkup.c:1059
|
||||
#: glib/gmarkup.c:1059
|
||||
msgid "Document must begin with an element (e.g. <book>)"
|
||||
msgstr "दस्तावेज़ एक अवयव के नाम से प्रारंभ होना चाहिए (उदाहरण के लिए- <पुस्तक>)"
|
||||
|
||||
#: ../glib/gmarkup.c:1099
|
||||
#: glib/gmarkup.c:1099
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following a '<' character; it may not begin an "
|
||||
"element name"
|
||||
msgstr "< के पश्चात आया '%s' एक वैध वर्ण नहीं है; यह अवयव नाम से प्रारंभ नहीं होता"
|
||||
|
||||
#: ../glib/gmarkup.c:1163
|
||||
#: glib/gmarkup.c:1163
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '>' character to end the start tag of element "
|
||||
"'%s'"
|
||||
msgstr "विषम अक्षर '%s', एलिमेंट '%s' के प्रारंभ टैक को समाप्त करने हेतु प्रत्याशित था '>' अक्षर"
|
||||
msgstr ""
|
||||
"विषम अक्षर '%s', एलिमेंट '%s' के प्रारंभ टैक को समाप्त करने हेतु प्रत्याशित था '>' अक्षर"
|
||||
|
||||
#: ../glib/gmarkup.c:1252
|
||||
#: glib/gmarkup.c:1252
|
||||
#, c-format
|
||||
msgid "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
|
||||
msgstr "विषम अक्षर '%s', प्रत्याशित है एक '=' लक्षण नाम '%s' अवयव '%s' के पश्चात्"
|
||||
|
||||
#: ../glib/gmarkup.c:1294
|
||||
#: glib/gmarkup.c:1294
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
|
||||
@ -317,7 +328,7 @@ msgstr ""
|
||||
"'%s' विसम संप्रतीक, एक '>' या '/' संप्रतीक को '%s' तत्व के आरंभ टैग को खत्म करना "
|
||||
"प्रत्याशित, या विकल्पतः एक गुण; शायद आपने गुण नाम में एक अमान्य संप्रतीक का प्रयोग किया है"
|
||||
|
||||
#: ../glib/gmarkup.c:1383
|
||||
#: glib/gmarkup.c:1383
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected an open quote mark after the equals sign when "
|
||||
@ -326,39 +337,40 @@ msgstr ""
|
||||
"पुराना अक्षर '%s', जब विशेषता '%s', अवयव '%s' का मान दिया जाता है तो बराबर चिह्न "
|
||||
"के बाद एक खुला कोट चिह्न वांछित है"
|
||||
|
||||
#: ../glib/gmarkup.c:1528
|
||||
#: glib/gmarkup.c:1528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following the characters '</'; '%s' may not "
|
||||
"begin an element name"
|
||||
msgstr "'%s' एक वैध अक्षर नहीं है अक्षर '</' के बाद; '%s' एक अवयव नाम से प्रारंभ नहीं होता"
|
||||
msgstr ""
|
||||
"'%s' एक वैध अक्षर नहीं है अक्षर '</' के बाद; '%s' एक अवयव नाम से प्रारंभ नहीं होता"
|
||||
|
||||
#: ../glib/gmarkup.c:1568
|
||||
#: glib/gmarkup.c:1568
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following the close element name '%s'; the "
|
||||
"allowed character is '>'"
|
||||
msgstr "'%s' एक वैध अक्षर नहीं है क्लोज़ अवयव नाम '%s' के बाद; स्वीकार्य अक्षर है '>'"
|
||||
|
||||
#: ../glib/gmarkup.c:1579
|
||||
#: glib/gmarkup.c:1579
|
||||
#, c-format
|
||||
msgid "Element '%s' was closed, no element is currently open"
|
||||
msgstr "अवयव '%s' बन्द था, कोई अवयव वर्तमान में खुला नहीं है"
|
||||
|
||||
#: ../glib/gmarkup.c:1588
|
||||
#: glib/gmarkup.c:1588
|
||||
#, c-format
|
||||
msgid "Element '%s' was closed, but the currently open element is '%s'"
|
||||
msgstr "दस्तावेज '%s' बन्द था, परन्तु वर्तमान खुला अवयव है '%s'"
|
||||
|
||||
#: ../glib/gmarkup.c:1735
|
||||
#: glib/gmarkup.c:1735
|
||||
msgid "Document was empty or contained only whitespace"
|
||||
msgstr "दस्तावेज़ खाली था या उसमें सिर्फ श्वेत रिक्ति ही था"
|
||||
|
||||
#: ../glib/gmarkup.c:1749
|
||||
#: glib/gmarkup.c:1749
|
||||
msgid "Document ended unexpectedly just after an open angle bracket '<'"
|
||||
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से एक खुला एंगल ब्रेकेट '<' के पश्चात ही हो गया"
|
||||
|
||||
#: ../glib/gmarkup.c:1757 ../glib/gmarkup.c:1801
|
||||
#: glib/gmarkup.c:1757 glib/gmarkup.c:1801
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Document ended unexpectedly with elements still open - '%s' was the last "
|
||||
@ -367,7 +379,7 @@ msgstr ""
|
||||
"दस्तावेज़ का अंत अप्रत्याशित रूप से अवयवों के खुला होने पर भी हो गया - '%s' अंतिम खुला हुआ "
|
||||
"अवयव था"
|
||||
|
||||
#: ../glib/gmarkup.c:1765
|
||||
#: glib/gmarkup.c:1765
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Document ended unexpectedly, expected to see a close angle bracket ending "
|
||||
@ -376,19 +388,19 @@ msgstr ""
|
||||
"दस्तावेज़ का अंत अप्रत्याशित रूप से हो गया, वांछित था देखना एक क्लोज़ एंगल ब्रेकेट टैग को बन्द "
|
||||
"करता हुआ <%s/>"
|
||||
|
||||
#: ../glib/gmarkup.c:1771
|
||||
#: glib/gmarkup.c:1771
|
||||
msgid "Document ended unexpectedly inside an element name"
|
||||
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से अवयव नाम के भीतर हो गया"
|
||||
|
||||
#: ../glib/gmarkup.c:1776
|
||||
#: glib/gmarkup.c:1776
|
||||
msgid "Document ended unexpectedly inside an attribute name"
|
||||
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से विशेषता नाम के भीतर हो गया"
|
||||
|
||||
#: ../glib/gmarkup.c:1781
|
||||
#: glib/gmarkup.c:1781
|
||||
msgid "Document ended unexpectedly inside an element-opening tag."
|
||||
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से अवयव-खोलने के टैग के भीतर हो गया."
|
||||
|
||||
#: ../glib/gmarkup.c:1787
|
||||
#: glib/gmarkup.c:1787
|
||||
msgid ""
|
||||
"Document ended unexpectedly after the equals sign following an attribute "
|
||||
"name; no attribute value"
|
||||
@ -396,289 +408,300 @@ msgstr ""
|
||||
"दस्तावेज़ का अंत अप्रत्याशित रूप से बराबर के चिह्न के बाद एक विशेषता नाम के पश्चात् हो गया; "
|
||||
"कोई विशेषता मूल्य नहीं"
|
||||
|
||||
#: ../glib/gmarkup.c:1794
|
||||
#: glib/gmarkup.c:1794
|
||||
msgid "Document ended unexpectedly while inside an attribute value"
|
||||
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से विशेषता मान के भीतर हो गया"
|
||||
|
||||
#: ../glib/gmarkup.c:1809
|
||||
#: glib/gmarkup.c:1809
|
||||
#, c-format
|
||||
msgid "Document ended unexpectedly inside the close tag for element '%s'"
|
||||
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से अवयव '%s' हेतु बन्द टैग के भीतर हो गया"
|
||||
|
||||
#: ../glib/gmarkup.c:1815
|
||||
#: glib/gmarkup.c:1815
|
||||
msgid "Document ended unexpectedly inside a comment or processing instruction"
|
||||
msgstr "दस्तावेज़ का अंत अप्रत्याशित रूप से टिप्पणी या प्रक्रिया निर्देश के भीतर हो गया"
|
||||
|
||||
#: ../glib/gshell.c:73
|
||||
#: glib/gshell.c:73
|
||||
#, c-format
|
||||
msgid "Quoted text doesn't begin with a quotation mark"
|
||||
msgstr "कोटेड पाठ कोटेशन चिह्न के साथ प्रारंभ नहीं होता"
|
||||
|
||||
#: ../glib/gshell.c:163
|
||||
#: glib/gshell.c:163
|
||||
#, c-format
|
||||
msgid "Unmatched quotation mark in command line or other shell-quoted text"
|
||||
msgstr "कमांड पंक्ति में मेल नहीं खाते कोटेशन चिह्न या अन्य शैल-कोटेड पाठ"
|
||||
|
||||
#: ../glib/gshell.c:541
|
||||
#: glib/gshell.c:541
|
||||
#, c-format
|
||||
msgid "Text ended just after a '\\' character. (The text was '%s')"
|
||||
msgstr "पाठ का अंत सिर्फ '\\' अक्षर के बाद हो गया. (पाठ था '%s')"
|
||||
|
||||
#: ../glib/gshell.c:548
|
||||
#: glib/gshell.c:548
|
||||
#, c-format
|
||||
msgid "Text ended before matching quote was found for %c. (The text was '%s')"
|
||||
msgstr " %c हेतु मैचिंग कोट से पहले पाठ अंत पाया. (पाठ था '%s')"
|
||||
|
||||
#: ../glib/gshell.c:560
|
||||
#: glib/gshell.c:560
|
||||
#, c-format
|
||||
msgid "Text was empty (or contained only whitespace)"
|
||||
msgstr "पाठ खाली था (या उसमें सिर्फ श्वेत रिक्ति ही था)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:276
|
||||
#: glib/gspawn-win32.c:276
|
||||
#, c-format
|
||||
msgid "Failed to read data from child process"
|
||||
msgstr "शिशु प्रक्रिया से डेटा पढ़ने में असफल"
|
||||
|
||||
#: ../glib/gspawn-win32.c:291 ../glib/gspawn.c:1364
|
||||
#: glib/gspawn-win32.c:291 glib/gspawn.c:1364
|
||||
#, c-format
|
||||
msgid "Failed to create pipe for communicating with child process (%s)"
|
||||
msgstr "शिशु प्रक्रिया (%s) से संचारण हेतु पाइप बनाने में असफल"
|
||||
|
||||
#: ../glib/gspawn-win32.c:329 ../glib/gspawn.c:1028
|
||||
#: glib/gspawn-win32.c:329 glib/gspawn.c:1028
|
||||
#, c-format
|
||||
msgid "Failed to read from child pipe (%s)"
|
||||
msgstr "चाइल्ड पाइप (%s) से पढ़ने में असफल"
|
||||
|
||||
#: ../glib/gspawn-win32.c:355 ../glib/gspawn.c:1233
|
||||
#: glib/gspawn-win32.c:355 glib/gspawn.c:1233
|
||||
#, c-format
|
||||
msgid "Failed to change to directory '%s' (%s)"
|
||||
msgstr "डिरेक्ट्री '%s' (%s) पर बदलने में असफल"
|
||||
|
||||
#: ../glib/gspawn-win32.c:361 ../glib/gspawn-win32.c:581
|
||||
#: glib/gspawn-win32.c:361 glib/gspawn-win32.c:581
|
||||
#, c-format
|
||||
msgid "Failed to execute child process (%s)"
|
||||
msgstr "शिशु प्रक्रिया (%s) कार्यान्वित करने में असफल"
|
||||
|
||||
#: ../glib/gspawn-win32.c:471 ../glib/gspawn-win32.c:527
|
||||
#: glib/gspawn-win32.c:471 glib/gspawn-win32.c:527
|
||||
#, c-format
|
||||
msgid "Invalid program name: %s"
|
||||
msgstr "अवैध प्रोग्राम नाम: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:481 ../glib/gspawn-win32.c:537
|
||||
#: ../glib/gspawn-win32.c:780 ../glib/gspawn-win32.c:835
|
||||
#: ../glib/gspawn-win32.c:1370
|
||||
#: glib/gspawn-win32.c:481 glib/gspawn-win32.c:537 glib/gspawn-win32.c:780
|
||||
#: glib/gspawn-win32.c:835 glib/gspawn-win32.c:1370
|
||||
#, c-format
|
||||
msgid "Invalid string in argument vector at %d: %s"
|
||||
msgstr "%d पर तर्क सदिश में अवैध स्ट्रिंग: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:492 ../glib/gspawn-win32.c:548
|
||||
#: ../glib/gspawn-win32.c:794 ../glib/gspawn-win32.c:848
|
||||
#: ../glib/gspawn-win32.c:1403
|
||||
#: glib/gspawn-win32.c:492 glib/gspawn-win32.c:548 glib/gspawn-win32.c:794
|
||||
#: glib/gspawn-win32.c:848 glib/gspawn-win32.c:1403
|
||||
#, c-format
|
||||
msgid "Invalid string in environment: %s"
|
||||
msgstr "वातावरण में अवैध स्ट्रिंग: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:776 ../glib/gspawn-win32.c:831
|
||||
#: ../glib/gspawn-win32.c:1351
|
||||
#: glib/gspawn-win32.c:776 glib/gspawn-win32.c:831 glib/gspawn-win32.c:1351
|
||||
#, c-format
|
||||
msgid "Invalid working directory: %s"
|
||||
msgstr "अवैध कार्यशील निर्देशिका: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:890
|
||||
#: glib/gspawn-win32.c:890
|
||||
#, c-format
|
||||
msgid "Failed to execute helper program (%s)"
|
||||
msgstr "हेल्पर प्रोग्राम (%s) कार्यान्वित करने में असफल"
|
||||
|
||||
#: ../glib/gspawn-win32.c:1090
|
||||
#: glib/gspawn-win32.c:1090
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Unexpected error in g_io_channel_win32_poll() reading data from a child "
|
||||
"process"
|
||||
msgstr "एक शिशु प्रक्रिया से डेटा पढ़ने में g_io_channel_win32_poll() में अप्रत्याशित त्रुटि"
|
||||
|
||||
#: ../glib/gspawn.c:168
|
||||
#: glib/gspawn.c:168
|
||||
#, c-format
|
||||
msgid "Failed to read data from child process (%s)"
|
||||
msgstr "शिशु प्रक्रिया (%s) से डेटा पढ़ने में असफल"
|
||||
|
||||
#: ../glib/gspawn.c:300
|
||||
#: glib/gspawn.c:300
|
||||
#, c-format
|
||||
msgid "Unexpected error in select() reading data from a child process (%s)"
|
||||
msgstr "एक चाइल्ड प्रक्रिया (%s) से चुनें() पढ़ने का डेटा में अप्रत्याशित त्रुटि हुई"
|
||||
|
||||
#: ../glib/gspawn.c:383
|
||||
#: glib/gspawn.c:383
|
||||
#, c-format
|
||||
msgid "Unexpected error in waitpid() (%s)"
|
||||
msgstr "waitpid() (%s) में अप्रत्याशित त्रुटि"
|
||||
|
||||
#: ../glib/gspawn.c:1093
|
||||
#: glib/gspawn.c:1093
|
||||
#, c-format
|
||||
msgid "Failed to fork (%s)"
|
||||
msgstr "(%s) फॉर्क करने में असफल"
|
||||
|
||||
#: ../glib/gspawn.c:1243
|
||||
#: glib/gspawn.c:1243
|
||||
#, c-format
|
||||
msgid "Failed to execute child process \"%s\" (%s)"
|
||||
msgstr "शिशु प्रक्रिया \"%s\" (%s) कार्यान्वित करने में असफल"
|
||||
|
||||
#: ../glib/gspawn.c:1253
|
||||
#: glib/gspawn.c:1253
|
||||
#, c-format
|
||||
msgid "Failed to redirect output or input of child process (%s)"
|
||||
msgstr "आउटपुट या शिशु प्रक्रिया (%s) के इनपुट को अनुप्रेषित करने में असफल"
|
||||
|
||||
#: ../glib/gspawn.c:1262
|
||||
#: glib/gspawn.c:1262
|
||||
#, c-format
|
||||
msgid "Failed to fork child process (%s)"
|
||||
msgstr "शिशु प्रक्रिया (%s) फॉर्क करने में असफल"
|
||||
|
||||
#: ../glib/gspawn.c:1270
|
||||
#: glib/gspawn.c:1270
|
||||
#, c-format
|
||||
msgid "Unknown error executing child process \"%s\""
|
||||
msgstr "शिशु प्रक्रिया \"%s\" कार्यान्वित करने में अज्ञात त्रुटि"
|
||||
|
||||
#: ../glib/gspawn.c:1292
|
||||
#: glib/gspawn.c:1292
|
||||
#, c-format
|
||||
msgid "Failed to read enough data from child pid pipe (%s)"
|
||||
msgstr "शिशु पीआईडी पाइप (%s) से पर्याप्त डेटा पढ़ने में असफल"
|
||||
|
||||
#: ../glib/gutf8.c:1017
|
||||
#: glib/gutf8.c:1017
|
||||
#, c-format
|
||||
msgid "Character out of range for UTF-8"
|
||||
msgstr "यूटीएफ-8 हेतु अक्षर सीमा से बाहर"
|
||||
|
||||
#: ../glib/gutf8.c:1111 ../glib/gutf8.c:1120 ../glib/gutf8.c:1252
|
||||
#: ../glib/gutf8.c:1261 ../glib/gutf8.c:1402 ../glib/gutf8.c:1498
|
||||
#: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 glib/gutf8.c:1261
|
||||
#: glib/gutf8.c:1402 glib/gutf8.c:1498
|
||||
#, c-format
|
||||
msgid "Invalid sequence in conversion input"
|
||||
msgstr "परिवर्तन इनपुट में अवैध अनुक्रम"
|
||||
|
||||
#: ../glib/gutf8.c:1413 ../glib/gutf8.c:1509
|
||||
#: glib/gutf8.c:1413 glib/gutf8.c:1509
|
||||
#, c-format
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "यूटीएफ-16 हेतु अक्षर सीमा से बाहर"
|
||||
|
||||
#: ../glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "प्रयोग:"
|
||||
|
||||
#: ../glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[विकल्प...]"
|
||||
|
||||
#: ../glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "सहायता विकल्प:"
|
||||
|
||||
#: ../glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "सहायता विकल्प दिखायें"
|
||||
|
||||
#: ../glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "सभी सहायता विकल्प दिखायें"
|
||||
|
||||
#: ../glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "अनुप्रयोग विकल्प:"
|
||||
|
||||
#: ../glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "पूर्णांक मान '%s' को %s के लिये विश्लेषण नहीं कर सकता"
|
||||
|
||||
#: ../glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "पूर्णांक मान '%s' %s के लिये रेंज के बाहर है"
|
||||
|
||||
#: ../glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "%s विकल्प विश्लेषण में त्रुटि"
|
||||
|
||||
#: ../glib/goption.c:959 ../glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "%s के लिये गुम तर्क"
|
||||
|
||||
#: ../glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "अनजान विकल्प %s"
|
||||
|
||||
#: ../glib/gkeyfile.c:339
|
||||
#: glib/gkeyfile.c:339
|
||||
#, c-format
|
||||
msgid "Valid key file could not be found in data dirs"
|
||||
msgstr "आंकड़ा निर्देशिका में मान्य कुंजी फाइल नहीं पायी गयी"
|
||||
|
||||
#: ../glib/gkeyfile.c:374
|
||||
#: glib/gkeyfile.c:374
|
||||
#, c-format
|
||||
msgid "Not a regular file"
|
||||
msgstr "एक सामान्य फाइल नहीं"
|
||||
|
||||
#: ../glib/gkeyfile.c:382
|
||||
#: glib/gkeyfile.c:382
|
||||
#, c-format
|
||||
msgid "File is empty"
|
||||
msgstr "फ़ाइल खाली है"
|
||||
|
||||
#: ../glib/gkeyfile.c:697
|
||||
#: glib/gkeyfile.c:697
|
||||
#, c-format
|
||||
msgid "Key file contains line '%s' which is not a key-value pair, group, or comment"
|
||||
msgstr "कुंजी फाइल में '%s' पंक्ति समाहित है जो कि एक कुंजी मान जोड़ा, समूह, या टिप्पणी नहीं है"
|
||||
msgid ""
|
||||
"Key file contains line '%s' which is not a key-value pair, group, or comment"
|
||||
msgstr ""
|
||||
"कुंजी फाइल में '%s' पंक्ति समाहित है जो कि एक कुंजी मान जोड़ा, समूह, या टिप्पणी नहीं है"
|
||||
|
||||
#: ../glib/gkeyfile.c:765
|
||||
#: glib/gkeyfile.c:765
|
||||
#, c-format
|
||||
msgid "Key file does not start with a group"
|
||||
msgstr "कुंजी फाइल एक समूह के साथ शुरू नहीं होता"
|
||||
|
||||
#: ../glib/gkeyfile.c:808
|
||||
#: glib/gkeyfile.c:808
|
||||
#, c-format
|
||||
msgid "Key file contains unsupported encoding '%s'"
|
||||
msgstr "कुंजी फाइल में असमर्थित एनकोडिंग '%s' समाहित है"
|
||||
|
||||
#: ../glib/gkeyfile.c:1017 ../glib/gkeyfile.c:1176 ../glib/gkeyfile.c:2177
|
||||
#: ../glib/gkeyfile.c:2242 ../glib/gkeyfile.c:2361 ../glib/gkeyfile.c:2497
|
||||
#: ../glib/gkeyfile.c:2649 ../glib/gkeyfile.c:2823 ../glib/gkeyfile.c:2880
|
||||
#: glib/gkeyfile.c:1017 glib/gkeyfile.c:1176 glib/gkeyfile.c:2177
|
||||
#: glib/gkeyfile.c:2242 glib/gkeyfile.c:2361 glib/gkeyfile.c:2497
|
||||
#: glib/gkeyfile.c:2649 glib/gkeyfile.c:2823 glib/gkeyfile.c:2880
|
||||
#, c-format
|
||||
msgid "Key file does not have group '%s'"
|
||||
msgstr "कुंजी फाइल में '%s' समूह नहीं है"
|
||||
|
||||
#: ../glib/gkeyfile.c:1188
|
||||
#: glib/gkeyfile.c:1188
|
||||
#, c-format
|
||||
msgid "Key file does not have key '%s'"
|
||||
msgstr "कुंजी फाइल में '%s' कुंजी नहीं है"
|
||||
|
||||
#: ../glib/gkeyfile.c:1289 ../glib/gkeyfile.c:1398
|
||||
#: glib/gkeyfile.c:1289 glib/gkeyfile.c:1398
|
||||
#, c-format
|
||||
msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
|
||||
msgstr "कुंजी फाइल में '%s' कुंजी समाहित है '%s' मान के साथ जो UTF-8 नहीं है"
|
||||
|
||||
#: ../glib/gkeyfile.c:1307 ../glib/gkeyfile.c:1416 ../glib/gkeyfile.c:1788
|
||||
#: glib/gkeyfile.c:1307 glib/gkeyfile.c:1416 glib/gkeyfile.c:1788
|
||||
#, c-format
|
||||
msgid "Key file contains key '%s' which has value that cannot be interpreted."
|
||||
msgstr "कुंजी फाइल में '%s' कुंजी है जिसके मान का विश्लेषण नहीं किया जा सकता."
|
||||
|
||||
#: ../glib/gkeyfile.c:2004
|
||||
#: glib/gkeyfile.c:2004
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Key file contains key '%s' in group '%s' which has value that cannot be "
|
||||
"interpreted."
|
||||
msgstr "कुंजी फाइल में '%s' कुंजी है '%s' समूह में जिसके मान का विश्लेषण नहीं किया जा सकता."
|
||||
|
||||
#: ../glib/gkeyfile.c:2192 ../glib/gkeyfile.c:2376 ../glib/gkeyfile.c:2891
|
||||
#: glib/gkeyfile.c:2192 glib/gkeyfile.c:2376 glib/gkeyfile.c:2891
|
||||
#, c-format
|
||||
msgid "Key file does not have key '%s' in group '%s'"
|
||||
msgstr "कुंजी फाइल में '%s' कुंजी नहीं है '%s' समूह में"
|
||||
|
||||
#: ../glib/gkeyfile.c:3067
|
||||
#: glib/gkeyfile.c:3067
|
||||
#, c-format
|
||||
msgid "Key file contains escape character at end of line"
|
||||
msgstr "कुंजी फाइल में पंक्ति के अंत में एस्केप संप्रतीक रहता है"
|
||||
|
||||
#: ../glib/gkeyfile.c:3089
|
||||
#: glib/gkeyfile.c:3089
|
||||
#, c-format
|
||||
msgid "Key file contains invalid escape sequence '%s'"
|
||||
msgstr "कुंजी फाइल में '%s' अमान्य श्रृंखला समाहित है"
|
||||
|
||||
#: ../glib/gkeyfile.c:3230
|
||||
#: glib/gkeyfile.c:3230
|
||||
#, c-format
|
||||
msgid "Value '%s' cannot be interpreted as a number."
|
||||
msgstr "मान्य '%s' को एक संख्या की तरह नहीं विश्लेषित किया जा सकता."
|
||||
|
||||
#: ../glib/gkeyfile.c:3240
|
||||
#: glib/gkeyfile.c:3240
|
||||
#, c-format
|
||||
msgid "Integer value '%s' out of range"
|
||||
msgstr "पूर्णांक मान '%s' रेंज के बाहर है"
|
||||
|
||||
#: ../glib/gkeyfile.c:3270
|
||||
#: glib/gkeyfile.c:3270
|
||||
#, c-format
|
||||
msgid "Value '%s' cannot be interpreted as a boolean."
|
||||
msgstr "मान '%s' को बुलियन के तौर पर विश्लेषित नहीं किया जा सकता."
|
||||
|
||||
|
24
po/hr.po
24
po/hr.po
@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2004-03-13 13:03+CET\n"
|
||||
"Last-Translator: auto\n"
|
||||
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
|
||||
@ -572,51 +572,51 @@ msgstr "Neispravna sekvenca u pretvaranju ulaza"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Znak je izvan raspona za UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Greška prilikom konverzije: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr ""
|
||||
|
24
po/hu.po
24
po/hu.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2005-07-12 17:37+0200\n"
|
||||
"Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
|
||||
"Language-Team: Hungarian <gnome@gnome.hu>\n"
|
||||
@ -602,51 +602,51 @@ msgstr "Érvénytelen szekvencia az átalakítási bemenetben"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "A karakter az UTF-16 tartományon kívülre esik"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Használat:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPCIÓ...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Súgólehetőségek:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Súgólehetőségek megjelenítése"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Minden súgólehetőség megjelenítése"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Alkalmazás opciói:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Nem dolgozható fel a(z) \"%s\" egész érték a következőhöz: %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "A(z) \"%s\" egész érték a tartományon kívülre esik a következőhöz: %s"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Hiba a kapcsoló feldolgozása során: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Hiányzó paraméter a következőhöz: %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Ismeretlen opció: %s"
|
||||
|
24
po/id.po
24
po/id.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
@ -592,51 +592,51 @@ msgstr "Rangkaian input konversi salah"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Karakter di luar jangkauan UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Gunakan:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[PILIHAN...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Pilihan Bantuan:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Tampilkan pilihan bantuan"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Tampilkan seluruh pilihan bantuan"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Pilihan Aplikasi:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Tidak dapat menguraikan nilai integer '%s' untuk %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Nilai integer '%s' untuk %s di luar jangkauan"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Error saat melakukan konversi: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Argumen untuk %s tidak lengkap"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Pilihan tidak diketahui %s"
|
||||
|
24
po/is.po
24
po/is.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
@ -564,51 +564,51 @@ msgstr "Ógild runa í ílagi umbreytingar"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Táknið er utan UTF-16 sviðsins"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Villa við umbreytingu: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr ""
|
||||
|
24
po/it.po
24
po/it.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.10.x\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-02-08 14:10+0100\n"
|
||||
"Last-Translator: Luca Ferretti <elle.uca@libero.it>\n"
|
||||
"Language-Team: Italian <tp@lists.linux.it>\n"
|
||||
@ -610,51 +610,51 @@ msgstr "Sequenza non valida in ingresso per la conversione"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Carattere fuori dell'intervallo per UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Uso:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPZIONE...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Opzioni di aiuto:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Mostra le opzioni di aiuto"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Mostra tutte le opzioni di aiuto"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Opzioni dell'applicazione:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Impossibile analizzare il valore intero \"%s\" per %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Il valore intero \"%s\" per %s è fuori dell'intervallo"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Errore nell'analizzare l'opzione %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Argomento mancante per %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Opzione %s sconoscuta"
|
||||
|
24
po/ja.po
24
po/ja.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-09 19:58+0900\n"
|
||||
"Last-Translator: Takeshi AIHANA <aihana@gnome.gr.jp>\n"
|
||||
"Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n"
|
||||
@ -580,51 +580,51 @@ msgstr "
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "UTF-16 の範囲外の文字です"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "用法:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[オプション...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "ヘルプのオプション:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "ヘルプのオプションを表示する"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "ヘルプのオプションを全て表示する"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "アプリケーションのオプション:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "%2$s の整数値 '%1$s' を解析できません"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "%2$s の整数値 '%1$s' は範囲外の値です"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "オプション %s の解析中にエラー"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "%s の引数がありません"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "%s は不明なオプションです"
|
||||
|
519
po/ka.po
519
po/ka.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.9.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-04-06 10:49-0400\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-02-17 15:40+0400\n"
|
||||
"Last-Translator: Gia Shervashidze <giasher@telenet.ge>\n"
|
||||
"Language-Team: Georgian <ka@li.org>\n"
|
||||
@ -18,662 +18,711 @@ msgstr ""
|
||||
"X-Poedit-Language: Georgian\n"
|
||||
"X-Poedit-Country: GEORGIA\n"
|
||||
|
||||
#: ../glib/gconvert.c:408
|
||||
#: ../glib/gconvert.c:486
|
||||
#: ../glib/giochannel.c:1150
|
||||
#: glib/gconvert.c:408 glib/gconvert.c:486 glib/giochannel.c:1150
|
||||
#, c-format
|
||||
msgid "Conversion from character set '%s' to '%s' is not supported"
|
||||
msgstr "კოდური გვერდის \"%s\" გარდაქმნა \"%s\" კოდირებაში არაა რეალიზებული"
|
||||
|
||||
#: ../glib/gconvert.c:412
|
||||
#: ../glib/gconvert.c:490
|
||||
#: glib/gconvert.c:412 glib/gconvert.c:490
|
||||
#, c-format
|
||||
msgid "Could not open converter from '%s' to '%s'"
|
||||
msgstr "ვერ ხერხდება \"%s\" - \"%s\" გარდამქმნელის გახსნა"
|
||||
|
||||
#: ../glib/gconvert.c:606
|
||||
#: ../glib/gconvert.c:995
|
||||
#: ../glib/giochannel.c:1322
|
||||
#: ../glib/giochannel.c:1364
|
||||
#: ../glib/giochannel.c:2206
|
||||
#: ../glib/gutf8.c:943
|
||||
#: ../glib/gutf8.c:1392
|
||||
#: glib/gconvert.c:606 glib/gconvert.c:995 glib/giochannel.c:1322
|
||||
#: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943
|
||||
#: glib/gutf8.c:1392
|
||||
#, c-format
|
||||
msgid "Invalid byte sequence in conversion input"
|
||||
msgstr "შეტანილ ტექსტში ბაიტების მიმდევრობა მცდარია"
|
||||
|
||||
#: ../glib/gconvert.c:612
|
||||
#: ../glib/gconvert.c:922
|
||||
#: ../glib/giochannel.c:1329
|
||||
#: ../glib/giochannel.c:2218
|
||||
#: glib/gconvert.c:612 glib/gconvert.c:922 glib/giochannel.c:1329
|
||||
#: glib/giochannel.c:2218
|
||||
#, c-format
|
||||
msgid "Error during conversion: %s"
|
||||
msgstr "გარდაქმნის შეცდომა: %s"
|
||||
|
||||
#: ../glib/gconvert.c:647
|
||||
#: ../glib/gutf8.c:939
|
||||
#: ../glib/gutf8.c:1143
|
||||
#: ../glib/gutf8.c:1284
|
||||
#: ../glib/gutf8.c:1388
|
||||
#: glib/gconvert.c:647 glib/gutf8.c:939 glib/gutf8.c:1143 glib/gutf8.c:1284
|
||||
#: glib/gutf8.c:1388
|
||||
#, c-format
|
||||
msgid "Partial character sequence at end of input"
|
||||
msgstr "არასრული სიმბოლო შეტანის ტექსტის ბოლოს"
|
||||
|
||||
#: ../glib/gconvert.c:897
|
||||
#: glib/gconvert.c:897
|
||||
#, c-format
|
||||
msgid "Cannot convert fallback '%s' to codeset '%s'"
|
||||
msgstr "ვერ ხერხდება \"%s\" სიმბოლოს გარდაქმნა კოდირებაში \"%s\""
|
||||
|
||||
#: ../glib/gconvert.c:1706
|
||||
#: glib/gconvert.c:1706
|
||||
#, c-format
|
||||
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
|
||||
msgstr "URI \"%s\" არ გახლავთ აბსოლუტური იდენტიფიკატორი \"file\" სქემის გამოყენებისას"
|
||||
msgstr ""
|
||||
"URI \"%s\" არ გახლავთ აბსოლუტური იდენტიფიკატორი \"file\" სქემის გამოყენებისას"
|
||||
|
||||
#: ../glib/gconvert.c:1716
|
||||
#: glib/gconvert.c:1716
|
||||
#, c-format
|
||||
msgid "The local file URI '%s' may not include a '#'"
|
||||
msgstr "ლოკალური ფაილის URI იდენტიფიკატორი \"%s\" არ შეიძლება შეიცავდეს სიმბოლოს \"#\""
|
||||
msgstr ""
|
||||
"ლოკალური ფაილის URI იდენტიფიკატორი \"%s\" არ შეიძლება შეიცავდეს სიმბოლოს \"#"
|
||||
"\""
|
||||
|
||||
#: ../glib/gconvert.c:1733
|
||||
#: glib/gconvert.c:1733
|
||||
#, c-format
|
||||
msgid "The URI '%s' is invalid"
|
||||
msgstr "URI იდენტიფიკატორი \"%s\" მცდარია"
|
||||
|
||||
#: ../glib/gconvert.c:1745
|
||||
#: glib/gconvert.c:1745
|
||||
#, c-format
|
||||
msgid "The hostname of the URI '%s' is invalid"
|
||||
msgstr "URI იდენტიფიკატორის \"%s\" მასპინძლის სახელი მცდარია"
|
||||
|
||||
#: ../glib/gconvert.c:1761
|
||||
#: glib/gconvert.c:1761
|
||||
#, c-format
|
||||
msgid "The URI '%s' contains invalidly escaped characters"
|
||||
msgstr "URI იდენტიფიკატორი \"%s\" შეიცავ მცდარ საკონტროლო სიმბოლოებს"
|
||||
|
||||
#: ../glib/gconvert.c:1855
|
||||
#: glib/gconvert.c:1855
|
||||
#, c-format
|
||||
msgid "The pathname '%s' is not an absolute path"
|
||||
msgstr "გეზი \"%s\" აბსოლუტური არ გახლავთ"
|
||||
|
||||
#: ../glib/gconvert.c:1865
|
||||
#: glib/gconvert.c:1865
|
||||
#, c-format
|
||||
msgid "Invalid hostname"
|
||||
msgstr "მასპინძლის მცდარი სახელი"
|
||||
|
||||
#: ../glib/gdir.c:121
|
||||
#: ../glib/gdir.c:141
|
||||
#: glib/gdir.c:121 glib/gdir.c:141
|
||||
#, c-format
|
||||
msgid "Error opening directory '%s': %s"
|
||||
msgstr "შეცდომ \"%s\" დასტის გახსნისას: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:576
|
||||
#: ../glib/gfileutils.c:649
|
||||
#: glib/gfileutils.c:576 glib/gfileutils.c:649
|
||||
#, c-format
|
||||
msgid "Could not allocate %lu bytes to read file \"%s\""
|
||||
msgstr "ვერ ხერხდება %lu ბაიტის გამოყოფა \"%s\" ფაილის წასაკითხად"
|
||||
|
||||
#: ../glib/gfileutils.c:591
|
||||
#: glib/gfileutils.c:591
|
||||
#, c-format
|
||||
msgid "Error reading file '%s': %s"
|
||||
msgstr "ფაილის \"%s\" წაკითხვის შეცდომა: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:673
|
||||
#: glib/gfileutils.c:673
|
||||
#, c-format
|
||||
msgid "Failed to read from file '%s': %s"
|
||||
msgstr "ფაილიდან \"%s\" წაკითხვის შეცდომა: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:724
|
||||
#: ../glib/gfileutils.c:811
|
||||
#: glib/gfileutils.c:724 glib/gfileutils.c:811
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s': %s"
|
||||
msgstr "ფაილის \"%s\" გახსნის შეცდომა: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:741
|
||||
#: ../glib/gmappedfile.c:133
|
||||
#: glib/gfileutils.c:741 glib/gmappedfile.c:133
|
||||
#, c-format
|
||||
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
|
||||
msgstr "ფაილის \"%s\" ატრიბუტების წაკითხვის შეცდომა: ფუნქცია - fstat(): %s"
|
||||
|
||||
#: ../glib/gfileutils.c:775
|
||||
#: glib/gfileutils.c:775
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s': fdopen() failed: %s"
|
||||
msgstr "ფაილის \"%s\" გახსნის შეცდომა: ფუნქცია - fdopen(): %s"
|
||||
|
||||
#: ../glib/gfileutils.c:909
|
||||
#: glib/gfileutils.c:909
|
||||
#, c-format
|
||||
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
|
||||
msgstr "ვერ მოხერხდა '%s' ფაილის გადარქმევა - '%s': g_rename() ვერ შედგა: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:950
|
||||
#: ../glib/gfileutils.c:1415
|
||||
#: glib/gfileutils.c:950 glib/gfileutils.c:1415
|
||||
#, c-format
|
||||
msgid "Failed to create file '%s': %s"
|
||||
msgstr "ვერ ვქმნი '%s' ფაილს: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:964
|
||||
#: glib/gfileutils.c:964
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
|
||||
msgstr "ვერ ვხსნი '%s' ფაილს ჩასაწერად: fdopen() ვერ შედგა: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:989
|
||||
#: glib/gfileutils.c:989
|
||||
#, c-format
|
||||
msgid "Failed to write file '%s': fwrite() failed: %s"
|
||||
msgstr "ვერ ვწერ '%s' ფაილს: fwrite() ვერ შედგა: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1008
|
||||
#: glib/gfileutils.c:1008
|
||||
#, c-format
|
||||
msgid "Failed to close file '%s': fclose() failed: %s"
|
||||
msgstr "ვერ ვხურავ '%s' ფაილს: fclose() ვერ შედგა: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1126
|
||||
#: glib/gfileutils.c:1126
|
||||
#, c-format
|
||||
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
|
||||
msgstr "არსებული '%s' ფაილი ვერ ამოიშლება: g_unlink() ვერ შედგა: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1376
|
||||
#: glib/gfileutils.c:1376
|
||||
#, c-format
|
||||
msgid "Template '%s' invalid, should not contain a '%s'"
|
||||
msgstr "თარგი '%s' მცდარია და '%s'-ს არ უნდა შეიცავდეს"
|
||||
|
||||
#: ../glib/gfileutils.c:1390
|
||||
#: glib/gfileutils.c:1390
|
||||
#, c-format
|
||||
msgid "Template '%s' doesn't end with XXXXXX"
|
||||
msgstr " '%s' არ მთავრდება კონტექსტით XXXXXX"
|
||||
|
||||
#: ../glib/gfileutils.c:1865
|
||||
#: glib/gfileutils.c:1865
|
||||
#, c-format
|
||||
msgid "Failed to read the symbolic link '%s': %s"
|
||||
msgstr "სიმბოლური ბმის \"%s\" წაკითხვის შეცდომა: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1886
|
||||
#: glib/gfileutils.c:1886
|
||||
#, c-format
|
||||
msgid "Symbolic links not supported"
|
||||
msgstr "სიმბოლური ბმების გამოყენება არაა რეალიზებული"
|
||||
|
||||
#: ../glib/giochannel.c:1154
|
||||
#: glib/giochannel.c:1154
|
||||
#, c-format
|
||||
msgid "Could not open converter from '%s' to '%s': %s"
|
||||
msgstr "ვერ ხერხდება გარდამქმნელის გახსნა '%s' - '%s': %s"
|
||||
|
||||
#: ../glib/giochannel.c:1499
|
||||
#: glib/giochannel.c:1499
|
||||
#, c-format
|
||||
msgid "Can't do a raw read in g_io_channel_read_line_string"
|
||||
msgstr "უშუალოდ წაკითხვა ფუნქციაში g_io_channel_read_line_string ვერ ხერხდება"
|
||||
|
||||
#: ../glib/giochannel.c:1546
|
||||
#: ../glib/giochannel.c:1803
|
||||
#: ../glib/giochannel.c:1889
|
||||
#: glib/giochannel.c:1546 glib/giochannel.c:1803 glib/giochannel.c:1889
|
||||
#, c-format
|
||||
msgid "Leftover unconverted data in read buffer"
|
||||
msgstr "გარდაუქმნელი მონაცემები წაკითხვის ბუფერში დარჩა"
|
||||
|
||||
#: ../glib/giochannel.c:1626
|
||||
#: ../glib/giochannel.c:1703
|
||||
#: glib/giochannel.c:1626 glib/giochannel.c:1703
|
||||
#, c-format
|
||||
msgid "Channel terminates in a partial character"
|
||||
msgstr "არხი არასრული სიმბოლოთი იხურება"
|
||||
|
||||
#: ../glib/giochannel.c:1689
|
||||
#: glib/giochannel.c:1689
|
||||
#, c-format
|
||||
msgid "Can't do a raw read in g_io_channel_read_to_end"
|
||||
msgstr "უშუალოდ წაკითხვა ფუნქციაში 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:232
|
||||
#: glib/gmarkup.c:232
|
||||
#, c-format
|
||||
msgid "Error on line %d char %d: %s"
|
||||
msgstr "შეცდომა სტრიქონში %d სიმბოლო %d: %s"
|
||||
|
||||
#: ../glib/gmarkup.c:330
|
||||
#: glib/gmarkup.c:330
|
||||
#, c-format
|
||||
msgid "Error on line %d: %s"
|
||||
msgstr "შეცდომა სტრიქონში %d: %s"
|
||||
|
||||
#: ../glib/gmarkup.c:434
|
||||
msgid "Empty entity '&;' seen; valid entities are: & " < > '"
|
||||
msgstr "ცარიელი ერთეული \"&;\"; შესაძლო ერთეულებია: & " < > '"
|
||||
#: glib/gmarkup.c:434
|
||||
msgid ""
|
||||
"Empty entity '&;' seen; valid entities are: & " < > '"
|
||||
msgstr ""
|
||||
"ცარიელი ერთეული \"&;\"; შესაძლო ერთეულებია: & " < > '"
|
||||
|
||||
#: ../glib/gmarkup.c:444
|
||||
#: glib/gmarkup.c:444
|
||||
#, c-format
|
||||
msgid "Character '%s' is not valid at the start of an entity name; the & character begins an entity; if this ampersand isn't supposed to be an entity, escape it as &"
|
||||
msgstr "სიმბოლო \"%s\" დაუშვებელია ერთეულის დასაწყისში; ერთეულიიწყება \"&\" სიმბოლოთი; თუ ეს სიმბოლო სიმბოლო ერთეულის ნაწილი უნდა იყოს გამოსახეთ იგი, როგორც &"
|
||||
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\" დაუშვებელია ერთეულის დასაწყისში; ერთეულიიწყება \"&\" "
|
||||
"სიმბოლოთი; თუ ეს სიმბოლო სიმბოლო ერთეულის ნაწილი უნდა იყოს გამოსახეთ იგი, "
|
||||
"როგორც &"
|
||||
|
||||
#: ../glib/gmarkup.c:478
|
||||
#: glib/gmarkup.c:478
|
||||
#, c-format
|
||||
msgid "Character '%s' is not valid inside an entity name"
|
||||
msgstr "სიმბოლო \"%s\" ერთეულის სახელში დაუშვებელია"
|
||||
|
||||
#: ../glib/gmarkup.c:515
|
||||
#: glib/gmarkup.c:515
|
||||
#, c-format
|
||||
msgid "Entity name '%s' is not known"
|
||||
msgstr "ერთეულის სახელი \"%s\" უცნობია"
|
||||
|
||||
#: ../glib/gmarkup.c:526
|
||||
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:526
|
||||
msgid ""
|
||||
"Entity did not end with a semicolon; most likely you used an ampersand "
|
||||
"character without intending to start an entity - escape ampersand as &"
|
||||
msgstr ""
|
||||
"ერთეული არ მთავრდება წერტილ-მძიმით; როგორც ჩანს, სახელის დასაწყისში "
|
||||
"გამოყენებულია სიმბოლო \"&\". გამოსახეთ იგი, როგორც &"
|
||||
|
||||
#: ../glib/gmarkup.c:579
|
||||
#: glib/gmarkup.c:579
|
||||
#, 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', რომელშიც უნდა იყოს სიმბოლოს ნომერი (მაგალითად, ê): შესაძლოა რიცხვი მეტისმეტად დიდია"
|
||||
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:604
|
||||
#: glib/gmarkup.c:604
|
||||
#, c-format
|
||||
msgid "Character reference '%-.*s' does not encode a permitted character"
|
||||
msgstr "სიმბოლოს ნომერი '%-.*s' დაუშვებელია"
|
||||
|
||||
#: ../glib/gmarkup.c:619
|
||||
#: glib/gmarkup.c:619
|
||||
msgid "Empty character reference; should include a digit such as dž"
|
||||
msgstr "სიმბოლოს დამოწმება ცარიელია; იგი ნომერს უნდა შეიცავდეს, მაგალითად, dž"
|
||||
msgstr ""
|
||||
"სიმბოლოს დამოწმება ცარიელია; იგი ნომერს უნდა შეიცავდეს, მაგალითად, dž"
|
||||
|
||||
#: ../glib/gmarkup.c:629
|
||||
msgid "Character reference did not end with a semicolon; most likely you used an ampersand character without intending to start an entity - escape ampersand as &"
|
||||
msgstr "სიმბოლოს ნომერი არ მთავრდება წერტილ-მძიმით; როგორც ჩანს, სახელის დასაწყისში გამოყენებულია სიმბოლო \"&\". გამოსახეთ იგი, როგორც &"
|
||||
#: glib/gmarkup.c:629
|
||||
msgid ""
|
||||
"Character reference did not end with a semicolon; most likely you used an "
|
||||
"ampersand character without intending to start an entity - escape ampersand "
|
||||
"as &"
|
||||
msgstr ""
|
||||
"სიმბოლოს ნომერი არ მთავრდება წერტილ-მძიმით; როგორც ჩანს, სახელის დასაწყისში "
|
||||
"გამოყენებულია სიმბოლო \"&\". გამოსახეთ იგი, როგორც &"
|
||||
|
||||
#: ../glib/gmarkup.c:715
|
||||
#: glib/gmarkup.c:715
|
||||
msgid "Unfinished entity reference"
|
||||
msgstr "ერთეულის დამოწმება არაა დასრულებული"
|
||||
|
||||
#: ../glib/gmarkup.c:721
|
||||
#: glib/gmarkup.c:721
|
||||
msgid "Unfinished character reference"
|
||||
msgstr "სიმბოლოს დამოწმება არაა დასრულებული"
|
||||
|
||||
#: ../glib/gmarkup.c:964
|
||||
#: ../glib/gmarkup.c:992
|
||||
#: ../glib/gmarkup.c:1023
|
||||
#: glib/gmarkup.c:964 glib/gmarkup.c:992 glib/gmarkup.c:1023
|
||||
msgid "Invalid UTF-8 encoded text"
|
||||
msgstr "ტექსტის მცდარი UTF-8 კოდირება"
|
||||
|
||||
#: ../glib/gmarkup.c:1059
|
||||
#: glib/gmarkup.c:1059
|
||||
msgid "Document must begin with an element (e.g. <book>)"
|
||||
msgstr "დოკუმენტი უნდა დაიწყოს ელემეტით (მაგალითად <book>)"
|
||||
|
||||
#: ../glib/gmarkup.c:1099
|
||||
#: glib/gmarkup.c:1099
|
||||
#, c-format
|
||||
msgid "'%s' is not a valid character following a '<' character; it may not begin an element name"
|
||||
msgstr "სიმბოლო \"%s\" დაუშვებელია \"<\" სიმბოლოს შემდეგ; ამ სიმბოლოთი ელემენტის სახელის დაწყება არ შეიძლება"
|
||||
msgid ""
|
||||
"'%s' is not a valid character following a '<' character; it may not begin an "
|
||||
"element name"
|
||||
msgstr ""
|
||||
"სიმბოლო \"%s\" დაუშვებელია \"<\" სიმბოლოს შემდეგ; ამ სიმბოლოთი ელემენტის "
|
||||
"სახელის დაწყება არ შეიძლება"
|
||||
|
||||
#: ../glib/gmarkup.c:1163
|
||||
#: glib/gmarkup.c:1163
|
||||
#, c-format
|
||||
msgid "Odd character '%s', expected a '>' character to end the start tag of element '%s'"
|
||||
msgstr "ზედმეტი სიმბოლო \"%s\", მოსალოდნელია \">\" სიმბოლო ელემენტის \"%s\" ჭდის დასახურად"
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '>' character to end the start tag of element "
|
||||
"'%s'"
|
||||
msgstr ""
|
||||
"ზედმეტი სიმბოლო \"%s\", მოსალოდნელია \">\" სიმბოლო ელემენტის \"%s\" ჭდის "
|
||||
"დასახურად"
|
||||
|
||||
#: ../glib/gmarkup.c:1252
|
||||
#: glib/gmarkup.c:1252
|
||||
#, c-format
|
||||
msgid "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
|
||||
msgstr "ზედმეტი სიმბოლო \"%s\", მოსალოდნელია \"=\"ატრიბუტის სახელის \"%s\" შემდეგ ელემენტისთვის \"%s\""
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
|
||||
msgstr ""
|
||||
"ზედმეტი სიმბოლო \"%s\", მოსალოდნელია \"=\"ატრიბუტის სახელის \"%s\" შემდეგ "
|
||||
"ელემენტისთვის \"%s\""
|
||||
|
||||
#: ../glib/gmarkup.c:1294
|
||||
#: glib/gmarkup.c:1294
|
||||
#, c-format
|
||||
msgid "Odd character '%s', expected a '>' or '/' character to end the start tag of element '%s', or optionally an attribute; perhaps you used an invalid character in an attribute name"
|
||||
msgstr "ზედმეტი სიმბოლო \"%s\", მოსალოდნელია \">\" ან \"/\" ელემენტის \"%s\" გამხსნელი ჭდის დასახურად ან დამატებითი ატრიბუტი; ასევე, შესაძლოა მცდარი სიმბოლო ატრიბუტის სახელში"
|
||||
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\" "
|
||||
"გამხსნელი ჭდის დასახურად ან დამატებითი ატრიბუტი; ასევე, შესაძლოა მცდარი "
|
||||
"სიმბოლო ატრიბუტის სახელში"
|
||||
|
||||
#: ../glib/gmarkup.c:1383
|
||||
#: glib/gmarkup.c:1383
|
||||
#, 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\""
|
||||
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:1528
|
||||
#: glib/gmarkup.c:1528
|
||||
#, c-format
|
||||
msgid "'%s' is not a valid character following the characters '</'; '%s' may not begin an element name"
|
||||
msgstr "სიმბოლო \"%s\" დაუშვებელია \"</\" შემდეგ; სიმბოლო \"%s\" არ შეიძლება იყოს ელემენტის სახელის დასაწყისში"
|
||||
msgid ""
|
||||
"'%s' is not a valid character following the characters '</'; '%s' may not "
|
||||
"begin an element name"
|
||||
msgstr ""
|
||||
"სიმბოლო \"%s\" დაუშვებელია \"</\" შემდეგ; სიმბოლო \"%s\" არ შეიძლება იყოს "
|
||||
"ელემენტის სახელის დასაწყისში"
|
||||
|
||||
#: ../glib/gmarkup.c:1568
|
||||
#: glib/gmarkup.c:1568
|
||||
#, c-format
|
||||
msgid "'%s' is not a valid character following the close element name '%s'; the allowed character is '>'"
|
||||
msgstr "სიმბოლო \"%s\" დაუშვებელია ელემენტის \"%s\" დახურვის ჭდის შემდეგ; დასაშვები სიმბოლოა \">\""
|
||||
msgid ""
|
||||
"'%s' is not a valid character following the close element name '%s'; the "
|
||||
"allowed character is '>'"
|
||||
msgstr ""
|
||||
"სიმბოლო \"%s\" დაუშვებელია ელემენტის \"%s\" დახურვის ჭდის შემდეგ; დასაშვები "
|
||||
"სიმბოლოა \">\""
|
||||
|
||||
#: ../glib/gmarkup.c:1579
|
||||
#: glib/gmarkup.c:1579
|
||||
#, c-format
|
||||
msgid "Element '%s' was closed, no element is currently open"
|
||||
msgstr "ელემენტი \"%s\" დაიხურა, არცერთი ელემენტი არაა გახსნილი"
|
||||
|
||||
#: ../glib/gmarkup.c:1588
|
||||
#: glib/gmarkup.c:1588
|
||||
#, c-format
|
||||
msgid "Element '%s' was closed, but the currently open element is '%s'"
|
||||
msgstr "ელემენტი \"%s\" დაიხურა, მაგრამ გახსნილია ელემენტი \"%s\""
|
||||
|
||||
#: ../glib/gmarkup.c:1735
|
||||
#: glib/gmarkup.c:1735
|
||||
msgid "Document was empty or contained only whitespace"
|
||||
msgstr "დოკუმენტი ცარიელია ან მხოლოდ ხარეებს შეიცავს"
|
||||
|
||||
#: ../glib/gmarkup.c:1749
|
||||
#: glib/gmarkup.c:1749
|
||||
msgid "Document ended unexpectedly just after an open angle bracket '<'"
|
||||
msgstr "დოკუმენტი დასრულდა უშუალოდ კუთხოვანი ფრჩხილის \"<\" შემდეგ"
|
||||
|
||||
#: ../glib/gmarkup.c:1757
|
||||
#: ../glib/gmarkup.c:1801
|
||||
#: glib/gmarkup.c:1757 glib/gmarkup.c:1801
|
||||
#, c-format
|
||||
msgid "Document ended unexpectedly with elements still open - '%s' was the last element opened"
|
||||
msgstr "დოკუმენტი მოულოდნელად დასრულდა გახსნილი ელემენტებით - \"%s\" ბოლო გახსნილი ელემენტია"
|
||||
msgid ""
|
||||
"Document ended unexpectedly with elements still open - '%s' was the last "
|
||||
"element opened"
|
||||
msgstr ""
|
||||
"დოკუმენტი მოულოდნელად დასრულდა გახსნილი ელემენტებით - \"%s\" ბოლო გახსნილი "
|
||||
"ელემენტია"
|
||||
|
||||
#: ../glib/gmarkup.c:1765
|
||||
#: glib/gmarkup.c:1765
|
||||
#, c-format
|
||||
msgid "Document ended unexpectedly, expected to see a close angle bracket ending the tag <%s/>"
|
||||
msgstr "დოკუმენტი მოულოდნელად დასრულდა, მოსალოდნელია ჩამკეტი კუთხოვანი ფრჩხილი <%s/>"
|
||||
msgid ""
|
||||
"Document ended unexpectedly, expected to see a close angle bracket ending "
|
||||
"the tag <%s/>"
|
||||
msgstr ""
|
||||
"დოკუმენტი მოულოდნელად დასრულდა, მოსალოდნელია ჩამკეტი კუთხოვანი ფრჩხილი <%s/>"
|
||||
|
||||
#: ../glib/gmarkup.c:1771
|
||||
#: glib/gmarkup.c:1771
|
||||
msgid "Document ended unexpectedly inside an element name"
|
||||
msgstr "დოკუმენტი მოულოდნელად დასრულდა ელემენტის სახელის შიგნით"
|
||||
|
||||
#: ../glib/gmarkup.c:1776
|
||||
#: glib/gmarkup.c:1776
|
||||
msgid "Document ended unexpectedly inside an attribute name"
|
||||
msgstr "დოკუმენტი მოულოდნელად დასრულდა ატრიბუტის სახელის შიგნით"
|
||||
|
||||
#: ../glib/gmarkup.c:1781
|
||||
#: glib/gmarkup.c:1781
|
||||
msgid "Document ended unexpectedly inside an element-opening tag."
|
||||
msgstr "დოკუმენტი მოულოდნელად დასრულდა ელემენტის გამხსნელი ჭდის შიგნით."
|
||||
|
||||
#: ../glib/gmarkup.c:1787
|
||||
msgid "Document ended unexpectedly after the equals sign following an attribute name; no attribute value"
|
||||
msgstr "დოკუმენტი მოულოდნელად დასრულდა ატრიბუტის სახელის შემდგომი ტოლობის ნიშნის შემდეგ; ატრიბუტის მნიშვნელობა არ მითითებულა"
|
||||
#: glib/gmarkup.c:1787
|
||||
msgid ""
|
||||
"Document ended unexpectedly after the equals sign following an attribute "
|
||||
"name; no attribute value"
|
||||
msgstr ""
|
||||
"დოკუმენტი მოულოდნელად დასრულდა ატრიბუტის სახელის შემდგომი ტოლობის ნიშნის "
|
||||
"შემდეგ; ატრიბუტის მნიშვნელობა არ მითითებულა"
|
||||
|
||||
#: ../glib/gmarkup.c:1794
|
||||
#: glib/gmarkup.c:1794
|
||||
msgid "Document ended unexpectedly while inside an attribute value"
|
||||
msgstr "დოკუმენტი მოულოდნელად დასრულდა ატრიბუტის მნიშვნელობის შიგნით"
|
||||
|
||||
#: ../glib/gmarkup.c:1809
|
||||
#: glib/gmarkup.c:1809
|
||||
#, c-format
|
||||
msgid "Document ended unexpectedly inside the close tag for element '%s'"
|
||||
msgstr "დოკუმენტი მოულოდნელად დასრულდა ელემენტის \"%s\" ჩამკეტი ჭდის შიგნით"
|
||||
|
||||
#: ../glib/gmarkup.c:1815
|
||||
#: glib/gmarkup.c:1815
|
||||
msgid "Document ended unexpectedly inside a comment or processing instruction"
|
||||
msgstr "დოკუმენტი მოულოდნელად დასრულდა კომენტარის ან დამუშავების ინსტრუქციის შიგნით"
|
||||
msgstr ""
|
||||
"დოკუმენტი მოულოდნელად დასრულდა კომენტარის ან დამუშავების ინსტრუქციის შიგნით"
|
||||
|
||||
#: ../glib/gshell.c:73
|
||||
#: glib/gshell.c:73
|
||||
#, c-format
|
||||
msgid "Quoted text doesn't begin with a quotation mark"
|
||||
msgstr "ციტირებული ტექსტი ბრჭყალებით არ იწყება"
|
||||
|
||||
#: ../glib/gshell.c:163
|
||||
#: glib/gshell.c:163
|
||||
#, c-format
|
||||
msgid "Unmatched quotation mark in command line or other shell-quoted text"
|
||||
msgstr "უმართებლო ბრჭყალი ბრძანებაში ან სხვა ტექსტურ გარსში"
|
||||
|
||||
#: ../glib/gshell.c:541
|
||||
#: glib/gshell.c:541
|
||||
#, c-format
|
||||
msgid "Text ended just after a '\\' character. (The text was '%s')"
|
||||
msgstr "ტექსტი დასრულდა უშუალოდ \"\\\" სიმბოლოს შემდეგ. (ტექსტი - \"%s\")"
|
||||
|
||||
#: ../glib/gshell.c:548
|
||||
#: glib/gshell.c:548
|
||||
#, c-format
|
||||
msgid "Text ended before matching quote was found for %c. (The text was '%s')"
|
||||
msgstr "ტექსტი დასრულდა %c შესაბამისი ბრჭყალის წინ. (ტექსტი - \"%s\")"
|
||||
|
||||
#: ../glib/gshell.c:560
|
||||
#: glib/gshell.c:560
|
||||
#, c-format
|
||||
msgid "Text was empty (or contained only whitespace)"
|
||||
msgstr "ტექსტი ცარიელი იყო (ან მხოლოდ ხარეებს შეიცავდა)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:276
|
||||
#: glib/gspawn-win32.c:276
|
||||
#, c-format
|
||||
msgid "Failed to read data from child process"
|
||||
msgstr "მონაცემთა წაკითხვა ქვეპროცესიდან ვერ მოხერხდა"
|
||||
|
||||
#: ../glib/gspawn-win32.c:291
|
||||
#: ../glib/gspawn.c:1364
|
||||
#: glib/gspawn-win32.c:291 glib/gspawn.c:1364
|
||||
#, c-format
|
||||
msgid "Failed to create pipe for communicating with child process (%s)"
|
||||
msgstr "არხის შექმნა ქვეპროცესთან დასაკავშირებლად ვერ მოხერხდა (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:329
|
||||
#: ../glib/gspawn.c:1028
|
||||
#: glib/gspawn-win32.c:329 glib/gspawn.c:1028
|
||||
#, c-format
|
||||
msgid "Failed to read from child pipe (%s)"
|
||||
msgstr "მონაცემთა წაკითხვა ქვეპროცესის არხიდან ვერ მოხერხდა (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:355
|
||||
#: ../glib/gspawn.c:1233
|
||||
#: glib/gspawn-win32.c:355 glib/gspawn.c:1233
|
||||
#, c-format
|
||||
msgid "Failed to change to directory '%s' (%s)"
|
||||
msgstr "დასტის შექმნა ვერ მოხერხდა \"%s\" (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:361
|
||||
#: ../glib/gspawn-win32.c:581
|
||||
#: glib/gspawn-win32.c:361 glib/gspawn-win32.c:581
|
||||
#, c-format
|
||||
msgid "Failed to execute child process (%s)"
|
||||
msgstr "ქვეპროცესის გამოყენება ვერ მოხერხდა (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:471
|
||||
#: ../glib/gspawn-win32.c:527
|
||||
#: glib/gspawn-win32.c:471 glib/gspawn-win32.c:527
|
||||
#, c-format
|
||||
msgid "Invalid program name: %s"
|
||||
msgstr "პროგრამის მცდარი სახელი: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:481
|
||||
#: ../glib/gspawn-win32.c:537
|
||||
#: ../glib/gspawn-win32.c:780
|
||||
#: ../glib/gspawn-win32.c:835
|
||||
#: ../glib/gspawn-win32.c:1370
|
||||
#: glib/gspawn-win32.c:481 glib/gspawn-win32.c:537 glib/gspawn-win32.c:780
|
||||
#: glib/gspawn-win32.c:835 glib/gspawn-win32.c:1370
|
||||
#, c-format
|
||||
msgid "Invalid string in argument vector at %d: %s"
|
||||
msgstr "მცდარი სტრიქონი არგუმენტის ვექტორში - %d: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:492
|
||||
#: ../glib/gspawn-win32.c:548
|
||||
#: ../glib/gspawn-win32.c:794
|
||||
#: ../glib/gspawn-win32.c:848
|
||||
#: ../glib/gspawn-win32.c:1403
|
||||
#: glib/gspawn-win32.c:492 glib/gspawn-win32.c:548 glib/gspawn-win32.c:794
|
||||
#: glib/gspawn-win32.c:848 glib/gspawn-win32.c:1403
|
||||
#, c-format
|
||||
msgid "Invalid string in environment: %s"
|
||||
msgstr "მცდარი სტრიქონი გარემოში: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:776
|
||||
#: ../glib/gspawn-win32.c:831
|
||||
#: ../glib/gspawn-win32.c:1351
|
||||
#: glib/gspawn-win32.c:776 glib/gspawn-win32.c:831 glib/gspawn-win32.c:1351
|
||||
#, c-format
|
||||
msgid "Invalid working directory: %s"
|
||||
msgstr "უმართებლო სამუშაო დასტა: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:890
|
||||
#: glib/gspawn-win32.c:890
|
||||
#, c-format
|
||||
msgid "Failed to execute helper program (%s)"
|
||||
msgstr "დახმარების პროგრამის (%s) გამოყენება ვერ მოხერხდა"
|
||||
|
||||
#: ../glib/gspawn-win32.c:1090
|
||||
msgid "Unexpected error in g_io_channel_win32_poll() reading data from a child process"
|
||||
msgstr "მოულოდნელი შეცდომა ფუნქციაში g_io_channel_win32_poll() ქვეპროცესიდან მონაცემთა წაკითხვისას"
|
||||
#: glib/gspawn-win32.c:1090
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Unexpected error in g_io_channel_win32_poll() reading data from a child "
|
||||
"process"
|
||||
msgstr ""
|
||||
"მოულოდნელი შეცდომა ფუნქციაში g_io_channel_win32_poll() ქვეპროცესიდან "
|
||||
"მონაცემთა წაკითხვისას"
|
||||
|
||||
#: ../glib/gspawn.c:168
|
||||
#: glib/gspawn.c:168
|
||||
#, c-format
|
||||
msgid "Failed to read data from child process (%s)"
|
||||
msgstr "მონაცემთა წაკითხვა ქვეპროცესიდან ვერ მოხერხდა (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:300
|
||||
#: glib/gspawn.c:300
|
||||
#, c-format
|
||||
msgid "Unexpected error in select() reading data from a child process (%s)"
|
||||
msgstr "მოულოდნელი შეცდომა ფუნქციაში select() ქვეპროცესიდან მონაცემთა წაკითხვისას (%s)"
|
||||
msgstr ""
|
||||
"მოულოდნელი შეცდომა ფუნქციაში select() ქვეპროცესიდან მონაცემთა წაკითხვისას (%"
|
||||
"s)"
|
||||
|
||||
#: ../glib/gspawn.c:383
|
||||
#: glib/gspawn.c:383
|
||||
#, c-format
|
||||
msgid "Unexpected error in waitpid() (%s)"
|
||||
msgstr "მოულოდნელი შეცდომა ფუნქციაში waitpid() (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1093
|
||||
#: glib/gspawn.c:1093
|
||||
#, c-format
|
||||
msgid "Failed to fork (%s)"
|
||||
msgstr "განტოტების შეცდომა (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1243
|
||||
#: glib/gspawn.c:1243
|
||||
#, c-format
|
||||
msgid "Failed to execute child process \"%s\" (%s)"
|
||||
msgstr "ქვეპროცესის გამოყენება ვერ მოხერხდა \"%s\" (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1253
|
||||
#: glib/gspawn.c:1253
|
||||
#, c-format
|
||||
msgid "Failed to redirect output or input of child process (%s)"
|
||||
msgstr "ქვეპროცესში შეტანის ან მიღების გადამისამართება გამოყენება ვერ მოხერხდა (%s)"
|
||||
msgstr ""
|
||||
"ქვეპროცესში შეტანის ან მიღების გადამისამართება გამოყენება ვერ მოხერხდა (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1262
|
||||
#: glib/gspawn.c:1262
|
||||
#, c-format
|
||||
msgid "Failed to fork child process (%s)"
|
||||
msgstr "ქვეპროცესის განტოტების შეცდომა (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1270
|
||||
#: glib/gspawn.c:1270
|
||||
#, c-format
|
||||
msgid "Unknown error executing child process \"%s\""
|
||||
msgstr "ქვეპროცესის უცნობი შეცდომა \"%s\""
|
||||
|
||||
#: ../glib/gspawn.c:1292
|
||||
#: glib/gspawn.c:1292
|
||||
#, c-format
|
||||
msgid "Failed to read enough data from child pid pipe (%s)"
|
||||
msgstr "ქვეპროცესის არხიდან საკმარის მონაცემთა წაკითხვა ვერ მოხერხდა (%s)"
|
||||
|
||||
#: ../glib/gutf8.c:1017
|
||||
#: glib/gutf8.c:1017
|
||||
#, c-format
|
||||
msgid "Character out of range for UTF-8"
|
||||
msgstr "სიმბოლო UTF-8 რანგს გარეთაა"
|
||||
|
||||
#: ../glib/gutf8.c:1111
|
||||
#: ../glib/gutf8.c:1120
|
||||
#: ../glib/gutf8.c:1252
|
||||
#: ../glib/gutf8.c:1261
|
||||
#: ../glib/gutf8.c:1402
|
||||
#: ../glib/gutf8.c:1498
|
||||
#: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 glib/gutf8.c:1261
|
||||
#: glib/gutf8.c:1402 glib/gutf8.c:1498
|
||||
#, c-format
|
||||
msgid "Invalid sequence in conversion input"
|
||||
msgstr "შეტანის ტექსტის გარდაქმნის მცდარი მიმდევრობა"
|
||||
|
||||
#: ../glib/gutf8.c:1413
|
||||
#: ../glib/gutf8.c:1509
|
||||
#: glib/gutf8.c:1413 glib/gutf8.c:1509
|
||||
#, c-format
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "სიმბოლო UTF-16 რანგს გარეთაა"
|
||||
|
||||
#: ../glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "გამოყენება:"
|
||||
|
||||
#: ../glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[ოპცია...]"
|
||||
|
||||
#: ../glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "დახმარების პარამეტრები:"
|
||||
|
||||
#: ../glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "დახმარების პარამეტრების ჩვენება"
|
||||
|
||||
#: ../glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "დახმარების ყველა პარამეტრის ჩვენება"
|
||||
|
||||
#: ../glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "პროგრამის პარამეტრები:"
|
||||
|
||||
#: ../glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "ვერ ვახერხებ მნიშვნელობის წაკითხვას '%s' ელემენტისთვის %s"
|
||||
|
||||
#: ../glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "მთელი მნიშვნელობა '%s' ელემენტისთვის %s რანგს გარეთაა"
|
||||
|
||||
#: ../glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "გარდაქმნის პარამეტრის შეცდომა: %s"
|
||||
|
||||
#: ../glib/goption.c:959
|
||||
#: ../glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "მცდარი არგუმენტი - %s"
|
||||
|
||||
#: ../glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "უცნობი პარამეტრი %s"
|
||||
|
||||
#: ../glib/gkeyfile.c:339
|
||||
#: glib/gkeyfile.c:339
|
||||
#, c-format
|
||||
msgid "Valid key file could not be found in data dirs"
|
||||
msgstr "მონაცემთა დასტებში მართებული საკვანძო ფაილი ვერ მოიძებნა"
|
||||
|
||||
#: ../glib/gkeyfile.c:374
|
||||
#: glib/gkeyfile.c:374
|
||||
#, c-format
|
||||
msgid "Not a regular file"
|
||||
msgstr "ფაილი ჩვეულებრივი არაა"
|
||||
|
||||
#: ../glib/gkeyfile.c:382
|
||||
#: glib/gkeyfile.c:382
|
||||
#, c-format
|
||||
msgid "File is empty"
|
||||
msgstr "ფაილი ცარიელია"
|
||||
|
||||
#: ../glib/gkeyfile.c:697
|
||||
#: glib/gkeyfile.c:697
|
||||
#, c-format
|
||||
msgid "Key file contains line '%s' which is not a key-value pair, group, or comment"
|
||||
msgstr "საკვანძო ფაილი '%s' შეიცავს სტრიქონს, რომელიც არ წარმოადგენს კოდურ წყვილს, ჯგუფს ან კომენტარს"
|
||||
msgid ""
|
||||
"Key file contains line '%s' which is not a key-value pair, group, or comment"
|
||||
msgstr ""
|
||||
"საკვანძო ფაილი '%s' შეიცავს სტრიქონს, რომელიც არ წარმოადგენს კოდურ წყვილს, "
|
||||
"ჯგუფს ან კომენტარს"
|
||||
|
||||
#: ../glib/gkeyfile.c:765
|
||||
#: glib/gkeyfile.c:765
|
||||
#, c-format
|
||||
msgid "Key file does not start with a group"
|
||||
msgstr "საკვანძო ფაილი ჯგუფით არ იწყება"
|
||||
|
||||
#: ../glib/gkeyfile.c:808
|
||||
#: glib/gkeyfile.c:808
|
||||
#, c-format
|
||||
msgid "Key file contains unsupported encoding '%s'"
|
||||
msgstr "საკვანძო ფაილი შეიცავს არარეალიზებულ კოდირებას '%s'"
|
||||
|
||||
#: ../glib/gkeyfile.c:1017
|
||||
#: ../glib/gkeyfile.c:1176
|
||||
#: ../glib/gkeyfile.c:2177
|
||||
#: ../glib/gkeyfile.c:2242
|
||||
#: ../glib/gkeyfile.c:2361
|
||||
#: ../glib/gkeyfile.c:2497
|
||||
#: ../glib/gkeyfile.c:2649
|
||||
#: ../glib/gkeyfile.c:2823
|
||||
#: ../glib/gkeyfile.c:2880
|
||||
#: glib/gkeyfile.c:1017 glib/gkeyfile.c:1176 glib/gkeyfile.c:2177
|
||||
#: glib/gkeyfile.c:2242 glib/gkeyfile.c:2361 glib/gkeyfile.c:2497
|
||||
#: glib/gkeyfile.c:2649 glib/gkeyfile.c:2823 glib/gkeyfile.c:2880
|
||||
#, c-format
|
||||
msgid "Key file does not have group '%s'"
|
||||
msgstr "საკვანძო ფაილი არ შეიცავს ჯგუფებს '%s'"
|
||||
|
||||
#: ../glib/gkeyfile.c:1188
|
||||
#: glib/gkeyfile.c:1188
|
||||
#, c-format
|
||||
msgid "Key file does not have key '%s'"
|
||||
msgstr "საკვანძო ფაილი არ შეიცავს კოდს '%s'"
|
||||
|
||||
#: ../glib/gkeyfile.c:1289
|
||||
#: ../glib/gkeyfile.c:1398
|
||||
#: glib/gkeyfile.c:1289 glib/gkeyfile.c:1398
|
||||
#, c-format
|
||||
msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
|
||||
msgstr "საკვანძო ფაილი შეიცავს კოდს '%s', რომლის მნიშვნელობაც '%s' არაა UTF-8 კოდირებაში"
|
||||
msgstr ""
|
||||
"საკვანძო ფაილი შეიცავს კოდს '%s', რომლის მნიშვნელობაც '%s' არაა UTF-8 "
|
||||
"კოდირებაში"
|
||||
|
||||
#: ../glib/gkeyfile.c:1307
|
||||
#: ../glib/gkeyfile.c:1416
|
||||
#: ../glib/gkeyfile.c:1788
|
||||
#: glib/gkeyfile.c:1307 glib/gkeyfile.c:1416 glib/gkeyfile.c:1788
|
||||
#, c-format
|
||||
msgid "Key file contains key '%s' which has value that cannot be interpreted."
|
||||
msgstr "საკვანძო ფაილი შეიცავს კოდს '%s', რომლის მნიშვნელობაც ვერ იშიფრება."
|
||||
|
||||
#: ../glib/gkeyfile.c:2004
|
||||
#: glib/gkeyfile.c:2004
|
||||
#, c-format
|
||||
msgid "Key file contains key '%s' in group '%s' which has value that cannot be interpreted."
|
||||
msgstr "საკვანძო ფაილი შეიცავს კოდს '%s' ჯგუფში '%s', რომლის მნიშვნელობაც ვერ იშიფრება."
|
||||
msgid ""
|
||||
"Key file contains key '%s' in group '%s' which has value that cannot be "
|
||||
"interpreted."
|
||||
msgstr ""
|
||||
"საკვანძო ფაილი შეიცავს კოდს '%s' ჯგუფში '%s', რომლის მნიშვნელობაც ვერ "
|
||||
"იშიფრება."
|
||||
|
||||
#: ../glib/gkeyfile.c:2192
|
||||
#: ../glib/gkeyfile.c:2376
|
||||
#: ../glib/gkeyfile.c:2891
|
||||
#: glib/gkeyfile.c:2192 glib/gkeyfile.c:2376 glib/gkeyfile.c:2891
|
||||
#, c-format
|
||||
msgid "Key file does not have key '%s' in group '%s'"
|
||||
msgstr "საკვანძო ფაილი არ შეიცავს კოდს '%s' ჯგუფში '%s'"
|
||||
|
||||
#: ../glib/gkeyfile.c:3067
|
||||
#: glib/gkeyfile.c:3067
|
||||
#, c-format
|
||||
msgid "Key file contains escape character at end of line"
|
||||
msgstr "საკვანძო ფაილი სტრიქონის ბოლოს შეიცავს escape სიმბოლოს"
|
||||
|
||||
#: ../glib/gkeyfile.c:3089
|
||||
#: glib/gkeyfile.c:3089
|
||||
#, c-format
|
||||
msgid "Key file contains invalid escape sequence '%s'"
|
||||
msgstr "საკვანძო ფაილი შეიცავს მცდარ escape მიმდევრობას '%s'"
|
||||
|
||||
#: ../glib/gkeyfile.c:3230
|
||||
#: glib/gkeyfile.c:3230
|
||||
#, c-format
|
||||
msgid "Value '%s' cannot be interpreted as a number."
|
||||
msgstr "მნიშვნელობა '%s' ვერ აღიქმება როგორც რიცხვი."
|
||||
|
||||
#: ../glib/gkeyfile.c:3240
|
||||
#: glib/gkeyfile.c:3240
|
||||
#, c-format
|
||||
msgid "Integer value '%s' out of range"
|
||||
msgstr "მთელი მნიშვნელობა '%s' რანგს გარეთაა"
|
||||
|
||||
#: ../glib/gkeyfile.c:3270
|
||||
#: glib/gkeyfile.c:3270
|
||||
#, c-format
|
||||
msgid "Value '%s' cannot be interpreted as a boolean."
|
||||
msgstr "მნიშვნელობა '%s' ვერ აღიქმება როგორც ლოგიკური ოპერატორი."
|
||||
|
||||
|
24
po/ko.po
24
po/ko.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.9.6.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-28 03:35+0900\n"
|
||||
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
|
||||
"Language-Team: GNOME Korea <gnome-kr-hackers@lists.kldp.net>\n"
|
||||
@ -581,51 +581,51 @@ msgstr "변환 입력에서 잘못된 순서"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "UTF-16 범위 밖의 문자"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "사용법:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[옵션...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "도움말 옵션:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "도움말 옵션을 봅니다"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "모든 도움말 옵션을 봅니다"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "프로그램 옵션:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "%2$s에 대한 정수 값 '%1$s'을(를) 분석할 수 없습니다"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "%2$s에 대한 정수 값 '%1$s'이(가) 범위를 벗어났습니다"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "옵션 읽는 중에 오류: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "%s에 대한 인자가 빠졌습니다"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "알 수 없는 옵션 %s"
|
||||
|
24
po/ku.po
24
po/ku.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.glib-2-8\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2005-09-17 20:30+0200\n"
|
||||
"Last-Translator: Erdal Ronahi <erdal.ronahi@gmail.com, pckurd@hotmail.com>\n"
|
||||
"Language-Team: Kurdish <gnu-ku-wergerandin@lists.sourceforge.net>\n"
|
||||
@ -541,51 +541,51 @@ msgstr ""
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Bikaranîn:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr ""
|
||||
|
24
po/lt.po
24
po/lt.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-02-25 10:54+0200\n"
|
||||
"Last-Translator: Žygimantas Beručka <zygis@gnome.org>\n"
|
||||
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
|
||||
@ -589,51 +589,51 @@ msgstr "Klaidinga seka keitimo įvestyje"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Simbolis neatitinka UTF-16 simbolių diapazono"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Naudojimas:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[PARINKTIS...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Pagalbos parinktys:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Rodyti pagalbos parinktis"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Rodyti visas pagalbos parinktis"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Programos parinktys:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Nepavyko apdoroti sveikosios reikšmės „%s“, reikalingos %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Sveikoji reikšmė „%s“, reikalinga %s, viršija ribas"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Klaida apdorojant parinktį %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "%s trūksta argumento"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Nežinoma parinktis %s"
|
||||
|
24
po/lv.po
24
po/lv.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
@ -574,51 +574,51 @@ msgstr "Nepareiza secība konversijas ievadē "
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Rakstzīme nav UTF-16 laukā"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Kļūda konversējot: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr ""
|
||||
|
24
po/mk.po
24
po/mk.po
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mk\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-03-02 16:03+0100\n"
|
||||
"Last-Translator: Arangel Angov <ufo@linux.net.mk>\n"
|
||||
"Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"
|
||||
@ -591,51 +591,51 @@ msgstr "Невалидна секвенца во излезот од конве
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Карактерот е надвор од опсег за UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Употреба:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[ОПЦИЈА...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Опции за помош:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Покажи ги сите опции за помош"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Покажи ги сите опции за помош"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Опции на апликацијата:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Не можам да парсирам вредност за целобројната вредност '%s' за %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Вредноста на целиот број '%s' за %s е надвор од опсегот"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Грешка при парсирањето на опцијата %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Недостига аргумент за %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Непозната опција '%s'·"
|
||||
|
24
po/ml.po
24
po/ml.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version:glib.glib-2-2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2003-07-05 10:29+0530\n"
|
||||
"Last-Translator: FSF-India <locale@gnu.org.in>\n"
|
||||
"Language-Team: Malayalam <locale@gnu.org.in>\n"
|
||||
@ -560,51 +560,51 @@ msgstr "അസാധു ശ്രേണി"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "ഇടേണ്ട അക്ഷരങ്ങള്"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "സൂചകം നിറയ്ക്കുന്നതില് പരാജയം : %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr ""
|
||||
|
24
po/mn.po
24
po/mn.po
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
@ -594,51 +594,51 @@ msgstr "Хөрвүүлэлтийн оролтод хүчингүй дараал
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "UTF-16 хязгаараас гаднах тэмдэгт"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Хэрэглээ:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPTION...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Тусламж:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Тусламж харуулах"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Бүх тусламж харуулах"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Програм:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, fuzzy, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "'%s' бүхэл тоог --%s -н хувьд шинжлэх боломжгүй"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "'%s' бүхэл %s -н хувьд хязгаараас хальжээ"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Хөрвүүлж байхад алдаа: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Тодорхойгүй утга %s"
|
||||
|
24
po/ms.po
24
po/ms.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
@ -571,51 +571,51 @@ msgstr "Turutan tidak sah semasa penukaran input"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Aksara di luar julat UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Ralat semasa penukaran: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr ""
|
||||
|
24
po/nb.po
24
po/nb.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.9.x\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-02 00:32+0100\n"
|
||||
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
|
||||
"Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\n"
|
||||
@ -576,51 +576,51 @@ msgstr "Ugyldig sekvens i inndata for konvertering"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Tegn utenfor gyldig område for UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Bruk:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[FLAGG...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Flagg for hjelp:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Vis flagg for hjelp"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Vis alle flagg for hjelp"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Flagg for applikasjonen"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Kan ikke lese heltallsverdi «%s» for %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Heltallsverdi «%s» for %s er utenfor gyldig område"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Feil under tolking av flagg %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Mangler argument for %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Ukjent flagg %s"
|
||||
|
24
po/ne.po
24
po/ne.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2005-05-20 11:50+0545\n"
|
||||
"Last-Translator: Jyotshna Shrestha <shresthajyo@hotmail.com>\n"
|
||||
"Language-Team: Nepali <info@mpp.org.np>\n"
|
||||
@ -561,51 +561,51 @@ msgstr "अनुवादन निवेशमा अमान्य शृङ
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "युटिएफ-१६ को लागी वर्ण क्षेत्र भन्दा बाहिर"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "प्रयोग:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[विकल्प...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "सहयोग विकल्पहरू:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "सहयोग विकल्पहरू देखाउनुहोला"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "सबै सहयोग विकल्पहरू देखाउनुहोला"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "अनुरोधपत्र विकल्पहरू:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "पूर्ण संख्या मान '%s' %s को लागि व्याख्या गर्न सकेन"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "पूर्ण संख्या मान '%s' %s को लागि क्षेत्र भन्दा बाहिर छ"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "अनुवाद क्रममा गल्ती: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "अज्ञात विकल्प %s"
|
||||
|
24
po/nl.po
24
po/nl.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib (HEAD)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-07 14:26+0100\n"
|
||||
"Last-Translator: Tino Meinen <a.t.meinen@chello.nl>\n"
|
||||
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
|
||||
@ -598,53 +598,53 @@ msgstr "Ongeldige reeks in conversie-invoer"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Teken valt buiten bereik van UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Gebruik:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPTIE...]"
|
||||
|
||||
# hulp-opties zijn opties voor de hulp
|
||||
# hulp opties zijn die opties van hulp
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Hulp opties:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Hulp opties tonen"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Alle hulpopties tonen"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Toepassing opties:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Kan de hele getalswaarde '%s' voor %s niet verwerken"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Hele getalswaarde '%s' voor %s valt buiten bereik"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Fout bij verwerken optie %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Ontbrekend argument voor %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Onbekende optie %s"
|
||||
|
24
po/nn.po
24
po/nn.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: nn\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2004-09-06 21:31+0000\n"
|
||||
"Last-Translator: Åsmund Skjæveland <aasmunds@fys.uio.no>\n"
|
||||
"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"
|
||||
@ -577,51 +577,51 @@ msgstr "Ugyldig sekvens i inndata-konvertering"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Teikn ikkje gyldig for UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Bruk:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[VAL...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Hjelpeval:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Vis hjelpeval"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Vis alle hjelpevala"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Programval:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, fuzzy, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Kan ikkje tolka heiltalsverdien «%s» til «--%s»"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Heiltalsverdien «%s» til «%s» utanfor gyldig område"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Feil under konvertering: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Ukjend val «%s»"
|
||||
|
24
po/no.po
24
po/no.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.9.x\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-02 00:32+0100\n"
|
||||
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
|
||||
"Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\n"
|
||||
@ -576,51 +576,51 @@ msgstr "Ugyldig sekvens i inndata for konvertering"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Tegn utenfor gyldig område for UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Bruk:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[FLAGG...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Flagg for hjelp:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Vis flagg for hjelp"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Vis alle flagg for hjelp"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Flagg for applikasjonen"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Kan ikke lese heltallsverdi «%s» for %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Heltallsverdi «%s» for %s er utenfor gyldig område"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Feil under tolking av flagg %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Mangler argument for %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Ukjent flagg %s"
|
||||
|
329
po/or.po
329
po/or.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: or\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-02 07:37+0100\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-03-10 10:51+0530\n"
|
||||
"Last-Translator: Subhransu Behera <arya_subhransu@yahoo.co.in>\n"
|
||||
"Language-Team: Oriya <oriya-group@lists.sarovar.org>\n"
|
||||
@ -18,203 +18,211 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: KBabel 1.9.1\n"
|
||||
|
||||
#: ../glib/gconvert.c:408 ../glib/gconvert.c:486 ../glib/giochannel.c:1150
|
||||
#: glib/gconvert.c:408 glib/gconvert.c:486 glib/giochannel.c:1150
|
||||
#, c-format
|
||||
msgid "Conversion from character set '%s' to '%s' is not supported"
|
||||
msgstr "ଅକ୍ଷର ସେଟ୍ '%s'କୁ '%s'େର ରୂପାନ୍ତରିତ କରିବା ଅସହାୟକ"
|
||||
|
||||
#: ../glib/gconvert.c:412 ../glib/gconvert.c:490
|
||||
#: glib/gconvert.c:412 glib/gconvert.c:490
|
||||
#, c-format
|
||||
msgid "Could not open converter from '%s' to '%s'"
|
||||
msgstr "'%s'ରୁ '%s'ର ରୁପାନ୍ତରକ ଖୋଲି ହେଲା ନାହିଁ"
|
||||
|
||||
#: ../glib/gconvert.c:606 ../glib/gconvert.c:995 ../glib/giochannel.c:1322
|
||||
#: ../glib/giochannel.c:1364 ../glib/giochannel.c:2206 ../glib/gutf8.c:943
|
||||
#: ../glib/gutf8.c:1392
|
||||
#: glib/gconvert.c:606 glib/gconvert.c:995 glib/giochannel.c:1322
|
||||
#: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943
|
||||
#: glib/gutf8.c:1392
|
||||
#, c-format
|
||||
msgid "Invalid byte sequence in conversion input"
|
||||
msgstr "ରୁପାନ୍ତରଣ ନିବେଶେର ଅବୈଧ ବାଇଟ୍ ଅନୁକ୍ରମ"
|
||||
|
||||
#: ../glib/gconvert.c:612 ../glib/gconvert.c:922 ../glib/giochannel.c:1329
|
||||
#: ../glib/giochannel.c:2218
|
||||
#: glib/gconvert.c:612 glib/gconvert.c:922 glib/giochannel.c:1329
|
||||
#: glib/giochannel.c:2218
|
||||
#, c-format
|
||||
msgid "Error during conversion: %s"
|
||||
msgstr "ରୁପାନ୍ତରଣରେ ତ୍ରୁଟି: %s"
|
||||
|
||||
#: ../glib/gconvert.c:647 ../glib/gutf8.c:939 ../glib/gutf8.c:1143
|
||||
#: ../glib/gutf8.c:1284 ../glib/gutf8.c:1388
|
||||
#: glib/gconvert.c:647 glib/gutf8.c:939 glib/gutf8.c:1143 glib/gutf8.c:1284
|
||||
#: glib/gutf8.c:1388
|
||||
#, c-format
|
||||
msgid "Partial character sequence at end of input"
|
||||
msgstr "ନିବେଶର ସମାପ୍ତିରେ ଆଶିଂକ ଅକ୍ଷର ଅନୁକ୍ରମ"
|
||||
|
||||
#: ../glib/gconvert.c:897
|
||||
#: glib/gconvert.c:897
|
||||
#, c-format
|
||||
msgid "Cannot convert fallback '%s' to codeset '%s'"
|
||||
msgstr "'%s' ସହାୟକକୁ ସଂକେତ '%s' ସେଟ୍ ରେ ରୁପାନ୍ତରିତ କରିହେଲା ନାହିଁ"
|
||||
|
||||
#: ../glib/gconvert.c:1706
|
||||
#: glib/gconvert.c:1706
|
||||
#, c-format
|
||||
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
|
||||
msgstr "'%s' ୟୁ.ଆର୍.ଆଇ. \"ଫାଇଲ\" ଯୋଜନାକୁ ବ୍ଯବହାର କରୁଥିବା ଗୋଟିଏ ସମ୍ପୂର୍ଣ୍ଣ ୟୁ.ଆର୍.ଆଇ. ନୁହେଁ"
|
||||
|
||||
#: ../glib/gconvert.c:1716
|
||||
#: glib/gconvert.c:1716
|
||||
#, c-format
|
||||
msgid "The local file URI '%s' may not include a '#'"
|
||||
msgstr "'%s' ସ୍ଥାନୀୟ ଫାଇଲ ୟୁ.ଆର୍.ଆଇ. '#' ଚିହ୍ନକୁ ସମ୍ମିଳିତ କରିପାରିବ ନାହିଁ"
|
||||
|
||||
#: ../glib/gconvert.c:1733
|
||||
#: glib/gconvert.c:1733
|
||||
#, c-format
|
||||
msgid "The URI '%s' is invalid"
|
||||
msgstr "'%s' ୟୁ.ଆର୍.ଆଇ. ଅବୈଧ ଅଟେ"
|
||||
|
||||
#: ../glib/gconvert.c:1745
|
||||
#: glib/gconvert.c:1745
|
||||
#, c-format
|
||||
msgid "The hostname of the URI '%s' is invalid"
|
||||
msgstr "'%s' ୟୁ.ଆର୍.ଆଇ.ର ଆଧାର ନାମ ଅବୈଧ ଅଟେ"
|
||||
|
||||
#: ../glib/gconvert.c:1761
|
||||
#: glib/gconvert.c:1761
|
||||
#, c-format
|
||||
msgid "The URI '%s' contains invalidly escaped characters"
|
||||
msgstr "'%s' ୟୁ.ଆର୍.ଆଇ.ରେ ଅବୈଧ ଏସ୍କେପ୍ ଅକ୍ଷର ରହିଛି"
|
||||
|
||||
#: ../glib/gconvert.c:1855
|
||||
#: glib/gconvert.c:1855
|
||||
#, c-format
|
||||
msgid "The pathname '%s' is not an absolute path"
|
||||
msgstr "'%s' ପଥ ନାମ ଏକ ସମ୍ପୂର୍ଣ୍ଣ ପଥ ନୁହେଁ"
|
||||
|
||||
#: ../glib/gconvert.c:1865
|
||||
#: glib/gconvert.c:1865
|
||||
#, c-format
|
||||
msgid "Invalid hostname"
|
||||
msgstr "ଅବୈଧ ଆଧାର ନାମ"
|
||||
|
||||
#: ../glib/gdir.c:121 ../glib/gdir.c:141
|
||||
#: glib/gdir.c:121 glib/gdir.c:141
|
||||
#, c-format
|
||||
msgid "Error opening directory '%s': %s"
|
||||
msgstr "%s' ଡିରେକ୍ଟୋରି ଖୋଲିବାରେ ତ୍ରୁଟି: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:576 ../glib/gfileutils.c:649
|
||||
#: glib/gfileutils.c:576 glib/gfileutils.c:649
|
||||
#, c-format
|
||||
msgid "Could not allocate %lu bytes to read file \"%s\""
|
||||
msgstr "\"%2$s\" ଫାଇଲ ପଢିବା ପାଇଁ %1$lu ବାଇଟ୍ ବାଣ୍ଟିହେଲା ନାହିଁ"
|
||||
|
||||
#: ../glib/gfileutils.c:591
|
||||
#: glib/gfileutils.c:591
|
||||
#, c-format
|
||||
msgid "Error reading file '%s': %s"
|
||||
msgstr "'%s' ଫାଇଲ ପଢିବାରେ ତ୍ରୁଟି: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:673
|
||||
#: glib/gfileutils.c:673
|
||||
#, c-format
|
||||
msgid "Failed to read from file '%s': %s"
|
||||
msgstr "'%s' ଫାଇଲ ପଢିବାରେ ଅସଫଳ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:724 ../glib/gfileutils.c:811
|
||||
#: glib/gfileutils.c:724 glib/gfileutils.c:811
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s': %s"
|
||||
msgstr "'%s' ଫାଇଲ ଖୋଲିବାରେ ଅସଫଳ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:741 ../glib/gmappedfile.c:133
|
||||
#: glib/gfileutils.c:741 glib/gmappedfile.c:133
|
||||
#, c-format
|
||||
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
|
||||
msgstr "'%s' ଫାଇଲର ଗୁଣ ପାଇବାରେ ଅସଫଳ: fstat() ଅସଫଳ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:775
|
||||
#: glib/gfileutils.c:775
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s': fdopen() failed: %s"
|
||||
msgstr "'%s' ଫାଇଲ ଖୋଲିବାରେ ଅସଫଳ: fdopen() ଅସଫଳ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:909
|
||||
#: glib/gfileutils.c:909
|
||||
#, c-format
|
||||
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
|
||||
msgstr "'%s' ଫାଇଲ ରୁ '%s' ନାମ ବଦଳାଇ ବାରେ ଅସଫଳ: g_rename() ଅସଫଳ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:950 ../glib/gfileutils.c:1415
|
||||
#: glib/gfileutils.c:950 glib/gfileutils.c:1415
|
||||
#, c-format
|
||||
msgid "Failed to create file '%s': %s"
|
||||
msgstr "'%s' ଫାଇଲ ସ୍ରୁଷ୍ଟି କରିବାରେ ଅସଫଳ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:964
|
||||
#: glib/gfileutils.c:964
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
|
||||
msgstr "'%s' ଫାଇଲ କୁ େଲଖନ ପାଇଁ ଖୋଲିବାରେ ଅସଫଳ: fdopen() ଅସଫଳ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:989
|
||||
#: glib/gfileutils.c:989
|
||||
#, c-format
|
||||
msgid "Failed to write file '%s': fwrite() failed: %s"
|
||||
msgstr "'%s' ଫାଇଲ ଖୋଲିବାରେ ଅସଫଳ: fwrite() ଅସଫଳ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1008
|
||||
#: glib/gfileutils.c:1008
|
||||
#, c-format
|
||||
msgid "Failed to close file '%s': fclose() failed: %s"
|
||||
msgstr "'%s' ଫାଇଲ କୁ ବନ୍ଦ କରିବା ରେ ଅସଫଳ: fclose() ଅସଫଳ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1126
|
||||
#: glib/gfileutils.c:1126
|
||||
#, c-format
|
||||
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
|
||||
msgstr "ଅବସ୍ଥିତ '%s' ଫାଇଲ କାଢି ହେଲା ନାହଁି: g_unlink ଅସଫଳ %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1376
|
||||
#: glib/gfileutils.c:1376
|
||||
#, c-format
|
||||
msgid "Template '%s' invalid, should not contain a '%s'"
|
||||
msgstr "'%s' ନମୁନା ଟି ଅବୈଧ ଅଟେ, '%s' ଧାରଣ କରିବା ଉଚିତ ନୁହେଁ"
|
||||
|
||||
#: ../glib/gfileutils.c:1390
|
||||
#: glib/gfileutils.c:1390
|
||||
#, c-format
|
||||
msgid "Template '%s' doesn't end with XXXXXX"
|
||||
msgstr "'%s' ନମୁନା ଟି XXXXXXରେ ସମାପ୍ତ ହୋଇ ନାହିଁ"
|
||||
|
||||
#: ../glib/gfileutils.c:1865
|
||||
#: glib/gfileutils.c:1865
|
||||
#, c-format
|
||||
msgid "Failed to read the symbolic link '%s': %s"
|
||||
msgstr "'%s' ପ୍ରତିକାତ୍ମକ ସଂୟୋଗ ପଢିବାରେ ଅସଫଳ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1886
|
||||
#: glib/gfileutils.c:1886
|
||||
#, c-format
|
||||
msgid "Symbolic links not supported"
|
||||
msgstr "ପ୍ରତିକାତ୍ମକ ସଂୟୋଗ ଅସହାୟକ"
|
||||
|
||||
#: ../glib/giochannel.c:1154
|
||||
#: glib/giochannel.c:1154
|
||||
#, c-format
|
||||
msgid "Could not open converter from '%s' to '%s': %s"
|
||||
msgstr "%s' ରୁ '%s' ର ରୁପାନ୍ତରକ ଖୋଲି ପାରିଲା ନାହିଁ: %s"
|
||||
|
||||
#: ../glib/giochannel.c:1499
|
||||
#: glib/giochannel.c:1499
|
||||
#, c-format
|
||||
msgid "Can't do a raw read in g_io_channel_read_line_string"
|
||||
msgstr "g_io_channel_read_line_string ରେ ଅଂସସାଧିତ ପଠନ କରିହେଲା ନାହିଁ"
|
||||
|
||||
#: ../glib/giochannel.c:1546 ../glib/giochannel.c:1803
|
||||
#: ../glib/giochannel.c:1889
|
||||
#: glib/giochannel.c:1546 glib/giochannel.c:1803 glib/giochannel.c:1889
|
||||
#, c-format
|
||||
msgid "Leftover unconverted data in read buffer"
|
||||
msgstr "ପଠନ ବଫରରେ ଅରୂପାନ୍ତରିତ ତଥ୍ଯ ବଳକା ଅଛି"
|
||||
|
||||
#: ../glib/giochannel.c:1626 ../glib/giochannel.c:1703
|
||||
#: glib/giochannel.c:1626 glib/giochannel.c:1703
|
||||
#, c-format
|
||||
msgid "Channel terminates in a partial character"
|
||||
msgstr "ଆଂଶିକ ଅକ୍ଷର ରେ ଚାନେଲର ସମାପ୍ତି"
|
||||
|
||||
#: ../glib/giochannel.c:1689
|
||||
#: glib/giochannel.c:1689
|
||||
#, c-format
|
||||
msgid "Can't do a raw read in g_io_channel_read_to_end"
|
||||
msgstr "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:232
|
||||
#: glib/gmarkup.c:232
|
||||
#, c-format
|
||||
msgid "Error on line %d char %d: %s"
|
||||
msgstr "%d ଧାଡ଼ିର %d ଅକ୍ଷରରେ ତ୍ରୁଟି: %s"
|
||||
|
||||
#: ../glib/gmarkup.c:330
|
||||
#: glib/gmarkup.c:330
|
||||
#, c-format
|
||||
msgid "Error on line %d: %s"
|
||||
msgstr "%d ଧାଡ଼ିରେ ତ୍ରୁଟି: %s"
|
||||
|
||||
#: ../glib/gmarkup.c:434
|
||||
msgid "Empty entity '&;' seen; valid entities are: & " < > '"
|
||||
#: glib/gmarkup.c:434
|
||||
msgid ""
|
||||
"Empty entity '&;' seen; valid entities are: & " < > '"
|
||||
msgstr "ଖାଲି ବସ୍ତୁ '&;' ଦେଖା ଗଲା; ବୈଧ ବସ୍ତୁଗୁଡ଼ିକ ହେଲା: & " < > '"
|
||||
|
||||
#: ../glib/gmarkup.c:444
|
||||
#: glib/gmarkup.c:444
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Character '%s' is not valid at the start of an entity name; the & character "
|
||||
@ -224,17 +232,17 @@ msgstr ""
|
||||
"ଗୋଟିଏ ବସ୍ତୁର ନାମର ଆରମ୍ଭ ରେ '%s' ଅକ୍ଷର ବୈଧ ନୁହେଁ; ଅକ୍ଷର & ଗୋଟିଏ ବସ୍ତୁକୁ ଆରମ୍ଭ କରେ; ଯଦି ଏହି "
|
||||
"ଆମ୍ପର୍ସେଣ୍ଡ୍ ଗୋଟିଏ ବସ୍ତୁ ନୁହେଁ, ଏହାକୁ & ଭାବରେ ଏସ୍କେପ୍ କରନ୍ତୁ;"
|
||||
|
||||
#: ../glib/gmarkup.c:478
|
||||
#: glib/gmarkup.c:478
|
||||
#, c-format
|
||||
msgid "Character '%s' is not valid inside an entity name"
|
||||
msgstr "ବସ୍ତୁ ନାମ ମଦ୍ଧ୍ଯ ରେ '%s' ଅକ୍ଷର ବୈଧ ନୁହେଁ"
|
||||
|
||||
#: ../glib/gmarkup.c:515
|
||||
#: glib/gmarkup.c:515
|
||||
#, c-format
|
||||
msgid "Entity name '%s' is not known"
|
||||
msgstr "'%s' ବସ୍ତୁ ନାମ ଜଣା ନାହିଁ"
|
||||
|
||||
#: ../glib/gmarkup.c:526
|
||||
#: glib/gmarkup.c:526
|
||||
msgid ""
|
||||
"Entity did not end with a semicolon; most likely you used an ampersand "
|
||||
"character without intending to start an entity - escape ampersand as &"
|
||||
@ -242,7 +250,7 @@ msgstr ""
|
||||
"ବସ୍ତୁଟି ସେମିକୋଲନରେ ଶେଷ ହେଲା ନାହିଁ; ସମ୍ଭବତଃ ଆପଣ ଗୋଟିଏ ବସ୍ତୁ ଆରମ୍ଭ କରିବାକୁ ନ ଚାହିଁ, ଏକ "
|
||||
"ଆମ୍ପର୍ସେଣ୍ଡ୍ ଅକ୍ଷର ବ୍ଯବହାର କରିଛନ୍ତି - ତାହାକୁ & ଭାବରେ ଏସ୍କେପ୍ କରନ୍ତୁ"
|
||||
|
||||
#: ../glib/gmarkup.c:579
|
||||
#: glib/gmarkup.c:579
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Failed to parse '%-.*s', which should have been a digit inside a character "
|
||||
@ -251,16 +259,16 @@ msgstr ""
|
||||
"'%-.*s' କୁ ବିଶ୍ଳେଷଣ କରିବାରେ ଅସଫଳ, ଯାହାକି ଗୋଟିଏ ଅକ୍ଷର ରେଫରେନ୍ସ ମଦ୍ଧ୍ଯରେ ଏକ ଅଙ୍କ ହେବା ଉଚିତ "
|
||||
"ଥିଲା(ଉଦାହରଣ ସ୍ବରୂପେ &#୨୩୪;) - ବୋଧହୁଏ ଅଙ୍କଟି ବହୁତ ବଡ଼ ଅଟେ"
|
||||
|
||||
#: ../glib/gmarkup.c:604
|
||||
#: glib/gmarkup.c:604
|
||||
#, c-format
|
||||
msgid "Character reference '%-.*s' does not encode a permitted character"
|
||||
msgstr "'%-.*s' ଅକ୍ଷର ରେଫରେନ୍ସ ଟି ଗୋଟିଏ ଅନୁମତ ଅକ୍ଷରକୁ ସଙ୍କେତ କରୁ ନାହିଁ"
|
||||
|
||||
#: ../glib/gmarkup.c:619
|
||||
#: glib/gmarkup.c:619
|
||||
msgid "Empty character reference; should include a digit such as dž"
|
||||
msgstr "ଖାଲି ଅକ୍ଷର ରେଫରେନ୍ସ; ଗୋଟିଏ ଅଙ୍କକୁ ଅନୁର୍ଭୁକ୍ତ କରିବା ଉଚିତ, ଯେପରିକି &#୪୫୪;"
|
||||
|
||||
#: ../glib/gmarkup.c:629
|
||||
#: glib/gmarkup.c:629
|
||||
msgid ""
|
||||
"Character reference did not end with a semicolon; most likely you used an "
|
||||
"ampersand character without intending to start an entity - escape ampersand "
|
||||
@ -269,42 +277,46 @@ msgstr ""
|
||||
"ଅକ୍ଷର ରେଫରେନ୍ସ ସେମିକୋଲନରେ ସମାପ୍ତ ହେଉ ନାହିଁ; ସମ୍ଭବତଃ ଆପଣ ଗୋଟିଏ ବସ୍ତୁ ଆରମ୍ଭ କରିବାକୁ ନ ଚାହିଁ, "
|
||||
"ଏକ ଆମ୍ପର୍ସେଣ୍ଡ୍ ଅକ୍ଷର ବ୍ଯବହାର କରିଛନ୍ତି - ତାହାକୁ & ଭାବରେ ଏସ୍କେପ୍ କରନ୍ତୁ"
|
||||
|
||||
#: ../glib/gmarkup.c:715
|
||||
#: glib/gmarkup.c:715
|
||||
msgid "Unfinished entity reference"
|
||||
msgstr "ଅସମାପ୍ତ ବସ୍ତୁ ରେଫରେନ୍ସ"
|
||||
|
||||
#: ../glib/gmarkup.c:721
|
||||
#: glib/gmarkup.c:721
|
||||
msgid "Unfinished character reference"
|
||||
msgstr "ଅସମାପ୍ତ ଅକ୍ଷର ରେଫରେନ୍ସ"
|
||||
|
||||
#: ../glib/gmarkup.c:964 ../glib/gmarkup.c:992 ../glib/gmarkup.c:1023
|
||||
#: glib/gmarkup.c:964 glib/gmarkup.c:992 glib/gmarkup.c:1023
|
||||
msgid "Invalid UTF-8 encoded text"
|
||||
msgstr "ଅବୈଧ ଇଉ.ଟି.ଏଫ.-୮ ସାଙ୍କେତିକ ପାଠ୍ଯ"
|
||||
|
||||
#: ../glib/gmarkup.c:1059
|
||||
#: glib/gmarkup.c:1059
|
||||
msgid "Document must begin with an element (e.g. <book>)"
|
||||
msgstr "ଦଲିଲ ଗୋଟିଏ ଉପାଦାନରେ ଆରମ୍ଭ ହେବା ଉଚିତ (ଉଦାହରଣ ସ୍ବରୂପ <book>)"
|
||||
|
||||
#: ../glib/gmarkup.c:1099
|
||||
#: glib/gmarkup.c:1099
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following a '<' character; it may not begin an "
|
||||
"element name"
|
||||
msgstr "'<' ଅକ୍ଷର ପଛରେ ଆସୁଥିବା '%s' ଅକ୍ଷର ବୈଧ ନୁହେଁ; ଏହା ଗୋଟିଏ ବସ୍ତୁର ନାମକୁ ଆରମ୍ଭ କରିପାରିବ ନାହିଁ"
|
||||
msgstr ""
|
||||
"'<' ଅକ୍ଷର ପଛରେ ଆସୁଥିବା '%s' ଅକ୍ଷର ବୈଧ ନୁହେଁ; ଏହା ଗୋଟିଏ ବସ୍ତୁର ନାମକୁ ଆରମ୍ଭ କରିପାରିବ ନାହିଁ"
|
||||
|
||||
#: ../glib/gmarkup.c:1163
|
||||
#: glib/gmarkup.c:1163
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '>' character to end the start tag of element "
|
||||
"'%s'"
|
||||
msgstr "ବିଚିତ୍ର ଅକ୍ଷର '%s', '%s' ଉପାଦାନର ପ୍ରାରମ୍ଭ ସୂଚକକୁ ସମାପ୍ତ କରିବା ପାଇଁ '>' ଅକ୍ଷର ପ୍ରତ୍ଯାଶିତ ଥିଲା"
|
||||
msgstr ""
|
||||
"ବିଚିତ୍ର ଅକ୍ଷର '%s', '%s' ଉପାଦାନର ପ୍ରାରମ୍ଭ ସୂଚକକୁ ସମାପ୍ତ କରିବା ପାଇଁ '>' ଅକ୍ଷର ପ୍ରତ୍ଯାଶିତ ଥିଲା"
|
||||
|
||||
#: ../glib/gmarkup.c:1252
|
||||
#: glib/gmarkup.c:1252
|
||||
#, c-format
|
||||
msgid "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
|
||||
msgstr "ବିଚିତ୍ର ଅକ୍ଷର '%1$s', '%3$s' ଉପାଦାନର ଗୋଟିଏ ଗୁଣର ନାମ '%2$s' ପରେ '=' ପ୍ରତ୍ଯାଶିତ ଥିଲା"
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
|
||||
msgstr ""
|
||||
"ବିଚିତ୍ର ଅକ୍ଷର '%1$s', '%3$s' ଉପାଦାନର ଗୋଟିଏ ଗୁଣର ନାମ '%2$s' ପରେ '=' ପ୍ରତ୍ଯାଶିତ ଥିଲା"
|
||||
|
||||
#: ../glib/gmarkup.c:1294
|
||||
#: glib/gmarkup.c:1294
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
|
||||
@ -315,7 +327,7 @@ msgstr ""
|
||||
"ପ୍ରତ୍ଯାଶିତ ଥିଲା, ଅଥବା ଇଚ୍ଛାଧୀନ ଭାବରେ ଗୋଟିଏ ଗୁଣ; ବୋଧହୁଏ ଆପଣ ଗୋଟିଏ ଗୁଣର ନାମରେ ଏକ ଅବୈଧ "
|
||||
"ଅକ୍ଷର ବ୍ଯବହାର କରିଛନ୍ତି"
|
||||
|
||||
#: ../glib/gmarkup.c:1383
|
||||
#: glib/gmarkup.c:1383
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected an open quote mark after the equals sign when "
|
||||
@ -324,7 +336,7 @@ msgstr ""
|
||||
"ବିଚିତ୍ର ଅକ୍ଷର '%1$s', ସମାନ ଚିହ୍ନ ପରେ '%3$s' ଉପାଦାନର '%2$s' ଗୁଣର ମୂଲ୍ଯ ଦେବା ପାଇଁ ଗୋଟିଏ "
|
||||
"ଖୋଲା ଉଦ୍ଧ୍ରୁତି ଚିହ୍ନ ପ୍ରତ୍ଯାଶିତ ଥିଲା"
|
||||
|
||||
#: ../glib/gmarkup.c:1528
|
||||
#: glib/gmarkup.c:1528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following the characters '</'; '%s' may not "
|
||||
@ -333,32 +345,33 @@ msgstr ""
|
||||
"'</' ଅକ୍ଷରଗୁଡ଼ିକ ପଛରେ ଆସୁଥିବା '%s' ଅକ୍ଷର ବୈଧ ନୁହେଁ; '%s' ଗୋଟିଏ ଉପାଦାନର ନାମର ଆରମ୍ଭ "
|
||||
"କରିପାରିବ ନାହିଁ"
|
||||
|
||||
#: ../glib/gmarkup.c:1568
|
||||
#: glib/gmarkup.c:1568
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following the close element name '%s'; the "
|
||||
"allowed character is '>'"
|
||||
msgstr "ବନ୍ଦ ଉପାଦାନ ନାମ '%2$s' ପଛରେ ଆସୁଥିବା '%1$s' ଅକ୍ଷର ବୈଧ ନୁହେଁ; ଅନୁମତ ଅକ୍ଷର ହେଲା '>'"
|
||||
msgstr ""
|
||||
"ବନ୍ଦ ଉପାଦାନ ନାମ '%2$s' ପଛରେ ଆସୁଥିବା '%1$s' ଅକ୍ଷର ବୈଧ ନୁହେଁ; ଅନୁମତ ଅକ୍ଷର ହେଲା '>'"
|
||||
|
||||
#: ../glib/gmarkup.c:1579
|
||||
#: glib/gmarkup.c:1579
|
||||
#, c-format
|
||||
msgid "Element '%s' was closed, no element is currently open"
|
||||
msgstr "ଉପାଦାନ '%s' ବନ୍ଦ କରାଯାଇଥିଲା, ବର୍ତ୍ତମାନ କୌଣସି ଉପାଦାନ ଖୋଲା ନାହିଁ"
|
||||
|
||||
#: ../glib/gmarkup.c:1588
|
||||
#: glib/gmarkup.c:1588
|
||||
#, c-format
|
||||
msgid "Element '%s' was closed, but the currently open element is '%s'"
|
||||
msgstr "ଉପାଦାନ '%s' ବନ୍ଦ କରାଯାଇଥିଲା, କିନ୍ତୁ ବର୍ତ୍ତମାନ '%s' ଉପାଦାନଟି ଖୋଲା ଅଛି"
|
||||
|
||||
#: ../glib/gmarkup.c:1735
|
||||
#: glib/gmarkup.c:1735
|
||||
msgid "Document was empty or contained only whitespace"
|
||||
msgstr "ଦଲିଲ ଖାଲି ଥିଲା ବା କେବଳ ଖାଲି ଯାଗା ଧାରଣ କରିଥିଲା"
|
||||
|
||||
#: ../glib/gmarkup.c:1749
|
||||
#: glib/gmarkup.c:1749
|
||||
msgid "Document ended unexpectedly just after an open angle bracket '<'"
|
||||
msgstr "ଦଲିଲଟି ଗୋଟିଏ କୌଣିକ ବନ୍ଧନୀ '<'ର ଠିକ ପରେ ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
|
||||
|
||||
#: ../glib/gmarkup.c:1757 ../glib/gmarkup.c:1801
|
||||
#: glib/gmarkup.c:1757 glib/gmarkup.c:1801
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Document ended unexpectedly with elements still open - '%s' was the last "
|
||||
@ -367,7 +380,7 @@ msgstr ""
|
||||
"ଉପାଦାନଗୁଡ଼ିକ ଖୋଲା ଥାଇ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା'%s' ଉପାଦାନ ସର୍ବଶେଷ ଖୋଲା "
|
||||
"ଥିଲା"
|
||||
|
||||
#: ../glib/gmarkup.c:1765
|
||||
#: glib/gmarkup.c:1765
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Document ended unexpectedly, expected to see a close angle bracket ending "
|
||||
@ -376,19 +389,19 @@ msgstr ""
|
||||
"ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା, <%s/> ସୂଚକ ସମାପ୍ତ କରିବା ପାଇଁ ଗୋଟିଏ ବନ୍ଦ କୌଣିକ "
|
||||
"ବନ୍ଧନୀ ପ୍ରତ୍ଯାଶିତ ଥିଲା"
|
||||
|
||||
#: ../glib/gmarkup.c:1771
|
||||
#: glib/gmarkup.c:1771
|
||||
msgid "Document ended unexpectedly inside an element name"
|
||||
msgstr "ଉପାଦାନର ନାମ ମଧ୍ଯରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
|
||||
|
||||
#: ../glib/gmarkup.c:1776
|
||||
#: glib/gmarkup.c:1776
|
||||
msgid "Document ended unexpectedly inside an attribute name"
|
||||
msgstr "ଗୁଣର ନାମ ମଧ୍ଯରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
|
||||
|
||||
#: ../glib/gmarkup.c:1781
|
||||
#: glib/gmarkup.c:1781
|
||||
msgid "Document ended unexpectedly inside an element-opening tag."
|
||||
msgstr "ଉପାଦାନ ଆରମ୍ଭର ସୂଚକ ମଧ୍ଯରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
|
||||
|
||||
#: ../glib/gmarkup.c:1787
|
||||
#: glib/gmarkup.c:1787
|
||||
msgid ""
|
||||
"Document ended unexpectedly after the equals sign following an attribute "
|
||||
"name; no attribute value"
|
||||
@ -396,292 +409,302 @@ msgstr ""
|
||||
"ଗୁଣର ନାମ ପଛରେ ଆସୁଥିବା ସମାନ ଚିହ୍ନ ପରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା; ଗୁଣର କିଛି "
|
||||
"ମୂଲ୍ଯ ନାହିଁ"
|
||||
|
||||
#: ../glib/gmarkup.c:1794
|
||||
#: glib/gmarkup.c:1794
|
||||
msgid "Document ended unexpectedly while inside an attribute value"
|
||||
msgstr "ଗୁଣର ମୂଲ୍ଯ ମଧ୍ଯରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
|
||||
|
||||
#: ../glib/gmarkup.c:1809
|
||||
#: glib/gmarkup.c:1809
|
||||
#, c-format
|
||||
msgid "Document ended unexpectedly inside the close tag for element '%s'"
|
||||
msgstr "'%s' ଉପାଦାନର ବନ୍ଦ ସୂଚକ ମଧ୍ଯରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
|
||||
|
||||
#: ../glib/gmarkup.c:1815
|
||||
#: glib/gmarkup.c:1815
|
||||
msgid "Document ended unexpectedly inside a comment or processing instruction"
|
||||
msgstr "ଟିପ୍ପଣୀ ବା ସଂସାଧନ ସାଧନ ମଧ୍ଯରେ ଦଲିଲଟି ଅପ୍ରତ୍ଯାଶିତ ଭାବରେ ସମାପ୍ତ ହୋଇ ଗଲା"
|
||||
|
||||
#: ../glib/gshell.c:73
|
||||
#: glib/gshell.c:73
|
||||
#, c-format
|
||||
msgid "Quoted text doesn't begin with a quotation mark"
|
||||
msgstr "ଉଦ୍ଧ୍ରୁତ ପାଠ୍ଯ ଉଦ୍ଧ୍ରୁତ ଚିହ୍ନରେ ଆରମ୍ଭ ହୋଇ ନାହିଁ"
|
||||
|
||||
#: ../glib/gshell.c:163
|
||||
#: glib/gshell.c:163
|
||||
#, c-format
|
||||
msgid "Unmatched quotation mark in command line or other shell-quoted text"
|
||||
msgstr "ପାଠ୍ଯ ନିର୍ଦ୍ଦେଶ ବା ଅନ୍ଯ ଆବରଣ-ଉଦ୍ଧ୍ରୁତ ପାଠ୍ଯରେ ଅମେଳ ଉଦ୍ଧ୍ରୁତି ଚିହ୍ନ"
|
||||
|
||||
#: ../glib/gshell.c:541
|
||||
#: glib/gshell.c:541
|
||||
#, c-format
|
||||
msgid "Text ended just after a '\\' character. (The text was '%s')"
|
||||
msgstr "ଗୋଟିଏ '\\' ଅକ୍ଷରର ଠିକ ପରେ ପାଠ୍ଯ ସମାପ୍ତ ହୋଇ ଗଲା (ପାଠ୍ଯଟି ଥିଲା: '%s')"
|
||||
|
||||
#: ../glib/gshell.c:548
|
||||
#: glib/gshell.c:548
|
||||
#, c-format
|
||||
msgid "Text ended before matching quote was found for %c. (The text was '%s')"
|
||||
msgstr "%c ପାଇଁ ମେଳ ହେଉ ଥିବା ଉଦ୍ଧ୍ରୁତି ଚିହ୍ନ ମିଳିବା ପୂର୍ବରୁ ପାଠ୍ଯ ସମାପ୍ତ ହୋଇ ଗଲା. (ପାଠ୍ଯଟି ଥିଲା: '%s')"
|
||||
msgstr ""
|
||||
"%c ପାଇଁ ମେଳ ହେଉ ଥିବା ଉଦ୍ଧ୍ରୁତି ଚିହ୍ନ ମିଳିବା ପୂର୍ବରୁ ପାଠ୍ଯ ସମାପ୍ତ ହୋଇ ଗଲା. (ପାଠ୍ଯଟି ଥିଲା: '%s')"
|
||||
|
||||
#: ../glib/gshell.c:560
|
||||
#: glib/gshell.c:560
|
||||
#, c-format
|
||||
msgid "Text was empty (or contained only whitespace)"
|
||||
msgstr "ପାଠ୍ଯ ଖାଲି ଥିଲା (ବା କେବଳ ଖାଲି ଯାଗା ଧାରଣ କରିଥିଲା)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:276
|
||||
#: glib/gspawn-win32.c:276
|
||||
#, c-format
|
||||
msgid "Failed to read data from child process"
|
||||
msgstr "ନିର୍ଭରକ ପ୍ରକ୍ରିୟାରୁ ତଥ୍ଯ ପଢ଼ିବାରେ ଅସଫଳ"
|
||||
|
||||
#: ../glib/gspawn-win32.c:291 ../glib/gspawn.c:1364
|
||||
#: glib/gspawn-win32.c:291 glib/gspawn.c:1364
|
||||
#, c-format
|
||||
msgid "Failed to create pipe for communicating with child process (%s)"
|
||||
msgstr "ନିର୍ଭରକ ପ୍ରକ୍ରିୟା ସହିତ ସଂଯୋଗ ପାଇଁ ପାଇପ୍ ସୃଷ୍ଟି କରିବାରେ ଅସଫଳ (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:329 ../glib/gspawn.c:1028
|
||||
#: glib/gspawn-win32.c:329 glib/gspawn.c:1028
|
||||
#, c-format
|
||||
msgid "Failed to read from child pipe (%s)"
|
||||
msgstr "ନିର୍ଭରକ ପାଇପ୍ ରୁ ତଥ୍ଯ ପଢି଼ବାରେ ଅସଫଳ (%s)"
|
||||
|
||||
# Gora: "change to directory" means "go to directory" here
|
||||
#: ../glib/gspawn-win32.c:355 ../glib/gspawn.c:1233
|
||||
#: glib/gspawn-win32.c:355 glib/gspawn.c:1233
|
||||
#, c-format
|
||||
msgid "Failed to change to directory '%s' (%s)"
|
||||
msgstr "'%s' ଡିରେକ୍ଟୋରିକୁ ଯିବାରେ ଅସଫଳ (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:361 ../glib/gspawn-win32.c:581
|
||||
#: glib/gspawn-win32.c:361 glib/gspawn-win32.c:581
|
||||
#, c-format
|
||||
msgid "Failed to execute child process (%s)"
|
||||
msgstr "ନିର୍ଭରକ ପ୍ରକ୍ରିୟାକୁ ନିଷ୍ପାଦନ କରିବାରେ ଅସଫଳ (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:471 ../glib/gspawn-win32.c:527
|
||||
#: glib/gspawn-win32.c:471 glib/gspawn-win32.c:527
|
||||
#, c-format
|
||||
msgid "Invalid program name: %s"
|
||||
msgstr "ଅବୈଧ ହୋଷ୍ଟ୍ ନାମ: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:481 ../glib/gspawn-win32.c:537
|
||||
#: ../glib/gspawn-win32.c:780 ../glib/gspawn-win32.c:835
|
||||
#: ../glib/gspawn-win32.c:1370
|
||||
#: glib/gspawn-win32.c:481 glib/gspawn-win32.c:537 glib/gspawn-win32.c:780
|
||||
#: glib/gspawn-win32.c:835 glib/gspawn-win32.c:1370
|
||||
#, c-format
|
||||
msgid "Invalid string in argument vector at %d: %s"
|
||||
msgstr "ସଦିଶ ସ୍ବତନ୍ତ୍ରଚର %d ରେ ବାକ୍ଯଖଣ୍ଡ %s ଟି ଅବୈଧ ଅଟେ"
|
||||
|
||||
#: ../glib/gspawn-win32.c:492 ../glib/gspawn-win32.c:548
|
||||
#: ../glib/gspawn-win32.c:794 ../glib/gspawn-win32.c:848
|
||||
#: ../glib/gspawn-win32.c:1403
|
||||
#: glib/gspawn-win32.c:492 glib/gspawn-win32.c:548 glib/gspawn-win32.c:794
|
||||
#: glib/gspawn-win32.c:848 glib/gspawn-win32.c:1403
|
||||
#, c-format
|
||||
msgid "Invalid string in environment: %s"
|
||||
msgstr "ଏହି ପରିୂବେଶ ରେ ବାକ୍ଯଖଣ୍ଡ:%s ଅବୈଧ ଅଟେ"
|
||||
|
||||
#: ../glib/gspawn-win32.c:776 ../glib/gspawn-win32.c:831
|
||||
#: ../glib/gspawn-win32.c:1351
|
||||
#: glib/gspawn-win32.c:776 glib/gspawn-win32.c:831 glib/gspawn-win32.c:1351
|
||||
#, c-format
|
||||
msgid "Invalid working directory: %s"
|
||||
msgstr "ଚଳନ୍ତି ଡିରେକ୍ଟୋରି: %s ଟି ଅବୈଧ ଅଟେ"
|
||||
|
||||
#: ../glib/gspawn-win32.c:890
|
||||
#: glib/gspawn-win32.c:890
|
||||
#, c-format
|
||||
msgid "Failed to execute helper program (%s)"
|
||||
msgstr "ସାହାଯ୍ଯ କାରିକା (%s) କୁ ନିଷ୍ପାଦନ କରିବାରେ ଅସଫଳ"
|
||||
|
||||
#: ../glib/gspawn-win32.c:1090
|
||||
#: glib/gspawn-win32.c:1090
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Unexpected error in g_io_channel_win32_poll() reading data from a child "
|
||||
"process"
|
||||
msgstr "ନିର୍ଭରକ ପ୍ରକ୍ରିୟାରୁ ତଥ୍ଯ ପଢି଼ବାରେ g_io_channel_win32_poll()ରେ ଅପ୍ରତ୍ଯାଶିତ ତ୍ରୁଟି"
|
||||
|
||||
#: ../glib/gspawn.c:168
|
||||
#: glib/gspawn.c:168
|
||||
#, c-format
|
||||
msgid "Failed to read data from child process (%s)"
|
||||
msgstr "ନିର୍ଭରକ ପ୍ରକ୍ରିୟାରୁ ତଥ୍ଯ ପଢି଼ବାରେ ଅସଫଳ (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:300
|
||||
#: glib/gspawn.c:300
|
||||
#, c-format
|
||||
msgid "Unexpected error in select() reading data from a child process (%s)"
|
||||
msgstr "ନିର୍ଭରକ ପ୍ରକ୍ରିୟାରୁ ତଥ୍ଯ ପଢି଼ବାରେ select()ରେ ଅପ୍ରତ୍ଯାଶିତ ତ୍ରୁଟି (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:383
|
||||
#: glib/gspawn.c:383
|
||||
#, c-format
|
||||
msgid "Unexpected error in waitpid() (%s)"
|
||||
msgstr "waitpid()ରେ ଅପ୍ରତ୍ଯାଶିତ ତ୍ରୁଟି (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1093
|
||||
#: glib/gspawn.c:1093
|
||||
#, c-format
|
||||
msgid "Failed to fork (%s)"
|
||||
msgstr "ଶାଖା ସୃଷ୍ଟି କରିବାରେ ଅସଫଳ (%s"
|
||||
|
||||
#: ../glib/gspawn.c:1243
|
||||
#: glib/gspawn.c:1243
|
||||
#, c-format
|
||||
msgid "Failed to execute child process \"%s\" (%s)"
|
||||
msgstr "ନିର୍ଭରକ ପ୍ରକ୍ରିୟା \"%s\" ନିଷ୍ପାଦନ କରିବାରେ ଅସଫଳ (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1253
|
||||
#: glib/gspawn.c:1253
|
||||
#, c-format
|
||||
msgid "Failed to redirect output or input of child process (%s)"
|
||||
msgstr "ନିର୍ଭରକ ପ୍ରକ୍ରିୟାର ନିର୍ଗମ ବା ନିବେଶର ପୁନଃନିର୍ଦ୍ଦେଶନ କରିବାରେ ଅସଫଳ (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1262
|
||||
#: glib/gspawn.c:1262
|
||||
#, c-format
|
||||
msgid "Failed to fork child process (%s)"
|
||||
msgstr "ନିର୍ଭରକ ପ୍ରକ୍ରିୟାକୁ ଶାଖାଯୁକ୍ତ କରିବାରେ ଅସଫଳ (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1270
|
||||
#: glib/gspawn.c:1270
|
||||
#, c-format
|
||||
msgid "Unknown error executing child process \"%s\""
|
||||
msgstr "ନିର୍ଭରକ ପ୍ରକ୍ରିୟାକୁ ନିଷ୍ପାଦନ କରିବାରେ ଅଜଣା ତ୍ରୁଟି \"%s\""
|
||||
|
||||
#: ../glib/gspawn.c:1292
|
||||
#: glib/gspawn.c:1292
|
||||
#, c-format
|
||||
msgid "Failed to read enough data from child pid pipe (%s)"
|
||||
msgstr "ନିର୍ଭରକ ପି.ଆଇ.ଡି. ପାଇପ୍ ରୁ ପର୍ଯ୍ଯାପ୍ତ ତଥ୍ଯ ପଢି଼ବାରେ ଅସଫଳ (%s)"
|
||||
|
||||
#: ../glib/gutf8.c:1017
|
||||
#: glib/gutf8.c:1017
|
||||
#, c-format
|
||||
msgid "Character out of range for UTF-8"
|
||||
msgstr "ଇ.ଉ.ଟିଏଫ୍.-୮ ପାଇଁ ଅକ୍ଷରଟି ପରିସର ବାହାରେ"
|
||||
|
||||
#: ../glib/gutf8.c:1111 ../glib/gutf8.c:1120 ../glib/gutf8.c:1252
|
||||
#: ../glib/gutf8.c:1261 ../glib/gutf8.c:1402 ../glib/gutf8.c:1498
|
||||
#: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 glib/gutf8.c:1261
|
||||
#: glib/gutf8.c:1402 glib/gutf8.c:1498
|
||||
#, c-format
|
||||
msgid "Invalid sequence in conversion input"
|
||||
msgstr "ରୁପାନ୍ତରଣ ନିବେଶେର ଅବୈଧ ଅନୁକ୍ରମ"
|
||||
|
||||
#: ../glib/gutf8.c:1413 ../glib/gutf8.c:1509
|
||||
#: glib/gutf8.c:1413 glib/gutf8.c:1509
|
||||
#, c-format
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "ଇ.ଉ.ଟିଏଫ୍.-୧୬ ପାଇଁ ଅକ୍ଷରଟି ପରିସର ବାହାରେ"
|
||||
|
||||
#: ../glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "ବ୍ଯବହାର:"
|
||||
|
||||
#: ../glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[ପସନ୍ଦ...]"
|
||||
|
||||
#: ../glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "ସାହାଯ୍ଯ ପସନ୍ଦ"
|
||||
|
||||
#: ../glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "ସାହାଯ୍ଯ ପସନ୍ଦ ଦେଖାନ୍ତୁ"
|
||||
|
||||
#: ../glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "ସବୁ ସାହାଯ୍ଯ ପସନ୍ଦ ଦେଖାନ୍ତୁ"
|
||||
|
||||
#: ../glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "ପ୍ରୟୋଗ ପସନ୍ଦ"
|
||||
|
||||
#: ../glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "%s ପାଇଁ ପୂର୍ଣ ସଂଖ୍ଯା ମୂଲ୍ଯ '%s' କୁ ବିଶ୍ଲେଷିଣ କରିହେଲା ନାହିଁ"
|
||||
|
||||
#: ../glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "%s ପାଇଁ ପୂର୍ଣ ସଂଖ୍ଯା '%s' ର ମୂଲ୍ଯ ପରିସର ବାହାରେ"
|
||||
|
||||
#: ../glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "ରୁପାନ୍ତରଣ ର ପସନ୍ଦ ରେ ତ୍ରୁଟି: %s"
|
||||
|
||||
#: ../glib/goption.c:959 ../glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "%s ପାଇଁ ସ୍ବତନ୍ତ୍ରଚର ଟି ହଜି ଯାଇଛି"
|
||||
|
||||
#: ../glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "ଅଜଣା ପସନ୍ଦ %s"
|
||||
|
||||
#: ../glib/gkeyfile.c:339
|
||||
#: glib/gkeyfile.c:339
|
||||
#, c-format
|
||||
msgid "Valid key file could not be found in data dirs"
|
||||
msgstr "ତଥ୍ଯ ଡିରେକ୍ଟୋରି ମାନଙ୍କ ରେ ମୂଖ୍ଯ ବୈଧ ଫାଇଲ ମିଳିବ ନାହିଁ"
|
||||
|
||||
#: ../glib/gkeyfile.c:374
|
||||
#: glib/gkeyfile.c:374
|
||||
#, c-format
|
||||
msgid "Not a regular file"
|
||||
msgstr "ଏହା ଏକ ନିୟମିତ ଫାଇଲ ନୁହେଁ"
|
||||
|
||||
#: ../glib/gkeyfile.c:382
|
||||
#: glib/gkeyfile.c:382
|
||||
#, c-format
|
||||
msgid "File is empty"
|
||||
msgstr "ଫାଇଲ ଟି ଖାଲି ଅଛି"
|
||||
|
||||
#: ../glib/gkeyfile.c:697
|
||||
#: glib/gkeyfile.c:697
|
||||
#, c-format
|
||||
msgid "Key file contains line '%s' which is not a key-value pair, group, or comment"
|
||||
msgid ""
|
||||
"Key file contains line '%s' which is not a key-value pair, group, or comment"
|
||||
msgstr "ମୁଖ୍ଯ ଫାଇଲ '%s' କୁ ଧାରଣ କରିଛି ଯାହାକି ଗୋଟିଏ ମୁଖ୍ଯ-ଗୁଣ ର ଯୋଡି, ସମୂହ, କିମ୍ବା ବାକ୍ଯ ନୁହେଁ"
|
||||
|
||||
#: ../glib/gkeyfile.c:765
|
||||
#: glib/gkeyfile.c:765
|
||||
#, c-format
|
||||
msgid "Key file does not start with a group"
|
||||
msgstr "ମୂଖ୍ଯ ଫାଇଲ କୌଣସି ସମୂହ ସହ ଆରମ୍ଭ ହୁଏ ନାହିଁ"
|
||||
|
||||
#: ../glib/gkeyfile.c:808
|
||||
#: glib/gkeyfile.c:808
|
||||
#, c-format
|
||||
msgid "Key file contains unsupported encoding '%s'"
|
||||
msgstr "ମୂଖ୍ଯ ଫାଇଲ ଟି ଗୋଟିଏ ଅସହାୟକ ସଂକେତ '%s' ଧାରଣ କରିଛି"
|
||||
|
||||
#: ../glib/gkeyfile.c:1017 ../glib/gkeyfile.c:1176 ../glib/gkeyfile.c:2177
|
||||
#: ../glib/gkeyfile.c:2242 ../glib/gkeyfile.c:2361 ../glib/gkeyfile.c:2497
|
||||
#: ../glib/gkeyfile.c:2649 ../glib/gkeyfile.c:2823 ../glib/gkeyfile.c:2880
|
||||
#: glib/gkeyfile.c:1017 glib/gkeyfile.c:1176 glib/gkeyfile.c:2177
|
||||
#: glib/gkeyfile.c:2242 glib/gkeyfile.c:2361 glib/gkeyfile.c:2497
|
||||
#: glib/gkeyfile.c:2649 glib/gkeyfile.c:2823 glib/gkeyfile.c:2880
|
||||
#, c-format
|
||||
msgid "Key file does not have group '%s'"
|
||||
msgstr "ମୂଖ୍ଯ ଫାଇଲ େର '%s' ନାମ ଥିବା କୌଣସି ସମୂହ ନାହିଁ"
|
||||
|
||||
#: ../glib/gkeyfile.c:1188
|
||||
#: glib/gkeyfile.c:1188
|
||||
#, c-format
|
||||
msgid "Key file does not have key '%s'"
|
||||
msgstr "ମୂଖ୍ଯ ଫାଇଲ େର '%s' ନାମ ଥିବା କୌଣସି ଚାବିକାଠି ନାହିଁ"
|
||||
|
||||
#: ../glib/gkeyfile.c:1289 ../glib/gkeyfile.c:1398
|
||||
#: glib/gkeyfile.c:1289 glib/gkeyfile.c:1398
|
||||
#, c-format
|
||||
msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
|
||||
msgstr "ମୂଖ୍ଯ ଫାଇଲ ଧାରଣ କରିଥିବା '%s' ଚାବିକାଠି ର ମୂଲ୍ଯ '%s' ଅଟେ, ଯାହାକି ଇଉ-ଟି-ଏଫ୍-୮ ନୁହେଁ"
|
||||
|
||||
#: ../glib/gkeyfile.c:1307 ../glib/gkeyfile.c:1416 ../glib/gkeyfile.c:1788
|
||||
#: glib/gkeyfile.c:1307 glib/gkeyfile.c:1416 glib/gkeyfile.c:1788
|
||||
#, c-format
|
||||
msgid "Key file contains key '%s' which has value that cannot be interpreted."
|
||||
msgstr "ମୂଖ୍ଯ ଫାଇଲ ଧାରଣ କରିଥିବା '%s' ଚାବିକାଠି ର ମୂଲ୍ଯ ନିରୂପଣ କରିହେବ ନାହିଁ"
|
||||
|
||||
#: ../glib/gkeyfile.c:2004
|
||||
#: glib/gkeyfile.c:2004
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Key file contains key '%s' in group '%s' which has value that cannot be "
|
||||
"interpreted."
|
||||
msgstr ""
|
||||
"ମୂଖ୍ଯ ଫାଇଲ ଧାରଣ କରିଥିବା '%s' ଚାବିକାଠି ଗୋଟିଏ '%s' ସମୂହ ସହିତ ଏଛି ଯାହାର"
|
||||
" ମୂଲ୍ଯ ନିରୂପଣ କରିହେବ ନାହିଁ"
|
||||
"ମୂଖ୍ଯ ଫାଇଲ ଧାରଣ କରିଥିବା '%s' ଚାବିକାଠି ଗୋଟିଏ '%s' ସମୂହ ସହିତ ଏଛି ଯାହାର ମୂଲ୍ଯ ନିରୂପଣ କରିହେବ ନାହିଁ"
|
||||
|
||||
#: ../glib/gkeyfile.c:2192 ../glib/gkeyfile.c:2376 ../glib/gkeyfile.c:2891
|
||||
#: glib/gkeyfile.c:2192 glib/gkeyfile.c:2376 glib/gkeyfile.c:2891
|
||||
#, c-format
|
||||
msgid "Key file does not have key '%s' in group '%s'"
|
||||
msgstr "ମୂଖ୍ଯ ଫାଇଲ େର '%s' ନାମ ଥିବା କୌଣସି ଚାବିକାଠି '%s' ସମୂହ ରେ ନାହିଁ "
|
||||
|
||||
#: ../glib/gkeyfile.c:3067
|
||||
#: glib/gkeyfile.c:3067
|
||||
#, c-format
|
||||
msgid "Key file contains escape character at end of line"
|
||||
msgstr "ମୂଖ୍ଯ ଫାଇଲ ଟି ଲାଇନ୍ ର ସମାପ୍ତି ରେ ଏସ୍କେପ୍ ଅକ୍ଷର ଧାରଣ କରିଛି"
|
||||
|
||||
#: ../glib/gkeyfile.c:3089
|
||||
#: glib/gkeyfile.c:3089
|
||||
#, c-format
|
||||
msgid "Key file contains invalid escape sequence '%s'"
|
||||
msgstr "ମୂଖ୍ଯ ଫାଇଲ '%s' ଅବୈଧ ଏସ୍କେପ୍ ଅକ୍ଷର ଧାରଣ କରିଛି"
|
||||
|
||||
#: ../glib/gkeyfile.c:3230
|
||||
#: glib/gkeyfile.c:3230
|
||||
#, c-format
|
||||
msgid "Value '%s' cannot be interpreted as a number."
|
||||
msgstr "'%s' ର ମୂଲ୍ଯ ଗୋଟିଏ ସଂଖ୍ଯା ଭାବରେ ନିରୂପଣ କରିହେବ ନାହିଁ"
|
||||
|
||||
#: ../glib/gkeyfile.c:3240
|
||||
#: glib/gkeyfile.c:3240
|
||||
#, c-format
|
||||
msgid "Integer value '%s' out of range"
|
||||
msgstr "ପୂର୍ଣ ମୂଲ୍ଯ '%s' ପରିସର ର ବାହାରେ ଅଛି"
|
||||
|
||||
#: ../glib/gkeyfile.c:3270
|
||||
#: glib/gkeyfile.c:3270
|
||||
#, c-format
|
||||
msgid "Value '%s' cannot be interpreted as a boolean."
|
||||
msgstr "'%s' ର ମୂଲ୍ଯ ଗୋଟିଏ ବୁଲିଆନ୍ ଭାବରେ ନିରୂପଣ କରିହେବ ନାହିଁ"
|
||||
|
||||
|
332
po/pa.po
332
po/pa.po
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-10 07:27+0100\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-03-11 11:52+0530\n"
|
||||
"Last-Translator: A S Alam <apbrar@gmail.com>\n"
|
||||
"Language-Team: Punjabi <fedora-trans-pa@redhat.com>\n"
|
||||
@ -21,203 +21,211 @@ msgstr ""
|
||||
"X-Generator: KBabel 1.11.1\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||
|
||||
#: ../glib/gconvert.c:408 ../glib/gconvert.c:486 ../glib/giochannel.c:1150
|
||||
#: glib/gconvert.c:408 glib/gconvert.c:486 glib/giochannel.c:1150
|
||||
#, c-format
|
||||
msgid "Conversion from character set '%s' to '%s' is not supported"
|
||||
msgstr "ਕਰੈਕਟਰ ਸਮੂਹ %s ਤੋਂ %s ਵਿੱਚ ਬਦਲਣ ਇਸ ਵੇਲੇ ਸੰਭਵ ਨਹੀਂ"
|
||||
|
||||
#: ../glib/gconvert.c:412 ../glib/gconvert.c:490
|
||||
#: glib/gconvert.c:412 glib/gconvert.c:490
|
||||
#, c-format
|
||||
msgid "Could not open converter from '%s' to '%s'"
|
||||
msgstr "'%s' ਤੋੱ '%s' ਵਿੱਚ ਬਦਲਣ ਵਾਲਾ ਉਪਲਬਧ ਨਹੀਂ ਹੈ"
|
||||
|
||||
#: ../glib/gconvert.c:606 ../glib/gconvert.c:995 ../glib/giochannel.c:1322
|
||||
#: ../glib/giochannel.c:1364 ../glib/giochannel.c:2206 ../glib/gutf8.c:943
|
||||
#: ../glib/gutf8.c:1392
|
||||
#: glib/gconvert.c:606 glib/gconvert.c:995 glib/giochannel.c:1322
|
||||
#: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943
|
||||
#: glib/gutf8.c:1392
|
||||
#, c-format
|
||||
msgid "Invalid byte sequence in conversion input"
|
||||
msgstr "ਬਦਲਣ ਲਈ ਦਿੱਤੀ ਸਤਰ ਵਿੱਚ ਬਾਇਟ ਦਾ ਸਰੂਪ ਠੀਕ ਨਹੀਂ ਹੈ"
|
||||
|
||||
#: ../glib/gconvert.c:612 ../glib/gconvert.c:922 ../glib/giochannel.c:1329
|
||||
#: ../glib/giochannel.c:2218
|
||||
#: glib/gconvert.c:612 glib/gconvert.c:922 glib/giochannel.c:1329
|
||||
#: glib/giochannel.c:2218
|
||||
#, c-format
|
||||
msgid "Error during conversion: %s"
|
||||
msgstr "ਤਬਦੀਲੀ ਦੌਰਾਨ ਗਲਤੀ %s"
|
||||
|
||||
#: ../glib/gconvert.c:647 ../glib/gutf8.c:939 ../glib/gutf8.c:1143
|
||||
#: ../glib/gutf8.c:1284 ../glib/gutf8.c:1388
|
||||
#: glib/gconvert.c:647 glib/gutf8.c:939 glib/gutf8.c:1143 glib/gutf8.c:1284
|
||||
#: glib/gutf8.c:1388
|
||||
#, c-format
|
||||
msgid "Partial character sequence at end of input"
|
||||
msgstr "ਸਤਰ ਦੇ ਅਖੀਰ ਤੇ ਅੱਖਰਾਂ ਦਾ ਸਰੂਪ ਅਧੂਰਾ ਹੈ"
|
||||
|
||||
#: ../glib/gconvert.c:897
|
||||
#: glib/gconvert.c:897
|
||||
#, c-format
|
||||
msgid "Cannot convert fallback '%s' to codeset '%s'"
|
||||
msgstr "ਕੋਡ ਸਮੂਹ %s ਤੋਂ %s ਵਿੱਚ ਤਬਦੀਲੀ ਸੰਭਵ ਨਹੀਂ"
|
||||
|
||||
#: ../glib/gconvert.c:1706
|
||||
#: glib/gconvert.c:1706
|
||||
#, c-format
|
||||
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
|
||||
msgstr "URI '%s' \"file\" ਸਕੀਮ ਦੀ ਵਰਤੋਂ ਕਰਕੇ ਅਸਲ URI ਨਹੀਂ ਹੈ"
|
||||
|
||||
#: ../glib/gconvert.c:1716
|
||||
#: glib/gconvert.c:1716
|
||||
#, c-format
|
||||
msgid "The local file URI '%s' may not include a '#'"
|
||||
msgstr "ਲੋਕਲ ਫਾਇਲ URI %s ਵਿੱਚ ਇਹ ਨਿਸ਼ਾਨ # ਨਹੀਂ ਹੈ"
|
||||
|
||||
#: ../glib/gconvert.c:1733
|
||||
#: glib/gconvert.c:1733
|
||||
#, c-format
|
||||
msgid "The URI '%s' is invalid"
|
||||
msgstr "URI '%s' ਜਾਇਜ਼ ਨਹੀਂ ਹੈ"
|
||||
|
||||
#: ../glib/gconvert.c:1745
|
||||
#: glib/gconvert.c:1745
|
||||
#, c-format
|
||||
msgid "The hostname of the URI '%s' is invalid"
|
||||
msgstr "URI '%s' ਦੇ ਮੇਜ਼ਬਾਨ ਦਾ ਨਾਂ ਜਾਇਜ਼ ਨਹੀਂ ਹੈ"
|
||||
|
||||
#: ../glib/gconvert.c:1761
|
||||
#: glib/gconvert.c:1761
|
||||
#, c-format
|
||||
msgid "The URI '%s' contains invalidly escaped characters"
|
||||
msgstr "URI '%s' ਕੋਲ ਗਲਤ ਅੱਖਰ ਹਨ"
|
||||
|
||||
#: ../glib/gconvert.c:1855
|
||||
#: glib/gconvert.c:1855
|
||||
#, c-format
|
||||
msgid "The pathname '%s' is not an absolute path"
|
||||
msgstr "ਮਾਰਗ-ਨਾਂ %s ਇਕ ਅਸਲੀ (absolute) ਮਾਰਗ ਨਹੀਂ ਹੈ"
|
||||
|
||||
#: ../glib/gconvert.c:1865
|
||||
#: glib/gconvert.c:1865
|
||||
#, c-format
|
||||
msgid "Invalid hostname"
|
||||
msgstr "ਗਲਤ ਮੇਜ਼ਬਾਨ ਨਾਂ"
|
||||
|
||||
#: ../glib/gdir.c:121 ../glib/gdir.c:141
|
||||
#: glib/gdir.c:121 glib/gdir.c:141
|
||||
#, c-format
|
||||
msgid "Error opening directory '%s': %s"
|
||||
msgstr "ਡਾਇਰੈਕਟਰੀ '%s' ਖੋਲ੍ਹਣ ਲਈ ਗਲਤੀ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:576 ../glib/gfileutils.c:649
|
||||
#: glib/gfileutils.c:576 glib/gfileutils.c:649
|
||||
#, c-format
|
||||
msgid "Could not allocate %lu bytes to read file \"%s\""
|
||||
msgstr "ਫਾਇਲ \"%2$s\" ਖੋਲ੍ਹਣ ਲਈ %1$lu ਬਾਈਟ ਨਹੀਂ ਦਿੱਤੇ ਜਾ ਸਕੇ"
|
||||
|
||||
#: ../glib/gfileutils.c:591
|
||||
#: glib/gfileutils.c:591
|
||||
#, c-format
|
||||
msgid "Error reading file '%s': %s"
|
||||
msgstr "'%s' ਫਾਇਲ ਪੜ੍ਹਨ 'ਚ ਗਲਤੀ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:673
|
||||
#: glib/gfileutils.c:673
|
||||
#, c-format
|
||||
msgid "Failed to read from file '%s': %s"
|
||||
msgstr "ਫਾਇਲ '%s' ਤੋਂ ਪੜ੍ਹਨ 'ਚ ਅਸਫ਼ਲ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:724 ../glib/gfileutils.c:811
|
||||
#: glib/gfileutils.c:724 glib/gfileutils.c:811
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s': %s"
|
||||
msgstr "'%s' ਫਾਇਲ ਖੋਲ੍ਹ 'ਚ ਗਲਤੀ %s"
|
||||
|
||||
#: ../glib/gfileutils.c:741 ../glib/gmappedfile.c:133
|
||||
#: glib/gfileutils.c:741 glib/gmappedfile.c:133
|
||||
#, c-format
|
||||
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
|
||||
msgstr "ਫਾਇਲ '%s' ਦੀਆਂ ਵਿਸ਼ੇਸਤਾ ਖੋਲ੍ਹਣ 'ਚ ਅਸਫ਼ਲ: fstat() ਅਸਫ਼ਲ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:775
|
||||
#: glib/gfileutils.c:775
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s': fdopen() failed: %s"
|
||||
msgstr "ਫਾਇਲ '%s' ਖੋਲ੍ਹਣ ਵਿੱਚ ਅਸਫਲ: fdopen() ਅਸਫਲ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:909
|
||||
#: glib/gfileutils.c:909
|
||||
#, c-format
|
||||
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
|
||||
msgstr "ਫਾਇਲ '%s' ਦਾ ਨਾਂ '%s' ਬਦਲਣ 'ਚ ਅਸਫ਼ਲ: g_rename() ਫੇਲ੍ਹ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:950 ../glib/gfileutils.c:1415
|
||||
#: glib/gfileutils.c:950 glib/gfileutils.c:1415
|
||||
#, c-format
|
||||
msgid "Failed to create file '%s': %s"
|
||||
msgstr "ਫਾਇਲ %s' ਬਣਾਉਣ ਵਿੱਚ ਗਲਤੀ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:964
|
||||
#: glib/gfileutils.c:964
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
|
||||
msgstr "ਫਾਇਲ '%s' ਨੂੰ ਲਿਖਣ ਲਈ ਖੋਲਣ 'ਚ ਅਸਫ਼ਲ: fdopen() ਫੇਲ੍ਹ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:989
|
||||
#: glib/gfileutils.c:989
|
||||
#, c-format
|
||||
msgid "Failed to write file '%s': fwrite() failed: %s"
|
||||
msgstr "ਫਾਇਲ '%s' ਨੂੰ ਲਿਖਣ ਲਈ ਅਸਫ਼ਲ: fwrite() ਫੇਲ੍ਹ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1008
|
||||
#: glib/gfileutils.c:1008
|
||||
#, c-format
|
||||
msgid "Failed to close file '%s': fclose() failed: %s"
|
||||
msgstr "ਫਾਇਲ '%s' ਨੂੰ ਬੰਦ ਕਰਨ 'ਚ ਅਸਫ਼ਲ: fdopen() ਫੇਲ੍ਹ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1126
|
||||
#: glib/gfileutils.c:1126
|
||||
#, c-format
|
||||
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
|
||||
msgstr "ਮੌਜੂਦਾ ਫਾਇਲ '%s' ਨੂੰ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: g_unlink() ਫੇਲ੍ਹ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1376
|
||||
#: glib/gfileutils.c:1376
|
||||
#, c-format
|
||||
msgid "Template '%s' invalid, should not contain a '%s'"
|
||||
msgstr "ਨਮੂਨਾ %s ਸਹੀ ਨਹੀਂ ਹੈ, ਇਸ ਕੋਲ %s ਨਹੀਂ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ"
|
||||
|
||||
#: ../glib/gfileutils.c:1390
|
||||
#: glib/gfileutils.c:1390
|
||||
#, c-format
|
||||
msgid "Template '%s' doesn't end with XXXXXX"
|
||||
msgstr "ਨਮੂਨਾ '%s' XXXXXX ਨਾਲ ਖਤਮ ਨਹੀਂ ਹੁੰਦਾ"
|
||||
|
||||
#: ../glib/gfileutils.c:1865
|
||||
#: glib/gfileutils.c:1865
|
||||
#, c-format
|
||||
msgid "Failed to read the symbolic link '%s': %s"
|
||||
msgstr "ਚਿੰਨ੍ਹ ਸਬੰਧ '%s' ਖੋਲਣ ਵਿੱਚ ਗਲਤੀ: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1886
|
||||
#: glib/gfileutils.c:1886
|
||||
#, c-format
|
||||
msgid "Symbolic links not supported"
|
||||
msgstr "ਚਿੰਨ੍ਹ ਸਬੰਧ ਸਹਾਇਤਾ ਪ੍ਰਾਪਤ ਨਹੀਂ ਹਨ"
|
||||
|
||||
#: ../glib/giochannel.c:1154
|
||||
#: glib/giochannel.c:1154
|
||||
#, c-format
|
||||
msgid "Could not open converter from '%s' to '%s': %s"
|
||||
msgstr "'%s' ਤੋਂ '%s' ਬਦਲਣ ਵਾਲਾ ਖੋਲਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: %s"
|
||||
|
||||
#: ../glib/giochannel.c:1499
|
||||
#: glib/giochannel.c:1499
|
||||
#, c-format
|
||||
msgid "Can't do a raw read in g_io_channel_read_line_string"
|
||||
msgstr "g_io_channel_read_line_string ਖੁੱਲ ਨਹੀਂ ਰਿਹਾ ਹੈ"
|
||||
|
||||
#: ../glib/giochannel.c:1546 ../glib/giochannel.c:1803
|
||||
#: ../glib/giochannel.c:1889
|
||||
#: glib/giochannel.c:1546 glib/giochannel.c:1803 glib/giochannel.c:1889
|
||||
#, c-format
|
||||
msgid "Leftover unconverted data in read buffer"
|
||||
msgstr "ਕੁਝ ਅਣ-ਬਦਲਿਆ ਡਾਟਾ ਬਫਰ ਵਿੱਚ ਪਿਆ ਹੈ"
|
||||
|
||||
#: ../glib/giochannel.c:1626 ../glib/giochannel.c:1703
|
||||
#: glib/giochannel.c:1626 glib/giochannel.c:1703
|
||||
#, c-format
|
||||
msgid "Channel terminates in a partial character"
|
||||
msgstr "ਇਕ ਅੱਧ ਪਚਦੇ ਅੱਖਰ 'ਤੇ ਚੈਨਲ ਬੰਦ ਹੋ ਗਿਆ"
|
||||
|
||||
#: ../glib/giochannel.c:1689
|
||||
#: glib/giochannel.c:1689
|
||||
#, c-format
|
||||
msgid "Can't do a raw read in g_io_channel_read_to_end"
|
||||
msgstr "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': ਖੋਲ੍ਹਣ ਵਿੱਚ ਫੇਲ੍ਹ: fdopen() ਫੇਲ੍ਹ: %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:232
|
||||
#: glib/gmarkup.c:232
|
||||
#, c-format
|
||||
msgid "Error on line %d char %d: %s"
|
||||
msgstr "ਸਤਰ %d ਅੱਖਰ %d 'ਤੇ ਗਲਤੀ: %s"
|
||||
|
||||
#: ../glib/gmarkup.c:330
|
||||
#: glib/gmarkup.c:330
|
||||
#, c-format
|
||||
msgid "Error on line %d: %s"
|
||||
msgstr "ਸਤਰ %d ਉੱਤੇ ਗਲਤੀ: %s"
|
||||
|
||||
#: ../glib/gmarkup.c:434
|
||||
msgid "Empty entity '&;' seen; valid entities are: & " < > '"
|
||||
#: glib/gmarkup.c:434
|
||||
msgid ""
|
||||
"Empty entity '&;' seen; valid entities are: & " < > '"
|
||||
msgstr "ਖਾਲੀ ਇਕਾਈ '&;' ਵੇਖੋ; ਜਾਇਜ ਇਕਾਈਆਂ ਹਨ : & " < > '"
|
||||
|
||||
#: ../glib/gmarkup.c:444
|
||||
#: glib/gmarkup.c:444
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Character '%s' is not valid at the start of an entity name; the & character "
|
||||
@ -227,17 +235,17 @@ msgstr ""
|
||||
"ਇਹ %s ਅੱਖਰ ਕੋਈ ਇਕਾਈ ਸੁਰੂ ਕਰਨ ਲਈ ਗਲਤ ਹੈ & ਅੱਖਰ ਇਕਾਈ ਆਰੰਭ ਕਰਦਾ ਹੈ; ਜੇਕਰ ਇਹ ਐਪਰਸੈਡ ਇਕਾਈ "
|
||||
"ਬਣਨਯੋਗ ਨਹੀਂ ਤਾਂ ਇਸ ਨੂੰ ਇੰਝ & ਛੱਡ ਦਿਓ"
|
||||
|
||||
#: ../glib/gmarkup.c:478
|
||||
#: glib/gmarkup.c:478
|
||||
#, c-format
|
||||
msgid "Character '%s' is not valid inside an entity name"
|
||||
msgstr "'%s' ਅੱਖਰ ਇਕਾਈ ਦੇ ਨਾਂ ਲਈ ਜਾਇਜ਼ ਨਹੀਂ ਹੈ"
|
||||
|
||||
#: ../glib/gmarkup.c:515
|
||||
#: glib/gmarkup.c:515
|
||||
#, c-format
|
||||
msgid "Entity name '%s' is not known"
|
||||
msgstr "ਇਕਾਈ ਨਾਂ '%s' ਪਤਾ ਨਹੀਂ ਹੈ"
|
||||
|
||||
#: ../glib/gmarkup.c:526
|
||||
#: glib/gmarkup.c:526
|
||||
msgid ""
|
||||
"Entity did not end with a semicolon; most likely you used an ampersand "
|
||||
"character without intending to start an entity - escape ampersand as &"
|
||||
@ -245,7 +253,7 @@ msgstr ""
|
||||
"ਇਕਾਈ ਸੈਮੀਕਾਲਨ ਨਾਲ ਖਤਮ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੋ ਸਕਦਾ ਕਿ ਤੁਸੀ ਇੱਕ ਐਪਰਸੈਨਡ ਅੱਖਰ ਬਿਨਾਂ ਇਕਾਈ ਆਰੰਭ "
|
||||
"ਕੀਤੇ ਹੀ ਵਰਤ ਰਹੇ ਹੋ, ਐਪਰਸੈਨਡ ਇਸਤਰਾਂ & ਛੱਡੋ"
|
||||
|
||||
#: ../glib/gmarkup.c:579
|
||||
#: glib/gmarkup.c:579
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Failed to parse '%-.*s', which should have been a digit inside a character "
|
||||
@ -254,16 +262,16 @@ msgstr ""
|
||||
" '%-.*s' ਪਾਰਸ ਕਰਨ ਵਿੱਚ ਅਸਫਲ, ਜੋ ਕਿ ਅੱਖਰ ਵਿੱਚ ਨੰਬਰ ਹੋਣ ਚਾਹੀਦਾ ਹੈ ਵੇਖੋ (ê ਉਦਾਹਰਨ "
|
||||
"ਲਈ) - ਅੱਖਰ ਬਹੁਤ ਲੰਮਾ ਹੋ ਗਿਆ ਹੈ"
|
||||
|
||||
#: ../glib/gmarkup.c:604
|
||||
#: glib/gmarkup.c:604
|
||||
#, c-format
|
||||
msgid "Character reference '%-.*s' does not encode a permitted character"
|
||||
msgstr "ਅੱਖਰ ਦਾ ਹਵਾਲਾ '%-.*s' ਇਕ ਚੁਣੇ ਅੱਖਰ ਨੂੰ ਇਨਕੋਡ ਨਹੀਂ ਕਰ ਸਕਦਾ"
|
||||
|
||||
#: ../glib/gmarkup.c:619
|
||||
#: glib/gmarkup.c:619
|
||||
msgid "Empty character reference; should include a digit such as dž"
|
||||
msgstr "ਖਾਲੀ ਅੱਖਰ ਦਾ ਹਵਾਲਾ, ਕੋਈ ਨੰਬਰ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ ਜਿਵੇਂ ਕਿ dž"
|
||||
|
||||
#: ../glib/gmarkup.c:629
|
||||
#: glib/gmarkup.c:629
|
||||
msgid ""
|
||||
"Character reference did not end with a semicolon; most likely you used an "
|
||||
"ampersand character without intending to start an entity - escape ampersand "
|
||||
@ -272,56 +280,57 @@ msgstr ""
|
||||
"ਅੱਖਰੀ ਹਵਾਲਾ ਸੈਮੀਕਾਲਨ ਨਾਲ ਖਤਮ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੋ ਕਿ ਤੁਸੀ ਇੱਕ ਐਪਰਸੈਨਡ ਅੱਖਰ ਬਿਨਾਂ ਇਕਾਈ ਆਰੰਭ "
|
||||
"ਕੀਤੇ ਹੀ ਵਰਤ ਰਹੇ ਹੋ, ਐਪਰਸੈਨਡ ਇੰਝ & ਛੱਡੋ"
|
||||
|
||||
#: ../glib/gmarkup.c:715
|
||||
#: glib/gmarkup.c:715
|
||||
msgid "Unfinished entity reference"
|
||||
msgstr "ਅਧੂਰਾ ਇਕਾਈ ਹਵਾਲਾ"
|
||||
|
||||
#: ../glib/gmarkup.c:721
|
||||
#: glib/gmarkup.c:721
|
||||
msgid "Unfinished character reference"
|
||||
msgstr "ਅਧੂਰਾ ਅੱਖਰੀ ਹਵਾਲਾ"
|
||||
|
||||
#: ../glib/gmarkup.c:964 ../glib/gmarkup.c:992 ../glib/gmarkup.c:1023
|
||||
#: glib/gmarkup.c:964 glib/gmarkup.c:992 glib/gmarkup.c:1023
|
||||
msgid "Invalid UTF-8 encoded text"
|
||||
msgstr "ਗਲਤ UTF-8 ਇੰਕੋਡ ਅੱਖਰ"
|
||||
|
||||
#: ../glib/gmarkup.c:1059
|
||||
#: glib/gmarkup.c:1059
|
||||
msgid "Document must begin with an element (e.g. <book>)"
|
||||
msgstr "ਦਸਤਾਵੇਜ਼ ਇਕ ਇਕਾਈ (ਜਿਵੇ ਕਿ. <book>) ਨਾਲ ਆਰੰਭ ਹੋਣਾ ਜਰੂਰੀ ਹੈ"
|
||||
|
||||
#: ../glib/gmarkup.c:1099
|
||||
#: glib/gmarkup.c:1099
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following a '<' character; it may not begin an "
|
||||
"element name"
|
||||
msgstr ""
|
||||
"ਇਹ '%s' ਜਾਇਜ ਅੱਖਰ ਨਹੀਂ ਹੈ ਜੋ ਕਿ '<' ਅੱਖਰ ਤੋਂ ਮਗਰ ਹੈ, ਇਹ ਕਿਸੇ ਇਕਾਈ ਦੇ ਨਾਂ ਨਾਲ ਆਰੰਭ ਨਹੀਂ ਹੋਣਾ "
|
||||
"ਚਾਹੀਦਾ ਹੈ"
|
||||
"ਇਹ '%s' ਜਾਇਜ ਅੱਖਰ ਨਹੀਂ ਹੈ ਜੋ ਕਿ '<' ਅੱਖਰ ਤੋਂ ਮਗਰ ਹੈ, ਇਹ ਕਿਸੇ ਇਕਾਈ ਦੇ ਨਾਂ ਨਾਲ ਆਰੰਭ ਨਹੀਂ "
|
||||
"ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ"
|
||||
|
||||
#: ../glib/gmarkup.c:1163
|
||||
#: glib/gmarkup.c:1163
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '>' character to end the start tag of element "
|
||||
"'%s'"
|
||||
msgstr ""
|
||||
"ਅਨਿਸ਼ਚਿਤਅੱਖਰ '%s', ਇਹ '>' ਅੱਖਰ ਦੀ ਉਮੀਦ ਸੀ ਤਾਂ ਕਿ ਇਕਾਈ '%s' ਦੇ ਸ਼ੁਰੂ ਟੈਗ ਨੂੰ ਬੰਦ ਕੀਤਾ "
|
||||
"ਜਾ ਸਕੇ"
|
||||
"ਅਨਿਸ਼ਚਿਤਅੱਖਰ '%s', ਇਹ '>' ਅੱਖਰ ਦੀ ਉਮੀਦ ਸੀ ਤਾਂ ਕਿ ਇਕਾਈ '%s' ਦੇ ਸ਼ੁਰੂ ਟੈਗ ਨੂੰ ਬੰਦ ਕੀਤਾ ਜਾ "
|
||||
"ਸਕੇ"
|
||||
|
||||
#: ../glib/gmarkup.c:1252
|
||||
#: glib/gmarkup.c:1252
|
||||
#, c-format
|
||||
msgid "Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
|
||||
msgstr "ਅਨਿਸ਼ਚਿਤ ਅੱਖਰ %s ਹੈ, ਇਕਾਈ %s ਦੇ ਇਸ ਵਿਸ਼ੇਸਤਾ ਨਾਂ %s ਮਗਰੋਂ = ਲੋੜੀਦਾ ਸੀ"
|
||||
|
||||
#: ../glib/gmarkup.c:1294
|
||||
#: glib/gmarkup.c:1294
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
|
||||
"element '%s', or optionally an attribute; perhaps you used an invalid "
|
||||
"character in an attribute name"
|
||||
msgstr ""
|
||||
"ਅਨਿਸ਼ਚਿਤ ਅੱਖਰ '%s' ਹੈ, ਇਕ ਅੱਖਰ '>'ਜਾਂ '/' ਨਿਸ਼ਚਿਤ ਅੱਖਰ ਹੈ ਤਾਂ ਕਿ ਹਿੱਸੇ ਦੇ ਸ਼ੁਰੂ ਕੀਤੇ ਟੈਗ "
|
||||
"ਨੂੰ ਖਤਮ ਕੀਤੀ ਜਾ ਸਕੇ '%s', ਜਾਂ ਚੁਣਿਆ ਪ੍ਰਤੀਕ, ਜਿਸ ਲ਼ਈ ਤੁਸੀ ਗਲਤ ਨਾਂ ਭਰਿਆ ਹੈ"
|
||||
"ਅਨਿਸ਼ਚਿਤ ਅੱਖਰ '%s' ਹੈ, ਇਕ ਅੱਖਰ '>'ਜਾਂ '/' ਨਿਸ਼ਚਿਤ ਅੱਖਰ ਹੈ ਤਾਂ ਕਿ ਹਿੱਸੇ ਦੇ ਸ਼ੁਰੂ ਕੀਤੇ ਟੈਗ ਨੂੰ "
|
||||
"ਖਤਮ ਕੀਤੀ ਜਾ ਸਕੇ '%s', ਜਾਂ ਚੁਣਿਆ ਪ੍ਰਤੀਕ, ਜਿਸ ਲ਼ਈ ਤੁਸੀ ਗਲਤ ਨਾਂ ਭਰਿਆ ਹੈ"
|
||||
|
||||
#: ../glib/gmarkup.c:1383
|
||||
#: glib/gmarkup.c:1383
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected an open quote mark after the equals sign when "
|
||||
@ -330,65 +339,67 @@ msgstr ""
|
||||
"ਅਨਿਸ਼ਚਿਤ ਅੱਖਰ '%s', ਬਰਾਬਰ ਦੇ ਨਿਸ਼ਾਨ ਮਗਰੋ ਇਕ ਖੁੱਲਾ ਹਵਾਲਾ ਨਿਸ਼ਾਨ ਜਰੂਰੀ ਹੈ, ਜਦੋਂ ਕਿ ਤੁਸੀ ਇੱਕ "
|
||||
"ਇਕਾਈ '%s' ਦੀ ਵਿਸ਼ੇਸ਼ਤਾ '%s' ਲਈ ਮੁੱਲ ਦੇ ਰਹੇ ਹੋ"
|
||||
|
||||
#: ../glib/gmarkup.c:1528
|
||||
#: glib/gmarkup.c:1528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following the characters '</'; '%s' may not "
|
||||
"begin an element name"
|
||||
msgstr "ਇਸ '</' ਅੱਖਰ ਮਗਰੋਂ ਇਹ %s' ਅੱਖਰ ਜਾਇਜ ਨਹੀਂ ਹੈ, '%s' ਇਕ ਇਕਾਈ ਦੇ ਨਾਂ ਨਾਲ ਆਰੰਭ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੈ"
|
||||
msgstr ""
|
||||
"ਇਸ '</' ਅੱਖਰ ਮਗਰੋਂ ਇਹ %s' ਅੱਖਰ ਜਾਇਜ ਨਹੀਂ ਹੈ, '%s' ਇਕ ਇਕਾਈ ਦੇ ਨਾਂ ਨਾਲ ਆਰੰਭ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੈ"
|
||||
|
||||
#: ../glib/gmarkup.c:1568
|
||||
#: glib/gmarkup.c:1568
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following the close element name '%s'; the "
|
||||
"allowed character is '>'"
|
||||
msgstr "ਇਹ '%s' ਅੱਖਰ ਬੰਦ ਭਾਗ ਦੇ ਨਾਂ ਮਗਰੋਂ ਜਾਇਜ ਨਹੀਂ ਹੈ '%s'; ਸਿਰਫ '>' ਅੱਖਰ ਹੀ ਮਨਜ਼ੂਰ ਹੈ"
|
||||
|
||||
#: ../glib/gmarkup.c:1579
|
||||
#: glib/gmarkup.c:1579
|
||||
#, c-format
|
||||
msgid "Element '%s' was closed, no element is currently open"
|
||||
msgstr "ਇਹ ਇਕਾਈ '%s' ਬੰਦ ਸੀ, ਕੋਈ ਇਕਾਈ ਖੁੱਲੀ ਨਹੀਂ ਹੈ"
|
||||
|
||||
#: ../glib/gmarkup.c:1588
|
||||
#: glib/gmarkup.c:1588
|
||||
#, c-format
|
||||
msgid "Element '%s' was closed, but the currently open element is '%s'"
|
||||
msgstr "ਇਹ ਇਕਾਈ '%s' ਬੰਦ ਸੀ, ਪਰ '%s' ਇਕਾਈ ਖੁੱਲਾ ਹੈ"
|
||||
|
||||
#: ../glib/gmarkup.c:1735
|
||||
#: glib/gmarkup.c:1735
|
||||
msgid "Document was empty or contained only whitespace"
|
||||
msgstr "ਦਸਤਾਵੇਜ਼ ਖਾਲੀ ਹੈ ਜਾਂ ਕੇਵਲ ਖਾਲੀ ਥਾਂ ਹੀ ਰੱਖਦਾ ਹੈ"
|
||||
|
||||
#: ../glib/gmarkup.c:1749
|
||||
#: glib/gmarkup.c:1749
|
||||
msgid "Document ended unexpectedly just after an open angle bracket '<'"
|
||||
msgstr "ਦਸਤਾਵੇਜ਼ ਬੇਉਮੀਦ ਬੰਦ ਹੋ ਗਿਆ ਹੈ, ਇਕ ਖੁਂਲੀ ਬਰੈਕਟ '<' ਪਾਉਣ ਮਗਰੋਂ"
|
||||
|
||||
#: ../glib/gmarkup.c:1757 ../glib/gmarkup.c:1801
|
||||
#: glib/gmarkup.c:1757 glib/gmarkup.c:1801
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Document ended unexpectedly with elements still open - '%s' was the last "
|
||||
"element opened"
|
||||
msgstr "ਦਸਤਾਵੇਜ਼ ਬੇਉਮੀਦ ਬੰਦ ਹੋ ਗਿਆ ਹੈ, ਜਦੋਂ ਕਿ-ਇਹ '%s' ਆਖਰੀ ਖੁੱਲਾ ਭਾਗ ਹੈ"
|
||||
|
||||
#: ../glib/gmarkup.c:1765
|
||||
#: glib/gmarkup.c:1765
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Document ended unexpectedly, expected to see a close angle bracket ending "
|
||||
"the tag <%s/>"
|
||||
msgstr "ਦਸਤਾਵੇਜ਼ ਬੇਉਮੀਦ ਬੰਦ ਹੋ ਗਿਆ ਹੈ, ਇਕ ਬੰਦ ਬਰੈਕਟ <%s/> ਜੋ ਕਿ ਪੱਟੀ ਨੂੰ ਬੰਦ ਕਰਦੀ ਹੈ, ਦੀ ਉਮੀਦ ਸੀ"
|
||||
msgstr ""
|
||||
"ਦਸਤਾਵੇਜ਼ ਬੇਉਮੀਦ ਬੰਦ ਹੋ ਗਿਆ ਹੈ, ਇਕ ਬੰਦ ਬਰੈਕਟ <%s/> ਜੋ ਕਿ ਪੱਟੀ ਨੂੰ ਬੰਦ ਕਰਦੀ ਹੈ, ਦੀ ਉਮੀਦ ਸੀ"
|
||||
|
||||
#: ../glib/gmarkup.c:1771
|
||||
#: glib/gmarkup.c:1771
|
||||
msgid "Document ended unexpectedly inside an element name"
|
||||
msgstr "ਇਕ ਹਿੱਸੇ ਦੇ ਨਾਂ ਕਰਕੇ ਦਸਤਾਵੇਜ਼ ਬੇਉਮੀਦ ਬੰਦ ਹੋ ਗਿਆ ਹੈ"
|
||||
|
||||
#: ../glib/gmarkup.c:1776
|
||||
#: glib/gmarkup.c:1776
|
||||
msgid "Document ended unexpectedly inside an attribute name"
|
||||
msgstr "ਇਕ ਗੁਣ ਦੇ ਨਾਂ ਕਰਕੇ ਦਸਤਾਵੇਜ਼ ਬੇਉਮੀਦ ਬੰਦ ਹੋ ਗਿਆ ਹੈ"
|
||||
|
||||
#: ../glib/gmarkup.c:1781
|
||||
#: glib/gmarkup.c:1781
|
||||
msgid "Document ended unexpectedly inside an element-opening tag."
|
||||
msgstr "ਇਕ ਹਿੱਸੇ ਦੀ ਖੁੱਲੀ ਪੱਟੀ ਕਰਕੇ ਦਸਤਾਵੇਜ਼ ਬੇਉਮੀਦ ਬੰਦ ਹੋ ਗਿਆ ਹੈ"
|
||||
|
||||
#: ../glib/gmarkup.c:1787
|
||||
#: glib/gmarkup.c:1787
|
||||
msgid ""
|
||||
"Document ended unexpectedly after the equals sign following an attribute "
|
||||
"name; no attribute value"
|
||||
@ -396,289 +407,300 @@ msgstr ""
|
||||
"ਇਕ ਗੁਣ ਦੇ ਨਾਂ ਤੋ ਪਹਿਲਾਂ ਬਰਾਬਰ ਦੇ ਨਿਸ਼ਾਨ ਕਰਕੇ ਦਸਤਾਵੇਜ਼ ਬੇਉਮੀਦ ਬੰਦ ਹੋ ਗਿਆ ਹੈ, ਗੁਣ ਦਾ ਕੋਈ ਮੁੱਲ "
|
||||
"ਨਹੀਂ ਹੈ"
|
||||
|
||||
#: ../glib/gmarkup.c:1794
|
||||
#: glib/gmarkup.c:1794
|
||||
msgid "Document ended unexpectedly while inside an attribute value"
|
||||
msgstr "ਇਕ ਗੁਣ ਦੇ ਮੁੱਲ ਕਰਕੇ ਦਸਤਾਵੇਜ਼ ਬੇਉਮੀਦ ਬੰਦ ਹੋ ਗਿਆ ਹੈ"
|
||||
|
||||
#: ../glib/gmarkup.c:1809
|
||||
#: glib/gmarkup.c:1809
|
||||
#, c-format
|
||||
msgid "Document ended unexpectedly inside the close tag for element '%s'"
|
||||
msgstr "ਇਕ ਹਿੱਸੇ '%s' ਦੀ ਪੱਟੀ ਕਰਕੇ ਦਸਤਾਵੇਜ਼ ਬੇਉਮੀਦ ਬੰਦ ਹੋ ਗਿਆ ਹੈ"
|
||||
|
||||
#: ../glib/gmarkup.c:1815
|
||||
#: glib/gmarkup.c:1815
|
||||
msgid "Document ended unexpectedly inside a comment or processing instruction"
|
||||
msgstr "ਇਕ ਟਿੱਪਣੀ ਜਾਂ ਹਦਾਇਤ ਚਲਾਉਣ ਦੌਰਾਨ ਦਸਤਾਵੇਜ਼ ਬੇਉਮੀਦ ਬੰਦ ਹੋ ਗਿਆ ਹੈ"
|
||||
|
||||
#: ../glib/gshell.c:73
|
||||
#: glib/gshell.c:73
|
||||
#, c-format
|
||||
msgid "Quoted text doesn't begin with a quotation mark"
|
||||
msgstr "ਹਵਾਲਾ ਅੱਖਰ ਇਕ ਹਵਾਲਾ ਨਿਸ਼ਾਨ ਨਾਲ ਆਰੰਭ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੈ"
|
||||
|
||||
#: ../glib/gshell.c:163
|
||||
#: glib/gshell.c:163
|
||||
#, c-format
|
||||
msgid "Unmatched quotation mark in command line or other shell-quoted text"
|
||||
msgstr "ਕਮਾਂਡ ਸਤਰ ਜਾਂ ਸੈਲ ਅੱਖਰ ਵਿੱਚ ਬੇਮੇਲ ਹਵਾਲਾ ਨਿਸ਼ਾਨ ਹੈ"
|
||||
|
||||
#: ../glib/gshell.c:541
|
||||
#: glib/gshell.c:541
|
||||
#, c-format
|
||||
msgid "Text ended just after a '\\' character. (The text was '%s')"
|
||||
msgstr "ਇੱਕ '\\' ਅੱਖਰ ਮਗਰੋਂ ਅੱਖਰ ਖਤਮ ਹੋਣੇ ਹਨ (ਅੱਖਰ ਸੀ '%s')"
|
||||
|
||||
#: ../glib/gshell.c:548
|
||||
#: glib/gshell.c:548
|
||||
#, c-format
|
||||
msgid "Text ended before matching quote was found for %c. (The text was '%s')"
|
||||
msgstr "%c ਲਈ ਹਵਾਲਾ ਲੱਭਣ ਤੋਂ ਪਹਿਲਾਂ ਅੱਖਰ ਖਤਮ. (ਅੱਖਰ ਸੀ '%s')"
|
||||
|
||||
#: ../glib/gshell.c:560
|
||||
#: glib/gshell.c:560
|
||||
#, c-format
|
||||
msgid "Text was empty (or contained only whitespace)"
|
||||
msgstr "ਅੱਖਰੀ ਪਾਠ ਖਾਲੀ ਸੀ (ਜਾਂ ਸਾਫ ਥਾਂ ਹੀ ਹੈ)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:276
|
||||
#: glib/gspawn-win32.c:276
|
||||
#, c-format
|
||||
msgid "Failed to read data from child process"
|
||||
msgstr "ਅਗਲੀ ਕਿਰਿਆਵਾਂ ਤੋ ਡਾਟਾ ਵੇਖਣ ਵਿੱਚ ਅਸਫਲ ਹੈ"
|
||||
|
||||
#: ../glib/gspawn-win32.c:291 ../glib/gspawn.c:1364
|
||||
#: glib/gspawn-win32.c:291 glib/gspawn.c:1364
|
||||
#, c-format
|
||||
msgid "Failed to create pipe for communicating with child process (%s)"
|
||||
msgstr "ਅਧੀਨ ਕਿਰਿਆ (%s) ਨਾਲ ਸੰਚਾਰ ਲਈ ਪਾਇਪ ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ ਹੈ"
|
||||
|
||||
#: ../glib/gspawn-win32.c:329 ../glib/gspawn.c:1028
|
||||
#: glib/gspawn-win32.c:329 glib/gspawn.c:1028
|
||||
#, c-format
|
||||
msgid "Failed to read from child pipe (%s)"
|
||||
msgstr "ਅਧੀਨ ਕਿਰਿਆ (%s) ਤੋਂ ਡਾਟਾ ਖੋਲਣ ਵਿੱਚ ਅਸਫਲ ਹੈ"
|
||||
|
||||
#: ../glib/gspawn-win32.c:355 ../glib/gspawn.c:1233
|
||||
#: glib/gspawn-win32.c:355 glib/gspawn.c:1233
|
||||
#, c-format
|
||||
msgid "Failed to change to directory '%s' (%s)"
|
||||
msgstr "ਡਾਇਰੈਕਟਰੀ '%s' ਬਦਲਣ ਵਿੱਚ ਅਸਫਲ (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:361 ../glib/gspawn-win32.c:581
|
||||
#: glib/gspawn-win32.c:361 glib/gspawn-win32.c:581
|
||||
#, c-format
|
||||
msgid "Failed to execute child process (%s)"
|
||||
msgstr "ਅਗਲੀ ਕਿਰਿਆ (%s) ਚਾਲੂ ਕਰਨ ਵਿੱਚ ਅਸਫਲ"
|
||||
|
||||
#: ../glib/gspawn-win32.c:471 ../glib/gspawn-win32.c:527
|
||||
#: glib/gspawn-win32.c:471 glib/gspawn-win32.c:527
|
||||
#, c-format
|
||||
msgid "Invalid program name: %s"
|
||||
msgstr "ਗਲਤ ਪ੍ਰੋਗਰਾਮ ਨਾਂ: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:481 ../glib/gspawn-win32.c:537
|
||||
#: ../glib/gspawn-win32.c:780 ../glib/gspawn-win32.c:835
|
||||
#: ../glib/gspawn-win32.c:1370
|
||||
#: glib/gspawn-win32.c:481 glib/gspawn-win32.c:537 glib/gspawn-win32.c:780
|
||||
#: glib/gspawn-win32.c:835 glib/gspawn-win32.c:1370
|
||||
#, c-format
|
||||
msgid "Invalid string in argument vector at %d: %s"
|
||||
msgstr "%d ਉੱਤੇ ਮੁੱਲ ਵੈਕਟਰ ਵਿੱਚ ਗਲਤ ਸਤਰ: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:492 ../glib/gspawn-win32.c:548
|
||||
#: ../glib/gspawn-win32.c:794 ../glib/gspawn-win32.c:848
|
||||
#: ../glib/gspawn-win32.c:1403
|
||||
#: glib/gspawn-win32.c:492 glib/gspawn-win32.c:548 glib/gspawn-win32.c:794
|
||||
#: glib/gspawn-win32.c:848 glib/gspawn-win32.c:1403
|
||||
#, c-format
|
||||
msgid "Invalid string in environment: %s"
|
||||
msgstr "ਵਾਤਾਵਰਨ ਵਿੱਚ ਗਲਤ ਸਤਰ: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:776 ../glib/gspawn-win32.c:831
|
||||
#: ../glib/gspawn-win32.c:1351
|
||||
#: glib/gspawn-win32.c:776 glib/gspawn-win32.c:831 glib/gspawn-win32.c:1351
|
||||
#, c-format
|
||||
msgid "Invalid working directory: %s"
|
||||
msgstr "ਗਲਤ ਮੌਜੂਦਾ ਡਾਇਰੈਕਟਰੀ: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:890
|
||||
#: glib/gspawn-win32.c:890
|
||||
#, c-format
|
||||
msgid "Failed to execute helper program (%s)"
|
||||
msgstr "ਸਹਾਇਤਾ ਕਾਰਜ (%s) ਸ਼ੁਰੂ ਕਰਨ 'ਚ ਅਸਫ਼ਲ"
|
||||
|
||||
#: ../glib/gspawn-win32.c:1090
|
||||
#: glib/gspawn-win32.c:1090
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Unexpected error in g_io_channel_win32_poll() reading data from a child "
|
||||
"process"
|
||||
msgstr "ਅਗਲੀ ਕਿਰਿਆ ਤੋਂ ਡਾਟਾ ਪੜ੍ਹਨ ਦੌਰਾਨ g_io_channel_win32_poll() ਵਿੱਚ ਅਚਾਨਕ ਗਲਤੀ"
|
||||
|
||||
#: ../glib/gspawn.c:168
|
||||
#: glib/gspawn.c:168
|
||||
#, c-format
|
||||
msgid "Failed to read data from child process (%s)"
|
||||
msgstr "ਅਧੀਨ ਕਿਰਿਆ (%s) ਤੋ ਡਾਟਾ ਖੋਲ੍ਹਣ 'ਚ ਅਸਫ਼ਲ"
|
||||
|
||||
#: ../glib/gspawn.c:300
|
||||
#: glib/gspawn.c:300
|
||||
#, c-format
|
||||
msgid "Unexpected error in select() reading data from a child process (%s)"
|
||||
msgstr "ਅਧੀਨ ਕਿਰਿਆ (%s) ਤੋਂ ਡਾਟਾ ਖੋਲਣ ਲਈ select() ਵਿੱਚ ਅਚਾਨਕ ਗਲਤੀ"
|
||||
|
||||
#: ../glib/gspawn.c:383
|
||||
#: glib/gspawn.c:383
|
||||
#, c-format
|
||||
msgid "Unexpected error in waitpid() (%s)"
|
||||
msgstr "waitpid() (%s) ਵਿੱਚ ਅਚਾਨਕ ਗਲਤੀ"
|
||||
|
||||
#: ../glib/gspawn.c:1093
|
||||
#: glib/gspawn.c:1093
|
||||
#, c-format
|
||||
msgid "Failed to fork (%s)"
|
||||
msgstr "ਵੰਡਣ (ਫੋਰਕ) (%s) ਲਈ ਅਸਫ਼ਲ"
|
||||
|
||||
#: ../glib/gspawn.c:1243
|
||||
#: glib/gspawn.c:1243
|
||||
#, c-format
|
||||
msgid "Failed to execute child process \"%s\" (%s)"
|
||||
msgstr "ਅਧੀਨ ਕਿਰਿਆ \"%s\" ਸ਼ੁਰੂ ਕਰਨ ਵਿੱਚ ਅਸਫਲ ਹੈ (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1253
|
||||
#: glib/gspawn.c:1253
|
||||
#, c-format
|
||||
msgid "Failed to redirect output or input of child process (%s)"
|
||||
msgstr "ਅਧੀਨ ਕਿਰਿਆ (%s) ਦੀ ਆਉਟਪੁੱਟ ਜਾਂ ਇੰਪੁੱਟ ਦੀ ਦਿਸ਼ਾ ਬਦਲਣ 'ਚ ਫੇਲ੍ਹ"
|
||||
|
||||
#: ../glib/gspawn.c:1262
|
||||
#: glib/gspawn.c:1262
|
||||
#, c-format
|
||||
msgid "Failed to fork child process (%s)"
|
||||
msgstr "ਅਧੀਨ ਕਿਰਿਆ (%s) ਨੂੰ ਵੰਡਣ 'ਚ ਅਸਫ਼ਲ"
|
||||
|
||||
#: ../glib/gspawn.c:1270
|
||||
#: glib/gspawn.c:1270
|
||||
#, c-format
|
||||
msgid "Unknown error executing child process \"%s\""
|
||||
msgstr "ਅਧੀਨ ਕਿਰਿਆ \"%s\" ਨੂੰ ਚਾਲੂ ਕਰਨ ਵਿੱਚ ਅਸਫਲ ਹੈ"
|
||||
|
||||
#: ../glib/gspawn.c:1292
|
||||
#: glib/gspawn.c:1292
|
||||
#, c-format
|
||||
msgid "Failed to read enough data from child pid pipe (%s)"
|
||||
msgstr "ਅਧੀਨ ਕਿਰਿਆ ਪਾਇਪ (%s) ਤੋਂ ਚਾਹੀਦਾ ਡਾਟਾ ਖੋਲਣ ਵਿੱਚ ਅਸਫਲ ਹੈ"
|
||||
|
||||
#: ../glib/gutf8.c:1017
|
||||
#: glib/gutf8.c:1017
|
||||
#, c-format
|
||||
msgid "Character out of range for UTF-8"
|
||||
msgstr "UTF-8 ਲਈ ਅੱਖਰ ਨਿਸ਼ਚਿਤ ਸੀਮਾ ਤੋਂ ਬਾਹਰ"
|
||||
|
||||
#: ../glib/gutf8.c:1111 ../glib/gutf8.c:1120 ../glib/gutf8.c:1252
|
||||
#: ../glib/gutf8.c:1261 ../glib/gutf8.c:1402 ../glib/gutf8.c:1498
|
||||
#: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 glib/gutf8.c:1261
|
||||
#: glib/gutf8.c:1402 glib/gutf8.c:1498
|
||||
#, c-format
|
||||
msgid "Invalid sequence in conversion input"
|
||||
msgstr "ਬਦਲਾਉ ਇੰਪੁੱਟ ਵਿੱਚ ਤਰਤੀਬ ਜਾਇਜ ਨਹੀਂ ਹੈ"
|
||||
|
||||
#: ../glib/gutf8.c:1413 ../glib/gutf8.c:1509
|
||||
#: glib/gutf8.c:1413 glib/gutf8.c:1509
|
||||
#, c-format
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "UTF-16 ਲਈ ਅੱਖਰ ਨਿਸ਼ਚਿਤ ਸੀਮਾ ਤੋਂ ਬਾਹਰ"
|
||||
|
||||
#: ../glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "ਵਰਤੋਂ:"
|
||||
|
||||
#: ../glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[ਚੋਣ...]"
|
||||
|
||||
#: ../glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "ਸਹਾਇਤਾ ਚੋਣ:"
|
||||
|
||||
#: ../glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "ਸਹਾਇਤਾ ਚੋਣ ਵੇਖਾਓ"
|
||||
|
||||
#: ../glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "ਸਭ ਸਹਾਇਤਾ ਚੋਣਾਂ ਵੇਖਾਓ"
|
||||
|
||||
#: ../glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "ਕਾਰਜ ਚੋਣ:"
|
||||
|
||||
#: ../glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "ਪੂਰਨ ਅੰਕ ਮੁੱਲ %s' ਨੂੰ %s ਲਈ ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ"
|
||||
|
||||
#: ../glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "ਪੂਰਨ ਅੰਕ '%s' %s ਲਈ ਸੀਮਾ ਤੋਂ ਬਾਹਰ ਜਾ ਰਿਹਾ ਹੈ"
|
||||
|
||||
#: ../glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "ਚੋਣ %s ਪਾਰਸ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ"
|
||||
|
||||
#: ../glib/goption.c:959 ../glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "%s ਲਈ ਮੁੱਲ ਗੁੰਮ ਹੈ"
|
||||
|
||||
#: ../glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "ਅਣਜਾਣ ਚੋਣ %s"
|
||||
|
||||
#: ../glib/gkeyfile.c:339
|
||||
#: glib/gkeyfile.c:339
|
||||
#, c-format
|
||||
msgid "Valid key file could not be found in data dirs"
|
||||
msgstr "ਡਾਟਾ ਡਾਇਰੈਕਟਰੀਆਂ ਵਿੱਚ ਠੀਕ ਕੁੰਜੀ ਫਾਇਲ ਨਹੀਂ ਖੋਜੀ ਜਾ ਸਕੀ"
|
||||
|
||||
#: ../glib/gkeyfile.c:374
|
||||
#: glib/gkeyfile.c:374
|
||||
#, c-format
|
||||
msgid "Not a regular file"
|
||||
msgstr "ਇੱਕ ਨਿਯਮਤ ਫਾਇਲ ਨਹੀਂ"
|
||||
|
||||
#: ../glib/gkeyfile.c:382
|
||||
#: glib/gkeyfile.c:382
|
||||
#, c-format
|
||||
msgid "File is empty"
|
||||
msgstr "ਫਾਇਲ ਖਾਲੀ ਹੈ"
|
||||
|
||||
#: ../glib/gkeyfile.c:697
|
||||
#: glib/gkeyfile.c:697
|
||||
#, c-format
|
||||
msgid "Key file contains line '%s' which is not a key-value pair, group, or comment"
|
||||
msgid ""
|
||||
"Key file contains line '%s' which is not a key-value pair, group, or comment"
|
||||
msgstr "ਕੁੰਜੀ ਫਾਇਲ ਸਤਰ '%s' ਰੱਖਦੀ ਹੈ, ਜੋ ਕਿ ਕੁੰਜੀ-ਮੁੱਲ ਜੋੜਾ, ਗਰੁੱਪ ਜਾਂ ਟਿੱਪਣੀ ਨਹੀਂ ਹੈ"
|
||||
|
||||
#: ../glib/gkeyfile.c:765
|
||||
#: glib/gkeyfile.c:765
|
||||
#, c-format
|
||||
msgid "Key file does not start with a group"
|
||||
msgstr "ਕੁੰਜੀ ਫਾਇਲ ਸਮੂਹ ਨਾਲ ਸ਼ੁਰੂ ਨਹੀਂ ਹੋ ਸਕਦੀ ਹੈ"
|
||||
|
||||
#: ../glib/gkeyfile.c:808
|
||||
#: glib/gkeyfile.c:808
|
||||
#, c-format
|
||||
msgid "Key file contains unsupported encoding '%s'"
|
||||
msgstr "ਕੁੰਜੀ ਫਾਇਲ ਨਾ-ਸਹਾਇਕ ਇੰਕੋਡਿਗ '%s' ਰੱਖਦੀ ਹੈ"
|
||||
|
||||
#: ../glib/gkeyfile.c:1017 ../glib/gkeyfile.c:1176 ../glib/gkeyfile.c:2177
|
||||
#: ../glib/gkeyfile.c:2242 ../glib/gkeyfile.c:2361 ../glib/gkeyfile.c:2497
|
||||
#: ../glib/gkeyfile.c:2649 ../glib/gkeyfile.c:2823 ../glib/gkeyfile.c:2880
|
||||
#: glib/gkeyfile.c:1017 glib/gkeyfile.c:1176 glib/gkeyfile.c:2177
|
||||
#: glib/gkeyfile.c:2242 glib/gkeyfile.c:2361 glib/gkeyfile.c:2497
|
||||
#: glib/gkeyfile.c:2649 glib/gkeyfile.c:2823 glib/gkeyfile.c:2880
|
||||
#, c-format
|
||||
msgid "Key file does not have group '%s'"
|
||||
msgstr "ਕੁੰਜੀ ਫਾਇਲ ਦਾ ਸਮੂਹ '%s' ਨਹੀਂ ਹੈ"
|
||||
|
||||
#: ../glib/gkeyfile.c:1188
|
||||
#: glib/gkeyfile.c:1188
|
||||
#, c-format
|
||||
msgid "Key file does not have key '%s'"
|
||||
msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ '%s' ਕੁੰਜੀ ਨਹੀਂ ਹੈ"
|
||||
|
||||
#: ../glib/gkeyfile.c:1289 ../glib/gkeyfile.c:1398
|
||||
#: glib/gkeyfile.c:1289 glib/gkeyfile.c:1398
|
||||
#, c-format
|
||||
msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
|
||||
msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ ਕੁੰਜੀ '%s' ਦਾ ਮੁੱਲ '%s' ਹੈ, ਜੋ ਕਿ UTF-8 ਨਹੀਂ ਹੈ"
|
||||
|
||||
#: ../glib/gkeyfile.c:1307 ../glib/gkeyfile.c:1416 ../glib/gkeyfile.c:1788
|
||||
#: glib/gkeyfile.c:1307 glib/gkeyfile.c:1416 glib/gkeyfile.c:1788
|
||||
#, c-format
|
||||
msgid "Key file contains key '%s' which has value that cannot be interpreted."
|
||||
msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ '%s' ਕੁੰਜੀ ਹੈ, ਜਿਸ ਤੇ ਕਾਰਵਾਈ ਨਹੀਂ ਹੋ ਸਕਦੀ ਹੈ"
|
||||
|
||||
#: ../glib/gkeyfile.c:2004
|
||||
#: glib/gkeyfile.c:2004
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Key file contains key '%s' in group '%s' which has value that cannot be "
|
||||
"interpreted."
|
||||
msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ ਕੁੰਜੀ '%s' ਗਰੁੱਪ '%s' ਵਿੱਚ ਹੈ, ਜਿਸ ਦੇ ਮੁੱਲ ਨੂੰ ਇੰਟਰਪਰੇਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।"
|
||||
msgstr ""
|
||||
"ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ ਕੁੰਜੀ '%s' ਗਰੁੱਪ '%s' ਵਿੱਚ ਹੈ, ਜਿਸ ਦੇ ਮੁੱਲ ਨੂੰ ਇੰਟਰਪਰੇਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।"
|
||||
|
||||
#: ../glib/gkeyfile.c:2192 ../glib/gkeyfile.c:2376 ../glib/gkeyfile.c:2891
|
||||
#: glib/gkeyfile.c:2192 glib/gkeyfile.c:2376 glib/gkeyfile.c:2891
|
||||
#, c-format
|
||||
msgid "Key file does not have key '%s' in group '%s'"
|
||||
msgstr "ਕੁੰਜੀ ਫਾਇਲ ਕੁੰਜੀ '%s' ਗਰੁੱਪ '%s' ਵਿੱਚ ਨਹੀਂ ਹੈ"
|
||||
|
||||
#: ../glib/gkeyfile.c:3067
|
||||
#: glib/gkeyfile.c:3067
|
||||
#, c-format
|
||||
msgid "Key file contains escape character at end of line"
|
||||
msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ ਸਤਰ ਦੇ ਅੰਤ ਵਿੱਚ ਇਸਕੇਪ ਅੱਖਰ ਹੈ"
|
||||
|
||||
#: ../glib/gkeyfile.c:3089
|
||||
#: glib/gkeyfile.c:3089
|
||||
#, c-format
|
||||
msgid "Key file contains invalid escape sequence '%s'"
|
||||
msgstr "ਕੁੰਜੀ ਫਾਇਲ ਵਿੱਚ ਗਲਤ ਇਸਕੇਪ ਕ੍ਰਮ '%s' ਹੈ"
|
||||
|
||||
#: ../glib/gkeyfile.c:3230
|
||||
#: glib/gkeyfile.c:3230
|
||||
#, c-format
|
||||
msgid "Value '%s' cannot be interpreted as a number."
|
||||
msgstr "ਮੁੱਲ '%s' ਨੂੰ ਇੱਕ ਅੰਕ ਦੇ ਤੌਰ 'ਤੇ ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ ਹੈ।"
|
||||
|
||||
#: ../glib/gkeyfile.c:3240
|
||||
#: glib/gkeyfile.c:3240
|
||||
#, c-format
|
||||
msgid "Integer value '%s' out of range"
|
||||
msgstr "ਪੂਰਨ ਅੰਕ '%s' ਸੀਮਾ ਤੋਂ ਬਾਹਰ ਹੈ"
|
||||
|
||||
#: ../glib/gkeyfile.c:3270
|
||||
#: glib/gkeyfile.c:3270
|
||||
#, c-format
|
||||
msgid "Value '%s' cannot be interpreted as a boolean."
|
||||
msgstr "ਮੁੱਲ '%s' ਨੂੰ ਬੂਲੀਅਨ ਵਾਂਗ ਇੰਟਰਪਰੇਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।"
|
||||
|
||||
|
24
po/pl.po
24
po/pl.po
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-02-25 11:51+0100\n"
|
||||
"Last-Translator: GNOME PL Team <translators@gnomepl.org>\n"
|
||||
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
|
||||
@ -606,51 +606,51 @@ msgstr "Niepoprawna sekwencja na wejściu konwersji"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Znak jest poza zakresem dopuszczalnym dla UTF-8"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Użycie:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPCJA...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Opcje pomocy:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Wyświetlenie opcji pomocy"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Wyświetlenie wszystkich opcji pomocy"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Opcje aplikacji:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Nie można przetworzyć wartości liczbowej \"%s\" dla %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Wartość liczbowa \"%s\" dla %s jest z poza dopuszczalnego zakresu"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Błąd podczas przetwarzania opcji %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Brakujący parametr dla %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Nieznana opcja %s"
|
||||
|
24
po/pt.po
24
po/pt.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 2.14\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-28 12:50+0000\n"
|
||||
"Last-Translator: Duarte Loreto <happyguy_pt@hotmail.com>\n"
|
||||
"Language-Team: Portuguese <gnome_pt@yahoogroups.com>\n"
|
||||
@ -585,51 +585,51 @@ msgstr "Sequência inválida na conversão da entrada"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Caracter fora do limite para UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Utilização:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPÇÃO...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Opções de Ajuda:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Apresentar as opções de ajuda"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Apresentar todas as opções de ajuda"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Opções da Aplicação:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Incapaz de parsear o valor inteiro '%s' para %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Valor inteiro '%s' para %s para lá do limite permitido"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Erro ao parsear a opção %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Argumento em falta para %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Opção %s desconhecida"
|
||||
|
301
po/pt_BR.po
301
po/pt_BR.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-10 23:19-0300\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-03-10 20:38-0300\n"
|
||||
"Last-Translator: Leandro A. F. Pereira <leandro@linuxmag.com.br>\n"
|
||||
"Language-Team: Brazilian Portuguese <gnome-l10n-br@listas.cipsga.org.br>\n"
|
||||
@ -15,208 +15,215 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: ../glib/gconvert.c:408 ../glib/gconvert.c:486 ../glib/giochannel.c:1150
|
||||
#: glib/gconvert.c:408 glib/gconvert.c:486 glib/giochannel.c:1150
|
||||
#, c-format
|
||||
msgid "Conversion from character set '%s' to '%s' is not supported"
|
||||
msgstr "Conversão do conjunto de caracteres '%s' para '%s' não é suportada"
|
||||
|
||||
#: ../glib/gconvert.c:412 ../glib/gconvert.c:490
|
||||
#: glib/gconvert.c:412 glib/gconvert.c:490
|
||||
#, c-format
|
||||
msgid "Could not open converter from '%s' to '%s'"
|
||||
msgstr "Não foi possível abrir conversor de '%s' para '%s'"
|
||||
|
||||
#: ../glib/gconvert.c:606 ../glib/gconvert.c:995 ../glib/giochannel.c:1322
|
||||
#: ../glib/giochannel.c:1364 ../glib/giochannel.c:2206 ../glib/gutf8.c:943
|
||||
#: ../glib/gutf8.c:1392
|
||||
#: glib/gconvert.c:606 glib/gconvert.c:995 glib/giochannel.c:1322
|
||||
#: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943
|
||||
#: glib/gutf8.c:1392
|
||||
#, c-format
|
||||
msgid "Invalid byte sequence in conversion input"
|
||||
msgstr "Sequência de bytes inválida na entrada de conversão"
|
||||
|
||||
#: ../glib/gconvert.c:612 ../glib/gconvert.c:922 ../glib/giochannel.c:1329
|
||||
#: ../glib/giochannel.c:2218
|
||||
#: glib/gconvert.c:612 glib/gconvert.c:922 glib/giochannel.c:1329
|
||||
#: glib/giochannel.c:2218
|
||||
#, c-format
|
||||
msgid "Error during conversion: %s"
|
||||
msgstr "Erro durante a conversão: %s"
|
||||
|
||||
#: ../glib/gconvert.c:647 ../glib/gutf8.c:939 ../glib/gutf8.c:1143
|
||||
#: ../glib/gutf8.c:1284 ../glib/gutf8.c:1388
|
||||
#: glib/gconvert.c:647 glib/gutf8.c:939 glib/gutf8.c:1143 glib/gutf8.c:1284
|
||||
#: glib/gutf8.c:1388
|
||||
#, c-format
|
||||
msgid "Partial character sequence at end of input"
|
||||
msgstr "Sequência de caracteres parcial no final da entrada"
|
||||
|
||||
#: ../glib/gconvert.c:897
|
||||
#: glib/gconvert.c:897
|
||||
#, c-format
|
||||
msgid "Cannot convert fallback '%s' to codeset '%s'"
|
||||
msgstr "Não foi possível converter recurso '%s' para conjunto caracteres '%s'"
|
||||
|
||||
#: ../glib/gconvert.c:1706
|
||||
#: glib/gconvert.c:1706
|
||||
#, c-format
|
||||
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
|
||||
msgstr "O URI '%s' não é um URI absoluto que utilize o esquema \"file\""
|
||||
|
||||
#: ../glib/gconvert.c:1716
|
||||
#: glib/gconvert.c:1716
|
||||
#, c-format
|
||||
msgid "The local file URI '%s' may not include a '#'"
|
||||
msgstr "O URI de arquivo local '%s' não pode incluir um '#'"
|
||||
|
||||
#: ../glib/gconvert.c:1733
|
||||
#: glib/gconvert.c:1733
|
||||
#, c-format
|
||||
msgid "The URI '%s' is invalid"
|
||||
msgstr "O URI '%s' é inválido"
|
||||
|
||||
#: ../glib/gconvert.c:1745
|
||||
#: glib/gconvert.c:1745
|
||||
#, c-format
|
||||
msgid "The hostname of the URI '%s' is invalid"
|
||||
msgstr "O nome de servidor do URI '%s' é inválido"
|
||||
|
||||
#: ../glib/gconvert.c:1761
|
||||
#: glib/gconvert.c:1761
|
||||
#, c-format
|
||||
msgid "The URI '%s' contains invalidly escaped characters"
|
||||
msgstr "O URI '%s' contém caracteres mascarados inválidos"
|
||||
|
||||
#: ../glib/gconvert.c:1855
|
||||
#: glib/gconvert.c:1855
|
||||
#, c-format
|
||||
msgid "The pathname '%s' is not an absolute path"
|
||||
msgstr "O nome de caminho '%s' não é um caminho absoluto"
|
||||
|
||||
#: ../glib/gconvert.c:1865
|
||||
#: glib/gconvert.c:1865
|
||||
#, c-format
|
||||
msgid "Invalid hostname"
|
||||
msgstr "Nome de servidor inválido"
|
||||
|
||||
#: ../glib/gdir.c:121 ../glib/gdir.c:141
|
||||
#: glib/gdir.c:121 glib/gdir.c:141
|
||||
#, c-format
|
||||
msgid "Error opening directory '%s': %s"
|
||||
msgstr "Erro ao abrir o diretório '%s': %s"
|
||||
|
||||
#: ../glib/gfileutils.c:576 ../glib/gfileutils.c:649
|
||||
#: glib/gfileutils.c:576 glib/gfileutils.c:649
|
||||
#, c-format
|
||||
msgid "Could not allocate %lu bytes to read file \"%s\""
|
||||
msgstr "Não foi possível alocar %lu bytes para ler arquivo \"%s\""
|
||||
|
||||
#: ../glib/gfileutils.c:591
|
||||
#: glib/gfileutils.c:591
|
||||
#, c-format
|
||||
msgid "Error reading file '%s': %s"
|
||||
msgstr "Erro ao ler arquivo '%s': %s"
|
||||
|
||||
#: ../glib/gfileutils.c:673
|
||||
#: glib/gfileutils.c:673
|
||||
#, c-format
|
||||
msgid "Failed to read from file '%s': %s"
|
||||
msgstr "Falha ao ler do arquivo '%s': %s"
|
||||
|
||||
#: ../glib/gfileutils.c:724 ../glib/gfileutils.c:811
|
||||
#: glib/gfileutils.c:724 glib/gfileutils.c:811
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s': %s"
|
||||
msgstr "Falha ao abrir arquivo '%s': %s"
|
||||
|
||||
#: ../glib/gfileutils.c:741 ../glib/gmappedfile.c:133
|
||||
#: glib/gfileutils.c:741 glib/gmappedfile.c:133
|
||||
#, c-format
|
||||
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
|
||||
msgstr "Falha ao obter atributos do arquivo '%s': fstat() falhou: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:775
|
||||
#: glib/gfileutils.c:775
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s': fdopen() failed: %s"
|
||||
msgstr "Falha ao abrir arquivo '%s': fdopen() falhou: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:909
|
||||
#: glib/gfileutils.c:909
|
||||
#, 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:950 ../glib/gfileutils.c:1415
|
||||
#: glib/gfileutils.c:950 glib/gfileutils.c:1415
|
||||
#, c-format
|
||||
msgid "Failed to create file '%s': %s"
|
||||
msgstr "Falha ao criar arquivo '%s': %s"
|
||||
|
||||
#: ../glib/gfileutils.c:964
|
||||
#: glib/gfileutils.c:964
|
||||
#, 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:989
|
||||
#: glib/gfileutils.c:989
|
||||
#, c-format
|
||||
msgid "Failed to write file '%s': fwrite() failed: %s"
|
||||
msgstr "Falha ao escrever no arquivo '%s': fwrite() falhou: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1008
|
||||
#: glib/gfileutils.c:1008
|
||||
#, c-format
|
||||
msgid "Failed to close file '%s': fclose() failed: %s"
|
||||
msgstr "Falha ao fechar arquivo '%s': fclose() falhou: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1126
|
||||
#: glib/gfileutils.c:1126
|
||||
#, 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:1376
|
||||
#: glib/gfileutils.c:1376
|
||||
#, 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:1390
|
||||
#: glib/gfileutils.c:1390
|
||||
#, c-format
|
||||
msgid "Template '%s' doesn't end with XXXXXX"
|
||||
msgstr "Modelo '%s' não termina com XXXXXX"
|
||||
|
||||
#: ../glib/gfileutils.c:1865
|
||||
#: glib/gfileutils.c:1865
|
||||
#, c-format
|
||||
msgid "Failed to read the symbolic link '%s': %s"
|
||||
msgstr "Falha ao ler vínculo simbólico '%s': %s"
|
||||
|
||||
#: ../glib/gfileutils.c:1886
|
||||
#: glib/gfileutils.c:1886
|
||||
#, c-format
|
||||
msgid "Symbolic links not supported"
|
||||
msgstr "Vínculos simbólicos não são suportados"
|
||||
|
||||
#: ../glib/giochannel.c:1154
|
||||
#: glib/giochannel.c:1154
|
||||
#, c-format
|
||||
msgid "Could not open converter from '%s' to '%s': %s"
|
||||
msgstr "Não foi possível abrir conversor de `%s' para `%s': %s"
|
||||
|
||||
#: ../glib/giochannel.c:1499
|
||||
#: glib/giochannel.c:1499
|
||||
#, c-format
|
||||
msgid "Can't do a raw read in g_io_channel_read_line_string"
|
||||
msgstr ""
|
||||
"Não foi possível fazer uma leitura em bruto em g_io_channel_read_line_string"
|
||||
|
||||
#: ../glib/giochannel.c:1546 ../glib/giochannel.c:1803
|
||||
#: ../glib/giochannel.c:1889
|
||||
#: glib/giochannel.c:1546 glib/giochannel.c:1803 glib/giochannel.c:1889
|
||||
#, c-format
|
||||
msgid "Leftover unconverted data in read buffer"
|
||||
msgstr "Dados residuais não convertidos no buffer de leitura"
|
||||
|
||||
#: ../glib/giochannel.c:1626 ../glib/giochannel.c:1703
|
||||
#: glib/giochannel.c:1626 glib/giochannel.c:1703
|
||||
#, c-format
|
||||
msgid "Channel terminates in a partial character"
|
||||
msgstr "Canal termina num caractere parcial"
|
||||
|
||||
#: ../glib/giochannel.c:1689
|
||||
#: glib/giochannel.c:1689
|
||||
#, c-format
|
||||
msgid "Can't do a raw read in g_io_channel_read_to_end"
|
||||
msgstr ""
|
||||
"Não foi possível fazer uma leitura em bruto de 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 "Falha ao abrir arquivo '%s': open() falhou: %s"
|
||||
|
||||
#: ../glib/gmappedfile.c:193
|
||||
#: glib/gmappedfile.c:193
|
||||
#, c-format
|
||||
msgid "Failed to map file '%s': mmap() failed: %s"
|
||||
msgstr "Falha ao mapear arquivo '%s': mmap() falhou: %s"
|
||||
|
||||
#: ../glib/gmarkup.c:232
|
||||
#: glib/gmarkup.c:232
|
||||
#, c-format
|
||||
msgid "Error on line %d char %d: %s"
|
||||
msgstr "Erro na linha %d car %d: %s"
|
||||
|
||||
#: ../glib/gmarkup.c:330
|
||||
#: glib/gmarkup.c:330
|
||||
#, c-format
|
||||
msgid "Error on line %d: %s"
|
||||
msgstr "Erro na linha %d: %s"
|
||||
|
||||
#: ../glib/gmarkup.c:434
|
||||
#: glib/gmarkup.c:434
|
||||
msgid ""
|
||||
"Empty entity '&;' seen; valid entities are: & " < > '"
|
||||
msgstr ""
|
||||
"Entidade '&;' vazia vista; as entidades válidas são: & " < > "
|
||||
"'"
|
||||
|
||||
#: ../glib/gmarkup.c:444
|
||||
#: glib/gmarkup.c:444
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Character '%s' is not valid at the start of an entity name; the & character "
|
||||
@ -227,17 +234,17 @@ msgstr ""
|
||||
"inicia uma entidade; se este 'e' comercial não é suposto ser uma entidade, "
|
||||
"mascare-o como &"
|
||||
|
||||
#: ../glib/gmarkup.c:478
|
||||
#: glib/gmarkup.c:478
|
||||
#, 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:515
|
||||
#: glib/gmarkup.c:515
|
||||
#, c-format
|
||||
msgid "Entity name '%s' is not known"
|
||||
msgstr "Nome de entidade '%s' não é conhecido"
|
||||
|
||||
#: ../glib/gmarkup.c:526
|
||||
#: glib/gmarkup.c:526
|
||||
msgid ""
|
||||
"Entity did not end with a semicolon; most likely you used an ampersand "
|
||||
"character without intending to start an entity - escape ampersand as &"
|
||||
@ -245,7 +252,7 @@ msgstr ""
|
||||
"Entidade não termina com um ponto e vírgula; provavelmente você utilizou um "
|
||||
"'e' comercial sem desejar iniciar uma entidade - mascare-o com &"
|
||||
|
||||
#: ../glib/gmarkup.c:579
|
||||
#: glib/gmarkup.c:579
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Failed to parse '%-.*s', which should have been a digit inside a character "
|
||||
@ -255,17 +262,17 @@ msgstr ""
|
||||
"referência de caractere (ê por exemplo) - talvez o dígito seja grande "
|
||||
"demais"
|
||||
|
||||
#: ../glib/gmarkup.c:604
|
||||
#: glib/gmarkup.c:604
|
||||
#, 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:619
|
||||
#: glib/gmarkup.c:619
|
||||
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:629
|
||||
#: glib/gmarkup.c:629
|
||||
msgid ""
|
||||
"Character reference did not end with a semicolon; most likely you used an "
|
||||
"ampersand character without intending to start an entity - escape ampersand "
|
||||
@ -275,23 +282,23 @@ msgstr ""
|
||||
"utilizou um caracter 'e' comercial sem desejar iniciar uma entidade - "
|
||||
"mascare-o com &"
|
||||
|
||||
#: ../glib/gmarkup.c:715
|
||||
#: glib/gmarkup.c:715
|
||||
msgid "Unfinished entity reference"
|
||||
msgstr "Referência de entidade inacabada"
|
||||
|
||||
#: ../glib/gmarkup.c:721
|
||||
#: glib/gmarkup.c:721
|
||||
msgid "Unfinished character reference"
|
||||
msgstr "Referência de caractere inacabada"
|
||||
|
||||
#: ../glib/gmarkup.c:964 ../glib/gmarkup.c:992 ../glib/gmarkup.c:1023
|
||||
#: glib/gmarkup.c:964 glib/gmarkup.c:992 glib/gmarkup.c:1023
|
||||
msgid "Invalid UTF-8 encoded text"
|
||||
msgstr "Texto codificado em UTF-8 inválido"
|
||||
|
||||
#: ../glib/gmarkup.c:1059
|
||||
#: glib/gmarkup.c:1059
|
||||
msgid "Document must begin with an element (e.g. <book>)"
|
||||
msgstr "Documento tem de começar com um elemento (ex. <book>)"
|
||||
|
||||
#: ../glib/gmarkup.c:1099
|
||||
#: glib/gmarkup.c:1099
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following a '<' character; it may not begin an "
|
||||
@ -300,7 +307,7 @@ msgstr ""
|
||||
"'%s' não é um caractere válido após um caractere '<'; não poderá começar um "
|
||||
"nome de elemento"
|
||||
|
||||
#: ../glib/gmarkup.c:1163
|
||||
#: glib/gmarkup.c:1163
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '>' character to end the start tag of element "
|
||||
@ -309,7 +316,7 @@ msgstr ""
|
||||
"Caractere estranho '%s', esperava-se um caractere '>' para terminar a tag "
|
||||
"inicial do elemento '%s'"
|
||||
|
||||
#: ../glib/gmarkup.c:1252
|
||||
#: glib/gmarkup.c:1252
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
|
||||
@ -317,7 +324,7 @@ msgstr ""
|
||||
"Caractere estranho '%s', esperava-se um '=' após o nome do atributo '%s' do "
|
||||
"elemento '%s'"
|
||||
|
||||
#: ../glib/gmarkup.c:1294
|
||||
#: glib/gmarkup.c:1294
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
|
||||
@ -328,7 +335,7 @@ msgstr ""
|
||||
"tag inicial do elemento '%s', ou opcionalmente um atributo; talvez tenha "
|
||||
"utilizado um caractere inválido no nome de atributo"
|
||||
|
||||
#: ../glib/gmarkup.c:1383
|
||||
#: glib/gmarkup.c:1383
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected an open quote mark after the equals sign when "
|
||||
@ -337,7 +344,7 @@ msgstr ""
|
||||
"Caractere estranho '%s', esperava-se uma aspa aberta após o sinal de igual "
|
||||
"ao atribuir o valor ao atributo '%s' do elemento '%s'"
|
||||
|
||||
#: ../glib/gmarkup.c:1528
|
||||
#: glib/gmarkup.c:1528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following the characters '</'; '%s' may not "
|
||||
@ -346,7 +353,7 @@ msgstr ""
|
||||
"'%s' não é um caractere válido após os caracteres '</'; '%s' não poderá "
|
||||
"começar o nome de um elemento"
|
||||
|
||||
#: ../glib/gmarkup.c:1568
|
||||
#: glib/gmarkup.c:1568
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following the close element name '%s'; the "
|
||||
@ -355,25 +362,25 @@ msgstr ""
|
||||
"'%s' não é um caractere válido após o nome do elemento de fecho '%s'; o "
|
||||
"caractere permitido é '>'"
|
||||
|
||||
#: ../glib/gmarkup.c:1579
|
||||
#: glib/gmarkup.c:1579
|
||||
#, 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:1588
|
||||
#: glib/gmarkup.c:1588
|
||||
#, 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:1735
|
||||
#: glib/gmarkup.c:1735
|
||||
msgid "Document was empty or contained only whitespace"
|
||||
msgstr "Documento estava vazio ou apenas continha espaços"
|
||||
|
||||
#: ../glib/gmarkup.c:1749
|
||||
#: glib/gmarkup.c:1749
|
||||
msgid "Document ended unexpectedly just after an open angle bracket '<'"
|
||||
msgstr "Documento terminou inesperadamente logo após um menor que '<'"
|
||||
|
||||
#: ../glib/gmarkup.c:1757 ../glib/gmarkup.c:1801
|
||||
#: glib/gmarkup.c:1757 glib/gmarkup.c:1801
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Document ended unexpectedly with elements still open - '%s' was the last "
|
||||
@ -382,7 +389,7 @@ msgstr ""
|
||||
"Documento terminou inesperadamente com elementos ainda abertos - '%s' foi o "
|
||||
"último elemento aberto"
|
||||
|
||||
#: ../glib/gmarkup.c:1765
|
||||
#: glib/gmarkup.c:1765
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Document ended unexpectedly, expected to see a close angle bracket ending "
|
||||
@ -391,21 +398,21 @@ msgstr ""
|
||||
"Documento terminou inesperadamente, esperava-se ver um maior que '>' a "
|
||||
"terminar a tag <%s/>"
|
||||
|
||||
#: ../glib/gmarkup.c:1771
|
||||
#: glib/gmarkup.c:1771
|
||||
msgid "Document ended unexpectedly inside an element name"
|
||||
msgstr "Documento terminou inesperadamente dentro de um nome de elemento"
|
||||
|
||||
#: ../glib/gmarkup.c:1776
|
||||
#: glib/gmarkup.c:1776
|
||||
msgid "Document ended unexpectedly inside an attribute name"
|
||||
msgstr "Documento terminou inesperadamente dentro de um nome de atributo"
|
||||
|
||||
#: ../glib/gmarkup.c:1781
|
||||
#: glib/gmarkup.c:1781
|
||||
msgid "Document ended unexpectedly inside an element-opening tag."
|
||||
msgstr ""
|
||||
"Documento terminou inesperadamente dentro de uma etiqueta de abertura de "
|
||||
"elemento."
|
||||
|
||||
#: ../glib/gmarkup.c:1787
|
||||
#: glib/gmarkup.c:1787
|
||||
msgid ""
|
||||
"Document ended unexpectedly after the equals sign following an attribute "
|
||||
"name; no attribute value"
|
||||
@ -413,102 +420,104 @@ msgstr ""
|
||||
"Documento terminou inesperadamente após o sinal de igual que se seguiu a um "
|
||||
"nome de atributo; nenhum valor de atributo"
|
||||
|
||||
#: ../glib/gmarkup.c:1794
|
||||
#: glib/gmarkup.c:1794
|
||||
msgid "Document ended unexpectedly while inside an attribute value"
|
||||
msgstr "Documento terminou inesperadamente dentro de um valor de atributo"
|
||||
|
||||
#: ../glib/gmarkup.c:1809
|
||||
#: glib/gmarkup.c:1809
|
||||
#, c-format
|
||||
msgid "Document ended unexpectedly inside the close tag for element '%s'"
|
||||
msgstr ""
|
||||
"Documento terminou inesperadamente dentro ta etiqueta de fecho do elemento '%"
|
||||
"s'"
|
||||
|
||||
#: ../glib/gmarkup.c:1815
|
||||
#: glib/gmarkup.c:1815
|
||||
msgid "Document ended unexpectedly inside a comment or processing instruction"
|
||||
msgstr ""
|
||||
"Documento terminou inesperadamente dentro de um comentário ou instrução de "
|
||||
"processamento"
|
||||
|
||||
#: ../glib/gshell.c:73
|
||||
#: glib/gshell.c:73
|
||||
#, c-format
|
||||
msgid "Quoted text doesn't begin with a quotation mark"
|
||||
msgstr "Texto citado não começa com uma aspa"
|
||||
|
||||
#: ../glib/gshell.c:163
|
||||
#: glib/gshell.c:163
|
||||
#, c-format
|
||||
msgid "Unmatched quotation mark in command line or other shell-quoted text"
|
||||
msgstr "Aspa sem par na linha de comando ou outro texto de consola citado"
|
||||
|
||||
#: ../glib/gshell.c:541
|
||||
#: glib/gshell.c:541
|
||||
#, c-format
|
||||
msgid "Text ended just after a '\\' character. (The text was '%s')"
|
||||
msgstr "Texto terminou logo após um caractere '\\'. (O texto era '%s')"
|
||||
|
||||
#: ../glib/gshell.c:548
|
||||
#: glib/gshell.c:548
|
||||
#, c-format
|
||||
msgid "Text ended before matching quote was found for %c. (The text was '%s')"
|
||||
msgstr ""
|
||||
"Texto terminou antes da aspa equivalente ter sido encontrada para %c. (texto "
|
||||
"era '%s')"
|
||||
|
||||
#: ../glib/gshell.c:560
|
||||
#: glib/gshell.c:560
|
||||
#, c-format
|
||||
msgid "Text was empty (or contained only whitespace)"
|
||||
msgstr "Texto estava vazio (ou apenas continha espaços)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:276
|
||||
#: glib/gspawn-win32.c:276
|
||||
#, c-format
|
||||
msgid "Failed to read data from child process"
|
||||
msgstr "Falha ao ler dados de processo filho"
|
||||
|
||||
#: ../glib/gspawn-win32.c:291 ../glib/gspawn.c:1364
|
||||
#: glib/gspawn-win32.c:291 glib/gspawn.c:1364
|
||||
#, c-format
|
||||
msgid "Failed to create pipe for communicating with child process (%s)"
|
||||
msgstr "Falha ao criar canal para comunicar com com processo filho (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:329 ../glib/gspawn.c:1028
|
||||
#: glib/gspawn-win32.c:329 glib/gspawn.c:1028
|
||||
#, c-format
|
||||
msgid "Failed to read from child pipe (%s)"
|
||||
msgstr "Falha ao ler de canal filho (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:355 ../glib/gspawn.c:1233
|
||||
#: glib/gspawn-win32.c:355 glib/gspawn.c:1233
|
||||
#, c-format
|
||||
msgid "Failed to change to directory '%s' (%s)"
|
||||
msgstr "Falha ao ir para diretório '%s' (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:361 ../glib/gspawn-win32.c:581
|
||||
#: glib/gspawn-win32.c:361 glib/gspawn-win32.c:581
|
||||
#, c-format
|
||||
msgid "Failed to execute child process (%s)"
|
||||
msgstr "Falha ao executar processo filho (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:471 ../glib/gspawn-win32.c:527
|
||||
#: glib/gspawn-win32.c:471 glib/gspawn-win32.c:527
|
||||
#, c-format
|
||||
msgid "Invalid program name: %s"
|
||||
msgstr "Nome de programa inválido: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:481 ../glib/gspawn-win32.c:537
|
||||
#: ../glib/gspawn-win32.c:780 ../glib/gspawn-win32.c:835
|
||||
#: ../glib/gspawn-win32.c:1370
|
||||
#: glib/gspawn-win32.c:481 glib/gspawn-win32.c:537 glib/gspawn-win32.c:780
|
||||
#: glib/gspawn-win32.c:835 glib/gspawn-win32.c:1370
|
||||
#, c-format
|
||||
msgid "Invalid string in argument vector at %d: %s"
|
||||
msgstr "String inválida no vetor de argumentos em %d: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:492 ../glib/gspawn-win32.c:548
|
||||
#: ../glib/gspawn-win32.c:794 ../glib/gspawn-win32.c:848
|
||||
#: ../glib/gspawn-win32.c:1403
|
||||
#: glib/gspawn-win32.c:492 glib/gspawn-win32.c:548 glib/gspawn-win32.c:794
|
||||
#: glib/gspawn-win32.c:848 glib/gspawn-win32.c:1403
|
||||
#, c-format
|
||||
msgid "Invalid string in environment: %s"
|
||||
msgstr "String inválida no ambiente: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:776 ../glib/gspawn-win32.c:831
|
||||
#: ../glib/gspawn-win32.c:1351
|
||||
#: glib/gspawn-win32.c:776 glib/gspawn-win32.c:831 glib/gspawn-win32.c:1351
|
||||
#, c-format
|
||||
msgid "Invalid working directory: %s"
|
||||
msgstr "Diretório de trabalho inválido: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:890
|
||||
#: glib/gspawn-win32.c:890
|
||||
#, c-format
|
||||
msgid "Failed to execute helper program (%s)"
|
||||
msgstr "Falha ao executar programa auxiliar (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:1090
|
||||
#: glib/gspawn-win32.c:1090
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Unexpected error in g_io_channel_win32_poll() reading data from a child "
|
||||
"process"
|
||||
@ -516,127 +525,133 @@ msgstr ""
|
||||
"Erro inesperado no g_io_channel_win32_poll() ao ler dados de um processo "
|
||||
"filho"
|
||||
|
||||
#: ../glib/gspawn.c:168
|
||||
#: glib/gspawn.c:168
|
||||
#, c-format
|
||||
msgid "Failed to read data from child process (%s)"
|
||||
msgstr "Falha ao ler dados de processo filho (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:300
|
||||
#: glib/gspawn.c:300
|
||||
#, c-format
|
||||
msgid "Unexpected error in select() reading data from a child process (%s)"
|
||||
msgstr "Erro inesperado no select() ao ler dados de processo filho (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:383
|
||||
#: glib/gspawn.c:383
|
||||
#, c-format
|
||||
msgid "Unexpected error in waitpid() (%s)"
|
||||
msgstr "Erro inesperado em waitpid() (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1093
|
||||
#: glib/gspawn.c:1093
|
||||
#, c-format
|
||||
msgid "Failed to fork (%s)"
|
||||
msgstr "Falha no fork (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1243
|
||||
#: glib/gspawn.c:1243
|
||||
#, c-format
|
||||
msgid "Failed to execute child process \"%s\" (%s)"
|
||||
msgstr "Falha ao executar processo filho \"%s\" (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1253
|
||||
#: glib/gspawn.c:1253
|
||||
#, c-format
|
||||
msgid "Failed to redirect output or input of child process (%s)"
|
||||
msgstr "Falha ao redireccionar saida ou entrada do processo filho (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1262
|
||||
#: glib/gspawn.c:1262
|
||||
#, c-format
|
||||
msgid "Failed to fork child process (%s)"
|
||||
msgstr "Falha no fork de processo filho (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1270
|
||||
#: glib/gspawn.c:1270
|
||||
#, c-format
|
||||
msgid "Unknown error executing child process \"%s\""
|
||||
msgstr "Erro desconhecido ao executar processo filho \"%s\""
|
||||
|
||||
#: ../glib/gspawn.c:1292
|
||||
#: glib/gspawn.c:1292
|
||||
#, c-format
|
||||
msgid "Failed to read enough data from child pid pipe (%s)"
|
||||
msgstr "Falha ao ler dados suficientes de canal pid do filho (%s)"
|
||||
|
||||
#: ../glib/gutf8.c:1017
|
||||
#: glib/gutf8.c:1017
|
||||
#, c-format
|
||||
msgid "Character out of range for UTF-8"
|
||||
msgstr "Caractere fora do limite para UTF-8 "
|
||||
|
||||
#: ../glib/gutf8.c:1111 ../glib/gutf8.c:1120 ../glib/gutf8.c:1252
|
||||
#: ../glib/gutf8.c:1261 ../glib/gutf8.c:1402 ../glib/gutf8.c:1498
|
||||
#: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 glib/gutf8.c:1261
|
||||
#: glib/gutf8.c:1402 glib/gutf8.c:1498
|
||||
#, c-format
|
||||
msgid "Invalid sequence in conversion input"
|
||||
msgstr "Sequência inválida na conversão da entrada"
|
||||
|
||||
#: ../glib/gutf8.c:1413 ../glib/gutf8.c:1509
|
||||
#: glib/gutf8.c:1413 glib/gutf8.c:1509
|
||||
#, c-format
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Caractere fora do limite para UTF-16"
|
||||
|
||||
#: ../glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Uso:"
|
||||
|
||||
#: ../glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPÇÕES...]"
|
||||
|
||||
#: ../glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Opções de Ajuda:"
|
||||
|
||||
#: ../glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Exibir opções de ajuda"
|
||||
|
||||
#: ../glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Exibir todas as opções de ajuda"
|
||||
|
||||
#: ../glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Opções de Aplicação:"
|
||||
|
||||
#: ../glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Não foi possível analisar o valor inteiro '%s' para %s"
|
||||
|
||||
#: ../glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Valor inteiro '%s' para %s fora dos limites"
|
||||
|
||||
#: ../glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Erro ao ler a opção %s"
|
||||
|
||||
#: ../glib/goption.c:959 ../glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Falta argumento para %s"
|
||||
|
||||
#: ../glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Opção %s desconhecida"
|
||||
|
||||
#: ../glib/gkeyfile.c:339
|
||||
#: glib/gkeyfile.c:339
|
||||
#, c-format
|
||||
msgid "Valid key file could not be found in data dirs"
|
||||
msgstr ""
|
||||
"Um arquivo de chave válido não pôde ser encontrado nos diretórios de dados"
|
||||
|
||||
#: ../glib/gkeyfile.c:374
|
||||
#: glib/gkeyfile.c:374
|
||||
#, c-format
|
||||
msgid "Not a regular file"
|
||||
msgstr "Não é um arquivo comum"
|
||||
|
||||
#: ../glib/gkeyfile.c:382
|
||||
#: glib/gkeyfile.c:382
|
||||
#, c-format
|
||||
msgid "File is empty"
|
||||
msgstr "Arquivo vazio"
|
||||
|
||||
#: ../glib/gkeyfile.c:697
|
||||
#: glib/gkeyfile.c:697
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Key file contains line '%s' which is not a key-value pair, group, or comment"
|
||||
@ -644,40 +659,41 @@ msgstr ""
|
||||
"Arquivo de chave contém a linha '%s' que não é um par chave-valor, grupo ou "
|
||||
"comentário"
|
||||
|
||||
#: ../glib/gkeyfile.c:765
|
||||
#: glib/gkeyfile.c:765
|
||||
#, c-format
|
||||
msgid "Key file does not start with a group"
|
||||
msgstr "Arquivo de chave não começa com um grupo"
|
||||
|
||||
#: ../glib/gkeyfile.c:808
|
||||
#: glib/gkeyfile.c:808
|
||||
#, c-format
|
||||
msgid "Key file contains unsupported encoding '%s'"
|
||||
msgstr "Arquivo de chave contém codificação '%s' não suportada"
|
||||
|
||||
#: ../glib/gkeyfile.c:1017 ../glib/gkeyfile.c:1176 ../glib/gkeyfile.c:2177
|
||||
#: ../glib/gkeyfile.c:2242 ../glib/gkeyfile.c:2361 ../glib/gkeyfile.c:2497
|
||||
#: ../glib/gkeyfile.c:2649 ../glib/gkeyfile.c:2823 ../glib/gkeyfile.c:2880
|
||||
#: glib/gkeyfile.c:1017 glib/gkeyfile.c:1176 glib/gkeyfile.c:2177
|
||||
#: glib/gkeyfile.c:2242 glib/gkeyfile.c:2361 glib/gkeyfile.c:2497
|
||||
#: glib/gkeyfile.c:2649 glib/gkeyfile.c:2823 glib/gkeyfile.c:2880
|
||||
#, c-format
|
||||
msgid "Key file does not have group '%s'"
|
||||
msgstr "Arquivo de chave não tem grupo '%s'"
|
||||
|
||||
#: ../glib/gkeyfile.c:1188
|
||||
#: glib/gkeyfile.c:1188
|
||||
#, c-format
|
||||
msgid "Key file does not have key '%s'"
|
||||
msgstr "Arquivo de chave não tem chave '%s'"
|
||||
|
||||
#: ../glib/gkeyfile.c:1289 ../glib/gkeyfile.c:1398
|
||||
#: glib/gkeyfile.c:1289 glib/gkeyfile.c:1398
|
||||
#, c-format
|
||||
msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
|
||||
msgstr "Arquivo de chave contém chave '%s' com valor '%s' que não é UTF-8"
|
||||
|
||||
#: ../glib/gkeyfile.c:1307 ../glib/gkeyfile.c:1416 ../glib/gkeyfile.c:1788
|
||||
#: glib/gkeyfile.c:1307 glib/gkeyfile.c:1416 glib/gkeyfile.c:1788
|
||||
#, c-format
|
||||
msgid "Key file contains key '%s' which has value that cannot be interpreted."
|
||||
msgstr ""
|
||||
"Arquivo de chave contém chave '%s' que tem valor que não pode ser "
|
||||
"interpretado."
|
||||
|
||||
#: ../glib/gkeyfile.c:2004
|
||||
#: glib/gkeyfile.c:2004
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Key file contains key '%s' in group '%s' which has value that cannot be "
|
||||
@ -686,31 +702,32 @@ msgstr ""
|
||||
"Arquivo de chave contém chave '%s' no grupo '%s' que tem valor que não pode "
|
||||
"ser interpretado."
|
||||
|
||||
#: ../glib/gkeyfile.c:2192 ../glib/gkeyfile.c:2376 ../glib/gkeyfile.c:2891
|
||||
#: glib/gkeyfile.c:2192 glib/gkeyfile.c:2376 glib/gkeyfile.c:2891
|
||||
#, c-format
|
||||
msgid "Key file does not have key '%s' in group '%s'"
|
||||
msgstr "Arquivo de chave não tem chave '%s' no grupo '%s'"
|
||||
|
||||
#: ../glib/gkeyfile.c:3067
|
||||
#: glib/gkeyfile.c:3067
|
||||
#, c-format
|
||||
msgid "Key file contains escape character at end of line"
|
||||
msgstr "Arquivo de chave contém caractere de escape no fim da linha"
|
||||
|
||||
#: ../glib/gkeyfile.c:3089
|
||||
#: glib/gkeyfile.c:3089
|
||||
#, c-format
|
||||
msgid "Key file contains invalid escape sequence '%s'"
|
||||
msgstr "Arquivo de chave contém seqüência de escape '%s' inválida"
|
||||
|
||||
#: ../glib/gkeyfile.c:3230
|
||||
#: glib/gkeyfile.c:3230
|
||||
#, c-format
|
||||
msgid "Value '%s' cannot be interpreted as a number."
|
||||
msgstr "O valor '%s' não pode ser interpretado como um número."
|
||||
|
||||
#: ../glib/gkeyfile.c:3240
|
||||
#: glib/gkeyfile.c:3240
|
||||
#, c-format
|
||||
msgid "Integer value '%s' out of range"
|
||||
msgstr "Valor inteiro '%s' fora dos limites"
|
||||
|
||||
#: ../glib/gkeyfile.c:3270
|
||||
#: glib/gkeyfile.c:3270
|
||||
#, c-format
|
||||
msgid "Value '%s' cannot be interpreted as a boolean."
|
||||
msgstr "O valor '%s' não pode ser interpretado como um booleano."
|
||||
|
342
po/ro.po
342
po/ro.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-12 14:28+0100\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-03-12 22:19+0200\n"
|
||||
"Last-Translator: Mişu Moldovan <dumol@gnome.ro>\n"
|
||||
"Language-Team: Română <gnomero-list@lists.sourceforge.net>\n"
|
||||
@ -15,206 +15,214 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: ../glib/gconvert.c:408 ../glib/gconvert.c:486 ../glib/giochannel.c:1150
|
||||
#: glib/gconvert.c:408 glib/gconvert.c:486 glib/giochannel.c:1150
|
||||
#, c-format
|
||||
msgid "Conversion from character set '%s' to '%s' is not supported"
|
||||
msgstr "Conversia de la setul de caractere „%s” la „%s” nu este suportată"
|
||||
|
||||
#: ../glib/gconvert.c:412 ../glib/gconvert.c:490
|
||||
#: glib/gconvert.c:412 glib/gconvert.c:490
|
||||
#, c-format
|
||||
msgid "Could not open converter from '%s' to '%s'"
|
||||
msgstr "Nu s-a putut iniţia conversia de la „%s” la „%s”"
|
||||
|
||||
#: ../glib/gconvert.c:606 ../glib/gconvert.c:995 ../glib/giochannel.c:1322
|
||||
#: ../glib/giochannel.c:1364 ../glib/giochannel.c:2206 ../glib/gutf8.c:943
|
||||
#: ../glib/gutf8.c:1392
|
||||
#: glib/gconvert.c:606 glib/gconvert.c:995 glib/giochannel.c:1322
|
||||
#: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943
|
||||
#: glib/gutf8.c:1392
|
||||
#, c-format
|
||||
msgid "Invalid byte sequence in conversion input"
|
||||
msgstr "Secvenţă de octeţi invalidă în intrarea conversiei"
|
||||
|
||||
#: ../glib/gconvert.c:612 ../glib/gconvert.c:922 ../glib/giochannel.c:1329
|
||||
#: ../glib/giochannel.c:2218
|
||||
#: glib/gconvert.c:612 glib/gconvert.c:922 glib/giochannel.c:1329
|
||||
#: glib/giochannel.c:2218
|
||||
#, c-format
|
||||
msgid "Error during conversion: %s"
|
||||
msgstr "Eroare în timpul conversiei: %s"
|
||||
|
||||
#: ../glib/gconvert.c:647 ../glib/gutf8.c:939 ../glib/gutf8.c:1143
|
||||
#: ../glib/gutf8.c:1284 ../glib/gutf8.c:1388
|
||||
#: glib/gconvert.c:647 glib/gutf8.c:939 glib/gutf8.c:1143 glib/gutf8.c:1284
|
||||
#: glib/gutf8.c:1388
|
||||
#, c-format
|
||||
msgid "Partial character sequence at end of input"
|
||||
msgstr "Secvenţă parţială de caractere la sfârşitul intrării"
|
||||
|
||||
#: ../glib/gconvert.c:897
|
||||
#: glib/gconvert.c:897
|
||||
#, c-format
|
||||
msgid "Cannot convert fallback '%s' to codeset '%s'"
|
||||
msgstr "Nu se poate converti rezerva „%s” la setul de caractere „%s”"
|
||||
|
||||
#: ../glib/gconvert.c:1706
|
||||
#: glib/gconvert.c:1706
|
||||
#, c-format
|
||||
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
|
||||
msgstr "URI-ul „%s” nu este un URI absolut folosind schema „fişier”"
|
||||
|
||||
#: ../glib/gconvert.c:1716
|
||||
#: glib/gconvert.c:1716
|
||||
#, c-format
|
||||
msgid "The local file URI '%s' may not include a '#'"
|
||||
msgstr "URI-ul fişierului local „%s” nu poate include un „#”"
|
||||
|
||||
#: ../glib/gconvert.c:1733
|
||||
#: glib/gconvert.c:1733
|
||||
#, c-format
|
||||
msgid "The URI '%s' is invalid"
|
||||
msgstr "URI-ul „%s” este invalid"
|
||||
|
||||
#: ../glib/gconvert.c:1745
|
||||
#: glib/gconvert.c:1745
|
||||
#, c-format
|
||||
msgid "The hostname of the URI '%s' is invalid"
|
||||
msgstr "Gazda URI-ului „%s” este invalidă"
|
||||
|
||||
#: ../glib/gconvert.c:1761
|
||||
#: glib/gconvert.c:1761
|
||||
#, c-format
|
||||
msgid "The URI '%s' contains invalidly escaped characters"
|
||||
msgstr "URI-ul „%s” conţine caractere „escaped” invalide"
|
||||
|
||||
#: ../glib/gconvert.c:1855
|
||||
#: glib/gconvert.c:1855
|
||||
#, c-format
|
||||
msgid "The pathname '%s' is not an absolute path"
|
||||
msgstr "Calea „%s” nu este o cale absolută"
|
||||
|
||||
#: ../glib/gconvert.c:1865
|
||||
#: glib/gconvert.c:1865
|
||||
#, c-format
|
||||
msgid "Invalid hostname"
|
||||
msgstr "Nume gazdă invalid"
|
||||
|
||||
#: ../glib/gdir.c:121 ../glib/gdir.c:141
|
||||
#: glib/gdir.c:121 glib/gdir.c:141
|
||||
#, c-format
|
||||
msgid "Error opening directory '%s': %s"
|
||||
msgstr "Eroare la deschiderea directorului „%s”: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:576 ../glib/gfileutils.c:649
|
||||
#: glib/gfileutils.c:576 glib/gfileutils.c:649
|
||||
#, c-format
|
||||
msgid "Could not allocate %lu bytes to read file \"%s\""
|
||||
msgstr "Nu s-au putut aloca %lu octeţi pentru citirea fişierului „%s”"
|
||||
|
||||
#: ../glib/gfileutils.c:591
|
||||
#: glib/gfileutils.c:591
|
||||
#, c-format
|
||||
msgid "Error reading file '%s': %s"
|
||||
msgstr "Eroare la citirea fişierului „%s”: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:673
|
||||
#: glib/gfileutils.c:673
|
||||
#, c-format
|
||||
msgid "Failed to read from file '%s': %s"
|
||||
msgstr "Nu s-a putut citi din fişierul „%s”: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:724 ../glib/gfileutils.c:811
|
||||
#: glib/gfileutils.c:724 glib/gfileutils.c:811
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s': %s"
|
||||
msgstr "Nu s-a putut deschide fişierul „%s”: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:741 ../glib/gmappedfile.c:133
|
||||
#: glib/gfileutils.c:741 glib/gmappedfile.c:133
|
||||
#, c-format
|
||||
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
|
||||
msgstr "Nu s-au putut obţine atributele fişierului „%s”: fstat() a eşuat: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:775
|
||||
#: glib/gfileutils.c:775
|
||||
#, 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:909
|
||||
#: glib/gfileutils.c:909
|
||||
#, 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:950 ../glib/gfileutils.c:1415
|
||||
#: glib/gfileutils.c:950 glib/gfileutils.c:1415
|
||||
#, c-format
|
||||
msgid "Failed to create file '%s': %s"
|
||||
msgstr "Nu s-a putut crea fişierul „%s”: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:964
|
||||
#: glib/gfileutils.c:964
|
||||
#, 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"
|
||||
msgstr ""
|
||||
"Nu s-a putut deschide fişierul „%s” pentru scriere, fdopen() a eşuat: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:989
|
||||
#: glib/gfileutils.c:989
|
||||
#, 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:1008
|
||||
#: glib/gfileutils.c:1008
|
||||
#, 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:1126
|
||||
#: glib/gfileutils.c:1126
|
||||
#, 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:1376
|
||||
#: glib/gfileutils.c:1376
|
||||
#, 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:1390
|
||||
#: glib/gfileutils.c:1390
|
||||
#, c-format
|
||||
msgid "Template '%s' doesn't end with XXXXXX"
|
||||
msgstr "Şablonul „%s” nu se termină cu XXXXXX"
|
||||
|
||||
#: ../glib/gfileutils.c:1865
|
||||
#: glib/gfileutils.c:1865
|
||||
#, 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:1886
|
||||
#: glib/gfileutils.c:1886
|
||||
#, c-format
|
||||
msgid "Symbolic links not supported"
|
||||
msgstr "Legăturile simbolice nu sunt suportate"
|
||||
|
||||
#: ../glib/giochannel.c:1154
|
||||
#: glib/giochannel.c:1154
|
||||
#, c-format
|
||||
msgid "Could not open converter from '%s' to '%s': %s"
|
||||
msgstr "Nu s-a putut iniţia conversia de la „%s” la „%s”: %s"
|
||||
|
||||
#: ../glib/giochannel.c:1499
|
||||
#: glib/giochannel.c:1499
|
||||
#, c-format
|
||||
msgid "Can't do a raw read in g_io_channel_read_line_string"
|
||||
msgstr "Nu s-au putut citi datele brute din g_io_channel_read_line_string"
|
||||
|
||||
#: ../glib/giochannel.c:1546 ../glib/giochannel.c:1803
|
||||
#: ../glib/giochannel.c:1889
|
||||
#: glib/giochannel.c:1546 glib/giochannel.c:1803 glib/giochannel.c:1889
|
||||
#, c-format
|
||||
msgid "Leftover unconverted data in read buffer"
|
||||
msgstr "Date neconvertite rămase în memoria tampon pentru citire"
|
||||
|
||||
#: ../glib/giochannel.c:1626 ../glib/giochannel.c:1703
|
||||
#: glib/giochannel.c:1626 glib/giochannel.c:1703
|
||||
#, c-format
|
||||
msgid "Channel terminates in a partial character"
|
||||
msgstr "Canalul se termină cu un caracter parţial"
|
||||
|
||||
#: ../glib/giochannel.c:1689
|
||||
#: glib/giochannel.c:1689
|
||||
#, c-format
|
||||
msgid "Can't do a raw read in g_io_channel_read_to_end"
|
||||
msgstr "Nu s-au putut citi datele brute din 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 "Nu s-a putut deschide fişierul „%s”: open() a eşuat: %s"
|
||||
|
||||
#: ../glib/gmappedfile.c:193
|
||||
#: glib/gmappedfile.c:193
|
||||
#, c-format
|
||||
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:232
|
||||
#: glib/gmarkup.c:232
|
||||
#, c-format
|
||||
msgid "Error on line %d char %d: %s"
|
||||
msgstr "Eroare în linia %d, caracterul %d: %s"
|
||||
|
||||
#: ../glib/gmarkup.c:330
|
||||
#: glib/gmarkup.c:330
|
||||
#, c-format
|
||||
msgid "Error on line %d: %s"
|
||||
msgstr "Eroare în linia %d: %s"
|
||||
|
||||
#: ../glib/gmarkup.c:434
|
||||
#: glib/gmarkup.c:434
|
||||
msgid ""
|
||||
"Empty entity '&;' seen; valid entities are: & " < > '"
|
||||
msgstr ""
|
||||
"S-a depistat o entitate nulă „&;”. Entităţile valide sunt: & " < "
|
||||
"> '"
|
||||
|
||||
#: ../glib/gmarkup.c:444
|
||||
#: glib/gmarkup.c:444
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Character '%s' is not valid at the start of an entity name; the & character "
|
||||
@ -225,17 +233,17 @@ msgstr ""
|
||||
"„&” e cel ce începe o entitate. Dacă acest ampersand nu ar trebui să fie "
|
||||
"într-o entitate, utilizaţi &"
|
||||
|
||||
#: ../glib/gmarkup.c:478
|
||||
#: glib/gmarkup.c:478
|
||||
#, 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:515
|
||||
#: glib/gmarkup.c:515
|
||||
#, c-format
|
||||
msgid "Entity name '%s' is not known"
|
||||
msgstr "Numele entităţii „%s” nu este cunoscut"
|
||||
|
||||
#: ../glib/gmarkup.c:526
|
||||
#: glib/gmarkup.c:526
|
||||
msgid ""
|
||||
"Entity did not end with a semicolon; most likely you used an ampersand "
|
||||
"character without intending to start an entity - escape ampersand as &"
|
||||
@ -243,7 +251,7 @@ msgstr ""
|
||||
"Entitatea nu s-a terminat cu punct şi virgulă. Probabil că aţi folosit un "
|
||||
"caracter ampersand fără intenţia de a începe o entitate. Utilizaţi &"
|
||||
|
||||
#: ../glib/gmarkup.c:579
|
||||
#: glib/gmarkup.c:579
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Failed to parse '%-.*s', which should have been a digit inside a character "
|
||||
@ -252,16 +260,16 @@ msgstr ""
|
||||
"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:604
|
||||
#: glib/gmarkup.c:604
|
||||
#, 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:619
|
||||
#: glib/gmarkup.c:619
|
||||
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:629
|
||||
#: glib/gmarkup.c:629
|
||||
msgid ""
|
||||
"Character reference did not end with a semicolon; most likely you used an "
|
||||
"ampersand character without intending to start an entity - escape ampersand "
|
||||
@ -270,23 +278,23 @@ msgstr ""
|
||||
"Referinţa caracter nu s-a terminat cu punct şi virgulă. Probabil aţi folosit "
|
||||
"un caracter ampersand fără intenţia de a începe o entitate. Utilizaţi &"
|
||||
|
||||
#: ../glib/gmarkup.c:715
|
||||
#: glib/gmarkup.c:715
|
||||
msgid "Unfinished entity reference"
|
||||
msgstr "Referinţă neterminată la o entitate"
|
||||
|
||||
#: ../glib/gmarkup.c:721
|
||||
#: glib/gmarkup.c:721
|
||||
msgid "Unfinished character reference"
|
||||
msgstr "Referinţă caracter neterminată"
|
||||
|
||||
#: ../glib/gmarkup.c:964 ../glib/gmarkup.c:992 ../glib/gmarkup.c:1023
|
||||
#: glib/gmarkup.c:964 glib/gmarkup.c:992 glib/gmarkup.c:1023
|
||||
msgid "Invalid UTF-8 encoded text"
|
||||
msgstr "Text codat UTF-8 invalid"
|
||||
|
||||
#: ../glib/gmarkup.c:1059
|
||||
#: glib/gmarkup.c:1059
|
||||
msgid "Document must begin with an element (e.g. <book>)"
|
||||
msgstr "Documentul trebuie să înceapă cu un element (de ex. <book>)"
|
||||
|
||||
#: ../glib/gmarkup.c:1099
|
||||
#: glib/gmarkup.c:1099
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following a '<' character; it may not begin an "
|
||||
@ -295,7 +303,7 @@ msgstr ""
|
||||
"„%s” nu este un caracter valid după caracterul „<”. Nu poate începe cu "
|
||||
"numele unui element"
|
||||
|
||||
#: ../glib/gmarkup.c:1163
|
||||
#: glib/gmarkup.c:1163
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '>' character to end the start tag of element "
|
||||
@ -304,7 +312,7 @@ msgstr ""
|
||||
"Caracter neobişnuit „%s”, se aştepta un „>” pentru a termina eticheta de "
|
||||
"început a elementului „%s”"
|
||||
|
||||
#: ../glib/gmarkup.c:1252
|
||||
#: glib/gmarkup.c:1252
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
|
||||
@ -312,7 +320,7 @@ msgstr ""
|
||||
"Caracter neobişnuit „%s”, se aştepta un „=” după numele atributului „%s” al "
|
||||
"elementului „%s”"
|
||||
|
||||
#: ../glib/gmarkup.c:1294
|
||||
#: glib/gmarkup.c:1294
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
|
||||
@ -323,7 +331,7 @@ msgstr ""
|
||||
"eticheta de început a elementului „%s” sau opţional un atribut. Poate aţi "
|
||||
"utilizat un caracter invalid în numele atributului"
|
||||
|
||||
#: ../glib/gmarkup.c:1383
|
||||
#: glib/gmarkup.c:1383
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected an open quote mark after the equals sign when "
|
||||
@ -332,7 +340,7 @@ msgstr ""
|
||||
"Caracter neobişnuit „%s”, se aşteptau ghilimele de deschidere după semnul "
|
||||
"egal pentru a da valoarea atributului „%s” al elementului „%s”"
|
||||
|
||||
#: ../glib/gmarkup.c:1528
|
||||
#: glib/gmarkup.c:1528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following the characters '</'; '%s' may not "
|
||||
@ -341,7 +349,7 @@ msgstr ""
|
||||
"„%s” nu este un caracter valid după caracterele „</”. „%s” nu poate începe "
|
||||
"un nume de element"
|
||||
|
||||
#: ../glib/gmarkup.c:1568
|
||||
#: glib/gmarkup.c:1568
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following the close element name '%s'; the "
|
||||
@ -350,34 +358,34 @@ msgstr ""
|
||||
"„%s” nu este un caracter valid după numele elementului de închidere „%s”. "
|
||||
"Caracterul permis este „>”"
|
||||
|
||||
#: ../glib/gmarkup.c:1579
|
||||
#: glib/gmarkup.c:1579
|
||||
#, 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:1588
|
||||
#: glib/gmarkup.c:1588
|
||||
#, 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:1735
|
||||
#: glib/gmarkup.c:1735
|
||||
msgid "Document was empty or contained only whitespace"
|
||||
msgstr "Documentul era gol sau conţinea doar spaţiu gol"
|
||||
|
||||
#: ../glib/gmarkup.c:1749
|
||||
#: glib/gmarkup.c:1749
|
||||
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:1757 ../glib/gmarkup.c:1801
|
||||
#: glib/gmarkup.c:1757 glib/gmarkup.c:1801
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Document ended unexpectedly with elements still open - '%s' was the last "
|
||||
"element opened"
|
||||
msgstr ""
|
||||
"Documentul s-a terminat în mod neaşteptat cu unele elemente încă deschise. "
|
||||
"„%s” a fost ultimul element deschis"
|
||||
"Documentul s-a terminat în mod neaşteptat cu unele elemente încă deschise. „%"
|
||||
"s” a fost ultimul element deschis"
|
||||
|
||||
#: ../glib/gmarkup.c:1765
|
||||
#: glib/gmarkup.c:1765
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Document ended unexpectedly, expected to see a close angle bracket ending "
|
||||
@ -386,20 +394,23 @@ msgstr ""
|
||||
"Documentul s-a terminat în mod neaşteptat, se aştepta un caracter „>” care "
|
||||
"să încheie eticheta <%s/>"
|
||||
|
||||
#: ../glib/gmarkup.c:1771
|
||||
#: glib/gmarkup.c:1771
|
||||
msgid "Document ended unexpectedly inside an element name"
|
||||
msgstr "Documentul s-a terminat în mod neaşteptat în cadrul numelui unui element"
|
||||
msgstr ""
|
||||
"Documentul s-a terminat în mod neaşteptat în cadrul numelui unui element"
|
||||
|
||||
#: ../glib/gmarkup.c:1776
|
||||
#: glib/gmarkup.c:1776
|
||||
msgid "Document ended unexpectedly inside an attribute name"
|
||||
msgstr "Documentul s-a terminat în mod neaşteptat în cadrul numele unui atribut"
|
||||
msgstr ""
|
||||
"Documentul s-a terminat în mod neaşteptat în cadrul numele unui atribut"
|
||||
|
||||
#: ../glib/gmarkup.c:1781
|
||||
#: glib/gmarkup.c:1781
|
||||
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"
|
||||
msgstr ""
|
||||
"Documentul s-a terminat în mod neaşteptat în cadul unei etichete ce "
|
||||
"deschidea un element"
|
||||
|
||||
#: ../glib/gmarkup.c:1787
|
||||
#: glib/gmarkup.c:1787
|
||||
msgid ""
|
||||
"Document ended unexpectedly after the equals sign following an attribute "
|
||||
"name; no attribute value"
|
||||
@ -407,100 +418,106 @@ msgstr ""
|
||||
"Documentul s-a terminat în mod neaşteptat după semnul egal ce urma unui nume "
|
||||
"atribut. Nici o valoare pentru atribut"
|
||||
|
||||
#: ../glib/gmarkup.c:1794
|
||||
#: glib/gmarkup.c:1794
|
||||
msgid "Document ended unexpectedly while inside an attribute value"
|
||||
msgstr "Documentul s-a terminat în mod neaşteptat în cadrul valorii unui atribut"
|
||||
msgstr ""
|
||||
"Documentul s-a terminat în mod neaşteptat în cadrul valorii unui atribut"
|
||||
|
||||
#: ../glib/gmarkup.c:1809
|
||||
#: glib/gmarkup.c:1809
|
||||
#, 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”"
|
||||
msgstr ""
|
||||
"Documentul s-a terminat în mod neaşteptat în cadrul etichetei de închidere a "
|
||||
"elementului „%s”"
|
||||
|
||||
#: ../glib/gmarkup.c:1815
|
||||
#: glib/gmarkup.c:1815
|
||||
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 unei instrucţiuni de procesare"
|
||||
msgstr ""
|
||||
"Documentul s-a terminat în mod neaşteptat în cadrul unui comentariu sau a "
|
||||
"unei instrucţiuni de procesare"
|
||||
|
||||
#: ../glib/gshell.c:73
|
||||
#: glib/gshell.c:73
|
||||
#, c-format
|
||||
msgid "Quoted text doesn't begin with a quotation mark"
|
||||
msgstr "Textul citat nu începe cu un semn de citare"
|
||||
|
||||
#: ../glib/gshell.c:163
|
||||
#: glib/gshell.c:163
|
||||
#, c-format
|
||||
msgid "Unmatched quotation mark in command line or other shell-quoted text"
|
||||
msgstr "Semn de citare nepereche în linia de comandă sau text „shell-quoted”"
|
||||
|
||||
#: ../glib/gshell.c:541
|
||||
#: glib/gshell.c:541
|
||||
#, c-format
|
||||
msgid "Text ended just after a '\\' character. (The text was '%s')"
|
||||
msgstr "Textul s-a terminal imediat după un caracter „\\” (textul era „%s”)"
|
||||
|
||||
#: ../glib/gshell.c:548
|
||||
#: glib/gshell.c:548
|
||||
#, c-format
|
||||
msgid "Text ended before matching quote was found for %c. (The text was '%s')"
|
||||
msgstr "Textul s-a terminal înainte de semnul de citare pereche pentru %c "
|
||||
"(textul era „%s”)"
|
||||
msgstr ""
|
||||
"Textul s-a terminal înainte de semnul de citare pereche pentru %c (textul "
|
||||
"era „%s”)"
|
||||
|
||||
#: ../glib/gshell.c:560
|
||||
#: glib/gshell.c:560
|
||||
#, c-format
|
||||
msgid "Text was empty (or contained only whitespace)"
|
||||
msgstr "Textul era gol (sau conţinea doar spaţiu gol)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:276
|
||||
#: glib/gspawn-win32.c:276
|
||||
#, c-format
|
||||
msgid "Failed to read data from child process"
|
||||
msgstr "Nu s-au putut citi datele de la procesul copil"
|
||||
|
||||
#: ../glib/gspawn-win32.c:291 ../glib/gspawn.c:1364
|
||||
#: glib/gspawn-win32.c:291 glib/gspawn.c:1364
|
||||
#, c-format
|
||||
msgid "Failed to create pipe for communicating with child process (%s)"
|
||||
msgstr "Nu s-a putut crea conectorul „pipe” pentru comunicarea cu procesul "
|
||||
"copil (%s)"
|
||||
msgstr ""
|
||||
"Nu s-a putut crea conectorul „pipe” pentru comunicarea cu procesul copil (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:329 ../glib/gspawn.c:1028
|
||||
#: glib/gspawn-win32.c:329 glib/gspawn.c:1028
|
||||
#, c-format
|
||||
msgid "Failed to read from child pipe (%s)"
|
||||
msgstr "Nu s-au putut citi datele din conectorul „pipe” copil (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:355 ../glib/gspawn.c:1233
|
||||
#: glib/gspawn-win32.c:355 glib/gspawn.c:1233
|
||||
#, c-format
|
||||
msgid "Failed to change to directory '%s' (%s)"
|
||||
msgstr "Nu s-a putut schimba directorul curent în directorul „%s” (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:361 ../glib/gspawn-win32.c:581
|
||||
#: glib/gspawn-win32.c:361 glib/gspawn-win32.c:581
|
||||
#, c-format
|
||||
msgid "Failed to execute child process (%s)"
|
||||
msgstr "Nu s-a putut executa procesul copil (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:471 ../glib/gspawn-win32.c:527
|
||||
#: glib/gspawn-win32.c:471 glib/gspawn-win32.c:527
|
||||
#, c-format
|
||||
msgid "Invalid program name: %s"
|
||||
msgstr "Nume invalid de program: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:481 ../glib/gspawn-win32.c:537
|
||||
#: ../glib/gspawn-win32.c:780 ../glib/gspawn-win32.c:835
|
||||
#: ../glib/gspawn-win32.c:1370
|
||||
#: glib/gspawn-win32.c:481 glib/gspawn-win32.c:537 glib/gspawn-win32.c:780
|
||||
#: glib/gspawn-win32.c:835 glib/gspawn-win32.c:1370
|
||||
#, c-format
|
||||
msgid "Invalid string in argument vector at %d: %s"
|
||||
msgstr "Secvenţă invalidă în vectorul argumentului la %d: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:492 ../glib/gspawn-win32.c:548
|
||||
#: ../glib/gspawn-win32.c:794 ../glib/gspawn-win32.c:848
|
||||
#: ../glib/gspawn-win32.c:1403
|
||||
#: glib/gspawn-win32.c:492 glib/gspawn-win32.c:548 glib/gspawn-win32.c:794
|
||||
#: glib/gspawn-win32.c:848 glib/gspawn-win32.c:1403
|
||||
#, c-format
|
||||
msgid "Invalid string in environment: %s"
|
||||
msgstr "Secvenţă invalidă în variabilele de mediu: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:776 ../glib/gspawn-win32.c:831
|
||||
#: ../glib/gspawn-win32.c:1351
|
||||
#: glib/gspawn-win32.c:776 glib/gspawn-win32.c:831 glib/gspawn-win32.c:1351
|
||||
#, c-format
|
||||
msgid "Invalid working directory: %s"
|
||||
msgstr "Director curent invalid: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:890
|
||||
#: glib/gspawn-win32.c:890
|
||||
#, c-format
|
||||
msgid "Failed to execute helper program (%s)"
|
||||
msgstr "Nu s-a putut pornit programul asociat (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:1090
|
||||
#: glib/gspawn-win32.c:1090
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Unexpected error in g_io_channel_win32_poll() reading data from a child "
|
||||
"process"
|
||||
@ -508,127 +525,133 @@ msgstr ""
|
||||
"Eroare neaşteptată în g_io_channel_win32_poll() la citirea datelor de la "
|
||||
"procesul copil"
|
||||
|
||||
#: ../glib/gspawn.c:168
|
||||
#: glib/gspawn.c:168
|
||||
#, c-format
|
||||
msgid "Failed to read data from child process (%s)"
|
||||
msgstr "Nu s-au putut citi datele din procesul copil (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:300
|
||||
#: glib/gspawn.c:300
|
||||
#, c-format
|
||||
msgid "Unexpected error in select() reading data from a child process (%s)"
|
||||
msgstr ""
|
||||
"Eroare neaşteptată în select() la citirea datelor din procesul copil (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:383
|
||||
#: glib/gspawn.c:383
|
||||
#, c-format
|
||||
msgid "Unexpected error in waitpid() (%s)"
|
||||
msgstr "Eroare neaşteptată în waitpid() (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1093
|
||||
#: glib/gspawn.c:1093
|
||||
#, c-format
|
||||
msgid "Failed to fork (%s)"
|
||||
msgstr "Nu s-a putut clona procesul (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1243
|
||||
#: glib/gspawn.c:1243
|
||||
#, c-format
|
||||
msgid "Failed to execute child process \"%s\" (%s)"
|
||||
msgstr "Nu s-a putut executa procesul „%s” (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1253
|
||||
#: glib/gspawn.c:1253
|
||||
#, c-format
|
||||
msgid "Failed to redirect output or input of child process (%s)"
|
||||
msgstr "Nu s-a putut redirecta ieşirea sau intrarea procesului copil (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1262
|
||||
#: glib/gspawn.c:1262
|
||||
#, c-format
|
||||
msgid "Failed to fork child process (%s)"
|
||||
msgstr "Nu s-a putut clona procesul copil (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1270
|
||||
#: glib/gspawn.c:1270
|
||||
#, c-format
|
||||
msgid "Unknown error executing child process \"%s\""
|
||||
msgstr "Eroare necunoscută la lansarea în execuţie a procesului copil „%s”"
|
||||
|
||||
#: ../glib/gspawn.c:1292
|
||||
#: glib/gspawn.c:1292
|
||||
#, c-format
|
||||
msgid "Failed to read enough data from child pid pipe (%s)"
|
||||
msgstr "Nu s-au putut citi date suficiente de la procesul copil (%s)"
|
||||
|
||||
#: ../glib/gutf8.c:1017
|
||||
#: glib/gutf8.c:1017
|
||||
#, c-format
|
||||
msgid "Character out of range for UTF-8"
|
||||
msgstr "Caracter în afara limitelor standardului UTF-8"
|
||||
|
||||
#: ../glib/gutf8.c:1111 ../glib/gutf8.c:1120 ../glib/gutf8.c:1252
|
||||
#: ../glib/gutf8.c:1261 ../glib/gutf8.c:1402 ../glib/gutf8.c:1498
|
||||
#: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 glib/gutf8.c:1261
|
||||
#: glib/gutf8.c:1402 glib/gutf8.c:1498
|
||||
#, c-format
|
||||
msgid "Invalid sequence in conversion input"
|
||||
msgstr "Secvenţă invalidă în intrarea conversiei"
|
||||
|
||||
#: ../glib/gutf8.c:1413 ../glib/gutf8.c:1509
|
||||
#: glib/gutf8.c:1413 glib/gutf8.c:1509
|
||||
#, c-format
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Caracter în afara limitelor standardului UTF-16"
|
||||
|
||||
#: ../glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Utilizare:"
|
||||
|
||||
#: ../glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPŢIUNE...]"
|
||||
|
||||
#: ../glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Opţiuni ajutor:"
|
||||
|
||||
#: ../glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Arată opţiunile de ajutor"
|
||||
|
||||
#: ../glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Arată toate opţiunile de ajutor"
|
||||
|
||||
#: ../glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Opţiuni aplicaţie:"
|
||||
|
||||
#: ../glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Nu se poate prelucra valoarea întregului „%s” pentru %s"
|
||||
|
||||
#: ../glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Valoarea întregului „%s” pentru %s este în afara limitelor"
|
||||
|
||||
#: ../glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Eroare la prelucrarea opţiunii %s"
|
||||
|
||||
#: ../glib/goption.c:959 ../glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Argument lipsă pentru %s"
|
||||
|
||||
#: ../glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Opţiune necunoscută %s"
|
||||
|
||||
#: ../glib/gkeyfile.c:339
|
||||
#: glib/gkeyfile.c:339
|
||||
#, c-format
|
||||
msgid "Valid key file could not be found in data dirs"
|
||||
msgstr "Nu s-a găsit un fişier cheie în directoarele de date"
|
||||
|
||||
#: ../glib/gkeyfile.c:374
|
||||
#: glib/gkeyfile.c:374
|
||||
#, c-format
|
||||
msgid "Not a regular file"
|
||||
msgstr "Nu este un fişier obişnuit"
|
||||
|
||||
#: ../glib/gkeyfile.c:382
|
||||
#: glib/gkeyfile.c:382
|
||||
#, c-format
|
||||
msgid "File is empty"
|
||||
msgstr "Fişierul este gol"
|
||||
|
||||
#: ../glib/gkeyfile.c:697
|
||||
#: glib/gkeyfile.c:697
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Key file contains line '%s' which is not a key-value pair, group, or comment"
|
||||
@ -636,38 +659,39 @@ msgstr ""
|
||||
"Fişierul-cheie conţine linia „%s” care nu este o pereche cheie-valoare, un "
|
||||
"grup sau un comentariu"
|
||||
|
||||
#: ../glib/gkeyfile.c:765
|
||||
#: glib/gkeyfile.c:765
|
||||
#, c-format
|
||||
msgid "Key file does not start with a group"
|
||||
msgstr "Fişierul cheie nu începe cu un grup"
|
||||
|
||||
#: ../glib/gkeyfile.c:808
|
||||
#: glib/gkeyfile.c:808
|
||||
#, c-format
|
||||
msgid "Key file contains unsupported encoding '%s'"
|
||||
msgstr "Fişierul cheie are o codare nesuportată de tip „%s”"
|
||||
|
||||
#: ../glib/gkeyfile.c:1017 ../glib/gkeyfile.c:1176 ../glib/gkeyfile.c:2177
|
||||
#: ../glib/gkeyfile.c:2242 ../glib/gkeyfile.c:2361 ../glib/gkeyfile.c:2497
|
||||
#: ../glib/gkeyfile.c:2649 ../glib/gkeyfile.c:2823 ../glib/gkeyfile.c:2880
|
||||
#: glib/gkeyfile.c:1017 glib/gkeyfile.c:1176 glib/gkeyfile.c:2177
|
||||
#: glib/gkeyfile.c:2242 glib/gkeyfile.c:2361 glib/gkeyfile.c:2497
|
||||
#: glib/gkeyfile.c:2649 glib/gkeyfile.c:2823 glib/gkeyfile.c:2880
|
||||
#, c-format
|
||||
msgid "Key file does not have group '%s'"
|
||||
msgstr "Fişierul cheie nu are grupul „%s”"
|
||||
|
||||
#: ../glib/gkeyfile.c:1188
|
||||
#: glib/gkeyfile.c:1188
|
||||
#, c-format
|
||||
msgid "Key file does not have key '%s'"
|
||||
msgstr "Fişierul cheie nu are cheie „%s”"
|
||||
|
||||
#: ../glib/gkeyfile.c:1289 ../glib/gkeyfile.c:1398
|
||||
#: glib/gkeyfile.c:1289 glib/gkeyfile.c:1398
|
||||
#, c-format
|
||||
msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
|
||||
msgstr "Fişierul cheie conţine cheia „%s” cu valoarea „%s” care nu este UTF-8"
|
||||
|
||||
#: ../glib/gkeyfile.c:1307 ../glib/gkeyfile.c:1416 ../glib/gkeyfile.c:1788
|
||||
#: glib/gkeyfile.c:1307 glib/gkeyfile.c:1416 glib/gkeyfile.c:1788
|
||||
#, c-format
|
||||
msgid "Key file contains key '%s' which has value that cannot be interpreted."
|
||||
msgstr "Fişierul cheie conţine cheia „%s” care are o valoare neinterpretabilă."
|
||||
|
||||
#: ../glib/gkeyfile.c:2004
|
||||
#: glib/gkeyfile.c:2004
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Key file contains key '%s' in group '%s' which has value that cannot be "
|
||||
@ -676,32 +700,32 @@ msgstr ""
|
||||
"Fişierul cheie conţine cheia „%s” în grupul „%s” care are o valoare ce nu "
|
||||
"poate fi interpretată"
|
||||
|
||||
#: ../glib/gkeyfile.c:2192 ../glib/gkeyfile.c:2376 ../glib/gkeyfile.c:2891
|
||||
#: glib/gkeyfile.c:2192 glib/gkeyfile.c:2376 glib/gkeyfile.c:2891
|
||||
#, c-format
|
||||
msgid "Key file does not have key '%s' in group '%s'"
|
||||
msgstr "Fişierul cheie nu are cheia „%s” în grupul „%s”"
|
||||
|
||||
#: ../glib/gkeyfile.c:3067
|
||||
#: glib/gkeyfile.c:3067
|
||||
#, c-format
|
||||
msgid "Key file contains escape character at end of line"
|
||||
msgstr "Fişieul cheie conţine caractere „escape” la sfârşit de linie"
|
||||
|
||||
#: ../glib/gkeyfile.c:3089
|
||||
#: glib/gkeyfile.c:3089
|
||||
#, c-format
|
||||
msgid "Key file contains invalid escape sequence '%s'"
|
||||
msgstr "URI-ul „%s” conţine secvenţe „escaped” invalide"
|
||||
|
||||
#: ../glib/gkeyfile.c:3230
|
||||
#: glib/gkeyfile.c:3230
|
||||
#, c-format
|
||||
msgid "Value '%s' cannot be interpreted as a number."
|
||||
msgstr "Valoarea „%s” nu poate fi interpretată ca un număr."
|
||||
|
||||
#: ../glib/gkeyfile.c:3240
|
||||
#: glib/gkeyfile.c:3240
|
||||
#, c-format
|
||||
msgid "Integer value '%s' out of range"
|
||||
msgstr "Valoarea întregului „%s” este în afara limitelor"
|
||||
|
||||
#: ../glib/gkeyfile.c:3270
|
||||
#: glib/gkeyfile.c:3270
|
||||
#, c-format
|
||||
msgid "Value '%s' cannot be interpreted as a boolean."
|
||||
msgstr "Valoarea „%s” nu poate fi interpretată ca o valoare booleană."
|
||||
|
||||
|
24
po/ru.po
24
po/ru.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-02-01 18:37+0200\n"
|
||||
"Last-Translator: Leonid Kanter <leon@asplinux.ru>\n"
|
||||
"Language-Team: Russian <gnome-cyr@gnome.org>\n"
|
||||
@ -603,51 +603,51 @@ msgstr ""
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Символ находится вне диапазона для UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Использование:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPTION...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Параметры справки:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Показать параметры справки"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Показать все параметры справки"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Применимые параметры:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Не удается разобрать целое значение '%s' для %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Целое значение '%s' для %s выходит за пределы"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Ошибка разбора параметра %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Отсутствует аргумент для %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Неизвестный параметр %s"
|
||||
|
24
po/rw.po
24
po/rw.po
@ -15,7 +15,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.12\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
@ -572,53 +572,53 @@ msgid "Character out of range for UTF-16"
|
||||
msgstr "Inyuma Bya Urutonde kugirango"
|
||||
|
||||
# crashrep/source\all\crashrep.lng:%MSG_CMDLINE_USAGE%.text
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Ikoresha:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
#, fuzzy
|
||||
msgid "Show help options"
|
||||
msgstr "Ifashayobora Amahitamo"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
#, fuzzy
|
||||
msgid "Show all help options"
|
||||
msgstr "Byose Ifashayobora Amahitamo"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, fuzzy, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Umubare wuzuye Agaciro kugirango"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, fuzzy, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Agaciro kugirango Inyuma Bya Urutonde"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Ihindurangero"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, fuzzy, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Ihitamo ritazwi:"
|
||||
|
24
po/sk.po
24
po/sk.po
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2005-10-16 19:30+0200\n"
|
||||
"Last-Translator: Marcel Telka <marcel@telka.sk>\n"
|
||||
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
|
||||
@ -576,51 +576,51 @@ msgstr "Neplatná sekvencia na vstupe prevodu"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Znak mimo rozsah UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Použitie:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[VOĽBA...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Voľby pomocníka:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Zobraziť voľby pomocníka"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Zobraziť všetky voľby pomocníka"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Voľby aplikácie:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Nepodarilo sa spracovať celočíselnú hodnotu '%s' pre %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Celočíselná hodnota '%s' pre %s je mimo rozsah"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Chyba počas prevodu: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Chýbajúci parameter pre %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Neznáma voľby %s"
|
||||
|
24
po/sl.po
24
po/sl.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2001-02-16 12:30+0200\n"
|
||||
"Last-Translator: Andraz Tori <andraz.tori1@guest.arnes.si>\n"
|
||||
"Language-Team: Slovenian <sl@li.org>\n"
|
||||
@ -571,51 +571,51 @@ msgstr "Neveljavna sekvenca na vhodu pretvorbe"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Znak izven intervala za UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Napaka med pretvorbo: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr ""
|
||||
|
24
po/sq.po
24
po/sq.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-30 10:58+0100\n"
|
||||
"Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n"
|
||||
"Language-Team: Albanian <gnome-albanian-perkthyesit@lists.sourceforge.net>\n"
|
||||
@ -588,51 +588,51 @@ msgstr "Sekuencë e pavlefshme në hyrje për konvertimin"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Simboli nuk ekziston në UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Përdorimi:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPCIONI...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Opcionet e ndihmës:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Shfaq opcionet e ndihmës"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Shfaq të gjithë opcionet e ndihmës"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Opcionet e programit:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, 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:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Vlera integruese '%s' për %s është jashtë kufirit"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Gabim gjatë analizimit të opsionit %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Mungojnë argumentë për %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Opcion i panjohur %s"
|
||||
|
24
po/sr.po
24
po/sr.po
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 2.8\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-31 23:39+0100\n"
|
||||
"Last-Translator: Слободан Д. Средојевић <slobo@akrep.be>\n"
|
||||
"Language-Team: Serbian (sr) <gnom@prevod.org>\n"
|
||||
@ -581,51 +581,51 @@ msgstr "Неисправан низ у уносу за претварање"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Знак ван опсега за УТФ-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Употреба:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[ОПЦИЈА...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Помоћне опције:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Прикажи опције за помоћ"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Прикажи све опције за помоћ"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Опције програма:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Не могу да рашланим целобројну вредност „%s“ за %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Целобројна вредност „%s“ за %s је изван опсега"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Грешка при рашчлањивању могућности %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Недостаје аргумент за %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Непозната опција %s"
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 2.8\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-31 23:39+0100\n"
|
||||
"Last-Translator: Slobodan D. Sredojević <slobo@akrep.be>\n"
|
||||
"Language-Team: Serbian (sr) <gnom@prevod.org>\n"
|
||||
@ -581,51 +581,51 @@ msgstr "Neispravan niz u unosu za pretvaranje"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Znak van opsega za UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Upotreba:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPCIJA...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Pomoćne opcije:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Prikaži opcije za pomoć"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Prikaži sve opcije za pomoć"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Opcije programa:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Ne mogu da rašlanim celobrojnu vrednost „%s“ za %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Celobrojna vrednost „%s“ za %s je izvan opsega"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Greška pri raščlanjivanju mogućnosti %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Nedostaje argument za %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Nepoznata opcija %s"
|
||||
|
24
po/sr@ije.po
24
po/sr@ije.po
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 2.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
@ -585,51 +585,51 @@ msgstr "Неисправан низ у уносу за претварање"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Знак ван опсега за УТФ-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Грешка при претварању: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr ""
|
||||
|
24
po/sv.po
24
po/sv.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-03-07 13:17+0100\n"
|
||||
"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
|
||||
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
|
||||
@ -593,51 +593,51 @@ msgstr "Ogiltig sekvens i konverteringsindata"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Tecknet är utanför intervallet för UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Användning:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[FLAGGA...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Hjälpflaggor:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Visa hjälpflaggor"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Visa alla hjälpflaggor"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Programflaggor:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Kan inte tolka heltalsvärdet \"%s\" för %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Heltalsvärdet \"%s\" för %s är utanför intervallet"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Fel vid tolkning av flaggan %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Argument saknas för %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Okänd flagga %s"
|
||||
|
24
po/ta.po
24
po/ta.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2004-02-16 20:30-0600\n"
|
||||
"Last-Translator: Dinesh Nadarajah <dinesh_list@sbcglobal.net>\n"
|
||||
"Language-Team: Tamil <tamilinix@yahoogroups.com>\n"
|
||||
@ -572,51 +572,51 @@ msgstr "Invalid sequence in conversion input"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "UTF-16 க்கு வரியுரு வீச்சு எல்லைக்கு வெளியே"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "மாற்றும் போது பிழை: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr ""
|
||||
|
24
po/te.po
24
po/te.po
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GLIB\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
@ -562,51 +562,51 @@ msgstr "పరివర్తన ఎగుబడి వరుస నిస్స
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "అక్షరము UTF-16 శ్రేణియందు లేదు"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "వినిమయం:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[ఇచ్చాపూర్వరకం...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "సహాయ ఇచ్ఛాపూర్వకాలు:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "సహాయ ఇచ్ఛాపూర్వకాలను చూపించుట"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "సహాయ ఇచ్ఛాపూర్వకాలన్నింటని చూపించుట"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "కార్యక్షేత్ర ఇచ్ఛాపూర్వకాలు :"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, fuzzy, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "పూర్ణాంకం విలువ '%s' పార్స్ చేయలేదు --%s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr " పూర్ణాంకం విలువ '%s' లో విస్రృతి లో లేని %s "
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "పరివర్తనం నందు దోషం కలదు: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "తెలియని ఇచ్ఛాపూర్వకము %s"
|
||||
|
24
po/th.po
24
po/th.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.7.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-07 15:11+0700\n"
|
||||
"Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n"
|
||||
"Language-Team: Thai <l10n@opentle.org>\n"
|
||||
@ -554,51 +554,51 @@ msgstr "มีลำดับข้อมูลที่ไม่ถูกต้
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "อักขระอยู่นอกช่วงของ UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "วิธีใช้:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPTION...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "ตัวเลือกแสดงวิธีใช้:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "แสดงวิธีใช้ตัวเลือกต่างๆ"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "แสดงวิธีใช้ตัวเลือกต่างๆ ทั้งหมด"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "ตัวเลือกของโปรแกรม:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "ไม่สามารถแจงค่าจำนวนเต็ม '%s' สำหรับ %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "ค่าจำนวนเต็ม '%s' สำหรับ %s ออกนอกช่วงที่กำหนด"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "เกิดข้อผิดพลาดระหว่างแจงตัวเลือก: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "ขาดอาร์กิวเมนต์สำหรับ %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "ไม่รู้จักตัวเลือก %s"
|
||||
|
24
po/tl.po
24
po/tl.po
@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
@ -605,51 +605,51 @@ msgstr "Hindi tanggap na sequence sa conversion input"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Character wala sa sakop ng UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Pag-gamit:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPTION...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Option ng Tulong:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Ipakita ang option ng tulong"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Ipakita ang option ng tulong"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Option ng Aplikasyon:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Hindi mai-parse ang halagang integer '%s' para sa %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Halagang integer '%s' para sa %s ay wala sa sakop"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Error habang nagco-convert: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Kulang na argumento para sa %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Hindi kilalang option %s"
|
||||
|
301
po/tr.po
301
po/tr.po
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-14 00:03+0200\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2005-07-24 23:57+0300\n"
|
||||
"Last-Translator: Onur Can CAKMAK <onur@uzem.itu.edu.tr>\n"
|
||||
"Language-Team: Turkish <gnome-turk@gnome.org>\n"
|
||||
@ -20,209 +20,216 @@ msgstr ""
|
||||
"X-Generator: KBabel 1.10.1\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: ../glib/gconvert.c:408 ../glib/gconvert.c:486 ../glib/giochannel.c:1150
|
||||
#: glib/gconvert.c:408 glib/gconvert.c:486 glib/giochannel.c:1150
|
||||
#, c-format
|
||||
msgid "Conversion from character set '%s' to '%s' is not supported"
|
||||
msgstr "`%s' karakter kümesinden `%s' karakter kümesine dönüşüm desteklenmiyor"
|
||||
|
||||
#: ../glib/gconvert.c:412 ../glib/gconvert.c:490
|
||||
#: glib/gconvert.c:412 glib/gconvert.c:490
|
||||
#, c-format
|
||||
msgid "Could not open converter from '%s' to '%s'"
|
||||
msgstr "'%s'--'%s' dönüştürücüsü açılamıyor"
|
||||
|
||||
#: ../glib/gconvert.c:606 ../glib/gconvert.c:995 ../glib/giochannel.c:1322
|
||||
#: ../glib/giochannel.c:1364 ../glib/giochannel.c:2206 ../glib/gutf8.c:943
|
||||
#: ../glib/gutf8.c:1392
|
||||
#: glib/gconvert.c:606 glib/gconvert.c:995 glib/giochannel.c:1322
|
||||
#: glib/giochannel.c:1364 glib/giochannel.c:2206 glib/gutf8.c:943
|
||||
#: glib/gutf8.c:1392
|
||||
#, c-format
|
||||
msgid "Invalid byte sequence in conversion input"
|
||||
msgstr "Dönüşüm girdisinde geçersiz bayt dizisi"
|
||||
|
||||
#: ../glib/gconvert.c:612 ../glib/gconvert.c:922 ../glib/giochannel.c:1329
|
||||
#: ../glib/giochannel.c:2218
|
||||
#: glib/gconvert.c:612 glib/gconvert.c:922 glib/giochannel.c:1329
|
||||
#: glib/giochannel.c:2218
|
||||
#, c-format
|
||||
msgid "Error during conversion: %s"
|
||||
msgstr "Dönüşüm sırasında hata oluştu: %s"
|
||||
|
||||
#: ../glib/gconvert.c:647 ../glib/gutf8.c:939 ../glib/gutf8.c:1143
|
||||
#: ../glib/gutf8.c:1284 ../glib/gutf8.c:1388
|
||||
#: glib/gconvert.c:647 glib/gutf8.c:939 glib/gutf8.c:1143 glib/gutf8.c:1284
|
||||
#: glib/gutf8.c:1388
|
||||
#, c-format
|
||||
msgid "Partial character sequence at end of input"
|
||||
msgstr "Girdinin sonunda parçalı karakter dizisi"
|
||||
|
||||
#: ../glib/gconvert.c:897
|
||||
#: glib/gconvert.c:897
|
||||
#, c-format
|
||||
msgid "Cannot convert fallback '%s' to codeset '%s'"
|
||||
msgstr ""
|
||||
"Geridönüş karakter kümesi '%s', '%s' karakter kümesine dönüştürülemiyor"
|
||||
|
||||
#: ../glib/gconvert.c:1706
|
||||
#: glib/gconvert.c:1706
|
||||
#, c-format
|
||||
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
|
||||
msgstr "\"dosya\" şemasını kullanan URI '%s' kesin bir URI değil"
|
||||
|
||||
#: ../glib/gconvert.c:1716
|
||||
#: glib/gconvert.c:1716
|
||||
#, c-format
|
||||
msgid "The local file URI '%s' may not include a '#'"
|
||||
msgstr "'%s' URI yerel dosyası '#' içeremez"
|
||||
|
||||
#: ../glib/gconvert.c:1733
|
||||
#: glib/gconvert.c:1733
|
||||
#, c-format
|
||||
msgid "The URI '%s' is invalid"
|
||||
msgstr "URI '%s' hatalı"
|
||||
|
||||
#: ../glib/gconvert.c:1745
|
||||
#: glib/gconvert.c:1745
|
||||
#, c-format
|
||||
msgid "The hostname of the URI '%s' is invalid"
|
||||
msgstr "URI makine adı '%s' geçersiz"
|
||||
|
||||
#: ../glib/gconvert.c:1761
|
||||
#: glib/gconvert.c:1761
|
||||
#, c-format
|
||||
msgid "The URI '%s' contains invalidly escaped characters"
|
||||
msgstr "URI '%s' geçersiz çıkış karakteri içeriyor"
|
||||
|
||||
#: ../glib/gconvert.c:1855
|
||||
#: glib/gconvert.c:1855
|
||||
#, c-format
|
||||
msgid "The pathname '%s' is not an absolute path"
|
||||
msgstr "'%s' yol adı, kesin bir yol değil"
|
||||
|
||||
#: ../glib/gconvert.c:1865
|
||||
#: glib/gconvert.c:1865
|
||||
#, c-format
|
||||
msgid "Invalid hostname"
|
||||
msgstr "Geçersiz makine adı"
|
||||
|
||||
#: ../glib/gdir.c:121 ../glib/gdir.c:141
|
||||
#: glib/gdir.c:121 glib/gdir.c:141
|
||||
#, c-format
|
||||
msgid "Error opening directory '%s': %s"
|
||||
msgstr "'%s' dizini açılamadı: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:576 ../glib/gfileutils.c:649
|
||||
#: glib/gfileutils.c:576 glib/gfileutils.c:649
|
||||
#, c-format
|
||||
msgid "Could not allocate %lu bytes to read file \"%s\""
|
||||
msgstr "%lu bayt \"%s\" dosyasını okumak için ayrılamadı"
|
||||
|
||||
#: ../glib/gfileutils.c:591
|
||||
#: glib/gfileutils.c:591
|
||||
#, c-format
|
||||
msgid "Error reading file '%s': %s"
|
||||
msgstr "'%s' dosyası okunurken hata: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:673
|
||||
#: glib/gfileutils.c:673
|
||||
#, c-format
|
||||
msgid "Failed to read from file '%s': %s"
|
||||
msgstr "'%s' dosyasından okuma başarısız: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:724 ../glib/gfileutils.c:811
|
||||
#: glib/gfileutils.c:724 glib/gfileutils.c:811
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s': %s"
|
||||
msgstr "'%s' dosyasını açma başarısız: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:741 ../glib/gmappedfile.c:133
|
||||
#: glib/gfileutils.c:741 glib/gmappedfile.c:133
|
||||
#, c-format
|
||||
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
|
||||
msgstr ""
|
||||
"'%s' dosyasının özniteliklerini alma başarısız: fstat() başarısızlığı: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:775
|
||||
#: glib/gfileutils.c:775
|
||||
#, 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:909
|
||||
#: glib/gfileutils.c:909
|
||||
#, 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:950 ../glib/gfileutils.c:1415
|
||||
#: glib/gfileutils.c:950 glib/gfileutils.c:1415
|
||||
#, c-format
|
||||
msgid "Failed to create file '%s': %s"
|
||||
msgstr "'%s' dosyasını oluşturma başarısız: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:964
|
||||
#: glib/gfileutils.c:964
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
|
||||
msgstr "'%s' dosyası yazmak için açılamadı: fdopen() başarısızlığı: %s"
|
||||
|
||||
#: ../glib/gfileutils.c:989
|
||||
#: glib/gfileutils.c:989
|
||||
#, 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:1008
|
||||
#: glib/gfileutils.c:1008
|
||||
#, 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:1126
|
||||
#: glib/gfileutils.c:1126
|
||||
#, 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:1376
|
||||
#: glib/gfileutils.c:1376
|
||||
#, c-format
|
||||
msgid "Template '%s' invalid, should not contain a '%s'"
|
||||
msgstr "Şablon '%s' geçersiz, '%s' içermemeli"
|
||||
|
||||
#: ../glib/gfileutils.c:1390
|
||||
#: glib/gfileutils.c:1390
|
||||
#, c-format
|
||||
msgid "Template '%s' doesn't end with XXXXXX"
|
||||
msgstr "Şablon '%s' XXXXXX ile bitmiyor"
|
||||
|
||||
#: ../glib/gfileutils.c:1865
|
||||
#: glib/gfileutils.c:1865
|
||||
#, 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:1886
|
||||
#: glib/gfileutils.c:1886
|
||||
#, c-format
|
||||
msgid "Symbolic links not supported"
|
||||
msgstr "Sembolik bağlar desteklenmiyor"
|
||||
|
||||
#: ../glib/giochannel.c:1154
|
||||
#: glib/giochannel.c:1154
|
||||
#, c-format
|
||||
msgid "Could not open converter from '%s' to '%s': %s"
|
||||
msgstr "`%s'-`%s' dönüştürücüsü açılamıyor: %s"
|
||||
|
||||
#: ../glib/giochannel.c:1499
|
||||
#: glib/giochannel.c:1499
|
||||
#, c-format
|
||||
msgid "Can't do a raw read in g_io_channel_read_line_string"
|
||||
msgstr "g_io_channel_read_line_string içinde okuma yapılamıyor"
|
||||
|
||||
#: ../glib/giochannel.c:1546 ../glib/giochannel.c:1803
|
||||
#: ../glib/giochannel.c:1889
|
||||
#: glib/giochannel.c:1546 glib/giochannel.c:1803 glib/giochannel.c:1889
|
||||
#, c-format
|
||||
msgid "Leftover unconverted data in read buffer"
|
||||
msgstr "Okuma tampon belleğinde kalıntı çevrilmemiş veri"
|
||||
|
||||
#: ../glib/giochannel.c:1626 ../glib/giochannel.c:1703
|
||||
#: glib/giochannel.c:1626 glib/giochannel.c:1703
|
||||
#, c-format
|
||||
msgid "Channel terminates in a partial character"
|
||||
msgstr "Kanal kısmi bir karakterde sonlanıyor"
|
||||
|
||||
#: ../glib/giochannel.c:1689
|
||||
#: glib/giochannel.c:1689
|
||||
#, c-format
|
||||
msgid "Can't do a raw read in g_io_channel_read_to_end"
|
||||
msgstr "g_io_channel_read_to_end içinde okuma başarısız"
|
||||
|
||||
#: ../glib/gmappedfile.c:116
|
||||
#: glib/gmappedfile.c:116
|
||||
#, c-format
|
||||
msgid "Failed to open file '%s': open() failed: %s"
|
||||
msgstr "'%s' dosyası açılamadı: open() başarısızlığı: %s"
|
||||
|
||||
#: ../glib/gmappedfile.c:193
|
||||
#: glib/gmappedfile.c:193
|
||||
#, c-format
|
||||
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:232
|
||||
#: glib/gmarkup.c:232
|
||||
#, c-format
|
||||
msgid "Error on line %d char %d: %s"
|
||||
msgstr "Satır %d karakter %d hata içeriyor: %s"
|
||||
|
||||
#: ../glib/gmarkup.c:330
|
||||
#: glib/gmarkup.c:330
|
||||
#, c-format
|
||||
msgid "Error on line %d: %s"
|
||||
msgstr "Satır %d hata içeriyor: %s"
|
||||
|
||||
#: ../glib/gmarkup.c:434
|
||||
#: glib/gmarkup.c:434
|
||||
msgid ""
|
||||
"Empty entity '&;' seen; valid entities are: & " < > '"
|
||||
msgstr ""
|
||||
"Boş özvarlık '&;' görüldü; geçerli öğeler: & " < &qt; '"
|
||||
|
||||
#: ../glib/gmarkup.c:444
|
||||
#: glib/gmarkup.c:444
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Character '%s' is not valid at the start of an entity name; the & character "
|
||||
@ -233,17 +240,17 @@ msgstr ""
|
||||
"özvarlığı başlatır; eger bu & işareti bir özvarlık değilse, & olarak "
|
||||
"kullanabilirsiniz"
|
||||
|
||||
#: ../glib/gmarkup.c:478
|
||||
#: glib/gmarkup.c:478
|
||||
#, 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:515
|
||||
#: glib/gmarkup.c:515
|
||||
#, c-format
|
||||
msgid "Entity name '%s' is not known"
|
||||
msgstr "Özvarlık ismi '%s' bilinmiyor"
|
||||
|
||||
#: ../glib/gmarkup.c:526
|
||||
#: glib/gmarkup.c:526
|
||||
msgid ""
|
||||
"Entity did not end with a semicolon; most likely you used an ampersand "
|
||||
"character without intending to start an entity - escape ampersand as &"
|
||||
@ -252,7 +259,7 @@ msgstr ""
|
||||
"istemeksizin & karakteri kullandınız - & işaretini & olarak "
|
||||
"kullanabilirsiniz"
|
||||
|
||||
#: ../glib/gmarkup.c:579
|
||||
#: glib/gmarkup.c:579
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Failed to parse '%-.*s', which should have been a digit inside a character "
|
||||
@ -261,16 +268,16 @@ msgstr ""
|
||||
"Karakter referansı içinde bir rakam olması gereken '%-.*s' ayrıştırılamadı, "
|
||||
"(örneğin; ê) - rakam çok büyük olabilir"
|
||||
|
||||
#: ../glib/gmarkup.c:604
|
||||
#: glib/gmarkup.c:604
|
||||
#, c-format
|
||||
msgid "Character reference '%-.*s' does not encode a permitted character"
|
||||
msgstr "Karakter referansı '%-.*s' izin verilen karakteri kodlamıyor"
|
||||
|
||||
#: ../glib/gmarkup.c:619
|
||||
#: glib/gmarkup.c:619
|
||||
msgid "Empty character reference; should include a digit such as dž"
|
||||
msgstr "Boş karakter referansı; dž gibi bir rakam içermelidir"
|
||||
|
||||
#: ../glib/gmarkup.c:629
|
||||
#: glib/gmarkup.c:629
|
||||
msgid ""
|
||||
"Character reference did not end with a semicolon; most likely you used an "
|
||||
"ampersand character without intending to start an entity - escape ampersand "
|
||||
@ -280,23 +287,23 @@ msgstr ""
|
||||
"başlatmak istemeksizin & karakteri kullandınız - & işaretini & olarak "
|
||||
"kullanabilirsiniz"
|
||||
|
||||
#: ../glib/gmarkup.c:715
|
||||
#: glib/gmarkup.c:715
|
||||
msgid "Unfinished entity reference"
|
||||
msgstr "Tamamlanmamış özvarlık referansı"
|
||||
|
||||
#: ../glib/gmarkup.c:721
|
||||
#: glib/gmarkup.c:721
|
||||
msgid "Unfinished character reference"
|
||||
msgstr "Tamamlanmamış karakter referansı"
|
||||
|
||||
#: ../glib/gmarkup.c:964 ../glib/gmarkup.c:992 ../glib/gmarkup.c:1023
|
||||
#: glib/gmarkup.c:964 glib/gmarkup.c:992 glib/gmarkup.c:1023
|
||||
msgid "Invalid UTF-8 encoded text"
|
||||
msgstr "Geçersiz UTF-8 kodlanmış metin"
|
||||
|
||||
#: ../glib/gmarkup.c:1059
|
||||
#: glib/gmarkup.c:1059
|
||||
msgid "Document must begin with an element (e.g. <book>)"
|
||||
msgstr "Belge bir öğe ile başlamalı (örneğin <kitap>)"
|
||||
|
||||
#: ../glib/gmarkup.c:1099
|
||||
#: glib/gmarkup.c:1099
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following a '<' character; it may not begin an "
|
||||
@ -305,7 +312,7 @@ msgstr ""
|
||||
"'<' karakterinden sonra gelen '%s' geçerli bir karakter değil; bir öğe adı "
|
||||
"başlatmamalı"
|
||||
|
||||
#: ../glib/gmarkup.c:1163
|
||||
#: glib/gmarkup.c:1163
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '>' character to end the start tag of element "
|
||||
@ -314,7 +321,7 @@ msgstr ""
|
||||
"Tuhaf karakter '%s', '%s' öğesinin başlangıç etiketinin sonunda '>' "
|
||||
"karakteri bekleniyor"
|
||||
|
||||
#: ../glib/gmarkup.c:1252
|
||||
#: glib/gmarkup.c:1252
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
|
||||
@ -322,7 +329,7 @@ msgstr ""
|
||||
"Tuhaf karakter '%1$s', '%3$s' öğesinin '%2$s' özniteliğinin sonunda '=' "
|
||||
"karakteri bekleniyor"
|
||||
|
||||
#: ../glib/gmarkup.c:1294
|
||||
#: glib/gmarkup.c:1294
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
|
||||
@ -333,7 +340,7 @@ msgstr ""
|
||||
"veya bir öznitelik bekleniyor; öznitelik isminde geçersiz bir karakter "
|
||||
"kullanmış olabilirsiniz"
|
||||
|
||||
#: ../glib/gmarkup.c:1383
|
||||
#: glib/gmarkup.c:1383
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Odd character '%s', expected an open quote mark after the equals sign when "
|
||||
@ -342,7 +349,7 @@ msgstr ""
|
||||
"Tuhaf karakter: '%s', '%s' özniteliğini '%s' öğesinde değiştirmek için "
|
||||
"eşittir işaretinden sonra tırnak işareti bekleniyor"
|
||||
|
||||
#: ../glib/gmarkup.c:1528
|
||||
#: glib/gmarkup.c:1528
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following the characters '</'; '%s' may not "
|
||||
@ -351,7 +358,7 @@ msgstr ""
|
||||
"'</' karakterlerini takip eden '%s' geçerli bir karakter değildir; öğe ismi "
|
||||
"'%s' ile başlamamalı"
|
||||
|
||||
#: ../glib/gmarkup.c:1568
|
||||
#: glib/gmarkup.c:1568
|
||||
#, c-format
|
||||
msgid ""
|
||||
"'%s' is not a valid character following the close element name '%s'; the "
|
||||
@ -360,27 +367,27 @@ msgstr ""
|
||||
"'%s', kapalı öğe ismi '%s' ardından gelebilcek bir karakter değil; izin "
|
||||
"verilen karakter ise '>'"
|
||||
|
||||
#: ../glib/gmarkup.c:1579
|
||||
#: glib/gmarkup.c:1579
|
||||
#, 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:1588
|
||||
#: glib/gmarkup.c:1588
|
||||
#, 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:1735
|
||||
#: glib/gmarkup.c:1735
|
||||
msgid "Document was empty or contained only whitespace"
|
||||
msgstr "Belge boş veya sadece boşluk karakteri içeriyor"
|
||||
|
||||
#: ../glib/gmarkup.c:1749
|
||||
#: glib/gmarkup.c:1749
|
||||
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:1757 ../glib/gmarkup.c:1801
|
||||
#: glib/gmarkup.c:1757 glib/gmarkup.c:1801
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Document ended unexpectedly with elements still open - '%s' was the last "
|
||||
@ -389,7 +396,7 @@ msgstr ""
|
||||
"Belge öğeleri hala açıkken beklenmedik bir şekilde bitti - son açılan öğe: '%"
|
||||
"s'"
|
||||
|
||||
#: ../glib/gmarkup.c:1765
|
||||
#: glib/gmarkup.c:1765
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Document ended unexpectedly, expected to see a close angle bracket ending "
|
||||
@ -398,19 +405,19 @@ msgstr ""
|
||||
"Belge beklenmedik bir şekilde bitti, etiketi bitiren kapalı açı parantezi "
|
||||
"ile biten <%s/> beklendi"
|
||||
|
||||
#: ../glib/gmarkup.c:1771
|
||||
#: glib/gmarkup.c:1771
|
||||
msgid "Document ended unexpectedly inside an element name"
|
||||
msgstr "Belge bir öğe isminin içinde beklenmedik bir şekilde bitti"
|
||||
|
||||
#: ../glib/gmarkup.c:1776
|
||||
#: glib/gmarkup.c:1776
|
||||
msgid "Document ended unexpectedly inside an attribute name"
|
||||
msgstr "Belge bir öznitelik ismi içinde beklenmedik bir şekilde bitti"
|
||||
|
||||
#: ../glib/gmarkup.c:1781
|
||||
#: glib/gmarkup.c:1781
|
||||
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:1787
|
||||
#: glib/gmarkup.c:1787
|
||||
msgid ""
|
||||
"Document ended unexpectedly after the equals sign following an attribute "
|
||||
"name; no attribute value"
|
||||
@ -418,99 +425,101 @@ msgstr ""
|
||||
"Belge öznitelik adını takip eden eşittir isaretinden sonra beklenmedik bir "
|
||||
"şekilde bitti; öznitelik degeri yok"
|
||||
|
||||
#: ../glib/gmarkup.c:1794
|
||||
#: glib/gmarkup.c:1794
|
||||
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:1809
|
||||
#: glib/gmarkup.c:1809
|
||||
#, 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:1815
|
||||
#: glib/gmarkup.c:1815
|
||||
msgid "Document ended unexpectedly inside a comment or processing instruction"
|
||||
msgstr ""
|
||||
"Belge bir yorum veya işlem talimatı içindeyken beklenmedik bir şekilde bitti"
|
||||
|
||||
#: ../glib/gshell.c:73
|
||||
#: glib/gshell.c:73
|
||||
#, c-format
|
||||
msgid "Quoted text doesn't begin with a quotation mark"
|
||||
msgstr "Alıntılı metin tırnak işareti ile başlamıyor"
|
||||
|
||||
#: ../glib/gshell.c:163
|
||||
#: glib/gshell.c:163
|
||||
#, c-format
|
||||
msgid "Unmatched quotation mark in command line or other shell-quoted text"
|
||||
msgstr ""
|
||||
"Komut satırında veya diğer kabuk alıntısı metinde eşlenmemiş tırnak işareti"
|
||||
|
||||
#: ../glib/gshell.c:541
|
||||
#: glib/gshell.c:541
|
||||
#, c-format
|
||||
msgid "Text ended just after a '\\' character. (The text was '%s')"
|
||||
msgstr "Metin '\\' karakterinden hemen sonra bitti. (Metin: '%s')"
|
||||
|
||||
#: ../glib/gshell.c:548
|
||||
#: glib/gshell.c:548
|
||||
#, c-format
|
||||
msgid "Text ended before matching quote was found for %c. (The text was '%s')"
|
||||
msgstr "%c için eşleşen tırnak işareti bulunmadan metin bitti. (Metin: '%s')"
|
||||
|
||||
#: ../glib/gshell.c:560
|
||||
#: glib/gshell.c:560
|
||||
#, c-format
|
||||
msgid "Text was empty (or contained only whitespace)"
|
||||
msgstr "Metin boştu (veya sadece boşluk içeriyordu)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:276
|
||||
#: glib/gspawn-win32.c:276
|
||||
#, c-format
|
||||
msgid "Failed to read data from child process"
|
||||
msgstr "Oğul süreçten bilgi okuma başarısızlığı"
|
||||
|
||||
#: ../glib/gspawn-win32.c:291 ../glib/gspawn.c:1364
|
||||
#: glib/gspawn-win32.c:291 glib/gspawn.c:1364
|
||||
#, c-format
|
||||
msgid "Failed to create pipe for communicating with child process (%s)"
|
||||
msgstr "Oğul süreçle haberleşme için boru yaratılamadı (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:329 ../glib/gspawn.c:1028
|
||||
#: glib/gspawn-win32.c:329 glib/gspawn.c:1028
|
||||
#, c-format
|
||||
msgid "Failed to read from child pipe (%s)"
|
||||
msgstr "Oğul süreç borusundan okuma başarısızlığı (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:355 ../glib/gspawn.c:1233
|
||||
#: glib/gspawn-win32.c:355 glib/gspawn.c:1233
|
||||
#, c-format
|
||||
msgid "Failed to change to directory '%s' (%s)"
|
||||
msgstr "'%s' dizinine değiştirme başarısızlığı (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:361 ../glib/gspawn-win32.c:581
|
||||
#: glib/gspawn-win32.c:361 glib/gspawn-win32.c:581
|
||||
#, c-format
|
||||
msgid "Failed to execute child process (%s)"
|
||||
msgstr "Oğul süreç yürütme başarısızlığı (%s)"
|
||||
|
||||
#: ../glib/gspawn-win32.c:471 ../glib/gspawn-win32.c:527
|
||||
#: glib/gspawn-win32.c:471 glib/gspawn-win32.c:527
|
||||
#, c-format
|
||||
msgid "Invalid program name: %s"
|
||||
msgstr "Geçersiz program adı: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:481 ../glib/gspawn-win32.c:537
|
||||
#: ../glib/gspawn-win32.c:780 ../glib/gspawn-win32.c:835
|
||||
#: ../glib/gspawn-win32.c:1370
|
||||
#: glib/gspawn-win32.c:481 glib/gspawn-win32.c:537 glib/gspawn-win32.c:780
|
||||
#: glib/gspawn-win32.c:835 glib/gspawn-win32.c:1370
|
||||
#, c-format
|
||||
msgid "Invalid string in argument vector at %d: %s"
|
||||
msgstr "%d konumunda parametre vektörü içinde geçersiz dizgi: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:492 ../glib/gspawn-win32.c:548
|
||||
#: ../glib/gspawn-win32.c:794 ../glib/gspawn-win32.c:848
|
||||
#: ../glib/gspawn-win32.c:1403
|
||||
#: glib/gspawn-win32.c:492 glib/gspawn-win32.c:548 glib/gspawn-win32.c:794
|
||||
#: glib/gspawn-win32.c:848 glib/gspawn-win32.c:1403
|
||||
#, c-format
|
||||
msgid "Invalid string in environment: %s"
|
||||
msgstr "Çevre içinde geçersiz dizgi: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:776 ../glib/gspawn-win32.c:831
|
||||
#: ../glib/gspawn-win32.c:1351
|
||||
#: glib/gspawn-win32.c:776 glib/gspawn-win32.c:831 glib/gspawn-win32.c:1351
|
||||
#, c-format
|
||||
msgid "Invalid working directory: %s"
|
||||
msgstr "Geçersiz çalışma dizini: %s"
|
||||
|
||||
#: ../glib/gspawn-win32.c:890
|
||||
#: glib/gspawn-win32.c:890
|
||||
#, c-format
|
||||
msgid "Failed to execute helper program (%s)"
|
||||
msgstr "Yardımcı program (%s) çalıştırılamadı"
|
||||
|
||||
#: ../glib/gspawn-win32.c:1090
|
||||
#: glib/gspawn-win32.c:1090
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Unexpected error in g_io_channel_win32_poll() reading data from a child "
|
||||
"process"
|
||||
@ -518,126 +527,132 @@ msgstr ""
|
||||
"Oğul süreçten bilgi okurken g_io_channel_win32_poll() işleminde beklenmeyen "
|
||||
"hata"
|
||||
|
||||
#: ../glib/gspawn.c:168
|
||||
#: glib/gspawn.c:168
|
||||
#, c-format
|
||||
msgid "Failed to read data from child process (%s)"
|
||||
msgstr "Oğul süreçten bilgi okuma başarısızlığı (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:300
|
||||
#: glib/gspawn.c:300
|
||||
#, c-format
|
||||
msgid "Unexpected error in select() reading data from a child process (%s)"
|
||||
msgstr "Oğul süreçten bilgi okurken select()'te beklenmeyen hata oluştu (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:383
|
||||
#: glib/gspawn.c:383
|
||||
#, c-format
|
||||
msgid "Unexpected error in waitpid() (%s)"
|
||||
msgstr "waitpid()'de beklenmeyen hata (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1093
|
||||
#: glib/gspawn.c:1093
|
||||
#, c-format
|
||||
msgid "Failed to fork (%s)"
|
||||
msgstr "Çatallama başarısızlığı (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1243
|
||||
#: glib/gspawn.c:1243
|
||||
#, c-format
|
||||
msgid "Failed to execute child process \"%s\" (%s)"
|
||||
msgstr "\"%s\" oğul süreç çalıştırılırken hata oluştu (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1253
|
||||
#: glib/gspawn.c:1253
|
||||
#, c-format
|
||||
msgid "Failed to redirect output or input of child process (%s)"
|
||||
msgstr "Oğul sürecin girdisi veya çıktısı yönlendirilemedi (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1262
|
||||
#: glib/gspawn.c:1262
|
||||
#, c-format
|
||||
msgid "Failed to fork child process (%s)"
|
||||
msgstr "Oğul süreç çatallanamadı (%s)"
|
||||
|
||||
#: ../glib/gspawn.c:1270
|
||||
#: glib/gspawn.c:1270
|
||||
#, c-format
|
||||
msgid "Unknown error executing child process \"%s\""
|
||||
msgstr "Oğul süreç \"%s\" çalıştırılırken bilinmeyen hata oluştu"
|
||||
|
||||
#: ../glib/gspawn.c:1292
|
||||
#: glib/gspawn.c:1292
|
||||
#, c-format
|
||||
msgid "Failed to read enough data from child pid pipe (%s)"
|
||||
msgstr "Oğul süreç borusundan yeterli bilgi okunamadı (%s)"
|
||||
|
||||
#: ../glib/gutf8.c:1017
|
||||
#: glib/gutf8.c:1017
|
||||
#, c-format
|
||||
msgid "Character out of range for UTF-8"
|
||||
msgstr "UTF-8 için karakter sınırlarının dışında"
|
||||
|
||||
#: ../glib/gutf8.c:1111 ../glib/gutf8.c:1120 ../glib/gutf8.c:1252
|
||||
#: ../glib/gutf8.c:1261 ../glib/gutf8.c:1402 ../glib/gutf8.c:1498
|
||||
#: glib/gutf8.c:1111 glib/gutf8.c:1120 glib/gutf8.c:1252 glib/gutf8.c:1261
|
||||
#: glib/gutf8.c:1402 glib/gutf8.c:1498
|
||||
#, c-format
|
||||
msgid "Invalid sequence in conversion input"
|
||||
msgstr "Dönüşüm girdisi içinde geçersiz dizi"
|
||||
|
||||
#: ../glib/gutf8.c:1413 ../glib/gutf8.c:1509
|
||||
#: glib/gutf8.c:1413 glib/gutf8.c:1509
|
||||
#, c-format
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "UTF-16 için karakter sınırlarının dışında"
|
||||
|
||||
#: ../glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Kullanım:"
|
||||
|
||||
#: ../glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[SEÇENEK...]"
|
||||
|
||||
#: ../glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Yardım Seçenekleri:"
|
||||
|
||||
#: ../glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Yardım seçeneklerini göster"
|
||||
|
||||
#: ../glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Tüm yardım seçeneklerini göster"
|
||||
|
||||
#: ../glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Uygulama Seçenekleri:"
|
||||
|
||||
#: ../glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "%2$s için tamsayı değeri '%1$s' ayrıştırılamıyor"
|
||||
|
||||
#: ../glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "%2$s için tamsayı değeri '%1$s' aralık dışında"
|
||||
|
||||
#: ../glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "%s seçeneği işlenirken hata"
|
||||
|
||||
#: ../glib/goption.c:959 ../glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "%s için parametre eksik"
|
||||
|
||||
#: ../glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Bilinmeyen seçenek %s"
|
||||
|
||||
#: ../glib/gkeyfile.c:339
|
||||
#: glib/gkeyfile.c:339
|
||||
#, c-format
|
||||
msgid "Valid key file could not be found in data dirs"
|
||||
msgstr "Veri dizinlerinde geçerli anahtar dosyası bulunamadı"
|
||||
|
||||
#: ../glib/gkeyfile.c:374
|
||||
#: glib/gkeyfile.c:374
|
||||
#, c-format
|
||||
msgid "Not a regular file"
|
||||
msgstr "Normal dosya değil"
|
||||
|
||||
#: ../glib/gkeyfile.c:382
|
||||
#: glib/gkeyfile.c:382
|
||||
#, c-format
|
||||
msgid "File is empty"
|
||||
msgstr "Dosya boş"
|
||||
|
||||
#: ../glib/gkeyfile.c:697
|
||||
#: glib/gkeyfile.c:697
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Key file contains line '%s' which is not a key-value pair, group, or comment"
|
||||
@ -645,38 +660,39 @@ msgstr ""
|
||||
"Anahtar dosyası anahtar-değer çifti, grup veya yorum olmayan '%s' satırını "
|
||||
"içeriyor"
|
||||
|
||||
#: ../glib/gkeyfile.c:765
|
||||
#: glib/gkeyfile.c:765
|
||||
#, c-format
|
||||
msgid "Key file does not start with a group"
|
||||
msgstr "Anahtar dosyası bir grupla başlamıyor"
|
||||
|
||||
#: ../glib/gkeyfile.c:808
|
||||
#: glib/gkeyfile.c:808
|
||||
#, c-format
|
||||
msgid "Key file contains unsupported encoding '%s'"
|
||||
msgstr "Anahtar dosya geçersiz kodlama '%s' içeriyor"
|
||||
|
||||
#: ../glib/gkeyfile.c:1017 ../glib/gkeyfile.c:1176 ../glib/gkeyfile.c:2177
|
||||
#: ../glib/gkeyfile.c:2242 ../glib/gkeyfile.c:2361 ../glib/gkeyfile.c:2497
|
||||
#: ../glib/gkeyfile.c:2649 ../glib/gkeyfile.c:2823 ../glib/gkeyfile.c:2880
|
||||
#: glib/gkeyfile.c:1017 glib/gkeyfile.c:1176 glib/gkeyfile.c:2177
|
||||
#: glib/gkeyfile.c:2242 glib/gkeyfile.c:2361 glib/gkeyfile.c:2497
|
||||
#: glib/gkeyfile.c:2649 glib/gkeyfile.c:2823 glib/gkeyfile.c:2880
|
||||
#, c-format
|
||||
msgid "Key file does not have group '%s'"
|
||||
msgstr "Anahtar dosyasında '%s' grubu yok"
|
||||
|
||||
#: ../glib/gkeyfile.c:1188
|
||||
#: glib/gkeyfile.c:1188
|
||||
#, c-format
|
||||
msgid "Key file does not have key '%s'"
|
||||
msgstr "Anahtar dosyasında '%s' anahtarı yok"
|
||||
|
||||
#: ../glib/gkeyfile.c:1289 ../glib/gkeyfile.c:1398
|
||||
#: glib/gkeyfile.c:1289 glib/gkeyfile.c:1398
|
||||
#, c-format
|
||||
msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
|
||||
msgstr "Anahtar dosyası UTF-8 olmayan '%s' anahtarını '%s' değeriyle içeriyor"
|
||||
|
||||
#: ../glib/gkeyfile.c:1307 ../glib/gkeyfile.c:1416 ../glib/gkeyfile.c:1788
|
||||
#: glib/gkeyfile.c:1307 glib/gkeyfile.c:1416 glib/gkeyfile.c:1788
|
||||
#, c-format
|
||||
msgid "Key file contains key '%s' which has value that cannot be interpreted."
|
||||
msgstr "Anahtar dosyası değeri yorumlanamayan '%s' değerini içeriyor."
|
||||
|
||||
#: ../glib/gkeyfile.c:2004
|
||||
#: glib/gkeyfile.c:2004
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Key file contains key '%s' in group '%s' which has value that cannot be "
|
||||
@ -684,31 +700,32 @@ msgid ""
|
||||
msgstr ""
|
||||
"Anahtar dosyası, yorumlanamayan '%2$s' grubundaki '%1$s' anahtarını içeriyor."
|
||||
|
||||
#: ../glib/gkeyfile.c:2192 ../glib/gkeyfile.c:2376 ../glib/gkeyfile.c:2891
|
||||
#: glib/gkeyfile.c:2192 glib/gkeyfile.c:2376 glib/gkeyfile.c:2891
|
||||
#, c-format
|
||||
msgid "Key file does not have key '%s' in group '%s'"
|
||||
msgstr "Anahtar dosyası '%2$s' grubunda '%1$s' anahtarı içermiyor"
|
||||
|
||||
#: ../glib/gkeyfile.c:3067
|
||||
#: glib/gkeyfile.c:3067
|
||||
#, c-format
|
||||
msgid "Key file contains escape character at end of line"
|
||||
msgstr "Anahtar dosyası satır sonunda çıkış karakteri içeriyor"
|
||||
|
||||
#: ../glib/gkeyfile.c:3089
|
||||
#: glib/gkeyfile.c:3089
|
||||
#, c-format
|
||||
msgid "Key file contains invalid escape sequence '%s'"
|
||||
msgstr "URI '%s' geçersiz çıkış dizisi içeriyor"
|
||||
|
||||
#: ../glib/gkeyfile.c:3230
|
||||
#: glib/gkeyfile.c:3230
|
||||
#, c-format
|
||||
msgid "Value '%s' cannot be interpreted as a number."
|
||||
msgstr "'%s' değeri bir sayı olarak yorumlanamıyor."
|
||||
|
||||
#: ../glib/gkeyfile.c:3240
|
||||
#: glib/gkeyfile.c:3240
|
||||
#, c-format
|
||||
msgid "Integer value '%s' out of range"
|
||||
msgstr "Tamsayı değeri '%s' aralık dışında"
|
||||
|
||||
#: ../glib/gkeyfile.c:3270
|
||||
#: glib/gkeyfile.c:3270
|
||||
#, c-format
|
||||
msgid "Value '%s' cannot be interpreted as a boolean."
|
||||
msgstr "'%s' değeri bool değer olarak yorumlanamıyor."
|
||||
|
24
po/tt.po
24
po/tt.po
@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: libgnome\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
@ -537,51 +537,51 @@ msgstr ""
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "UTF-16 çigennän çıqqan bilge"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Totılu:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[KÖYLÄMÄ...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Yärdäm Köylämäse:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Yärdäm köylämäsen kürsätü"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Yärdäm köylämäsen kürsätü"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Yazılım Köylämäläre:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "%2$s öçen '%1$s' digän tulısan bäyäse çiktän uzdı"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Äyländergändä xata çıqtı: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "%s öçen köylämä birelmäde"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Bilgesez %s atlı köylämä"
|
||||
|
24
po/uk.po
24
po/uk.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-02-16 11:56--500\n"
|
||||
"Last-Translator: Maxim Dziumanenko <mvd@mylinux.ua>\n"
|
||||
"Language-Team: Ukrainian <uk@li.org>\n"
|
||||
@ -584,51 +584,51 @@ msgstr "Неправильна послідовність у перетворю
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Символ не входить в набір UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Використання:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[ПАРАМЕТР...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Параметри довідки:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Показати параметри довідки"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Показати усі параметри довідки"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Параметри програми:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Не вдається розібрати числове ціле значення '%s' для %s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Числове ціле значення '%s' для %s поза межами діапазону"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Помилка розбору параметра %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Відсутній аргумент %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Невідомий параметр %s"
|
||||
|
24
po/vi.po
24
po/vi.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.9.2 Gnome HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-07 22:32+1030\n"
|
||||
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
|
||||
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n"
|
||||
@ -591,51 +591,51 @@ msgstr "Dây bất hợp lệ trong dữ liệu nhập việc chuyển đổi."
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Ký tự ở ngoại phạm vị UTF-16."
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Cách sử dụng:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[TÙY_CHỌN...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Tùy chọn trợ giúp:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Hiển thị các tùy chọn trợ giúp"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Hiển thị mọi tùy chọn trợ giúp"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Tùy chọn ứng dụng:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Không phân tách giá trị số nguyên « %s » cho %s."
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Giá trị số nguyên « %s » cho %s ở ngoại phạm vị."
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Gặp lỗi khi phân tách tùy chọn %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "Thiếu đối số cho %s"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Không biết tùy chọn %s."
|
||||
|
24
po/wa.po
24
po/wa.po
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
@ -554,51 +554,51 @@ msgstr "Secwince nén valide e l' intrêye do cviersaedje"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Caractere foû fortchete po l' ecôdaedje UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Åk n' a nén stî tot cviersant: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr ""
|
||||
|
24
po/xh.po
24
po/xh.po
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
@ -598,51 +598,51 @@ msgstr "Ulandelelwano olungasebenziyo kwinguqulo yongeniso-lwazi"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "Uphawu lungaphandle kwesigaba se-UTF-16"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "Ukusetyenziswa:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[OPTION...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "Uncedo lokunokukhethwa:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "Bonisa amancedo anokukhethwa"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "Bonisa onke amancedo anokukhethwa"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "Iindlela zokusebenza ezinokukhethwa:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, fuzzy, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "Akukwazeki ukwahlula ngezijungqe ixabiso lanani elimbaxa '%s' for --%s"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "Ixabiso lenani elimbaxa '%s' le %s lingaphaya kwesigaba"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "Impazamo ngelixa lenguqulo: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "Ukhetho olungaziwayo %s"
|
||||
|
24
po/yi.po
24
po/yi.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 1.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-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"
|
||||
@ -577,51 +577,51 @@ msgstr "אומלעקסיקער סעקװענץ אין פֿאַרװאַנדל־א
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "שריפֿטצײכן ניט אין דער UTF־16 גאַמע"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, fuzzy, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "דורכפֿאַל בשעת פֿאַרװאַנדלונג: %s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr ""
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr ""
|
||||
|
24
po/zh_CN.po
24
po/zh_CN.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-21 22:25+0800\n"
|
||||
"Last-Translator: He Qiangqiang <carton@263.net>\n"
|
||||
"Language-Team: zh_CN <i18n-translation@lists.linux.net.cn>\n"
|
||||
@ -547,51 +547,51 @@ msgstr "转换输入中出现无效序列"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "字符超出 UTF-16 范围"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "用法:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[选项...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "帮助选项:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "显示帮助选项"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "显示全部帮助选项"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "应用程序选项:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "无法处理 %2$s 所用的整数值“%1$s”"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "%2$s 所用的整数值“%1$s”超出范围"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "分析选项出错:%s"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "缺少 %s 的参数"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "未知选项 %s"
|
||||
|
24
po/zh_HK.po
24
po/zh_HK.po
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.9.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-04 10:22+0800\n"
|
||||
"Last-Translator: Abel Cheung <abel@oaka.org>\n"
|
||||
"Language-Team: Chinese (Hong Kong) <community@linuxhall.org>\n"
|
||||
@ -556,51 +556,51 @@ msgstr "轉換輸入資料時出現無效的字元次序"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "字元不在 UTF-16 範圍之內"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "用法:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[選項...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "說明選項:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "顯示說明的選項"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "顯示所有的說明選項"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "應用程式選項:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "無法給 %2$s 解析整數值「%1$s」"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "%2$s 的整數值「%1$s」超出範圍"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "解析 %s 選項時發生錯誤"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "缺少 %s 的參數"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "未知的選項 %s"
|
||||
|
24
po/zh_TW.po
24
po/zh_TW.po
@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.9.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2006-03-07 13:10-0500\n"
|
||||
"POT-Creation-Date: 2006-04-07 13:20-0400\n"
|
||||
"PO-Revision-Date: 2006-01-04 10:19+0800\n"
|
||||
"Last-Translator: Abel Cheung <abel@oaka.org>\n"
|
||||
"Language-Team: Chinese (Taiwan) <community@linuxhall.org>\n"
|
||||
@ -556,51 +556,51 @@ msgstr "轉換輸入資料時出現無效的字元次序"
|
||||
msgid "Character out of range for UTF-16"
|
||||
msgstr "字元不在 UTF-16 範圍之內"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "Usage:"
|
||||
msgstr "用法:"
|
||||
|
||||
#: glib/goption.c:468
|
||||
#: glib/goption.c:484
|
||||
msgid "[OPTION...]"
|
||||
msgstr "[選項...]"
|
||||
|
||||
#: glib/goption.c:556
|
||||
#: glib/goption.c:572
|
||||
msgid "Help Options:"
|
||||
msgstr "說明選項:"
|
||||
|
||||
#: glib/goption.c:557
|
||||
#: glib/goption.c:573
|
||||
msgid "Show help options"
|
||||
msgstr "顯示說明的選項"
|
||||
|
||||
#: glib/goption.c:562
|
||||
#: glib/goption.c:578
|
||||
msgid "Show all help options"
|
||||
msgstr "顯示所有的說明選項"
|
||||
|
||||
#: glib/goption.c:612
|
||||
#: glib/goption.c:628
|
||||
msgid "Application Options:"
|
||||
msgstr "應用程式選項:"
|
||||
|
||||
#: glib/goption.c:653
|
||||
#: glib/goption.c:669
|
||||
#, c-format
|
||||
msgid "Cannot parse integer value '%s' for %s"
|
||||
msgstr "無法給 %2$s 解析整數值「%1$s」"
|
||||
|
||||
#: glib/goption.c:663
|
||||
#: glib/goption.c:679
|
||||
#, c-format
|
||||
msgid "Integer value '%s' for %s out of range"
|
||||
msgstr "%2$s 的整數值「%1$s」超出範圍"
|
||||
|
||||
#: glib/goption.c:926
|
||||
#: glib/goption.c:942
|
||||
#, c-format
|
||||
msgid "Error parsing option %s"
|
||||
msgstr "解析 %s 選項時發生錯誤"
|
||||
|
||||
#: glib/goption.c:959 glib/goption.c:1070
|
||||
#: glib/goption.c:973 glib/goption.c:1084
|
||||
#, c-format
|
||||
msgid "Missing argument for %s"
|
||||
msgstr "缺少 %s 的參數"
|
||||
|
||||
#: glib/goption.c:1474
|
||||
#: glib/goption.c:1489
|
||||
#, c-format
|
||||
msgid "Unknown option %s"
|
||||
msgstr "未知的選項 %s"
|
||||
|
@ -840,6 +840,8 @@ empty_test1 (void)
|
||||
GOptionEntry entries [] =
|
||||
{ { NULL } };
|
||||
|
||||
g_set_prgname (NULL);
|
||||
|
||||
context = g_option_context_new (NULL);
|
||||
|
||||
g_option_context_add_main_entries (context, entries, NULL);
|
||||
|
@ -189,7 +189,7 @@ test_sliced_mem_thread (gpointer data)
|
||||
static void
|
||||
usage (void)
|
||||
{
|
||||
g_print ("Usage: gslicedmemory [n_threads] [G|S|M|O][f][c] [maxblocksize] [seed]\n");
|
||||
g_print ("Usage: slice-test [n_threads] [G|S|M|O][f][c] [maxblocksize] [seed]\n");
|
||||
}
|
||||
|
||||
int
|
||||
|
Loading…
x
Reference in New Issue
Block a user