Skip to content

Commit 7125d26

Browse files
committed
broken links edited, commented codes removed, etc
1 parent 04fa373 commit 7125d26

File tree

13 files changed

+14
-32
lines changed

13 files changed

+14
-32
lines changed

aspnet-core/src/AbpCompanyName.AbpProjectName.Core/Localization/SourceFiles/AbpProjectName-es.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
4242
<text name="TenantSelection" value="Selección de Empresa" />
4343
<text name="TenantSelection_Detail" value="Por favor seleccione una de las siguientes empresas." />
4444
<text name="Logout" value="Cerrar sesión" />
45-
45+
<text name="SearchWithThreeDot">Buscar...</text>
4646
</texts>
4747
</localizationDictionary>

aspnet-core/src/AbpCompanyName.AbpProjectName.Core/Localization/SourceFiles/AbpProjectName-fr.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
4242
<text name="TenantSelection" value="Sélection du client (tenant)" />
4343
<text name="TenantSelection_Detail" value="Veuillez choisir l'un de ces clients (tenants) suivants." />
4444
<text name="Logout" value="Déconnexion" />
45-
45+
<text name="SearchWithThreeDot">Rechercher...</text>
4646
</texts>
4747
</localizationDictionary>

aspnet-core/src/AbpCompanyName.AbpProjectName.Core/Localization/SourceFiles/AbpProjectName-it.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,6 @@
5353
<text name="Yes" value="" />
5454
<text name="No" value="No" />
5555
<text name="Optional" value="Opzionale" />
56+
<text name="SearchWithThreeDot">Cerca...</text>
5657
</texts>
5758
</localizationDictionary>

aspnet-core/src/AbpCompanyName.AbpProjectName.Core/Localization/SourceFiles/AbpProjectName-pt-BR.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,5 +105,6 @@
105105
<text name="UserDeleteWarningMessage">O usuário {0} será excluído.</text>
106106
<text name="RoleDeleteWarningMessage">A função {0} será excluída e desassociada de todos os usuários pertencentes a ela.</text>
107107
<text name="TenantDeleteWarningMessage">O Tenant {0} será excluído.</text>
108+
<text name="SearchWithThreeDot">Pesquisar...</text>
108109
</texts>
109110
</localizationDictionary>

aspnet-core/src/AbpCompanyName.AbpProjectName.Core/Localization/SourceFiles/AbpProjectName-tr.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,5 +86,6 @@
8686
<text name="UserDeleteWarningMessage">{0} kullanıcısı silinecektir.</text>
8787
<text name="RoleDeleteWarningMessage">{0} rolü silinecek ve atanmış kullanıcılardan kaldırılacaktır.</text>
8888
<text name="TenantDeleteWarningMessage">{0} müşterisi silinecektir.</text>
89+
<text name="SearchWithThreeDot">Ara...</text>
8990
</texts>
9091
</localizationDictionary>

aspnet-core/src/AbpCompanyName.AbpProjectName.Core/Localization/SourceFiles/AbpProjectName-zh-Hans.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
<text name="DefaultPasswordIs">默认密码为:{0}</text>
9797
<text name="DeleteTenantConfirm">确认删除该租户?</text>
9898
<text name="EditTenant">编辑租户</text>
99-
99+
<text name="SearchWithThreeDot">搜索...</text>
100100

101101
</texts>
102102
</localizationDictionary>

aspnet-core/src/AbpCompanyName.AbpProjectName.Core/Localization/SourceFiles/AbpProjectName.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,5 +104,6 @@
104104
<text name="UserDeleteWarningMessage">User {0} will be deleted.</text>
105105
<text name="RoleDeleteWarningMessage">Role {0} will be deleted and unassigned from all assigned users.</text>
106106
<text name="TenantDeleteWarningMessage">Tenant {0} will be deleted.</text>
107+
<text name="SearchWithThreeDot">Search...</text>
107108
</texts>
108109
</localizationDictionary>

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/Views/Shared/Components/RightNavbarUserArea/Default.cshtml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@
44
<img class="user-image img-circle elevation-2" src="~/libs/admin-lte/dist/img/avatar5.png" alt="User Image">
55
</a>
66
<div class="dropdown-menu dropdown-menu-right">
7-
<a class="dropdown-item" asp-controller="Account" asp-action="Profile">
8-
<i class="fas fa-portrait"></i> @L("Profile")
9-
</a>
10-
<div class="dropdown-divider"></div>
117
<a class="dropdown-item" asp-controller="Account" asp-action="Logout">
128
<i class="fas fa-sign-out-alt"></i> @L("Logout")
139
</a>

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/Views/Shared/Components/SideBarUserArea/Default.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
<img src="~/libs/admin-lte/dist/img/avatar5.png" class="img-circle elevation-2" alt="User Image">
77
</div>
88
<div class="info">
9-
<a class="d-block" asp-controller="Account" asp-action="Profile">@Html.Raw(Model.GetShownLoginName())</a>
9+
<a class="d-block" href="javascript:void(0);">@Html.Raw(Model.GetShownLoginName())</a>
1010
</div>
1111
</div>

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/Views/Shared/Layout/_Header.LeftNavbar.cshtml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
<a class="nav-link" data-widget="pushmenu" href="#"><i class="fas fa-bars"></i></a>
44
</li>
55
<li class="nav-item d-none d-sm-inline-block">
6-
<a class="nav-link" asp-controller="Home" asp-action="Index"><i class="fas fa-cubes"></i> AbpProjectName</a>
6+
<a class="nav-link" asp-controller="Home" asp-action="Index">@L("HomePage")</a>
7+
</li>
8+
<li class="nav-item d-none d-sm-inline-block">
9+
<a class="nav-link" asp-controller="About" asp-action="Index">@L("About")</a>
710
</li>
811
</ul>

0 commit comments

Comments
 (0)