Skip to content

Commit

Permalink
dyndns/domain: minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
alexAubin committed Sep 29, 2023
1 parent 34a5f66 commit f6c275d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/src/i18n/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@
"dyn_dns_password": "Domain recovery password",
"dyn_dns_password_desc": "This password will allow you to later recover control of the domain if you reinstall your system. If you already registered this domain previously, use your recovery password here to reclaim it.",
"from_local": "I want a domain for local usage / test only",
"from_local_desc": "if you don't want an \"actual\" public domain name, you can use anything ending in <code>.local</code> or <code>.test</code>. Domain names ending in <code>.local</code> are special in the sense that they may automatically be resolved on the local network, assuming the clients support the Bonjour protocol. Alternatively, you may need to tweak the <code>/etc/hosts</code> file (or equivalent on Windows) on every client that you want to use this domain from, or to configure local DNS entries on your internet router.",
"from_local_desc": "If you don't want an \"actual\" public domain name, you can use anything ending in <code>.local</code> or <code>.test</code>. Domain names ending in <code>.local</code> are special in the sense that they may automatically be resolved on the local network, assuming the clients support the Bonjour protocol. Alternatively, you may need to tweak the <code>/etc/hosts</code> file (or equivalent on Windows) on every client that you want to use this domain from, or to configure local DNS entries on your internet router.",
"from_registrar": "I want to add a domain I own, or a subdomain",
"from_registrar_desc": "You will need to manually configure DNS records on your registrar to finalize this domain's configuration. YunoHost's diagnosis will guide you about what DNS records to configure exactly.",
"from_yunohost": "I don't own a domain, I want to register/use a free DynDNS domain provided by the YunoHost project",
Expand Down
6 changes: 3 additions & 3 deletions app/src/views/_partials/DomainForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<b-collapse id="collapse-domain" :visible.sync="domainIsVisible">
<p class="mt-2 alert alert-info">
<icon iname='info-circle' />
{{ $t('domain.add.from_registrar_desc') }}
<span class='pl-1' v-html="$t('domain.add.from_registrar_desc')" />
</p>

<form-field
Expand All @@ -44,7 +44,7 @@
<b-collapse id="collapse-dynDomain" :visible.sync="dynDomainIsVisible">
<p class="mt-2 alert alert-info">
<icon iname="info-circle" />
{{ $t('domain.add.from_yunohost_desc') }}
<span class='pl-1' v-html="$t('domain.add.from_yunohost_desc')" />
</p>

<form-field v-bind="fields.dynDomain" :validation="$v.form.dynDomain" class="mt-3">
Expand Down Expand Up @@ -79,7 +79,7 @@
<b-collapse id="collapse-localDomain" :visible.sync="localDomainIsVisible">
<p class="mt-2 alert alert-info">
<icon iname='info-circle' />
<span v-html="$t('domain.add.from_local_desc')" />
<span class='pl-1' v-html="$t('domain.add.from_local_desc')" />
</p>

<form-field v-bind="fields.localDomain" :validation="$v.form.localDomain" class="mt-3">
Expand Down

0 comments on commit f6c275d

Please sign in to comment.