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:
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
commit6016116838502643dcdef167fba2ab6408be4ede (patch)
tree2bb0c2d076bbadc26e0c1b13cfb9ac07869de2c6
parentc5923fc3cc4434f6da092e42e99013269abe85ba (diff)
Spelling: Private key, direct explanations
-rw-r--r--nx_plugin.c16
-rw-r--r--nx_session_manager.c4
2 files changed, 10 insertions, 10 deletions
diff --git a/nx_plugin.c b/nx_plugin.c
index 8b98f1c..cce82d0 100644
--- a/nx_plugin.c
+++ b/nx_plugin.c
@@ -58,7 +58,7 @@ RemminaPluginService *remmina_plugin_nx_service = NULL;
static gchar *remmina_kbtype = "pc102/us";
/* When more than one NX sessions is connecting in progress, we need this mutex and array
- * to prevent them from stealing the same window id.
+ * to prevent them from stealing the same window ID.
*/
static pthread_mutex_t remmina_nx_init_mutex;
static GArray *remmina_nx_window_id_array;
@@ -88,7 +88,7 @@ static gboolean onMainThread_cb(struct onMainThread_cb_data *d)
}
pthread_mutex_unlock( &d->mu );
} else {
- /* thread has been cancelled, so we must free d memory here */
+ /* Thread has been cancelled, so we must free d memory here */
g_free( d );
}
return G_SOURCE_REMOVE;
@@ -202,7 +202,7 @@ gboolean remmina_plugin_nx_ssh_auth_callback(gchar **passphrase, gpointer userda
_("SSH credentials"), NULL,
NULL,
NULL,
- _("SSH private key passphrase"));
+ _("Password for private SSH key"));
if (ret == GTK_RESPONSE_OK) {
*passphrase = remmina_plugin_nx_service->protocol_plugin_init_get_password(gp);
return TRUE;
@@ -605,7 +605,7 @@ static gboolean remmina_plugin_nx_open_connection(RemminaProtocolWidget *gp)
if (!remmina_plugin_nx_service->gtksocket_available()) {
remmina_plugin_nx_service->protocol_plugin_set_error(gp,
- _("Protocol %s is unavailable because GtkSocket only works under X.Org"),
+ _("The protocol \"%s\" is unavailable because GtkSocket only works under X.Org."),
remmina_plugin_nx.name);
return FALSE;
}
@@ -712,7 +712,7 @@ static gpointer quality_list[] =
* c) Setting description
* d) Compact disposition
* e) Values for REMMINA_PROTOCOL_SETTING_TYPE_SELECT or REMMINA_PROTOCOL_SETTING_TYPE_COMBO
- * f) Setting Tooltip
+ * f) Setting tooltip
*/
static const RemminaProtocolSetting remmina_plugin_nx_basic_settings[] =
{
@@ -733,7 +733,7 @@ static const RemminaProtocolSetting remmina_plugin_nx_basic_settings[] =
* c) Setting description
* d) Compact disposition
* e) Values for REMMINA_PROTOCOL_SETTING_TYPE_SELECT or REMMINA_PROTOCOL_SETTING_TYPE_COMBO
- * f) Setting Tooltip
+ * f) Setting tooltip
*/
static const RemminaProtocolSetting remmina_plugin_nx_advanced_settings[] =
{
@@ -773,7 +773,7 @@ static RemminaProtocolPlugin remmina_plugin_nx =
remmina_plugin_nx_query_feature, // Query for available features
remmina_plugin_nx_call_feature, // Call a feature
NULL, // Send a keystroke
- NULL // No screenshot support available
+ NULL // Screenshot support unavailable
};
G_MODULE_EXPORT gboolean
@@ -803,7 +803,7 @@ remmina_plugin_entry(RemminaPluginService *service)
s = strchr(remmina_kbtype, ',');
if (s)
*s = '\0';
- /* g_print("NX: detected keyboard type %s\n", remmina_kbtype); */
+ /* g_print("NX: Detected \"%s\" keyboard type\n", remmina_kbtype); */
}
XCloseDisplay(dpy);
}
diff --git a/nx_session_manager.c b/nx_session_manager.c
index bf43628..39aeefa 100644
--- a/nx_session_manager.c
+++ b/nx_session_manager.c
@@ -95,7 +95,7 @@ static void remmina_nx_session_manager_on_response(GtkWidget *dialog, gint respo
event_type = response_id;
}
if (response_id == REMMINA_NX_EVENT_TERMINATE && gpdata->manager_selected) {
- remmina_nx_session_iter_set(gpdata->nx, &gpdata->iter, REMMINA_NX_SESSION_COLUMN_STATUS, _("Terminating"));
+ remmina_nx_session_iter_set(gpdata->nx, &gpdata->iter, REMMINA_NX_SESSION_COLUMN_STATUS, _("Terminating…"));
}
if (response_id != REMMINA_NX_EVENT_TERMINATE) {
gtk_widget_destroy(dialog);
@@ -108,7 +108,7 @@ static void remmina_nx_session_manager_on_response(GtkWidget *dialog, gint respo
}
/* Handle double click on a row in the NX Session manager
- * Automatically close the dialog using the default response id */
+ * Automatically close the dialog using the default response ID */
void remmina_nx_session_manager_on_row_activated(GtkTreeView *tree, GtkTreePath *path, GtkTreeViewColumn *column, RemminaProtocolWidget *gp)
{
TRACE_CALL(__func__);