Normalise labelling of types a bit.
authorCarl Hetherington <cth@carlh.net>
Fri, 19 Jul 2013 12:42:27 +0000 (13:42 +0100)
committerCarl Hetherington <cth@carlh.net>
Fri, 19 Jul 2013 12:42:27 +0000 (13:42 +0100)
src/lib/ffmpeg_content.cc
src/lib/imagemagick_content.cc
src/lib/sndfile_content.cc

index ebad8c8bdccb48d33d23d5556474c685e3d155fa..8419fd31fe379bcae72c213a176f5dae6a678e12 100644 (file)
@@ -165,7 +165,7 @@ FFmpegContent::examine (shared_ptr<Job> job)
 string
 FFmpegContent::summary () const
 {
-       return String::compose (_("Movie: %1"), file().filename().string());
+       return String::compose (_("%1 [movie]"), file().filename().string());
 }
 
 string
index d427e00b2e3f40211b5d33226d89ba905154174a..0c4e8401562215babbde28eb4fbe0dc38b7df621 100644 (file)
@@ -48,7 +48,7 @@ ImageMagickContent::ImageMagickContent (shared_ptr<const Film> f, shared_ptr<con
 string
 ImageMagickContent::summary () const
 {
-       return String::compose (_("Image: %1"), file().filename().string());
+       return String::compose (_("%1 [still]"), file().filename().string());
 }
 
 bool
index 7e6d56a9e4c5eda1c91d94d6eea341f725bcdc31..549af09b10cd116857d9748f29102dca90f39b93 100644 (file)
@@ -54,7 +54,7 @@ SndfileContent::SndfileContent (shared_ptr<const Film> f, shared_ptr<const cxml:
 string
 SndfileContent::summary () const
 {
-       return String::compose (_("Sound file: %1"), file().filename().string());
+       return String::compose (_("%1 [audio]"), file().filename().string());
 }
 
 string