mirror of https://github.com/OpenTTD/OpenTTD
Add: Allow translation of "(Directory)" and "(Parent directory)"
parent
ce06b03fac
commit
45e8b7a5bd
|
@ -17,6 +17,7 @@
|
||||||
#include "network/network_content.h"
|
#include "network/network_content.h"
|
||||||
#include "screenshot.h"
|
#include "screenshot.h"
|
||||||
#include "string_func.h"
|
#include "string_func.h"
|
||||||
|
#include "strings_func.h"
|
||||||
#include "tar_type.h"
|
#include "tar_type.h"
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <functional>
|
#include <functional>
|
||||||
|
@ -376,7 +377,8 @@ static void FiosGetFileList(SaveLoadOperation fop, fios_getlist_callback_proc *c
|
||||||
fios->type = FIOS_TYPE_PARENT;
|
fios->type = FIOS_TYPE_PARENT;
|
||||||
fios->mtime = 0;
|
fios->mtime = 0;
|
||||||
strecpy(fios->name, "..", lastof(fios->name));
|
strecpy(fios->name, "..", lastof(fios->name));
|
||||||
strecpy(fios->title, ".. (Parent directory)", lastof(fios->title));
|
SetDParamStr(0, "..");
|
||||||
|
GetString(fios->title, STR_SAVELOAD_PARENT_DIRECTORY, lastof(fios->title));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Show subdirectories */
|
/* Show subdirectories */
|
||||||
|
@ -392,7 +394,9 @@ static void FiosGetFileList(SaveLoadOperation fop, fios_getlist_callback_proc *c
|
||||||
fios->type = FIOS_TYPE_DIR;
|
fios->type = FIOS_TYPE_DIR;
|
||||||
fios->mtime = 0;
|
fios->mtime = 0;
|
||||||
strecpy(fios->name, d_name, lastof(fios->name));
|
strecpy(fios->name, d_name, lastof(fios->name));
|
||||||
seprintf(fios->title, lastof(fios->title), "%s" PATHSEP " (Directory)", d_name);
|
std::string dirname = std::string(d_name) + PATHSEP;
|
||||||
|
SetDParamStr(0, dirname.c_str());
|
||||||
|
GetString(fios->title, STR_SAVELOAD_DIRECTORY, lastof(fios->title));
|
||||||
str_validate(fios->title, lastof(fios->title));
|
str_validate(fios->title, lastof(fios->title));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2847,6 +2847,8 @@ STR_SAVELOAD_DETAIL_GRFSTATUS :{SILVER}NewGRF:
|
||||||
STR_SAVELOAD_FILTER_TITLE :{BLACK}Filter string:
|
STR_SAVELOAD_FILTER_TITLE :{BLACK}Filter string:
|
||||||
STR_SAVELOAD_OVERWRITE_TITLE :{WHITE}Overwrite File
|
STR_SAVELOAD_OVERWRITE_TITLE :{WHITE}Overwrite File
|
||||||
STR_SAVELOAD_OVERWRITE_WARNING :{YELLOW}Are you sure you want to overwrite the existing file?
|
STR_SAVELOAD_OVERWRITE_WARNING :{YELLOW}Are you sure you want to overwrite the existing file?
|
||||||
|
STR_SAVELOAD_DIRECTORY :{RAW_STRING} (Directory)
|
||||||
|
STR_SAVELOAD_PARENT_DIRECTORY :{RAW_STRING} (Parent directory)
|
||||||
|
|
||||||
STR_SAVELOAD_OSKTITLE :{BLACK}Enter a name for the savegame
|
STR_SAVELOAD_OSKTITLE :{BLACK}Enter a name for the savegame
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue