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-24 16:21:36 +0300
committerDaniel Teichmann <daniel.teichmann@das-netzwerkteam.de>2021-11-24 16:21:36 +0300
commitaf847ef6d3b30e8452c4648b2c25c3d06e989d94 (patch)
tree39b5fe592f4b01c85444a9c2373ba02d72e4c45e /src/remmina.c
parent067a6cd1b9a0947464d42755f200851f319976b4 (diff)
remmina.c: Rewrite 'G_MESSAGES_DEBUG=all' tip at main().
Diffstat (limited to 'src/remmina.c')
-rw-r--r--src/remmina.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/remmina.c b/src/remmina.c
index e3f9abbc2..cbce50a65 100644
--- a/src/remmina.c
+++ b/src/remmina.c
@@ -330,14 +330,15 @@ int main(int argc, char *argv[])
// Give the less familiar with GLib a tip on where to get
// more debugging information.
if(!getenv("G_MESSAGES_DEBUG")) {
- g_message(g_strdup_printf("%s\n%s\n",
- _("Remmina does not log all output statements. To enable a "
+ /* TRANSLATORS:
+ * This link should point to a resource explaining how to get Remmina
+ * to log more verbose statements.
+ */
+ g_message(_("Remmina does not log all output statements. To enable a "
"more verbose output please use G_MESSAGES_DEBUG=all as an "
- "environment variable."),
- // TRANSLATORS: This link should point to a resource explaining
- // TRANSLATORS: how to get Remmina to log debug statements.
- _("For more information, please visit the Remmina Wiki:\n"
- "https://gitlab.com/Remmina/Remmina/-/wikis/Usage/Remmina-debugging")
+ "environment variable.\n"
+ "For more information, please visit the Remmina Wiki at:\n"
+ "https://gitlab.com/Remmina/Remmina/-/wikis/Usage/Remmina-debugging"
));
}