Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/remmina-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2021-01-22 10:43:30 +0300
committerAntenore Gatta <antenore@simbiosi.org>2021-01-22 10:43:30 +0300
commit28135a5b5f1936cb524919b1196dbf2ae838b0bb (patch)
tree2988f5407d1de94e8e9ffc3297bf0fa129395b0e
parentf373bfe0d10286176e6248e36f122b1b4ffbdf0c (diff)
Using curly double quotes where possible
-rw-r--r--nx_plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nx_plugin.c b/nx_plugin.c
index b2923a3..821a43e 100644
--- a/nx_plugin.c
+++ b/nx_plugin.c
@@ -614,7 +614,7 @@ static gboolean remmina_plugin_nx_open_connection(RemminaProtocolWidget *gp)
if (!remmina_plugin_nx_service->gtksocket_available()) {
remmina_plugin_nx_service->protocol_plugin_set_error(gp,
- _("The protocol \"%s\" is unavailable because GtkSocket only works under X.Org."),
+ _("The protocol ā€œ%sā€ is unavailable because GtkSocket only works under X.Org."),
remmina_plugin_nx.name);
return FALSE;
}
@@ -812,7 +812,7 @@ remmina_plugin_entry(RemminaPluginService *service)
s = strchr(remmina_kbtype, ',');
if (s)
*s = '\0';
- /* g_print("NX: Detected \"%s\" keyboard type\n", remmina_kbtype); */
+ /* g_print("NX: Detected ā€œ%sā€ keyboard type\n", remmina_kbtype); */
}
XCloseDisplay(dpy);
}