Quote the file scheme to mark it as untranslatable. String change.

Wed May  5 23:35:44 2004  Matthias Clasen  <maclas@gmx.de>

	* glib/gconvert.c (g_filename_from_uri): Quote the file
	scheme to mark it as untranslatable. String change.
	(#133144, Danilo Segan)
This commit is contained in:
Matthias Clasen 2004-05-06 03:36:48 +00:00 committed by Matthias Clasen
parent 16cc3960d4
commit 5a28aa724b
6 changed files with 71 additions and 1 deletions

View File

@ -1,3 +1,9 @@
Wed May 5 23:35:44 2004 Matthias Clasen <maclas@gmx.de>
* glib/gconvert.c (g_filename_from_uri): Quote the file
scheme to mark it as untranslatable. String change.
(#133144, Danilo Segan)
2004-05-03 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Walloon (wa) to ALL_LINGUAS
@ -12,6 +18,14 @@ Sun May 2 03:51:59 2004 Manish Singh <yosh@gimp.org>
* glib/gnulib/Makefile.am : added makefile.msc to EXTRA_DIST
fixes #141563, Steve Lhomme
2004-04-30 Matthias Clasen <mclasen@redhat.com>
* === Released 2.4.1 ===
* configure.in: Version 2.4.1, interface age 1.
* NEWS: Updates
2004-04-25 Tor Lillqvist <tml@iki.fi>
* glib/gwin32.c (g_win32_get_package_installation_subdirectory):

View File

@ -1,3 +1,9 @@
Wed May 5 23:35:44 2004 Matthias Clasen <maclas@gmx.de>
* glib/gconvert.c (g_filename_from_uri): Quote the file
scheme to mark it as untranslatable. String change.
(#133144, Danilo Segan)
2004-05-03 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Walloon (wa) to ALL_LINGUAS
@ -12,6 +18,14 @@ Sun May 2 03:51:59 2004 Manish Singh <yosh@gimp.org>
* glib/gnulib/Makefile.am : added makefile.msc to EXTRA_DIST
fixes #141563, Steve Lhomme
2004-04-30 Matthias Clasen <mclasen@redhat.com>
* === Released 2.4.1 ===
* configure.in: Version 2.4.1, interface age 1.
* NEWS: Updates
2004-04-25 Tor Lillqvist <tml@iki.fi>
* glib/gwin32.c (g_win32_get_package_installation_subdirectory):

View File

@ -1,3 +1,9 @@
Wed May 5 23:35:44 2004 Matthias Clasen <maclas@gmx.de>
* glib/gconvert.c (g_filename_from_uri): Quote the file
scheme to mark it as untranslatable. String change.
(#133144, Danilo Segan)
2004-05-03 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Walloon (wa) to ALL_LINGUAS
@ -12,6 +18,14 @@ Sun May 2 03:51:59 2004 Manish Singh <yosh@gimp.org>
* glib/gnulib/Makefile.am : added makefile.msc to EXTRA_DIST
fixes #141563, Steve Lhomme
2004-04-30 Matthias Clasen <mclasen@redhat.com>
* === Released 2.4.1 ===
* configure.in: Version 2.4.1, interface age 1.
* NEWS: Updates
2004-04-25 Tor Lillqvist <tml@iki.fi>
* glib/gwin32.c (g_win32_get_package_installation_subdirectory):

View File

@ -1,3 +1,9 @@
Wed May 5 23:35:44 2004 Matthias Clasen <maclas@gmx.de>
* glib/gconvert.c (g_filename_from_uri): Quote the file
scheme to mark it as untranslatable. String change.
(#133144, Danilo Segan)
2004-05-03 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Walloon (wa) to ALL_LINGUAS
@ -12,6 +18,14 @@ Sun May 2 03:51:59 2004 Manish Singh <yosh@gimp.org>
* glib/gnulib/Makefile.am : added makefile.msc to EXTRA_DIST
fixes #141563, Steve Lhomme
2004-04-30 Matthias Clasen <mclasen@redhat.com>
* === Released 2.4.1 ===
* configure.in: Version 2.4.1, interface age 1.
* NEWS: Updates
2004-04-25 Tor Lillqvist <tml@iki.fi>
* glib/gwin32.c (g_win32_get_package_installation_subdirectory):

View File

@ -1,3 +1,9 @@
Wed May 5 23:35:44 2004 Matthias Clasen <maclas@gmx.de>
* glib/gconvert.c (g_filename_from_uri): Quote the file
scheme to mark it as untranslatable. String change.
(#133144, Danilo Segan)
2004-05-03 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Walloon (wa) to ALL_LINGUAS
@ -12,6 +18,14 @@ Sun May 2 03:51:59 2004 Manish Singh <yosh@gimp.org>
* glib/gnulib/Makefile.am : added makefile.msc to EXTRA_DIST
fixes #141563, Steve Lhomme
2004-04-30 Matthias Clasen <mclasen@redhat.com>
* === Released 2.4.1 ===
* configure.in: Version 2.4.1, interface age 1.
* NEWS: Updates
2004-04-25 Tor Lillqvist <tml@iki.fi>
* glib/gwin32.c (g_win32_get_package_installation_subdirectory):

View File

@ -1494,7 +1494,7 @@ g_filename_from_uri (const gchar *uri,
if (!has_case_prefix (uri, "file:/"))
{
g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_BAD_URI,
_("The URI '%s' is not an absolute URI using the file scheme"),
_("The URI '%s' is not an absolute URI using the \"file\" scheme"),
uri);
return NULL;
}