Skip to content

Commit

Permalink
Upgrade back-end template to 5.14
Browse files Browse the repository at this point in the history
  • Loading branch information
lprichar committed Oct 23, 2020
1 parent f17a01e commit dc576f8
Show file tree
Hide file tree
Showing 18 changed files with 4,443 additions and 52 deletions.
2 changes: 1 addition & 1 deletion aspnet-core/src/LeesStore.Core/AppVersionHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class AppVersionHelper
/// Gets current version of the application.
/// It's also shown in the web page.
/// </summary>
public const string Version = "5.1.0.0";
public const string Version = "5.5.0.0";

/// <summary>
/// Gets release (last build) date of the application.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
<text name="TenancyName" value="Müşteri adı" />
<text name="UserNameOrEmail" value="Kullanıcı adı ya da e-posta" />
<text name="Password" value="Şifre" />
<text name="ResetPassword" value="Şifreyi yenile" />
<text name="UpdatePassword" value="Şifreyi güncelle" />
<text name="RememberMe" value="Beni hatırla" />
<text name="LogIn" value="Giriş" />
<text name="LoginFailed" value="Giriş başarısız!" />
Expand Down Expand Up @@ -87,5 +89,17 @@
<text name="RoleDeleteWarningMessage">{0} rolü silinecek ve atanmış kullanıcılardan kaldırılacaktır.</text>
<text name="TenantDeleteWarningMessage">{0} müşterisi silinecektir.</text>
<text name="SearchWithThreeDot">Ara...</text>
<text name="PleaseEnterAtLeastNCharacter">Lütfen en az {0} karakter giriniz</text>
<text name="PleaseEnterNoMoreThanNCharacter">Lütfen en fazla {0} karakter giriniz</text>
<text name="InvalidEmailAddress">Geçersiz e-posta adresi</text>
<text name="InvalidPattern">Geçersiz</text>
<text name="PairsDoNotMatch">Eşleşmiyor</text>
<text name="All">Hepsi</text>
<text name="TotalRecordsCount">Toplam: {0}</text>
<text name="Search">Bul</text>
<text name="Clear">Temizle</text>
<text name="CurrentPassword">Mevcut şifreniz</text>
<text name="NewPassword">Yeni şifre</text>
<text name="ConfirmNewPassword">Yeni şifreyi doğrula</text>
</texts>
</localizationDictionary>
Original file line number Diff line number Diff line change
Expand Up @@ -105,5 +105,16 @@
<text name="RoleDeleteWarningMessage">Role {0} will be deleted and unassigned from all assigned users.</text>
<text name="TenantDeleteWarningMessage">Tenant {0} will be deleted.</text>
<text name="SearchWithThreeDot">Search...</text>
<text name="PleaseEnterAtLeastNCharacter">Please enter at least {0} characters</text>
<text name="PleaseEnterNoMoreThanNCharacter">Please enter no more than {0} characters</text>
<text name="InvalidEmailAddress">Invalid email address</text>
<text name="InvalidPattern">Invalid</text>
<text name="PairsDoNotMatch">Do not match</text>
<text name="All">All</text>
<text name="TotalRecordsCount">Total: {0}</text>
<text name="Search">Search</text>
<text name="Clear">Clear</text>
<text name="ResetPasswordStepOneInfo">1. Enter your administrator password</text>
<text name="ResetPasswordStepTwoInfo">2. Copy this random password so you can send it to the user</text>
</texts>
</localizationDictionary>
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ private static List<ApplicationLanguage> GetInitialLanguages()
var tenantId = LeesStoreConsts.MultiTenancyEnabled ? null : (int?)MultiTenancyConsts.DefaultTenantId;
return new List<ApplicationLanguage>
{
new ApplicationLanguage(tenantId, "en", "English", "famfamfam-flags gb"),
new ApplicationLanguage(tenantId, "en", "English", "famfamfam-flags us"),
new ApplicationLanguage(tenantId, "ar", "العربية", "famfamfam-flags sa"),
new ApplicationLanguage(tenantId, "de", "German", "famfamfam-flags de"),
new ApplicationLanguage(tenantId, "it", "Italiano", "famfamfam-flags it"),
Expand Down
Loading

0 comments on commit dc576f8

Please sign in to comment.