diff options
Diffstat (limited to 'src/wx/content_properties_dialog.cc')
| -rw-r--r-- | src/wx/content_properties_dialog.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/content_properties_dialog.cc b/src/wx/content_properties_dialog.cc index 76de75ea6..45593fd5b 100644 --- a/src/wx/content_properties_dialog.cc +++ b/src/wx/content_properties_dialog.cc @@ -40,7 +40,7 @@ ContentPropertiesDialog::ContentPropertiesDialog (wxWindow* parent, shared_ptr<C if (video) { add_property ( _("Video length"), - std_to_wx (raw_convert<string> (video->video_length ().frames (video->video_frame_rate ()))) + " " + _("video frames") + std_to_wx (raw_convert<string> (video->video_length ())) + " " + _("video frames") ); add_property ( _("Video size"), @@ -60,7 +60,7 @@ ContentPropertiesDialog::ContentPropertiesDialog (wxWindow* parent, shared_ptr<C ); add_property ( _("Audio length"), - std_to_wx (raw_convert<string> (audio->audio_length().frames (audio->audio_frame_rate ()))) + " " + _("audio frames") + std_to_wx (raw_convert<string> (audio->audio_length())) + " " + _("audio frames") ); } |
