Skip to content
This repository has been archived by the owner on Mar 25, 2023. It is now read-only.

Commit

Permalink
fix(vm-dialogs): "Access VM" and "Save password for all VMs" dialogs …
Browse files Browse the repository at this point in the history
…have incorrect header (#626)
  • Loading branch information
HeyRoach authored Oct 25, 2017
1 parent 35cf1fd commit 6fb53c7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { VirtualMachine } from '../../shared/vm.model';
})
export class VmAccessComponent {
public vm: VirtualMachine;
public title = 'VM_PAGE.COMMANDS.VM_ACCESS_TITLE';
public title = 'VM_PAGE.COMMANDS.VM_ACCESS';

constructor(
public dialogRef: MatDialogRef<VmAccessComponent>,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div>
<h5 >{{ 'VM_POST_ACTION.TITLE' | translate}}</h5>
<h5 >{{ title | translate}}</h5>
<div><b>{{ 'VM_POST_ACTION.VM' | translate }}:</b> {{vm.name}}</div>
<div *ngIf="vm.passwordEnabled">
<b>{{ 'VM_POST_ACTION.VM_PASSWORD' | translate }}:</b>
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"CONFIRM_RESET_PASSWORD": "Are you sure you want to reset password?<br>If your Virtual Machine is running it will be rebooted.",
"PASSWORD_DIALOG_MESSAGE": "Password for {{ vmName }} has been reset to <b>{{ vmPassword }}</b>",
"CONFIRM_DRIVES_DELETION": "Delete this VM's data drives?",
"CONFIRM_SAVE_PASSWORD": "Are you sure you want to save a password for all VMs?"
"CONFIRM_SAVE_PASSWORD": "Do you want to save a password for all VMs?"
},
"SECURITY_GROUPS": {
"CONFIRM_EDIT_FROM_VM": "This group is shared. Other VMs that use this group will also be affected. Are you sure you want to edit this group in the Security Group management area?",
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"CONFIRM_RESET_PASSWORD": "Вы уверены, что хотите сбросить пароль?<br>Если ваша виртуальная машина запущена, то она будет перезагружена.",
"PASSWORD_DIALOG_MESSAGE": "Пароль для машины {{ vmName }} был сброшен в <b>{{ vmPassword }}</b>",
"CONFIRM_DRIVES_DELETION": "Удалить диски с данными этой ВМ?",
"CONFIRM_SAVE_PASSWORD": "Вы уверены, что хотите сохранять пароли для всех вирутальных машин?"
"CONFIRM_SAVE_PASSWORD": "Вы бы хотели автоматически сохранять пароли для всех ВМ?"
},
"SECURITY_GROUPS": {
"CONFIRM_EDIT_FROM_VM": "Эта группа - общая. Другие виртуальные машины, которые её используют, так же будут затронуты. Вы уверены, что хотите изменить правила группы в разделе Брандмауэр?",
Expand Down

0 comments on commit 6fb53c7

Please sign in to comment.