Added French translation. Thanks Fringale
Fixed English text FossilOrigin-Name: 8bcd65e5fa2194a7edb5ddf56e5c9caddd7316cf
This commit is contained in:
@ -458,7 +458,7 @@ void MainWindow::on_actionCloseRepository_triggered()
|
||||
if(getRepoStatus()!=REPO_OK)
|
||||
return;
|
||||
|
||||
if(QMessageBox::Yes !=DialogQuery(this, tr("Close Workspace"), tr("Are you sure want to close this workspace?")))
|
||||
if(QMessageBox::Yes !=DialogQuery(this, tr("Close Workspace"), tr("Are you sure you want to close this workspace?")))
|
||||
return;
|
||||
|
||||
// Close Repo
|
||||
@ -1958,6 +1958,7 @@ void MainWindow::on_actionAbout_triggered()
|
||||
tr("Translations with the help of:") + "\n"
|
||||
"stayawake (German de_DE)\n"
|
||||
"djnavas (Spanish es_ES)\n"
|
||||
"Fringale (French fr_FR)\n"
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -141,17 +141,18 @@ void SettingsDialog::on_btnSelectGMerge_clicked()
|
||||
//-----------------------------------------------------------------------------
|
||||
void SettingsDialog::on_btnClearMessageHistory_clicked()
|
||||
{
|
||||
if(DialogQuery(this, tr("Clear Commit Message History"), tr("Are you sure want to clear the commit message history?"))==QMessageBox::Yes)
|
||||
if(DialogQuery(this, tr("Clear Commit Message History"), tr("Are you sure you want to clear the commit message history?"))==QMessageBox::Yes)
|
||||
settings->SetValue(FUEL_SETTING_COMMIT_MSG, QStringList());
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
void SettingsDialog::CreateLangMap()
|
||||
{
|
||||
langMap.append(LangMap("en_US", "English (US)"));
|
||||
langMap.append(LangMap("es_ES", "Spanish (ES)"));
|
||||
langMap.append(LangMap("de_DE", "German (DE)"));
|
||||
langMap.append(LangMap("el_GR", "Greek"));
|
||||
langMap.append(LangMap("en_US", "English (US)"));
|
||||
langMap.append(LangMap("es_ES", "Spanish (ES)"));
|
||||
langMap.append(LangMap("fr_FR", "French (FR)"));
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user