Skip to content

Commit

Permalink
Translated french error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
MCMic committed Mar 4, 2019
1 parent f58b0b9 commit 41769ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common/options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void Options::save() {
}
file << "pause :" << pause_key << endl;
} else {
cout << "impossible de sauvegarder le fichier de config (chemin : " << filename << ")" << endl;
cout << "Failed to save config file (path: " << filename << ")" << endl;
}
}

Expand Down Expand Up @@ -102,9 +102,9 @@ void Options::load() {
if(file.eof())
pause_key = SDL_SCANCODE_SPACE;

cout << "d'après le fichier de config, sound =" << soundConfig << " et fullscreen =" << fullscreenConfig << endl;
cout << "From config file, sound =" << soundConfig << " and fullscreen =" << fullscreenConfig << endl;
} else {
cout << "fichier de config \"" << config_file() << "\" inexistant, configuration par défaut appliquée" << endl;
cout << "Config file \"" << config_file() << "\" does not exists, default configuration applied" << endl;
soundConfig = true;
fullscreenConfig = false;
}
Expand Down

0 comments on commit 41769ad

Please sign in to comment.