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-10-14 16:45:24 +0300
committerAntenore Gatta <antenore@simbiosi.org>2019-10-14 16:45:24 +0300
commit403baca39dc8ce7cca13c71171fb5b2d0a3692f9 (patch)
tree70ff546d268c41a8d23bf1a241d9d649e642554e /src/remmina.c
parent08ff57e835326c6fd956b00f0141e1563a120824 (diff)
Fixing escaping
Diffstat (limited to 'src/remmina.c')
-rw-r--r--src/remmina.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remmina.c b/src/remmina.c
index 07bd827e7..3997f4375 100644
--- a/src/remmina.c
+++ b/src/remmina.c
@@ -80,7 +80,7 @@ gboolean kioskmode;
static GOptionEntry remmina_options[] =
{
- { "about", 'a', 0, G_OPTION_ARG_NONE, NULL, N_("Show '\About\'"), NULL },
+ { "about", 'a', 0, G_OPTION_ARG_NONE, NULL, N_("Show \'About\'"), NULL },
{ "connect", 'c', 0, G_OPTION_ARG_FILENAME, NULL, N_("Connect to desktop described in file (.remmina or type supported by plugin)"), "FILE" },
{ G_OPTION_REMAINING, '\0', 0, G_OPTION_ARG_FILENAME_ARRAY, NULL, N_("Connect to desktop described in file (.remmina or type supported by plugin)"), "FILE" },
{ "edit", 'e', 0, G_OPTION_ARG_FILENAME, NULL, N_("Edit desktop connection described in file (.remmina or type supported by plugin)"), "FILE" },