diff options
author | Piotr Drąg <piotrdrag@gmail.com> | 2017-01-28 01:41:56 +0100 |
---|---|---|
committer | Piotr Drąg <piotrdrag@gmail.com> | 2017-01-28 01:41:56 +0100 |
commit | 533f828d4d4dcbd44540a9403b80d793153428e3 (patch) | |
tree | 718b8715ed927230a3d3e968e3d3f9a8205eb84b /src/nautilus-file-utilities.c | |
parent | b062c8c203228847c6ee8cdd50a30d1ce2dadc85 (diff) | |
download | nautilus-533f828d4d4dcbd44540a9403b80d793153428e3.tar.gz |
Fix translator comments
They need to be exactly one line above a string to show up in .po files.
Diffstat (limited to 'src/nautilus-file-utilities.c')
-rw-r--r-- | src/nautilus-file-utilities.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nautilus-file-utilities.c b/src/nautilus-file-utilities.c index 51b9c716c..59add50e4 100644 --- a/src/nautilus-file-utilities.c +++ b/src/nautilus-file-utilities.c @@ -1116,9 +1116,9 @@ get_message_for_content_type (const char *content_type) description = g_content_type_get_description (content_type); /* Customize greeting for well-known content types */ - /* translators: these describe the contents of removable media */ if (strcmp (content_type, "x-content/audio-cdda") == 0) { + /* translators: these describe the contents of removable media */ message = g_strdup (_("Audio CD")); } else if (strcmp (content_type, "x-content/audio-dvd") == 0) @@ -1180,9 +1180,9 @@ get_message_for_two_content_types (const char * const *content_types) if (strcmp (content_types[0], "x-content/image-dcf") == 0 || strcmp (content_types[1], "x-content/image-dcf") == 0) { - /* translators: these describe the contents of removable media */ if (strcmp (content_types[0], "x-content/audio-player") == 0) { + /* translators: these describe the contents of removable media */ message = g_strdup (_("Contains music and photos")); } else if (strcmp (content_types[1], "x-content/audio-player") == 0) |