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:
authorDavy Defaud <davy.defaud@free.fr>2019-01-27 21:08:53 +0300
committerDavy Defaud <davy.defaud@free.fr>2019-01-27 21:08:53 +0300
commit653ef08a74481842888c97b4a9c971b03baa39b4 (patch)
tree68ec93c5a154d60ab0aeae77b0593429350d4870
parent3e1515960f3908253f8fc4e607fa93494bc9d17e (diff)
Replace all triple points by ellipsis characters
Remove spaces before ellipsis, except for German.
-rw-r--r--nx_plugin.c2
-rw-r--r--nx_session.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/nx_plugin.c b/nx_plugin.c
index 345f096..ed4488d 100644
--- a/nx_plugin.c
+++ b/nx_plugin.c
@@ -598,7 +598,7 @@ static gboolean remmina_plugin_nx_open_connection(RemminaProtocolWidget *gp)
if (pthread_create(&gpdata->thread, NULL, remmina_plugin_nx_main_thread, gp)) {
remmina_plugin_nx_service->protocol_plugin_set_error(gp,
- "Failed to initialize pthread. Falling back to non-thread mode...");
+ "Failed to initialize pthread. Falling back to non-thread mode…");
gpdata->thread = 0;
return FALSE;
}else {
diff --git a/nx_session.c b/nx_session.c
index a717d19..da8cd2d 100644
--- a/nx_session.c
+++ b/nx_session.c
@@ -960,7 +960,7 @@ gboolean remmina_nx_session_invoke_proxy(RemminaNXSession *nx, gint display, GCh
gchar *s;
gint i;
- /* Copy all current environment variable, but change DISPLAY. Assume we should always have DISPLAY... */
+ /* Copy all current environment variable, but change DISPLAY. Assume we should always have DISPLAY… */
if (display >= 0) {
envp = g_listenv();
for (i = 0; envp[i]; i++) {