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:
authorAntenore Gatta <antenore@simbiosi.org>2019-09-07 02:41:39 +0300
committerAntenore Gatta <antenore@simbiosi.org>2019-09-07 02:41:39 +0300
commit5297ba42515f4e09daf65f6d3e2c78f6b97c46d7 (patch)
tree64d7442105623e626f8bd7de521c238270777408 /plugins
parent685d3ec11a0e98d12690e033fd4225789ec4a23a (diff)
Added some tooltips
Diffstat (limited to 'plugins')
-rw-r--r--plugins/rdp/rdp_plugin.c10
-rw-r--r--plugins/www/www_plugin.c8
2 files changed, 9 insertions, 9 deletions
diff --git a/plugins/rdp/rdp_plugin.c b/plugins/rdp/rdp_plugin.c
index d3cd8e3b4..43df8265a 100644
--- a/plugins/rdp/rdp_plugin.c
+++ b/plugins/rdp/rdp_plugin.c
@@ -1689,11 +1689,11 @@ static const RemminaProtocolSetting remmina_rdp_advanced_settings[] =
{ REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "exec", N_("Startup program"), FALSE, NULL, NULL},
{ REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "execpath", N_("Startup path"), FALSE, NULL, NULL},
{ REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "loadbalanceinfo", N_("Load balance info"), FALSE, NULL, NULL},
- { REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "printername", N_("Local printer name"), FALSE, NULL, NULL},
- { REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "printerdriver", N_("Local printer driver"), FALSE, NULL, NULL},
- { REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "serialname", N_("Local serial name"), FALSE, NULL, NULL},
- { REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "serialdriver", N_("Local serial driver"), FALSE, NULL, NULL},
- { REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "serialpath", N_("Local serial path"), FALSE, NULL, NULL},
+ { REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "printername", N_("Local printer name"), FALSE, NULL, N_("Name of the printer as it is defined locally, i.e. cupspdf")},
+ { REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "printerdriver", N_("Local printer driver"), FALSE, NULL, N_("Full name of the printer driver, i.e. Samsung CLX-3300 Series PS")},
+ { REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "serialname", N_("Local serial name"), FALSE, NULL, N_("COM1, COM2, etc")},
+ { REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "serialdriver", N_("Local serial driver"), FALSE, NULL, N_("Serial")},
+ { REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "serialpath", N_("Local serial path"), FALSE, NULL, N_("/dev/ttyS0, /dev/ttyS1, etc")},
{ REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "parallelname", N_("Local parallel name"), FALSE, NULL, NULL},
{ REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "parallelpath", N_("Local parallel device"), FALSE, NULL, NULL},
{ REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "smartcardname", N_("Smartcard Name"), FALSE, NULL, NULL},
diff --git a/plugins/www/www_plugin.c b/plugins/www/www_plugin.c
index 37ae66153..75d7893d2 100644
--- a/plugins/www/www_plugin.c
+++ b/plugins/www/www_plugin.c
@@ -780,10 +780,10 @@ static gboolean remmina_plugin_www_get_snapshot(RemminaProtocolWidget *gp, Remmi
*/
static const RemminaProtocolSetting remmina_plugin_www_basic_settings[] =
{
- { REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "server", N_("URL (http://address or https://address)"), FALSE, NULL, NULL },
- { REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "username", N_("Username"), FALSE, NULL, NULL },
- { REMMINA_PROTOCOL_SETTING_TYPE_PASSWORD, "password", N_("Password"), FALSE, NULL, NULL },
- { REMMINA_PROTOCOL_SETTING_TYPE_END, NULL, NULL, FALSE, NULL, NULL }
+ { REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "server", N_("URL"), FALSE, NULL, N_("http://address or https://address") },
+ { REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "username", N_("Username"), FALSE, NULL, NULL },
+ { REMMINA_PROTOCOL_SETTING_TYPE_PASSWORD, "password", N_("Password"), FALSE, NULL, NULL },
+ { REMMINA_PROTOCOL_SETTING_TYPE_END, NULL, NULL, FALSE, NULL, NULL }
};
/* Array of RemminaProtocolSetting for advanced settings.