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:
authorDaniel Teichmann <daniel.teichmann@das-netzwerkteam.de>2021-11-17 22:16:40 +0300
committerDaniel Teichmann <daniel.teichmann@das-netzwerkteam.de>2021-11-23 18:24:57 +0300
commit85c1d3a2b3d31e4208e909be8425b9f379ea0425 (patch)
tree8008aa1687938f3a2aa840a46e9a13bfaa154efd /plugins
parent69bcecc949f0cac7dd03335b30425c90925152d8 (diff)
x2go_plugin.c: Session selection dialog: make default width bigger.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/x2go/x2go_plugin.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/x2go/x2go_plugin.c b/plugins/x2go/x2go_plugin.c
index 88d2878de..cad1665de 100644
--- a/plugins/x2go/x2go_plugin.c
+++ b/plugins/x2go/x2go_plugin.c
@@ -487,10 +487,10 @@ static GtkWidget* rmplugin_x2go_choose_session_dialog_factory(RemminaProtocolWid
GTK_DIALOG(widget_gtk_dialog),
SESSION_CHOOSER_RESPONSE_TERMINATE);
// TRANSLATORS: Tooltip for terminating button inside Session-Chooser-Dialog.
- // TRANSLATORS: Please stick to X2GoClient's translations.
+ // TRANSLATORS: Please stick to X2GoClient's way of translating.
gtk_widget_set_tooltip_text(button, _("Terminating X2Go sessions can take a moment."));
- #define DEFAULT_DIALOG_WIDTH 500
+ #define DEFAULT_DIALOG_WIDTH 720
#define DEFAULT_DIALOG_HEIGHT (DEFAULT_DIALOG_WIDTH * 9) / 16
gtk_widget_set_size_request(GTK_WIDGET(widget_gtk_dialog),
@@ -1924,6 +1924,7 @@ static gboolean rmplugin_x2go_exec_x2go(gchar *host,
if (resume_session_id && strlen(resume_session_id) > 0) {
REMMINA_PLUGIN_INFO("%s", g_strdup_printf(
+ // TRANSLATORS: Please stick to X2GoClient's way of translating.
_("Resuming session '%s'…"),
resume_session_id
));