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>2023-07-12 15:11:47 +0300
committerAllan Nordhøy <epost@anotheragency.no>2023-07-12 15:11:47 +0300
commit35918a1ff76ccb5c2a988a0d19cfb479dcfc8130 (patch)
tree5869b63743187f458e5c1c0bb45c3a9cabbceda9 /plugins
parente316b8063aee582de1630d1d5b339ac3bbf679e2 (diff)
Spelling: Various strings for assistance mode
Diffstat (limited to 'plugins')
-rw-r--r--plugins/rdp/rdp_plugin.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/rdp/rdp_plugin.c b/plugins/rdp/rdp_plugin.c
index 807b63fa1..0a310f767 100644
--- a/plugins/rdp/rdp_plugin.c
+++ b/plugins/rdp/rdp_plugin.c
@@ -1379,14 +1379,14 @@ static gboolean remmina_rdp_main(RemminaProtocolWidget *gp)
if (remmina_plugin_service->file_get_int(remminafile, "assistance_mode", 0)){
rdpAssistanceFile* file = freerdp_assistance_file_new();
if (!file){
- REMMINA_PLUGIN_DEBUG("Failed to allocate Assistance File structure");
+ REMMINA_PLUGIN_DEBUG("Could not allocate assistance file structure");
return FALSE;
}
if (remmina_plugin_service->file_get_string(remminafile, "assistance_file") == NULL ||
remmina_plugin_service->file_get_string(remminafile, "assistance_pass") == NULL ){
- REMMINA_PLUGIN_DEBUG("Assistance File and Password are not set while Assistance Mode is enabled");
+ REMMINA_PLUGIN_DEBUG("Assistance file and password are not set while assistance mode is on");
return FALSE;
}
@@ -1395,13 +1395,13 @@ static gboolean remmina_rdp_main(RemminaProtocolWidget *gp)
remmina_plugin_service->file_get_string(remminafile, "assistance_pass"));
if (status < 0){
- REMMINA_PLUGIN_DEBUG("Failed to Parse Assistance File");
+ REMMINA_PLUGIN_DEBUG("Could not parse assistance file");
return FALSE;
}
if (!freerdp_assistance_populate_settings_from_assistance_file(file, rfi->settings))
- REMMINA_PLUGIN_DEBUG("Failed to populate settings from Assistance File");
+ REMMINA_PLUGIN_DEBUG("Could not populate settings from assistance file");
return FALSE;
}
@@ -2902,7 +2902,7 @@ static const RemminaProtocolSetting remmina_rdp_advanced_settings[] =
{ REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "vc", N_("Static virtual channel"), FALSE, NULL, N_("<channel>[,<options>]") },
{ REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "rdp2tcp", N_("TCP redirection"), FALSE, NULL, N_("/PATH/TO/rdp2tcp") },
{ REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "rdp_reconnect_attempts", N_("Reconnect attempts number"), FALSE, NULL, N_("The maximum number of reconnect attempts upon an RDP disconnect (default: 20)") },
- { REMMINA_PROTOCOL_SETTING_TYPE_ASSISTANCE, "assistance_mode", N_("Attempt to connect in assistnace mode"), TRUE, NULL },
+ { REMMINA_PROTOCOL_SETTING_TYPE_ASSISTANCE, "assistance_mode", N_("Attempt to connect in assistance mode"), TRUE, NULL },
{ REMMINA_PROTOCOL_SETTING_TYPE_CHECK, "preferipv6", N_("Prefer IPv6 AAAA record over IPv4 A record"), TRUE, NULL, NULL },
{ REMMINA_PROTOCOL_SETTING_TYPE_CHECK, "shareprinter", N_("Share printers"), TRUE, NULL, NULL },
{ REMMINA_PROTOCOL_SETTING_TYPE_CHECK, "shareserial", N_("Share serial ports"), TRUE, NULL, NULL },