diff --git a/src/NexusMods.App.UI/Assets/Pictograms/game-3d.svg b/src/NexusMods.App.UI/Assets/Pictograms/game-3d.svg
new file mode 100644
index 0000000000..a585fbda7e
--- /dev/null
+++ b/src/NexusMods.App.UI/Assets/Pictograms/game-3d.svg
@@ -0,0 +1,53 @@
+
diff --git a/src/NexusMods.App.UI/Controls/EmptyState.cs b/src/NexusMods.App.UI/Controls/EmptyState.cs
index 9396c7fe7f..bea5fed1b2 100644
--- a/src/NexusMods.App.UI/Controls/EmptyState.cs
+++ b/src/NexusMods.App.UI/Controls/EmptyState.cs
@@ -1,4 +1,5 @@
using Avalonia;
+using Avalonia.Controls;
using Avalonia.Controls.Metadata;
using Avalonia.Controls.Primitives;
using Avalonia.Metadata;
@@ -9,6 +10,9 @@ namespace NexusMods.App.UI.Controls;
[PseudoClasses(":active", ":icon")]
public class EmptyState : TemplatedControl
{
+ private TextBlock? _header;
+ private UnifiedIcon? _icon;
+
public static readonly StyledProperty IsActiveProperty = AvaloniaProperty.Register(nameof(IsActive));
public static readonly StyledProperty IconProperty = AvaloniaProperty.Register(nameof(Icon));
@@ -60,7 +64,8 @@ protected override void OnPropertyChanged(AvaloniaPropertyChangedEventArgs chang
{
PseudoClasses.Add(":active");
}
- } else if (change.Property == IconProperty)
+ }
+ else if (change.Property == IconProperty)
{
PseudoClasses.Remove(":icon");
@@ -68,8 +73,40 @@ protected override void OnPropertyChanged(AvaloniaPropertyChangedEventArgs chang
{
PseudoClasses.Add(":icon");
}
+
+ UpdateIconVisibility();
+ }
+ else if (change.Property == HeaderProperty)
+ {
+ UpdateHeaderVisibility();
}
base.OnPropertyChanged(change);
}
+
+ protected override void OnApplyTemplate(TemplateAppliedEventArgs e)
+ {
+ _header = e.NameScope.Find("HeaderTextBlock");
+ _icon = e.NameScope.Find("Icon");
+
+ if (_header is not null)
+ UpdateHeaderVisibility();
+
+ if (_icon is not null)
+ UpdateIconVisibility();
+
+ base.OnApplyTemplate(e);
+ }
+
+ private void UpdateHeaderVisibility()
+ {
+ if (_header is not null)
+ _header.IsVisible = !string.IsNullOrEmpty(Header);
+ }
+
+ private void UpdateIconVisibility()
+ {
+ if (_icon is not null)
+ _icon.IsVisible = Icon is not null;
+ }
}
diff --git a/src/NexusMods.App.UI/Controls/GameWidget/GameWidget.axaml b/src/NexusMods.App.UI/Controls/GameWidget/GameWidget.axaml
index bbb93bc294..444c5f89c6 100644
--- a/src/NexusMods.App.UI/Controls/GameWidget/GameWidget.axaml
+++ b/src/NexusMods.App.UI/Controls/GameWidget/GameWidget.axaml
@@ -76,7 +76,7 @@
Text="{x:Static resources:Language.GameWidget__Add_game}"
LeftIcon="{x:Static icons:IconValues.Add}"
ShowIcon="Left"
- Type="Secondary"
+ Type="Primary"
Fill="Strong" />
diff --git a/src/NexusMods.App.UI/Pages/LibraryPage/LibraryView.axaml b/src/NexusMods.App.UI/Pages/LibraryPage/LibraryView.axaml
index d37a119b2c..8d12e32dd8 100644
--- a/src/NexusMods.App.UI/Pages/LibraryPage/LibraryView.axaml
+++ b/src/NexusMods.App.UI/Pages/LibraryPage/LibraryView.axaml
@@ -9,6 +9,7 @@
xmlns:resources="clr-namespace:NexusMods.App.UI.Resources"
xmlns:icons="clr-namespace:NexusMods.Icons;assembly=NexusMods.Icons"
xmlns:controls="clr-namespace:NexusMods.App.UI.Controls"
+ xmlns:navigation="clr-namespace:NexusMods.App.UI.Controls.Navigation"
mc:Ignorable="d" d:DesignWidth="1000" d:DesignHeight="450"
x:Class="NexusMods.App.UI.Pages.LibraryPage.LibraryView">
@@ -79,18 +80,16 @@
-
+
-
-
-
+
+
+
diff --git a/src/NexusMods.App.UI/Pages/LibraryPage/LibraryView.axaml.cs b/src/NexusMods.App.UI/Pages/LibraryPage/LibraryView.axaml.cs
index 74d70cc4ef..e3065c8405 100644
--- a/src/NexusMods.App.UI/Pages/LibraryPage/LibraryView.axaml.cs
+++ b/src/NexusMods.App.UI/Pages/LibraryPage/LibraryView.axaml.cs
@@ -52,14 +52,11 @@ public LibraryView()
this.OneWayBind(ViewModel, vm => vm.Adapter.IsSourceEmpty.Value, view => view.EmptyState.IsActive)
.AddTo(disposables);
- this.OneWayBind(ViewModel, vm => vm.EmptyLibrarySubtitleText, view => view.EmptyLibrarySubtitleTextBlock.Text)
+ this.OneWayBind(ViewModel, vm => vm.EmptyLibrarySubtitleText, view => view.EmptyLibraryTextBlock.Text)
.AddTo(disposables);
-
+
this.BindCommand(ViewModel, vm => vm.OpenNexusModsCommand, view => view.EmptyLibraryLinkButton)
.AddTo(disposables);
-
- this.BindCommand(ViewModel, vm => vm.OpenNexusModsCommand, view => view.OpenLinkBareIconButton)
- .AddTo(disposables);
});
}
}
diff --git a/src/NexusMods.App.UI/Pages/LoadoutPage/LoadoutView.axaml b/src/NexusMods.App.UI/Pages/LoadoutPage/LoadoutView.axaml
index 954947baa3..8887726f95 100644
--- a/src/NexusMods.App.UI/Pages/LoadoutPage/LoadoutView.axaml
+++ b/src/NexusMods.App.UI/Pages/LoadoutPage/LoadoutView.axaml
@@ -46,14 +46,17 @@
-
+
+
-
+
+ LeftIcon="{x:Static icons:IconValues.ModLibrary}"
+ HorizontalAlignment="Center"/>
diff --git a/src/NexusMods.App.UI/Pages/MyGames/MyGamesView.axaml b/src/NexusMods.App.UI/Pages/MyGames/MyGamesView.axaml
index 0c07ae5baa..72dfe34094 100644
--- a/src/NexusMods.App.UI/Pages/MyGames/MyGamesView.axaml
+++ b/src/NexusMods.App.UI/Pages/MyGames/MyGamesView.axaml
@@ -16,68 +16,103 @@
xmlns:controls="clr-namespace:NexusMods.App.UI.Controls"
xmlns:icons="clr-namespace:NexusMods.Icons;assembly=NexusMods.Icons"
xmlns:panels="clr-namespace:Avalonia.Labs.Panels;assembly=Avalonia.Labs.Panels">
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
@@ -90,17 +125,17 @@
-
+
-
-
+
+
@@ -111,9 +146,9 @@
Foreground="{StaticResource NeutralSubduedBrush}"
TextWrapping="Wrap" />
diff --git a/src/NexusMods.App.UI/Pages/MyGames/MyGamesView.axaml.cs b/src/NexusMods.App.UI/Pages/MyGames/MyGamesView.axaml.cs
index 2e8cacd618..d188da651f 100644
--- a/src/NexusMods.App.UI/Pages/MyGames/MyGamesView.axaml.cs
+++ b/src/NexusMods.App.UI/Pages/MyGames/MyGamesView.axaml.cs
@@ -31,8 +31,7 @@ public MyGamesView()
.Select(installedCount => installedCount == 0)
.Subscribe(isEmpty =>
{
- NoGamesDetectedText.IsVisible = isEmpty;
- DetectedGamesItemsControl.IsVisible = !isEmpty;
+ DetectedGamesEmptyState.IsActive = isEmpty;
}
)
.DisposeWith(d);
diff --git a/src/NexusMods.App.UI/Resources/Language.Designer.cs b/src/NexusMods.App.UI/Resources/Language.Designer.cs
index 339ac31c4d..2772027480 100644
--- a/src/NexusMods.App.UI/Resources/Language.Designer.cs
+++ b/src/NexusMods.App.UI/Resources/Language.Designer.cs
@@ -11,32 +11,46 @@ namespace NexusMods.App.UI.Resources {
using System;
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class Language {
- private static System.Resources.ResourceManager resourceMan;
+ private static global::System.Resources.ResourceManager resourceMan;
- private static System.Globalization.CultureInfo resourceCulture;
+ private static global::System.Globalization.CultureInfo resourceCulture;
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Language() {
}
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- public static System.Resources.ResourceManager ResourceManager {
+ ///
+ /// Returns the cached ResourceManager instance used by this class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ public static global::System.Resources.ResourceManager ResourceManager {
get {
- if (object.Equals(null, resourceMan)) {
- System.Resources.ResourceManager temp = new System.Resources.ResourceManager("NexusMods.App.UI.Resources.Language", typeof(Language).Assembly);
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("NexusMods.App.UI.Resources.Language", typeof(Language).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- public static System.Globalization.CultureInfo Culture {
+ ///
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ public static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
@@ -45,1365 +59,2051 @@ public static System.Globalization.CultureInfo Culture {
}
}
- public static string Newsfeed {
+ ///
+ /// Looks up a localized string similar to Add a panel for split screen viewing.
+ ///
+ public static string AddPanelToolTip {
get {
- return ResourceManager.GetString("Newsfeed", resourceCulture);
+ return ResourceManager.GetString("AddPanelToolTip", resourceCulture);
}
}
- public static string MyGames {
+ ///
+ /// Looks up a localized string similar to Applying changes to the game.
+ ///
+ public static string ApplyControlView__ApplyingToolTip {
get {
- return ResourceManager.GetString("MyGames", resourceCulture);
+ return ResourceManager.GetString("ApplyControlView__ApplyingToolTip", resourceCulture);
}
}
- public static string BrowseGames {
+ ///
+ /// Looks up a localized string similar to Apply your changes to the game folder.
+ ///
+ public static string ApplyControlView_Apply_ToolTip {
get {
- return ResourceManager.GetString("BrowseGames", resourceCulture);
+ return ResourceManager.GetString("ApplyControlView_Apply_ToolTip", resourceCulture);
}
}
- public static string MetricsOptIn_ALLOW {
+ ///
+ /// Looks up a localized string similar to Preview changes.
+ ///
+ public static string ApplyControlView_ViewApplyChanges {
get {
- return ResourceManager.GetString("MetricsOptIn_ALLOW", resourceCulture);
+ return ResourceManager.GetString("ApplyControlView_ViewApplyChanges", resourceCulture);
}
}
- public static string MetricsOptIn_DENY {
+ ///
+ /// Looks up a localized string similar to View the changes that will be applied to your game folder.
+ ///
+ public static string ApplyControlView_ViewApplyChanges_ToolTip {
get {
- return ResourceManager.GetString("MetricsOptIn_DENY", resourceCulture);
+ return ResourceManager.GetString("ApplyControlView_ViewApplyChanges_ToolTip", resourceCulture);
}
}
- public static string MetricsOptIn_OverlayTitle {
+ ///
+ /// Looks up a localized string similar to Activate & Apply.
+ ///
+ public static string ApplyControlViewModel__ACTIVATE_AND_APPLY {
get {
- return ResourceManager.GetString("MetricsOptIn_OverlayTitle", resourceCulture);
+ return ResourceManager.GetString("ApplyControlViewModel__ACTIVATE_AND_APPLY", resourceCulture);
}
}
- public static string MetricsOptIn_MoreInfoAboutTheDataWeTrack {
+ ///
+ /// Looks up a localized string similar to Activate Loadout.
+ ///
+ public static string ApplyControlViewModel__ACTIVATE_LOADOUT {
get {
- return ResourceManager.GetString("MetricsOptIn_MoreInfoAboutTheDataWeTrack", resourceCulture);
+ return ResourceManager.GetString("ApplyControlViewModel__ACTIVATE_LOADOUT", resourceCulture);
}
}
- public static string MetricsOptIn_MainMessage {
+ ///
+ /// Looks up a localized string similar to Apply.
+ ///
+ public static string ApplyControlViewModel__APPLY {
get {
- return ResourceManager.GetString("MetricsOptIn_MainMessage", resourceCulture);
+ return ResourceManager.GetString("ApplyControlViewModel__APPLY", resourceCulture);
}
}
- public static string Updater_LATER {
+ ///
+ /// Looks up a localized string similar to Refresh.
+ ///
+ public static string ApplyDiff_Refresh {
get {
- return ResourceManager.GetString("Updater_LATER", resourceCulture);
+ return ResourceManager.GetString("ApplyDiff_Refresh", resourceCulture);
}
}
- public static string Updater_UPDATE {
+ ///
+ /// Looks up a localized string similar to Preview changes.
+ ///
+ public static string ApplyDiffViewModel_PageTitle {
get {
- return ResourceManager.GetString("Updater_UPDATE", resourceCulture);
+ return ResourceManager.GetString("ApplyDiffViewModel_PageTitle", resourceCulture);
}
}
- public static string Updater_UpdateAvailable {
+ ///
+ /// Looks up a localized string similar to Applying....
+ ///
+ public static string ApplyingControlView__ApplyingText {
get {
- return ResourceManager.GetString("Updater_UpdateAvailable", resourceCulture);
+ return ResourceManager.GetString("ApplyingControlView__ApplyingText", resourceCulture);
}
}
- public static string Updater_MainMessage {
+ ///
+ /// Looks up a localized string similar to 0 mins.
+ ///
+ public static string BoldMinutesRemainingTextBlock {
get {
- return ResourceManager.GetString("Updater_MainMessage", resourceCulture);
+ return ResourceManager.GetString("BoldMinutesRemainingTextBlock", resourceCulture);
}
}
- public static string Updater_UseSystemUpdater {
+ ///
+ /// Looks up a localized string similar to Browse Games.
+ ///
+ public static string BrowseGames {
get {
- return ResourceManager.GetString("Updater_UseSystemUpdater", resourceCulture);
+ return ResourceManager.GetString("BrowseGames", resourceCulture);
}
}
- public static string Updater_ViewChangelog {
+ ///
+ /// Looks up a localized string similar to Manage.
+ ///
+ public static string Button_Manage {
get {
- return ResourceManager.GetString("Updater_ViewChangelog", resourceCulture);
+ return ResourceManager.GetString("Button_Manage", resourceCulture);
}
}
- public static string LoadoutGridView_AddMod_FilePicker_Title {
+ ///
+ /// Looks up a localized string similar to download.
+ ///
+ public static string CancelDownloadOverlayView_Description__Download {
get {
- return ResourceManager.GetString("LoadoutGridView_AddMod_FilePicker_Title", resourceCulture);
+ return ResourceManager.GetString("CancelDownloadOverlayView_Description__Download", resourceCulture);
}
}
- public static string LoadoutGridView_AddMod_FileType_Archive {
+ ///
+ /// Looks up a localized string similar to {0} will be cancelled and the files will be deleted..
+ ///
+ public static string CancelDownloadOverlayView_Description_download_will_be_cancelled {
get {
- return ResourceManager.GetString("LoadoutGridView_AddMod_FileType_Archive", resourceCulture);
+ return ResourceManager.GetString("CancelDownloadOverlayView_Description_download_will_be_cancelled", resourceCulture);
}
}
- public static string DownloadTaskViewModel_Version_Unknown {
+ ///
+ /// Looks up a localized string similar to downloads.
+ ///
+ public static string CancelDownloadOverlayView_Description_downloads {
get {
- return ResourceManager.GetString("DownloadTaskViewModel_Version_Unknown", resourceCulture);
+ return ResourceManager.GetString("CancelDownloadOverlayView_Description_downloads", resourceCulture);
}
}
- public static string DownloadTaskViewModel_Field_Unknown {
+ ///
+ /// Looks up a localized string similar to Cancel and delete downloads?.
+ ///
+ public static string CancelDownloadOverlayView_Title {
get {
- return ResourceManager.GetString("DownloadTaskViewModel_Field_Unknown", resourceCulture);
+ return ResourceManager.GetString("CancelDownloadOverlayView_Title", resourceCulture);
}
}
- public static string MessageBox_Button_Yes {
+ ///
+ /// Looks up a localized string similar to Changelog.
+ ///
+ public static string ChangelogPageViewModel_ChangelogPageViewModel_Changelog {
get {
- return ResourceManager.GetString("MessageBox_Button_Yes", resourceCulture);
+ return ResourceManager.GetString("ChangelogPageViewModel_ChangelogPageViewModel_Changelog", resourceCulture);
}
}
- public static string MessageBox_Button_No {
+ ///
+ /// Looks up a localized string similar to {0} of {1} required mods downloaded.
+ ///
+ public static string CollectionDownloadViewModel_Num_required_mods_downloaded {
get {
- return ResourceManager.GetString("MessageBox_Button_No", resourceCulture);
+ return ResourceManager.GetString("CollectionDownloadViewModel_Num_required_mods_downloaded", resourceCulture);
}
}
- public static string MessageBox_Button_Ok {
+ ///
+ /// Looks up a localized string similar to Ready to install - All required mods downloaded.
+ ///
+ public static string CollectionDownloadViewModel_Ready_to_install {
get {
- return ResourceManager.GetString("MessageBox_Button_Ok", resourceCulture);
+ return ResourceManager.GetString("CollectionDownloadViewModel_Ready_to_install", resourceCulture);
}
}
- public static string CancelDownloadOverlayView_Description_download_will_be_cancelled {
+ ///
+ /// Looks up a localized string similar to Create new loadout.
+ ///
+ public static string CreateNewLoadoutCarViewTexBlock {
get {
- return ResourceManager.GetString("CancelDownloadOverlayView_Description_download_will_be_cancelled", resourceCulture);
+ return ResourceManager.GetString("CreateNewLoadoutCarViewTexBlock", resourceCulture);
}
}
- public static string CancelDownloadOverlayView_Title {
+ ///
+ /// Looks up a localized string similar to Critical Error.
+ ///
+ public static string DiagnosticDetailsView_SeverityTitle_CRITICAL_ERROR {
get {
- return ResourceManager.GetString("CancelDownloadOverlayView_Title", resourceCulture);
+ return ResourceManager.GetString("DiagnosticDetailsView_SeverityTitle_CRITICAL_ERROR", resourceCulture);
}
}
- public static string Helpers_GenerateHeader_NAME {
+ ///
+ /// Looks up a localized string similar to Hidden.
+ ///
+ public static string DiagnosticDetailsView_SeverityTitle_HIDDEN {
get {
- return ResourceManager.GetString("Helpers_GenerateHeader_NAME", resourceCulture);
+ return ResourceManager.GetString("DiagnosticDetailsView_SeverityTitle_HIDDEN", resourceCulture);
}
}
- public static string Helpers_GenerateHeader_VERSION {
+ ///
+ /// Looks up a localized string similar to Suggestion.
+ ///
+ public static string DiagnosticDetailsView_SeverityTitle_SUGGESTION {
get {
- return ResourceManager.GetString("Helpers_GenerateHeader_VERSION", resourceCulture);
+ return ResourceManager.GetString("DiagnosticDetailsView_SeverityTitle_SUGGESTION", resourceCulture);
}
}
- public static string Helpers_GenerateHeader_CATEGORY {
+ ///
+ /// Looks up a localized string similar to Warning.
+ ///
+ public static string DiagnosticDetailsView_SeverityTitle_WARNING {
get {
- return ResourceManager.GetString("Helpers_GenerateHeader_CATEGORY", resourceCulture);
+ return ResourceManager.GetString("DiagnosticDetailsView_SeverityTitle_WARNING", resourceCulture);
}
}
- public static string Helpers_GenerateHeader_INSTALLED {
+ ///
+ /// Looks up a localized string similar to All ({0}).
+ ///
+ public static string DiagnosticListView_DiagnosticListView_All {
get {
- return ResourceManager.GetString("Helpers_GenerateHeader_INSTALLED", resourceCulture);
+ return ResourceManager.GetString("DiagnosticListView_DiagnosticListView_All", resourceCulture);
}
}
- public static string Helpers_GenerateHeader_MOD_NAME {
+ ///
+ /// Looks up a localized string similar to Critical ({0}).
+ ///
+ public static string DiagnosticListView_DiagnosticListView_Critical {
get {
- return ResourceManager.GetString("Helpers_GenerateHeader_MOD_NAME", resourceCulture);
+ return ResourceManager.GetString("DiagnosticListView_DiagnosticListView_Critical", resourceCulture);
}
}
- public static string Helpers_GenerateHeader_GAME {
+ ///
+ /// Looks up a localized string similar to Suggestions ({0}).
+ ///
+ public static string DiagnosticListView_DiagnosticListView_Suggestions {
get {
- return ResourceManager.GetString("Helpers_GenerateHeader_GAME", resourceCulture);
+ return ResourceManager.GetString("DiagnosticListView_DiagnosticListView_Suggestions", resourceCulture);
}
}
- public static string Helpers_GenerateHeader_SIZE {
+ ///
+ /// Looks up a localized string similar to There are no diagnostics.
+ ///
+ public static string DiagnosticListView_DiagnosticListView_There_are_no_diagnostics {
get {
- return ResourceManager.GetString("Helpers_GenerateHeader_SIZE", resourceCulture);
+ return ResourceManager.GetString("DiagnosticListView_DiagnosticListView_There_are_no_diagnostics", resourceCulture);
}
}
- public static string Helpers_GenerateHeader_STATUS {
+ ///
+ /// Looks up a localized string similar to Warnings ({0}).
+ ///
+ public static string DiagnosticListView_DiagnosticListView_Warnings {
get {
- return ResourceManager.GetString("Helpers_GenerateHeader_STATUS", resourceCulture);
+ return ResourceManager.GetString("DiagnosticListView_DiagnosticListView_Warnings", resourceCulture);
}
}
- public static string LaunchButtonViewModel_LaunchGame_RUNNING {
+ ///
+ /// Looks up a localized string similar to Your loadout passed the health check without issues.
+ ///
+ public static string DiagnosticListView_EmptyState_Header {
get {
- return ResourceManager.GetString("LaunchButtonViewModel_LaunchGame_RUNNING", resourceCulture);
+ return ResourceManager.GetString("DiagnosticListView.EmptyState.Header", resourceCulture);
}
}
- public static string LaunchButtonViewModel_LaunchGame_LAUNCH {
+ ///
+ /// Looks up a localized string similar to Ready for gaming..
+ ///
+ public static string DiagnosticListView_EmptyState_Subtitle {
get {
- return ResourceManager.GetString("LaunchButtonViewModel_LaunchGame_LAUNCH", resourceCulture);
+ return ResourceManager.GetString("DiagnosticListView.EmptyState.Subtitle", resourceCulture);
}
}
- public static string StringFormatters__SecondsRemaining_secs {
+ ///
+ /// Looks up a localized string similar to Health Check.
+ ///
+ public static string DiagnosticListViewModel_DiagnosticListViewModel_Diagnostics {
get {
- return ResourceManager.GetString("StringFormatters__SecondsRemaining_secs", resourceCulture);
+ return ResourceManager.GetString("DiagnosticListViewModel_DiagnosticListViewModel_Diagnostics", resourceCulture);
}
}
- public static string StringFormatters__MinutesRemaining_mins {
+ ///
+ /// Looks up a localized string similar to Cancel.
+ ///
+ public static string DialogButton_CANCEL {
get {
- return ResourceManager.GetString("StringFormatters__MinutesRemaining_mins", resourceCulture);
+ return ResourceManager.GetString("DialogButton_CANCEL", resourceCulture);
}
}
- public static string StringFormatters__HoursRemaining__hours {
+ ///
+ /// Looks up a localized string similar to Delete mod(s).
+ ///
+ public static string DialogButton_DELETE_MODS {
get {
- return ResourceManager.GetString("StringFormatters__HoursRemaining__hours", resourceCulture);
+ return ResourceManager.GetString("DialogButton_DELETE_MODS", resourceCulture);
}
}
- public static string StringFormatters__In_progress__numDownloads {
+ ///
+ /// Looks up a localized string similar to Discard.
+ ///
+ public static string DialogButton_Discard {
get {
- return ResourceManager.GetString("StringFormatters__In_progress__numDownloads", resourceCulture);
+ return ResourceManager.GetString("DialogButton_Discard", resourceCulture);
}
}
- public static string DownloadStatus_Idle {
+ ///
+ /// Looks up a localized string similar to Save.
+ ///
+ public static string DialogButton_SAVE {
get {
- return ResourceManager.GetString("DownloadStatus_Idle", resourceCulture);
+ return ResourceManager.GetString("DialogButton_SAVE", resourceCulture);
}
}
- public static string DownloadStatus_Progress {
+ ///
+ /// Looks up a localized string similar to Apply changes: Adding {0} Modifying {1} Removing {2}.
+ ///
+ public static string DiffTreeViewModel_StatusBar__Apply_changes {
get {
- return ResourceManager.GetString("DownloadStatus_Progress", resourceCulture);
+ return ResourceManager.GetString("DiffTreeViewModel_StatusBar__Apply_changes", resourceCulture);
}
}
- public static string Nexus_Premium_Status__Premium {
+ ///
+ /// Looks up a localized string similar to Data to process: {0}.
+ ///
+ public static string DiffTreeViewModel_StatusBar__Data_to_process___0_ {
get {
- return ResourceManager.GetString("Nexus_Premium_Status__Premium", resourceCulture);
+ return ResourceManager.GetString("DiffTreeViewModel_StatusBar__Data_to_process___0_", resourceCulture);
}
}
- public static string Nexus_Premium_Status__Free {
+ ///
+ /// Looks up a localized string similar to Files: Loadout {0} ({1}) Disk {2} ({3}).
+ ///
+ public static string DiffTreeViewModel_StatusBar__File_Loadout_Disk {
get {
- return ResourceManager.GetString("Nexus_Premium_Status__Free", resourceCulture);
+ return ResourceManager.GetString("DiffTreeViewModel_StatusBar__File_Loadout_Disk", resourceCulture);
}
}
- public static string SearchBox__Search {
+ ///
+ /// Looks up a localized string similar to Clear All.
+ ///
+ public static string DownloadCompleted_Clear_All {
get {
- return ResourceManager.GetString("SearchBox__Search", resourceCulture);
+ return ResourceManager.GetString("DownloadCompleted_Clear_All", resourceCulture);
}
}
- public static string TopBarActions__LOG_IN {
+ ///
+ /// Looks up a localized string similar to Completed.
+ ///
+ public static string DownloadCompleted_COMPLETED {
get {
- return ResourceManager.GetString("TopBarActions__LOG_IN", resourceCulture);
+ return ResourceManager.GetString("DownloadCompleted_COMPLETED", resourceCulture);
}
}
- public static string GameWidget__Add_game {
+ ///
+ /// Looks up a localized string similar to History.
+ ///
+ public static string DownloadHistoryView__HISTORY {
get {
- return ResourceManager.GetString("GameWidget__Add_game", resourceCulture);
+ return ResourceManager.GetString("DownloadHistoryView__HISTORY", resourceCulture);
}
}
- public static string DownloadsView__DOWNLOADS {
+ ///
+ /// Looks up a localized string similar to Cancel.
+ ///
+ public static string DownloadInProgressView__Cancel {
get {
- return ResourceManager.GetString("DownloadsView__DOWNLOADS", resourceCulture);
+ return ResourceManager.GetString("DownloadInProgressView__Cancel", resourceCulture);
}
}
- public static string DownloadsView__In_Progress {
+ ///
+ /// Looks up a localized string similar to Clear.
+ ///
+ public static string DownloadInProgressView__Clear {
get {
- return ResourceManager.GetString("DownloadsView__In_Progress", resourceCulture);
+ return ResourceManager.GetString("DownloadInProgressView__Clear", resourceCulture);
}
}
- public static string DownloadsView__Completed {
+ ///
+ /// Looks up a localized string similar to Clear completed.
+ ///
+ public static string DownloadInProgressView__Clear_completed {
get {
- return ResourceManager.GetString("DownloadsView__Completed", resourceCulture);
+ return ResourceManager.GetString("DownloadInProgressView__Clear_completed", resourceCulture);
}
}
- public static string DownloadsView__Download_history {
+ ///
+ /// Looks up a localized string similar to In Progress.
+ ///
+ public static string DownloadInProgressView__IN_PROGRESS {
get {
- return ResourceManager.GetString("DownloadsView__Download_history", resourceCulture);
+ return ResourceManager.GetString("DownloadInProgressView__IN_PROGRESS", resourceCulture);
}
}
- public static string DownloadsView_UnderDevelopment {
+ ///
+ /// Looks up a localized string similar to Pause.
+ ///
+ public static string DownloadInProgressView__Pause {
get {
- return ResourceManager.GetString("DownloadsView_UnderDevelopment", resourceCulture);
+ return ResourceManager.GetString("DownloadInProgressView__Pause", resourceCulture);
}
}
- public static string NexusLoginOverlayView__Please_Click_Authorize {
+ ///
+ /// Looks up a localized string similar to Pause all.
+ ///
+ public static string DownloadInProgressView__Pause_All {
get {
- return ResourceManager.GetString("NexusLoginOverlayView__Please_Click_Authorize", resourceCulture);
+ return ResourceManager.GetString("DownloadInProgressView__Pause_All", resourceCulture);
}
}
- public static string NexusLoginOverlayView__BROWSER_DIDNT_OPEN {
+ ///
+ /// Looks up a localized string similar to Resume.
+ ///
+ public static string DownloadInProgressView__Resume {
get {
- return ResourceManager.GetString("NexusLoginOverlayView__BROWSER_DIDNT_OPEN", resourceCulture);
+ return ResourceManager.GetString("DownloadInProgressView__Resume", resourceCulture);
}
}
- public static string NexusLoginOverlayView_Please_copy_url {
+ ///
+ /// Looks up a localized string similar to Resume All.
+ ///
+ public static string DownloadInProgressView__Resume_All {
get {
- return ResourceManager.GetString("NexusLoginOverlayView_Please_copy_url", resourceCulture);
+ return ResourceManager.GetString("DownloadInProgressView__Resume_All", resourceCulture);
}
}
- public static string DownloadCompleted_COMPLETED {
+ ///
+ /// Looks up a localized string similar to View in library.
+ ///
+ public static string DownloadInProgressView__View_in_library {
get {
- return ResourceManager.GetString("DownloadCompleted_COMPLETED", resourceCulture);
+ return ResourceManager.GetString("DownloadInProgressView__View_in_library", resourceCulture);
}
}
- public static string DownloadCompleted_Clear_All {
+ ///
+ /// Looks up a localized string similar to Downloads.
+ ///
+ public static string Downloads_WorkspaceTitle {
get {
- return ResourceManager.GetString("DownloadCompleted_Clear_All", resourceCulture);
+ return ResourceManager.GetString("Downloads_WorkspaceTitle", resourceCulture);
}
}
- public static string DownloadHistoryView__HISTORY {
+ ///
+ /// Looks up a localized string similar to Idle.
+ ///
+ public static string DownloadStatus_Idle {
get {
- return ResourceManager.GetString("DownloadHistoryView__HISTORY", resourceCulture);
+ return ResourceManager.GetString("DownloadStatus_Idle", resourceCulture);
}
}
- public static string DownloadInProgressView__IN_PROGRESS {
+ ///
+ /// Looks up a localized string similar to Progress.
+ ///
+ public static string DownloadStatus_Progress {
get {
- return ResourceManager.GetString("DownloadInProgressView__IN_PROGRESS", resourceCulture);
+ return ResourceManager.GetString("DownloadStatus_Progress", resourceCulture);
}
}
- public static string DownloadInProgressView__Cancel {
+ ///
+ /// Looks up a localized string similar to Analyzing.
+ ///
+ public static string DownloadStatusDesignViewModel_FormatStatus_Analyzing {
get {
- return ResourceManager.GetString("DownloadInProgressView__Cancel", resourceCulture);
+ return ResourceManager.GetString("DownloadStatusDesignViewModel_FormatStatus_Analyzing", resourceCulture);
}
}
- public static string DownloadInProgressView__Pause {
+ ///
+ /// Looks up a localized string similar to Cancelled.
+ ///
+ public static string DownloadStatusDesignViewModel_FormatStatus_Cancelled {
get {
- return ResourceManager.GetString("DownloadInProgressView__Pause", resourceCulture);
+ return ResourceManager.GetString("DownloadStatusDesignViewModel_FormatStatus_Cancelled", resourceCulture);
}
}
- public static string DownloadInProgressView__Pause_All {
+ ///
+ /// Looks up a localized string similar to Complete.
+ ///
+ public static string DownloadStatusDesignViewModel_FormatStatus_Complete {
get {
- return ResourceManager.GetString("DownloadInProgressView__Pause_All", resourceCulture);
+ return ResourceManager.GetString("DownloadStatusDesignViewModel_FormatStatus_Complete", resourceCulture);
}
}
- public static string InProgressTitleTextBlock {
+ ///
+ /// Looks up a localized string similar to Downloading.
+ ///
+ public static string DownloadStatusDesignViewModel_FormatStatus_Downloading {
get {
- return ResourceManager.GetString("InProgressTitleTextBlock", resourceCulture);
+ return ResourceManager.GetString("DownloadStatusDesignViewModel_FormatStatus_Downloading", resourceCulture);
}
}
- public static string BoldMinutesRemainingTextBlock {
+ ///
+ /// Looks up a localized string similar to Installing.
+ ///
+ public static string DownloadStatusDesignViewModel_FormatStatus_Installing {
get {
- return ResourceManager.GetString("BoldMinutesRemainingTextBlock", resourceCulture);
+ return ResourceManager.GetString("DownloadStatusDesignViewModel_FormatStatus_Installing", resourceCulture);
}
}
- public static string MinutesRemainingTextBlock {
+ ///
+ /// Looks up a localized string similar to Paused.
+ ///
+ public static string DownloadStatusDesignViewModel_FormatStatus_Paused {
get {
- return ResourceManager.GetString("MinutesRemainingTextBlock", resourceCulture);
+ return ResourceManager.GetString("DownloadStatusDesignViewModel_FormatStatus_Paused", resourceCulture);
}
}
- public static string InProgressView_InProgressView_Remaining {
+ ///
+ /// Looks up a localized string similar to Queued.
+ ///
+ public static string DownloadStatusDesignViewModel_FormatStatus_Queued {
get {
- return ResourceManager.GetString("InProgressView_InProgressView_Remaining", resourceCulture);
+ return ResourceManager.GetString("DownloadStatusDesignViewModel_FormatStatus_Queued", resourceCulture);
}
}
- public static string HomeView__We_found_games {
+ ///
+ /// Looks up a localized string similar to Queued 0%.
+ ///
+ public static string DownloadStatusDesignViewModel_Text_Queued_0_ {
get {
- return ResourceManager.GetString("HomeView__We_found_games", resourceCulture);
+ return ResourceManager.GetString("DownloadStatusDesignViewModel_Text_Queued_0_", resourceCulture);
}
}
- public static string HomeView__CANT_SEE_YOUR_GAME {
+ ///
+ /// Looks up a localized string similar to Completed.
+ ///
+ public static string DownloadsView__Completed {
get {
- return ResourceManager.GetString("HomeView__CANT_SEE_YOUR_GAME", resourceCulture);
+ return ResourceManager.GetString("DownloadsView__Completed", resourceCulture);
}
}
- public static string HomeView__BROWSE_ALL_GAMES {
+ ///
+ /// Looks up a localized string similar to Download history.
+ ///
+ public static string DownloadsView__Download_history {
get {
- return ResourceManager.GetString("HomeView__BROWSE_ALL_GAMES", resourceCulture);
+ return ResourceManager.GetString("DownloadsView__Download_history", resourceCulture);
}
}
- public static string FileOriginPage_DeleteMod {
+ ///
+ /// Looks up a localized string similar to Downloads.
+ ///
+ public static string DownloadsView__DOWNLOADS {
get {
- return ResourceManager.GetString("FileOriginPage_DeleteMod", resourceCulture);
+ return ResourceManager.GetString("DownloadsView__DOWNLOADS", resourceCulture);
}
}
- public static string FileOriginPage_AddMod {
+ ///
+ /// Looks up a localized string similar to In Progress.
+ ///
+ public static string DownloadsView__In_Progress {
get {
- return ResourceManager.GetString("FileOriginPage_AddMod", resourceCulture);
+ return ResourceManager.GetString("DownloadsView__In_Progress", resourceCulture);
}
}
- public static string FileOriginPage_AddModAdvanced {
+ ///
+ /// Looks up a localized string similar to The Downloads page is currently being reworked and will be replaced in a future update. We apologise for the inconvenience..
+ ///
+ public static string DownloadsView_UnderDevelopment {
get {
- return ResourceManager.GetString("FileOriginPage_AddModAdvanced", resourceCulture);
+ return ResourceManager.GetString("DownloadsView_UnderDevelopment", resourceCulture);
}
}
- public static string MyGamesView__Ready_to_mod {
+ ///
+ /// Looks up a localized string similar to Unknown.
+ ///
+ public static string DownloadTaskViewModel_Field_Unknown {
get {
- return ResourceManager.GetString("MyGamesView__Ready_to_mod", resourceCulture);
+ return ResourceManager.GetString("DownloadTaskViewModel_Field_Unknown", resourceCulture);
}
}
- public static string MyGamesView__Detected_games {
+ ///
+ /// Looks up a localized string similar to Unknown.
+ ///
+ public static string DownloadTaskViewModel_Version_Unknown {
get {
- return ResourceManager.GetString("MyGamesView__Detected_games", resourceCulture);
+ return ResourceManager.GetString("DownloadTaskViewModel_Version_Unknown", resourceCulture);
}
}
- public static string Button_Manage {
+ ///
+ /// Looks up a localized string similar to No mods in your Library.
+ ///
+ public static string EmptyLibraryTitleText {
get {
- return ResourceManager.GetString("Button_Manage", resourceCulture);
+ return ResourceManager.GetString("EmptyLibraryTitleText", resourceCulture);
}
}
- public static string ProgressBar_ProgressTextFormat__Total_1_0 {
+ ///
+ /// Looks up a localized string similar to It looks like {0} is already running.
+ ///To apply changes or launch the game again, please close the game first..
+ ///
+ public static string ErrorGameAlreadyRunning_Description {
get {
- return ResourceManager.GetString("ProgressBar_ProgressTextFormat__Total_1_0", resourceCulture);
+ return ResourceManager.GetString("ErrorGameAlreadyRunning_Description", resourceCulture);
}
}
- public static string DownloadStatusDesignViewModel_FormatStatus_Queued {
+ ///
+ /// Looks up a localized string similar to Game is currently running.
+ ///
+ public static string ErrorGameAlreadyRunning_Title {
get {
- return ResourceManager.GetString("DownloadStatusDesignViewModel_FormatStatus_Queued", resourceCulture);
+ return ResourceManager.GetString("ErrorGameAlreadyRunning_Title", resourceCulture);
}
}
- public static string DownloadStatusDesignViewModel_FormatStatus_Paused {
+ ///
+ /// Looks up a localized string similar to The mod you're trying to access has been deleted or is missing..
+ ///
+ public static string ErrorView_MissingMod_Description {
get {
- return ResourceManager.GetString("DownloadStatusDesignViewModel_FormatStatus_Paused", resourceCulture);
+ return ResourceManager.GetString("ErrorView_MissingMod_Description", resourceCulture);
}
}
- public static string DownloadStatusDesignViewModel_FormatStatus_Downloading {
+ ///
+ /// Looks up a localized string similar to Mod not found.
+ ///
+ public static string ErrorView_MissingMod_Subheader {
get {
- return ResourceManager.GetString("DownloadStatusDesignViewModel_FormatStatus_Downloading", resourceCulture);
+ return ResourceManager.GetString("ErrorView_MissingMod_Subheader", resourceCulture);
}
}
- public static string DownloadStatusDesignViewModel_FormatStatus_Installing {
+ ///
+ /// Looks up a localized string similar to Something went wrong.
+ ///
+ public static string ErrorView_Title {
get {
- return ResourceManager.GetString("DownloadStatusDesignViewModel_FormatStatus_Installing", resourceCulture);
+ return ResourceManager.GetString("ErrorView_Title", resourceCulture);
}
}
- public static string DownloadStatusDesignViewModel_FormatStatus_Complete {
+ ///
+ /// Looks up a localized string similar to Add.
+ ///
+ public static string FileOriginPage_AddMod {
get {
- return ResourceManager.GetString("DownloadStatusDesignViewModel_FormatStatus_Complete", resourceCulture);
+ return ResourceManager.GetString("FileOriginPage_AddMod", resourceCulture);
}
}
- public static string DownloadStatusDesignViewModel_FormatStatus_Analyzing {
+ ///
+ /// Looks up a localized string similar to Add the selected mod(s) to this loadout.
+ ///
+ public static string FileOriginPage_AddMod_ToolTip {
get {
- return ResourceManager.GetString("DownloadStatusDesignViewModel_FormatStatus_Analyzing", resourceCulture);
+ return ResourceManager.GetString("FileOriginPage_AddMod_ToolTip", resourceCulture);
}
}
- public static string DownloadStatusDesignViewModel_Text_Queued_0_ {
+ ///
+ /// Looks up a localized string similar to Advanced add.
+ ///
+ public static string FileOriginPage_AddModAdvanced {
get {
- return ResourceManager.GetString("DownloadStatusDesignViewModel_Text_Queued_0_", resourceCulture);
+ return ResourceManager.GetString("FileOriginPage_AddModAdvanced", resourceCulture);
}
}
- public static string PanelTabHeaderViewModel_Title_New_Tab {
+ ///
+ /// Looks up a localized string similar to Select specific files from a mod to add to your loadout.
+ ///
+ public static string FileOriginPage_AddModAdvanced_ToolTip {
get {
- return ResourceManager.GetString("PanelTabHeaderViewModel_Title_New_Tab", resourceCulture);
+ return ResourceManager.GetString("FileOriginPage_AddModAdvanced_ToolTip", resourceCulture);
}
}
- public static string DownloadInProgressView__Resume {
+ ///
+ /// Looks up a localized string similar to Delete.
+ ///
+ public static string FileOriginPage_DeleteMod {
get {
- return ResourceManager.GetString("DownloadInProgressView__Resume", resourceCulture);
+ return ResourceManager.GetString("FileOriginPage_DeleteMod", resourceCulture);
}
}
- public static string DownloadInProgressView__Resume_All {
+ ///
+ /// Looks up a localized string similar to Permanently remove this mod from your Library.
+ ///
+ public static string FileOriginPage_DeleteMod_ToolTip {
get {
- return ResourceManager.GetString("DownloadInProgressView__Resume_All", resourceCulture);
+ return ResourceManager.GetString("FileOriginPage_DeleteMod_ToolTip", resourceCulture);
}
}
- public static string CancelDownloadOverlayView_Description__Download {
+ ///
+ /// Looks up a localized string similar to Switch View.
+ ///
+ public static string FileOriginPage_SwitchView {
get {
- return ResourceManager.GetString("CancelDownloadOverlayView_Description__Download", resourceCulture);
+ return ResourceManager.GetString("FileOriginPage_SwitchView", resourceCulture);
}
}
- public static string CancelDownloadOverlayView_Description_downloads {
+ ///
+ /// Looks up a localized string similar to Show or hide mod page groups.
+ ///
+ public static string FileOriginPage_SwitchView_ToolTip {
get {
- return ResourceManager.GetString("CancelDownloadOverlayView_Description_downloads", resourceCulture);
+ return ResourceManager.GetString("FileOriginPage_SwitchView_ToolTip", resourceCulture);
}
}
- public static string InProgress_NoDownloadsTextBlock {
+ ///
+ /// Looks up a localized string similar to Add.
+ ///
+ public static string FileOriginsPage_AddButtonText {
get {
- return ResourceManager.GetString("InProgress_NoDownloadsTextBlock", resourceCulture);
+ return ResourceManager.GetString("FileOriginsPage_AddButtonText", resourceCulture);
}
}
- public static string SpineDownloadButton_ToolTip {
+ ///
+ /// Looks up a localized string similar to From drive.
+ ///
+ public static string FileOriginsPage_FromDrive {
get {
- return ResourceManager.GetString("SpineDownloadButton_ToolTip", resourceCulture);
+ return ResourceManager.GetString("FileOriginsPage_FromDrive", resourceCulture);
}
}
- public static string SpineHomeButton_ToolTip_Home {
+ ///
+ /// Looks up a localized string similar to Import a mod from your computer.
+ ///
+ public static string FileOriginsPage_FromDrive_ToolTip {
get {
- return ResourceManager.GetString("SpineHomeButton_ToolTip_Home", resourceCulture);
+ return ResourceManager.GetString("FileOriginsPage_FromDrive_ToolTip", resourceCulture);
}
}
- public static string LoadoutViewPageTitle {
+ ///
+ /// Looks up a localized string similar to Open Nexus Mods.
+ ///
+ public static string FileOriginsPage_FromNexus_ToolTip {
get {
- return ResourceManager.GetString("LoadoutViewPageTitle", resourceCulture);
+ return ResourceManager.GetString("FileOriginsPage_FromNexus_ToolTip", resourceCulture);
}
}
- public static string Downloads_WorkspaceTitle {
+ ///
+ /// Looks up a localized string similar to From Nexus Mods.
+ ///
+ public static string FileOriginsPage_FromNexusMods {
get {
- return ResourceManager.GetString("Downloads_WorkspaceTitle", resourceCulture);
+ return ResourceManager.GetString("FileOriginsPage_FromNexusMods", resourceCulture);
}
}
- public static string HomeWorkspace_Title {
+ ///
+ /// Looks up a localized string similar to Get mods:.
+ ///
+ public static string FileOriginsPage_GetMods {
get {
- return ResourceManager.GetString("HomeWorkspace_Title", resourceCulture);
+ return ResourceManager.GetString("FileOriginsPage_GetMods", resourceCulture);
}
}
- public static string InProgressDownloadsPage_Title {
+ ///
+ /// Looks up a localized string similar to View.
+ ///
+ public static string FileOriginsPage_ViewButtonText {
get {
- return ResourceManager.GetString("InProgressDownloadsPage_Title", resourceCulture);
+ return ResourceManager.GetString("FileOriginsPage_ViewButtonText", resourceCulture);
}
}
- public static string LoadoutGridView__View_Files {
+ ///
+ /// Looks up a localized string similar to ACTIONS.
+ ///
+ public static string FileOriginsPageView_ActionHeader {
get {
- return ResourceManager.GetString("LoadoutGridView__View_Files", resourceCulture);
+ return ResourceManager.GetString("FileOriginsPageView_ActionHeader", resourceCulture);
}
}
- public static string FileTreeNodeView__View {
+ ///
+ /// Looks up a localized string similar to DOWNLOADED.
+ ///
+ public static string FileOriginsPageView_DownloadedHeader {
get {
- return ResourceManager.GetString("FileTreeNodeView__View", resourceCulture);
+ return ResourceManager.GetString("FileOriginsPageView_DownloadedHeader", resourceCulture);
}
}
- public static string ViewModInfoPage_Title {
+ ///
+ /// Looks up a localized string similar to INSTALLED.
+ ///
+ public static string FileOriginsPageView_InstalledHeader {
get {
- return ResourceManager.GetString("ViewModInfoPage_Title", resourceCulture);
+ return ResourceManager.GetString("FileOriginsPageView_InstalledHeader", resourceCulture);
}
}
- public static string ViewModFilesView_Location {
+ ///
+ /// Looks up a localized string similar to MOD NAME.
+ ///
+ public static string FileOriginsPageView_NameHeader {
get {
- return ResourceManager.GetString("ViewModFilesView_Location", resourceCulture);
+ return ResourceManager.GetString("FileOriginsPageView_NameHeader", resourceCulture);
}
}
- public static string ViewModFilesView_Locations {
+ ///
+ /// Looks up a localized string similar to SIZE.
+ ///
+ public static string FileOriginsPageView_SizeHeader {
get {
- return ResourceManager.GetString("ViewModFilesView_Locations", resourceCulture);
+ return ResourceManager.GetString("FileOriginsPageView_SizeHeader", resourceCulture);
}
}
- public static string ApplyControlViewModel__ACTIVATE_LOADOUT {
+ ///
+ /// Looks up a localized string similar to VERSION.
+ ///
+ public static string FileOriginsPageView_VersionHeader {
get {
- return ResourceManager.GetString("ApplyControlViewModel__ACTIVATE_LOADOUT", resourceCulture);
+ return ResourceManager.GetString("FileOriginsPageView_VersionHeader", resourceCulture);
}
}
- public static string ApplyControlViewModel__ACTIVATE_AND_APPLY {
+ ///
+ /// Looks up a localized string similar to Download {0} mods from Nexus Mods.
+ ///
+ public static string FileOriginsPageViewModel_EmptyLibrarySubtitleText {
get {
- return ResourceManager.GetString("ApplyControlViewModel__ACTIVATE_AND_APPLY", resourceCulture);
+ return ResourceManager.GetString("FileOriginsPageViewModel_EmptyLibrarySubtitleText", resourceCulture);
}
}
- public static string ApplyControlViewModel__APPLY {
+ ///
+ /// Looks up a localized string similar to View.
+ ///
+ public static string FileTreeNodeView__View {
get {
- return ResourceManager.GetString("ApplyControlViewModel__APPLY", resourceCulture);
+ return ResourceManager.GetString("FileTreeNodeView__View", resourceCulture);
}
}
- public static string ApplyingControlView__ApplyingText {
+ ///
+ /// Looks up a localized string similar to Add game.
+ ///
+ public static string GameWidget__Add_game {
get {
- return ResourceManager.GetString("ApplyingControlView__ApplyingText", resourceCulture);
+ return ResourceManager.GetString("GameWidget__Add_game", resourceCulture);
}
}
- public static string Helpers_ERROR {
+ ///
+ /// Looks up a localized string similar to Adding game.
+ ///
+ public static string GameWidget__Adding_game {
get {
- return ResourceManager.GetString("Helpers_ERROR", resourceCulture);
+ return ResourceManager.GetString("GameWidget__Adding_game", resourceCulture);
}
}
- public static string ErrorView_Title {
+ ///
+ /// Looks up a localized string similar to Removing game.
+ ///
+ public static string GameWidget__Removing_game {
get {
- return ResourceManager.GetString("ErrorView_Title", resourceCulture);
+ return ResourceManager.GetString("GameWidget__Removing_game", resourceCulture);
}
}
- public static string ErrorView_MissingMod_Description {
+ ///
+ /// Looks up a localized string similar to View.
+ ///
+ public static string GameWidget__View {
get {
- return ResourceManager.GetString("ErrorView_MissingMod_Description", resourceCulture);
+ return ResourceManager.GetString("GameWidget__View", resourceCulture);
}
}
- public static string ViewModInfoPage_NotFound_Title {
+ ///
+ /// Looks up a localized string similar to Give feedback.
+ ///
+ public static string GiveFeedbackMenuItem_Header {
get {
- return ResourceManager.GetString("ViewModInfoPage_NotFound_Title", resourceCulture);
+ return ResourceManager.GetString("GiveFeedbackMenuItem.Header", resourceCulture);
}
}
- public static string ErrorView_MissingMod_Subheader {
+ ///
+ /// Looks up a localized string similar to Error.
+ ///
+ public static string Helpers_ERROR {
get {
- return ResourceManager.GetString("ErrorView_MissingMod_Subheader", resourceCulture);
+ return ResourceManager.GetString("Helpers_ERROR", resourceCulture);
}
}
- public static string DiagnosticDetailsView_SeverityTitle_SUGGESTION {
+ ///
+ /// Looks up a localized string similar to CATEGORY.
+ ///
+ public static string Helpers_GenerateHeader_CATEGORY {
get {
- return ResourceManager.GetString("DiagnosticDetailsView_SeverityTitle_SUGGESTION", resourceCulture);
+ return ResourceManager.GetString("Helpers_GenerateHeader_CATEGORY", resourceCulture);
}
}
- public static string DiagnosticDetailsView_SeverityTitle_WARNING {
+ ///
+ /// Looks up a localized string similar to FILE COUNT.
+ ///
+ public static string Helpers_GenerateHeader_File_Count {
get {
- return ResourceManager.GetString("DiagnosticDetailsView_SeverityTitle_WARNING", resourceCulture);
+ return ResourceManager.GetString("Helpers_GenerateHeader_File_Count", resourceCulture);
}
}
- public static string DiagnosticDetailsView_SeverityTitle_CRITICAL_ERROR {
+ ///
+ /// Looks up a localized string similar to GAME.
+ ///
+ public static string Helpers_GenerateHeader_GAME {
get {
- return ResourceManager.GetString("DiagnosticDetailsView_SeverityTitle_CRITICAL_ERROR", resourceCulture);
+ return ResourceManager.GetString("Helpers_GenerateHeader_GAME", resourceCulture);
}
}
- public static string DiagnosticDetailsView_SeverityTitle_HIDDEN {
+ ///
+ /// Looks up a localized string similar to INSTALLED.
+ ///
+ public static string Helpers_GenerateHeader_INSTALLED {
get {
- return ResourceManager.GetString("DiagnosticDetailsView_SeverityTitle_HIDDEN", resourceCulture);
+ return ResourceManager.GetString("Helpers_GenerateHeader_INSTALLED", resourceCulture);
}
}
- public static string LoadoutLeftMenuViewModel_LoadoutLeftMenuViewModel_Diagnostics {
+ ///
+ /// Looks up a localized string similar to MOD NAME.
+ ///
+ public static string Helpers_GenerateHeader_MOD_NAME {
get {
- return ResourceManager.GetString("LoadoutLeftMenuViewModel_LoadoutLeftMenuViewModel_Diagnostics", resourceCulture);
+ return ResourceManager.GetString("Helpers_GenerateHeader_MOD_NAME", resourceCulture);
}
}
- public static string DiagnosticListView_DiagnosticListView_All {
+ ///
+ /// Looks up a localized string similar to NAME.
+ ///
+ public static string Helpers_GenerateHeader_NAME {
get {
- return ResourceManager.GetString("DiagnosticListView_DiagnosticListView_All", resourceCulture);
+ return ResourceManager.GetString("Helpers_GenerateHeader_NAME", resourceCulture);
}
}
- public static string DiagnosticListView_DiagnosticListView_Critical {
+ ///
+ /// Looks up a localized string similar to SIZE.
+ ///
+ public static string Helpers_GenerateHeader_SIZE {
get {
- return ResourceManager.GetString("DiagnosticListView_DiagnosticListView_Critical", resourceCulture);
+ return ResourceManager.GetString("Helpers_GenerateHeader_SIZE", resourceCulture);
}
}
- public static string DiagnosticListView_DiagnosticListView_Warnings {
+ ///
+ /// Looks up a localized string similar to STATE.
+ ///
+ public static string Helpers_GenerateHeader_State {
get {
- return ResourceManager.GetString("DiagnosticListView_DiagnosticListView_Warnings", resourceCulture);
+ return ResourceManager.GetString("Helpers_GenerateHeader_State", resourceCulture);
}
}
- public static string DiagnosticListView_DiagnosticListView_Suggestions {
+ ///
+ /// Looks up a localized string similar to STATUS.
+ ///
+ public static string Helpers_GenerateHeader_STATUS {
get {
- return ResourceManager.GetString("DiagnosticListView_DiagnosticListView_Suggestions", resourceCulture);
+ return ResourceManager.GetString("Helpers_GenerateHeader_STATUS", resourceCulture);
}
}
- public static string DiagnosticListView_DiagnosticListView_There_are_no_diagnostics {
+ ///
+ /// Looks up a localized string similar to VERSION.
+ ///
+ public static string Helpers_GenerateHeader_VERSION {
get {
- return ResourceManager.GetString("DiagnosticListView_DiagnosticListView_There_are_no_diagnostics", resourceCulture);
+ return ResourceManager.GetString("Helpers_GenerateHeader_VERSION", resourceCulture);
}
}
- public static string IngestButtonTextBlock_Text {
+ ///
+ /// Looks up a localized string similar to Browse all games.
+ ///
+ public static string HomeView__BROWSE_ALL_GAMES {
get {
- return ResourceManager.GetString("IngestButtonTextBlock_Text", resourceCulture);
+ return ResourceManager.GetString("HomeView__BROWSE_ALL_GAMES", resourceCulture);
}
}
- public static string ModFileTreeViewModel_StatusBar_Files__0__1 {
+ ///
+ /// Looks up a localized string similar to Can't see your game.
+ ///
+ public static string HomeView__CANT_SEE_YOUR_GAME {
get {
- return ResourceManager.GetString("ModFileTreeViewModel_StatusBar_Files__0__1", resourceCulture);
+ return ResourceManager.GetString("HomeView__CANT_SEE_YOUR_GAME", resourceCulture);
}
}
- public static string Helpers_GenerateHeader_File_Count {
+ ///
+ /// Looks up a localized string similar to We found games ready to mod!.
+ ///
+ public static string HomeView__We_found_games {
get {
- return ResourceManager.GetString("Helpers_GenerateHeader_File_Count", resourceCulture);
+ return ResourceManager.GetString("HomeView__We_found_games", resourceCulture);
}
}
- public static string MyGamesView__NoGamesDetectedText {
+ ///
+ /// Looks up a localized string similar to Home.
+ ///
+ public static string HomeWorkspace_Title {
get {
- return ResourceManager.GetString("MyGamesView__NoGamesDetectedText", resourceCulture);
+ return ResourceManager.GetString("HomeWorkspace_Title", resourceCulture);
}
}
- public static string MyGamesView__NoGamesManagedText {
+ ///
+ /// Looks up a localized string similar to Never.
+ ///
+ public static string HumanizedDateTime_Never {
get {
- return ResourceManager.GetString("MyGamesView__NoGamesManagedText", resourceCulture);
+ return ResourceManager.GetString("HumanizedDateTime_Never", resourceCulture);
}
}
- public static string GameWidget__Adding_game {
+ ///
+ /// Looks up a localized string similar to File will be added.
+ ///
+ public static string IFileTreeNodeViewModel_FormattedChangeStateToolTip_Added {
get {
- return ResourceManager.GetString("GameWidget__Adding_game", resourceCulture);
+ return ResourceManager.GetString("IFileTreeNodeViewModel_FormattedChangeStateToolTip_Added", resourceCulture);
}
}
- public static string GameWidget__View {
+ ///
+ /// Looks up a localized string similar to File will be modified.
+ ///
+ public static string IFileTreeNodeViewModel_FormattedChangeStateToolTip_ModifiedFile {
get {
- return ResourceManager.GetString("GameWidget__View", resourceCulture);
+ return ResourceManager.GetString("IFileTreeNodeViewModel_FormattedChangeStateToolTip_ModifiedFile", resourceCulture);
}
}
- public static string GameWidget__Removing_game {
+ ///
+ /// Looks up a localized string similar to Folder contains modified files.
+ ///
+ public static string IFileTreeNodeViewModel_FormattedChangeStateToolTip_ModifiedFolder {
get {
- return ResourceManager.GetString("GameWidget__Removing_game", resourceCulture);
+ return ResourceManager.GetString("IFileTreeNodeViewModel_FormattedChangeStateToolTip_ModifiedFolder", resourceCulture);
}
}
- public static string ApplyDiff_Refresh {
+ ///
+ /// Looks up a localized string similar to File will be removed.
+ ///
+ public static string IFileTreeNodeViewModel_FormattedChangeStateToolTip_Removed {
get {
- return ResourceManager.GetString("ApplyDiff_Refresh", resourceCulture);
+ return ResourceManager.GetString("IFileTreeNodeViewModel_FormattedChangeStateToolTip_Removed", resourceCulture);
}
}
- public static string Helpers_GenerateHeader_State {
+ ///
+ /// Looks up a localized string similar to Added.
+ ///
+ public static string IFileTreeNodeViewModel_ToFormattedChangeState_Added {
get {
- return ResourceManager.GetString("Helpers_GenerateHeader_State", resourceCulture);
+ return ResourceManager.GetString("IFileTreeNodeViewModel_ToFormattedChangeState_Added", resourceCulture);
}
}
- public static string IFileTreeNodeViewModel_ToFormattedChangeState_Added {
+ ///
+ /// Looks up a localized string similar to Contents modified.
+ ///
+ public static string IFileTreeNodeViewModel_ToFormattedChangeState_Contents_modified {
get {
- return ResourceManager.GetString("IFileTreeNodeViewModel_ToFormattedChangeState_Added", resourceCulture);
+ return ResourceManager.GetString("IFileTreeNodeViewModel_ToFormattedChangeState_Contents_modified", resourceCulture);
}
}
+ ///
+ /// Looks up a localized string similar to Modified.
+ ///
public static string IFileTreeNodeViewModel_ToFormattedChangeState_Modified {
get {
return ResourceManager.GetString("IFileTreeNodeViewModel_ToFormattedChangeState_Modified", resourceCulture);
}
}
- public static string IFileTreeNodeViewModel_ToFormattedChangeState_Contents_modified {
+ ///
+ /// Looks up a localized string similar to Removed.
+ ///
+ public static string IFileTreeNodeViewModel_ToFormattedChangeState_Removed {
get {
- return ResourceManager.GetString("IFileTreeNodeViewModel_ToFormattedChangeState_Contents_modified", resourceCulture);
+ return ResourceManager.GetString("IFileTreeNodeViewModel_ToFormattedChangeState_Removed", resourceCulture);
}
}
- public static string IFileTreeNodeViewModel_ToFormattedChangeState_Removed {
+ ///
+ /// Looks up a localized string similar to Did you know?.
+ ///
+ public static string InfoBanner_PrefixProperty_Did_you_know_ {
get {
- return ResourceManager.GetString("IFileTreeNodeViewModel_ToFormattedChangeState_Removed", resourceCulture);
+ return ResourceManager.GetString("InfoBanner_PrefixProperty_Did_you_know_", resourceCulture);
}
}
- public static string DiffTreeViewModel_StatusBar__File_Loadout_Disk {
+ ///
+ /// Looks up a localized string similar to Ingest.
+ ///
+ public static string IngestButtonTextBlock_Text {
get {
- return ResourceManager.GetString("DiffTreeViewModel_StatusBar__File_Loadout_Disk", resourceCulture);
+ return ResourceManager.GetString("IngestButtonTextBlock_Text", resourceCulture);
}
}
- public static string DiffTreeViewModel_StatusBar__Apply_changes {
+ ///
+ /// Looks up a localized string similar to No Downloads.
+ ///
+ public static string InProgress_NoDownloadsTextBlock {
get {
- return ResourceManager.GetString("DiffTreeViewModel_StatusBar__Apply_changes", resourceCulture);
+ return ResourceManager.GetString("InProgress_NoDownloadsTextBlock", resourceCulture);
}
}
- public static string DiffTreeViewModel_StatusBar__Data_to_process___0_ {
+ ///
+ /// Looks up a localized string similar to Downloads.
+ ///
+ public static string InProgressDownloadsPage_Title {
get {
- return ResourceManager.GetString("DiffTreeViewModel_StatusBar__Data_to_process___0_", resourceCulture);
+ return ResourceManager.GetString("InProgressDownloadsPage_Title", resourceCulture);
}
}
- public static string ApplyControlView_ViewApplyChanges {
+ ///
+ /// Looks up a localized string similar to Downloads.
+ ///
+ public static string InProgressTitleTextBlock {
get {
- return ResourceManager.GetString("ApplyControlView_ViewApplyChanges", resourceCulture);
+ return ResourceManager.GetString("InProgressTitleTextBlock", resourceCulture);
}
}
- public static string ApplyDiffViewModel_PageTitle {
+ ///
+ /// Looks up a localized string similar to remaining.
+ ///
+ public static string InProgressView_InProgressView_Remaining {
get {
- return ResourceManager.GetString("ApplyDiffViewModel_PageTitle", resourceCulture);
+ return ResourceManager.GetString("InProgressView_InProgressView_Remaining", resourceCulture);
}
}
- public static string SettingsView_Title {
+ ///
+ /// Looks up a localized string similar to Play.
+ ///
+ public static string LaunchButtonViewModel_LaunchGame_LAUNCH {
get {
- return ResourceManager.GetString("SettingsView_Title", resourceCulture);
+ return ResourceManager.GetString("LaunchButtonViewModel_LaunchGame_LAUNCH", resourceCulture);
}
}
- public static string DialogButton_CANCEL {
+ ///
+ /// Looks up a localized string similar to Running....
+ ///
+ public static string LaunchButtonViewModel_LaunchGame_RUNNING {
get {
- return ResourceManager.GetString("DialogButton_CANCEL", resourceCulture);
+ return ResourceManager.GetString("LaunchButtonViewModel_LaunchGame_RUNNING", resourceCulture);
}
}
- public static string DialogButton_SAVE {
+ ///
+ /// Looks up a localized string similar to Delete mod(s).
+ ///
+ public static string LibraryItemDeleteConfirmation_DeleteModsButton {
get {
- return ResourceManager.GetString("DialogButton_SAVE", resourceCulture);
+ return ResourceManager.GetString("LibraryItemDeleteConfirmation_DeleteModsButton", resourceCulture);
}
}
- public static string DialogButton_DELETE_MODS {
+ ///
+ /// Looks up a localized string similar to Deleting these mods permanently removes them from the app:.
+ ///
+ public static string LibraryItemDeleteConfirmation_HeaderQuestion {
get {
- return ResourceManager.GetString("DialogButton_DELETE_MODS", resourceCulture);
+ return ResourceManager.GetString("LibraryItemDeleteConfirmation_HeaderQuestion", resourceCulture);
}
}
- public static string SettingEntryView_NeedRestartMessage {
+ ///
+ /// Looks up a localized string similar to Permanently delete mod(s).
+ ///
+ public static string LibraryItemDeleteConfirmation_Title {
get {
- return ResourceManager.GetString("SettingEntryView_NeedRestartMessage", resourceCulture);
+ return ResourceManager.GetString("LibraryItemDeleteConfirmation_Title", resourceCulture);
}
}
- public static string FileOriginsPage_AddButtonText {
+ ///
+ /// Looks up a localized string similar to Used by {0}:.
+ ///
+ public static string LibraryItemDeleteConfirmation_UsedBy {
get {
- return ResourceManager.GetString("FileOriginsPage_AddButtonText", resourceCulture);
+ return ResourceManager.GetString("LibraryItemDeleteConfirmation_UsedBy", resourceCulture);
}
}
- public static string DialogButton_Discard {
+ ///
+ /// Looks up a localized string similar to Used by {0} - {1}:.
+ ///
+ public static string LibraryItemDeleteConfirmation_UsedByWithLoadout {
get {
- return ResourceManager.GetString("DialogButton_Discard", resourceCulture);
+ return ResourceManager.GetString("LibraryItemDeleteConfirmation_UsedByWithLoadout", resourceCulture);
}
}
- public static string ChangelogPageViewModel_ChangelogPageViewModel_Changelog {
+ ///
+ /// Looks up a localized string similar to Library.
+ ///
+ public static string LibraryPageTitle {
get {
- return ResourceManager.GetString("ChangelogPageViewModel_ChangelogPageViewModel_Changelog", resourceCulture);
+ return ResourceManager.GetString("LibraryPageTitle", resourceCulture);
}
}
- public static string DiagnosticListViewModel_DiagnosticListViewModel_Diagnostics {
+ ///
+ /// Looks up a localized string similar to Delete Loadout.
+ ///
+ public static string LoadoutCard_DeleteLoadoutToolTip {
get {
- return ResourceManager.GetString("DiagnosticListViewModel_DiagnosticListViewModel_Diagnostics", resourceCulture);
+ return ResourceManager.GetString("LoadoutCard_DeleteLoadoutToolTip", resourceCulture);
}
}
- public static string LibraryPageTitle {
+ ///
+ /// Looks up a localized string similar to Create Copy.
+ ///
+ public static string LoadoutCardViewCreateCopyButton {
get {
- return ResourceManager.GetString("LibraryPageTitle", resourceCulture);
+ return ResourceManager.GetString("LoadoutCardViewCreateCopyButton", resourceCulture);
}
}
- public static string FileOriginsPageView_NameHeader {
+ ///
+ /// Looks up a localized string similar to Creating....
+ ///
+ public static string LoadoutCardViewCreatingText {
get {
- return ResourceManager.GetString("FileOriginsPageView_NameHeader", resourceCulture);
+ return ResourceManager.GetString("LoadoutCardViewCreatingText", resourceCulture);
}
}
- public static string FileOriginsPageView_VersionHeader {
+ ///
+ /// Looks up a localized string similar to Currently Applied.
+ ///
+ public static string LoadoutCardViewCurrentlyAppliedTextBlock {
get {
- return ResourceManager.GetString("FileOriginsPageView_VersionHeader", resourceCulture);
+ return ResourceManager.GetString("LoadoutCardViewCurrentlyAppliedTextBlock", resourceCulture);
}
}
- public static string FileOriginsPageView_SizeHeader {
+ ///
+ /// Looks up a localized string similar to Deleting....
+ ///
+ public static string LoadoutCardViewDeletingText {
get {
- return ResourceManager.GetString("FileOriginsPageView_SizeHeader", resourceCulture);
+ return ResourceManager.GetString("LoadoutCardViewDeletingText", resourceCulture);
}
}
- public static string FileOriginsPageView_DownloadedHeader {
+ ///
+ /// Looks up a localized string similar to Created {0}.
+ ///
+ public static string LoadoutCardViewModel_CreationTimeConverter_Created__0_ {
get {
- return ResourceManager.GetString("FileOriginsPageView_DownloadedHeader", resourceCulture);
+ return ResourceManager.GetString("LoadoutCardViewModel_CreationTimeConverter_Created__0_", resourceCulture);
}
}
- public static string FileOriginsPageView_InstalledHeader {
+ ///
+ /// Looks up a localized string similar to Last applied: {0}.
+ ///
+ public static string LoadoutCardViewModel_FormatLastAppliedTime_Last_applied__0_ {
get {
- return ResourceManager.GetString("FileOriginsPageView_InstalledHeader", resourceCulture);
+ return ResourceManager.GetString("LoadoutCardViewModel_FormatLastAppliedTime_Last_applied__0_", resourceCulture);
}
}
- public static string FileOriginsPageView_ActionHeader {
+ ///
+ /// Looks up a localized string similar to Mods {0}.
+ ///
+ public static string LoadoutCardViewModel_FormatNumMods_Mods__0_ {
get {
- return ResourceManager.GetString("FileOriginsPageView_ActionHeader", resourceCulture);
+ return ResourceManager.GetString("LoadoutCardViewModel_FormatNumMods_Mods__0_", resourceCulture);
}
}
- public static string DownloadStatusDesignViewModel_FormatStatus_Cancelled {
+ ///
+ /// Looks up a localized string similar to Install your mods from the Library.
+ ///
+ public static string LoadoutGrid_EmptyModlistSubtitle_Add_from_library {
get {
- return ResourceManager.GetString("DownloadStatusDesignViewModel_FormatStatus_Cancelled", resourceCulture);
+ return ResourceManager.GetString("LoadoutGrid_EmptyModlistSubtitle_Add_from_library", resourceCulture);
}
}
- public static string DownloadInProgressView__Clear {
+ ///
+ /// Looks up a localized string similar to Remove.
+ ///
+ public static string LoadoutGridView__Remove {
get {
- return ResourceManager.GetString("DownloadInProgressView__Clear", resourceCulture);
+ return ResourceManager.GetString("LoadoutGridView__Remove", resourceCulture);
}
}
- public static string DownloadInProgressView__Clear_completed {
+ ///
+ /// Looks up a localized string similar to Remove the selected mod(s) from this loadout.
+ ///
+ public static string LoadoutGridView__Remove_ToolTip {
get {
- return ResourceManager.GetString("DownloadInProgressView__Clear_completed", resourceCulture);
+ return ResourceManager.GetString("LoadoutGridView__Remove_ToolTip", resourceCulture);
}
}
- public static string DownloadInProgressView__View_in_library {
+ ///
+ /// Looks up a localized string similar to View Mod files.
+ ///
+ public static string LoadoutGridView__View_Files {
get {
- return ResourceManager.GetString("DownloadInProgressView__View_in_library", resourceCulture);
+ return ResourceManager.GetString("LoadoutGridView__View_Files", resourceCulture);
}
}
- public static string LoadoutGridView__Remove {
+ ///
+ /// Looks up a localized string similar to .
+ ///
+ public static string LoadoutGridView__View_Files_ToolTip {
get {
- return ResourceManager.GetString("LoadoutGridView__Remove", resourceCulture);
+ return ResourceManager.GetString("LoadoutGridView__View_Files_ToolTip", resourceCulture);
}
}
- public static string LoginMessageView_BodyTextBlock {
+ ///
+ /// Looks up a localized string similar to Please select a mod file to install..
+ ///
+ public static string LoadoutGridView_AddMod_FilePicker_Title {
get {
- return ResourceManager.GetString("LoginMessageView_BodyTextBlock", resourceCulture);
+ return ResourceManager.GetString("LoadoutGridView_AddMod_FilePicker_Title", resourceCulture);
}
}
- public static string LoginMessageView_Title {
+ ///
+ /// Looks up a localized string similar to Archive.
+ ///
+ public static string LoadoutGridView_AddMod_FileType_Archive {
get {
- return ResourceManager.GetString("LoginMessageView_Title", resourceCulture);
+ return ResourceManager.GetString("LoadoutGridView_AddMod_FileType_Archive", resourceCulture);
}
}
- public static string FileOriginsPage_GetMods {
+ ///
+ /// Looks up a localized string similar to No mods added to {0}.
+ ///
+ public static string LoadoutGridViewModel_EmptyModlistTitleString {
get {
- return ResourceManager.GetString("FileOriginsPage_GetMods", resourceCulture);
+ return ResourceManager.GetString("LoadoutGridViewModel_EmptyModlistTitleString", resourceCulture);
}
}
- public static string FileOriginsPage_FromDrive {
+ ///
+ /// Looks up a localized string similar to Health Check.
+ ///
+ public static string LoadoutLeftMenuViewModel_LoadoutLeftMenuViewModel_Diagnostics {
get {
- return ResourceManager.GetString("FileOriginsPage_FromDrive", resourceCulture);
+ return ResourceManager.GetString("LoadoutLeftMenuViewModel_LoadoutLeftMenuViewModel_Diagnostics", resourceCulture);
}
}
- public static string FileOriginsPage_FromNexusMods {
+ ///
+ /// Looks up a localized string similar to Installed Mods.
+ ///
+ public static string LoadoutView_Title_Installed_Mods {
get {
- return ResourceManager.GetString("FileOriginsPage_FromNexusMods", resourceCulture);
+ return ResourceManager.GetString("LoadoutView_Title_Installed_Mods", resourceCulture);
}
}
- public static string FileOriginsPage_ViewButtonText {
+ ///
+ /// Looks up a localized string similar to Installed Mods.
+ ///
+ public static string LoadoutViewPageTitle {
get {
- return ResourceManager.GetString("FileOriginsPage_ViewButtonText", resourceCulture);
+ return ResourceManager.GetString("LoadoutViewPageTitle", resourceCulture);
}
}
- public static string AddPanelToolTip {
+ ///
+ /// Looks up a localized string similar to To easily download mods from Nexus Mods you will need to log in with your Nexus Mods account.
///
///To add mods manually from your drive, you do not need to log in..
+ ///
+ public static string LoginMessageView_BodyTextBlock {
get {
- return ResourceManager.GetString("AddPanelToolTip", resourceCulture);
+ return ResourceManager.GetString("LoginMessageView_BodyTextBlock", resourceCulture);
}
}
- public static string Panel_Add_tab_ToolTip {
+ ///
+ /// Looks up a localized string similar to Log in to get started.
+ ///
+ public static string LoginMessageView_Title {
get {
- return ResourceManager.GetString("Panel_Add_tab_ToolTip", resourceCulture);
+ return ResourceManager.GetString("LoginMessageView_Title", resourceCulture);
}
}
- public static string TopBar_MyProfile {
+ ///
+ /// Looks up a localized string similar to No.
+ ///
+ public static string MessageBox_Button_No {
get {
- return ResourceManager.GetString("TopBar_MyProfile", resourceCulture);
+ return ResourceManager.GetString("MessageBox_Button_No", resourceCulture);
}
}
- public static string TopBar_SignOut {
+ ///
+ /// Looks up a localized string similar to Ok.
+ ///
+ public static string MessageBox_Button_Ok {
get {
- return ResourceManager.GetString("TopBar_SignOut", resourceCulture);
+ return ResourceManager.GetString("MessageBox_Button_Ok", resourceCulture);
}
}
- public static string TopBar_AccountSettings {
+ ///
+ /// Looks up a localized string similar to Yes.
+ ///
+ public static string MessageBox_Button_Yes {
get {
- return ResourceManager.GetString("TopBar_AccountSettings", resourceCulture);
+ return ResourceManager.GetString("MessageBox_Button_Yes", resourceCulture);
}
}
- public static string ViewChangelogMenuItem_Header {
+ ///
+ /// Looks up a localized string similar to Allow.
+ ///
+ public static string MetricsOptIn_ALLOW {
get {
- return ResourceManager.GetString("ViewChangelogMenuItem.Header", resourceCulture);
+ return ResourceManager.GetString("MetricsOptIn_ALLOW", resourceCulture);
}
}
- public static string ViewAppLogsMenuItem_Header {
+ ///
+ /// Looks up a localized string similar to Deny.
+ ///
+ public static string MetricsOptIn_DENY {
get {
- return ResourceManager.GetString("ViewAppLogsMenuItem.Header", resourceCulture);
+ return ResourceManager.GetString("MetricsOptIn_DENY", resourceCulture);
}
}
- public static string GiveFeedbackMenuItem_Header {
+ ///
+ /// Looks up a localized string similar to Help us provide you with the best modding experience.
+ ///
+ ///With your permission, we will collect analytics information and send it to our team to help us improve quality and performance.
+ ///
+ ///This information is sent anonymously and will never be shared with a 3rd party..
+ ///
+ public static string MetricsOptIn_MainMessage {
get {
- return ResourceManager.GetString("GiveFeedbackMenuItem.Header", resourceCulture);
+ return ResourceManager.GetString("MetricsOptIn_MainMessage", resourceCulture);
}
}
- public static string NavigationControl_NavigationControl_Open_in_new_tab {
+ ///
+ /// Looks up a localized string similar to More info about the data we track.
+ ///
+ public static string MetricsOptIn_MoreInfoAboutTheDataWeTrack {
get {
- return ResourceManager.GetString("NavigationControl_NavigationControl_Open_in_new_tab", resourceCulture);
+ return ResourceManager.GetString("MetricsOptIn_MoreInfoAboutTheDataWeTrack", resourceCulture);
}
}
- public static string NavigationControl_NavigationControl_Open_in_new_panel {
+ ///
+ /// Looks up a localized string similar to Diagnostics and usage data.
+ ///
+ public static string MetricsOptIn_OverlayTitle {
get {
- return ResourceManager.GetString("NavigationControl_NavigationControl_Open_in_new_panel", resourceCulture);
+ return ResourceManager.GetString("MetricsOptIn_OverlayTitle", resourceCulture);
}
}
- public static string TopBar_Help_ToolTip {
+ ///
+ /// Looks up a localized string similar to remaining.
+ ///
+ public static string MinutesRemainingTextBlock {
get {
- return ResourceManager.GetString("TopBar_Help_ToolTip", resourceCulture);
+ return ResourceManager.GetString("MinutesRemainingTextBlock", resourceCulture);
}
}
- public static string FileOriginPage_AddMod_ToolTip {
+ ///
+ /// Looks up a localized string similar to Files: {0} ({1}).
+ ///
+ public static string ModFileTreeViewModel_StatusBar_Files__0__1 {
get {
- return ResourceManager.GetString("FileOriginPage_AddMod_ToolTip", resourceCulture);
+ return ResourceManager.GetString("ModFileTreeViewModel_StatusBar_Files__0__1", resourceCulture);
}
}
- public static string FileOriginPage_DeleteMod_ToolTip {
+ ///
+ /// Looks up a localized string similar to My Games.
+ ///
+ public static string MyGames {
get {
- return ResourceManager.GetString("FileOriginPage_DeleteMod_ToolTip", resourceCulture);
+ return ResourceManager.GetString("MyGames", resourceCulture);
}
}
- public static string FileOriginPage_AddModAdvanced_ToolTip {
+ ///
+ /// Looks up a localized string similar to Supported Games.
+ ///
+ public static string MyGamesView__Detected_games {
get {
- return ResourceManager.GetString("FileOriginPage_AddModAdvanced_ToolTip", resourceCulture);
+ return ResourceManager.GetString("MyGamesView__Detected_games", resourceCulture);
}
}
- public static string ApplyControlView_ViewApplyChanges_ToolTip {
+ ///
+ /// Looks up a localized string similar to All supported games have been added. No new games detected..
+ ///
+ public static string MyGamesView__NoGamesDetectedText {
get {
- return ResourceManager.GetString("ApplyControlView_ViewApplyChanges_ToolTip", resourceCulture);
+ return ResourceManager.GetString("MyGamesView__NoGamesDetectedText", resourceCulture);
}
}
- public static string ApplyControlView_Apply_ToolTip {
+ ///
+ /// Looks up a localized string similar to Add games to start modding.
+ ///
+ public static string MyGamesView__NoGamesManagedText {
get {
- return ResourceManager.GetString("ApplyControlView_Apply_ToolTip", resourceCulture);
+ return ResourceManager.GetString("MyGamesView__NoGamesManagedText", resourceCulture);
}
}
- public static string IFileTreeNodeViewModel_FormattedChangeStateToolTip_Added {
+ ///
+ /// Looks up a localized string similar to Games Added.
+ ///
+ public static string MyGamesView__Ready_to_mod {
get {
- return ResourceManager.GetString("IFileTreeNodeViewModel_FormattedChangeStateToolTip_Added", resourceCulture);
+ return ResourceManager.GetString("MyGamesView__Ready_to_mod", resourceCulture);
}
}
- public static string IFileTreeNodeViewModel_FormattedChangeStateToolTip_ModifiedFile {
+ ///
+ /// Looks up a localized string similar to You need to add a game before using Loadouts.
+ ///
+ public static string MyLoadoutsEmptyState_Header {
get {
- return ResourceManager.GetString("IFileTreeNodeViewModel_FormattedChangeStateToolTip_ModifiedFile", resourceCulture);
+ return ResourceManager.GetString("MyLoadoutsEmptyState_Header", resourceCulture);
}
}
- public static string IFileTreeNodeViewModel_FormattedChangeStateToolTip_Removed {
+ ///
+ /// Looks up a localized string similar to Loadouts enable you to switch between various play styles by customising each with different mods and configurations..
+ ///
+ public static string MyLoadoutsEmptyState_Subtitle {
get {
- return ResourceManager.GetString("IFileTreeNodeViewModel_FormattedChangeStateToolTip_Removed", resourceCulture);
+ return ResourceManager.GetString("MyLoadoutsEmptyState_Subtitle", resourceCulture);
}
}
- public static string IFileTreeNodeViewModel_FormattedChangeStateToolTip_ModifiedFolder {
+ ///
+ /// Looks up a localized string similar to {0} Loadouts.
+ ///
+ public static string MyLoadoutsGameSectionHeading {
get {
- return ResourceManager.GetString("IFileTreeNodeViewModel_FormattedChangeStateToolTip_ModifiedFolder", resourceCulture);
+ return ResourceManager.GetString("MyLoadoutsGameSectionHeading", resourceCulture);
}
}
- public static string InfoBanner_PrefixProperty_Did_you_know_ {
+ ///
+ /// Looks up a localized string similar to Loadouts enable you to switch between various play styles by customising each with different mods and configurations. Simply select and Apply the Loadout you wish to use..
+ ///
+ public static string MyLoadoutsPageDescriptionText {
get {
- return ResourceManager.GetString("InfoBanner_PrefixProperty_Did_you_know_", resourceCulture);
+ return ResourceManager.GetString("MyLoadoutsPageDescriptionText", resourceCulture);
}
}
- public static string NewTabPageInfoBannerText1 {
+ ///
+ /// Looks up a localized string similar to My Loadouts.
+ ///
+ public static string MyLoadoutsPageTitle {
get {
- return ResourceManager.GetString("NewTabPageInfoBannerText1", resourceCulture);
+ return ResourceManager.GetString("MyLoadoutsPageTitle", resourceCulture);
}
}
- public static string NewTabPageInfoBannerText2 {
+ ///
+ /// Looks up a localized string similar to Open in new panel.
+ ///
+ public static string NavigationControl_NavigationControl_Open_in_new_panel {
get {
- return ResourceManager.GetString("NewTabPageInfoBannerText2", resourceCulture);
+ return ResourceManager.GetString("NavigationControl_NavigationControl_Open_in_new_panel", resourceCulture);
}
}
- public static string LoadoutGrid_EmptyModlistSubtitle_Add_from_library {
+ ///
+ /// Looks up a localized string similar to Open in new tab.
+ ///
+ public static string NavigationControl_NavigationControl_Open_in_new_tab {
get {
- return ResourceManager.GetString("LoadoutGrid_EmptyModlistSubtitle_Add_from_library", resourceCulture);
+ return ResourceManager.GetString("NavigationControl_NavigationControl_Open_in_new_tab", resourceCulture);
}
}
- public static string LoadoutGridViewModel_EmptyModlistTitleString {
+ ///
+ /// Looks up a localized string similar to Newsfeed.
+ ///
+ public static string Newsfeed {
get {
- return ResourceManager.GetString("LoadoutGridViewModel_EmptyModlistTitleString", resourceCulture);
+ return ResourceManager.GetString("Newsfeed", resourceCulture);
}
}
- public static string EmptyLibraryTitleText {
+ ///
+ /// Looks up a localized string similar to You can add panels for split screen viewing by selecting the.
+ ///
+ public static string NewTabPageInfoBannerText1 {
get {
- return ResourceManager.GetString("EmptyLibraryTitleText", resourceCulture);
+ return ResourceManager.GetString("NewTabPageInfoBannerText1", resourceCulture);
}
}
- public static string FileOriginsPageViewModel_EmptyLibrarySubtitleText {
+ ///
+ /// Looks up a localized string similar to button in the toolbar.
+ ///
+ public static string NewTabPageInfoBannerText2 {
get {
- return ResourceManager.GetString("FileOriginsPageViewModel_EmptyLibrarySubtitleText", resourceCulture);
+ return ResourceManager.GetString("NewTabPageInfoBannerText2", resourceCulture);
}
}
- public static string DiagnosticListView_EmptyState_Header {
+ ///
+ /// Looks up a localized string similar to FREE.
+ ///
+ public static string Nexus_Premium_Status__Free {
get {
- return ResourceManager.GetString("DiagnosticListView.EmptyState.Header", resourceCulture);
+ return ResourceManager.GetString("Nexus_Premium_Status__Free", resourceCulture);
}
}
- public static string DiagnosticListView_EmptyState_Subtitle {
+ ///
+ /// Looks up a localized string similar to PREMIUM.
+ ///
+ public static string Nexus_Premium_Status__Premium {
get {
- return ResourceManager.GetString("DiagnosticListView.EmptyState.Subtitle", resourceCulture);
+ return ResourceManager.GetString("Nexus_Premium_Status__Premium", resourceCulture);
}
}
- public static string LoadoutCardViewModel_CreationTimeConverter_Created__0_ {
+ ///
+ /// Looks up a localized string similar to Browser didn't open automatically?.
+ ///
+ public static string NexusLoginOverlayView__BROWSER_DIDNT_OPEN {
get {
- return ResourceManager.GetString("LoadoutCardViewModel_CreationTimeConverter_Created__0_", resourceCulture);
+ return ResourceManager.GetString("NexusLoginOverlayView__BROWSER_DIDNT_OPEN", resourceCulture);
}
}
- public static string LoadoutCardViewModel_FormatLastAppliedTime_Last_applied__0_ {
+ ///
+ /// Looks up a localized string similar to Please click "Authorize" on the website.
+ ///
+ public static string NexusLoginOverlayView__Please_Click_Authorize {
get {
- return ResourceManager.GetString("LoadoutCardViewModel_FormatLastAppliedTime_Last_applied__0_", resourceCulture);
+ return ResourceManager.GetString("NexusLoginOverlayView__Please_Click_Authorize", resourceCulture);
}
}
- public static string LoadoutCardViewModel_FormatNumMods_Mods__0_ {
+ ///
+ /// Looks up a localized string similar to Please copy the following URL into your browser window. We support Chrome, Safari, Firefox and Edge..
+ ///
+ public static string NexusLoginOverlayView_Please_copy_url {
get {
- return ResourceManager.GetString("LoadoutCardViewModel_FormatNumMods_Mods__0_", resourceCulture);
+ return ResourceManager.GetString("NexusLoginOverlayView_Please_copy_url", resourceCulture);
}
}
- public static string MyLoadoutsPageTitle {
+ ///
+ /// Looks up a localized string similar to Add tab.
+ ///
+ public static string Panel_Add_tab_ToolTip {
get {
- return ResourceManager.GetString("MyLoadoutsPageTitle", resourceCulture);
+ return ResourceManager.GetString("Panel_Add_tab_ToolTip", resourceCulture);
}
}
- public static string MyLoadoutsPageDescriptionText {
+ ///
+ /// Looks up a localized string similar to New Tab.
+ ///
+ public static string PanelTabHeaderViewModel_Title_New_Tab {
get {
- return ResourceManager.GetString("MyLoadoutsPageDescriptionText", resourceCulture);
+ return ResourceManager.GetString("PanelTabHeaderViewModel_Title_New_Tab", resourceCulture);
}
}
- public static string MyLoadoutsGameSectionHeading {
+ ///
+ /// Looks up a localized string similar to Total {1:0}%.
+ ///
+ public static string ProgressBar_ProgressTextFormat__Total_1_0 {
get {
- return ResourceManager.GetString("MyLoadoutsGameSectionHeading", resourceCulture);
+ return ResourceManager.GetString("ProgressBar_ProgressTextFormat__Total_1_0", resourceCulture);
}
}
- public static string CreateNewLoadoutCarViewTexBlock {
+ ///
+ /// Looks up a localized string similar to Search.
+ ///
+ public static string SearchBox__Search {
get {
- return ResourceManager.GetString("CreateNewLoadoutCarViewTexBlock", resourceCulture);
+ return ResourceManager.GetString("SearchBox__Search", resourceCulture);
}
}
- public static string LoadoutCardViewCurrentlyAppliedTextBlock {
+ ///
+ /// Looks up a localized string similar to The app will need to restart to apply this setting.
+ ///
+ public static string SettingEntryView_NeedRestartMessage {
get {
- return ResourceManager.GetString("LoadoutCardViewCurrentlyAppliedTextBlock", resourceCulture);
+ return ResourceManager.GetString("SettingEntryView_NeedRestartMessage", resourceCulture);
}
}
- public static string LoadoutCardViewCreateCopyButton {
+ ///
+ /// Looks up a localized string similar to Settings.
+ ///
+ public static string SettingsView_Title {
get {
- return ResourceManager.GetString("LoadoutCardViewCreateCopyButton", resourceCulture);
+ return ResourceManager.GetString("SettingsView_Title", resourceCulture);
}
}
- public static string LoadoutCardViewDeletingText {
+ ///
+ /// Looks up a localized string similar to Downloads.
+ ///
+ public static string SpineDownloadButton_ToolTip {
get {
- return ResourceManager.GetString("LoadoutCardViewDeletingText", resourceCulture);
+ return ResourceManager.GetString("SpineDownloadButton_ToolTip", resourceCulture);
}
}
- public static string LoadoutCardViewCreatingText {
+ ///
+ /// Looks up a localized string similar to Home.
+ ///
+ public static string SpineHomeButton_ToolTip_Home {
get {
- return ResourceManager.GetString("LoadoutCardViewCreatingText", resourceCulture);
+ return ResourceManager.GetString("SpineHomeButton_ToolTip_Home", resourceCulture);
}
}
- public static string MyLoadoutsEmptyState_Subtitle {
+ ///
+ /// Looks up a localized string similar to {0} hours.
+ ///
+ public static string StringFormatters__HoursRemaining__hours {
get {
- return ResourceManager.GetString("MyLoadoutsEmptyState_Subtitle", resourceCulture);
+ return ResourceManager.GetString("StringFormatters__HoursRemaining__hours", resourceCulture);
}
}
- public static string MyLoadoutsEmptyState_Header {
+ ///
+ /// Looks up a localized string similar to ({0}).
+ ///
+ public static string StringFormatters__In_progress__numDownloads {
get {
- return ResourceManager.GetString("MyLoadoutsEmptyState_Header", resourceCulture);
+ return ResourceManager.GetString("StringFormatters__In_progress__numDownloads", resourceCulture);
}
}
- public static string LibraryItemDeleteConfirmation_Title {
+ ///
+ /// Looks up a localized string similar to {0} mins.
+ ///
+ public static string StringFormatters__MinutesRemaining_mins {
get {
- return ResourceManager.GetString("LibraryItemDeleteConfirmation_Title", resourceCulture);
+ return ResourceManager.GetString("StringFormatters__MinutesRemaining_mins", resourceCulture);
}
}
- public static string LibraryItemDeleteConfirmation_HeaderQuestion {
+ ///
+ /// Looks up a localized string similar to {0} secs.
+ ///
+ public static string StringFormatters__SecondsRemaining_secs {
get {
- return ResourceManager.GetString("LibraryItemDeleteConfirmation_HeaderQuestion", resourceCulture);
+ return ResourceManager.GetString("StringFormatters__SecondsRemaining_secs", resourceCulture);
}
}
- public static string LibraryItemDeleteConfirmation_UsedBy {
+ ///
+ /// Looks up a localized string similar to Account settings.
+ ///
+ public static string TopBar_AccountSettings {
get {
- return ResourceManager.GetString("LibraryItemDeleteConfirmation_UsedBy", resourceCulture);
+ return ResourceManager.GetString("TopBar_AccountSettings", resourceCulture);
}
}
- public static string LibraryItemDeleteConfirmation_UsedByWithLoadout {
+ ///
+ /// Looks up a localized string similar to Back.
+ ///
+ public static string TopBar_Back_ToolTip {
get {
- return ResourceManager.GetString("LibraryItemDeleteConfirmation_UsedByWithLoadout", resourceCulture);
+ return ResourceManager.GetString("TopBar_Back_ToolTip", resourceCulture);
}
}
- public static string LibraryItemDeleteConfirmation_DeleteModsButton {
+ ///
+ /// Looks up a localized string similar to Forward.
+ ///
+ public static string TopBar_Forward_ToolTip {
get {
- return ResourceManager.GetString("LibraryItemDeleteConfirmation_DeleteModsButton", resourceCulture);
+ return ResourceManager.GetString("TopBar_Forward_ToolTip", resourceCulture);
}
}
- public static string Updated_ViewUninstallDocs {
+ ///
+ /// Looks up a localized string similar to Help and feedback.
+ ///
+ public static string TopBar_Help_ToolTip {
get {
- return ResourceManager.GetString("Updated_ViewUninstallDocs", resourceCulture);
+ return ResourceManager.GetString("TopBar_Help_ToolTip", resourceCulture);
}
}
- public static string HumanizedDateTime_Never {
+ ///
+ /// Looks up a localized string similar to My Profile.
+ ///
+ public static string TopBar_MyProfile {
get {
- return ResourceManager.GetString("HumanizedDateTime_Never", resourceCulture);
+ return ResourceManager.GetString("TopBar_MyProfile", resourceCulture);
}
}
- public static string ApplyControlView__ApplyingToolTip {
+ ///
+ /// Looks up a localized string similar to Sign out.
+ ///
+ public static string TopBar_SignOut {
get {
- return ResourceManager.GetString("ApplyControlView__ApplyingToolTip", resourceCulture);
+ return ResourceManager.GetString("TopBar_SignOut", resourceCulture);
}
}
- public static string LoadoutCard_DeleteLoadoutToolTip {
+ ///
+ /// Looks up a localized string similar to Log In.
+ ///
+ public static string TopBarActions__LOG_IN {
get {
- return ResourceManager.GetString("LoadoutCard_DeleteLoadoutToolTip", resourceCulture);
+ return ResourceManager.GetString("TopBarActions__LOG_IN", resourceCulture);
}
}
- public static string LoadoutView_Title_Installed_Mods {
+ ///
+ /// Looks up a localized string similar to Connect your Nexus Mods account.
+ ///
+ public static string TopBarActions__LOG_IN_ToolTip {
get {
- return ResourceManager.GetString("LoadoutView_Title_Installed_Mods", resourceCulture);
+ return ResourceManager.GetString("TopBarActions__LOG_IN_ToolTip", resourceCulture);
}
}
- public static string ErrorGameAlreadyRunning_Title {
+ ///
+ /// Looks up a localized string similar to How to uninstall the Nexus Mods app.
+ ///
+ public static string Updated_ViewUninstallDocs {
get {
- return ResourceManager.GetString("ErrorGameAlreadyRunning_Title", resourceCulture);
+ return ResourceManager.GetString("Updated_ViewUninstallDocs", resourceCulture);
}
}
- public static string ErrorGameAlreadyRunning_Description {
+ ///
+ /// Looks up a localized string similar to Later.
+ ///
+ public static string Updater_LATER {
get {
- return ResourceManager.GetString("ErrorGameAlreadyRunning_Description", resourceCulture);
+ return ResourceManager.GetString("Updater_LATER", resourceCulture);
}
}
- public static string FileOriginPage_SwitchView {
+ ///
+ /// Looks up a localized string similar to Important: In order to install this version you will need to uninstall first. This will delete all your mods..
+ ///
+ public static string Updater_MainMessage {
get {
- return ResourceManager.GetString("FileOriginPage_SwitchView", resourceCulture);
+ return ResourceManager.GetString("Updater_MainMessage", resourceCulture);
}
}
- public static string FileOriginPage_SwitchView_ToolTip {
+ ///
+ /// Looks up a localized string similar to View update.
+ ///
+ public static string Updater_UPDATE {
get {
- return ResourceManager.GetString("FileOriginPage_SwitchView_ToolTip", resourceCulture);
+ return ResourceManager.GetString("Updater_UPDATE", resourceCulture);
}
}
- public static string FileOriginsPage_FromDrive_ToolTip {
+ ///
+ /// Looks up a localized string similar to Update available.
+ ///
+ public static string Updater_UpdateAvailable {
get {
- return ResourceManager.GetString("FileOriginsPage_FromDrive_ToolTip", resourceCulture);
+ return ResourceManager.GetString("Updater_UpdateAvailable", resourceCulture);
}
}
- public static string FileOriginsPage_FromNexus_ToolTip {
+ ///
+ /// Looks up a localized string similar to It appears that your copy of the app was installed via a system managed package manager, please update via your operating system's update application..
+ ///
+ public static string Updater_UseSystemUpdater {
get {
- return ResourceManager.GetString("FileOriginsPage_FromNexus_ToolTip", resourceCulture);
+ return ResourceManager.GetString("Updater_UseSystemUpdater", resourceCulture);
}
}
- public static string TopBar_Forward_ToolTip {
+ ///
+ /// Looks up a localized string similar to View changelog on GitHub.
+ ///
+ public static string Updater_ViewChangelog {
get {
- return ResourceManager.GetString("TopBar_Forward_ToolTip", resourceCulture);
+ return ResourceManager.GetString("Updater_ViewChangelog", resourceCulture);
}
}
- public static string TopBar_Back_ToolTip {
+ ///
+ /// Looks up a localized string similar to View App logs.
+ ///
+ public static string ViewAppLogsMenuItem_Header {
get {
- return ResourceManager.GetString("TopBar_Back_ToolTip", resourceCulture);
+ return ResourceManager.GetString("ViewAppLogsMenuItem.Header", resourceCulture);
}
}
- public static string TopBarActions__LOG_IN_ToolTip {
+ ///
+ /// Looks up a localized string similar to View changelog.
+ ///
+ public static string ViewChangelogMenuItem_Header {
get {
- return ResourceManager.GetString("TopBarActions__LOG_IN_ToolTip", resourceCulture);
+ return ResourceManager.GetString("ViewChangelogMenuItem.Header", resourceCulture);
}
}
- public static string LoadoutGridView__Remove_ToolTip {
+ ///
+ /// Looks up a localized string similar to Location:.
+ ///
+ public static string ViewModFilesView_Location {
get {
- return ResourceManager.GetString("LoadoutGridView__Remove_ToolTip", resourceCulture);
+ return ResourceManager.GetString("ViewModFilesView_Location", resourceCulture);
}
}
- public static string LoadoutGridView__View_Files_ToolTip {
+ ///
+ /// Looks up a localized string similar to Location:.
+ ///
+ public static string ViewModFilesView_Locations {
get {
- return ResourceManager.GetString("LoadoutGridView__View_Files_ToolTip", resourceCulture);
+ return ResourceManager.GetString("ViewModFilesView_Locations", resourceCulture);
}
}
- public static string CollectionDownloadViewModel_Ready_to_install {
+ ///
+ /// Looks up a localized string similar to Mod Not Found.
+ ///
+ public static string ViewModInfoPage_NotFound_Title {
get {
- return ResourceManager.GetString("CollectionDownloadViewModel_Ready_to_install", resourceCulture);
+ return ResourceManager.GetString("ViewModInfoPage_NotFound_Title", resourceCulture);
}
}
- public static string CollectionDownloadViewModel_Num_required_mods_downloaded {
+ ///
+ /// Looks up a localized string similar to Mod Info.
+ ///
+ public static string ViewModInfoPage_Title {
get {
- return ResourceManager.GetString("CollectionDownloadViewModel_Num_required_mods_downloaded", resourceCulture);
+ return ResourceManager.GetString("ViewModInfoPage_Title", resourceCulture);
}
}
}
diff --git a/src/NexusMods.App.UI/Resources/Language.resx b/src/NexusMods.App.UI/Resources/Language.resx
index e270ee8eb2..aed981bd05 100644
--- a/src/NexusMods.App.UI/Resources/Language.resx
+++ b/src/NexusMods.App.UI/Resources/Language.resx
@@ -582,7 +582,7 @@
button in the toolbar
- Install your downloaded mods from the
+ Install your mods from the Library
No mods added to {0}
diff --git a/src/NexusMods.App/Startup.cs b/src/NexusMods.App/Startup.cs
index 393b10d412..c79419eff7 100644
--- a/src/NexusMods.App/Startup.cs
+++ b/src/NexusMods.App/Startup.cs
@@ -100,7 +100,11 @@ public static AppBuilder BuildAvaloniaApp(IServiceProvider serviceProvider)
.UsePlatformDetect()
.LogToTrace()
.UseR3()
- .UseReactiveUI();
+ .UseReactiveUI()
+ .With(new SkiaOptions { UseOpacitySaveLayer = true });
+
+ // NOTE(insomnious): Opacity doesn't work on SVGs without this SkiaOptions set. It's needed for when we want to disable\fade SVG icons.
+ // See https://github.com/AvaloniaUI/Avalonia/pull/9964 for more details.
Locator.CurrentMutable.UnregisterCurrent(typeof(IViewLocator));
Locator.CurrentMutable.Register(serviceProvider.GetRequiredService, typeof(IViewLocator));
diff --git a/src/NexusMods.Icons/IconValues.cs b/src/NexusMods.Icons/IconValues.cs
index 390c5ae442..61aaf0afd2 100644
--- a/src/NexusMods.Icons/IconValues.cs
+++ b/src/NexusMods.Icons/IconValues.cs
@@ -369,8 +369,6 @@ public static class IconValues
#region Custom Icons
-
-
// https://pictogrammers.com/library/mdi/icon/alert-octagon/
public static readonly IconValue Alert = new ProjektankerIcon("mdi-alert-octagon");
@@ -486,4 +484,14 @@ public static class IconValues
public static readonly IconValue AvatarTest = new IconValue(new AvaloniaImage(new Bitmap(AssetLoader.Open(new Uri("avares://NexusMods.App.UI/Assets/DesignTime/cyberpunk_game.png")))));
#endregion
+
+ #region Brand Pictograms
+
+ ///
+ /// Brand pictogram for Games in 3D
+ ///
+ public static readonly IconValue PictogramGame3D = new IconValue(new AvaloniaSvg("avares://NexusMods.App.UI/Assets/Pictograms/game-3d.svg"));
+
+ #endregion
+
}
diff --git a/src/Themes/NexusMods.Themes.NexusFluentDark/Styles/Controls/Icons/IconsStyles.axaml b/src/Themes/NexusMods.Themes.NexusFluentDark/Styles/Controls/Icons/IconsStyles.axaml
index a9d21fda52..ee0fd61947 100644
--- a/src/Themes/NexusMods.Themes.NexusFluentDark/Styles/Controls/Icons/IconsStyles.axaml
+++ b/src/Themes/NexusMods.Themes.NexusFluentDark/Styles/Controls/Icons/IconsStyles.axaml
@@ -1,116 +1,131 @@
+ xmlns:icons="clr-namespace:NexusMods.Icons;assembly=NexusMods.Icons"
+ xmlns:controls="clr-namespace:NexusMods.App.UI.Controls;assembly=NexusMods.App.UI">
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -138,19 +153,19 @@
-
+
-
+
-
+
-
+
@@ -159,387 +174,391 @@
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/Themes/NexusMods.Themes.NexusFluentDark/Styles/UserControls/EmptyState/EmptyStateStyles.axaml b/src/Themes/NexusMods.Themes.NexusFluentDark/Styles/UserControls/EmptyState/EmptyStateStyles.axaml
index ec96048b23..5decdf7e20 100644
--- a/src/Themes/NexusMods.Themes.NexusFluentDark/Styles/UserControls/EmptyState/EmptyStateStyles.axaml
+++ b/src/Themes/NexusMods.Themes.NexusFluentDark/Styles/UserControls/EmptyState/EmptyStateStyles.axaml
@@ -2,36 +2,55 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="clr-namespace:NexusMods.App.UI.Controls;assembly=NexusMods.App.UI"
xmlns:icons="clr-namespace:NexusMods.Icons;assembly=NexusMods.Icons">
-
-
-
-
-
- There is nothing here, you should better do something about this.
-
- There is something here
-
-
-
-
+
+
+
+
+
+
+
+
There is nothing here, you should better do something about this.
-
- More text
-
-
- There is something here
-
-
+
+
+ There is something here
+
+
+
+ There is something here
+
+
+
+
+
+
+ There is nothing here, you should better do something about this.
+
+ More text
+
+
+
+ There is something here
+
+
+
+
@@ -45,24 +64,31 @@
+
-
+
+
+
+
+