[gnome-commander] i18n



commit 6cd5d8e06aabc483c896d5bcf620174a89e2d9a8
Author: Piotr Eljasiak <epiotr src gnome org>
Date:   Sat Sep 17 12:26:59 2011 +0200

    i18n

 src/dialogs/gnome-cmd-edit-bookmark-dialog.cc |    4 ++--
 src/gnome-cmd-file-list.cc                    |    4 ++--
 src/gnome-cmd-user-actions.cc                 |    4 ++--
 src/utils.cc                                  |    2 +-
 4 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/src/dialogs/gnome-cmd-edit-bookmark-dialog.cc b/src/dialogs/gnome-cmd-edit-bookmark-dialog.cc
index 3cd8fec..515b293 100644
--- a/src/dialogs/gnome-cmd-edit-bookmark-dialog.cc
+++ b/src/dialogs/gnome-cmd-edit-bookmark-dialog.cc
@@ -39,7 +39,7 @@ static void response_callback (GtkDialog *dialog, int response_id, gpointer unus
                 if (!name || !*name)
                 {
                     g_signal_stop_emission_by_name (dialog, "response");
-                    gnome_cmd_show_message (GTK_WINDOW (dialog), _("Bookmark name is missing"));
+                    gnome_cmd_show_message (GTK_WINDOW (dialog), _("Bookmark name is missing."));
                     break;
                 }
 
@@ -48,7 +48,7 @@ static void response_callback (GtkDialog *dialog, int response_id, gpointer unus
                 if (!path || !*path)
                 {
                     g_signal_stop_emission_by_name (dialog, "response");
-                    gnome_cmd_show_message (GTK_WINDOW (dialog), _("Bookmark target is missing"));
+                    gnome_cmd_show_message (GTK_WINDOW (dialog), _("Bookmark target is missing."));
                     break;
                 }
             }
diff --git a/src/gnome-cmd-file-list.cc b/src/gnome-cmd-file-list.cc
index 7d6d0cf..c2527df 100644
--- a/src/gnome-cmd-file-list.cc
+++ b/src/gnome-cmd-file-list.cc
@@ -2144,7 +2144,7 @@ void gnome_cmd_file_list_view (GnomeCmdFileList *fl, gint internal_viewer)
     if (!f)  return;
 
     if (f->info->type == GNOME_VFS_FILE_TYPE_DIRECTORY)
-        gnome_cmd_show_message (*main_win, _("Not an ordinary file"), f->info->name);
+        gnome_cmd_show_message (*main_win, _("Not an ordinary file."), f->info->name);
     else
         gnome_cmd_file_view (f, internal_viewer);
 }
@@ -2159,7 +2159,7 @@ void gnome_cmd_file_list_edit (GnomeCmdFileList *fl)
     if (!f)  return;
 
     if (f->info->type == GNOME_VFS_FILE_TYPE_DIRECTORY)
-        gnome_cmd_show_message (*main_win, _("Not an ordinary file"), f->info->name);
+        gnome_cmd_show_message (*main_win, _("Not an ordinary file."), f->info->name);
     else
         gnome_cmd_file_edit (f);
 }
diff --git a/src/gnome-cmd-user-actions.cc b/src/gnome-cmd-user-actions.cc
index 189d68e..6360bef 100644
--- a/src/gnome-cmd-user-actions.cc
+++ b/src/gnome-cmd-user-actions.cc
@@ -1220,12 +1220,12 @@ void command_open_terminal_as_root (GtkMenuItem *menuitem, gpointer not_used)
         GError *error = NULL;
 
         if (!g_spawn_async (dpath, argv, NULL, G_SPAWN_STDOUT_TO_DEV_NULL, NULL, NULL, NULL, &error))
-            gnome_cmd_error_message (_("Unable to open terminal in root mode"), error);
+            gnome_cmd_error_message (_("Unable to open terminal in root mode."), error);
 
         g_free (dpath);
     }
     else
-        gnome_cmd_show_message (NULL, _("xdg-su, gksu, gnomesu, kdesu or beesu is not found"));
+        gnome_cmd_show_message (NULL, _("xdg-su, gksu, gnomesu, kdesu or beesu is not found."));
 
     g_strfreev (argv);
 }
diff --git a/src/utils.cc b/src/utils.cc
index cbfc260..6646acb 100644
--- a/src/utils.cc
+++ b/src/utils.cc
@@ -1004,7 +1004,7 @@ gchar *get_temp_download_filepath (const gchar *fname)
         {
             g_free (tmp_file_dir_template);
 
-            gnome_cmd_show_message (NULL, _("Failed to create a directory in which to store temporary files"), strerror (errno));
+            gnome_cmd_show_message (NULL, _("Failed to create a directory in which to store temporary files."), strerror (errno));
 
             return NULL;
         }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]