diff options
Diffstat (limited to 'src/lib/image_content.cc')
| -rw-r--r-- | src/lib/image_content.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/lib/image_content.cc b/src/lib/image_content.cc index 9259242a0..14a7c97d5 100644 --- a/src/lib/image_content.cc +++ b/src/lib/image_content.cc @@ -60,12 +60,15 @@ ImageContent::ImageContent (shared_ptr<const Film> f, shared_ptr<const cxml::Nod string ImageContent::summary () const { + string s = path_summary () + " "; /* Get the string() here so that the name does not have quotes around it */ if (still ()) { - return String::compose (_("%1 [still]"), path().filename().string()); + s += _("[still]"); + } else { + s += _("[moving images]"); } - return String::compose (_("%1 [moving images]"), path().filename().string()); + return s; } string |
