Add detail game page (#41)
All checks were successful
Game Ideas deploy / build-test-deploy (push) Successful in 1m24s
All checks were successful
Game Ideas deploy / build-test-deploy (push) Successful in 1m24s
Reviewed-on: #41
This commit was merged in pull request #41.
This commit is contained in:
@@ -17,8 +17,8 @@ public class Translations (TranslationService translationService)
|
||||
public string Research => translationService.Translate(nameof(Research));
|
||||
public string Platforms => translationService.Translate(nameof(Platforms));
|
||||
public string Tags => translationService.Translate(nameof(Tags));
|
||||
public string Publishers => translationService.Translate(nameof(Publishers));
|
||||
public string Developers => translationService.Translate(nameof(Developers));
|
||||
public string Publisher => translationService.Translate(nameof(Publisher));
|
||||
public string Developer => translationService.Translate(nameof(Developer));
|
||||
public string StorageSize => translationService.Translate(nameof(StorageSize));
|
||||
public string StorageSizeMo => translationService.Translate(nameof(StorageSizeMo));
|
||||
public string LastModification => translationService.Translate(nameof(LastModification));
|
||||
@@ -64,6 +64,8 @@ public class Translations (TranslationService translationService)
|
||||
public string Cancel => translationService.Translate(nameof(Cancel));
|
||||
public string Confirm => translationService.Translate(nameof(Confirm));
|
||||
public string ConfirmDeleteDescription => translationService.Translate(nameof(ConfirmDeleteDescription));
|
||||
public string Informations => translationService.Translate(nameof(Informations));
|
||||
public string About => translationService.Translate(nameof(About));
|
||||
}
|
||||
|
||||
public static class ResourcesKey
|
||||
@@ -89,8 +91,8 @@ public static class ResourcesKey
|
||||
public static string Research => _instance?.Research ?? throw new InvalidOperationException("ResourcesKey.Research is not initialized.");
|
||||
public static string Platforms => _instance?.Platforms ?? throw new InvalidOperationException("ResourcesKey.Platforms is not initialized.");
|
||||
public static string Tags => _instance?.Tags ?? throw new InvalidOperationException("ResourcesKey.Tags is not initialized.");
|
||||
public static string Publishers => _instance?.Publishers ?? throw new InvalidOperationException("ResourcesKey.Publishers is not initialized.");
|
||||
public static string Developers => _instance?.Developers ?? throw new InvalidOperationException("ResourcesKey.Developers is not initialized.");
|
||||
public static string Publisher => _instance?.Publisher ?? throw new InvalidOperationException("ResourcesKey.Publisher is not initialized.");
|
||||
public static string Developer => _instance?.Developer ?? throw new InvalidOperationException("ResourcesKey.Developer is not initialized.");
|
||||
public static string StorageSize => _instance?.StorageSize ?? throw new InvalidOperationException("ResourcesKey.StorageSize is not initialized.");
|
||||
public static string StorageSizeMo => _instance?.StorageSizeMo ?? throw new InvalidOperationException("ResourcesKey.StorageSizeMo is not initialized.");
|
||||
public static string LastModification => _instance?.LastModification ?? throw new InvalidOperationException("ResourcesKey.LastModification is not initialized.");
|
||||
@@ -136,4 +138,6 @@ public static class ResourcesKey
|
||||
public static string Cancel => _instance?.Cancel ?? throw new InvalidOperationException("ResourcesKey.Cancel is not initialized.");
|
||||
public static string Confirm => _instance?.Confirm ?? throw new InvalidOperationException("ResourcesKey.Confirm is not initialized.");
|
||||
public static string ConfirmDeleteDescription => _instance?.ConfirmDeleteDescription ?? throw new InvalidOperationException("ResourcesKey.ConfirmDeleteDescription is not initialized.");
|
||||
public static string Informations => _instance?.Informations ?? throw new InvalidOperationException("ResourcesKey.Informations is not initialized.");
|
||||
public static string About => _instance?.About ?? throw new InvalidOperationException("ResourcesKey.About is not initialized.");
|
||||
}
|
||||
Reference in New Issue
Block a user