This repository has been archived by the owner on Jan 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d95bf63
commit 500331b
Showing
35 changed files
with
1,070 additions
and
316 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,67 @@ | ||
# UE4 Localizations Tool | ||
is a simple tool to edit unreal engine 4 text files. | ||
# UE4LocalizationsTool | ||
simple tool to edit unreal engine 4 text files. | ||
|
||
Author: amr shaheeen | ||
By: Amr Shaheen | ||
<hr> | ||
|
||
## Command Lines | ||
### for export single file use: | ||
``` | ||
UE4localizationsTool.exe export <(Locres/Uasset/Umap) FilePath> <Options> | ||
Example: | ||
UE4localizationsTool.exe export Actions.uasset | ||
``` | ||
### for import single file use: | ||
``` | ||
UE4localizationsTool.exe import <(txt) FilePath> <Options> | ||
Example: | ||
UE4localizationsTool.exe import Actions.uasset.txt | ||
``` | ||
### for import single file without rename it use: | ||
``` | ||
UE4localizationsTool.exe -import <(txt) FilePath> <Options> | ||
Example: | ||
UE4localizationsTool.exe -import Actions.uasset.txt | ||
``` | ||
|
||
### for export many files from folder use: | ||
``` | ||
UE4localizationsTool.exe exportall <Folder> <TxtFile> <Options> | ||
Example: | ||
UE4localizationsTool.exe exportall Actions text.txt | ||
``` | ||
### for import many files in folder use: | ||
``` | ||
UE4localizationsTool.exe importall <Folder> <TxtFile> <Options> | ||
Example: | ||
UE4localizationsTool.exe importall Actions text.txt | ||
``` | ||
### for import many files in folder without rename files use: | ||
``` | ||
UE4localizationsTool.exe -importall <Folder> <TxtFile> <Options> | ||
Example: | ||
UE4localizationsTool.exe -importall Actions text.txt | ||
``` | ||
|
||
### Options: (Remember to apply the same OPTIONS when importing) | ||
|
||
#### To use last filter you applied before in GUI use: (apply only in name table) | ||
``` | ||
-f or -filter | ||
Example: | ||
UE4localizationsTool.exe export Actions.uasset -filter | ||
``` | ||
|
||
#### To export file without including name table use: | ||
``` | ||
-nn or -NoName | ||
Example: | ||
UE4localizationsTool.exe export Actions.uasset -NoName | ||
``` | ||
#### To use method 2 use:(trying to catch text without using ue4 asset structure (for uasset and umap only)) | ||
``` | ||
-m2 or -method2 | ||
Examplemethod2 | ||
UE4localizationsTool.exe export Actions.uasset -method2 | ||
UE4localizationsTool.exe export Actions.uasset -method2 -NoName -filter | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<configSections> | ||
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" > | ||
<section name="UE4localizationsTool.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" /> | ||
</sectionGroup> | ||
</configSections> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2"/> | ||
</startup> | ||
<userSettings> | ||
<UE4localizationsTool.Properties.Settings> | ||
<setting name="DarkMode" serializeAs="String"> | ||
<value>False</value> | ||
</setting> | ||
</UE4localizationsTool.Properties.Settings> | ||
</userSettings> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.