mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-31 16:03:24 +00:00
800fc0722d
Now static data is directly stored inside source code files which allows the tool to generate kyra.dat without any additional input. This will make supporting fan translations easier, since only the localized strings have to be added and an appropriate game entry has to be added.
16 lines
526 B
C
16 lines
526 B
C
static const char *const kLoLSeqplayStringsDOSDemoEnglish[10] = {
|
|
"The Lands have become perilous",
|
|
"to travellers",
|
|
"King Richard holds the strength",
|
|
"to defeat Sorceress Scotia!",
|
|
"You have the ability to restore",
|
|
"hope to the People",
|
|
"Cruel and hideous monsters",
|
|
"will hinder your quest...",
|
|
"Will you accept the challenge ?",
|
|
"Scotia awaits..."
|
|
};
|
|
|
|
static const StringListProvider kLoLSeqplayStringsDOSDemoEnglishProvider = { ARRAYSIZE(kLoLSeqplayStringsDOSDemoEnglish), kLoLSeqplayStringsDOSDemoEnglish };
|
|
|