This commit is contained in:
iAmAsval 2020-09-26 19:58:51 +02:00
parent 5aea683c8f
commit 0d2c489360
5 changed files with 17 additions and 9 deletions

View File

@ -204,7 +204,6 @@
<Resource Include="Resources\power.png" />
<Resource Include="Resources\progress-download.png" />
<Resource Include="Resources\refresh.png" />
<Resource Include="Resources\rotate-3d.png" />
<Resource Include="Resources\settings.png" />
<Resource Include="Resources\share-all.png" />
<Resource Include="Resources\share.png" />

View File

@ -754,9 +754,9 @@ namespace FModel.Properties {
/// <summary>
/// Recherche une chaîne localisée semblable à • Yanteh • Maiky
///• FunGames • HYPEX
///• Alexander • Netu
///• SexyNutella.
///• FunGames • HYPEX
///• Alexander • Netu
///• SexyNutella • imatrix.
/// </summary>
public static string DonatorsFDetails {
get {

View File

@ -778,4 +778,13 @@
<data name="WithPosition" xml:space="preserve">
<value>位置/値</value>
</data>
<data name="MaybeLater" xml:space="preserve">
<value>またあとで</value>
</data>
<data name="NoKeyWarning" xml:space="preserve">
<value>暗号化された.PAKファイルが見つかりました. 暗号化を解除するには、有効なAES暗号化キーを指定してください</value>
</data>
<data name="SkipThisVersion" xml:space="preserve">
<value>このバージョンをスキップ</value>
</data>
</root>

View File

@ -351,9 +351,9 @@ It's now the most used free software to leak on Fortnite.</value>
</data>
<data name="DonatorsFDetails" xml:space="preserve">
<value>• Yanteh • Maiky
• FunGames • HYPEX
• Alexander • Netu
• SexyNutella</value>
• FunGames • HYPEX
• Alexander • Netu
• SexyNutella • imatrix</value>
<comment>Do not translate</comment>
</data>
<data name="DownloadError" xml:space="preserve">

View File

@ -47,7 +47,7 @@ namespace FModel.Windows.Launcher
ComboBoxVm.gamesCbViewModel.Add(new ComboBoxViewModel { Id = i++, Content = "Fortnite [EGL2]", Property = egl2FilesPath });
}
ComboBoxVm.gamesCbViewModel.Add(new ComboBoxViewModel { Id = i++, Content = "Fortnite [LIVE]", Property = "latest.manifest" });
ComboBoxVm.gamesCbViewModel.Add(new ComboBoxViewModel { Id = i++, Content = "Fortnite [LIVE]", Property = "donotedit-youcanteditanyway.manifest" });
string valorantFilesPath = Paks.GetValorantPakFilesPath();
if (!string.IsNullOrEmpty(valorantFilesPath))
@ -141,7 +141,7 @@ namespace FModel.Windows.Launcher
{
if (e.Source is TextBox text)
{
text.IsReadOnly = text.Text == "latest.manifest";
text.IsReadOnly = text.Text == "donotedit-youcanteditanyway.manifest";
}
}
}