[gnome-disk-utility/wip/mdraid] Drop superfluous 'Using' in values for the 'Write-Intent Log' header



commit 777493fd9c215e2ba40d50aeeec201604dd375a8
Author: David Zeuthen <zeuthen gmail com>
Date:   Fri Sep 21 12:39:17 2012 -0400

    Drop superfluous 'Using' in values for the 'Write-Intent Log' header
    
    It's sufficient to just say 'External Bitmap' or 'Internal Bitmap'.
    
    Signed-off-by: David Zeuthen <zeuthen gmail com>

 src/disks/gduwindow.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/src/disks/gduwindow.c b/src/disks/gduwindow.c
index b3549df..3a44906 100644
--- a/src/disks/gduwindow.c
+++ b/src/disks/gduwindow.c
@@ -2226,19 +2226,19 @@ update_device_page_for_mdraid (GduWindow      *window,
     }
   else if (g_strcmp0 (bitmap_location, "none") == 0)
     {
-      /* Translators: Value for the 'Intent Log' field when no write-intent bitmap is used */
+      /* Translators: Value for the 'Write Intent Log' field when no write-intent bitmap is used */
       s = g_strdup (C_("mdraid-bitmap", "None"));
     }
   else if (g_str_has_prefix (bitmap_location, "file"))
     {
       /* TODO: may be file:/foo/bar in the future - convey it */
-      /* Translators: Value for the 'Intent Log' field when an external write-intent bitmap is used */
-      s = g_strdup (C_("mdraid-bitmap", "Using External Bitmap"));
+      /* Translators: Value for the 'Write Intent Log' field when an external write-intent bitmap is used */
+      s = g_strdup (C_("mdraid-bitmap", "External Bitmap"));
     }
   else
     {
-      /* Translators: Value for the 'Intent Log' field when an internal write-intent bitmap is used */
-      s = g_strdup (C_("mdraid-bitmap", "Using Internal Bitmap"));
+      /* Translators: Value for the 'Write Intent Log' field when an internal write-intent bitmap is used */
+      s = g_strdup (C_("mdraid-bitmap", "Internal Bitmap"));
     }
   set_markup (window,
               "devtab-drive-raid-bitmap-label",



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