Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-metadata-manager.c
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@src.gnome.org>2006-05-27 13:00:31 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2006-05-27 13:00:31 (GMT)
commitd18bf1f949a0d4fb15b3bbd6daa6b8a59ebdc3f2 (patch)
tree515c4dfca0d8ab4c2ca0035f5c6916bfb1cf5f76 /shell/ev-metadata-manager.c
parent75e184c10b9d8f1f52ebcde19660e45c5244f9a0 (diff)
Use consistent quoting style. Fix for the bug #320285.
* backend/ev-attachment.c: (ev_attachment_save), (ev_attachment_launch_app), (ev_attachment_open): * backend/ev-document-factory.c: (get_document_from_uri): * cut-n-paste/recent-files/egg-recent-view-uimanager.c: (egg_recent_view_uimanager_set_list): * ps/ps-document.c: (check_filecompressed), (document_load), (ps_document_load): * shell/ev-metadata-manager.c: (load_values): * shell/ev-password.c: (ev_password_dialog_set_property): * shell/ev-view.c: (tip_from_link): * shell/ev-window.c: (file_save_dialog_response_cb), (ev_window_print_dialog_response_cb): Use consistent quoting style. Fix for the bug #320285.
Diffstat (limited to 'shell/ev-metadata-manager.c')
-rw-r--r--shell/ev-metadata-manager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ev-metadata-manager.c b/shell/ev-metadata-manager.c
index f5ab040..e6c5202 100644
--- a/shell/ev-metadata-manager.c
+++ b/shell/ev-metadata-manager.c
@@ -268,7 +268,7 @@ load_values ()
cur = xmlDocGetRootElement (doc);
if (cur == NULL)
{
- g_message ("The metadata file '%s' is empty", METADATA_FILE);
+ g_message ("The metadata file ā€œ%sā€ is empty", METADATA_FILE);
xmlFreeDoc (doc);
return FALSE;
@@ -276,7 +276,7 @@ load_values ()
if (xmlStrcmp (cur->name, (const xmlChar *) "metadata"))
{
- g_message ("File '%s' is of the wrong type", METADATA_FILE);
+ g_message ("File ā€œ%sā€ is of the wrong type", METADATA_FILE);
xmlFreeDoc (doc);
return FALSE;