Navigation
API > API/Developer > API/Developer/Localization > API/Developer/Localization/FLocTextHelper
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool LoadArchive
(
const FString& InCulture, |
Attempt to load (or create) an archive file (native or foreign). | LocTextHelper.h | |
bool LoadArchive
(
const FString& InCulture, |
Attempt to load (or create) an foreign file (native or foreign) from the given file path. | LocTextHelper.h |
LoadArchive(const FString &, const ELocTextHelperLoadFlags, FText *)
Description
Attempt to load (or create) an archive file (native or foreign).
This requires that the given culture is in the native culture, or in the list of foreign cultures set during construction.
The manifest and native archive (if set) must have been loaded prior to loading foreign archives.
| Name | LoadArchive |
| Type | function |
| Header File | /Engine/Source/Developer/Localization/Public/LocTextHelper.h |
| Include Path | #include "LocTextHelper.h" |
| Source | /Engine/Source/Developer/Localization/Private/LocTextHelper.cpp |
bool LoadArchive
(
const FString & InCulture,
const ELocTextHelperLoadFlags InLoadFlags,
FText * OutError
)
True if the file was loaded (or created), false otherwise.
Parameters
| Name | Remarks |
|---|---|
| InCulture | Culture code of the archive to load. |
| InLoadFlags | Flags controlling whether we should load or create the archive file. |
| OutError | Optional text to be filled when an error occurs. |
LoadArchive(const FString &, const FString &, const ELocTextHelperLoadFlags, FText *)
Description
Attempt to load (or create) an foreign file (native or foreign) from the given file path.
This requires that the given culture is is in the native culture, or in the list of foreign cultures set during construction.
The manifest and native archive (if set) must have been loaded prior to loading foreign archives.
| Name | LoadArchive |
| Type | function |
| Header File | /Engine/Source/Developer/Localization/Public/LocTextHelper.h |
| Include Path | #include "LocTextHelper.h" |
| Source | /Engine/Source/Developer/Localization/Private/LocTextHelper.cpp |
bool LoadArchive
(
const FString & InCulture,
const FString & InArchiveFilePath,
const ELocTextHelperLoadFlags InLoadFlags,
FText * OutError
)
True if the file was loaded (or created), false otherwise.
Parameters
| Name | Remarks |
|---|---|
| InCulture | Culture code of the archive to load. |
| InArchiveFilePath | Full file path to load the archive from. |
| InLoadFlags | Flags controlling whether we should load or create the archive file. |
| OutError | Optional text to be filled when an error occurs. |