Move all localizable strings from Aaru.Gui project to resources.

This commit is contained in:
2022-11-19 21:10:41 +00:00
parent 887e58c6e5
commit 81195f8630
42 changed files with 1128 additions and 1059 deletions

View File

@@ -31,6 +31,7 @@
// ****************************************************************************/
using Aaru.CommonTypes.Enums;
using Aaru.Localization;
using JetBrains.Annotations;
namespace Aaru.Gui.ViewModels.Tabs;
@@ -87,9 +88,9 @@ public sealed class SdMmcInfoViewModel
public string ExtendedCsdText { get; }
public string ScrText { get; }
public string CidLabel => "CID";
public string CsdLabel => "CSD";
public string OcrLabel => "OCR";
public string ExtendedCsdLabel => "Extended CSD";
public string ScrLabel => "SCR";
public string CidLabel => UI.Title_CID;
public string CsdLabel => UI.Title_CSD;
public string OcrLabel => UI.Title_OCR;
public string ExtendedCsdLabel => UI.Title_Extended_CSD;
public string ScrLabel => UI.Title_SCR;
}