[vlmc-devel] commit: Correcting typo: English rule for question mark is different than the French one. ( Hugo Beauzée-Luyssen )

git at videolan.org git at videolan.org
Wed Apr 14 23:48:36 CEST 2010


vlmc | branch: master | Hugo Beauzée-Luyssen <beauze.h at gmail.com> | Wed Apr 14 23:47:59 2010 +0200| [19b0df4637c681dab1b2a7fa2ff1042e6b0945d3] | committer: Hugo Beauzée-Luyssen 

Correcting typo: English rule for question mark is different than the French one.

No space between last letter and question mark.

> http://git.videolan.org/gitweb.cgi/vlmc.git/?a=commit;h=19b0df4637c681dab1b2a7fa2ff1042e6b0945d3
---

 src/Gui/MainWindow.cpp                |    2 +-
 src/Gui/export/RendererSettings.cpp   |    2 +-
 src/Gui/project/GuiProjectManager.cpp |    2 +-
 src/Gui/timeline/TracksScene.cpp      |    4 ++--
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/Gui/MainWindow.cpp b/src/Gui/MainWindow.cpp
index 2c52545..2eb2f5a 100644
--- a/src/Gui/MainWindow.cpp
+++ b/src/Gui/MainWindow.cpp
@@ -622,7 +622,7 @@ bool    MainWindow::restoreSession()
 
         if ( cleanQuit == false )
         {
-            QMessageBox::StandardButton res = QMessageBox::question( this, tr( "Crash recovery" ), tr( "VLMC didn't closed nicely. Do you wan't to recover your project ?" ),
+            QMessageBox::StandardButton res = QMessageBox::question( this, tr( "Crash recovery" ), tr( "VLMC didn't closed nicely. Do you wan't to recover your project?" ),
                                    QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes );
             if ( res == QMessageBox::Yes )
             {
diff --git a/src/Gui/export/RendererSettings.cpp b/src/Gui/export/RendererSettings.cpp
index 756fc4f..79a83d9 100644
--- a/src/Gui/export/RendererSettings.cpp
+++ b/src/Gui/export/RendererSettings.cpp
@@ -80,7 +80,7 @@ RendererSettings::accept()
         QMessageBox::StandardButton b =
                 QMessageBox::question( this, tr( "File already exists!" ),
                                        tr( "Output file already exists, do you want to "
-                                           "overwrite it ?" ),
+                                           "overwrite it?" ),
                                        QMessageBox::Yes | QMessageBox::No,
                                        QMessageBox::No );
         if ( b == QMessageBox::No )
diff --git a/src/Gui/project/GuiProjectManager.cpp b/src/Gui/project/GuiProjectManager.cpp
index 4f816e1..d37577e 100644
--- a/src/Gui/project/GuiProjectManager.cpp
+++ b/src/Gui/project/GuiProjectManager.cpp
@@ -68,7 +68,7 @@ GUIProjectManager::askForSaveIfModified()
     {
         QMessageBox msgBox;
         msgBox.setText( tr( "The project has been modified." ) );
-        msgBox.setInformativeText( tr( "Do you want to save it ?" ) );
+        msgBox.setInformativeText( tr( "Do you want to save it?" ) );
         msgBox.setStandardButtons( QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel );
         msgBox.setDefaultButton(QMessageBox::Save);
         int     ret = msgBox.exec();
diff --git a/src/Gui/timeline/TracksScene.cpp b/src/Gui/timeline/TracksScene.cpp
index 12fae9e..0f20db1 100644
--- a/src/Gui/timeline/TracksScene.cpp
+++ b/src/Gui/timeline/TracksScene.cpp
@@ -69,9 +69,9 @@ TracksScene::askRemoveSelectedItems()
 
     QString message;
     if ( selectedItems().size() == 1 )
-        message = tr("Confirm the deletion of the region ?");
+        message = tr("Confirm the deletion of the region?");
     else
-        message = tr("Confirm the deletion of those regions ?");
+        message = tr("Confirm the deletion of those regions?");
 
     QMessageBox::StandardButton b =
     QMessageBox::warning( tv, "Object deletion",



More information about the Vlmc-devel mailing list