summaryrefslogtreecommitdiff
path: root/src/nautilus-x-content-bar.c
diff options
context:
space:
mode:
authorWilliam Jon McCann <jmccann@redhat.com>2012-08-14 12:37:43 -0400
committerWilliam Jon McCann <jmccann@redhat.com>2012-08-14 12:52:47 -0400
commitefa6746816830f1e132220d0d70db40844f6186c (patch)
tree87e7bacda16fad7cb588374eb52e4ea4e465d214 /src/nautilus-x-content-bar.c
parentb37b6071ddb73fbf9b971d9ca44ddf1200bf60ff (diff)
downloadnautilus-efa6746816830f1e132220d0d70db40844f6186c.tar.gz
Correctly detect the type of software
Diffstat (limited to 'src/nautilus-x-content-bar.c')
-rw-r--r--src/nautilus-x-content-bar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nautilus-x-content-bar.c b/src/nautilus-x-content-bar.c
index 463ffc5d0..fae37678d 100644
--- a/src/nautilus-x-content-bar.c
+++ b/src/nautilus-x-content-bar.c
@@ -107,7 +107,7 @@ get_message_for_x_content_type (const char *x_content_type)
message = g_strdup (_("Contains digital photos"));
} else if (strcmp (x_content_type, "x-content/audio-player") == 0) {
message = g_strdup (_("Contains music"));
- } else if (strcmp (x_content_type, "x-content/software") == 0) {
+ } else if (strcmp (x_content_type, "x-content/unix-software") == 0) {
message = g_strdup (_("Contains software"));
} else {
/* fallback to generic greeting */