diff --git a/src/gui/about_dialog/about_dialog.ui b/src/gui/about_dialog/about_dialog.ui
index abfd1bc5cf0e063d23b5cb91ba07e6dd878285e3..c843d538c998ac16b6efb1344caf468821d29c85 100644
--- a/src/gui/about_dialog/about_dialog.ui
+++ b/src/gui/about_dialog/about_dialog.ui
@@ -59,7 +59,7 @@
        <item>
         <widget class="QLabel" name="label">
          <property name="text">
-          <string>X!Tandem Pipeline C++</string>
+          <string>X!TandemPipeline C++</string>
          </property>
          <property name="scaledContents">
           <bool>true</bool>
@@ -75,7 +75,7 @@
 &lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
 p, li { white-space: pre-wrap; }
 &lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'Cantarell'; font-size:11pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;X!Tandem Pipeline C++ is developped by PAPPSO team (&lt;a href=&quot;http://pappso.inra.fr&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://pappso.inra.fr&lt;/span&gt;&lt;/a&gt;).&lt;/p&gt;
+&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;X!TandemPipeline C++ is developped by PAPPSO team (&lt;a href=&quot;http://pappso.inra.fr&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://pappso.inra.fr&lt;/span&gt;&lt;/a&gt;).&lt;/p&gt;
 &lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
 &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;This software is distributed under the terms of the GNU General Public License.&lt;/p&gt;
 &lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
diff --git a/src/gui/load_results_dialog/loadresultsdialog.cpp b/src/gui/load_results_dialog/loadresultsdialog.cpp
index cbaaa9d683335ecdbcc670b9e1df69eae11a21f7..3a34fc5410a16c34c720718c276d0b99f2104e7b 100644
--- a/src/gui/load_results_dialog/loadresultsdialog.cpp
+++ b/src/gui/load_results_dialog/loadresultsdialog.cpp
@@ -96,7 +96,7 @@ void LoadResultsDialog::chooseFiles() {
         QString default_location = settings.value("path/identificationfiles", "").toString();
 
         QStringList filenames = QFileDialog::getOpenFileNames(this,tr("identification files"),default_location,
-                                tr("X!Tandem files (*.xml);;mzIdentML files (*.mzid);;pepxml files (*.pep);;all files (*)") );
+                                tr("X!Tandem, mzIdentML or pepxml files (*.xml *.mzid *.pep);;all files (*)") );
 
         if (filenames.size() > 0) {
             settings.setValue("path/identificationfiles", QFileInfo(filenames[0]).absolutePath());