Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

Commit

Permalink
Issue #SB-9620 fix: Changed Key for translation
Browse files Browse the repository at this point in the history
  • Loading branch information
sudip-mukherjee committed Feb 13, 2019
1 parent bb9dd51 commit aa8fc9a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ export class AddOrRemoveGroupUserPage {
}
},
{
text: this.commonUtilService.translateMessage('Yes'),
text: this.commonUtilService.translateMessage('YES'),
cssClass: 'alert-btn-delete',
handler: () => {
this.deleteUsersFromGroup();
Expand Down
4 changes: 2 additions & 2 deletions src/pages/user-and-groups/group-details/group-details.ts
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ export class GroupDetailsPage {
}
},
{
text: this.translateMessage('Yes'),
text: this.translateMessage('YES'),
cssClass: 'alert-btn-delete',
handler: () => {
this.deleteGroup();
Expand Down Expand Up @@ -424,7 +424,7 @@ export class GroupDetailsPage {
}
},
{
text: this.translateMessage('Yes'),
text: this.translateMessage('YES'),
cssClass: 'alert-btn-delete',
handler: () => {
this.deleteUsersinGroup(index);
Expand Down
4 changes: 2 additions & 2 deletions src/pages/user-and-groups/user-and-groups.ts
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ export class UserAndGroupsPage {
}
},
{
text: this.translateMessage('Yes'),
text: this.translateMessage('YES'),
cssClass: 'alert-btn-delete',
handler: () => {
this.deleteGroup(index);
Expand Down Expand Up @@ -618,7 +618,7 @@ export class UserAndGroupsPage {
}
},
{
text: this.translateMessage('Yes'),
text: this.translateMessage('YES'),
cssClass: 'alert-btn-delete',
handler: () => {
this.deleteUser(index);
Expand Down

0 comments on commit aa8fc9a

Please sign in to comment.