recorder: Move the dot out of the translateable string

This makes sure translators do not mess up with it.
This commit is contained in:
Adel Gadllah 2012-02-26 18:09:49 +01:00
parent d2b0706c40
commit 0065da61bd

View File

@ -112,7 +112,7 @@ function _initRecorder() {
recorder.set_framerate(recorderSettings.get_int('framerate'));
/* Translators: this is a filename used for screencast recording */
// xgettext:no-c-format
recorder.set_filename(_("Screencast from %d %t.") + recorderSettings.get_string('file-extension'));
recorder.set_filename(_("Screencast from %d %t") + '.' + recorderSettings.get_string('file-extension'));
let pipeline = recorderSettings.get_string('pipeline');
if (!pipeline.match(/^\s*$/))