Skip to content

Commit

Permalink
Add support for French option in UI.
Browse files Browse the repository at this point in the history
  • Loading branch information
vrruiz committed Dec 15, 2016
1 parent 664d478 commit 7f6bc16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -504,8 +504,9 @@ void MainWindow::actionSettings() {
QString defaultLanguage = settings->defaultLanguage();
// Supported list of languages
QStringList languageList;
languageList << "en-GB" << "ca-ES" << "es-ES" << "eu-ES" << "gl-ES"
<< "it-IT" << "pl-PL" << "pt-BR" << "pt-PT" << "ru";
languageList << "en-GB" << "ca-ES" << "es-ES" << "eu-ES"
<< "fr-FR" << "gl-ES" << "it-IT" << "pl-PL"
<< "pt-BR" << "pt-PT" << "ru";
SettingsDialog settingsDialog(settings, languageList, this);
int result = settingsDialog.exec();
if (result && settingsDialog.changed()) {
Expand Down
1 change: 1 addition & 0 deletions visualino.pro
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ TRANSLATIONS = \
ts/visualino_ca-es.ts \
ts/visualino_es-es.ts \
ts/visualino_eu-es.ts \
ts/visualino_fr-fr.ts \
ts/visualino_gl-es.ts \
ts/visualino_it-it.ts \
ts/visualino_pl-pl.ts \
Expand Down

0 comments on commit 7f6bc16

Please sign in to comment.