Navigation
API > API/Developer > API/Developer/Localization > API/Developer/Localization/FLocTextHelper
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool LoadNativeArchive
(
const ELocTextHelperLoadFlags InLoadFlags, |
Attempt to load (or create) the native archive file. | LocTextHelper.h | |
bool LoadNativeArchive
(
const FString& InArchiveFilePath, |
Attempt to load (or create) the native archive file from the given file path. | LocTextHelper.h |
LoadNativeArchive(const ELocTextHelperLoadFlags, FText *)
Description
Attempt to load (or create) the native archive file.
This requires that the native culture was set during construction.
The manifest must have been loaded prior to loading archives.
| Name | LoadNativeArchive |
| 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 LoadNativeArchive
(
const ELocTextHelperLoadFlags InLoadFlags,
FText * OutError
)
True if the file was loaded (or created), false otherwise.
Parameters
| Name | Remarks |
|---|---|
| InLoadFlags | Flags controlling whether we should load or create the archive file. |
| OutError | Optional text to be filled when an error occurs. |
LoadNativeArchive(const FString &, const ELocTextHelperLoadFlags, FText *)
Description
Attempt to load (or create) the native archive file from the given file path.
This requires that the native culture was set during construction.
The manifest must have been loaded prior to loading archives.
| Name | LoadNativeArchive |
| 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 LoadNativeArchive
(
const FString & InArchiveFilePath,
const ELocTextHelperLoadFlags InLoadFlags,
FText * OutError
)
True if the file was loaded (or created), false otherwise.
Parameters
| Name | Remarks |
|---|---|
| InArchiveFilePath | Full file path to read 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. |