mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 22:40:22 +00:00
Fix loading of Korean Translation
Thanks cocoblue(@shin6949) for bringing this to my attention.
This commit is contained in:
parent
8f13dc9433
commit
cf94b1caf0
4 changed files with 29 additions and 2 deletions
|
@ -341,6 +341,7 @@
|
|||
</BootstrapperPackage>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Resources\text\ko\lang_ko.txt" />
|
||||
<None Include="Resources\text\other\lang_pt.txt" />
|
||||
<None Include="Resources\text\ko\text_Games_ko.txt" />
|
||||
<None Include="Resources\text\ja\text_Games_ja.txt" />
|
||||
|
|
25
Properties/Resources.Designer.cs
generated
25
Properties/Resources.Designer.cs
generated
|
@ -14776,6 +14776,28 @@ namespace PKHeX.Properties {
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to ! PKHeX Interface Customization File
|
||||
///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable.
|
||||
///! lang_en.txt = English
|
||||
///! lang_jp.txt = Japanese
|
||||
///! lang_fr.txt = French
|
||||
///! lang_de.txt = German
|
||||
///! lang_es.txt = Spanish
|
||||
///! lang_it.txt = Italian
|
||||
///! lang_ko.txt = Korean
|
||||
///! Make sure that each edit has a ' = ' between Control name and new Text!
|
||||
///! For the Menu Bar, separate the DropDown Item names with ' ; '
|
||||
///!
|
||||
///! -----------------------------------------------------
|
||||
///- DO NO [rest of string was truncated]";.
|
||||
/// </summary>
|
||||
internal static string lang_ko {
|
||||
get {
|
||||
return ResourceManager.GetString("lang_ko", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to ! PKHeX Interface Customization File
|
||||
///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable.
|
||||
|
@ -15071,13 +15093,14 @@ namespace PKHeX.Properties {
|
|||
///Control Click on a Nickname/OT box to bring up the ingame-special characters.
|
||||
///
|
||||
///Control + Click on...
|
||||
///Species: Import Showdown/Smogon set from Clipboard.
|
||||
///Randomize IVs: Set all IVs to max.
|
||||
///Randomize EVs: Set all EVs to 0.
|
||||
///PP Ups Label: Set all PP Ups to 3.
|
||||
///Friendship Label: Reset Friendship
|
||||
///QR! to wrap text around QR code.
|
||||
///
|
||||
///Alt click QR! to load ekx data from a QR url loaded to your clipboar [rest of string was truncated]";.
|
||||
///Alt click QR! t [rest of string was truncated]";.
|
||||
/// </summary>
|
||||
internal static string shortcuts {
|
||||
get {
|
||||
|
|
|
@ -5890,4 +5890,7 @@
|
|||
<data name="lang_pt" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\text\other\lang_pt.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value>
|
||||
</data>
|
||||
<data name="lang_ko" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\text\ko\lang_ko.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value>
|
||||
</data>
|
||||
</root>
|
|
@ -12,7 +12,7 @@
|
|||
!
|
||||
! -----------------------------------------------------
|
||||
- DO NOT CHANGE THIS SECTION.
|
||||
! Form1 = PKHeX (번역 COCOBLUE)
|
||||
! Form1 = PKHeX
|
||||
- Change stuff below this line, not above.
|
||||
----------------Overall PKX Interface------------------
|
||||
Menu_File = 파일 ; 열기... ; 다른 이름으로 저장... ; 종료
|
||||
|
|
Loading…
Reference in a new issue