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-11-13 11:51:27 +0300
committerAntenore Gatta <antenore@simbiosi.org>2019-11-13 11:51:27 +0300
commit4977cfaabfef2f19236916f428ac0a9666088d79 (patch)
treeecc17b2a278fe26ed33e9e7d921339bf53dad291 /src/remmina.c
parentf5538526e96c21ba273d911baf492d3bc646dfd6 (diff)
L10n/comments
Diffstat (limited to 'src/remmina.c')
-rw-r--r--src/remmina.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/remmina.c b/src/remmina.c
index a07da19a0..74e913766 100644
--- a/src/remmina.c
+++ b/src/remmina.c
@@ -80,38 +80,38 @@ gboolean kioskmode;
static GOptionEntry remmina_options[] =
{
- /// TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
+ // TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
{ "about", 'a', 0, G_OPTION_ARG_NONE, NULL, N_("Show \'About\'"), NULL },
- /// TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
+ // TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
{ "connect", 'c', 0, G_OPTION_ARG_FILENAME, NULL, N_("Connect to desktop described in file (.remmina or type supported by plugin)"), "FILE" },
- /// TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
+ // TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
{ 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" },
- /// TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
+ // TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
{ "edit", 'e', 0, G_OPTION_ARG_FILENAME, NULL, N_("Edit desktop connection described in file (.remmina or type supported by plugin)"), "FILE" },
{ "help", '?', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, NULL, NULL, NULL },
- /// TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
+ // TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
{ "kiosk", 'k', 0, G_OPTION_ARG_NONE, NULL, N_("Start in kiosk mode"), NULL },
- /// TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
+ // TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
{ "new", 'n', 0, G_OPTION_ARG_NONE, NULL, N_("Create new connection profile"), NULL },
- /// TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
+ // TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
{ "pref", 'p', 0, G_OPTION_ARG_STRING, NULL, N_("Show preferences"), "PAGENR" },
- /// TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
+ // TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
{ "plugin", 'x', 0, G_OPTION_ARG_STRING, NULL, N_("Run a plugin"), "PLUGIN" },
- /// TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
+ // TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
{ "quit", 'q', 0, G_OPTION_ARG_NONE, NULL, N_("Quit"), NULL },
- /// TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
+ // TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
{ "server", 's', 0, G_OPTION_ARG_STRING, NULL, N_("Use default server name (for --new)"), "SERVER" },
- /// TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
+ // TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
{ "protocol", 't', 0, G_OPTION_ARG_STRING, NULL, N_("Use default protocol (for --new)"), "PROTOCOL" },
- /// TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
+ // TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
{ "icon", 'i', 0, G_OPTION_ARG_NONE, NULL, N_("Start in tray"), NULL },
- /// TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
+ // TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
{ "version", 'v', 0, G_OPTION_ARG_NONE, NULL, N_("Show the application version"), NULL },
- /// TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
+ // TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
{ "full-version", 'V', 0, G_OPTION_ARG_NONE, NULL, N_("Show version of the application and its plugins"), NULL },
- /// TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
+ // TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
{ "update-profile", 0, 0, G_OPTION_ARG_FILENAME, NULL, N_("Modify connection profile, (requires --set-option)"), NULL },
- /// TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
+ // TRANSLATORS: Shown in terminal. Do not use charcters that may be not supported on a terminal
{ "set-option", 0, 0, G_OPTION_ARG_STRING_ARRAY, NULL, N_("Set one or more profile settings, to be used with --update-profile"), NULL },
{ NULL }
};