diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-01-07 13:46:59 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-01-07 13:46:59 +0000 |
| commit | 000c9522d75b1fcf6ee590af33f23876b4b3b333 (patch) | |
| tree | c95539cb44ebe38f0bbc20d5a39e5b8d832a2cb3 /src | |
| parent | 228fbab81a5f093e9265d565c1110582c363def3 (diff) | |
Don't translate technical_summary().
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/video_content.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index a76ddcd39..077972fab 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -359,7 +359,7 @@ string VideoContent::technical_summary () const { string s = String::compose ( - "video: length %1, size %2x%3, rate %4", + N_("video: length %1, size %2x%3, rate %4"), video_length_after_3d_combine().seconds(), video_size().width, video_size().height, @@ -367,7 +367,7 @@ VideoContent::technical_summary () const ); if (sample_aspect_ratio ()) { - s += String::compose (_(", sample aspect ratio %1"), (sample_aspect_ratio().get ())); + s += String::compose (N_(", sample aspect ratio %1"), (sample_aspect_ratio().get ())); } return s; |
