mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-28 07:16:53 +00:00
i18n: Changed wording of messages about translations.dat file.
svn-id: r52261
This commit is contained in:
parent
7fd7689370
commit
ff06f0c9d5
@ -322,7 +322,7 @@ bool TranslationManager::checkHeader(File &in) {
|
||||
int ver;
|
||||
|
||||
if (!in.isOpen()) {
|
||||
warning("You re missing the 'translations.dat' file. GUI translation will not be available");
|
||||
warning("You are missing the 'translations.dat' file. GUI translation will not be available");
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -331,7 +331,7 @@ bool TranslationManager::checkHeader(File &in) {
|
||||
|
||||
// Check header
|
||||
if (strcmp(buf, "TRANSLATIONS")) {
|
||||
warning("File 'translations.dat' is corrupt. GUI translation will not be available");
|
||||
warning("Your 'translations.dat' file is corrupt. GUI translation will not be available");
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -339,7 +339,7 @@ bool TranslationManager::checkHeader(File &in) {
|
||||
ver = in.readByte();
|
||||
|
||||
if (ver != TRANSLATIONS_DAT_VER) {
|
||||
warning("File 'translations.dat' is wrong version. Expected %d but got %d. GUI translation will not be available", TRANSLATIONS_DAT_VER, ver);
|
||||
warning("Your 'translations.dat' file has a mismatching version, expected was %d but you got %d. GUI translation will not be available", TRANSLATIONS_DAT_VER, ver);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user