@bigbinary/neeto-custom-domains-frontend 3.0.9 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/javascript/src/translations/en.json +10 -1
- package/dist/CustomDomain.js +446 -183
- package/dist/CustomDomain.js.map +1 -1
- package/dist/cjs/CustomDomain.js +444 -181
- package/dist/cjs/CustomDomain.js.map +1 -1
- package/dist/cjs/index.js +6 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/index.js +6 -3
- package/dist/index.js.map +1 -1
- package/package.json +12 -12
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"done": "Done",
|
|
17
17
|
"add": "Add {{what}}"
|
|
18
18
|
},
|
|
19
|
+
"unexpectedError": "Unexpected error occurred. Please try again later.",
|
|
19
20
|
"customDomain_one": "Custom domain",
|
|
20
21
|
"customDomain_other": "Custom domains",
|
|
21
22
|
"customDomainWithCount_one": "{{count}} custom domain",
|
|
@@ -30,6 +31,7 @@
|
|
|
30
31
|
"search": "Search custom domains",
|
|
31
32
|
"notFound": "There are no custom domains to show.",
|
|
32
33
|
"placeholder": "{{subdomainPlaceholder,anyCase}}.yourbusiness.com",
|
|
34
|
+
"redirectionTooltipDescription": "Visiting {{fromDomain}} will redirect you to {{toDomain}}.",
|
|
33
35
|
"cname": "CNAME",
|
|
34
36
|
"label": "Domain name",
|
|
35
37
|
"domainValidation": "Domain validation",
|
|
@@ -52,6 +54,13 @@
|
|
|
52
54
|
},
|
|
53
55
|
"validation": {
|
|
54
56
|
"successMessage": "Custom domain successfully validated.",
|
|
57
|
+
"strategy": {
|
|
58
|
+
"wwwToRoot": "Add <strong>www.{{hostname}}</strong> and redirect to <strong>{{hostname}}</strong>.",
|
|
59
|
+
"rootToWww": "Add <strong>{{hostname}}</strong> and redirect to <strong>www.{{hostname}}</strong>.",
|
|
60
|
+
"onlyAddRoot": "Just add <strong>{{hostname}}</strong>.",
|
|
61
|
+
"recommended": "Recommended",
|
|
62
|
+
"recommendedDescription": "Using a 'www' subdomain helps with more flexible routing and ensures that cookies set on this site aren't shared with other subdomains."
|
|
63
|
+
},
|
|
55
64
|
"buttonLabel": {
|
|
56
65
|
"domain": "Validate",
|
|
57
66
|
"validateManually": "Validate manually",
|
|
@@ -77,7 +86,7 @@
|
|
|
77
86
|
"valid": "Please add valid domain or URL"
|
|
78
87
|
},
|
|
79
88
|
"toolTips": {
|
|
80
|
-
"customDomain": "Add domain of your choice in case you do not prefer to use the default
|
|
89
|
+
"customDomain": "Add domain of your choice in case you do not prefer to use the default Neeto domain."
|
|
81
90
|
},
|
|
82
91
|
"noData": {
|
|
83
92
|
"title": "There are no custom domains to show.",
|