feat(Localization) Adding localization text. Fixing bugs in toasts

This commit is contained in:
2022-04-10 19:15:41 -04:00
parent 4322be0053
commit 81659a9f84
29 changed files with 287 additions and 122 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
namespace Model.Development.Git;
namespace Model.Git;
public class CommitType
{
+1 -2
View File
@@ -1,6 +1,6 @@
using System;
namespace Model.Development.Git;
namespace Model.Git;
public class GitChangeModel
{
@@ -9,6 +9,5 @@ public class GitChangeModel
public string Name { get; set; } = "Add name...";
public string Description { get; set; } = "Add desciption...";
public string Commit { get; set; } = CommitType.Feature;
public DateTime Date { get; set; } = DateTime.Now;
public string Important { get; set; } = "False";
}
+1 -1
View File
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
namespace Model.Development.Git;
namespace Model.Git;
public class GitPatchModel
{