Added French translation. Thanks Fringale

Fixed English text

FossilOrigin-Name: 8bcd65e5fa2194a7edb5ddf56e5c9caddd7316cf
This commit is contained in:
kostas
2012-12-22 04:03:17 +00:00
parent 50fee5aab1
commit dc38db4452
8 changed files with 1346 additions and 24 deletions

View File

@@ -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)"));
}
//-----------------------------------------------------------------------------