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
diff options
context:
space:
mode:
authorAllan Nordhøy <epost@anotheragency.no>2019-12-06 10:44:28 +0300
committerAntenore Gatta <antenore@simbiosi.org>2019-12-06 10:44:28 +0300
commit3c2eeec8bd81719064a087b7cdaaae9e41b9c8c5 (patch)
treea8b365e0273c4cc2f7dde80fd7137395f4d5786b /src/remmina.c
parent9833cbbe2a5df06a968a13eef0d7b1271559ac3e (diff)
Spelling: Private key, direct explanations
Diffstat (limited to 'src/remmina.c')
-rw-r--r--src/remmina.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/remmina.c b/src/remmina.c
index 371730ef8..6a11ca388 100644
--- a/src/remmina.c
+++ b/src/remmina.c
@@ -110,7 +110,7 @@ static GOptionEntry remmina_options[] =
// TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
{ "full-version", 'V', 0, G_OPTION_ARG_NONE, NULL, N_("Show version of the application and its plugins"), NULL },
// TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
- { "update-profile", 0, 0, G_OPTION_ARG_FILENAME, NULL, N_("Modify connection profile, (requires --set-option)"), NULL },
+ { "update-profile", 0, 0, G_OPTION_ARG_FILENAME, NULL, N_("Modify connection profile (requires --set-option)"), NULL },
// TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
{ "set-option", 0, 0, G_OPTION_ARG_STRING_ARRAY, NULL, N_("Set one or more profile settings, to be used with --update-profile"), NULL },
{ NULL }
@@ -250,10 +250,10 @@ static void remmina_on_startup(GApplication *app)
* something is missing */
secret_plugin = remmina_plugin_manager_get_secret_plugin();
if (!secret_plugin) {
- g_print("WARNING: Remmina is running without a secret plugin. Passwords will be saved in a less secure way.\n");
+ g_print("Warning: Remmina is running without a secret plugin. Passwords will be saved in a less secure way.\n");
} else {
if (!secret_plugin->is_service_available())
- g_print("WARNING: Remmina is running with a secret plugin, but it cannot connect to a secret service.\n");
+ g_print("Warning: Remmina is running with a secrecy plugin, but it cannot connect to a secrecy service.\n");
}
remmina_exec_command(REMMINA_COMMAND_AUTOSTART, NULL);