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:
authorAllan Nordhøy <epost@anotheragency.no>2021-10-27 08:22:15 +0300
committerAntenore Gatta (tmow) <antenore@simbiosi.org>2021-10-27 08:22:15 +0300
commit84f687d1b1979ca5f4e00067e21352e975383c6e (patch)
tree292e3b3b9e20ffe9cdb7c65159e5820e71de286e /src/remmina_file_manager.c
parent22afd07de7055b32742dff6c5a36ff45ad29adb2 (diff)
L10n: grammar, spelling, typos
Diffstat (limited to 'src/remmina_file_manager.c')
-rw-r--r--src/remmina_file_manager.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/remmina_file_manager.c b/src/remmina_file_manager.c
index ce9f37aeb..bc8918e73 100644
--- a/src/remmina_file_manager.c
+++ b/src/remmina_file_manager.c
@@ -107,9 +107,9 @@ static gboolean remmina_file_manager_do_copy(const char *src_path, const char *d
/**
* It creates the Remmina data and cache folders
*
- * If it finds the legacy ~/.remmina folder it copies the connection profiles in the new folder.
+ * If it finds the legacy ~/.remmina folder it copies the connection profiles into the new folder.
*
- * If it finds default profiles in the XDG_DATA_DIRS it copies the profiles in the user data folder.
+ * If it finds default profiles in the XDG_DATA_DIRS it copies the profiles into the user data-folder.
*/
void remmina_file_manager_init(void)
{
@@ -122,16 +122,16 @@ void remmina_file_manager_init(void)
/* Get and create the XDG_DATA_HOME directory */
remminadir = remmina_pref_get_value("datadir_path");
if (g_mkdir_with_parents(remminadir, 0750) == 0) {
- REMMINA_DEBUG ("Remmina data folder %s initialized successfully", remminadir);
+ REMMINA_DEBUG ("Initialized the \"%s\" data folder", remminadir);
g_free(remminadir), remminadir = NULL;
} else {
g_free(remminadir), remminadir = NULL;
/* Get and create the XDG_DATA_HOME directory */
remminadir = g_build_path("/", g_get_user_data_dir(), "remmina", NULL);
if (g_mkdir_with_parents(remminadir, 0750) == 0)
- REMMINA_DEBUG ("Remmina data folder %s initialized successfully", remminadir);
+ REMMINA_DEBUG ("Initialized the \"%s\" data folder", remminadir);
else
- REMMINA_CRITICAL("Cannot create data folder %s", remminadir);
+ REMMINA_CRITICAL("Cannot create the \"%s\" data folder", remminadir);
g_free(remminadir), remminadir = NULL;
}
/* Create the XDG_CACHE_HOME directory */