Skip to content

Commit 2e3a1b7

Browse files
committed
Merge branch 'master' of github.com:serghey-rodin/vesta
2 parents 46e161e + 0f889d0 commit 2e3a1b7

File tree

4 files changed

+67
-67
lines changed

4 files changed

+67
-67
lines changed

web/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ <h1 class="logo"><a href="/">Vesta panel <span>&nbsp;</span></a></h1>
8181
<div class="section-inner">
8282
<dl class="users-nav-item">
8383
<dt class="section-title cc">
84-
<span class="to-section">Users</span>
84+
<span class="to-section">User</span>
8585
<i class="add-entry do_action_new_entry">&nbsp;</i>
8686
</dt>
8787
<dd class="section-contains">

web/js/actions.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ App.Actions.add_form_ns = function(evt)
533533

534534
$(form).find('.ns-entry').each(function(i, o)
535535
{
536-
$(o).find('label').text('NS #' + (i + 1));
536+
$(o).find('label').text('NameServer #' + (i + 1));
537537
$(o).find('input').attr('name', 'NS' + (i + 1));
538538
});
539539
}
@@ -581,7 +581,7 @@ App.Actions.view_template_info = function(evt)
581581
$.each(reply.data, function(key) {
582582
html += '<li><strong>'+key+':</strong> '+reply.data[key]+'</li>';
583583
});
584-
App.Helpers.openInnerPopup(elm, '<ul>'+html+'</ul>', 'Template Info');
584+
App.Helpers.openInnerPopup(elm, '<ul>'+html+'</ul>', 'Template Settings');
585585
}
586586
});
587587
}

web/js/html.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ App.HTML.Build.dns_form = function (options, id) {
2727
tpl.set(':source', options);
2828
options = App.Helpers.evalJSON(options) || {};
2929
if (App.Helpers.isEmpty(options)) {
30-
tpl.set(':title', 'New dns record');
30+
tpl.set(':title', 'New dns domain');
3131
tpl.set(':save_button', 'ADD');
3232
} else {
33-
tpl.set(':title', 'Edit dns record');
33+
tpl.set(':title', 'Edit dns domain');
3434
tpl.set(':save_button', 'SAVE');
3535
}
3636
tpl.set(':id', id || '');

0 commit comments

Comments
 (0)