Translations: more fr strings translated

This commit is contained in:
Alexandre Quessy
2014-05-02 10:30:46 -04:00
parent 2574841b9c
commit ad66eaf650
3 changed files with 216 additions and 66 deletions
+5 -3
View File
@@ -203,8 +203,9 @@ void MainWindow::open()
if (okToContinue())
{
QString fileName = QFileDialog::getOpenFileName(this,
tr("Open project"), ".", tr("MapMap files (*." MAPMAP_EXTENSION ")"));
if (!fileName.isEmpty())
tr("Open project"), ".",
tr("MapMap files (*.%1)", MAPMAP_EXTENSION));
if (! fileName.isEmpty())
loadFile(fileName);
}
@@ -232,7 +233,8 @@ bool MainWindow::saveAs()
// Popul file dialog to choose filename.
QString fileName = QFileDialog::getSaveFileName(this, tr("Save project"),
".", tr("MapMap files (*." MAPMAP_EXTENSION ")"));
".",
tr("MapMap files (*.%1)", MAPMAP_EXTENSION));
// Restart video playback. XXX Hack
videoTimer->start();