@designcrowd/fe-shared-lib 1.2.2-ml-jj-3 → 1.2.2-ml-jj-4
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/package.json +1 -1
- package/src/bundles/bundled-translations.de-DE.json +2 -1
- package/src/bundles/bundled-translations.es-ES.json +2 -1
- package/src/bundles/bundled-translations.fr-FR.json +2 -1
- package/src/bundles/bundled-translations.json +2 -1
- package/src/bundles/bundled-translations.pt-PT.json +2 -1
- package/src/experiences/components/PublishBrandPageModal/PublishBrandPageModal.vue +2 -1
- package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.de-DE.json +2 -1
- package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.es-ES.json +2 -1
- package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.fr-FR.json +2 -1
- package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.json +2 -1
- package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.pt-PT.json +2 -1
package/package.json
CHANGED
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"copyLabel": "Kopieren",
|
|
17
17
|
"copySuccessLabel": "Kopiert!",
|
|
18
18
|
"publishedSuccessDescriptionLabel": "Kaufen Sie eine passende Domain für Ihre Marke",
|
|
19
|
-
"hasAlreadyPurchasedDomainCloseButtonLabel": "Nein, danke, vielleicht später"
|
|
19
|
+
"hasAlreadyPurchasedDomainCloseButtonLabel": "Nein, danke, vielleicht später",
|
|
20
|
+
"selectDomainDropdownPlaceholder": "DE-Select domain name"
|
|
20
21
|
},
|
|
21
22
|
"sellDomainNameList": {
|
|
22
23
|
"freeDomainButtonLabel": "Kostenlose Domain",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"copyLabel": "Copiar",
|
|
17
17
|
"copySuccessLabel": "¡Copiado!",
|
|
18
18
|
"publishedSuccessDescriptionLabel": "Compra un nombre de dominio que coincida con tu marca",
|
|
19
|
-
"hasAlreadyPurchasedDomainCloseButtonLabel": "No gracias, quizás más tarde"
|
|
19
|
+
"hasAlreadyPurchasedDomainCloseButtonLabel": "No gracias, quizás más tarde",
|
|
20
|
+
"selectDomainDropdownPlaceholder": "ES-Select domain name"
|
|
20
21
|
},
|
|
21
22
|
"sellDomainNameList": {
|
|
22
23
|
"freeDomainButtonLabel": "Dominio gratis",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"copyLabel": "Copier",
|
|
17
17
|
"copySuccessLabel": "Copié!",
|
|
18
18
|
"publishedSuccessDescriptionLabel": "Achetez un nom de domaine correspondant à votre marque",
|
|
19
|
-
"hasAlreadyPurchasedDomainCloseButtonLabel": "Non merci, peut-être plus tard"
|
|
19
|
+
"hasAlreadyPurchasedDomainCloseButtonLabel": "Non merci, peut-être plus tard",
|
|
20
|
+
"selectDomainDropdownPlaceholder": "FR-Select domain name"
|
|
20
21
|
},
|
|
21
22
|
"sellDomainNameList": {
|
|
22
23
|
"freeDomainButtonLabel": "Domaine gratuit",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"copyLabel": "Copy",
|
|
17
17
|
"copySuccessLabel": "Copied!",
|
|
18
18
|
"publishedSuccessDescriptionLabel": "Buy matching domain name for your brand",
|
|
19
|
-
"hasAlreadyPurchasedDomainCloseButtonLabel": "No thanks, maybe later"
|
|
19
|
+
"hasAlreadyPurchasedDomainCloseButtonLabel": "No thanks, maybe later",
|
|
20
|
+
"selectDomainDropdownPlaceholder": "Select domain name"
|
|
20
21
|
},
|
|
21
22
|
"sellDomainNameList": {
|
|
22
23
|
"freeDomainButtonLabel": "Free Domain",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"copyLabel": "Copiar",
|
|
17
17
|
"copySuccessLabel": "Copiado!",
|
|
18
18
|
"publishedSuccessDescriptionLabel": "Compre um nome de domínio que corresponda à sua marca",
|
|
19
|
-
"hasAlreadyPurchasedDomainCloseButtonLabel": "Não, obrigado, talvez mais tarde"
|
|
19
|
+
"hasAlreadyPurchasedDomainCloseButtonLabel": "Não, obrigado, talvez mais tarde",
|
|
20
|
+
"selectDomainDropdownPlaceholder": "PT-Select domain name"
|
|
20
21
|
},
|
|
21
22
|
"sellDomainNameList": {
|
|
22
23
|
"freeDomainButtonLabel": "Domínio gratuito",
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
:class="{
|
|
144
144
|
'tw-text-grayscale-600 tw-font-normal': !selectedCustomDomain,
|
|
145
145
|
}"
|
|
146
|
-
:title="(selectedCustomDomain && selectedCustomDomain.domainName) ||
|
|
146
|
+
:title="(selectedCustomDomain && selectedCustomDomain.domainName) || selectDomainDropdownPlaceholder"
|
|
147
147
|
>
|
|
148
148
|
<DropdownItem
|
|
149
149
|
v-for="purchasedDomain of domains"
|
|
@@ -431,6 +431,7 @@ export default {
|
|
|
431
431
|
copySuccessLabel: tr('publishBrandPageModal.copySuccessLabel'),
|
|
432
432
|
hasAlreadyPurchasedDomainCloseButtonLabel: tr('publishBrandPageModal.hasAlreadyPurchasedDomainCloseButtonLabel'),
|
|
433
433
|
publishedSuccessDescriptionLabel: tr('publishBrandPageModal.publishedSuccessDescriptionLabel'),
|
|
434
|
+
selectDomainDropdownPlaceholder: tr('publishBrandPageModal.selectDomainDropdownPlaceholder'),
|
|
434
435
|
};
|
|
435
436
|
},
|
|
436
437
|
data() {
|
package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.de-DE.json
CHANGED
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"copyLabel": "Kopieren",
|
|
17
17
|
"copySuccessLabel": "Kopiert!",
|
|
18
18
|
"publishedSuccessDescriptionLabel": "Kaufen Sie eine passende Domain für Ihre Marke",
|
|
19
|
-
"hasAlreadyPurchasedDomainCloseButtonLabel": "Nein, danke, vielleicht später"
|
|
19
|
+
"hasAlreadyPurchasedDomainCloseButtonLabel": "Nein, danke, vielleicht später",
|
|
20
|
+
"selectDomainDropdownPlaceholder": "DE-Select domain name"
|
|
20
21
|
}
|
|
21
22
|
}
|
package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.es-ES.json
CHANGED
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"copyLabel": "Copiar",
|
|
17
17
|
"copySuccessLabel": "¡Copiado!",
|
|
18
18
|
"publishedSuccessDescriptionLabel": "Compra un nombre de dominio que coincida con tu marca",
|
|
19
|
-
"hasAlreadyPurchasedDomainCloseButtonLabel": "No gracias, quizás más tarde"
|
|
19
|
+
"hasAlreadyPurchasedDomainCloseButtonLabel": "No gracias, quizás más tarde",
|
|
20
|
+
"selectDomainDropdownPlaceholder": "ES-Select domain name"
|
|
20
21
|
}
|
|
21
22
|
}
|
package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.fr-FR.json
CHANGED
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"copyLabel": "Copier",
|
|
17
17
|
"copySuccessLabel": "Copié!",
|
|
18
18
|
"publishedSuccessDescriptionLabel": "Achetez un nom de domaine correspondant à votre marque",
|
|
19
|
-
"hasAlreadyPurchasedDomainCloseButtonLabel": "Non merci, peut-être plus tard"
|
|
19
|
+
"hasAlreadyPurchasedDomainCloseButtonLabel": "Non merci, peut-être plus tard",
|
|
20
|
+
"selectDomainDropdownPlaceholder": "FR-Select domain name"
|
|
20
21
|
}
|
|
21
22
|
}
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"copyLabel": "Copy",
|
|
17
17
|
"copySuccessLabel": "Copied!",
|
|
18
18
|
"publishedSuccessDescriptionLabel": "Buy matching domain name for your brand",
|
|
19
|
-
"hasAlreadyPurchasedDomainCloseButtonLabel": "No thanks, maybe later"
|
|
19
|
+
"hasAlreadyPurchasedDomainCloseButtonLabel": "No thanks, maybe later",
|
|
20
|
+
"selectDomainDropdownPlaceholder": "Select domain name"
|
|
20
21
|
}
|
|
21
22
|
}
|
package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.pt-PT.json
CHANGED
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"copyLabel": "Copiar",
|
|
17
17
|
"copySuccessLabel": "Copiado!",
|
|
18
18
|
"publishedSuccessDescriptionLabel": "Compre um nome de domínio que corresponda à sua marca",
|
|
19
|
-
"hasAlreadyPurchasedDomainCloseButtonLabel": "Não, obrigado, talvez mais tarde"
|
|
19
|
+
"hasAlreadyPurchasedDomainCloseButtonLabel": "Não, obrigado, talvez mais tarde",
|
|
20
|
+
"selectDomainDropdownPlaceholder": "PT-Select domain name"
|
|
20
21
|
}
|
|
21
22
|
}
|