Skip to content

Commit bcdaec2

Browse files
authored
Merge pull request #208 from acjh/patch-16
Add missing localization used in UserCreateModal
2 parents 25198b4 + c83acac commit bcdaec2

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

angular/src/app/users/create-user/create-user.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ <h4 class="modal-title">
7878
<div class="form-group form-float">
7979
<div class="form-line">
8080
<input id="confirmpassword" type="password" name="ConfirmPassword" class="validate form-control" [(ngModel)]="user.confirmPassword" equalTo="#password" data-msg-equalto="Please enter the same password again." required maxlength="32">
81-
<label for="confirmpassword" class="form-label">Confirm Password</label>
81+
<label for="confirmpassword" class="form-label">{{l("ConfirmPassword")}}</label>
8282
</div>
8383
</div>
8484
</div>
@@ -123,4 +123,4 @@ <h4 class="modal-title">
123123
</form>
124124
</div>
125125
</div>
126-
</div>
126+
</div>

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
<text name="UnknownTenantId{0}">Unknown tenantId {0}</text>
7474
<text name="ThisFieldIsRequired">This field is required</text>
7575
<text name="PleaseWait">Please wait...</text>
76-
<text name="Administration">Administration</text>
76+
<text name="Administration">Administration</text>
7777
<text name="ClearAll">Clear all</text>
7878
<text name="ClearOthers">Clear others</text>
7979
<text name="LabelOptions">Label options</text>
@@ -82,6 +82,7 @@
8282
<text name="Refresh">Refresh</text>
8383
<text name="Create">Create</text>
8484
<text name="UserDetails">User details</text>
85-
<text name="UserRoles">User roles</text>
85+
<text name="UserRoles">User roles</text>
86+
<text name="ConfirmPassword">Confirm password</text>
8687
</texts>
87-
</localizationDictionary>
88+
</localizationDictionary>

0 commit comments

Comments
 (0)