Move all strings to properties in Aaru.Gui.

This commit is contained in:
2022-11-16 21:40:54 +00:00
parent 2f9b7fe0a1
commit ecb4842071
56 changed files with 934 additions and 458 deletions

View File

@@ -158,6 +158,11 @@ public sealed class PluginsViewModel : ViewModelBase
public string WritableLabel => "Writable:";
[NotNull]
public string CloseLabel => "Close";
public string NameLabel => "Name";
public string UUIDLabel => "UUID";
public string VersionLabel => "Version";
public string AuthorLabel => "Author";
public ReactiveCommand<Unit, Unit> CloseCommand { get; }
public ObservableCollection<PluginModel> Filters { get; }
public ObservableCollection<PluginModel> PartitionSchemes { get; }