[gnome-disk-utility] Drop Linux prefix for Linux filesystems
- From: David Zeuthen <davidz src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gnome-disk-utility] Drop Linux prefix for Linux filesystems
- Date: Fri, 4 Dec 2009 14:13:16 +0000 (UTC)
commit 55f45f8cb6f2b062179dcd70e76e3178f4131d72
Author: David Zeuthen <davidz redhat com>
Date: Fri Dec 4 09:11:44 2009 -0500
Drop Linux prefix for Linux filesystems
See https://bugzilla.gnome.org/show_bug.cgi?id=600996#c3 for details.
src/gdu/gdu-util.c | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
---
diff --git a/src/gdu/gdu-util.c b/src/gdu/gdu-util.c
index 36ff331..0a04d8b 100644
--- a/src/gdu/gdu-util.c
+++ b/src/gdu/gdu-util.c
@@ -231,10 +231,10 @@ gdu_util_get_fstype_for_display (const char *fstype, const char *fsversion, gboo
if (long_string) {
if (strlen (fsversion) > 0)
/* Translators: Ext2 is a filesystem type */
- s = g_strdup_printf (_("Linux Ext2 (version %s)"), fsversion);
+ s = g_strdup_printf (_("Ext2 (version %s)"), fsversion);
else
/* Translators: Ext2 is a filesystem type */
- s = g_strdup_printf (_("Linux Ext2"));
+ s = g_strdup_printf (_("Ext2"));
} else {
/* Translators: Ext2 is a filesystem type */
s = g_strdup (_("ext2"));
@@ -243,10 +243,10 @@ gdu_util_get_fstype_for_display (const char *fstype, const char *fsversion, gboo
if (long_string) {
if (strlen (fsversion) > 0)
/* Translators: Ext3 is a filesystem type */
- s = g_strdup_printf (_("Linux Ext3 (version %s)"), fsversion);
+ s = g_strdup_printf (_("Ext3 (version %s)"), fsversion);
else
/* Translators: Ext3 is a filesystem type */
- s = g_strdup_printf (_("Linux Ext3"));
+ s = g_strdup_printf (_("Ext3"));
} else {
/* Translators: Ext3 is a filesystem type */
s = g_strdup (_("ext3"));
@@ -255,10 +255,10 @@ gdu_util_get_fstype_for_display (const char *fstype, const char *fsversion, gboo
if (long_string) {
if (strlen (fsversion) > 0)
/* Translators: 'Journal' refers to a filesystem technology here, see 'journaling filesystems' */
- s = g_strdup_printf (_("Journal for Linux ext3 (version %s)"), fsversion);
+ s = g_strdup_printf (_("Journal for Ext3 (version %s)"), fsversion);
else
/* Translators: 'Journal' refers to a filesystem technology here, see 'journaling filesystems' */
- s = g_strdup_printf (_("Journal for Linux ext3"));
+ s = g_strdup_printf (_("Journal for Ext3"));
} else {
/* Translators: jbd is a filesystem type */
s = g_strdup (_("jbd"));
@@ -267,10 +267,10 @@ gdu_util_get_fstype_for_display (const char *fstype, const char *fsversion, gboo
if (long_string) {
if (strlen (fsversion) > 0)
/* Translators: ext4 is a filesystem type */
- s = g_strdup_printf (_("Linux Ext4 (version %s)"), fsversion);
+ s = g_strdup_printf (_("Ext4 (version %s)"), fsversion);
else
/* Translators: ext4 is a filesystem type */
- s = g_strdup_printf (_("Linux Ext4"));
+ s = g_strdup_printf (_("Ext4"));
} else {
/* Translators: Ext4 is a filesystem type */
s = g_strdup (_("ext4"));
@@ -279,10 +279,10 @@ gdu_util_get_fstype_for_display (const char *fstype, const char *fsversion, gboo
if (long_string) {
if (strlen (fsversion) > 0)
/* Translators: xfs is a filesystem type */
- s = g_strdup_printf (_("Linux XFS (version %s)"), fsversion);
+ s = g_strdup_printf (_("XFS (version %s)"), fsversion);
else
/* Translators: xfs is a filesystem type */
- s = g_strdup_printf (_("Linux XFS"));
+ s = g_strdup_printf (_("XFS"));
} else {
/* Translators: xfs is a filesystem type */
s = g_strdup (_("xfs"));
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]