From 185abca302818f138eb43cb490c8d5e2a3ea5c29 Mon Sep 17 00:00:00 2001 From: Giovanni Panozzo Date: Thu, 7 Sep 2017 20:36:54 +0000 Subject: [PATCH 1/2] Allow customized runtime paths in cmake. This patch allow runtime paths to be different from install paths. This allows relative runtime paths for AppImage builds. --- CMakeLists.txt | 18 ++++++++++++++++++ config.h.in | 9 +++++---- remmina-plugins/nx/nx_plugin.c | 2 +- remmina-plugins/rdp/rdp_plugin.c | 2 +- remmina-plugins/spice/spice_plugin.c | 2 +- remmina-plugins/telepathy/telepathy_plugin.c | 2 +- remmina-plugins/tool_hello_world/plugin.c | 2 +- remmina-plugins/vnc/vnc_plugin.c | 2 +- remmina-plugins/xdmcp/xdmcp_plugin.c | 2 +- remmina/CMakeLists.txt | 3 --- remmina/src/remmina.c | 4 ++-- remmina/src/remmina_external_tools.c | 4 ++-- remmina/src/remmina_icon.c | 2 +- remmina/src/remmina_plugin_manager.c | 4 ++-- remmina/src/remmina_public.c | 2 +- 15 files changed, 38 insertions(+), 22 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 93de51f141..4661256cf5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -133,15 +133,33 @@ endif() if(NOT REMMINA_DATADIR) set(REMMINA_DATADIR "${CMAKE_INSTALL_FULL_DATADIR}") + if(NOT REMMINA_RUNTIME_DATADIR) + set(REMMINA_RUNTIME_DATADIR "${REMMINA_DATADIR}") + endif() endif() if(NOT REMMINA_LOCALEDIR) set(REMMINA_LOCALEDIR "${CMAKE_INSTALL_FULL_LOCALEDIR}") + if(NOT REMMINA_RUNTIME_LOCALEDIR) + set(REMMINA_RUNTIME_LOCALEDIR "${REMMINA_LOCALEDIR}") + endif() endif() if(NOT REMMINA_PLUGINDIR) set(REMMINA_PLUGINDIR "${CMAKE_INSTALL_FULL_LIBDIR}/remmina/plugins") + if(NOT REMMINA_RUNTIME_PLUGINDIR) + set(REMMINA_RUNTIME_PLUGINDIR "${REMMINA_PLUGINDIR}") + endif() endif() if(NOT REMMINA_UIDIR) set(REMMINA_UIDIR "${REMMINA_DATADIR}/remmina/ui") + if(NOT REMMINA_RUNTIME_UIDIR) + set(REMMINA_RUNTIME_UIDIR "${REMMINA_UIDIR}") + endif() +endif() +if(NOT REMMINA_EXTERNAL_TOOLS_DIR) + set(REMMINA_EXTERNAL_TOOLS_DIR "${REMMINA_DATADIR}/remmina/external_tools") + if(NOT REMMINA_RUNTIME_EXTERNAL_TOOLS_DIR) + set(REMMINA_RUNTIME_EXTERNAL_TOOLS_DIR "${REMMINA_EXTERNAL_TOOLS_DIR}") + endif() endif() # Snap package generation support diff --git a/config.h.in b/config.h.in index 9a69e381aa..cfd8ceae03 100644 --- a/config.h.in +++ b/config.h.in @@ -22,9 +22,10 @@ #define GETTEXT_PACKAGE remmina -#define REMMINA_DATADIR "${REMMINA_DATADIR}" -#define REMMINA_LOCALEDIR "${REMMINA_LOCALEDIR}" -#define REMMINA_PLUGINDIR "${REMMINA_PLUGINDIR}" -#define REMMINA_UIDIR "${REMMINA_UIDIR}" +#define REMMINA_RUNTIME_DATADIR "${REMMINA_RUNTIME_DATADIR}" +#define REMMINA_RUNTIME_LOCALEDIR "${REMMINA_RUNTIME_LOCALEDIR}" +#define REMMINA_RUNTIME_PLUGINDIR "${REMMINA_RUNTIME_PLUGINDIR}" +#define REMMINA_RUNTIME_UIDIR "${REMMINA_RUNTIME_UIDIR}" +#define REMMINA_RUNTIME_EXTERNAL_TOOLS_DIR "${REMMINA_RUNTIME_EXTERNAL_TOOLS_DIR}" #endif diff --git a/remmina-plugins/nx/nx_plugin.c b/remmina-plugins/nx/nx_plugin.c index 7ce929e980..24d91b68c0 100644 --- a/remmina-plugins/nx/nx_plugin.c +++ b/remmina-plugins/nx/nx_plugin.c @@ -824,7 +824,7 @@ remmina_plugin_entry(RemminaPluginService *service) remmina_plugin_nx_service = service; - bindtextdomain(GETTEXT_PACKAGE, REMMINA_LOCALEDIR); + bindtextdomain(GETTEXT_PACKAGE, REMMINA_RUNTIME_LOCALEDIR); bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8"); if ((dpy = XkbOpenDisplay(NULL, NULL, NULL, NULL, NULL, NULL)) != NULL) diff --git a/remmina-plugins/rdp/rdp_plugin.c b/remmina-plugins/rdp/rdp_plugin.c index 39b0d44e77..fe14e622c6 100644 --- a/remmina-plugins/rdp/rdp_plugin.c +++ b/remmina-plugins/rdp/rdp_plugin.c @@ -1496,7 +1496,7 @@ G_MODULE_EXPORT gboolean remmina_plugin_entry(RemminaPluginService* service) return FALSE; } - bindtextdomain(GETTEXT_PACKAGE, REMMINA_LOCALEDIR); + bindtextdomain(GETTEXT_PACKAGE, REMMINA_RUNTIME_LOCALEDIR); bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8"); if (! service->register_plugin((RemminaPlugin*) &remmina_rdp)) diff --git a/remmina-plugins/spice/spice_plugin.c b/remmina-plugins/spice/spice_plugin.c index 03e6316333..65e3c69407 100644 --- a/remmina-plugins/spice/spice_plugin.c +++ b/remmina-plugins/spice/spice_plugin.c @@ -496,7 +496,7 @@ remmina_plugin_entry(RemminaPluginService *service) TRACE_CALL(__func__); remmina_plugin_service = service; - bindtextdomain(GETTEXT_PACKAGE, REMMINA_LOCALEDIR); + bindtextdomain(GETTEXT_PACKAGE, REMMINA_RUNTIME_LOCALEDIR); bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8"); if (!service->register_plugin((RemminaPlugin *) &remmina_plugin_spice)) diff --git a/remmina-plugins/telepathy/telepathy_plugin.c b/remmina-plugins/telepathy/telepathy_plugin.c index 038f02838b..932f4e0377 100644 --- a/remmina-plugins/telepathy/telepathy_plugin.c +++ b/remmina-plugins/telepathy/telepathy_plugin.c @@ -66,7 +66,7 @@ remmina_plugin_entry(RemminaPluginService *service) TRACE_CALL("remmina_plugin_entry"); remmina_plugin_telepathy_service = service; - bindtextdomain(GETTEXT_PACKAGE, REMMINA_LOCALEDIR); + bindtextdomain(GETTEXT_PACKAGE, REMMINA_RUNTIME_LOCALEDIR); bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8"); if (!service->register_plugin((RemminaPlugin *) &remmina_plugin_telepathy)) diff --git a/remmina-plugins/tool_hello_world/plugin.c b/remmina-plugins/tool_hello_world/plugin.c index 98ad219943..f64a435e04 100644 --- a/remmina-plugins/tool_hello_world/plugin.c +++ b/remmina-plugins/tool_hello_world/plugin.c @@ -112,7 +112,7 @@ G_MODULE_EXPORT gboolean remmina_plugin_entry(RemminaPluginService *service) TRACE_CALL("remmina_plugin_entry"); remmina_plugin_service = service; - bindtextdomain(GETTEXT_PACKAGE, REMMINA_LOCALEDIR); + bindtextdomain(GETTEXT_PACKAGE, REMMINA_RUNTIME_LOCALEDIR); bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8"); if (!service->register_plugin((RemminaPlugin *) &remmina_plugin)) diff --git a/remmina-plugins/vnc/vnc_plugin.c b/remmina-plugins/vnc/vnc_plugin.c index 1f0466cf01..6517970a28 100644 --- a/remmina-plugins/vnc/vnc_plugin.c +++ b/remmina-plugins/vnc/vnc_plugin.c @@ -2099,7 +2099,7 @@ remmina_plugin_entry(RemminaPluginService *service) TRACE_CALL("remmina_plugin_entry"); remmina_plugin_service = service; - bindtextdomain(GETTEXT_PACKAGE, REMMINA_LOCALEDIR); + bindtextdomain(GETTEXT_PACKAGE, REMMINA_RUNTIME_LOCALEDIR); bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8"); if (!service->register_plugin((RemminaPlugin *) &remmina_plugin_vnc)) diff --git a/remmina-plugins/xdmcp/xdmcp_plugin.c b/remmina-plugins/xdmcp/xdmcp_plugin.c index 73853715c3..dbfb3e36d0 100644 --- a/remmina-plugins/xdmcp/xdmcp_plugin.c +++ b/remmina-plugins/xdmcp/xdmcp_plugin.c @@ -444,7 +444,7 @@ remmina_plugin_entry(RemminaPluginService *service) TRACE_CALL("remmina_plugin_entry"); remmina_plugin_service = service; - bindtextdomain(GETTEXT_PACKAGE, REMMINA_LOCALEDIR); + bindtextdomain(GETTEXT_PACKAGE, REMMINA_RUNTIME_LOCALEDIR); bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8"); if (!service->register_plugin((RemminaPlugin *) &remmina_plugin_xdmcp)) diff --git a/remmina/CMakeLists.txt b/remmina/CMakeLists.txt index 0002bc4b73..3b6ed757b9 100644 --- a/remmina/CMakeLists.txt +++ b/remmina/CMakeLists.txt @@ -186,9 +186,6 @@ if(WITH_TRANSLATIONS) add_subdirectory(po) endif() -set(REMMINA_EXTERNAL_TOOLS_DIR "${CMAKE_INSTALL_FULL_DATADIR}/remmina/external_tools") -add_definitions( -DREMMINA_EXTERNAL_TOOLS_DIR="${REMMINA_EXTERNAL_TOOLS_DIR}" ) - add_subdirectory(icons) add_subdirectory(desktop) add_subdirectory(external_tools) diff --git a/remmina/src/remmina.c b/remmina/src/remmina.c index a561c993ac..bd6c9936f5 100644 --- a/remmina/src/remmina.c +++ b/remmina/src/remmina.c @@ -212,7 +212,7 @@ static void remmina_on_startup(GApplication *app) gtk_window_set_default_icon_name("remmina"); gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (), - REMMINA_DATADIR G_DIR_SEPARATOR_S "icons"); + REMMINA_RUNTIME_DATADIR G_DIR_SEPARATOR_S "icons"); g_application_hold(app); } @@ -239,7 +239,7 @@ int main(int argc, char* argv[]) remmina_masterthread_exec_save_main_thread_id(); - bindtextdomain(GETTEXT_PACKAGE, REMMINA_LOCALEDIR); + bindtextdomain(GETTEXT_PACKAGE, REMMINA_RUNTIME_LOCALEDIR); bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8"); textdomain(GETTEXT_PACKAGE); diff --git a/remmina/src/remmina_external_tools.c b/remmina/src/remmina_external_tools.c index 03e0a21bea..a3fa446583 100644 --- a/remmina/src/remmina_external_tools.c +++ b/remmina/src/remmina_external_tools.c @@ -62,7 +62,7 @@ gboolean remmina_external_tools_from_filename(RemminaMain *remminamain, gchar* r GDir* dir; const gchar* name; - strcpy(dirname, REMMINA_EXTERNAL_TOOLS_DIR); + strcpy(dirname, REMMINA_RUNTIME_EXTERNAL_TOOLS_DIR); dir = g_dir_open(dirname, 0, NULL); if (dir == NULL) @@ -104,7 +104,7 @@ static gboolean remmina_external_tools_launcher(const gchar* filename, const gch size_t envstrlen; gchar launcher[MAX_PATH_LEN]; - g_snprintf(launcher, MAX_PATH_LEN, "%s/launcher.sh", REMMINA_EXTERNAL_TOOLS_DIR); + g_snprintf(launcher, MAX_PATH_LEN, "%s/launcher.sh", REMMINA_RUNTIME_EXTERNAL_TOOLS_DIR); remminafile = remmina_file_load(filename); GHashTableIter iter; diff --git a/remmina/src/remmina_icon.c b/remmina/src/remmina_icon.c index 6d44366f4d..f495ef822f 100644 --- a/remmina/src/remmina_icon.c +++ b/remmina/src/remmina_icon.c @@ -497,7 +497,7 @@ void remmina_icon_init(void) { #ifdef HAVE_LIBAPPINDICATOR remmina_icon.icon = app_indicator_new ("remmina-icon", remmina_panel, APP_INDICATOR_CATEGORY_APPLICATION_STATUS); - app_indicator_set_icon_theme_path (remmina_icon.icon, REMMINA_DATADIR G_DIR_SEPARATOR_S "icons"); + app_indicator_set_icon_theme_path (remmina_icon.icon, REMMINA_RUNTIME_DATADIR G_DIR_SEPARATOR_S "icons"); app_indicator_set_status (remmina_icon.icon, APP_INDICATOR_STATUS_ACTIVE); app_indicator_set_title (remmina_icon.icon, "Remmina"); diff --git a/remmina/src/remmina_plugin_manager.c b/remmina/src/remmina_plugin_manager.c index 42ec3241b8..262c714413 100644 --- a/remmina/src/remmina_plugin_manager.c +++ b/remmina/src/remmina_plugin_manager.c @@ -232,7 +232,7 @@ void remmina_plugin_manager_init(void) return; } - dir = g_dir_open(REMMINA_PLUGINDIR, 0, NULL); + dir = g_dir_open(REMMINA_RUNTIME_PLUGINDIR, 0, NULL); if (dir == NULL) return; while ((name = g_dir_read_name(dir)) != NULL) @@ -242,7 +242,7 @@ void remmina_plugin_manager_init(void) ptr++; if (g_strcmp0(ptr, G_MODULE_SUFFIX) != 0) continue; - fullpath = g_strdup_printf(REMMINA_PLUGINDIR "/%s", name); + fullpath = g_strdup_printf(REMMINA_RUNTIME_PLUGINDIR "/%s", name); remmina_plugin_manager_load_plugin(fullpath); g_free(fullpath); } diff --git a/remmina/src/remmina_public.c b/remmina/src/remmina_public.c index 12636342ee..ed6ac05be0 100644 --- a/remmina/src/remmina_public.c +++ b/remmina/src/remmina_public.c @@ -610,7 +610,7 @@ gboolean remmina_public_get_modifier_for_keycode(GdkKeymap *keymap, guint16 keyc GtkBuilder* remmina_public_gtk_builder_new_from_file(gchar *filename) { TRACE_CALL("remmina_public_gtk_builder_new_from_file") - gchar *ui_path = g_strconcat(REMMINA_UIDIR, G_DIR_SEPARATOR_S, filename, NULL); + gchar *ui_path = g_strconcat(REMMINA_RUNTIME_UIDIR, G_DIR_SEPARATOR_S, filename, NULL); #if GTK_CHECK_VERSION(3, 10, 0) GtkBuilder *builder = gtk_builder_new_from_file(ui_path); #else From e69c4cd06a7568ab5aa198517f093a0f6990c21d Mon Sep 17 00:00:00 2001 From: Giovanni Panozzo Date: Fri, 8 Sep 2017 08:34:56 +0000 Subject: [PATCH 2/2] Add italian translations --- remmina/po/it.po | 78 +++++++++++++++++++++++++----------------------- 1 file changed, 41 insertions(+), 37 deletions(-) diff --git a/remmina/po/it.po b/remmina/po/it.po index 1f5b32fd18..f006669749 100644 --- a/remmina/po/it.po +++ b/remmina/po/it.po @@ -1629,7 +1629,7 @@ msgstr "" #: remmina/ui/remmina_main.glade:89 remmina/ui/remmina_main.glade:90 msgid "_Edit" -msgstr "" +msgstr "_Modifica" #: remmina/ui/remmina_main.glade:91 msgid "Edit the selected remote desktop file" @@ -1645,7 +1645,7 @@ msgstr "" #: remmina/ui/remmina_main.glade:119 remmina/ui/remmina_main.glade:120 msgid "External Tools" -msgstr "" +msgstr "Strumenti esterni" #: remmina/ui/remmina_main.glade:131 remmina/ui/remmina_main.glade:132 msgid "_New" @@ -1658,12 +1658,12 @@ msgstr "" #: remmina/ui/remmina_main.glade:145 remmina/ui/remmina_main.glade:146 #: remmina/ui/remmina_main.glade:545 msgid "Homepage" -msgstr "" +msgstr "Sito web" #: remmina/ui/remmina_main.glade:152 remmina/ui/remmina_main.glade:153 #: remmina/ui/remmina_main.glade:555 msgid "Online Wiki" -msgstr "" +msgstr "Wiki del progetto" #: remmina/ui/remmina_main.glade:160 remmina/ui/remmina_main.glade:161 #: remmina/ui/remmina_main.glade:564 @@ -1673,29 +1673,29 @@ msgstr "" #: remmina/ui/remmina_main.glade:167 remmina/ui/remmina_main.glade:168 #: remmina/ui/remmina_main.glade:573 msgid "Donations" -msgstr "" +msgstr "Donazioni" #: remmina/ui/remmina_main.glade:174 remmina/ui/remmina_main.glade:175 #: remmina/ui/remmina_main.glade:583 msgid "Debug Window" -msgstr "" +msgstr "Finestra di debug" #: remmina/ui/remmina_main.glade:192 remmina/ui/remmina_main.glade:193 #: remmina/ui/remmina_main.glade:453 msgid "Export" -msgstr "" +msgstr "Esporta" #: remmina/ui/remmina_main.glade:202 remmina/ui/remmina_main.glade:203 msgid "Statusbar" -msgstr "" +msgstr "Barra di stato" #: remmina/ui/remmina_main.glade:210 remmina/ui/remmina_main.glade:211 msgid "List View" -msgstr "" +msgstr "Vista a elenco" #: remmina/ui/remmina_main.glade:219 remmina/ui/remmina_main.glade:220 msgid "Tree View" -msgstr "" +msgstr "Vista ad albero" #: remmina/ui/remmina_main.glade:291 msgid "search string or server name/ip address for quick connect" @@ -1754,23 +1754,23 @@ msgstr "" #: remmina/ui/remmina_preferences.glade:99 msgid "Remember last view mode for each connection" -msgstr "" +msgstr "Ricordare l'ultima modalità di visualizzazione per ogni connessione" #: remmina/ui/remmina_preferences.glade:116 msgid "Double-click action" -msgstr "" +msgstr "Azione del doppio clic" #: remmina/ui/remmina_preferences.glade:130 msgid "Open connection" -msgstr "" +msgstr "Apri una connessione" #: remmina/ui/remmina_preferences.glade:131 msgid "Edit settings" -msgstr "" +msgstr "Modifica impostazioni" #: remmina/ui/remmina_preferences.glade:144 msgid "Scale quality" -msgstr "" +msgstr "Qualità della scalatura" #: remmina/ui/remmina_preferences.glade:158 msgid "Nearest" @@ -1782,7 +1782,7 @@ msgstr "" #: remmina/ui/remmina_preferences.glade:160 msgid "Bilinear" -msgstr "" +msgstr "Bilineare" #: remmina/ui/remmina_preferences.glade:161 msgid "Hyper" @@ -1790,11 +1790,11 @@ msgstr "" #: remmina/ui/remmina_preferences.glade:174 msgid "Auto scroll step size" -msgstr "" +msgstr "Passo di avanzamento scroll automatico" #: remmina/ui/remmina_preferences.glade:198 msgid "Maximum recent items" -msgstr "" +msgstr "Numero massimo di elementi recenti" #: remmina/ui/remmina_preferences.glade:245 msgid "Configure resolutions" @@ -1802,7 +1802,7 @@ msgstr "" #: remmina/ui/remmina_preferences.glade:287 msgid "Screenshots folder" -msgstr "" +msgstr "Directory per screenshot" #: remmina/ui/remmina_preferences.glade:299 msgid "Choose the directory where you want to save Remmina screenshots." @@ -1818,7 +1818,7 @@ msgstr "" #: remmina/ui/remmina_preferences.glade:352 msgid "Always show tabs" -msgstr "" +msgstr "Mosta sempre le schede" #: remmina/ui/remmina_preferences.glade:367 msgid "Hide toolbar in tabbed interface" @@ -1826,7 +1826,7 @@ msgstr "" #: remmina/ui/remmina_preferences.glade:384 msgid "Default view mode" -msgstr "" +msgstr "Modalità di visualizzazione predefinita" #: remmina/ui/remmina_preferences.glade:398 msgid "Automatic" @@ -1846,7 +1846,7 @@ msgstr "" #: remmina/ui/remmina_preferences.glade:414 msgid "Tab interface" -msgstr "" +msgstr "Interfaccia a schede" #: remmina/ui/remmina_preferences.glade:428 msgid "Tab by groups" @@ -1894,7 +1894,7 @@ msgstr "" #: remmina/ui/remmina_preferences.glade:503 msgid "Fullscreen on the same monitor as the connection window" -msgstr "" +msgstr "Fullscreen nello stesso monitor della finestra della connessione" #: remmina/ui/remmina_preferences.glade:523 msgid "Peeking" @@ -1918,19 +1918,19 @@ msgstr "" #: remmina/ui/remmina_preferences.glade:580 msgid "Show new connection on top of the menu" -msgstr "" +msgstr "Mostrare le nuove connessioni in alto nel menu" #: remmina/ui/remmina_preferences.glade:596 msgid "Hide total count in group menu" -msgstr "" +msgstr "Nascondere il conteggio totale nel menu" #: remmina/ui/remmina_preferences.glade:612 msgid "Disable tray icon" -msgstr "" +msgstr "Disabilitare l'icona nell'area di notifica" #: remmina/ui/remmina_preferences.glade:629 msgid "Start Remmina in tray icon at user logon" -msgstr "" +msgstr "Avviare Remmina nel vassoio di sistema all'accesso dell'utente" #: remmina/ui/remmina_preferences.glade:645 msgid "Dark Tray Icon" @@ -1938,7 +1938,7 @@ msgstr "" #: remmina/ui/remmina_preferences.glade:649 msgid "Choose this if your theme panel is light." -msgstr "" +msgstr "Attiva questa opzione se il tema del tuo pannello è troppo chiaro." #: remmina/ui/remmina_preferences.glade:671 msgid "Applet" @@ -1946,19 +1946,19 @@ msgstr "" #: remmina/ui/remmina_preferences.glade:697 msgid "Host key" -msgstr "" +msgstr "Tasto host" #: remmina/ui/remmina_preferences.glade:753 msgid "Auto-fit window" -msgstr "" +msgstr "Adattare automaticamente la finestra" #: remmina/ui/remmina_preferences.glade:850 msgid "Grab keyboard" -msgstr "" +msgstr "Catturare la tastiera" #: remmina/ui/remmina_preferences.glade:934 msgid "Show / hide toolbar" -msgstr "" +msgstr "Mostrare/nascondere la barra degli strumenti" #: remmina/ui/remmina_preferences.glade:973 msgid "SCREENSHOT" @@ -1971,7 +1971,7 @@ msgstr "" #: remmina/ui/remmina_preferences.glade:1022 msgid "SSH tunnel local port" -msgstr "" +msgstr "Porta locale del tunnel SSH" #: remmina/ui/remmina_preferences.glade:1044 msgid "Parse ~/.ssh/config" @@ -2007,11 +2007,11 @@ msgstr "" #: remmina/ui/remmina_preferences.glade:1125 msgid "Font" -msgstr "" +msgstr "Carattere" #: remmina/ui/remmina_preferences.glade:1138 msgid "Colors" -msgstr "" +msgstr "Colori" #: remmina/ui/remmina_preferences.glade:1151 #: remmina/ui/remmina_preferences.glade:1302 @@ -2021,11 +2021,11 @@ msgstr "" #: remmina/ui/remmina_preferences.glade:1164 #: remmina/ui/remmina_preferences.glade:1316 msgid "Background color" -msgstr "" +msgstr "Colore sfondo" #: remmina/ui/remmina_preferences.glade:1177 msgid "Scrollback lines" -msgstr "" +msgstr "Righe di scorrimento all'indietro" #: remmina/ui/remmina_preferences.glade:1212 msgid "Use system default font" @@ -2130,3 +2130,7 @@ msgstr "" #: remmina/ui/remmina_mpc.glade:336 msgid "Domain\\Username" msgstr "" + +msgid "Save and Connect" +msgstr "Salva e connetti" +