Skip to content

Commit

Permalink
Merged in feature/SHIBUI-474 (pull request #69)
Browse files Browse the repository at this point in the history
SHIBUI-474 - Updated save button text

Approved-by: Ryan Mathis <rmathis@unicon.net>
  • Loading branch information
rmathis committed May 14, 2018
2 parents f550f0a + f53759f commit 19ccb04
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions ui/src/app/edit-provider/component/wizard-nav.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ <h3 class="tag tag-primary">
</button>
</li>
<li class="nav-item" *ngIf="isLastPage">
<button class="nav-link save btn" (click)="onSave.emit()" aria-label="Save Metadata Provider" role="button">
<span class="label pull-left" i18n="@@action--save-metadata-provider">Save Metadata Provider</span>
<button class="nav-link save btn" (click)="onSave.emit()" aria-label="Save" role="button">
<span class="label pull-left" i18n="@@action--save">Save</span>
<span class="direction pull-right">
<i class="fa fa-save next d-block fa-2x"></i>
<ng-container i18n="@@action--save">Save</ng-container>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
<div class="col-lg-6 col-xs-3 text-right">
<button (click)="this.preview(filter)" type="submit" class="btn btn-success">
<i class="fa fa-eye fa-lg"></i>
<ng-container i18n="@@action--save-changes">Preview XML</ng-container>
<ng-container i18n="@@action--save">Preview XML</ng-container>
</button>
<button
(click)="this.save($event)"
Expand All @@ -115,7 +115,7 @@
'fa-spinner': (isSaving$ | async),
'fa-pulse': (isSaving$ | async)
}"></i>
<ng-container i18n="@@action--save-changes">Save Changes</ng-container>
<ng-container i18n="@@action--save">Save</ng-container>
</button>
<button
(click)="this.cancel()"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
'fa-spinner': (isSaving$ | async),
'fa-pulse': (isSaving$ | async)
}"></i>
<ng-container i18n="@@action--save-changes">Save Changes</ng-container>
<ng-container i18n="@@action--save">Save</ng-container>
</button>
<button (click)="this.cancel()"
type="reset"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ <h3 class="tag tag-primary">
</li>
<li class="nav-item">
<button class="nav-link next btn clearfix" (click)="save()" [disabled]="providerForm.invalid" aria-label="Save metadata provider" role="button">
<span class="label pull-left" i18n="@@action--save-metadata-provider">
Save Metadata Provider
<span class="label pull-left" i18n="@@action--save">
Save
</span>
<span class="direction pull-right">
<i class="fa fa-save d-block fa-2x"></i>
Expand Down

0 comments on commit 19ccb04

Please sign in to comment.