{t`The Contact ID for ownership of registered Domains. `}{t`You got from this page`}}
+ type='secondary'>{t`The nic-handle of the domain name owner`}{t`You can get it from this page`}}
rules={[{required: true, message: t`Required`}]}
required={true}>
diff --git a/assets/utils/providers/index.tsx b/assets/utils/providers/index.tsx
index 7a04219..80d3264 100644
--- a/assets/utils/providers/index.tsx
+++ b/assets/utils/providers/index.tsx
@@ -21,7 +21,7 @@ export const helpGetTokenLink = (provider?: string) => {
case ConnectorProvider.AUTODNS:
return
- {t`Because of some limitations in API of AutoDNS, we suggest to create an dedicated user for API with limited rights.`}
+ {t`Because of some limitations in API of AutoDNS, we suggest to create an dedicated user for API with limited rights`}
default:
return <>>
@@ -35,6 +35,8 @@ export const tosHyperlink = (provider?: string) => {
return 'https://www.ovhcloud.com/fr/terms-and-conditions/contracts/'
case ConnectorProvider.GANDI:
return 'https://www.gandi.net/en/contracts/terms-of-service'
+ case ConnectorProvider.NAMECHEAP:
+ return 'https://www.namecheap.com/legal/universal/universal-tos/'
case ConnectorProvider.AUTODNS:
return 'https://www.internetx.com/agb/'
default:
diff --git a/src/Service/Connector/AutodnsProvider.php b/src/Service/Connector/AutodnsProvider.php
index d97f94f..c121156 100644
--- a/src/Service/Connector/AutodnsProvider.php
+++ b/src/Service/Connector/AutodnsProvider.php
@@ -35,10 +35,6 @@ class AutodnsProvider extends AbstractProvider
*/
public function orderDomain(Domain $domain, bool $dryRun = false): void
{
- if (!$domain->getDeleted()) {
- throw new \InvalidArgumentException('The domain name still appears in the WHOIS database');
- }
-
$ldhName = $domain->getLdhName();
if (!$ldhName) {
throw new \InvalidArgumentException('Domain name cannot be null');
diff --git a/src/Service/Connector/GandiProvider.php b/src/Service/Connector/GandiProvider.php
index 348c134..fb90b09 100644
--- a/src/Service/Connector/GandiProvider.php
+++ b/src/Service/Connector/GandiProvider.php
@@ -34,10 +34,6 @@ class GandiProvider extends AbstractProvider
*/
public function orderDomain(Domain $domain, bool $dryRun = false): void
{
- if (!$domain->getDeleted()) {
- throw new \InvalidArgumentException('The domain name still appears in the WHOIS database');
- }
-
$ldhName = $domain->getLdhName();
if (!$ldhName) {
throw new \InvalidArgumentException('Domain name cannot be null');
diff --git a/src/Service/Connector/OvhProvider.php b/src/Service/Connector/OvhProvider.php
index 1d917e9..c2795f8 100644
--- a/src/Service/Connector/OvhProvider.php
+++ b/src/Service/Connector/OvhProvider.php
@@ -53,10 +53,6 @@ class OvhProvider extends AbstractProvider
*/
public function orderDomain(Domain $domain, bool $dryRun = false): void
{
- if (!$domain->getDeleted()) {
- throw new \InvalidArgumentException('The domain name still appears in the WHOIS database');
- }
-
$ldhName = $domain->getLdhName();
if (!$ldhName) {
throw new \InvalidArgumentException('Domain name cannot be null');
diff --git a/translations/translations.pot b/translations/translations.pot
index 30df91e..740145e 100644
--- a/translations/translations.pot
+++ b/translations/translations.pot
@@ -242,15 +242,15 @@ msgid "AutoDNS Password"
msgstr ""
#: assets/components/tracking/connector/ConnectorForm.tsx:157
-msgid "Domain Contact Handle ID"
+msgid "Owner nic-handle"
msgstr ""
#: assets/components/tracking/connector/ConnectorForm.tsx:160
-msgid "The Contact ID for ownership of registered Domains. "
+msgid "The nic-handle of the domain name owner"
msgstr ""
#: assets/components/tracking/connector/ConnectorForm.tsx:161
-msgid "You got from this page"
+msgid "You can get it from this page"
msgstr ""
#: assets/components/tracking/connector/ConnectorForm.tsx:168
@@ -1102,7 +1102,7 @@ msgstr ""
#: assets/utils/providers/index.tsx:24
msgid ""
"Because of some limitations in API of AutoDNS, we suggest to create an "
-"dedicated user for API with limited rights."
+"dedicated user for API with limited rights"
msgstr ""
#: assets/utils/providers/ovh.tsx:5