svn path=/trunk/; revision=7505
This commit is contained in:
Matthias Clasen 2008-09-17 23:56:04 +00:00
parent 042345d59e
commit ac516ab07e
98 changed files with 5445 additions and 5667 deletions

View File

@ -1,5 +1,7 @@
2008-09-17 Matthias Clasen <mclasen@redhat.com> 2008-09-17 Matthias Clasen <mclasen@redhat.com>
* === Released 2.18.1 ===
* NEWS: Updates * NEWS: Updates
2008-09-16 Tor Lillqvist <tml@novell.com> 2008-09-16 Tor Lillqvist <tml@novell.com>

View File

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

2
README
View File

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

View File

@ -1,3 +1,7 @@
2008-09-17 Matthias Clasen <mclasen@redhat.com>
* === Released 2.18.1 ===
2008-09-15 Matthias Clasen <mclasen@redhat.com> 2008-09-15 Matthias Clasen <mclasen@redhat.com>
Bug 552359 g_file_info_get_icon should return GThemedIcon, and Bug 552359 g_file_info_get_icon should return GThemedIcon, and

View File

@ -337,6 +337,7 @@ It should only be accessed via the following functions.
<!-- ##### USER_FUNCTION GModuleCheckInit ##### --> <!-- ##### USER_FUNCTION GModuleCheckInit ##### -->
<para> <para>
Specifies the type of the module initialization function. Specifies the type of the module initialization function.
<indexterm zone="g-module-check-init"><primary>g_module_check_init</primary></indexterm>
If a module contains a function named g_module_check_init() it is called If a module contains a function named g_module_check_init() it is called
automatically when the module is loaded. It is passed the #GModule structure automatically when the module is loaded. It is passed the #GModule structure
and should return %NULL on success or a string describing the initialization and should return %NULL on success or a string describing the initialization
@ -362,6 +363,7 @@ not supported on all platforms.
<!-- ##### USER_FUNCTION GModuleUnload ##### --> <!-- ##### USER_FUNCTION GModuleUnload ##### -->
<para> <para>
<indexterm zone="g-module-unload"><primary>g_module_unload</primary></indexterm>
Specifies the type of the module function called when it is unloaded. Specifies the type of the module function called when it is unloaded.
If a module contains a function named g_module_unload() it is called If a module contains a function named g_module_unload() it is called
automatically when the module is unloaded. automatically when the module is unloaded.

View File

@ -99,186 +99,3 @@ just_say_hello (const char *filename, GError **error)
<!-- ##### SECTION Stability_Level ##### --> <!-- ##### SECTION Stability_Level ##### -->
<!-- ##### STRUCT GModule ##### -->
<para>
The #GModule struct is an opaque data structure to represent a
<link linkend="glib-Dynamic-Loading-of-Modules">Dynamically-Loaded Module</link>.
It should only be accessed via the following functions.
</para>
<!-- ##### FUNCTION g_module_supported ##### -->
<para>
Checks if modules are supported on the current platform.
</para>
@Returns: %TRUE if modules are supported.
<!-- ##### FUNCTION g_module_build_path ##### -->
<para>
A portable way to build the filename of a module. The platform-specific
prefix and suffix are added to the filename, if needed, and the result is
added to the directory, using the correct separator character.
</para>
<para>
The directory should specify the directory where the module can be found.
It can be %NULL or an empty string to indicate that the module is in a standard
platform-specific directory, though this is not recommended since the
wrong module may be found.
</para>
<para>
For example, calling g_module_build_path() on a Linux system with a @directory
of <filename>/lib</filename> and a @module_name of "mylibrary" will return
<filename>/lib/libmylibrary.so</filename>. On a Windows system, using
<filename>\Windows</filename> as the directory it will return
<filename>\Windows\mylibrary.dll</filename>.
</para>
@directory: the directory where the module is. This can be %NULL or the empty
string to indicate that the standard platform-specific directories will be
used, though that is not recommended.
@module_name: the name of the module.
@Returns: the complete path of the module, including the standard library
prefix and suffix. This should be freed when no longer needed.
<!-- ##### FUNCTION g_module_open ##### -->
<para>
Opens a module. If the module has already been opened, its reference
count is incremented.
</para>
<para>
First of all g_module_open() tries to open @file_name as a module. If
that fails and @file_name has the ".la"-suffix (and is a libtool archive)
it tries to open the corresponding module. If that fails and it doesn't
have the proper module suffix for the platform (#G_MODULE_SUFFIX), this
suffix will be appended and the corresponding module will be opended. If
that fails and @file_name doesn't have the ".la"-suffix, this suffix is
appended and g_module_open() tries to open the corresponding module. If
eventually that fails as well, %NULL is returned.
</para>
@file_name: the name of the file containing the module, or %NULL to obtain
a #GModule representing the main program itself.
@flags: the flags used for opening the module. This can be the logical
OR of any of the #GModuleFlags.
@Returns: a #GModule on success, or %NULL on failure.
<!-- ##### ENUM GModuleFlags ##### -->
<para>
Flags passed to g_module_open(). Note that these flags are
not supported on all platforms.
</para>
@G_MODULE_BIND_LAZY: specifies that symbols are only resolved when needed.
The default action is to bind all symbols when the module is loaded.
@G_MODULE_BIND_LOCAL: specifies that symbols in the module should
not be added to the global name space. The default action on most
platforms is to place symbols in the module in the global name space,
which may cause conflicts with existing symbols.
@G_MODULE_BIND_MASK: mask for all flags.
<!-- ##### FUNCTION g_module_symbol ##### -->
<para>
Gets a symbol pointer from a module, such as one exported by #G_MODULE_EXPORT.
</para>
<para>
Note that a valid symbol can be %NULL.
</para>
@module: a #GModule.
@symbol_name: the name of the symbol to find.
@symbol: returns the pointer to the symbol value.
@Returns: %TRUE on success.
<!-- ##### FUNCTION g_module_name ##### -->
<para>
Gets the filename from a #GModule.
</para>
@module: a #GModule.
@Returns: the filename of the module, or "main" if the module is the main
program itself.
<!-- ##### FUNCTION g_module_make_resident ##### -->
<para>
Ensures that a module will never be unloaded.
Any future g_module_close() calls on the module will be ignored.
</para>
@module: a #GModule to make permanently resident.
<!-- ##### FUNCTION g_module_close ##### -->
<para>
Closes a module.
</para>
@module: a #GModule to close.
@Returns: %TRUE on success.
<!-- ##### FUNCTION g_module_error ##### -->
<para>
Gets a string describing the last module error.
</para>
@Returns: a string describing the last module error.
<!-- ##### USER_FUNCTION GModuleCheckInit ##### -->
<para>
Specifies the type of the module initialization function.
<indexterm zone="g-module-check-init"><primary>g_module_check_init</primary></indexterm>
If a module contains a function named g_module_check_init() it is called
automatically when the module is loaded. It is passed the #GModule structure
and should return %NULL on success or a string describing the initialization
error.
</para>
@module: the #GModule corresponding to the module which has just been loaded.
@Returns: %NULL on success, or a string describing the initialization error.
<!-- ##### USER_FUNCTION GModuleUnload ##### -->
<para>
<indexterm zone="g-module-unload"><primary>g_module_unload</primary></indexterm>
Specifies the type of the module function called when it is unloaded.
If a module contains a function named g_module_unload() it is called
automatically when the module is unloaded.
It is passed the #GModule structure.
</para>
@module: the #GModule about to be unloaded.
<!-- ##### MACRO G_MODULE_SUFFIX ##### -->
<para>
Expands to the proper shared library suffix for the current platform
without the leading dot. For the most Unices and Linux this is "so",
for some HP-UX versions this is "sl" and for Windows this is "dll".
</para>
<!-- ##### MACRO G_MODULE_EXPORT ##### -->
<para>
Used to declare functions exported by modules. This is a no-op on Linux and
Unices, but when compiling for Windows, it marks a symbol to be exported from
the library or executable being built.
</para>
<!-- ##### MACRO G_MODULE_IMPORT ##### -->
<para>
Used to declare functions imported from modules.
</para>

View File

@ -1,3 +1,7 @@
2008-09-17 Matthias Clasen <mclasen@redhat.com>
* === Released 2.18.1 ===
2008-09-16 Michael Natterer <mitch@imendio.com> 2008-09-16 Michael Natterer <mitch@imendio.com>
* gcontenttype.c (g_content_type_guess): can't assign the return * gcontenttype.c (g_content_type_guess): can't assign the return

View File

@ -1,3 +1,7 @@
2008-09-17 Matthias Clasen <mclasen@redhat.com>
* === Released 2.18.1 ===
2008-09-08 Tor Lillqvist <tml@novell.com> 2008-09-08 Tor Lillqvist <tml@novell.com>
Bug 551408 - gmodule.def generated to builddir, but required in srcdir Bug 551408 - gmodule.def generated to builddir, but required in srcdir

View File

@ -1,3 +1,7 @@
2008-09-17 Matthias Clasen <mclasen@redhat.com>
* === Released 2.18.1 ===
2008-09-02 Matthias Clasen <mclasen@redhat.com> 2008-09-02 Matthias Clasen <mclasen@redhat.com>
* === Released 2.18.0 === * === Released 2.18.0 ===

View File

@ -1,3 +1,7 @@
2008-09-17 Matthias Clasen <mclasen@redhat.com>
* === Released 2.18.1 ===
2008-09-02 Matthias Clasen <mclasen@redhat.com> 2008-09-02 Matthias Clasen <mclasen@redhat.com>
* === Released 2.18.0 === * === Released 2.18.0 ===

View File

@ -1,3 +1,7 @@
2008-09-17 Matthias Clasen <mclasen@redhat.com>
* === Released 2.18.1 ===
2008-09-17 Krishnababu K <kkrothap@redhat.com> 2008-09-17 Krishnababu K <kkrothap@redhat.com>
* te.po: Updated Telugu Translation. * te.po: Updated Telugu Translation.

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib VERSION\n" "Project-Id-Version: glib VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2003-01-16 08:39+EDT\n" "PO-Revision-Date: 2003-01-16 08:39+EDT\n"
"Last-Translator: Ge'ez Frontier Foundation <locales@geez.org>\n" "Last-Translator: Ge'ez Frontier Foundation <locales@geez.org>\n"
"Language-Team: Amharic <locales@geez.org>\n" "Language-Team: Amharic <locales@geez.org>\n"
@ -1114,34 +1114,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1650,20 +1650,20 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "ፋይል '%s'ን ለማንበብ ስህተት አለ፦ %s" msgstr "ፋይል '%s'ን ለማንበብ ስህተት አለ፦ %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

782
po/ar.po

File diff suppressed because it is too large Load Diff

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: as\n" "Project-Id-Version: as\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-02-28 17:08+0530\n" "PO-Revision-Date: 2008-02-28 17:08+0530\n"
"Last-Translator: Amitakhya Phukan <amitakhya@svn.gnome.org>\n" "Last-Translator: Amitakhya Phukan <amitakhya@svn.gnome.org>\n"
"Language-Team: Assamese\n" "Language-Team: Assamese\n"
@ -1136,34 +1136,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1678,21 +1678,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "সলনি কৰাৰ সময়ত ভুল: %s" msgstr "সলনি কৰাৰ সময়ত ভুল: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "সাঙ্কেতিক সংযোগ সমৰ্থিত নহয়" msgstr "সাঙ্কেতিক সংযোগ সমৰ্থিত নহয়"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD.az\n" "Project-Id-Version: glib.HEAD.az\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2004-02-02 12:12+0200\n" "PO-Revision-Date: 2004-02-02 12:12+0200\n"
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n" "Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
"Language-Team: Azerbaijani Turkish <gnome@azitt.com>\n" "Language-Team: Azerbaijani Turkish <gnome@azitt.com>\n"
@ -1159,34 +1159,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1700,21 +1700,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Dönüşdürmə sırasında xəta yarandı: %s" msgstr "Dönüşdürmə sırasında xəta yarandı: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Simvolik körpülər dəstəklənmir" msgstr "Simvolik körpülər dəstəklənmir"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib HEAD\n" "Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2005-11-16 11:21+0200\n" "PO-Revision-Date: 2005-11-16 11:21+0200\n"
"Last-Translator: Vital Khilko <vk@altlinux.ru>\n" "Last-Translator: Vital Khilko <vk@altlinux.ru>\n"
"Language-Team: Belarusian <i18n@mova.org>\n" "Language-Team: Belarusian <i18n@mova.org>\n"
@ -1285,34 +1285,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1872,21 +1872,21 @@ msgstr ""
# glib/gconvert.c:597 glib/gconvert.c:813 glib/giochannel.c:1289 # glib/gconvert.c:597 glib/gconvert.c:813 glib/giochannel.c:1289
# glib/giochannel.c:2175 # glib/giochannel.c:2175
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Памылка ў часе пераўтварэньня: %s" msgstr "Памылка ў часе пераўтварэньня: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Сымбалічныя спасылкі не падтрымліваюцца" msgstr "Сымбалічныя спасылкі не падтрымліваюцца"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib HEAD\n" "Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-02-16 23:33+0200\n" "PO-Revision-Date: 2008-02-16 23:33+0200\n"
"Last-Translator: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>\n" "Last-Translator: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>\n"
"Language-Team: Belarusian Latin <i18n@mova.org>\n" "Language-Team: Belarusian Latin <i18n@mova.org>\n"
@ -1289,35 +1289,35 @@ msgstr "typ %s"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Zaŭčasny kaniec płyni" msgstr "Zaŭčasny kaniec płyni"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Nienazvany" msgstr "Nienazvany"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Fajł stała nie akreślivaje pola Exec" msgstr "Fajł stała nie akreślivaje pola Exec"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Niemahčyma znajści terminału, vymahanaha dla aplikacyi" msgstr "Niemahčyma znajści terminału, vymahanaha dla aplikacyi"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
"Niemahčyma stvaryć kanfihuracyjny kataloh %s karystalnika dla aplikacyi: %s" "Niemahčyma stvaryć kanfihuracyjny kataloh %s karystalnika dla aplikacyi: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Niemahčyma stvaryć kanfihuracyjny kataloh MIME %s dla karystalnika: %s" msgstr "Niemahčyma stvaryć kanfihuracyjny kataloh MIME %s dla karystalnika: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Niemahčyma stvaryć fajł stała %s dla karystalnika" msgstr "Niemahčyma stvaryć fajł stała %s dla karystalnika"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Asablivaje aznačeńnie dla %s" msgstr "Asablivaje aznačeńnie dla %s"
@ -1877,20 +1877,20 @@ msgstr "Niemahčyma znajści aplikacyju"
# glib/gconvert.c:597 glib/gconvert.c:813 glib/giochannel.c:1289 # glib/gconvert.c:597 glib/gconvert.c:813 glib/giochannel.c:1289
# glib/giochannel.c:2175 # glib/giochannel.c:2175
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Pamyłka ŭklučeńnia aplikacyi: %s" msgstr "Pamyłka ŭklučeńnia aplikacyi: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Adrasy URI nie padtrymlivajucca" msgstr "Adrasy URI nie padtrymlivajucca"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "źmieny asacyjacyjaŭ nie padtrymlivajucca dla win32" msgstr "źmieny asacyjacyjaŭ nie padtrymlivajucca dla win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Stvareńnie asacyjacyjaŭ nie padtrymlivajecca dla win32" msgstr "Stvareńnie asacyjacyjaŭ nie padtrymlivajecca dla win32"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib trunk\n" "Project-Id-Version: glib trunk\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-09-02 14:15+0300\n" "PO-Revision-Date: 2008-09-02 14:15+0300\n"
"Last-Translator: Alexander Shopov <ash@contact.bg>\n" "Last-Translator: Alexander Shopov <ash@contact.bg>\n"
"Language-Team: Bulgarian <dict@fsa-bg.org>\n" "Language-Team: Bulgarian <dict@fsa-bg.org>\n"
@ -1184,34 +1184,34 @@ msgstr "Вид на %s"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Неочаквано ранен край на поток" msgstr "Неочаквано ранен край на поток"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Без име" msgstr "Без име"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Във файла .desktop липсва поле за изпълнение" msgstr "Във файла .desktop липсва поле за изпълнение"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Не може да се открие терминал за приложението" msgstr "Не може да се открие терминал за приложението"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "Не може да се създаде папката с потребителските настройки %s: %s" msgstr "Не може да се създаде папката с потребителските настройки %s: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Не може да се създаде папката с настройките за MIME %s: %s" msgstr "Не може да се създаде папката с настройките за MIME %s: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Не може да се създаде файл .desktop — „%s“" msgstr "Не може да се създаде файл .desktop — „%s“"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Потребителска дефиниция за %s" msgstr "Потребителска дефиниция за %s"
@ -1722,20 +1722,20 @@ msgstr "томът не поддържа изваждане"
msgid "Can't find application" msgid "Can't find application"
msgstr "Приложението не може да бъде открито" msgstr "Приложението не може да бъде открито"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Грешка при стартиране на приложение: %s" msgstr "Грешка при стартиране на приложение: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Не се поддържат такива адреси" msgstr "Не се поддържат такива адреси"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "не се поддържа промяна на асоциациите при win32" msgstr "не се поддържа промяна на асоциациите при win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Не се поддържа създаването на асоциации при win32" msgstr "Не се поддържа създаването на асоциации при win32"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 0.1\n" "Project-Id-Version: glib 0.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2006-08-31 21:21+0600\n" "PO-Revision-Date: 2006-08-31 21:21+0600\n"
"Last-Translator: Khandakar Mujahidul Islam <suzan@bengalinux.org>\n" "Last-Translator: Khandakar Mujahidul Islam <suzan@bengalinux.org>\n"
"Language-Team: Bengali <gnome-translation@bengalinux.org>\n" "Language-Team: Bengali <gnome-translation@bengalinux.org>\n"
@ -1151,34 +1151,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1694,21 +1694,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "%s বিকল্প পার্স করতে ব্যর্থ" msgstr "%s বিকল্প পার্স করতে ব্যর্থ"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "প্রতীকী লিঙ্ক সমর্থিত নয়" msgstr "প্রতীকী লিঙ্ক সমর্থিত নয়"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.glib-2-4\n" "Project-Id-Version: glib.glib-2-4\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2004-05-17 01:30+0000\n" "PO-Revision-Date: 2004-05-17 01:30+0000\n"
"Last-Translator: Kenan Hadžiavdić <kenanh@frisurf.no>\n" "Last-Translator: Kenan Hadžiavdić <kenanh@frisurf.no>\n"
"Language-Team: Bosnian <lokal@lugbih.org>\n" "Language-Team: Bosnian <lokal@lugbih.org>\n"
@ -1158,34 +1158,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1699,21 +1699,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Greška tokom pretvaranja: %s" msgstr "Greška tokom pretvaranja: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Simbolički linkovi nisu podržani" msgstr "Simbolički linkovi nisu podržani"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.8\n" "Project-Id-Version: glib 2.8\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-10 13:17+0200\n" "PO-Revision-Date: 2008-08-10 13:17+0200\n"
"Last-Translator: Gil Forcada <gilforcada@guifi.net>\n" "Last-Translator: Gil Forcada <gilforcada@guifi.net>\n"
"Language-Team: Catalan <tradgnome@softcatala.org>\n" "Language-Team: Catalan <tradgnome@softcatala.org>\n"
@ -1200,37 +1200,37 @@ msgstr "tipus %s"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "No s'esperava un final de flux tant aviat" msgstr "No s'esperava un final de flux tant aviat"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Sense nom" msgstr "Sense nom"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "El fitxer d'escriptori no especificava el camp d'execucció" msgstr "El fitxer d'escriptori no especificava el camp d'execucció"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "No s'ha pogut trobar el terminal que demanava l'aplicació" msgstr "No s'ha pogut trobar el terminal que demanava l'aplicació"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
"No s'ha pogut crear el directori de configuració de l'aplicació de l'usuari %" "No s'ha pogut crear el directori de configuració de l'aplicació de l'usuari %"
"s: %s" "s: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
"No s'ha pogut crear el directori de configuració MIME de l'usuari %s: %s" "No s'ha pogut crear el directori de configuració MIME de l'usuari %s: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "No s'ha pogut crear el fitxer d'escriptori de l'usuari %s" msgstr "No s'ha pogut crear el fitxer d'escriptori de l'usuari %s"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Definició personalitzada per a %s" msgstr "Definició personalitzada per a %s"
@ -1750,20 +1750,20 @@ msgstr "el volum no implementa l'expulsió"
msgid "Can't find application" msgid "Can't find application"
msgstr "No es pot trobar l'aplicació" msgstr "No es pot trobar l'aplicació"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "S'ha produït un error en executar l'aplicació: %s" msgstr "S'ha produït un error en executar l'aplicació: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "No estan implementats els URI" msgstr "No estan implementats els URI"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "els canvis associatius no estan implementats a win32" msgstr "els canvis associatius no estan implementats a win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "La creació associativa no està implementada a win32" msgstr "La creació associativa no està implementada a win32"

View File

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-27 01:22+0200\n" "PO-Revision-Date: 2008-08-27 01:22+0200\n"
"Last-Translator: Petr Kovar <pknbe@volny.cz>\n" "Last-Translator: Petr Kovar <pknbe@volny.cz>\n"
"Language-Team: Czech <gnome-cs-list@gnome.org>\n" "Language-Team: Czech <gnome-cs-list@gnome.org>\n"
@ -1162,34 +1162,34 @@ msgstr "typ %s"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Neočekávaný časný konec proudu" msgstr "Neočekávaný časný konec proudu"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Bez názvu" msgstr "Bez názvu"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "V souboru desktop nezadáno pole Exec" msgstr "V souboru desktop nezadáno pole Exec"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Nelze nalézt terminál vyžadovaný pro aplikaci" msgstr "Nelze nalézt terminál vyžadovaný pro aplikaci"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "Nelze vytvořit uživatelskou konfigurační složku aplikace %s: %s" msgstr "Nelze vytvořit uživatelskou konfigurační složku aplikace %s: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Nelze vytvořit uživatelskou konfigurační složku MIME %s: %s" msgstr "Nelze vytvořit uživatelskou konfigurační složku MIME %s: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Nelze vytvořit uživatelský soubor desktop %s" msgstr "Nelze vytvořit uživatelský soubor desktop %s"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Vlastní definice %s" msgstr "Vlastní definice %s"
@ -1699,20 +1699,20 @@ msgstr "svazek neprovádí vysouvání"
msgid "Can't find application" msgid "Can't find application"
msgstr "Nelze nalézt aplikaci" msgstr "Nelze nalézt aplikaci"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Chyba při spouštění aplikace: %s" msgstr "Chyba při spouštění aplikace: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI nejsou podporovány" msgstr "URI nejsou podporovány"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "změny asociací nepodporovány na Win32" msgstr "změny asociací nepodporovány na Win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Vytváření asociací nepodporováno na Win32" msgstr "Vytváření asociací nepodporováno na Win32"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2006-06-29 19:38+0100\n" "PO-Revision-Date: 2006-06-29 19:38+0100\n"
"Last-Translator: Rhys Jones <rhys@sucs.org>\n" "Last-Translator: Rhys Jones <rhys@sucs.org>\n"
"Language-Team: Welsh <gnome-cy@pengwyn.linux.org.uk>\n" "Language-Team: Welsh <gnome-cy@pengwyn.linux.org.uk>\n"
@ -1166,34 +1166,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1709,21 +1709,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Gwall wrth ramadegu opsiwn %s" msgstr "Gwall wrth ramadegu opsiwn %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Ni chynhelir cysylltion symbolaidd" msgstr "Ni chynhelir cysylltion symbolaidd"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -16,7 +16,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-03-10 21:35+0100\n" "PO-Revision-Date: 2008-03-10 21:35+0100\n"
"Last-Translator: Ask Hjorth Larsen <asklarsen@gmail.com>\n" "Last-Translator: Ask Hjorth Larsen <asklarsen@gmail.com>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n" "Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
@ -1179,34 +1179,34 @@ msgstr "%s-type"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Uventet tidlig strømafslutning" msgstr "Uventet tidlig strømafslutning"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Unavngivet" msgstr "Unavngivet"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Skrivebordsfil angav intet Exec-felt" msgstr "Skrivebordsfil angav intet Exec-felt"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Kan ikke finde terminal krævet af dette program" msgstr "Kan ikke finde terminal krævet af dette program"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "Kan ikke oprette konfigurationsfolder %s for brugerprogram: %s" msgstr "Kan ikke oprette konfigurationsfolder %s for brugerprogram: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Kan ikke oprette bruger-MIME-konfigurationsfolder %s: %s" msgstr "Kan ikke oprette bruger-MIME-konfigurationsfolder %s: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Kan ikke oprette brugerskrivebords-fil %s" msgstr "Kan ikke oprette brugerskrivebords-fil %s"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Tilpasset definition for %s" msgstr "Tilpasset definition for %s"
@ -1723,20 +1723,20 @@ msgstr "drev implementerer ikke eject"
msgid "Can't find application" msgid "Can't find application"
msgstr "Kan ikke finde program" msgstr "Kan ikke finde program"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Fejl ved opstart af program: %s" msgstr "Fejl ved opstart af program: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI'er understøttes ikke" msgstr "URI'er understøttes ikke"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "associationsændring understøttes ikke af win32" msgstr "associationsændring understøttes ikke af win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Associationsoprettelse understøttes ikke i win32" msgstr "Associationsoprettelse understøttes ikke i win32"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib HEAD\n" "Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-28 06:53+0200\n" "PO-Revision-Date: 2008-08-28 06:53+0200\n"
"Last-Translator: Hendrik Richter <hendrikr@gnome.org>\n" "Last-Translator: Hendrik Richter <hendrikr@gnome.org>\n"
"Language-Team: German <gnome-de@gnome.org>\n" "Language-Team: German <gnome-de@gnome.org>\n"
@ -1206,37 +1206,37 @@ msgstr "%s-Typ"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Unerwartet frühes Datenstromende" msgstr "Unerwartet frühes Datenstromende"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Unbenannt" msgstr "Unbenannt"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Desktop-Datei hat kein Exec-Feld angegeben" msgstr "Desktop-Datei hat kein Exec-Feld angegeben"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Für die Anwendung benötigtes Terminal konnte nicht gefunden werden" msgstr "Für die Anwendung benötigtes Terminal konnte nicht gefunden werden"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
"Konfigurationsordner %s für Benutzeranwendungen konnte nicht erstellt " "Konfigurationsordner %s für Benutzeranwendungen konnte nicht erstellt "
"werden: %s" "werden: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
"MIME-Konfigurationsordner %s des Benutzers konnte nicht erstellt werden: %s" "MIME-Konfigurationsordner %s des Benutzers konnte nicht erstellt werden: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Benutzer-Desktop-Datei %s kann nicht erstellt werden" msgstr "Benutzer-Desktop-Datei %s kann nicht erstellt werden"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Benutzerdefinition für %s" msgstr "Benutzerdefinition für %s"
@ -1750,20 +1750,20 @@ msgstr "Datenträger unterstützt Auswerfen nicht"
msgid "Can't find application" msgid "Can't find application"
msgstr "Anwendung kann nicht gefunden werden" msgstr "Anwendung kann nicht gefunden werden"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Fehler beim Starten der Anwendung: %s" msgstr "Fehler beim Starten der Anwendung: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URIs nicht unterstützt" msgstr "URIs nicht unterstützt"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "Änderungen von Assoziationen unter win32 nicht unterstützt" msgstr "Änderungen von Assoziationen unter win32 nicht unterstützt"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Erstellen von Assoziationen unter win32 nicht unterstützt" msgstr "Erstellen von Assoziationen unter win32 nicht unterstützt"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD.dz\n" "Project-Id-Version: glib.HEAD.dz\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2006-08-09 10:23+0530\n" "PO-Revision-Date: 2006-08-09 10:23+0530\n"
"Last-Translator: Mindu Dorji\n" "Last-Translator: Mindu Dorji\n"
"Language-Team: DZONGKHA <pgeyleg@dit.gov.bt>\n" "Language-Team: DZONGKHA <pgeyleg@dit.gov.bt>\n"
@ -1164,34 +1164,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1707,21 +1707,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "གདམ་ཁ་%s མིང་དཔྱད་འབད་ནི་ལུ་འཛོལ་བ།" msgstr "གདམ་ཁ་%s མིང་དཔྱད་འབད་ནི་ལུ་འཛོལ་བ།"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "བརྡ་མཚོན་འགྲེལ་ལམ་ལུ་ རྒྱབ་སྐྱོར་མིན་འདུག" msgstr "བརྡ་མཚོན་འགྲེལ་ལམ་ལུ་ རྒྱབ་སྐྱོར་མིན་འདུག"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: el\n" "Project-Id-Version: el\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-03-18 03:34+0200\n" "PO-Revision-Date: 2008-03-18 03:34+0200\n"
"Last-Translator: Giannis Katsampirhs <giannis1_86@hotmail.com>\n" "Last-Translator: Giannis Katsampirhs <giannis1_86@hotmail.com>\n"
"Language-Team: Greek <team@gnome.gr>\n" "Language-Team: Greek <team@gnome.gr>\n"
@ -1219,34 +1219,34 @@ msgstr "τύπος %s"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Ανώνυμο" msgstr "Ανώνυμο"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1791,20 +1791,20 @@ msgid "Can't find application"
msgstr "Αδυναμία εύρεσης εφαρμογής" msgstr "Αδυναμία εύρεσης εφαρμογής"
# gconf/gconftool.c:1181 # gconf/gconftool.c:1181
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Σφάλμα εκκίνησης εφαρμογής: %s" msgstr "Σφάλμα εκκίνησης εφαρμογής: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URIs δεν υποστηρίζονται" msgstr "URIs δεν υποστηρίζονται"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Η δημιουργία συσχέτισης δεν υποστηρίζεται σε win32" msgstr "Η δημιουργία συσχέτισης δεν υποστηρίζεται σε win32"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2005-08-27 16:20-0400\n" "PO-Revision-Date: 2005-08-27 16:20-0400\n"
"Last-Translator: Adam Weinberger <adamw@gnome.org>\n" "Last-Translator: Adam Weinberger <adamw@gnome.org>\n"
"Language-Team: Canadian English <adamw@gnome.org>\n" "Language-Team: Canadian English <adamw@gnome.org>\n"
@ -1150,34 +1150,34 @@ msgstr "%s type"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Unexpected early end-of-stream" msgstr "Unexpected early end-of-stream"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Unnamed" msgstr "Unnamed"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Desktop file didn't specify Exec field" msgstr "Desktop file didn't specify Exec field"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Unable to find terminal required for application" msgstr "Unable to find terminal required for application"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "Can't create user application configuration folder %s: %s" msgstr "Can't create user application configuration folder %s: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Can't create user MIME configuration folder %s: %s" msgstr "Can't create user MIME configuration folder %s: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Can't create user desktop file %s" msgstr "Can't create user desktop file %s"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Custom definition for %s" msgstr "Custom definition for %s"
@ -1689,20 +1689,20 @@ msgstr "volume doesn't implement eject"
msgid "Can't find application" msgid "Can't find application"
msgstr "Can't find application" msgstr "Can't find application"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Error launching application: %s" msgstr "Error launching application: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URIs not supported" msgstr "URIs not supported"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "association changes not supported on win32" msgstr "association changes not supported on win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Association creation not supported on win32" msgstr "Association creation not supported on win32"

File diff suppressed because it is too large Load Diff

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.3.0\n" "Project-Id-Version: glib 2.3.0\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2003-07-01 15:10-0500\n" "PO-Revision-Date: 2003-07-01 15:10-0500\n"
"Last-Translator: Charles Voelger <cvoelger@dweasel.com>\n" "Last-Translator: Charles Voelger <cvoelger@dweasel.com>\n"
"Language-Team: Esperanto <LL@li.org>\n" "Language-Team: Esperanto <LL@li.org>\n"
@ -1152,34 +1152,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1691,20 +1691,20 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Eraro dum konverto: %s" msgstr "Eraro dum konverto: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD\n" "Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-10 14:05+0200\n" "PO-Revision-Date: 2008-08-10 14:05+0200\n"
"Last-Translator: Jorge González <jorgegonz@svn.gnome.org>\n" "Last-Translator: Jorge González <jorgegonz@svn.gnome.org>\n"
"Language-Team: Español <gnome-es-list@gnome.org>\n" "Language-Team: Español <gnome-es-list@gnome.org>\n"
@ -1193,36 +1193,36 @@ msgstr "tipo %s"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Final de flujo inesperadamente prematuro" msgstr "Final de flujo inesperadamente prematuro"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Sin nombre" msgstr "Sin nombre"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "El archivo de escritorio no especificó el campo Exec" msgstr "El archivo de escritorio no especificó el campo Exec"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Imposible encontrar el terminal requerido por la aplicación" msgstr "Imposible encontrar el terminal requerido por la aplicación"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
"No se puede crear la carpeta de configuración de la aplicación %s del " "No se puede crear la carpeta de configuración de la aplicación %s del "
"usuario: %s" "usuario: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "No se puede crear la carpeta de configuración MIME %s del usuario: %s" msgstr "No se puede crear la carpeta de configuración MIME %s del usuario: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "No se puede crear el archivo de escritorio %s del usuario" msgstr "No se puede crear el archivo de escritorio %s del usuario"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Definición personalizada para %s" msgstr "Definición personalizada para %s"
@ -1740,20 +1740,20 @@ msgstr "el volumen no implementa la expulsión"
msgid "Can't find application" msgid "Can't find application"
msgstr "No se puede encontrar la aplicación" msgstr "No se puede encontrar la aplicación"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Error al analizar la aplicación: %s" msgstr "Error al analizar la aplicación: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "No se soportan URI" msgstr "No se soportan URI"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "los cambios de asociación no están soportados en win32" msgstr "los cambios de asociación no están soportados en win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "La creación de asociación no está soportada en win32" msgstr "La creación de asociación no está soportada en win32"

View File

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: GLib HEAD\n" "Project-Id-Version: GLib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-23 14:50+0300\n" "PO-Revision-Date: 2008-08-23 14:50+0300\n"
"Last-Translator: Ivar Smolin <okul@linux.ee>\n" "Last-Translator: Ivar Smolin <okul@linux.ee>\n"
"Language-Team: Estonian <gnome-et@linux.ee>\n" "Language-Team: Estonian <gnome-et@linux.ee>\n"
@ -1155,35 +1155,35 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Ootamatult varajane voolõpp" msgstr "Ootamatult varajane voolõpp"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Nimeta" msgstr "Nimeta"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Töölauafail ei määra Exec-välja" msgstr "Töölauafail ei määra Exec-välja"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
"Rakenduse käivitamiseks vajalikku terminalprogrammi pole võimalik leida" "Rakenduse käivitamiseks vajalikku terminalprogrammi pole võimalik leida"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "Kasutaja rakenduse seadistustekataloogi %s pole võimalik luua: %s" msgstr "Kasutaja rakenduse seadistustekataloogi %s pole võimalik luua: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Kasutaja MIME-seadistustekataloogi %s pole võimalik luua: %s" msgstr "Kasutaja MIME-seadistustekataloogi %s pole võimalik luua: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Kasutaja töölauafaili %s pole võimalik luua" msgstr "Kasutaja töölauafaili %s pole võimalik luua"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1690,20 +1690,20 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "Rakendust pole võimalik leida" msgstr "Rakendust pole võimalik leida"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Viga rakenduse käivitamisel: %s" msgstr "Viga rakenduse käivitamisel: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI-d ei ole toetatud" msgstr "URI-d ei ole toetatud"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "seose muutmine pole win32 keskkonnas toetatud" msgstr "seose muutmine pole win32 keskkonnas toetatud"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Seose loomine pole win32 keskkonnas toetatud" msgstr "Seose loomine pole win32 keskkonnas toetatud"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: eu\n" "Project-Id-Version: eu\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-30 12:45+0200\n" "PO-Revision-Date: 2008-08-30 12:45+0200\n"
"Last-Translator: Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>\n" "Last-Translator: Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>\n"
"Language-Team: Basque <itzulpena@euskalgnu.org>\n" "Language-Team: Basque <itzulpena@euskalgnu.org>\n"
@ -1189,35 +1189,35 @@ msgstr "%s mota"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Ustekabeko korronte-amaiera azkarregia" msgstr "Ustekabeko korronte-amaiera azkarregia"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Izenbagea" msgstr "Izenbagea"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Mahaigaineko fitxategiak ez du Exec eremua zehaztu" msgstr "Mahaigaineko fitxategiak ez du Exec eremua zehaztu"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Ezin izan da aplikazioak eskatzen duen terminala aurkitu" msgstr "Ezin izan da aplikazioak eskatzen duen terminala aurkitu"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
"Ezin da erabiltzailearen aplikazioaren %s konfigurazio-karpeta sortu: %s" "Ezin da erabiltzailearen aplikazioaren %s konfigurazio-karpeta sortu: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Ezin da erabiltzailearen MIMEren %s konfigurazio-karpeta sortu: %s" msgstr "Ezin da erabiltzailearen MIMEren %s konfigurazio-karpeta sortu: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Ezin da erabiltzailearen mahaigaineko %s fitxategia sortu" msgstr "Ezin da erabiltzailearen mahaigaineko %s fitxategia sortu"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "%s(r)en definizio pertsonalizatua" msgstr "%s(r)en definizio pertsonalizatua"
@ -1731,20 +1731,20 @@ msgstr "bolumenak ez dauka egoztea inplementatuta"
msgid "Can't find application" msgid "Can't find application"
msgstr "Ezin da aplikazioa aurkitu" msgstr "Ezin da aplikazioa aurkitu"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Errorea aplikazioa abiaraztean: %s" msgstr "Errorea aplikazioa abiaraztean: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URIak ez daude onartuta" msgstr "URIak ez daude onartuta"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "asoziazioaren aldaketak ez dira onartzen win32 sisteman" msgstr "asoziazioaren aldaketak ez dira onartzen win32 sisteman"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Asoziazioa sortzea ez da onartzen win32 sisteman" msgstr "Asoziazioa sortzea ez da onartzen win32 sisteman"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib HEAD\n" "Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2006-09-04 18:36+0330\n" "PO-Revision-Date: 2006-09-04 18:36+0330\n"
"Last-Translator: Roozbeh Pournader <roozbeh@farsiweb.info>\n" "Last-Translator: Roozbeh Pournader <roozbeh@farsiweb.info>\n"
"Language-Team: Persian\n" "Language-Team: Persian\n"
@ -1159,34 +1159,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1702,21 +1702,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "خطا در تجزیهٔ گزینهٔ %s" msgstr "خطا در تجزیهٔ گزینهٔ %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "پیوندهای نمادی پشتیبانی نمی‌شوند" msgstr "پیوندهای نمادی پشتیبانی نمی‌شوند"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-14 15:30+0300\n" "PO-Revision-Date: 2008-08-14 15:30+0300\n"
"Last-Translator: Ilkka Tuohela <hile@iki.fi>\n" "Last-Translator: Ilkka Tuohela <hile@iki.fi>\n"
"Language-Team: Finnish <gnome-fi-laatu@lists.sourceforge.net>\n" "Language-Team: Finnish <gnome-fi-laatu@lists.sourceforge.net>\n"
@ -1174,34 +1174,34 @@ msgstr "%s-tyyppi"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Odottamaton aikainen virran loppu" msgstr "Odottamaton aikainen virran loppu"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Nimeämätön" msgstr "Nimeämätön"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Työpöytätiedosto ei määrittele Exec-kenttää" msgstr "Työpöytätiedosto ei määrittele Exec-kenttää"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Sovelluksen vaatimaa päätettä ei löydy" msgstr "Sovelluksen vaatimaa päätettä ei löydy"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "Käyttäjän sovellusten asetuskansiota %s ei voi luoda: %s" msgstr "Käyttäjän sovellusten asetuskansiota %s ei voi luoda: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Käyttäjän MIME-asetusten kansiota %s ei voi luoda: %s" msgstr "Käyttäjän MIME-asetusten kansiota %s ei voi luoda: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Käyttäjän työpöytätiedostoa %s ei voi luoda" msgstr "Käyttäjän työpöytätiedostoa %s ei voi luoda"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Oma määrittely kohteelle %s" msgstr "Oma määrittely kohteelle %s"
@ -1712,20 +1712,20 @@ msgstr "taltio ei toteuta aseman avausta"
msgid "Can't find application" msgid "Can't find application"
msgstr "Ohjelmaa ei löydy" msgstr "Ohjelmaa ei löydy"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Virhe käynnistettäessä ohjelmaa: %s" msgstr "Virhe käynnistettäessä ohjelmaa: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI:ja ei tueta" msgstr "URI:ja ei tueta"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "assosiaation muutokset eivät ole tuettu win32-alustalla" msgstr "assosiaation muutokset eivät ole tuettu win32-alustalla"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Assosiaation luonti ei ole tuettu win32-alustalla" msgstr "Assosiaation luonti ei ole tuettu win32-alustalla"

View File

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib HEAD\n" "Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-21 13:10+0200\n" "PO-Revision-Date: 2008-08-21 13:10+0200\n"
"Last-Translator: Robert-André Mauchin <zebob.m@pengzone.org>\n" "Last-Translator: Robert-André Mauchin <zebob.m@pengzone.org>\n"
"Language-Team: GNOME French Team <gnomefr@traduc.org>\n" "Language-Team: GNOME French Team <gnomefr@traduc.org>\n"
@ -1222,38 +1222,38 @@ msgstr "Type %s"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Fin précoce de flux inattendue" msgstr "Fin précoce de flux inattendue"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Sans nom" msgstr "Sans nom"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Le fichier Bureau n'a pas indiqué de champ Exec" msgstr "Le fichier Bureau n'a pas indiqué de champ Exec"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Impossible de trouver le terminal requis par l'application" msgstr "Impossible de trouver le terminal requis par l'application"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
"Impossible de créer le dossier de configuration de l'application %s pour " "Impossible de créer le dossier de configuration de l'application %s pour "
"l'utilisateur : %s" "l'utilisateur : %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
"Impossible de créer le dossier de configuration MIME %s pour l'utilisateur : " "Impossible de créer le dossier de configuration MIME %s pour l'utilisateur : "
"%s" "%s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Impossible de créer le fichier bureau %s pour l'utilisateur" msgstr "Impossible de créer le fichier bureau %s pour l'utilisateur"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Définition personnalisée pour %s" msgstr "Définition personnalisée pour %s"
@ -1767,21 +1767,21 @@ msgstr "le volume n'implémente pas l'éjection (« eject »)"
msgid "Can't find application" msgid "Can't find application"
msgstr "Impossible de trouver l'application" msgstr "Impossible de trouver l'application"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Erreur lors du lancement de l'application : %s" msgstr "Erreur lors du lancement de l'application : %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI non pris en charge" msgstr "URI non pris en charge"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
"Les modifications d'association ne sont pas prises en en charge sur win32" "Les modifications d'association ne sont pas prises en en charge sur win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "La création d'association n'est pas prise en charge sur win32" msgstr "La création d'association n'est pas prise en charge sur win32"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib HEAD\n" "Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2007-12-20 21:28-0700\n" "PO-Revision-Date: 2007-12-20 21:28-0700\n"
"Last-Translator: Seán de Búrca <leftmostcat@gmail.com>\n" "Last-Translator: Seán de Búrca <leftmostcat@gmail.com>\n"
"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n" "Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"
@ -1113,34 +1113,34 @@ msgstr "cineál %s"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Gan ainm" msgstr "Gan ainm"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1652,20 +1652,20 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "Ní féidir feidhmchlár a aimsiú" msgstr "Ní féidir feidhmchlár a aimsiú"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Earráid agus feidhmchlár á thosú: %s" msgstr "Earráid agus feidhmchlár á thosú: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Ní thaicaítear leis na URIanna" msgstr "Ní thaicaítear leis na URIanna"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gl\n" "Project-Id-Version: gl\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-08 15:04+0200\n" "PO-Revision-Date: 2008-08-08 15:04+0200\n"
"Last-Translator: Ignacio Casal Quinteiro <icq@svn.gnome.org>\n" "Last-Translator: Ignacio Casal Quinteiro <icq@svn.gnome.org>\n"
"Language-Team: Galego <proxecto@trasno.net>\n" "Language-Team: Galego <proxecto@trasno.net>\n"
@ -1179,34 +1179,34 @@ msgstr "tipo %s"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Final de fluxo inesperadamente prematuro" msgstr "Final de fluxo inesperadamente prematuro"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Sen nome" msgstr "Sen nome"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "O ficheiro de escritorio non especificou o campo Exec" msgstr "O ficheiro de escritorio non especificou o campo Exec"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Imposible encontrar a terminal requerida pola aplicación" msgstr "Imposible encontrar a terminal requerida pola aplicación"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "Non se pode crear o cartafol de configuración da aplicación %s: %s" msgstr "Non se pode crear o cartafol de configuración da aplicación %s: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Non se pode crear o cartafol de configuración MIME %s do usuario: %s" msgstr "Non se pode crear o cartafol de configuración MIME %s do usuario: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Non se pode crear o ficheiro de escritorio %s do usuario" msgstr "Non se pode crear o ficheiro de escritorio %s do usuario"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Definición personalizada para %s" msgstr "Definición personalizada para %s"
@ -1720,20 +1720,20 @@ msgstr "o volume non implementa a expulsión"
msgid "Can't find application" msgid "Can't find application"
msgstr "Non se pode encontrar a aplicación" msgstr "Non se pode encontrar a aplicación"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Erro ao lanzar a aplicación: %s" msgstr "Erro ao lanzar a aplicación: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Non se soportan URIs" msgstr "Non se soportan URIs"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "os cambios de asociación non están soportados en win32" msgstr "os cambios de asociación non están soportados en win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "A creación de asociación non está soportada en win32" msgstr "A creación de asociación non está soportada en win32"

View File

@ -5,7 +5,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD.gu\n" "Project-Id-Version: glib.HEAD.gu\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-03-03 14:10+0530\n" "PO-Revision-Date: 2008-03-03 14:10+0530\n"
"Last-Translator: Ankit Patel <ankit@redhat.com>\n" "Last-Translator: Ankit Patel <ankit@redhat.com>\n"
"Language-Team: Gujarati <fedora-trans-gu@redhat.com>\n" "Language-Team: Gujarati <fedora-trans-gu@redhat.com>\n"
@ -1144,34 +1144,34 @@ msgstr "%s પ્રકાર"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "સ્ટ્રીમનો-અંત અનિચ્છનીય રીતે જલદી" msgstr "સ્ટ્રીમનો-અંત અનિચ્છનીય રીતે જલદી"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "શીર્ષકવીહિન" msgstr "શીર્ષકવીહિન"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "ડેસ્કટોપ ફાઈલે Exec ક્ષેત્ર સ્પષ્ટ કરેલ નથી" msgstr "ડેસ્કટોપ ફાઈલે Exec ક્ષેત્ર સ્પષ્ટ કરેલ નથી"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "કાર્યક્રમ માટે જરૂરી ટર્મિનલ શોધવામાં અસમર્થ" msgstr "કાર્યક્રમ માટે જરૂરી ટર્મિનલ શોધવામાં અસમર્થ"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "વપરાશકર્તા કાર્યક્રમ રૂપરેખાંકન ફોલ્ડર %s બનાવી શક્યા નહિં: %s" msgstr "વપરાશકર્તા કાર્યક્રમ રૂપરેખાંકન ફોલ્ડર %s બનાવી શક્યા નહિં: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "વપરાશકર્તા MIME રૂપરેખાંકન ફોલ્ડર %s બનાવી શક્યા નહિં: %s" msgstr "વપરાશકર્તા MIME રૂપરેખાંકન ફોલ્ડર %s બનાવી શક્યા નહિં: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "વપરાશકર્તા ડેસ્કટોપ ફાઈલ %s બનાવી શકતા નથી" msgstr "વપરાશકર્તા ડેસ્કટોપ ફાઈલ %s બનાવી શકતા નથી"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "%s માટે વૈવિધ્યપૂર્ણ વ્યાખ્યા" msgstr "%s માટે વૈવિધ્યપૂર્ણ વ્યાખ્યા"
@ -1684,20 +1684,20 @@ msgstr "વોલ્યુમ બહાર કાઢોને અમલમાં
msgid "Can't find application" msgid "Can't find application"
msgstr "કાર્યક્રમ શોધી શકતા નથી" msgstr "કાર્યક્રમ શોધી શકતા નથી"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "કાર્યક્રમ લાવતી વખતે ભૂલ: %s" msgstr "કાર્યક્રમ લાવતી વખતે ભૂલ: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URIs આધારભૂત નથી" msgstr "URIs આધારભૂત નથી"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "સંડોવણી ફેરફારો win32 પર આધારભૂત નથી" msgstr "સંડોવણી ફેરફારો win32 પર આધારભૂત નથી"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "સંડોવણી બનાવટ win32 પર આધારભૂત નથી" msgstr "સંડોવણી બનાવટ win32 પર આધારભૂત નથી"

View File

@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD.he\n" "Project-Id-Version: glib.HEAD.he\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2006-04-27 18:48+0300\n" "PO-Revision-Date: 2006-04-27 18:48+0300\n"
"Last-Translator: Yair Hershkovitz <yairhr@gmail.com>\n" "Last-Translator: Yair Hershkovitz <yairhr@gmail.com>\n"
"Language-Team: Hebrew <he@li.org>\n" "Language-Team: Hebrew <he@li.org>\n"
@ -1157,34 +1157,34 @@ msgstr "%s type"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Unexpected early end-of-stream" msgstr "Unexpected early end-of-stream"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Unnamed" msgstr "Unnamed"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Desktop file didn't specify Exec field" msgstr "Desktop file didn't specify Exec field"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Unable to find terminal required for application" msgstr "Unable to find terminal required for application"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "Can't create user application configuration folder %s: %s" msgstr "Can't create user application configuration folder %s: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Can't create user MIME configuration folder %s: %s" msgstr "Can't create user MIME configuration folder %s: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Can't create user desktop file %s" msgstr "Can't create user desktop file %s"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Custom definition for %s" msgstr "Custom definition for %s"
@ -1694,20 +1694,20 @@ msgstr "volume doesn't implement eject"
msgid "Can't find application" msgid "Can't find application"
msgstr "Can't find application" msgstr "Can't find application"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Error launching application: %s" msgstr "Error launching application: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URIs not supported" msgstr "URIs not supported"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "association changes not supported on win32" msgstr "association changes not supported on win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Association creation not supported on win32" msgstr "Association creation not supported on win32"

808
po/hi.po

File diff suppressed because it is too large Load Diff

787
po/hr.po

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD\n" "Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-28 20:30+0200\n" "PO-Revision-Date: 2008-08-28 20:30+0200\n"
"Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n" "Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome@fsf.hu>\n" "Language-Team: Hungarian <gnome@fsf.hu>\n"
@ -1189,35 +1189,35 @@ msgstr "%s típus"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Váratlan korai adatfolyam vége" msgstr "Váratlan korai adatfolyam vége"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Névtelen" msgstr "Névtelen"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "A desktop fájl nem adta meg az Exec mezőt" msgstr "A desktop fájl nem adta meg az Exec mezőt"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Nem található az alkalmazáshoz szükséges terminál" msgstr "Nem található az alkalmazáshoz szükséges terminál"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
"Nem hozható létre a(z) %s felhasználói alkalmazáskonfigurációs mappa: %s" "Nem hozható létre a(z) %s felhasználói alkalmazáskonfigurációs mappa: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Nem hozható létre a(z) %s felhasználói MIME konfigurációs mappa: %s" msgstr "Nem hozható létre a(z) %s felhasználói MIME konfigurációs mappa: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Nem hozható létre a felhasználói desktop fájl (%s)" msgstr "Nem hozható létre a felhasználói desktop fájl (%s)"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "%s egyéni meghatározása" msgstr "%s egyéni meghatározása"
@ -1727,20 +1727,20 @@ msgstr "a kötet nem valósítja meg a kiadást"
msgid "Can't find application" msgid "Can't find application"
msgstr "Nem található az alkalmazás" msgstr "Nem található az alkalmazás"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Hiba az alkalmazás indításakor: %s" msgstr "Hiba az alkalmazás indításakor: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Az URI címek nem támogatottak" msgstr "Az URI címek nem támogatottak"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "a társításmódosítások nem támogatottak win32 rendszeren" msgstr "a társításmódosítások nem támogatottak win32 rendszeren"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "A társítás létrehozása nem támogatott win32 rendszeren" msgstr "A társítás létrehozása nem támogatott win32 rendszeren"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD\n" "Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2006-03-03 16:24+0000\n" "PO-Revision-Date: 2006-03-03 16:24+0000\n"
"Last-Translator: Norayr Chilingaryan <norik@freenet.am>\n" "Last-Translator: Norayr Chilingaryan <norik@freenet.am>\n"
"Language-Team: Armenian <norik@freenet.am>\n" "Language-Team: Armenian <norik@freenet.am>\n"
@ -1115,34 +1115,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1651,21 +1651,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "'%s' պանակը բացելու սխալ՝ %s" msgstr "'%s' պանակը բացելու սխալ՝ %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Սիմվոլիկ հղումները չեն ապահովվում" msgstr "Սիմվոլիկ հղումները չեն ապահովվում"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib HEAD\n" "Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2005-08-30 22:41+0300\n" "PO-Revision-Date: 2005-08-30 22:41+0300\n"
"Last-Translator: Mohammad DAMT <mdamt@bisnisweb.com>\n" "Last-Translator: Mohammad DAMT <mdamt@bisnisweb.com>\n"
"Language-Team: Indonesia <sukarelawan@gnome.linux.or.id>\n" "Language-Team: Indonesia <sukarelawan@gnome.linux.or.id>\n"
@ -1184,34 +1184,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1726,21 +1726,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Error saat melakukan konversi: %s" msgstr "Error saat melakukan konversi: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Link simbolik tidak didukung oleh sistem" msgstr "Link simbolik tidak didukung oleh sistem"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.2\n" "Project-Id-Version: glib 2.2\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2003-08-18 18:05+0000\n" "PO-Revision-Date: 2003-08-18 18:05+0000\n"
"Last-Translator: Richard Allen <ra@ra.is>\n" "Last-Translator: Richard Allen <ra@ra.is>\n"
"Language-Team: is <is@li.org>\n" "Language-Team: is <is@li.org>\n"
@ -1146,34 +1146,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1687,21 +1687,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Villa við umbreytingu: %s" msgstr "Villa við umbreytingu: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Tákntengi eru ekki studd" msgstr "Tákntengi eru ekki studd"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.17.x\n" "Project-Id-Version: glib 2.17.x\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-19 03:11+0200\n" "PO-Revision-Date: 2008-08-19 03:11+0200\n"
"Last-Translator: Luca Ferretti <elle.uca@libero.it>\n" "Last-Translator: Luca Ferretti <elle.uca@libero.it>\n"
"Language-Team: Italian <tp@lists.linux.it>\n" "Language-Team: Italian <tp@lists.linux.it>\n"
@ -1311,21 +1311,21 @@ msgid "Unexpected early end-of-stream"
msgstr "End-of-stream prematuro inatteso" msgstr "End-of-stream prematuro inatteso"
# NdT: nome di applicazione (quando manca) # NdT: nome di applicazione (quando manca)
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Senza nome" msgstr "Senza nome"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Il file .desktop non specifica il campo Exec" msgstr "Il file .desktop non specifica il campo Exec"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Impossibile trovare il terminale richiesto per l'applicazione" msgstr "Impossibile trovare il terminale richiesto per l'applicazione"
# NdT il primo %s è il percorso alla cartella .local/share/application # NdT il primo %s è il percorso alla cartella .local/share/application
# messo tra parentesi per scelta stilistica... # messo tra parentesi per scelta stilistica...
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
@ -1333,17 +1333,17 @@ msgstr ""
# NdT il primo %s è il percorso alla cartella .local/share/application # NdT il primo %s è il percorso alla cartella .local/share/application
# messo tra parentesi per scelta stilistica... # messo tra parentesi per scelta stilistica...
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Impossibile creare la cartella utente di configurazione MIME (%s): %s" msgstr "Impossibile creare la cartella utente di configurazione MIME (%s): %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Impossibile creare il file .desktop utente %s" msgstr "Impossibile creare il file .desktop utente %s"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Definizione personalizzata per %s" msgstr "Definizione personalizzata per %s"
@ -1878,20 +1878,20 @@ msgstr "il volume non implementa l'espulsione"
msgid "Can't find application" msgid "Can't find application"
msgstr "Impossibile trovare l'applicazione" msgstr "Impossibile trovare l'applicazione"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Errore nel lanciare l'applicazione: %s" msgstr "Errore nel lanciare l'applicazione: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI non supportati" msgstr "URI non supportati"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "cambi di associazioni non supportati su win32" msgstr "cambi di associazioni non supportati su win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Creazione di associazioni non supportata su win32" msgstr "Creazione di associazioni non supportata su win32"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib trunk\n" "Project-Id-Version: glib trunk\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-23 12:13+0900\n" "PO-Revision-Date: 2008-08-23 12:13+0900\n"
"Last-Translator: Takeshi AIHANA <takeshi.aihana@gmail.com>\n" "Last-Translator: Takeshi AIHANA <takeshi.aihana@gmail.com>\n"
"Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n" "Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n"
@ -1158,34 +1158,34 @@ msgstr "%s (種類)"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "想定していたよりも早くストリームの最後に到達しました" msgstr "想定していたよりも早くストリームの最後に到達しました"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "名前なし" msgstr "名前なし"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "デスクトップ・ファイルで Exec 項目を指定してませんでした" msgstr "デスクトップ・ファイルで Exec 項目を指定してませんでした"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "アプリケーションで必要な端末が見つかりませんでした" msgstr "アプリケーションで必要な端末が見つかりませんでした"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "ユーザのアプリケーション設定フォルダ %s を生成できません: %s" msgstr "ユーザのアプリケーション設定フォルダ %s を生成できません: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "ユーザの MIME 型設定フォルダ %s を生成できません: %s" msgstr "ユーザの MIME 型設定フォルダ %s を生成できません: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "ユーザのデスクトップ・ファイル %s を生成できません" msgstr "ユーザのデスクトップ・ファイル %s を生成できません"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "%s に対する独自の設定" msgstr "%s に対する独自の設定"
@ -1695,20 +1695,20 @@ msgstr "ボリュームは取り出しを実装していません"
msgid "Can't find application" msgid "Can't find application"
msgstr "アプリケーションが見つかりません" msgstr "アプリケーションが見つかりません"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "アプリケーションを起動する際にエラー: %s" msgstr "アプリケーションを起動する際にエラー: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI はサポートしていません" msgstr "URI はサポートしていません"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "win32 で組み合わせの変更はサポートしていません" msgstr "win32 で組み合わせの変更はサポートしていません"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "win32 で組み合わせの生成はサポートしていません" msgstr "win32 で組み合わせの生成はサポートしていません"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ka\n" "Project-Id-Version: ka\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2007-09-14 12:15+0200\n" "PO-Revision-Date: 2007-09-14 12:15+0200\n"
"Last-Translator: Vladimer Sichinava ვლადიმერ სიჭინავა <vsichi@gnome.org>\n" "Last-Translator: Vladimer Sichinava ვლადიმერ სიჭინავა <vsichi@gnome.org>\n"
"Language-Team: Georgian <http://mail.gnome.org/mailman/listinfo/gnome-ge-" "Language-Team: Georgian <http://mail.gnome.org/mailman/listinfo/gnome-ge-"
@ -1172,34 +1172,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1715,21 +1715,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "შეცდომის გაანალიზების პარამეტრი: %s" msgstr "შეცდომის გაანალიზების პარამეტრი: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "სიმბოლური ბმების გამოყენება არაა რეალიზებული" msgstr "სიმბოლური ბმების გამოყენება არაა რეალიზებული"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD.kn\n" "Project-Id-Version: glib.HEAD.kn\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-02-13 14:34+0530\n" "PO-Revision-Date: 2008-02-13 14:34+0530\n"
"Last-Translator: Shankar Prasad <svenkate@redhat.com>\n" "Last-Translator: Shankar Prasad <svenkate@redhat.com>\n"
"Language-Team: Kannada <en@li.org>\n" "Language-Team: Kannada <en@li.org>\n"
@ -1157,34 +1157,34 @@ msgstr "%s ಬಗೆ"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "ಸ್ಟ್ರೀಮ್‍ನ ಅನಿರೀಕ್ಷಿತ ಕ್ಷಿಪ್ರ ಅಂತ್ಯ" msgstr "ಸ್ಟ್ರೀಮ್‍ನ ಅನಿರೀಕ್ಷಿತ ಕ್ಷಿಪ್ರ ಅಂತ್ಯ"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "ಹೆಸರಿಸಲಾಗದ" msgstr "ಹೆಸರಿಸಲಾಗದ"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "ಗಣಕತೆರೆ ಕಡತವು Exec ಕ್ಷೇತ್ರವನ್ನು ಸೂಚಿಸಿಲ್ಲ" msgstr "ಗಣಕತೆರೆ ಕಡತವು Exec ಕ್ಷೇತ್ರವನ್ನು ಸೂಚಿಸಿಲ್ಲ"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "ಅನ್ವಯಕ್ಕೆ ಅಗತ್ಯವಿರುವ ಟರ್ಮಿನಲ್‍ ಅನ್ನು ಪತ್ತೆಮಾಡಲಾಗಲಿಲ್ಲ" msgstr "ಅನ್ವಯಕ್ಕೆ ಅಗತ್ಯವಿರುವ ಟರ್ಮಿನಲ್‍ ಅನ್ನು ಪತ್ತೆಮಾಡಲಾಗಲಿಲ್ಲ"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "ಬಳಕೆದಾರ ಅನ್ವಯ ಸಂರಚನಾ ಫೋಲ್ಡರ್ %s ಅನ್ನು ರಚಿಸಲಾಗಿಲ್ಲ: %s" msgstr "ಬಳಕೆದಾರ ಅನ್ವಯ ಸಂರಚನಾ ಫೋಲ್ಡರ್ %s ಅನ್ನು ರಚಿಸಲಾಗಿಲ್ಲ: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "ಬಳಕೆದಾರ MIME ಸಂರಚನಾ ಫೋಲ್ಡರ್ %s ಅನ್ನು ರಚಿಸಲಾಗಿಲ್ಲ: %s" msgstr "ಬಳಕೆದಾರ MIME ಸಂರಚನಾ ಫೋಲ್ಡರ್ %s ಅನ್ನು ರಚಿಸಲಾಗಿಲ್ಲ: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "ಬಳಕೆದಾರನ ಡೆಸ್ಕ್‍ಟಾಪ್ ಕಡತ %s ಅನ್ನು ತೆರೆಯಲಾಗಿಲ್ಲ" msgstr "ಬಳಕೆದಾರನ ಡೆಸ್ಕ್‍ಟಾಪ್ ಕಡತ %s ಅನ್ನು ತೆರೆಯಲಾಗಿಲ್ಲ"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "%s ಗಾಗಿನ ಕಸ್ಟಮ್ ವಿವರಣೆ" msgstr "%s ಗಾಗಿನ ಕಸ್ಟಮ್ ವಿವರಣೆ"
@ -1697,20 +1697,20 @@ msgstr "ಪರಿಮಾಣವು ಹೊರ ತಳ್ಳುವುದನ್ನು
msgid "Can't find application" msgid "Can't find application"
msgstr "ಅನ್ವಯವನ್ನು ಪತ್ತೆಮಾಡಲಾಗುವುದಿಲ್ಲ" msgstr "ಅನ್ವಯವನ್ನು ಪತ್ತೆಮಾಡಲಾಗುವುದಿಲ್ಲ"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "ಅನ್ವಯವನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ದೋಷ: %s" msgstr "ಅನ್ವಯವನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ದೋಷ: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI ಗಳು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" msgstr "URI ಗಳು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "win32 ನಲ್ಲಿ ಅಸೋಸಿಯೇಶನ್ ಬದಲಾವಣೆಗಳು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" msgstr "win32 ನಲ್ಲಿ ಅಸೋಸಿಯೇಶನ್ ಬದಲಾವಣೆಗಳು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "win32 ನಲ್ಲಿ ಅಸೋಸಿಯೇಶನ್ ರಚನೆಯು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ" msgstr "win32 ನಲ್ಲಿ ಅಸೋಸಿಯೇಶನ್ ರಚನೆಯು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ"

782
po/ko.po

File diff suppressed because it is too large Load Diff

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.glib-2-8\n" "Project-Id-Version: glib.glib-2-8\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2006-04-20 17:33+0000\n" "PO-Revision-Date: 2006-04-20 17:33+0000\n"
"Last-Translator: Erdal Ronahi <erdal.ronahi@gmail.com>\n" "Last-Translator: Erdal Ronahi <erdal.ronahi@gmail.com>\n"
"Language-Team: Kurdish <gnu-ku-wergerandin@lists.sourceforge.net>\n" "Language-Team: Kurdish <gnu-ku-wergerandin@lists.sourceforge.net>\n"
@ -1113,34 +1113,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1649,20 +1649,20 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: lt\n" "Project-Id-Version: lt\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-24 20:36-0400\n" "PO-Revision-Date: 2008-08-24 20:36-0400\n"
"Last-Translator: Žygimantas Beručka <zygis@gnome.org>\n" "Last-Translator: Žygimantas Beručka <zygis@gnome.org>\n"
"Language-Team: Lithuanian <gnome-lt@lists.akl.lt>\n" "Language-Team: Lithuanian <gnome-lt@lists.akl.lt>\n"
@ -1171,34 +1171,34 @@ msgstr "%s tipas"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Netikėta ankstyva srauto pabaiga" msgstr "Netikėta ankstyva srauto pabaiga"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Nepavadinta" msgstr "Nepavadinta"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Darbalaukio failas nenurodė Exec lauko" msgstr "Darbalaukio failas nenurodė Exec lauko"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Nerastas terminalas, reikalingas programai" msgstr "Nerastas terminalas, reikalingas programai"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "Nepavyko sukurti naudotojo nustatymų aplanko %s: %s" msgstr "Nepavyko sukurti naudotojo nustatymų aplanko %s: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Nepavyko sukurti naudotojo MIME nustatymų aplanko %s: %s" msgstr "Nepavyko sukurti naudotojo MIME nustatymų aplanko %s: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Nepavyko sukurti naudotojo darbalaukio failo %s" msgstr "Nepavyko sukurti naudotojo darbalaukio failo %s"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Specialus apibrėžimas %s" msgstr "Specialus apibrėžimas %s"
@ -1708,20 +1708,20 @@ msgstr "skirsnis nerealizuoja išstūmimo"
msgid "Can't find application" msgid "Can't find application"
msgstr "Nepavyko rasti programos" msgstr "Nepavyko rasti programos"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Klaida paleidžiant programą: %s" msgstr "Klaida paleidžiant programą: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI nepalaikomi" msgstr "URI nepalaikomi"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "saitų keitimai win32 sistemose nepalaikomi" msgstr "saitų keitimai win32 sistemose nepalaikomi"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Saitų kūrimas win32 sistemose nepalaikomas" msgstr "Saitų kūrimas win32 sistemose nepalaikomas"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2002-12-19 01:04+0200\n" "PO-Revision-Date: 2002-12-19 01:04+0200\n"
"Last-Translator: Artis Trops <hornet@navigator.lv>\n" "Last-Translator: Artis Trops <hornet@navigator.lv>\n"
"Language-Team: Latvian <ll10nt@os.lv>\n" "Language-Team: Latvian <ll10nt@os.lv>\n"
@ -1155,34 +1155,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1694,20 +1694,20 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Kļūda konversējot: %s" msgstr "Kļūda konversējot: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gedit.HEAD\n" "Project-Id-Version: gedit.HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-01-25 13:49+0530\n" "PO-Revision-Date: 2008-01-25 13:49+0530\n"
"Last-Translator: Sangeeta Kumari\n" "Last-Translator: Sangeeta Kumari\n"
"Language-Team: <en@li.org>\n" "Language-Team: <en@li.org>\n"
@ -1140,34 +1140,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "बेनाम" msgstr "बेनाम"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1674,20 +1674,20 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: GLIB VERSION\n" "Project-Id-Version: GLIB VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2007-03-03 19:00+0300\n" "PO-Revision-Date: 2007-03-03 19:00+0300\n"
"Last-Translator: Fanomezana Rajaonarisoa <fano@isvtec.com>\n" "Last-Translator: Fanomezana Rajaonarisoa <fano@isvtec.com>\n"
"Language-Team: MALAGASY <i18n-malagasy-gnome@gna.org>\n" "Language-Team: MALAGASY <i18n-malagasy-gnome@gna.org>\n"
@ -1186,34 +1186,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1730,21 +1730,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Nisy olana teo am-pizarazarana ny safidy %s" msgstr "Nisy olana teo am-pizarazarana ny safidy %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Tsy raisina an-tànana ny rohy misolotena" msgstr "Tsy raisina an-tànana ny rohy misolotena"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD.mk\n" "Project-Id-Version: glib.HEAD.mk\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-02-04 04:11+0100\n" "PO-Revision-Date: 2008-02-04 04:11+0100\n"
"Last-Translator: Jovan Naumovski <jovan@lugola.net>\n" "Last-Translator: Jovan Naumovski <jovan@lugola.net>\n"
"Language-Team: Macedonian <mkde-l10n@lists.sourceforge.net>\n" "Language-Team: Macedonian <mkde-l10n@lists.sourceforge.net>\n"
@ -1174,35 +1174,35 @@ msgstr "%s тип"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Неочекувано прерано завршување на стрим" msgstr "Неочекувано прерано завршување на стрим"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Неименувано" msgstr "Неименувано"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Desktop датотеката не одреди Exec поле" msgstr "Desktop датотеката не одреди Exec поле"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "не успеав да најдам терминал потребен за апликација" msgstr "не успеав да најдам терминал потребен за апликација"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
"Не можам да креирам папка за конфигурација на корисничките апликации %s: %s" "Не можам да креирам папка за конфигурација на корисничките апликации %s: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Не можам да креирам папка за MIME конфигурации %s: %s" msgstr "Не можам да креирам папка за MIME конфигурации %s: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Не можам да креирам корисничка desktop датотека %s" msgstr "Не можам да креирам корисничка desktop датотека %s"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Сопствена дефиниција на %s" msgstr "Сопствена дефиниција на %s"
@ -1717,20 +1717,20 @@ msgstr "просторот нема имплементирано вадење"
msgid "Can't find application" msgid "Can't find application"
msgstr "Не можам да ја најдам апликацијата" msgstr "Не можам да ја најдам апликацијата"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Грешка во пуштањето на апликацијата: %s" msgstr "Грешка во пуштањето на апликацијата: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI-те не се поддржани" msgstr "URI-те не се поддржани"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "промените на асоцијации не се поддржани на win32" msgstr "промените на асоцијации не се поддржани на win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Креирањето на асоцијација не е поддржано на win32" msgstr "Креирањето на асоцијација не е поддржано на win32"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD.ml\n" "Project-Id-Version: glib.HEAD.ml\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-03-03 17:37+0530\n" "PO-Revision-Date: 2008-03-03 17:37+0530\n"
"Last-Translator: Ani Peter <apeter@redhat.com>\n" "Last-Translator: Ani Peter <apeter@redhat.com>\n"
"Language-Team: Malayalam <smc-discuss@googlegroups.com>\n" "Language-Team: Malayalam <smc-discuss@googlegroups.com>\n"
@ -1149,34 +1149,34 @@ msgstr "%s തരത്തിലുള്ള"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "പേരിടാത്ത" msgstr "പേരിടാത്ത"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "ഉപയോക്താവിനുള്ള MIME ക്രമികരണ ഫയല്‍ %s ഉണ്ടാക്കുവാന്‍ സാധ്യമായില്ല: %s" msgstr "ഉപയോക്താവിനുള്ള MIME ക്രമികരണ ഫയല്‍ %s ഉണ്ടാക്കുവാന്‍ സാധ്യമായില്ല: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "ഉപയോക്താവിനുള്ള ഡസ്ക്ടോപ്പ് ഫയല്‍ %s ഉണ്ടാക്കുവാന്‍ സാധ്യമായില്ല" msgstr "ഉപയോക്താവിനുള്ള ഡസ്ക്ടോപ്പ് ഫയല്‍ %s ഉണ്ടാക്കുവാന്‍ സാധ്യമായില്ല"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1687,20 +1687,20 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "പ്രയോഗം ലഭ്യമാക്കുവാന്‍ സാധ്യമായില്ല" msgstr "പ്രയോഗം ലഭ്യമാക്കുവാന്‍ സാധ്യമായില്ല"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "പ്രയോഗം ലഭ്യമാക്കുന്നതില്‍ പിശക്: %s" msgstr "പ്രയോഗം ലഭ്യമാക്കുന്നതില്‍ പിശക്: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI-കള്‍ക്കുള്ള പിന്തുണ ലഭ്യമല്ല" msgstr "URI-കള്‍ക്കുള്ള പിന്തുണ ലഭ്യമല്ല"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD\n" "Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2005-05-30 01:07-0800\n" "PO-Revision-Date: 2005-05-30 01:07-0800\n"
"Last-Translator: Бадрал <badral@openmn.org>\n" "Last-Translator: Бадрал <badral@openmn.org>\n"
"Language-Team: Mongolian <openmn-translation@lists.sf.net>\n" "Language-Team: Mongolian <openmn-translation@lists.sf.net>\n"
@ -1182,34 +1182,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1724,21 +1724,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Хөрвүүлж байхад алдаа: %s" msgstr "Хөрвүүлж байхад алдаа: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Символик холбоос дэмжигдээгүй" msgstr "Символик холбоос дэмжигдээгүй"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: mr\n" "Project-Id-Version: mr\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-13 19:46+0530\n" "PO-Revision-Date: 2008-08-13 19:46+0530\n"
"Last-Translator: Sandeep Shedmake <sandeep.shedmake@gmail.com>\n" "Last-Translator: Sandeep Shedmake <sandeep.shedmake@gmail.com>\n"
"Language-Team: marathi\n" "Language-Team: marathi\n"
@ -1135,34 +1135,34 @@ msgstr "%s प्रकार"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "अपरिचीत पूर्वरत end-of-stream" msgstr "अपरिचीत पूर्वरत end-of-stream"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "अनामीक" msgstr "अनामीक"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "डेस्कटॉप फाइल मध्ये Exec नोंदणी निश्चित नाही" msgstr "डेस्कटॉप फाइल मध्ये Exec नोंदणी निश्चित नाही"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "अनुप्रयोगकरीता आवश्यक टर्मिनल आढळले नाही" msgstr "अनुप्रयोगकरीता आवश्यक टर्मिनल आढळले नाही"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "वापरकर्ता अनुप्रयोग संयोजन संचयीका %s बनवू शकले नाही: %s" msgstr "वापरकर्ता अनुप्रयोग संयोजन संचयीका %s बनवू शकले नाही: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "वापरकर्ता MIME संयोजन संचयीका %s बनवू शकले नाही: %s" msgstr "वापरकर्ता MIME संयोजन संचयीका %s बनवू शकले नाही: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "वापरकर्ता डेस्कटॉप फाइल %s बनवू शकत नाही" msgstr "वापरकर्ता डेस्कटॉप फाइल %s बनवू शकत नाही"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "%s करीता इच्छिक व्याख्या" msgstr "%s करीता इच्छिक व्याख्या"
@ -1671,20 +1671,20 @@ msgstr "खंड बाहेर कडा कार्यन्वीत ह
msgid "Can't find application" msgid "Can't find application"
msgstr "अनुप्रयोग आढळले नाही" msgstr "अनुप्रयोग आढळले नाही"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "अनुप्रयोग प्रक्षेपीत करतेवेळी त्रूटी: %s" msgstr "अनुप्रयोग प्रक्षेपीत करतेवेळी त्रूटी: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI समर्थित नाही" msgstr "URI समर्थित नाही"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "संबंधीत बदल win32 वर समर्थित नाही" msgstr "संबंधीत बदल win32 वर समर्थित नाही"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "win32 वर ग निर्माण समर्थित नाही" msgstr "win32 वर ग निर्माण समर्थित नाही"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib HEAD\n" "Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2004-02-03 02:11+0730\n" "PO-Revision-Date: 2004-02-03 02:11+0730\n"
"Last-Translator: Hasbullah Bin Pit <sebol@my-penguin.org>\n" "Last-Translator: Hasbullah Bin Pit <sebol@my-penguin.org>\n"
"Language-Team: Projek Gabai <gabai-penyumbang@lists.sourceforge.org>\n" "Language-Team: Projek Gabai <gabai-penyumbang@lists.sourceforge.org>\n"
@ -1153,34 +1153,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1694,21 +1694,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Ralat semasa penukaran: %s" msgstr "Ralat semasa penukaran: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Pautan simbolik tidak disokong" msgstr "Pautan simbolik tidak disokong"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.13.x\n" "Project-Id-Version: glib 2.13.x\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-15 13:01+0200\n" "PO-Revision-Date: 2008-08-15 13:01+0200\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n" "Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian bokmal <i18n-nb@lister.ping.uio.no>\n" "Language-Team: Norwegian bokmal <i18n-nb@lister.ping.uio.no>\n"
@ -1154,34 +1154,34 @@ msgstr "type %s"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Uventet tidlig slutt på strøm" msgstr "Uventet tidlig slutt på strøm"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Uten navn" msgstr "Uten navn"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Desktop-filen hadde ingen verdi i Exec-feltet" msgstr "Desktop-filen hadde ingen verdi i Exec-feltet"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Kan ikke finne terminalen som kreves for programmet" msgstr "Kan ikke finne terminalen som kreves for programmet"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "Kan ikke opprette konfigurasjonsmappe %s for brukers program: %s" msgstr "Kan ikke opprette konfigurasjonsmappe %s for brukers program: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Kan ikke opprette brukers konfigurasjonsmappe %s for MIME: %s" msgstr "Kan ikke opprette brukers konfigurasjonsmappe %s for MIME: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Kan ikke opprette brukers desktop-fil %s" msgstr "Kan ikke opprette brukers desktop-fil %s"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Egendefinert definisjon for %s" msgstr "Egendefinert definisjon for %s"
@ -1688,20 +1688,20 @@ msgstr "volumet implementerer ikke utløsing"
msgid "Can't find application" msgid "Can't find application"
msgstr "Kan ikke finne program" msgstr "Kan ikke finne program"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Feil ved oppstart av program: %s" msgstr "Feil ved oppstart av program: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URIer er ikke støttet" msgstr "URIer er ikke støttet"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "endringer i assosiasjon er ikke støttet på win32" msgstr "endringer i assosiasjon er ikke støttet på win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Oppretting av assosiasjon er ikke støttet på win32" msgstr "Oppretting av assosiasjon er ikke støttet på win32"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.glib-2-10.ne\n" "Project-Id-Version: glib.glib-2-10.ne\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2006-04-27 00:00+0545\n" "PO-Revision-Date: 2006-04-27 00:00+0545\n"
"Last-Translator: Shyam Krishna Bal <shyamkrishna_bal@yahoo.com>\n" "Last-Translator: Shyam Krishna Bal <shyamkrishna_bal@yahoo.com>\n"
"Language-Team: Nepali <info@mpp.org.np>\n" "Language-Team: Nepali <info@mpp.org.np>\n"
@ -1157,34 +1157,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1699,21 +1699,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "पद वर्णन विकल्पमा त्रुटि %s" msgstr "पद वर्णन विकल्पमा त्रुटि %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "सांकेतिक सम्बन्ध समर्थन गरिएन" msgstr "सांकेतिक सम्बन्ध समर्थन गरिएन"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-09-02 02:13+0200\n" "PO-Revision-Date: 2008-09-02 02:13+0200\n"
"Last-Translator: Tino Meinen <a.t.meinen@chello.nl>\n" "Last-Translator: Tino Meinen <a.t.meinen@chello.nl>\n"
"Language-Team: Dutch <vertaling@vrijschrift.org>\n" "Language-Team: Dutch <vertaling@vrijschrift.org>\n"
@ -1221,35 +1221,35 @@ msgid "Unexpected early end-of-stream"
msgstr "Voortijdig einde aan gegevensstroom" msgstr "Voortijdig einde aan gegevensstroom"
# naamloos/zonder naam/onbenoemd # naamloos/zonder naam/onbenoemd
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Zonder naam" msgstr "Zonder naam"
# bureaubladbestand/desktopbestand # bureaubladbestand/desktopbestand
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Desktopbestand bevat geen Exec-veld" msgstr "Desktopbestand bevat geen Exec-veld"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Kan geen terminalvenster vinden voor het uitvoeren van het programma" msgstr "Kan geen terminalvenster vinden voor het uitvoeren van het programma"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "Kan persoonlijke programmaconfiguratiemap %s niet aanmaken: %s" msgstr "Kan persoonlijke programmaconfiguratiemap %s niet aanmaken: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Kan persoonlijke MIME-configuratiemap %s niet aanmaken: %s" msgstr "Kan persoonlijke MIME-configuratiemap %s niet aanmaken: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Kan desktopbestand %s niet aanmaken" msgstr "Kan desktopbestand %s niet aanmaken"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Zelfgemaakte definitie voor %s" msgstr "Zelfgemaakte definitie voor %s"
@ -1797,21 +1797,21 @@ msgstr "volumen begrijpt de opdracht uitwerpen niet"
msgid "Can't find application" msgid "Can't find application"
msgstr "Kan het programma niet vinden" msgstr "Kan het programma niet vinden"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Fout bij het opstarten van het programma: %s" msgstr "Fout bij het opstarten van het programma: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI's worden niet ondersteund" msgstr "URI's worden niet ondersteund"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "associatiewijzigingen niet mogelijk op win32" msgstr "associatiewijzigingen niet mogelijk op win32"
# Associeren/associaties aanmaken # Associeren/associaties aanmaken
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Associaties aanmaken niet mogelijk op win32" msgstr "Associaties aanmaken niet mogelijk op win32"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: nn\n" "Project-Id-Version: nn\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-02-24 17:33+0100\n" "PO-Revision-Date: 2008-02-24 17:33+0100\n"
"Last-Translator: Åsmund Skjæveland <aasmunds@ulrik.uio.no>\n" "Last-Translator: Åsmund Skjæveland <aasmunds@ulrik.uio.no>\n"
"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n" "Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"
@ -1155,34 +1155,34 @@ msgstr "%s-type"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Uventa tidleg slutt på straumen" msgstr "Uventa tidleg slutt på straumen"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Utan namn" msgstr "Utan namn"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Skrivebordfila oppgav ikkje Exec-felt" msgstr "Skrivebordfila oppgav ikkje Exec-felt"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Klarte ikkje å finna terminalen programmet krev" msgstr "Klarte ikkje å finna terminalen programmet krev"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "Kan ikkje laga programoppsettmappe %s for brukaren: %s" msgstr "Kan ikkje laga programoppsettmappe %s for brukaren: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Kan ikkje laga MIME-oppsettmappe %s: %s" msgstr "Kan ikkje laga MIME-oppsettmappe %s: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Kan ikkje laga skrivebordfila %s for brukaren" msgstr "Kan ikkje laga skrivebordfila %s for brukaren"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Sjølvvald definisjon av %s" msgstr "Sjølvvald definisjon av %s"
@ -1696,20 +1696,20 @@ msgstr "volumet støttar ikkje å løysa ut"
msgid "Can't find application" msgid "Can't find application"
msgstr "Kan ikkje finna programmet" msgstr "Kan ikkje finna programmet"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Feil under oppstart av programmet: %s" msgstr "Feil under oppstart av programmet: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI-ar er ikkje støtta" msgstr "URI-ar er ikkje støtta"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "å endra assosiasjonar er ikkje støtta på win32" msgstr "å endra assosiasjonar er ikkje støtta på win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Å laga assosiasjonar er ikkje støtta på win32" msgstr "Å laga assosiasjonar er ikkje støtta på win32"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: oc\n" "Project-Id-Version: oc\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-04-23 10:42+0200\n" "PO-Revision-Date: 2008-04-23 10:42+0200\n"
"Last-Translator: Yannig Marchegay (Kokoyaya) <yannig@marchegay.org>\n" "Last-Translator: Yannig Marchegay (Kokoyaya) <yannig@marchegay.org>\n"
"Language-Team: Occitan <ubuntu-l10n-oci@lists.ubuntu.com>\n" "Language-Team: Occitan <ubuntu-l10n-oci@lists.ubuntu.com>\n"
@ -1113,34 +1113,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Sens nom" msgstr "Sens nom"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1647,20 +1647,20 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

818
po/or.po

File diff suppressed because it is too large Load Diff

View File

@ -14,7 +14,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD\n" "Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-03-04 23:30+0530\n" "PO-Revision-Date: 2008-03-04 23:30+0530\n"
"Last-Translator: Amanpreet Singh Alam <apreet.alam@gmail.com>\n" "Last-Translator: Amanpreet Singh Alam <apreet.alam@gmail.com>\n"
"Language-Team: Punjabi/Panjabi <punjabi-users@list.sf.net>\n" "Language-Team: Punjabi/Panjabi <punjabi-users@list.sf.net>\n"
@ -1143,34 +1143,34 @@ msgstr "%s ਟਾਈਪ"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "ਬਿਨ-ਨਾਂ" msgstr "ਬਿਨ-ਨਾਂ"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "ਡੈਸਕਟਾਪ ਫਾਇਲ ਨੇ Exec ਫੀਲਡ ਨਹੀਂ ਦਿੱਤਾ ਹੈ" msgstr "ਡੈਸਕਟਾਪ ਫਾਇਲ ਨੇ Exec ਫੀਲਡ ਨਹੀਂ ਦਿੱਤਾ ਹੈ"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "ਐਪਲੀਕੇਸ਼ਨ ਲਈ ਟਰਮੀਨਲ ਲੋੜ ਲੱਭਣ ਲਈ ਅਸਮਰੱਥ ਹੈ" msgstr "ਐਪਲੀਕੇਸ਼ਨ ਲਈ ਟਰਮੀਨਲ ਲੋੜ ਲੱਭਣ ਲਈ ਅਸਮਰੱਥ ਹੈ"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "ਯੂਜ਼ਰ ਐਪਲੀਕੇਸ਼ਨ ਸੰਰਚਨਾ ਫੋਲਡਰ %s ਬਣਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s" msgstr "ਯੂਜ਼ਰ ਐਪਲੀਕੇਸ਼ਨ ਸੰਰਚਨਾ ਫੋਲਡਰ %s ਬਣਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "ਯੂਜ਼ਰ MIME ਸੰਰਚਨਾ ਫੋਲਡਰ %s ਬਣਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s" msgstr "ਯੂਜ਼ਰ MIME ਸੰਰਚਨਾ ਫੋਲਡਰ %s ਬਣਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "ਯੂਜ਼ਰ ਡੈਸਕਟਾਪ ਫਾਇਲ %s ਬਣਾਈ ਨਹੀਂ ਜਾ ਸਕਦੀ" msgstr "ਯੂਜ਼ਰ ਡੈਸਕਟਾਪ ਫਾਇਲ %s ਬਣਾਈ ਨਹੀਂ ਜਾ ਸਕਦੀ"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "%s ਲਈ ਕਸਟਮ ਪਰਿਭਾਸ਼ਾ" msgstr "%s ਲਈ ਕਸਟਮ ਪਰਿਭਾਸ਼ਾ"
@ -1683,20 +1683,20 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "ਐਪਲੀਕੇਸ਼ਨ ਨਹੀਂ ਲੱਭੀ ਜਾ ਸਕਦੀ" msgstr "ਐਪਲੀਕੇਸ਼ਨ ਨਹੀਂ ਲੱਭੀ ਜਾ ਸਕਦੀ"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "ਐਪਲੀਕੇਸ਼ਨ ਲਾਂਚ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ: %s" msgstr "ਐਪਲੀਕੇਸ਼ਨ ਲਾਂਚ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI ਸਹਿਯੋਗੀ ਨਹੀਂ" msgstr "URI ਸਹਿਯੋਗੀ ਨਹੀਂ"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD.pl\n" "Project-Id-Version: glib.HEAD.pl\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2007-09-14 17:12+0200\n" "PO-Revision-Date: 2007-09-14 17:12+0200\n"
"Last-Translator: wadim dziedzic <wdziedzi@aviary.pl>\n" "Last-Translator: wadim dziedzic <wdziedzi@aviary.pl>\n"
"Language-Team: Polish <translators@gnomepl.org>\n" "Language-Team: Polish <translators@gnomepl.org>\n"
@ -1201,34 +1201,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1744,21 +1744,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Błąd podczas przetwarzania opcji %s" msgstr "Błąd podczas przetwarzania opcji %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Dowiązania symboliczne nie są obsługiwane" msgstr "Dowiązania symboliczne nie są obsługiwane"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.head\n" "Project-Id-Version: glib.head\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-07-14 19:07-0800\n" "PO-Revision-Date: 2008-07-14 19:07-0800\n"
"Last-Translator: Zabeeh Khan <zabeehkhan@gmail.com>\n" "Last-Translator: Zabeeh Khan <zabeehkhan@gmail.com>\n"
"Language-Team: Pashto <pathanisation@googlegroups.com>\n" "Language-Team: Pashto <pathanisation@googlegroups.com>\n"
@ -1113,34 +1113,34 @@ msgstr "ډول %s"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "بېنومه" msgstr "بېنومه"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "نه شي جوړولی %s د کارن سرپاڼې دوتنه" msgstr "نه شي جوړولی %s د کارن سرپاڼې دوتنه"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "لپاره دوديز پېژنداوی %s د" msgstr "لپاره دوديز پېژنداوی %s د"
@ -1648,20 +1648,20 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "کاريال نه شي موندلی" msgstr "کاريال نه شي موندلی"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "%s :د کاريال په پېلولو کې تېروتنه" msgstr "%s :د کاريال په پېلولو کې تېروتنه"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "نه منل کيږي URIs" msgstr "نه منل کيږي URIs"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2.24\n" "Project-Id-Version: 2.24\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-09 09:25+0000\n" "PO-Revision-Date: 2008-08-09 09:25+0000\n"
"Last-Translator: Duarte Loreto <happyguy_pt@hotmail.com>\n" "Last-Translator: Duarte Loreto <happyguy_pt@hotmail.com>\n"
"Language-Team: Portuguese <gnome_pt@yahoogroups.com>\n" "Language-Team: Portuguese <gnome_pt@yahoogroups.com>\n"
@ -1174,35 +1174,35 @@ msgstr "Tipo %s"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Final precoce de fluxo inesperado" msgstr "Final precoce de fluxo inesperado"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Sem nome" msgstr "Sem nome"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Ficheiro de área de trabalho não especifica campo Exec" msgstr "Ficheiro de área de trabalho não especifica campo Exec"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Incapaz de encontrar a consola necessária à aplicação" msgstr "Incapaz de encontrar a consola necessária à aplicação"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
"Incapaz de criar a pasta de configurações de utilizador da aplicação %s: %s" "Incapaz de criar a pasta de configurações de utilizador da aplicação %s: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Incapaz de criar a pasta de configurações MIME do utilizador %s: %s" msgstr "Incapaz de criar a pasta de configurações MIME do utilizador %s: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Incapaz de criar ficheiro de área de trabalho de utilizador %s" msgstr "Incapaz de criar ficheiro de área de trabalho de utilizador %s"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Definição personalizada de %s" msgstr "Definição personalizada de %s"
@ -1711,20 +1711,20 @@ msgstr "unidade não implementa a ejecção"
msgid "Can't find application" msgid "Can't find application"
msgstr "Incapaz de encontrar a aplicação" msgstr "Incapaz de encontrar a aplicação"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Erro ao iniciar a aplicação: %s" msgstr "Erro ao iniciar a aplicação: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Não são suportados URIs" msgstr "Não são suportados URIs"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "alterações de associação não são suportadas em win32" msgstr "alterações de associação não são suportadas em win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Criação de associação não é suportada em win32" msgstr "Criação de associação não é suportada em win32"

View File

@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-13 23:23-0300\n" "PO-Revision-Date: 2008-08-13 23:23-0300\n"
"Last-Translator: Henrique P Machado <zehrique@gmail.com>\n" "Last-Translator: Henrique P Machado <zehrique@gmail.com>\n"
"Language-Team: Brazilian Portuguese <gnome-l10n-br@listas.cipsga.org.br>\n" "Language-Team: Brazilian Portuguese <gnome-l10n-br@listas.cipsga.org.br>\n"
@ -1183,35 +1183,35 @@ msgstr "tipo %s"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Fim do fluxo precoce não esperado" msgstr "Fim do fluxo precoce não esperado"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Não nomeado" msgstr "Não nomeado"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "O arquivo da área de trabalho não especifica o campo Exec" msgstr "O arquivo da área de trabalho não especifica o campo Exec"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Não foi possível localizar o terminal requerido para o aplicativo" msgstr "Não foi possível localizar o terminal requerido para o aplicativo"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
"Não foi possível criar pasta de configuração do aplicativo do usuário %s: %s" "Não foi possível criar pasta de configuração do aplicativo do usuário %s: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Não foi possível criar pasta de configuração MIME do usuário %s: %s" msgstr "Não foi possível criar pasta de configuração MIME do usuário %s: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Não foi possível criar arquivo %s da área de trabalho do usuário" msgstr "Não foi possível criar arquivo %s da área de trabalho do usuário"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Definição personalizada para %s" msgstr "Definição personalizada para %s"
@ -1721,20 +1721,20 @@ msgstr "volume não implementa ejetar"
msgid "Can't find application" msgid "Can't find application"
msgstr "Não foi possível localizar o aplicativo" msgstr "Não foi possível localizar o aplicativo"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Erro ao lançar o aplicativo: %s" msgstr "Erro ao lançar o aplicativo: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Não há suporte a URIs" msgstr "Não há suporte a URIs"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "não há suporte às alterações de associação em win32" msgstr "não há suporte às alterações de associação em win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Não há suporte à criação de associação em win32" msgstr "Não há suporte à criação de associação em win32"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-03-06 23:16+0200\n" "PO-Revision-Date: 2008-03-06 23:16+0200\n"
"Last-Translator: Mişu Moldovan <dumol@gnome.ro>\n" "Last-Translator: Mişu Moldovan <dumol@gnome.ro>\n"
"Language-Team: Română <gnomero-list@lists.sourceforge.net>\n" "Language-Team: Română <gnomero-list@lists.sourceforge.net>\n"
@ -1173,35 +1173,35 @@ msgstr "tip %s"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "„End-of-stream” neaşteptat de timpuriu" msgstr "„End-of-stream” neaşteptat de timpuriu"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Nedenumit" msgstr "Nedenumit"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Fişierul desktop nu a specificat un câmp „Exec”" msgstr "Fişierul desktop nu a specificat un câmp „Exec”"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Nu s-a găsit un terminal pentru pornirea aplicaţiei" msgstr "Nu s-a găsit un terminal pentru pornirea aplicaţiei"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
"Nu se poate crea pentru utilizator directorul cu opţiunile aplicaţiei %s: %s" "Nu se poate crea pentru utilizator directorul cu opţiunile aplicaţiei %s: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Nu se poate crea pentru utilizator directorul cu opţiunile MIME %s: %s" msgstr "Nu se poate crea pentru utilizator directorul cu opţiunile MIME %s: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Nu se poate crea fişierul desktop %s" msgstr "Nu se poate crea fişierul desktop %s"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Definiţie personalizată pentru %s" msgstr "Definiţie personalizată pentru %s"
@ -1718,20 +1718,20 @@ msgstr "Volumul nu implementează ejectarea"
msgid "Can't find application" msgid "Can't find application"
msgstr "Nu s-a găsit aplicaţia" msgstr "Nu s-a găsit aplicaţia"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Eroare la lansarea aplicaţiei: %s" msgstr "Eroare la lansarea aplicaţiei: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Legăturile de tip URI nu sunt implementate" msgstr "Legăturile de tip URI nu sunt implementate"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "editarea asocierilor de fişiere nu e implementată în Windows" msgstr "editarea asocierilor de fişiere nu e implementată în Windows"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Crearea asocierilor de fişiere nu este implementată în Windows" msgstr "Crearea asocierilor de fişiere nu este implementată în Windows"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib trunk\n" "Project-Id-Version: glib trunk\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-03-11 20:54+0300\n" "PO-Revision-Date: 2008-03-11 20:54+0300\n"
"Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\n" "Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\n"
"Language-Team: Russian <gnome-cyr@gnome.org>\n" "Language-Team: Russian <gnome-cyr@gnome.org>\n"
@ -1197,34 +1197,34 @@ msgstr "тип %s"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Неожиданный ранний конец потока" msgstr "Неожиданный ранний конец потока"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Без имени" msgstr "Без имени"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "В desktop-файле не указано поле Exec" msgstr "В desktop-файле не указано поле Exec"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Не удалось найти терминал, требуемый для приложения" msgstr "Не удалось найти терминал, требуемый для приложения"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "Не удалось создать пользовательскую папку настроек приложения %s: %s" msgstr "Не удалось создать пользовательскую папку настроек приложения %s: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Не удалось создать пользовательскую папку настроек MIME %s: %s" msgstr "Не удалось создать пользовательскую папку настроек MIME %s: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Не удалось создать пользовательский desktop-файл %s" msgstr "Не удалось создать пользовательский desktop-файл %s"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Особое определение для %s" msgstr "Особое определение для %s"
@ -1739,20 +1739,20 @@ msgstr "том не реализует извлечение"
msgid "Can't find application" msgid "Can't find application"
msgstr "Не удалось найти приложение" msgstr "Не удалось найти приложение"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Произошла ошибка при запуске приложения: %s" msgstr "Произошла ошибка при запуске приложения: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI не поддерживаются" msgstr "URI не поддерживаются"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "смена ассоциаций не поддерживается в Win32" msgstr "смена ассоциаций не поддерживается в Win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Создание ассоциаций не поддерживается в Win32" msgstr "Создание ассоциаций не поддерживается в Win32"

View File

@ -15,7 +15,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.12\n" "Project-Id-Version: glib 2.12\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2005-03-28 19:34-0700\n" "PO-Revision-Date: 2005-03-28 19:34-0700\n"
"Last-Translator: Steve Murphy <murf@e-tools.com>\n" "Last-Translator: Steve Murphy <murf@e-tools.com>\n"
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n" "Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
@ -1177,34 +1177,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1737,21 +1737,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Ihindurangero" msgstr "Ihindurangero"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "amahuza OYA" msgstr "amahuza OYA"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.si\n" "Project-Id-Version: glib.si\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2007-06-20 14:56+0530\n" "PO-Revision-Date: 2007-06-20 14:56+0530\n"
"Last-Translator: Danishka Navin <snavin@redhat.com>\n" "Last-Translator: Danishka Navin <snavin@redhat.com>\n"
"Language-Team: Sinhala <en@li.org>\n" "Language-Team: Sinhala <en@li.org>\n"
@ -1122,34 +1122,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1662,21 +1662,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "පරිවර්තනයේදි දෝෂයකි : %s" msgstr "පරිවර්තනයේදි දෝෂයකි : %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "සංකේතාත්මක පුරුක සහාය දක්නන්නේ නැත" msgstr "සංකේතාත්මක පුරුක සහාය දක්නන්නේ නැත"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-03-15 15:01+0100\n" "PO-Revision-Date: 2008-03-15 15:01+0100\n"
"Last-Translator: Marcel Telka <marcel@telka.sk>\n" "Last-Translator: Marcel Telka <marcel@telka.sk>\n"
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n" "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
@ -1161,34 +1161,34 @@ msgstr "typ %s"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Nepomenované" msgstr "Nepomenované"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Vlastná definícia pre %s" msgstr "Vlastná definícia pre %s"
@ -1701,20 +1701,20 @@ msgstr "zväzok neimplementuje vysunutie"
msgid "Can't find application" msgid "Can't find application"
msgstr "Nepodarilo sa nájsť aplikáciu" msgstr "Nepodarilo sa nájsť aplikáciu"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Chyba pri spúšťaní aplikácie: %s" msgstr "Chyba pri spúšťaní aplikácie: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI nepodporované" msgstr "URI nepodporované"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

1102
po/sl.po

File diff suppressed because it is too large Load Diff

View File

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib HEAD\n" "Project-Id-Version: glib HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-18 10:19+0200\n" "PO-Revision-Date: 2008-08-18 10:19+0200\n"
"Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n" "Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n"
"Language-Team: albanian <gnome-albanian-perkthyesit@lists.sourceforge.net>\n" "Language-Team: albanian <gnome-albanian-perkthyesit@lists.sourceforge.net>\n"
@ -1262,22 +1262,22 @@ msgid "Unexpected early end-of-stream"
msgstr "End-of-stream i parakohshëm papritur" msgstr "End-of-stream i parakohshëm papritur"
# (pofilter) untranslated: checks whether a string has been translated at all # (pofilter) untranslated: checks whether a string has been translated at all
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Paemër" msgstr "Paemër"
# (pofilter) untranslated: checks whether a string has been translated at all # (pofilter) untranslated: checks whether a string has been translated at all
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "File .desktop nuk specifikon fushën Exec" msgstr "File .desktop nuk specifikon fushën Exec"
# (pofilter) untranslated: checks whether a string has been translated at all # (pofilter) untranslated: checks whether a string has been translated at all
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "E pamundur gjetja e terminalit të kërkuar nga aplikativi" msgstr "E pamundur gjetja e terminalit të kërkuar nga aplikativi"
# (pofilter) untranslated: checks whether a string has been translated at all # (pofilter) untranslated: checks whether a string has been translated at all
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
@ -1285,20 +1285,20 @@ msgstr ""
"(%s): %s" "(%s): %s"
# (pofilter) untranslated: checks whether a string has been translated at all # (pofilter) untranslated: checks whether a string has been translated at all
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
"E pamundur gjetja e kartelës së përdoruesit për konfigurimin MIME (%s): %s" "E pamundur gjetja e kartelës së përdoruesit për konfigurimin MIME (%s): %s"
# (pofilter) untranslated: checks whether a string has been translated at all # (pofilter) untranslated: checks whether a string has been translated at all
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "I pamundur krijimi i file .desktop të përdoruesit %s" msgstr "I pamundur krijimi i file .desktop të përdoruesit %s"
# (pofilter) untranslated: checks whether a string has been translated at all # (pofilter) untranslated: checks whether a string has been translated at all
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Përcaktimi i personalizuar për %s" msgstr "Përcaktimi i personalizuar për %s"
@ -1983,23 +1983,23 @@ msgid "Can't find application"
msgstr "E pamundur gjetja e aplikativit" msgstr "E pamundur gjetja e aplikativit"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy. # (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Gabim gjatë nisjes së aplikativit: %s" msgstr "Gabim gjatë nisjes së aplikativit: %s"
# (pofilter) isfuzzy: Check if the unit has been marked fuzzy. # (pofilter) isfuzzy: Check if the unit has been marked fuzzy.
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI nuk suportohen" msgstr "URI nuk suportohen"
# (pofilter) untranslated: checks whether a string has been translated at all # (pofilter) untranslated: checks whether a string has been translated at all
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "ndryshimi i shoqërimeve nuk suportohet në win32" msgstr "ndryshimi i shoqërimeve nuk suportohet në win32"
# (pofilter) untranslated: checks whether a string has been translated at all # (pofilter) untranslated: checks whether a string has been translated at all
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Krijimi i shoqërimeve nuk suportohet në win32" msgstr "Krijimi i shoqërimeve nuk suportohet në win32"

View File

@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2.8\n" "Project-Id-Version: 2.8\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2007-09-06 21:11+0100\n" "PO-Revision-Date: 2007-09-06 21:11+0100\n"
"Last-Translator: Горан Ракић <grakic@devbase.net>\n" "Last-Translator: Горан Ракић <grakic@devbase.net>\n"
"Language-Team: Serbian (sr) <gnom@prevod.org>\n" "Language-Team: Serbian (sr) <gnom@prevod.org>\n"
@ -1168,34 +1168,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1711,21 +1711,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Грешка при рашчлањивању могућности %s" msgstr "Грешка при рашчлањивању могућности %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Симболичке везе нису подржане" msgstr "Симболичке везе нису подржане"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2.4\n" "Project-Id-Version: 2.4\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2004-04-29 01:11+0200\n" "PO-Revision-Date: 2004-04-29 01:11+0200\n"
"Last-Translator: Bojan Suzic <bojans@teol.net>\n" "Last-Translator: Bojan Suzic <bojans@teol.net>\n"
"Language-Team: Serbian (sr) <serbiagnome-lista@nongnu.org>\n" "Language-Team: Serbian (sr) <serbiagnome-lista@nongnu.org>\n"
@ -1171,34 +1171,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1712,21 +1712,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Грешка при претварању: %s" msgstr "Грешка при претварању: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Симболичке везе нису подржане" msgstr "Симболичке везе нису подржане"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2.8\n" "Project-Id-Version: 2.8\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2007-09-06 21:11+0100\n" "PO-Revision-Date: 2007-09-06 21:11+0100\n"
"Last-Translator: Goran Rakić <grakic@devbase.net>\n" "Last-Translator: Goran Rakić <grakic@devbase.net>\n"
"Language-Team: Serbian (sr) <gnom@prevod.org>\n" "Language-Team: Serbian (sr) <gnom@prevod.org>\n"
@ -1169,34 +1169,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1712,21 +1712,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Greška pri raščlanjivanju mogućnosti %s" msgstr "Greška pri raščlanjivanju mogućnosti %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Simboličke veze nisu podržane" msgstr "Simboličke veze nisu podržane"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-25 20:50+0100\n" "PO-Revision-Date: 2008-08-25 20:50+0100\n"
"Last-Translator: Daniel Nylander <po@danielnylander.se>\n" "Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n" "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
@ -1172,34 +1172,34 @@ msgstr "%s-typ"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Oväntat tidig end-of-stream" msgstr "Oväntat tidig end-of-stream"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Namnlös" msgstr "Namnlös"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Skrivbordsfilen angav inget Exec-fält" msgstr "Skrivbordsfilen angav inget Exec-fält"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Kunde inte hitta terminal som krävs för programmet" msgstr "Kunde inte hitta terminal som krävs för programmet"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "Kan inte skapa programkonfigurationsmapp för användare %s: %s" msgstr "Kan inte skapa programkonfigurationsmapp för användare %s: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Kan inte skapa MIME-konfigurationsmapp för användare %s: %s" msgstr "Kan inte skapa MIME-konfigurationsmapp för användare %s: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Kan inte skapa skrivbordsfil för användare %s" msgstr "Kan inte skapa skrivbordsfil för användare %s"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Anpassad definition för %s" msgstr "Anpassad definition för %s"
@ -1709,20 +1709,20 @@ msgstr "volymen har inte implementerat utmatning"
msgid "Can't find application" msgid "Can't find application"
msgstr "Kan inte hitta programmet" msgstr "Kan inte hitta programmet"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Fel vid start av program: %s" msgstr "Fel vid start av program: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI:er stöds inte" msgstr "URI:er stöds inte"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "associeringsändringar stöds inte på win32" msgstr "associeringsändringar stöds inte på win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Associeringsskapanden stöds inte på win32" msgstr "Associeringsskapanden stöds inte på win32"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib.HEAD\n" "Project-Id-Version: glib.HEAD\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2007-08-13 09:47+0530\n" "PO-Revision-Date: 2007-08-13 09:47+0530\n"
"Last-Translator: Dr.T.Vasudevan <agnihot3@gmail.com>\n" "Last-Translator: Dr.T.Vasudevan <agnihot3@gmail.com>\n"
"Language-Team: TAMIL <ubuntu-l10n-tam@lists.ubuntu.com>\n" "Language-Team: TAMIL <ubuntu-l10n-tam@lists.ubuntu.com>\n"
@ -1161,34 +1161,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1704,21 +1704,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "கூறிடும் போது பிழை: %s" msgstr "கூறிடும் போது பிழை: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "என்பதன்-குறுக்கம் இணைப்புகளுக்கு ஆதரவு கிடையாது" msgstr "என்பதன்-குறுக்கம் இணைப்புகளுக்கு ஆதரவு கிடையாது"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

826
po/te.po

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.14.1\n" "Project-Id-Version: glib 2.14.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-23 17:58+0700\n" "PO-Revision-Date: 2008-08-23 17:58+0700\n"
"Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n" "Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n"
"Language-Team: Thai <thai-l10n@googlegroups.com>\n" "Language-Team: Thai <thai-l10n@googlegroups.com>\n"
@ -1127,34 +1127,34 @@ msgstr "ชนิด %s"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "พบจุดจบสตรีมก่อนกำหนด" msgstr "พบจุดจบสตรีมก่อนกำหนด"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "ไม่มีชื่อ" msgstr "ไม่มีชื่อ"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "แฟ้มเดสก์ท็อปไม่ได้ระบุเขตข้อมูล Exec" msgstr "แฟ้มเดสก์ท็อปไม่ได้ระบุเขตข้อมูล Exec"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "หาเทอร์มินัลซึ่งต้องใช้ในการเปิดโปรแกรมไม่พบ" msgstr "หาเทอร์มินัลซึ่งต้องใช้ในการเปิดโปรแกรมไม่พบ"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "ไม่สามารถสร้างโฟลเดอร์ %s สำหรับเก็บค่าตั้งโปรแกรมของผู้ใช้: %s" msgstr "ไม่สามารถสร้างโฟลเดอร์ %s สำหรับเก็บค่าตั้งโปรแกรมของผู้ใช้: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "ไม่สามารถสร้างโฟลเดอร์ %s สำหรับเก็บค่าตั้ง MIME ของผู้ใช้: %s" msgstr "ไม่สามารถสร้างโฟลเดอร์ %s สำหรับเก็บค่าตั้ง MIME ของผู้ใช้: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "ไม่สามารถสร้างแฟ้มเดสก์ท็อป %s สำหรับผู้ใช้" msgstr "ไม่สามารถสร้างแฟ้มเดสก์ท็อป %s สำหรับผู้ใช้"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "ข้อกำหนดกำหนดเองสำหรับ %s" msgstr "ข้อกำหนดกำหนดเองสำหรับ %s"
@ -1663,20 +1663,20 @@ msgstr "โวลุมยังไม่รองรับการดันส
msgid "Can't find application" msgid "Can't find application"
msgstr "หาโปรแกรมไม่พบ" msgstr "หาโปรแกรมไม่พบ"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "เกิดข้อผิดพลาดขณะเรียกโปรแกรม: %s" msgstr "เกิดข้อผิดพลาดขณะเรียกโปรแกรม: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "ไม่รองรับ URI" msgstr "ไม่รองรับ URI"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "ไม่รองรับการเปลี่ยนแปลงการเชื่อมโยงสำหรับ win32" msgstr "ไม่รองรับการเปลี่ยนแปลงการเชื่อมโยงสำหรับ win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "ไม่รองรับการสร้างการเชื่อมโยงสำหรับ win32" msgstr "ไม่รองรับการสร้างการเชื่อมโยงสำหรับ win32"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2005-12-01 17:31+0800\n" "PO-Revision-Date: 2005-12-01 17:31+0800\n"
"Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n" "Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n"
"Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n" "Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n"
@ -1198,34 +1198,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1741,21 +1741,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Error habang nagco-convert: %s" msgstr "Error habang nagco-convert: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Hindi suportado ang mga symbolic link" msgstr "Hindi suportado ang mga symbolic link"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

782
po/tr.po

File diff suppressed because it is too large Load Diff

View File

@ -5,7 +5,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: libgnome\n" "Project-Id-Version: libgnome\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2005-11-09 13:19+0300\n" "PO-Revision-Date: 2005-11-09 13:19+0300\n"
"Last-Translator: Albert Fazlí <tatarish.l10n@gmail.com>\n" "Last-Translator: Albert Fazlí <tatarish.l10n@gmail.com>\n"
"Language-Team: Tatarish <tatarish.l10n@gmail.com>\n" "Language-Team: Tatarish <tatarish.l10n@gmail.com>\n"
@ -1112,34 +1112,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1651,20 +1651,20 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Äyländergändä xata çıqtı: %s" msgstr "Äyländergändä xata çıqtı: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-24 11:56+0300\n" "PO-Revision-Date: 2008-08-24 11:56+0300\n"
"Last-Translator: Maxim Dziumanenko <dziumanenko@gmail.com>\n" "Last-Translator: Maxim Dziumanenko <dziumanenko@gmail.com>\n"
"Language-Team: Ukrainian <uk@li.org>\n" "Language-Team: Ukrainian <uk@li.org>\n"
@ -1178,34 +1178,34 @@ msgstr "тип %s"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Неочікуваний передчасний кінець потоку" msgstr "Неочікуваний передчасний кінець потоку"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Без назви" msgstr "Без назви"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "У Desktop-файлі не визначено поле Exec" msgstr "У Desktop-файлі не визначено поле Exec"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Неможливо знайти термінал, що потрібен програмі" msgstr "Неможливо знайти термінал, що потрібен програмі"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "Не вдається створити теку параметрів програми %s: %s" msgstr "Не вдається створити теку параметрів програми %s: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Не вдається створити теку параметрів MIME %s: %s" msgstr "Не вдається створити теку параметрів MIME %s: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Не вдається створити для користувача desktop-файл %s" msgstr "Не вдається створити для користувача desktop-файл %s"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Власне визначення %s" msgstr "Власне визначення %s"
@ -1720,20 +1720,20 @@ msgstr "том не підтримує операцію витягування
msgid "Can't find application" msgid "Can't find application"
msgstr "Не вдається знайти програму" msgstr "Не вдається знайти програму"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Помилка при запусканні програми: %s" msgstr "Помилка при запусканні програми: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "URI не підтримуються" msgstr "URI не підтримуються"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "Зміни асоціацій розширень не підтримуються на win32" msgstr "Зміни асоціацій розширень не підтримуються на win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "Створення асоціацій розширень не підтримуються на win32" msgstr "Створення асоціацій розширень не підтримуються на win32"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib GNOME TRUNK\n" "Project-Id-Version: glib GNOME TRUNK\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-08-22 11:52+0700\n" "PO-Revision-Date: 2008-08-22 11:52+0700\n"
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n" "Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n" "Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n"
@ -1167,34 +1167,34 @@ msgstr "kiểu %s"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "Kết thúc luồng sớm bất thường" msgstr "Kết thúc luồng sớm bất thường"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "Không có tên" msgstr "Không có tên"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "Tập tin Desktop không ghi rõ trường Exec (thực hiện)" msgstr "Tập tin Desktop không ghi rõ trường Exec (thực hiện)"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "Không tìm thấy thiết bị cuối cần thiết cho ứng dụng" msgstr "Không tìm thấy thiết bị cuối cần thiết cho ứng dụng"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "Không thể tạo thư mục cấu hình ứng dụng người dùng %s: %s" msgstr "Không thể tạo thư mục cấu hình ứng dụng người dùng %s: %s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "Không thể tạo thư mục cấu hình MIME người dùng %s: %s" msgstr "Không thể tạo thư mục cấu hình MIME người dùng %s: %s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "Không thể tạo tập tin desktop %s" msgstr "Không thể tạo tập tin desktop %s"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "Lời định nghĩa riêng cho %s" msgstr "Lời định nghĩa riêng cho %s"
@ -1705,20 +1705,20 @@ msgstr "hàm volume (khối tin) không thực hiện hàm eject (đầy ra)"
msgid "Can't find application" msgid "Can't find application"
msgstr "Không tìm thấy ứng dụng" msgstr "Không tìm thấy ứng dụng"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Gặp lỗi khi khởi chạy ứng dụng: %s" msgstr "Gặp lỗi khi khởi chạy ứng dụng: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Không hỗ trợ địa chỉ URI" msgstr "Không hỗ trợ địa chỉ URI"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "các thay đổi liên quan không được hỗ trợ trên win32" msgstr "các thay đổi liên quan không được hỗ trợ trên win32"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "chức năng tạo sự liên quan không được hỗ trợ trên win32" msgstr "chức năng tạo sự liên quan không được hỗ trợ trên win32"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2004-05-03 14:40+0200\n" "PO-Revision-Date: 2004-05-03 14:40+0200\n"
"Last-Translator: Pablo Saratxaga <pablo@walon.org>\n" "Last-Translator: Pablo Saratxaga <pablo@walon.org>\n"
"Language-Team: Walloon <linux-wa@walon.org>\n" "Language-Team: Walloon <linux-wa@walon.org>\n"
@ -1130,34 +1130,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1668,21 +1668,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Åk n' a nén stî tot cviersant: %s" msgstr "Åk n' a nén stî tot cviersant: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Loyéns simbolikes nén sopoirtés" msgstr "Loyéns simbolikes nén sopoirtés"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib\n" "Project-Id-Version: glib\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2005-02-08 12:31+0200\n" "PO-Revision-Date: 2005-02-08 12:31+0200\n"
"Last-Translator: Canonical Ltd <translations@canonical.com>\n" "Last-Translator: Canonical Ltd <translations@canonical.com>\n"
"Language-Team: Xhosa <xh-translate@ubuntu.com>\n" "Language-Team: Xhosa <xh-translate@ubuntu.com>\n"
@ -1193,34 +1193,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1735,21 +1735,21 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "Impazamo ngelixa lenguqulo: %s" msgstr "Impazamo ngelixa lenguqulo: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
#, fuzzy #, fuzzy
msgid "URIs not supported" msgid "URIs not supported"
msgstr "Ikhonkco elingumfuziselo alixhaswanga" msgstr "Ikhonkco elingumfuziselo alixhaswanga"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

View File

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1.0\n" "Project-Id-Version: 1.0\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2003-03-19\n" "PO-Revision-Date: 2003-03-19\n"
"Last-Translator: Raphael Finkel <raphael@cs.uky.edu>\n" "Last-Translator: Raphael Finkel <raphael@cs.uky.edu>\n"
"Language-Team: Yiddish <raphael@cs.uky.edu>\n" "Language-Team: Yiddish <raphael@cs.uky.edu>\n"
@ -1159,34 +1159,34 @@ msgstr ""
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "" msgstr ""
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "" msgstr ""
@ -1698,20 +1698,20 @@ msgstr ""
msgid "Can't find application" msgid "Can't find application"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, fuzzy, c-format #, fuzzy, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "דורכפֿאַל בשעת פֿאַרװאַנדלונג: %s" msgstr "דורכפֿאַל בשעת פֿאַרװאַנדלונג: %s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "" msgstr ""
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "" msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.17.3\n" "Project-Id-Version: glib 2.17.3\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2008-07-14 16:27+0800\n" "PO-Revision-Date: 2008-07-14 16:27+0800\n"
"Last-Translator: Woodman Tuen <wmtuen@gmail.com>\n" "Last-Translator: Woodman Tuen <wmtuen@gmail.com>\n"
"Language-Team: Chinese (Hong Kong) <community@linuxhall.org>\n" "Language-Team: Chinese (Hong Kong) <community@linuxhall.org>\n"
@ -1125,34 +1125,34 @@ msgstr "%s 類型"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "未預期的串流過早結束" msgstr "未預期的串流過早結束"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "未命名的" msgstr "未命名的"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "桌面(Desktop)檔案未指定 Exec 欄位" msgstr "桌面(Desktop)檔案未指定 Exec 欄位"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "無法找到應用程式要求的終端機" msgstr "無法找到應用程式要求的終端機"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "不能建立使用者應用程式組態資料夾 %s%s" msgstr "不能建立使用者應用程式組態資料夾 %s%s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "不能建立使用者 MIME 組態資料夾 %s%s" msgstr "不能建立使用者 MIME 組態資料夾 %s%s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "不能建立使用者桌面檔案 %s" msgstr "不能建立使用者桌面檔案 %s"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "自選 %s 的定義" msgstr "自選 %s 的定義"
@ -1664,20 +1664,20 @@ msgstr "儲存裝置尚未實作退出(eject)"
msgid "Can't find application" msgid "Can't find application"
msgstr "找不到應用程式" msgstr "找不到應用程式"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "執行應用程式時發生錯誤:%s" msgstr "執行應用程式時發生錯誤:%s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "不支援 URIs" msgstr "不支援 URIs"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "關聯更改在 win32 上不支援" msgstr "關聯更改在 win32 上不支援"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "關聯建立在 win32 上不支援" msgstr "關聯建立在 win32 上不支援"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: glib 2.17.3\n" "Project-Id-Version: glib 2.17.3\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-02 15:48-0400\n" "POT-Creation-Date: 2008-09-17 19:21-0400\n"
"PO-Revision-Date: 2007-02-27 09:08+0800\n" "PO-Revision-Date: 2007-02-27 09:08+0800\n"
"Last-Translator: Woodman Tuen <wmtuen@gmail.com>\n" "Last-Translator: Woodman Tuen <wmtuen@gmail.com>\n"
"Language-Team: Chinese (Taiwan) <community@linuxhall.org>\n" "Language-Team: Chinese (Taiwan) <community@linuxhall.org>\n"
@ -1125,34 +1125,34 @@ msgstr "%s 類型"
msgid "Unexpected early end-of-stream" msgid "Unexpected early end-of-stream"
msgstr "未預期的串流過早結束" msgstr "未預期的串流過早結束"
#: gio/gdesktopappinfo.c:429 gio/gwin32appinfo.c:222 #: gio/gdesktopappinfo.c:435 gio/gwin32appinfo.c:222
msgid "Unnamed" msgid "Unnamed"
msgstr "未命名的" msgstr "未命名的"
#: gio/gdesktopappinfo.c:606 #: gio/gdesktopappinfo.c:612
msgid "Desktop file didn't specify Exec field" msgid "Desktop file didn't specify Exec field"
msgstr "桌面(Desktop)檔案未指定 Exec 欄位" msgstr "桌面(Desktop)檔案未指定 Exec 欄位"
#: gio/gdesktopappinfo.c:900 #: gio/gdesktopappinfo.c:906
msgid "Unable to find terminal required for application" msgid "Unable to find terminal required for application"
msgstr "無法找到應用程式要求的終端機" msgstr "無法找到應用程式要求的終端機"
#: gio/gdesktopappinfo.c:1132 #: gio/gdesktopappinfo.c:1138
#, c-format #, c-format
msgid "Can't create user application configuration folder %s: %s" msgid "Can't create user application configuration folder %s: %s"
msgstr "不能建立使用者應用程式組態資料夾 %s%s" msgstr "不能建立使用者應用程式組態資料夾 %s%s"
#: gio/gdesktopappinfo.c:1136 #: gio/gdesktopappinfo.c:1142
#, c-format #, c-format
msgid "Can't create user MIME configuration folder %s: %s" msgid "Can't create user MIME configuration folder %s: %s"
msgstr "不能建立使用者 MIME 組態資料夾 %s%s" msgstr "不能建立使用者 MIME 組態資料夾 %s%s"
#: gio/gdesktopappinfo.c:1475 #: gio/gdesktopappinfo.c:1481
#, c-format #, c-format
msgid "Can't create user desktop file %s" msgid "Can't create user desktop file %s"
msgstr "不能建立使用者桌面檔案 %s" msgstr "不能建立使用者桌面檔案 %s"
#: gio/gdesktopappinfo.c:1550 #: gio/gdesktopappinfo.c:1556
#, c-format #, c-format
msgid "Custom definition for %s" msgid "Custom definition for %s"
msgstr "自訂 %s 的定義" msgstr "自訂 %s 的定義"
@ -1664,20 +1664,20 @@ msgstr "儲存裝置尚未實作退出(eject)"
msgid "Can't find application" msgid "Can't find application"
msgstr "找不到應用程式" msgstr "找不到應用程式"
#: gio/gwin32appinfo.c:312 #: gio/gwin32appinfo.c:300
#, c-format #, c-format
msgid "Error launching application: %s" msgid "Error launching application: %s"
msgstr "執行應用程式時發生錯誤:%s" msgstr "執行應用程式時發生錯誤:%s"
#: gio/gwin32appinfo.c:349 #: gio/gwin32appinfo.c:336
msgid "URIs not supported" msgid "URIs not supported"
msgstr "不支援 URIs" msgstr "不支援 URIs"
#: gio/gwin32appinfo.c:371 #: gio/gwin32appinfo.c:358
msgid "association changes not supported on win32" msgid "association changes not supported on win32"
msgstr "關聯變更在 win32 上不支援" msgstr "關聯變更在 win32 上不支援"
#: gio/gwin32appinfo.c:383 #: gio/gwin32appinfo.c:370
msgid "Association creation not supported on win32" msgid "Association creation not supported on win32"
msgstr "關聯建立在 win32 上不支援" msgstr "關聯建立在 win32 上不支援"