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

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAllan Nordhøy <epost@anotheragency.no>2019-11-06 08:50:32 +0300
committerAllan Nordhøy <epost@anotheragency.no>2019-11-06 08:50:32 +0300
commitbb2b46fa9005cbff2d48134cad1f1cebed87d45d (patch)
treeb61f040f8e660e861cabe2535c1293dd21645a13 /src
parentbeda77963b97e97154b89b7eb9b683aca3193dff (diff)
Spelling: The file %s, Last connection was made, , which is not
Diffstat (limited to 'src')
-rw-r--r--src/rcw.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rcw.c b/src/rcw.c
index c495b6a5c..38f771817 100644
--- a/src/rcw.c
+++ b/src/rcw.c
@@ -3663,7 +3663,7 @@ void rco_on_connect(RemminaProtocolWidget *gp, RemminaConnectionObject *cnnobj)
if (remmina_pref.periodic_usage_stats_permitted) {
g_debug("Stats are allowed, we save the last successful connection date");
remmina_file_set_string(cnnobj->remmina_file, "last_success", last_success);
- g_debug("Last successful connection date is %s ", last_success);
+ g_debug("Last connection was made on %s.", last_success);
}
g_debug("Saving credentials");
@@ -3771,7 +3771,7 @@ gboolean rcw_open_from_filename(const gchar *filename)
return TRUE;
} else {
dialog = gtk_message_dialog_new(NULL, GTK_DIALOG_MODAL, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE,
- _("File %s is corrupted, unreadable or not found."), filename);
+ _("The file %s is corrupted, unreadable, or could not be found."), filename);
g_signal_connect(G_OBJECT(dialog), "response", G_CALLBACK(gtk_widget_destroy), NULL);
gtk_widget_show(dialog);
remmina_widget_pool_register(dialog);
@@ -3988,7 +3988,7 @@ void rco_destroy_message_panel(RemminaConnectionObject *cnnobj, RemminaMessagePa
g_list_free(childs);
if (cc == NULL) {
- printf("Remmina: Warning, request to destroy a RemminaMessagePanel which is not on the page\n");
+ printf("Remmina: Warning, request to destroy a RemminaMessagePanel, which is not on the page\n");
return;
}
was_visible = gtk_widget_is_visible(GTK_WIDGET(mp));