standardized naming

This commit is contained in:
asvow
2024-02-01 10:58:44 +08:00
parent 183cb1649c
commit f5ccdf254f
5 changed files with 9 additions and 9 deletions

View File

@@ -147,11 +147,11 @@ return view.extend({
s = m.section(form.NamedSection, 'settings', 'config');
s.title = _('Advanced Settings');
o = s.option(form.Flag, 'acceptRoutes', _('Auto NAT clients'), _('Expose physical network routes onto Tailscale.'));
o = s.option(form.Flag, 'acceptRoutes', _('Auto Mesh'), _('Expose physical network routes onto Tailscale.'));
o.default = o.disabled;
o.rmempty = false;
o = s.option(form.Value, 'hostname', _('Devicename'), _("Leave blank to use the device's hostname."));
o = s.option(form.Value, 'hostname', _('Device Name'), _("Leave blank to use the device's hostname."));
o.default = '';
o.rmempty = true;