@designcrowd/fe-shared-lib 1.2.2-ml-jj-1 → 1.2.2-ml-jj-3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@designcrowd/fe-shared-lib",
3
- "version": "1.2.2-ml-jj-1",
3
+ "version": "1.2.2-ml-jj-3",
4
4
  "scripts": {
5
5
  "start": "run-p storybook watch:translation",
6
6
  "build": "npm run build:css --production",
@@ -53,7 +53,7 @@ export default {
53
53
  if (this.isDomainCredit) {
54
54
  return 'Domain credit used';
55
55
  }
56
-
56
+
57
57
  if (!this.amount || this.amount === 0) {
58
58
  return 'Free';
59
59
  }
@@ -21,7 +21,7 @@
21
21
  "sellDomainNameList": {
22
22
  "freeDomainButtonLabel": "Kostenlose Domain",
23
23
  "buyNowButtonLabel": "Jetzt kaufen",
24
- "pricePerYearLabel": "/yr",
24
+ "pricePerYearLabel": "/Jahr",
25
25
  "costPriceLabel": "Kostenpreis:"
26
26
  },
27
27
  "sellDomainNameListModal": {
@@ -21,7 +21,7 @@
21
21
  "sellDomainNameList": {
22
22
  "freeDomainButtonLabel": "Dominio gratis",
23
23
  "buyNowButtonLabel": "Comprar ahora",
24
- "pricePerYearLabel": "/yr",
24
+ "pricePerYearLabel": "/año",
25
25
  "costPriceLabel": "Precio de coste:"
26
26
  },
27
27
  "sellDomainNameListModal": {
@@ -21,7 +21,7 @@
21
21
  "sellDomainNameList": {
22
22
  "freeDomainButtonLabel": "Domaine gratuit",
23
23
  "buyNowButtonLabel": "Acheter",
24
- "pricePerYearLabel": "/yr",
24
+ "pricePerYearLabel": "/an",
25
25
  "costPriceLabel": "Prix de revient:"
26
26
  },
27
27
  "sellDomainNameListModal": {
@@ -21,7 +21,7 @@
21
21
  "sellDomainNameList": {
22
22
  "freeDomainButtonLabel": "Domínio gratuito",
23
23
  "buyNowButtonLabel": "Comprar Agora",
24
- "pricePerYearLabel": "/yr",
24
+ "pricePerYearLabel": "/ano",
25
25
  "costPriceLabel": "Preço de Custo:"
26
26
  },
27
27
  "sellDomainNameListModal": {
@@ -11,7 +11,6 @@ export default {
11
11
  const locale = 'en-US';
12
12
 
13
13
  const loadTranslationAsync = async () => {
14
- console.log('HERE');
15
14
  await setLocaleAsync(locale);
16
15
  };
17
16
 
@@ -450,7 +450,6 @@ export default {
450
450
  },
451
451
  computed: {
452
452
  firstTimePublishHeaderLabel() {
453
- console.log('aaa', this.brandPageDisplayName);
454
453
  return this.tr('publishBrandPageModal.firstTimePublishHeaderLabel', {
455
454
  brandPageDisplayName: this.brandPageDisplayName,
456
455
  });
@@ -2,7 +2,7 @@
2
2
  "sellDomainNameList": {
3
3
  "freeDomainButtonLabel": "Kostenlose Domain",
4
4
  "buyNowButtonLabel": "Jetzt kaufen",
5
- "pricePerYearLabel": "/yr",
5
+ "pricePerYearLabel": "/Jahr",
6
6
  "costPriceLabel": "Kostenpreis:"
7
7
  }
8
8
  }
@@ -2,7 +2,7 @@
2
2
  "sellDomainNameList": {
3
3
  "freeDomainButtonLabel": "Dominio gratis",
4
4
  "buyNowButtonLabel": "Comprar ahora",
5
- "pricePerYearLabel": "/yr",
5
+ "pricePerYearLabel": "/año",
6
6
  "costPriceLabel": "Precio de coste:"
7
7
  }
8
8
  }
@@ -2,7 +2,7 @@
2
2
  "sellDomainNameList": {
3
3
  "freeDomainButtonLabel": "Domaine gratuit",
4
4
  "buyNowButtonLabel": "Acheter",
5
- "pricePerYearLabel": "/yr",
5
+ "pricePerYearLabel": "/an",
6
6
  "costPriceLabel": "Prix de revient:"
7
7
  }
8
8
  }
@@ -2,7 +2,7 @@
2
2
  "sellDomainNameList": {
3
3
  "freeDomainButtonLabel": "Domínio gratuito",
4
4
  "buyNowButtonLabel": "Comprar Agora",
5
- "pricePerYearLabel": "/yr",
5
+ "pricePerYearLabel": "/ano",
6
6
  "costPriceLabel": "Preço de Custo:"
7
7
  }
8
8
  }
@@ -24,8 +24,6 @@ const setLocaleAsync = async (locale = 'en-US') => {
24
24
 
25
25
  const languageFile = (await relativePathsToTranslationFiles[localeToUse]()).default;
26
26
 
27
- console.log('ss', localeToUse, languageFile);
28
-
29
27
  await i18next.addResourceBundle(localeToUse, 'fe-shared-lib', {
30
28
  ...languageFile,
31
29
  });