[gnome-builder/beautifier: 2/2] replace ascii quotes by unicode quotes



commit 5cbfae5e9276b56191509b7a1bc342332c8002b3
Author: Sebastien Lafargue <slafargue gnome org>
Date:   Sat Nov 12 18:55:26 2016 +0100

    replace ascii quotes by unicode quotes

 contrib/tmpl/tmpl-template-locator.c             |    2 +-
 libide/devices/ide-device-manager.c              |    2 +-
 libide/gsettings/ide-language-defaults.c         |    2 +-
 libide/ide-object.c                              |    2 +-
 libide/pygobject/ide-pygobject-script.c          |    2 +-
 plugins/build-tools/gbp-build-tool.c             |    4 ++--
 plugins/create-project/gbp-create-project-tool.c |    2 +-
 7 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/contrib/tmpl/tmpl-template-locator.c b/contrib/tmpl/tmpl-template-locator.c
index 8fc6b5a..db49fc2 100644
--- a/contrib/tmpl/tmpl-template-locator.c
+++ b/contrib/tmpl/tmpl-template-locator.c
@@ -102,7 +102,7 @@ tmpl_template_locator_real_locate (TmplTemplateLocator  *self,
       g_set_error (error,
                    TMPL_ERROR,
                    TMPL_ERROR_TEMPLATE_NOT_FOUND,
-                   _("Failed to locate template \"%s\""),
+                   _("Failed to locate template “%s”"),
                    path);
       return NULL;
     }
diff --git a/libide/devices/ide-device-manager.c b/libide/devices/ide-device-manager.c
index 8df4f56..1ee6d89 100644
--- a/libide/devices/ide-device-manager.c
+++ b/libide/devices/ide-device-manager.c
@@ -144,7 +144,7 @@ ide_device_manager__provider_device_removed (IdeDeviceManager  *self,
         }
     }
 
-  g_warning (_("The device \"%s\" could not be found."),
+  g_warning (_("The device “%s” could not be found."),
              ide_device_get_id (device));
 }
 
diff --git a/libide/gsettings/ide-language-defaults.c b/libide/gsettings/ide-language-defaults.c
index aaaaac3..1548c1d 100644
--- a/libide/gsettings/ide-language-defaults.c
+++ b/libide/gsettings/ide-language-defaults.c
@@ -190,7 +190,7 @@ ide_language_defaults_get_current_version (const gchar  *path,
       g_set_error (error,
                    G_IO_ERROR,
                    G_IO_ERROR_INVALID_DATA,
-                   _("Failed to parse integer from \"%s\""),
+                   _("Failed to parse integer from “%s”"),
                    path);
       return -1;
     }
diff --git a/libide/ide-object.c b/libide/ide-object.c
index 597eafb..5ee60b5 100644
--- a/libide/ide-object.c
+++ b/libide/ide-object.c
@@ -285,7 +285,7 @@ ide_object_new_async_try_next (InitAsyncState *state)
       g_task_return_new_error (state->task,
                                G_IO_ERROR,
                                G_IO_ERROR_NOT_SUPPORTED,
-                               _("No implementations of extension point \"%s\"."),
+                               _("No implementations of extension point “%s”."),
                                state->extension_point);
       g_object_unref (state->task);
       return;
diff --git a/libide/pygobject/ide-pygobject-script.c b/libide/pygobject/ide-pygobject-script.c
index f13ac43..e1597af 100644
--- a/libide/pygobject/ide-pygobject-script.c
+++ b/libide/pygobject/ide-pygobject-script.c
@@ -271,7 +271,7 @@ ide_pygobject_script_init_async (GAsyncInitable      *initable,
       g_task_return_new_error (task,
                                G_IO_ERROR,
                                G_IO_ERROR_NOT_SUPPORTED,
-                               _("The script \"%s\" is not a PyGObject file."),
+                               _("The script “%s” is not a PyGObject file."),
                                path);
       return;
     }
diff --git a/plugins/build-tools/gbp-build-tool.c b/plugins/build-tools/gbp-build-tool.c
index 707e6ff..d63d396 100644
--- a/plugins/build-tools/gbp-build-tool.c
+++ b/plugins/build-tools/gbp-build-tool.c
@@ -209,7 +209,7 @@ gbp_build_tool_new_context_cb (GObject      *object,
       g_task_return_new_error (task,
                                G_IO_ERROR,
                                G_IO_ERROR_NOT_FOUND,
-                               _("Failed to locate device \"%s\""),
+                               _("Failed to locate device “%s”"),
                                device_id);
       return;
     }
@@ -219,7 +219,7 @@ gbp_build_tool_new_context_cb (GObject      *object,
       g_task_return_new_error (task,
                                G_IO_ERROR,
                                G_IO_ERROR_NOT_FOUND,
-                               _("Failed to locate runtime \"%s\""),
+                               _("Failed to locate runtime “%s”"),
                                runtime_id);
       return;
     }
diff --git a/plugins/create-project/gbp-create-project-tool.c 
b/plugins/create-project/gbp-create-project-tool.c
index db9da44..2e41e83 100644
--- a/plugins/create-project/gbp-create-project-tool.c
+++ b/plugins/create-project/gbp-create-project-tool.c
@@ -139,7 +139,7 @@ gbp_create_project_tool_parse (GbpCreateProjectTool  *self,
     { "language", 'g', 0, G_OPTION_ARG_STRING, &self->language,
       N_("The target language (if supported)") },
     { "vcs", 'v', 0, G_OPTION_ARG_STRING, &self->vcs,
-      N_("The version control to use or \"none\" to disable"),
+      N_("The version control to use or “none” to disable"),
       N_("git") },
     { NULL }
   };


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]