diff --git a/AJS.Web/Areas/Identity/Pages/Account/ResetPassword.cshtml.cs b/AJS.Web/Areas/Identity/Pages/Account/ResetPassword.cshtml.cs
index d23054b..de63665 100644
--- a/AJS.Web/Areas/Identity/Pages/Account/ResetPassword.cshtml.cs
+++ b/AJS.Web/Areas/Identity/Pages/Account/ResetPassword.cshtml.cs
@@ -10,6 +10,7 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
using Microsoft.AspNetCore.WebUtilities;
+using Microsoft.Extensions.Localization;
namespace AJS.Web.Areas.Identity.Pages.Account
{
@@ -17,10 +18,12 @@ namespace AJS.Web.Areas.Identity.Pages.Account
public class ResetPasswordModel : PageModel
{
private readonly UserManager
_userManager;
+ private readonly IStringLocalizer _localizer;
- public ResetPasswordModel(UserManager userManager)
+ public ResetPasswordModel(UserManager userManager, IStringLocalizer localizer)
{
_userManager = userManager;
+ _localizer = localizer;
}
[BindProperty]
@@ -33,7 +36,7 @@ public class InputModel
public string Email { get; set; }
[Required]
- [StringLength(100, ErrorMessage = "The {0} must be at least {2} and at max {1} characters long.", MinimumLength = 6)]
+ [StringLength(100, ErrorMessage = "The Password must be at least {2} and at max {1} characters long.", MinimumLength = 6)]
[DataType(DataType.Password)]
public string Password { get; set; }
@@ -49,7 +52,7 @@ public IActionResult OnGet(string code = null)
{
if (code == null)
{
- return BadRequest("A code must be supplied for password reset.");
+ return BadRequest(_localizer["A code must be supplied for password reset."]);
}
else
{
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/ConfirmEmailChangeModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/ConfirmEmailChangeModel.bg.resx
new file mode 100644
index 0000000..ea532bc
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/ConfirmEmailChangeModel.bg.resx
@@ -0,0 +1,136 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Грешка при смяна на имейла.
+ Error changing email.
+
+
+ Грешка при смяна на името на потребитела.
+ Error changing user name.
+
+
+ Благодарим ви, че потвърдихте промяната на имейла си.
+ Thank you for confirming your email change.
+
+
+ Не може да се зареди потребител с идентификатор „{0}“.
+ Unable to load user with ID '{0}'.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/ConfirmEmailChangeModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/ConfirmEmailChangeModel.en.resx
new file mode 100644
index 0000000..a8f64a0
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/ConfirmEmailChangeModel.en.resx
@@ -0,0 +1,136 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Error changing email.
+ Error changing email.
+
+
+ Error changing user name.
+ Error changing user name.
+
+
+ Thank you for confirming your email change.
+ Thank you for confirming your email change.
+
+
+ Unable to load user with ID '{0}'.
+ Unable to load user with ID '{0}'.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/ConfirmEmailModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/ConfirmEmailModel.bg.resx
new file mode 100644
index 0000000..8660131
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/ConfirmEmailModel.bg.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Грешка при потвърждаването на имейла ви.
+ Error confirming your email.
+
+
+ Благодарим ви, че потвърдихте имейла си.
+ Thank you for confirming your email.
+
+
+ Не може да се зареди потребител с идентификатор „{0}“.
+ Unable to load user with ID '{0}'.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/ConfirmEmailModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/ConfirmEmailModel.en.resx
new file mode 100644
index 0000000..bf4d9bb
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/ConfirmEmailModel.en.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Error confirming your email.
+ Error confirming your email.
+
+
+ Thank you for confirming your email.
+ Thank you for confirming your email.
+
+
+ Unable to load user with ID '{0}'.
+ Unable to load user with ID '{0}'.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/ExternalLoginModel+InputModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/ExternalLoginModel+InputModel.bg.resx
new file mode 100644
index 0000000..8f89f83
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/ExternalLoginModel+InputModel.bg.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Имейла е задължителен.
+ Email is required
+
+
+ Невалиден имейл.
+ Invalid email
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/ExternalLoginModel+InputModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/ExternalLoginModel+InputModel.en.resx
new file mode 100644
index 0000000..0beb9db
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/ExternalLoginModel+InputModel.en.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Email is required
+ Email is required
+
+
+ Invalid email
+ Invalid email
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/ExternalLoginModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/ExternalLoginModel.bg.resx
new file mode 100644
index 0000000..f55d467
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/ExternalLoginModel.bg.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Грешка от външен доставчик: {0}
+ Error from external provider: {0}
+
+
+ Грешка при зареждането на външна информация за вход по време на потвърждение.
+ Error loading external login information during confirmation.
+
+
+ Грешка при зареждане на външна информация за вход.
+ Error loading external login information.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/ExternalLoginModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/ExternalLoginModel.en.resx
new file mode 100644
index 0000000..d96b184
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/ExternalLoginModel.en.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Error from external provider: {0}
+ Error from external provider: {0}
+
+
+ Error loading external login information during confirmation.
+ Error loading external login information during confirmation.
+
+
+ Error loading external login information.
+ Error loading external login information.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/ForgotPassword.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/ForgotPassword.bg.resx
index 2e6a68a..f2276fa 100644
--- a/AJS.Web/Resources/Areas/Identity/Pages/Account/ForgotPassword.bg.resx
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/ForgotPassword.bg.resx
@@ -117,6 +117,10 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ Въведи имейл
+ Enter your email.
+
Забравена парола?
Forgot your password?
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/ForgotPassword.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/ForgotPassword.en.resx
index 408cb26..a45754b 100644
--- a/AJS.Web/Resources/Areas/Identity/Pages/Account/ForgotPassword.en.resx
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/ForgotPassword.en.resx
@@ -117,6 +117,10 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ Enter your email.
+ Enter your email.
+
Forgot your password?
Forgot your password?
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/ForgotPasswordModel+InputModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/ForgotPasswordModel+InputModel.bg.resx
new file mode 100644
index 0000000..64c2718
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/ForgotPasswordModel+InputModel.bg.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Имейл
+ Email
+
+
+ Имейла е задължителен.
+ Email is required
+
+
+ Невалиден имейл.
+ Invalid email
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/ForgotPasswordModel+InputModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/ForgotPasswordModel+InputModel.en.resx
new file mode 100644
index 0000000..4f300a1
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/ForgotPasswordModel+InputModel.en.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Email
+ Email
+
+
+ Email is required
+ Email is required
+
+
+ Invalid email
+ Invalid email
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginModel+InputModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginModel+InputModel.bg.resx
new file mode 100644
index 0000000..9133bcb
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginModel+InputModel.bg.resx
@@ -0,0 +1,144 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Имейл
+ Email
+
+
+ Имейла е задължителен.
+ Email is required
+
+
+ Невалиден имейл.
+ Invalid email
+
+
+ Парола
+ Password
+
+
+ Паролата е задължителна.
+ Password is required
+
+
+ Запомни ме?
+ Remember me?
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginModel+InputModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginModel+InputModel.en.resx
new file mode 100644
index 0000000..a6b78b2
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginModel+InputModel.en.resx
@@ -0,0 +1,144 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Email
+ Email
+
+
+ Email is required
+ Email is required
+
+
+ Invalid email
+ Invalid email
+
+
+ Password
+ Password
+
+
+ Password is required
+ Password is required
+
+
+ Remember me?
+ Remember me?
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginModel.bg.resx
new file mode 100644
index 0000000..5d287f5
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginModel.bg.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Невалиден опит за влизане.
+ Invalid login attempt.
+
+
+ Изпратен е имейл за потвърждение. Моля, проверете електронната си поща.
+ Verification email sent. Please check your email.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginModel.en.resx
new file mode 100644
index 0000000..25b5764
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginModel.en.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Invalid login attempt.
+ Invalid login attempt.
+
+
+ Verification email sent. Please check your email.
+ Verification email sent. Please check your email.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWith2faModel+InputModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWith2faModel+InputModel.bg.resx
new file mode 100644
index 0000000..298b20b
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWith2faModel+InputModel.bg.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Код за удостоверяване
+ Authenticator code
+
+
+ Запомни тази машина
+ Remember this machine
+
+
+ Кодът за удостоверяване трябва да бъде най-малко {2} и максимум {1} знака.
+ The authenticator code must be at least {2} and at max {1} characters long.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWith2faModel+InputModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWith2faModel+InputModel.en.resx
new file mode 100644
index 0000000..01fa7fc
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWith2faModel+InputModel.en.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Authenticator code
+ Authenticator code
+
+
+ Remember this machine
+ Remember this machine
+
+
+ The authenticator code must be at least {2} and at max {1} characters long.
+ The authenticator code must be at least {2} and at max {1} characters long.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWith2faModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWith2faModel.bg.resx
new file mode 100644
index 0000000..b667683
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWith2faModel.bg.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Невалиден код за удостоверяване
+ Invalid authenticator code.
+
+
+ Потребителят с дву-факторно удостоверяване не може да се зареди.
+ Unable to load two-factor authentication user.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWith2faModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWith2faModel.en.resx
new file mode 100644
index 0000000..a7b5709
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWith2faModel.en.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Invalid authenticator code.
+ Invalid authenticator code.
+
+
+ Unable to load two-factor authentication user.
+ Unable to load two-factor authentication user.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWithRecoveryCodeModel+InputModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWithRecoveryCodeModel+InputModel.bg.resx
new file mode 100644
index 0000000..c340e93
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWithRecoveryCodeModel+InputModel.bg.resx
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Код за въстановяване
+ Recovery Code
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWithRecoveryCodeModel+InputModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWithRecoveryCodeModel+InputModel.en.resx
new file mode 100644
index 0000000..f242d8f
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWithRecoveryCodeModel+InputModel.en.resx
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Recovery Code
+ Recovery Code
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWithRecoveryCodeModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWithRecoveryCodeModel.bg.resx
new file mode 100644
index 0000000..dc33b78
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWithRecoveryCodeModel.bg.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Въведен е невалиден код за възстановяване.
+ Invalid recovery code entered.
+
+
+ Потребителят за дву-факторно удостоверяване не може да се зареди.
+ Unable to load two-factor authentication user. InvalidOperationException message
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWithRecoveryCodeModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWithRecoveryCodeModel.en.resx
new file mode 100644
index 0000000..44677a2
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/LoginWithRecoveryCodeModel.en.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Invalid recovery code entered.
+ Invalid recovery code entered.
+
+
+ Unable to load two-factor authentication user.
+ Unable to load two-factor authentication user. InvalidOperationException message
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ChangePasswordModel+InputModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ChangePasswordModel+InputModel.bg.resx
new file mode 100644
index 0000000..61911f0
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ChangePasswordModel+InputModel.bg.resx
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Потвърждение на новата парола
+ Confirm new password
+
+
+ Текуща парола
+ Current password
+
+
+ Нова парола
+ New password
+
+
+ Новата парола е задължителна
+ New password is required
+
+
+ Старата парола е задължителна
+ Old Password is required
+
+
+ Новата парола и паролата за потвърждение не съвпадат.
+ The new password and confirmation password do not match.
+
+
+ Паролата трябва да бъде най-малко {2} и максимум {1} знака.
+ The Password must be at least {2} and at max {1} characters long.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ChangePasswordModel+InputModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ChangePasswordModel+InputModel.en.resx
new file mode 100644
index 0000000..5701259
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ChangePasswordModel+InputModel.en.resx
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Confirm new password
+ Confirm new password
+
+
+ Current password
+ Current password
+
+
+ New password
+ New password
+
+
+ New password is required
+ New password is required
+
+
+ Old Password is required
+ Old Password is required
+
+
+ The new password and confirmation password do not match.
+ The new password and confirmation password do not match.
+
+
+ The Password must be at least {2} and at max {1} characters long.
+ The Password must be at least {2} and at max {1} characters long.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ChangePasswordModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ChangePasswordModel.bg.resx
new file mode 100644
index 0000000..768e260
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ChangePasswordModel.bg.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Не може да се зареди потребител с идентификатор „{0}“.
+ Unable to load user with ID '{0}'.
+
+
+ Паролата ви е сменена успешно.
+ Your password has been changed.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ChangePasswordModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ChangePasswordModel.en.resx
new file mode 100644
index 0000000..0f55c77
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ChangePasswordModel.en.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Unable to load user with ID '{0}'.
+ Unable to load user with ID '{0}'.
+
+
+ Your password has been changed.
+ Your password has been changed.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DeletePersonalData.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DeletePersonalData.bg.resx
index 6682269..75d708c 100644
--- a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DeletePersonalData.bg.resx
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DeletePersonalData.bg.resx
@@ -122,7 +122,7 @@
Delete data and close my account
- Delete Personal Data
+ Изтриване на персоналните данни
Delete Personal Data
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DeletePersonalDataModel+InputModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DeletePersonalDataModel+InputModel.bg.resx
new file mode 100644
index 0000000..3ca1d44
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DeletePersonalDataModel+InputModel.bg.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Парола
+ Password
+
+
+ Паролата е задължителна
+ Password is required
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DeletePersonalDataModel+InputModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DeletePersonalDataModel+InputModel.en.resx
new file mode 100644
index 0000000..526bf45
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DeletePersonalDataModel+InputModel.en.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Password
+ Password
+
+
+ Password is required
+ Password is required
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DeletePersonalDataModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DeletePersonalDataModel.bg.resx
new file mode 100644
index 0000000..749ae29
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DeletePersonalDataModel.bg.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Грешна парола.
+ Incorrect password.
+
+
+ Не може да се зареди потребител с идентификатор „{0}“.
+ Unable to load user with ID '{0}'.
+
+
+ Възникна неочаквана грешка при изтриването на потребителя с идентификатор '{0}'.
+ Unexpected error occurred deleting user with ID '{0}'.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DeletePersonalDataModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DeletePersonalDataModel.en.resx
new file mode 100644
index 0000000..5e2378c
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DeletePersonalDataModel.en.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Incorrect password.
+ Incorrect password.
+
+
+ Unable to load user with ID '{0}'.
+ Unable to load user with ID '{0}'.
+
+
+ Unexpected error occurred deleting user with ID '{0}'.
+ Unexpected error occurred deleting user with ID '{0}'.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/Disable2faModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/Disable2faModel.bg.resx
new file mode 100644
index 0000000..e24a66b
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/Disable2faModel.bg.resx
@@ -0,0 +1,136 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 2fa е деактивиран. Можете да активирате 2fa, когато настроите приложение за удостоверяване
+ 2fa has been disabled. You can reenable 2fa when you setup an authenticator app
+
+
+ Не може да деактивира 2FA за потребител с идентификатор '{0}', тъй като в момента не е активиран.
+ Cannot disable 2FA for user with ID '{0}' as it's not currently enabled.
+
+
+ Не може да се зареди потребител с идентификатор „{0}“.
+ Unable to load user with ID '{0}'.
+
+
+ Възникна неочаквана грешка при деактивиране на 2FA за потребител с идентификатор '{0}'.
+ Unexpected error occurred disabling 2FA for user with ID '{0}'.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/Disable2faModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/Disable2faModel.en.resx
new file mode 100644
index 0000000..8980239
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/Disable2faModel.en.resx
@@ -0,0 +1,136 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 2fa has been disabled. You can reenable 2fa when you setup an authenticator app
+ 2fa has been disabled. You can reenable 2fa when you setup an authenticator app
+
+
+ Cannot disable 2FA for user with ID '{0}' as it's not currently enabled.
+ Cannot disable 2FA for user with ID '{0}' as it's not currently enabled.
+
+
+ Unable to load user with ID '{0}'.
+ Unable to load user with ID '{0}'.
+
+
+ Unexpected error occurred disabling 2FA for user with ID '{0}'.
+ Unexpected error occurred disabling 2FA for user with ID '{0}'.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DownloadPersonalDataModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DownloadPersonalDataModel.bg.resx
new file mode 100644
index 0000000..5956c03
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DownloadPersonalDataModel.bg.resx
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Не може да се зареди потребител с идентификатор „{0}“.
+ Unable to load user with ID '{0}'.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DownloadPersonalDataModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DownloadPersonalDataModel.en.resx
new file mode 100644
index 0000000..1be11d5
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/DownloadPersonalDataModel.en.resx
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Unable to load user with ID '{0}'.
+ Unable to load user with ID '{0}'.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EmailModel+InputModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EmailModel+InputModel.bg.resx
new file mode 100644
index 0000000..f0d0945
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EmailModel+InputModel.bg.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Имейла е задължителен
+ Email is Required
+
+
+ Невалиден имейл
+ Invalid Email
+
+
+ Нов имейл
+ New email
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EmailModel+InputModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EmailModel+InputModel.en.resx
new file mode 100644
index 0000000..f596258
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EmailModel+InputModel.en.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Email is Required
+ Email is Required
+
+
+ Invalid Email
+ Invalid Email
+
+
+ New email
+ New email
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EmailModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EmailModel.bg.resx
new file mode 100644
index 0000000..58501b5
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EmailModel.bg.resx
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Връзка за потвърждение за промяна на изпратения имейл. Моля, проверете електронната си поща.
+ Confirmation link to change email sent. Please check your email.
+
+
+ Имейл
+ Email
+
+
+ Не може да се зареди потребител с идентификатор „{0}“.
+ Unable to load user with ID '{0}'.
+
+
+ Изпратен е имейл за потвърждение. Моля, проверете електронната си поща.
+ Verification email sent. Please check your email.
+
+
+ Вашият имейл е непроменен.
+ Your email is unchanged.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EmailModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EmailModel.en.resx
new file mode 100644
index 0000000..79448b3
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EmailModel.en.resx
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Confirmation link to change email sent. Please check your email.
+ Confirmation link to change email sent. Please check your email.
+
+
+ Email
+ Email
+
+
+ Unable to load user with ID '{0}'.
+ Unable to load user with ID '{0}'.
+
+
+ Verification email sent. Please check your email.
+ Verification email sent. Please check your email.
+
+
+ Your email is unchanged.
+ Your email is unchanged.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EnableAuthenticatorModel+InputModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EnableAuthenticatorModel+InputModel.bg.resx
new file mode 100644
index 0000000..7effa9f
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EnableAuthenticatorModel+InputModel.bg.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Кодът за потвърждение трябва да бъде най-малко {2} и максимум {1} знака.
+ The Verification Code must be at least {2} and at max {1} characters long.
+
+
+ Код за потвърждение
+ Verification Code
+
+
+ Изисква се код за потвърждение
+ Verification Code is required
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EnableAuthenticatorModel+InputModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EnableAuthenticatorModel+InputModel.en.resx
new file mode 100644
index 0000000..bf0cd1a
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EnableAuthenticatorModel+InputModel.en.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ The Verification Code must be at least {2} and at max {1} characters long.
+ The Verification Code must be at least {2} and at max {1} characters long.
+
+
+ Verification Code
+ Verification Code
+
+
+ Verification Code is required
+ Verification Code is required
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EnableAuthenticatorModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EnableAuthenticatorModel.bg.resx
new file mode 100644
index 0000000..61971be
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EnableAuthenticatorModel.bg.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Не може да се зареди потребител с идентификатор „{0}“.
+ Unable to load user with ID '{0}'.
+
+
+ Кодът за потвърждение е невалиден.
+ Verification code is invalid.
+
+
+ Вашето приложение за удостоверяване е потвърдено.
+ Your authenticator app has been verified.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EnableAuthenticatorModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EnableAuthenticatorModel.en.resx
new file mode 100644
index 0000000..aa6dbab
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/EnableAuthenticatorModel.en.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Unable to load user with ID '{0}'.
+ Unable to load user with ID '{0}'.
+
+
+ Verification code is invalid.
+ Verification code is invalid.
+
+
+ Your authenticator app has been verified.
+ Your authenticator app has been verified.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ExternalLoginsModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ExternalLoginsModel.bg.resx
new file mode 100644
index 0000000..844c745
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ExternalLoginsModel.bg.resx
@@ -0,0 +1,144 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Добавено е външното влизане.
+ The external login was added.
+
+
+ Външното влизане не беше добавено. Външните влизания могат да бъдат свързани само с един акаунт.
+ The external login was not added. External logins can only be associated with one account.
+
+
+ Външното влизане не беше премахнато.
+ The external login was not removed.
+
+
+ Външното влизане беше премахнато.
+ The external login was removed.
+
+
+ Не може да се зареди потребител с идентификатор „{0}“.
+ Unable to load user with ID '{0}'.
+
+
+ Възникна неочаквана грешка при зареждането на външна информация за вход за потребител с идентификатор '{0}'.
+ Unexpected error occurred loading external login info for user with ID '{0}'.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ExternalLoginsModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ExternalLoginsModel.en.resx
new file mode 100644
index 0000000..cba9ed1
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ExternalLoginsModel.en.resx
@@ -0,0 +1,144 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ The external login was added.
+ The external login was added.
+
+
+ The external login was not added. External logins can only be associated with one account.
+ The external login was not added. External logins can only be associated with one account.
+
+
+ The external login was not removed.
+ The external login was not removed.
+
+
+ The external login was removed.
+ The external login was removed.
+
+
+ Unable to load user with ID '{0}'.
+ Unable to load user with ID '{0}'.
+
+
+ Unexpected error occurred loading external login info for user with ID '{0}'.
+ Unexpected error occurred loading external login info for user with ID '{0}'.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodesModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodesModel.bg.resx
new file mode 100644
index 0000000..2eed606
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodesModel.bg.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Не мога да генерирам кодове за възстановяване за потребител с идентификатор '{0}', тъй като те не са активирани 2FA.
+ Cannot generate recovery codes for user with ID '{0}' because they do not have 2FA enabled.
+
+
+ Не може да се зареди потребител с идентификатор „{0}“.
+ Unable to load user with ID '{0}'.
+
+
+ Генерирахте нови кодове за възстановяване.
+ You have generated new recovery codes.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodesModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodesModel.en.resx
new file mode 100644
index 0000000..d2f45be
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodesModel.en.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Cannot generate recovery codes for user with ID '{0}' because they do not have 2FA enabled.
+ Cannot generate recovery codes for user with ID '{0}' because they do not have 2FA enabled.
+
+
+ Unable to load user with ID '{0}'.
+ Unable to load user with ID '{0}'.
+
+
+ You have generated new recovery codes.
+ You have generated new recovery codes.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/IndexModel+InputModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/IndexModel+InputModel.bg.resx
new file mode 100644
index 0000000..0330a19
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/IndexModel+InputModel.bg.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Невалиден телефонен номер
+ Invalid Phone Number
+
+
+ Телефонен номер
+ Phone number
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/IndexModel+InputModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/IndexModel+InputModel.en.resx
new file mode 100644
index 0000000..8e3aa98
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/IndexModel+InputModel.en.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Invalid Phone Number
+ Invalid Phone Number
+
+
+ Phone number
+ Phone number
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/IndexModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/IndexModel.bg.resx
new file mode 100644
index 0000000..5d198d7
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/IndexModel.bg.resx
@@ -0,0 +1,136 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Не може да се зареди потребител с идентификатор „{0}“.
+ Unable to load user with ID '{0}'.
+
+
+ Възникна неочаквана грешка при настройката на телефонен номер за потребител с идентификатор „{0}“.
+ Unexpected error occurred setting phone number for user with ID '{0}'.
+
+
+ Потребителско име
+ User name
+
+
+ Вашият профил е актуализиран
+ Your profile has been updated
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/IndexModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/IndexModel.en.resx
new file mode 100644
index 0000000..ef0373f
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/IndexModel.en.resx
@@ -0,0 +1,136 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Unable to load user with ID '{0}'.
+ Unable to load user with ID '{0}'.
+
+
+ Unexpected error occurred setting phone number for user with ID '{0}'.
+ Unexpected error occurred setting phone number for user with ID '{0}'.
+
+
+ User name
+ User name
+
+
+ Your profile has been updated
+ Your profile has been updated
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/PersonalDataModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/PersonalDataModel.bg.resx
new file mode 100644
index 0000000..5956c03
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/PersonalDataModel.bg.resx
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Не може да се зареди потребител с идентификатор „{0}“.
+ Unable to load user with ID '{0}'.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/PersonalDataModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/PersonalDataModel.en.resx
new file mode 100644
index 0000000..1be11d5
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/PersonalDataModel.en.resx
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Unable to load user with ID '{0}'.
+ Unable to load user with ID '{0}'.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ResetAuthenticatorModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ResetAuthenticatorModel.bg.resx
new file mode 100644
index 0000000..dd8dbf2
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ResetAuthenticatorModel.bg.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Не може да се зареди потребител с идентификатор „{0}“.
+ Unable to load user with ID '{0}'.
+
+
+ Ключът за приложението ви за автентификатор е нулиран, ще трябва да конфигурирате приложението си за удостоверяване чрез новия ключ.
+ Your authenticator app key has been reset, you will need to configure your authenticator app using the new key.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ResetAuthenticatorModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ResetAuthenticatorModel.en.resx
new file mode 100644
index 0000000..f43ad4e
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/ResetAuthenticatorModel.en.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Unable to load user with ID '{0}'.
+ Unable to load user with ID '{0}'.
+
+
+ Your authenticator app key has been reset, you will need to configure your authenticator app using the new key.
+ Your authenticator app key has been reset, you will need to configure your authenticator app using the new key.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/SetPasswordModel+InputModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/SetPasswordModel+InputModel.bg.resx
new file mode 100644
index 0000000..e9fb171
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/SetPasswordModel+InputModel.bg.resx
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Потвърждение на новата парола
+ Confirm new password
+
+
+ Нова парола
+ New password
+
+
+ Новата парола е задължителна
+ New Password is Required
+
+
+ Новата парола и паролата за потвърждение не съвпадат.
+ The new password and confirmation password do not match.
+
+
+ Новата парола трябва да бъде най-малко {2} и максимум {1} знака.
+ The New Password must be at least {2} and at max {1} characters long.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/SetPasswordModel+InputModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/SetPasswordModel+InputModel.en.resx
new file mode 100644
index 0000000..b73c0d9
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/SetPasswordModel+InputModel.en.resx
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Confirm new password
+ Confirm new password
+
+
+ New password
+ New password
+
+
+ New Password is Required
+ New Password is Required
+
+
+ The new password and confirmation password do not match.
+ The new password and confirmation password do not match.
+
+
+ The New Password must be at least {2} and at max {1} characters long.
+ The New Password must be at least {2} and at max {1} characters long.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/SetPasswordModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/SetPasswordModel.bg.resx
new file mode 100644
index 0000000..c29841a
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/SetPasswordModel.bg.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Не може да се зареди потребител с идентификатор „{0}“.
+ Unable to load user with ID '{0}'.
+
+
+ Вашата парола е зададена.
+ Your password has been set.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/SetPasswordModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/SetPasswordModel.en.resx
new file mode 100644
index 0000000..c17295b
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/SetPasswordModel.en.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Unable to load user with ID '{0}'.
+ Unable to load user with ID '{0}'.
+
+
+ Your password has been set.
+ Your password has been set.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.bg.resx
index c700ed1..257a02b 100644
--- a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.bg.resx
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.bg.resx
@@ -121,6 +121,10 @@
Добавете приложение за удостоверяване
Add authenticator app
+
+ Приложение за удостоверяване
+ Authenticator app
+
преди да можете да влезете с код за възстановяване.
before you can log in with a recovery code.
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.en.resx
index f096721..5f3857c 100644
--- a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.en.resx
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.en.resx
@@ -121,6 +121,10 @@
Add authenticator app
Add authenticator app
+
+ Authenticator app
+ Authenticator app
+
before you can log in with a recovery code.
before you can log in with a recovery code.
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/TwoFactorAuthenticationModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/TwoFactorAuthenticationModel.bg.resx
new file mode 100644
index 0000000..a6357ff
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/TwoFactorAuthenticationModel.bg.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Настоящият браузър е забравен. Когато влезете отново от този браузър, ще бъдете подканени за вашия 2fa код.
+ The current browser has been forgotten. When you login again from this browser you will be prompted for your 2fa code.
+
+
+ Не може да се зареди потребител с идентификатор „{0}“.
+ Unable to load user with ID '{0}'.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/TwoFactorAuthenticationModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/TwoFactorAuthenticationModel.en.resx
new file mode 100644
index 0000000..420713f
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/Manage/TwoFactorAuthenticationModel.en.resx
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ The current browser has been forgotten. When you login again from this browser you will be prompted for your 2fa code.
+ The current browser has been forgotten. When you login again from this browser you will be prompted for your 2fa code.
+
+
+ Unable to load user with ID '{0}'.
+ Unable to load user with ID '{0}'.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/RegisterConfirmationModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/RegisterConfirmationModel.bg.resx
new file mode 100644
index 0000000..9c2055c
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/RegisterConfirmationModel.bg.resx
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Потребител с имейл '{0}' не може да бъде зареден.
+ Unable to load user with email '{0}'.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/RegisterConfirmationModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/RegisterConfirmationModel.en.resx
new file mode 100644
index 0000000..b899fa2
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/RegisterConfirmationModel.en.resx
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Unable to load user with email '{0}'.
+ Unable to load user with email '{0}'.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/RegisterModel+InputModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/RegisterModel+InputModel.bg.resx
new file mode 100644
index 0000000..c49490f
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/RegisterModel+InputModel.bg.resx
@@ -0,0 +1,152 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Потвърди парола
+ Display Confirm password Property
+
+
+ Имейл
+ Display Email Property
+
+
+ Невалиден имейл адрес.
+ Email validation attribute error message
+
+
+ Полето "Имейл" е задължително.
+ Email required attribute error message
+
+
+ Парола
+ Display Password Property
+
+
+ Паролата е задължителна
+ Password required attribute error message
+
+
+ Паролата и паролата за потвърждение не съвпадат.
+ Display password confirmation error message
+
+
+ Паролата трябва да бъде най-малко {2} и максимум {1} знака.
+ Display Password Length error message
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/RegisterModel+InputModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/RegisterModel+InputModel.en.resx
new file mode 100644
index 0000000..7d09abb
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/RegisterModel+InputModel.en.resx
@@ -0,0 +1,152 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Confirm password
+ Display Confirm password Property
+
+
+ Email
+ Display Email Property
+
+
+ Email is not valid
+ Email validation attribute error message
+
+
+ Email is required
+ Email required error message
+
+
+ Password
+ Display Password Property
+
+
+ Password is required
+ Password required attribute error message
+
+
+ The password and confirmation password do not match.
+ Display password confirmation error message
+
+
+ The Password must be at least {2} and at max {1} characters long.
+ Display Password Length error message
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPassword.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPassword.bg.resx
index a9d9333..18f1c79 100644
--- a/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPassword.bg.resx
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPassword.bg.resx
@@ -125,4 +125,8 @@
Нулиране на парола
Reset password
+
+ Променете паролата си.
+ Reset your password.
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPassword.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPassword.en.resx
index c622327..7609bda 100644
--- a/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPassword.en.resx
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPassword.en.resx
@@ -125,4 +125,8 @@
Reset password
Reset password
+
+ Reset your password.
+ Reset your password.
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPasswordModel+InputModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPasswordModel+InputModel.bg.resx
new file mode 100644
index 0000000..eab7994
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPasswordModel+InputModel.bg.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Потвърди парола
+ Confirm password
+
+
+ Паролата и паролата за потвърждение не съвпадат.
+ The password and confirmation password do not match.
+
+
+ Паролата трябва да бъде най-малко {2} и максимум {1} знака.
+ The Password must be at least {2} and at max {1} characters long.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPasswordModel+InputModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPasswordModel+InputModel.en.resx
new file mode 100644
index 0000000..c075b2c
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPasswordModel+InputModel.en.resx
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Confirm password
+ Confirm password
+
+
+ The password and confirmation password do not match.
+ The password and confirmation password do not match.
+
+
+ The Password must be at least {2} and at max {1} characters long.
+ The Password must be at least {2} and at max {1} characters long.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPasswordModel.bg.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPasswordModel.bg.resx
new file mode 100644
index 0000000..04bf991
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPasswordModel.bg.resx
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Трябва да се предостави код за нулиране на паролата.
+ A code must be supplied for password reset.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPasswordModel.en.resx b/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPasswordModel.en.resx
new file mode 100644
index 0000000..504a819
--- /dev/null
+++ b/AJS.Web/Resources/Areas/Identity/Pages/Account/ResetPasswordModel.en.resx
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ A code must be supplied for password reset.
+ A code must be supplied for password reset.
+
+
\ No newline at end of file
diff --git a/AJS.Web/Resources/Views/Shared/_LoginPartial.bg.resx b/AJS.Web/Resources/Views/Shared/_LoginPartial.bg.resx
index 6a63717..9741f17 100644
--- a/AJS.Web/Resources/Views/Shared/_LoginPartial.bg.resx
+++ b/AJS.Web/Resources/Views/Shared/_LoginPartial.bg.resx
@@ -125,6 +125,10 @@
Влез
Login User
+
+ Излизане
+ Logout
+
Регистрация
Register User
diff --git a/AJS.Web/Resources/Views/Shared/_LoginPartial.en.resx b/AJS.Web/Resources/Views/Shared/_LoginPartial.en.resx
index 0c8d5b0..092604c 100644
--- a/AJS.Web/Resources/Views/Shared/_LoginPartial.en.resx
+++ b/AJS.Web/Resources/Views/Shared/_LoginPartial.en.resx
@@ -125,6 +125,10 @@
Login
Login User
+
+ Logout
+ Logout
+
Register
Register User
diff --git a/AJS.Web/Views/Home/Index.cshtml b/AJS.Web/Views/Home/Index.cshtml
index 5392222..2208268 100644
--- a/AJS.Web/Views/Home/Index.cshtml
+++ b/AJS.Web/Views/Home/Index.cshtml
@@ -5,5 +5,5 @@
ViewData["Title"] = Localizer["Home Page"];
}
-
Welcome
+ Welcome User