added preliminary archive creation support.

This commit is contained in:
morkt
2014-07-24 05:43:20 +04:00
parent 56012447d8
commit 0a1f14e051
29 changed files with 568 additions and 58 deletions

View File

@@ -60,6 +60,15 @@ namespace GameRes.Formats.Strings {
}
}
/// <summary>
/// Looks up a localized string similar to Amaterasu Translations Muv-Luv archive.
/// </summary>
public static string AMIDescription {
get {
return ResourceManager.GetString("AMIDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Archive content is encrypted.
///Choose appropriate encryption scheme..
@@ -79,6 +88,42 @@ namespace GameRes.Formats.Strings {
}
}
/// <summary>
/// Looks up a localized string similar to âge proprietary image format.
/// </summary>
public static string GRPDescription {
get {
return ResourceManager.GetString("GRPDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Liar-soft proprietary script format.
/// </summary>
public static string GSCDescription {
get {
return ResourceManager.GetString("GSCDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to FrontWing game resource archive.
/// </summary>
public static string INTDescription {
get {
return ResourceManager.GetString("INTDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Numeric key should be a 32-bit hexadecimal integer.
/// </summary>
public static string INTKeyRequirement {
get {
return ResourceManager.GetString("INTKeyRequirement", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Numeric key.
/// </summary>
@@ -117,6 +162,60 @@ namespace GameRes.Formats.Strings {
}
}
/// <summary>
/// Looks up a localized string similar to Liar-soft image archive.
/// </summary>
public static string LWGDescription {
get {
return ResourceManager.GetString("LWGDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Nitro+ resource archive.
/// </summary>
public static string NPADescription {
get {
return ResourceManager.GetString("NPADescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Amaterasu Translations Muv-Luv script file.
/// </summary>
public static string SCRDescription {
get {
return ResourceManager.GetString("SCRDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Liar-soft game resource archive.
/// </summary>
public static string XFLDescription {
get {
return ResourceManager.GetString("XFLDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to KiriKiri game engine resource archive.
/// </summary>
public static string XP3Description {
get {
return ResourceManager.GetString("XP3Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Yu-Ris game engine resource archive.
/// </summary>
public static string YPFDescription {
get {
return ResourceManager.GetString("YPFDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 8-bit encryption key.
/// </summary>

View File

@@ -117,6 +117,9 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="AMIDescription" xml:space="preserve">
<value>Amaterasu Translations Muv-Luv archive</value>
</data>
<data name="ArcEncryptedNotice" xml:space="preserve">
<value>Archive content is encrypted.
Choose appropriate encryption scheme.</value>
@@ -124,6 +127,18 @@ Choose appropriate encryption scheme.</value>
<data name="ArcNoEncryption" xml:space="preserve">
<value>no encryption</value>
</data>
<data name="GRPDescription" xml:space="preserve">
<value>âge proprietary image format</value>
</data>
<data name="GSCDescription" xml:space="preserve">
<value>Liar-soft proprietary script format</value>
</data>
<data name="INTDescription" xml:space="preserve">
<value>FrontWing game resource archive</value>
</data>
<data name="INTKeyRequirement" xml:space="preserve">
<value>Numeric key should be a 32-bit hexadecimal integer</value>
</data>
<data name="INTLabelNumericKey" xml:space="preserve">
<value>Numeric key</value>
</data>
@@ -138,6 +153,24 @@ Choose appropriate encryption scheme.</value>
Enter archive encryption key or choose
predefined encryption scheme.</value>
</data>
<data name="LWGDescription" xml:space="preserve">
<value>Liar-soft image archive</value>
</data>
<data name="NPADescription" xml:space="preserve">
<value>Nitro+ resource archive</value>
</data>
<data name="SCRDescription" xml:space="preserve">
<value>Amaterasu Translations Muv-Luv script file</value>
</data>
<data name="XFLDescription" xml:space="preserve">
<value>Liar-soft game resource archive</value>
</data>
<data name="XP3Description" xml:space="preserve">
<value>KiriKiri game engine resource archive</value>
</data>
<data name="YPFDescription" xml:space="preserve">
<value>Yu-Ris game engine resource archive</value>
</data>
<data name="YPFLabelKey" xml:space="preserve">
<value>8-bit encryption key</value>
</data>

View File

@@ -124,6 +124,9 @@
<data name="ArcNoEncryption" xml:space="preserve">
<value>без шифрования</value>
</data>
<data name="INTKeyRequirement" xml:space="preserve">
<value>Цифровой ключ должен быть 32-битным шестнадцатиричным числом</value>
</data>
<data name="INTLabelNumericKey" xml:space="preserve">
<value>Цифровой ключ</value>
</data>