@viur/shop-components 0.1.14 → 0.1.15

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": "@viur/shop-components",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "Frontend Vue components for the shop module of ViUR",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <LoadingHandler :isLoading="state.loading">
3
- <h2 class="viur-shop-cart-sidebar-headline headline" v-html="$t('shop.summary_headline')"></h2>
3
+ <h2 class="viur-shop-cart-sidebar-headline headline" v-html="$t('viur.shop.summary_headline')"></h2>
4
4
  <div class="viur-shop-cart-sidebar-summary">
5
5
  <div class="viur-shop-cart-sidebar-summary-item" v-for="item in state.items">
6
6
  <template v-if="(!shopStore.state.showNodes && item.skel_type === 'leaf') || shopStore.state.showNodes">
@@ -18,17 +18,17 @@
18
18
  </div>
19
19
  <template v-if="showFeatures">
20
20
  <div class="viur-shop-cart-sidebar-info">
21
- <span v-html="$t('shop.summary_subtotal')"></span>
21
+ <span v-html="$t('viur.shop.summary_subtotal')"></span>
22
22
  <sl-format-number lang="de" type="currency" currency="EUR" :value="state.cartTotal">
23
23
  </sl-format-number>
24
24
  </div>
25
25
  <div class="viur-shop-cart-sidebar-info">
26
- <span v-html="$t('shop.summary_shipping_total')"></span>
26
+ <span v-html="$t('viur.shop.summary_shipping_total')"></span>
27
27
  <sl-format-number lang="de" type="currency" currency="EUR" :value="state.shippingTotal">
28
28
  </sl-format-number>
29
29
  </div>
30
30
  <div class="viur-shop-cart-shipping-item" v-if="shopStore.state.order?.cart?.dest?.shipping">
31
- <span v-html="$t('shop.summary_delivery_time')"></span>
31
+ <span v-html="$t('viur.shop.summary_delivery_time')"></span>
32
32
  <span>
33
33
  {{
34
34
  shopStore.state.order?.cart?.dest?.shipping?.dest?.delivery_time_range ?
@@ -38,7 +38,7 @@
38
38
  </span>
39
39
  </div>
40
40
  <div class="viur-shop-cart-sidebar-info" v-if="shopStore.state.cartRoot.discount">
41
- <span v-html="$t('shop.summary_discount')"></span>
41
+ <span v-html="$t('viur.shop.summary_discount')"></span>
42
42
  <sl-format-number lang="de" type="currency" currency="EUR" :value="state.discount">
43
43
  </sl-format-number>
44
44
  </div>
@@ -49,12 +49,12 @@
49
49
  </div>
50
50
 
51
51
  <div class="viur-shop-cart-sidebar-info viur-shop-cart-sidebar-info--total">
52
- <span v-html="$t('shop.summary_total')"></span>
52
+ <span v-html="$t('viur.shop.summary_total')"></span>
53
53
  <sl-format-number lang="de" type="currency" currency="EUR" :value="state.total">
54
54
  </sl-format-number>
55
55
  </div>
56
56
  <div class="viur-shop-cart-sidebar-info " v-for="vatObj in state.vat">
57
- <span v-html="$t('shop.summary_vat', {'percentage':calc_percent(vatObj.percentage) })"></span>
57
+ <span v-html="$t('viur.shop.summary_vat', {'percentage':calc_percent(vatObj.percentage) })"></span>
58
58
  <sl-format-number lang="de" type="currency" currency="EUR" :value="vatObj.value">
59
59
  </sl-format-number>
60
60
  </div>
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <slot name="top_actions" v-if="shopStore.state.topActions"
3
- :nextName="$t('shop.proceed-checkout')"
3
+ :nextName="$t('viur.shop.proceed-checkout')"
4
4
  :activefunction="()=>state.items.length>0"
5
5
  :nextfunction="nextStep"
6
6
  >
@@ -16,7 +16,7 @@
16
16
  </div>
17
17
  <shop-alert v-else variant="info" duration="Infinity">
18
18
  <template #alertMsg>
19
- {{ $t('shop.cart_empty') }}
19
+ {{ $t('viur.shop.cart_empty') }}
20
20
  </template>
21
21
  </shop-alert>
22
22
  </loading-handler>
@@ -25,7 +25,7 @@
25
25
  </slot>
26
26
 
27
27
  <slot
28
- :nextName="$t('shop.proceed-checkout')"
28
+ :nextName="$t('viur.shop.proceed-checkout')"
29
29
  :activefunction="()=>state.items.length>0"
30
30
  :nextfunction="nextStep"
31
31
  >
@@ -1,24 +1,24 @@
1
1
  <template>
2
2
  <div>
3
3
  <h1 class="viur-shop-success-headline headline">
4
- {{ $t('shop.order_thanks') }}
4
+ {{ $t('viur.shop.order_thanks') }}
5
5
  </h1>
6
- <p class="paragraph"><strong>{{ $t('shop.order_number') }}:</strong> {{ shopStore.state.order?.["order_uid"] }}</p>
7
- <p class="paragraph" v-html=" $t('shop.order_message')">
6
+ <p class="paragraph"><strong>{{ $t('viur.shop.order_number') }}:</strong> {{ shopStore.state.order?.["order_uid"] }}</p>
7
+ <p class="paragraph" v-html=" $t('viur.shop.order_message')">
8
8
  </p>
9
9
 
10
10
  <p class="paragraph" v-if="shopStore.state.order?.['is_paid']">
11
- {{ $t('shop.order_paid') }}
11
+ {{ $t('viur.shop.order_paid') }}
12
12
  </p>
13
13
 
14
14
  <p class="paragraph" v-if="shopStore.state.order?.['is_rts']">
15
- {{ $t('shop.order_ready_to_ship') }}
15
+ {{ $t('viur.shop.order_ready_to_ship') }}
16
16
  </p>
17
17
 
18
18
  <slot name="template_complete">
19
19
  </slot>
20
-
21
- <sl-details :summary="$t('shop.order_summary')">
20
+
21
+ <sl-details :summary="$t('viur.shop.order_summary')">
22
22
  <shop-summary ></shop-summary>
23
23
  </sl-details>
24
24
  </div>
@@ -37,4 +37,4 @@ const props = defineProps({
37
37
  }
38
38
  })
39
39
 
40
- </script>
40
+ </script>
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div class="list">
3
- <h2 class="viur-shop-cart-headline headline">{{ $t('shop.check_order')}}</h2>
3
+ <h2 class="viur-shop-cart-headline headline">{{ $t('viur.shop.check_order')}}</h2>
4
4
  <div class="viur-shop-cart-address-wrap">
5
5
  <div class="viur-shop-cart-address">
6
6
  <div class="viur-shop-user-data-headline">
@@ -72,7 +72,7 @@
72
72
  </component>
73
73
 
74
74
  <div class="wrapper">
75
- <sl-button size="small" @click="startCheckout" :disabled="!shopStore.state.canCheckout" variant="success">{{ $t('shop.order_pay') }}</sl-button>
75
+ <sl-button size="small" @click="startCheckout" :disabled="!shopStore.state.canCheckout" variant="success">{{ $t('viur.shop.order_pay') }}</sl-button>
76
76
  </div>
77
77
 
78
78
  <template v-if="shopStore.state.order?.['payment_provider'] !== null && shopStore.state.order?.['payment_provider'].startsWith('unzer-')">
@@ -17,8 +17,8 @@
17
17
 
18
18
  <sl-format-number lang="de" type="currency" currency="EUR" :value=" option['dest']['shipping_cost']" v-if="option['dest']['shipping_cost']">
19
19
  </sl-format-number>
20
- <span v-else>{{ $t('shop.free_shipping') }}</span>
21
- {{ option['dest']['name'] }} - {{$t('shop.deliverytime')}}: {{ option['dest']['delivery_time_range'] }} {{ $t('shop.day',option['dest']['delivery_time_max'] - option['dest']['delivery_time_min']) }}
20
+ <span v-else>{{ $t('viur.shop.free_shipping') }}</span>
21
+ {{ option['dest']['name'] }} - {{$t('viur.shop.deliverytime')}}: {{ option['dest']['delivery_time_range'] }} {{ $t('viur.shop.day',option['dest']['delivery_time_max'] - option['dest']['delivery_time_min']) }}
22
22
  </template>
23
23
  </card-selector>
24
24
  </loading-handler>
@@ -29,7 +29,7 @@
29
29
  <slot
30
30
  nextName="weiter"
31
31
  :activefunction="()=>shopStore.state.cartRoot?.['shipping']"
32
- :nextfunction="()=>nextStep"
32
+ :nextfunction="nextStep"
33
33
  >
34
34
  </slot>
35
35
  </template>
@@ -78,4 +78,4 @@ onBeforeMount(()=>{
78
78
 
79
79
  <style scoped>
80
80
 
81
- </style>
81
+ </style>
@@ -14,9 +14,9 @@
14
14
  </address-form>
15
15
 
16
16
  <sl-switch class="viur-shop-user-data-switch" :checked="addressState.billingIsShipping" @sl-change="switchAddresses">
17
- {{ $t('shop.use_shipping_as_billing_address') }}
17
+ {{ $t('viur.shop.use_shipping_as_billing_address') }}
18
18
  </sl-switch>
19
-
19
+
20
20
  <div v-show="!addressState.billingIsShipping">
21
21
  <div class="viur-shop-user-data-headline">
22
22
  {{ $t("skeleton.address.address_type.shipping") }}
@@ -34,7 +34,7 @@
34
34
  ></div>
35
35
 
36
36
  <div class="viur-shop-cart-leaf-quantity">
37
- <div class="viur-shop-cart-leaf-label">{{$t('shop.quantity')}}</div>
37
+ <div class="viur-shop-cart-leaf-label">{{$t('viur.shop.quantity')}}</div>
38
38
  <sl-input
39
39
  :disabled="!edit"
40
40
  class="viur-shop-cart-leaf-value viur-shop-cart-leaf-value--quantity"
@@ -65,7 +65,7 @@
65
65
  </div>
66
66
 
67
67
  <div class="viur-shop-cart-leaf-unitprice">
68
- <div class="viur-shop-cart-leaf-label">{{$t('shop.unit_price')}}</div>
68
+ <div class="viur-shop-cart-leaf-label">{{$t('viur.shop.unit_price')}}</div>
69
69
  <sl-format-number
70
70
  class="viur-shop-cart-leaf-value viur-shop-cart-leaf-value--unitprice"
71
71
  lang="de"
@@ -77,7 +77,7 @@
77
77
  </div>
78
78
 
79
79
  <div class="viur-shop-cart-leaf-availability">
80
- <div class="viur-shop-cart-leaf-label">{{ $t('shop.availability') }}</div>
80
+ <div class="viur-shop-cart-leaf-label">{{ $t('viur.shop.availability') }}</div>
81
81
  <div class="availability"
82
82
  :class="`availability--${item.shop_availability}`"
83
83
  >
@@ -86,7 +86,7 @@
86
86
  </div>
87
87
 
88
88
  <div class="viur-shop-cart-leaf-price">
89
- <div class="viur-shop-cart-leaf-label">{{ $t('shop.total_price') }}</div>
89
+ <div class="viur-shop-cart-leaf-label">{{ $t('viur.shop.total_price') }}</div>
90
90
  <sl-format-number
91
91
  class="viur-shop-cart-leaf-value viur-shop-cart-leaf-value--price"
92
92
  lang="de"
@@ -46,12 +46,12 @@
46
46
  </sl-input>
47
47
 
48
48
  <div class="viur-shop-cart-leaf-article-number">
49
- <div class="viur-shop-cart-leaf-label">{{ $t('shop.article_number') }}</div>
49
+ <div class="viur-shop-cart-leaf-label">{{ $t('viur.shop.article_number') }}</div>
50
50
  {{ getValue(item.shop_art_no_or_gtin) }}
51
51
  </div>
52
52
 
53
53
  <div class="viur-shop-cart-leaf-unitprice">
54
- <div class="viur-shop-cart-leaf-label">{{$t('shop.unit_price')}}</div>
54
+ <div class="viur-shop-cart-leaf-label">{{$t('viur.shop.unit_price')}}</div>
55
55
  <sl-format-number
56
56
  class="viur-shop-cart-leaf-value viur-shop-cart-leaf-value--unitprice"
57
57
  lang="de"
@@ -64,7 +64,7 @@
64
64
 
65
65
 
66
66
  <div class="viur-shop-cart-leaf-price">
67
- <div class="viur-shop-cart-leaf-label">{{ $t('shop.total_price') }}</div>
67
+ <div class="viur-shop-cart-leaf-label">{{ $t('viur.shop.total_price') }}</div>
68
68
  <sl-format-number
69
69
  class="viur-shop-cart-leaf-value viur-shop-cart-leaf-value--price"
70
70
  lang="de"
@@ -23,12 +23,12 @@
23
23
  <sl-button-group v-else>
24
24
  <sl-input
25
25
  class="viur-shop-discount-input"
26
- :placeholder="$t('shop.add_discount_placeholder')"
26
+ :placeholder="$t('viur.shop.add_discount_placeholder')"
27
27
  v-model="state.code"
28
28
  @keypress.enter="addDiscountAction()"
29
29
  >
30
30
  </sl-input>
31
- <sl-button @click="addDiscountAction()" :loading="state.loading">{{ $t('shop.add_discount') }}</sl-button>
31
+ <sl-button @click="addDiscountAction()" :loading="state.loading">{{ $t('viur.shop.add_discount') }}</sl-button>
32
32
  </sl-button-group>
33
33
  </template>
34
34
 
@@ -38,7 +38,7 @@
38
38
  <div id="ideal-element" class="field"></div>
39
39
  </template>
40
40
  </form>
41
- <button :disabled="state.loading" class="unzerUI primary button fluid" @click="submitFormToUnzer">{{ $t('shop.pay') }}</button>
41
+ <button :disabled="state.loading" class="unzerUI primary button fluid" @click="submitFormToUnzer">{{ $t('viur.shop.pay') }}</button>
42
42
  <sl-button :disabled="state.loading" variant="danger" @click="cancelPayment">{{ $t('actions.cancel') }}</sl-button>
43
43
  </div>
44
44
  </template>
@@ -7,7 +7,7 @@ import { useViurShopStore } from '../shop'
7
7
  export function useShipping() {
8
8
  const i18n = useI18n()
9
9
  const shopStore = useViurShopStore()
10
- const defaultErrorMessage = i18n.t('shop.error_message')
10
+ const defaultErrorMessage = i18n.t('viur.shop.error_message')
11
11
  const state = reactive({
12
12
  isLoading:false,
13
13
  isUpdating:false,
@@ -37,4 +37,4 @@ export function useShipping() {
37
37
  fetchShippingData
38
38
 
39
39
  }
40
- }
40
+ }
package/src/shop.js CHANGED
@@ -26,7 +26,7 @@ export const useViurShopStore = defineStore("viurshopStore", () => {
26
26
  cart: {
27
27
  component: shallowRef(ShopCart),
28
28
  params:{},
29
- displayName: "shop.order_step_cart", //Warenkorb
29
+ displayName: "viur.shop.order_step_cart", //Warenkorb
30
30
  icon: { name: "cart3" },
31
31
  active:computed(()=>!state.order?.['is_checkout_in_progress'] && !state.order?.['is_ordered']), //active if no orderkey or checkout not startet
32
32
  validating:false,
@@ -35,7 +35,7 @@ export const useViurShopStore = defineStore("viurshopStore", () => {
35
35
  userdata: {
36
36
  component: shallowRef(ShopUserDataGuest),
37
37
  params:{},
38
- displayName: "shop.order_step_data", //Daten Eingeben
38
+ displayName: "viur.shop.order_step_data", //Daten Eingeben
39
39
  icon: { name: "card-list" },
40
40
  active:computed(()=>!state.order?.['is_checkout_in_progress'] && !state.order?.['is_ordered'] && state.cartList.length>0), //active if checkout not startet and cart is not empty
41
41
  validating:false,
@@ -44,7 +44,7 @@ export const useViurShopStore = defineStore("viurshopStore", () => {
44
44
  shippingmethod: {
45
45
  component: shallowRef(ShopShippingMethod),
46
46
  params:{},
47
- displayName: "shop.order_step_shipping", // Versandart
47
+ displayName: "viur.shop.order_step_shipping", // Versandart
48
48
  icon: { name: "truck" },
49
49
  active:computed(()=>!state.order?.['is_checkout_in_progress'] && !state.order?.['is_ordered'] && state.cartRoot?.['shipping_address']), // we need a shipping country
50
50
  validating:false,
@@ -53,7 +53,7 @@ export const useViurShopStore = defineStore("viurshopStore", () => {
53
53
  paymentprovider: {
54
54
  component: shallowRef(ShopPaymentProvider),
55
55
  params:{},
56
- displayName: "shop.order_step_payment", //Zahlungsart auswählen
56
+ displayName: "viur.shop.order_step_payment", //Zahlungsart auswählen
57
57
  icon: { name: "credit-card" },
58
58
  active:computed(()=>!state.order?.['is_checkout_in_progress'] && state.order && state.cartRoot?.['shipping']), // we need a active order
59
59
  validating:false,
@@ -62,7 +62,7 @@ export const useViurShopStore = defineStore("viurshopStore", () => {
62
62
  confirm: {
63
63
  component: shallowRef(ShopOrderConfirm),
64
64
  params:{},
65
- displayName: "shop.order_step_verify", //Bestellung prüfen
65
+ displayName: "viur.shop.order_step_verify", //Bestellung prüfen
66
66
  icon: { name: "clipboard-check" },
67
67
  active:computed(()=>!state.order?.['is_paid'] && state.canCheckout?.['status']), // active if canCheckout and not already paid
68
68
  validating:false,
@@ -71,7 +71,7 @@ export const useViurShopStore = defineStore("viurshopStore", () => {
71
71
  complete: {
72
72
  component: shallowRef(ShopOrderComplete),
73
73
  params:{},
74
- displayName: "shop.order_step_complete", //Bestellung Abgeschlossen
74
+ displayName: "viur.shop.order_step_complete", //Bestellung Abgeschlossen
75
75
  icon: { name: "bag-check" },
76
76
  active:computed(()=>state.order?.['is_ordered']), // active if ordered
77
77
  validating:false,
@@ -246,7 +246,7 @@ export const useViurShopStore = defineStore("viurshopStore", () => {
246
246
 
247
247
 
248
248
 
249
-
249
+
250
250
  return {
251
251
  state,
252
252
  navigateToTab,
@@ -1,66 +1,64 @@
1
1
  export default {
2
- actions:{
3
- add: "Hinzufügen",
4
- cancel: "Abbrechen",
5
- delete: "Löschen"
2
+ actions: {
3
+ add: 'Hinzufügen',
4
+ cancel: 'Abbrechen',
5
+ delete: 'Löschen',
6
+ },
7
+ viur: {
8
+ shop: {
9
+ 'check_order': 'Prüfen und absenden',
10
+ 'order_pay': 'Zahlungspflichtig bestellen',
11
+ 'order_number': 'Ihre Vorgangsnummer',
12
+ 'order_thanks': 'Vielen Dank für Ihre Bestellung',
13
+ 'order_message': 'Wir haben Ihre Bestellung erhalten und werden diese schnellstmöglich bearbeiten.<br /> Sie erhalten in wenigen Minuten eine Bestätigung per E-Mail.',
14
+ 'order_paid': 'Ihre Zahlung ist bei uns eingegangen.',
15
+ 'order_ready_to_ship': 'Ihre Bestellung ist fertig für den Versand.',
16
+ 'cart_empty': 'Es befinden sich noch keine Artikel im Warenkorb.',
17
+ 'order_summary': 'Bestellzusammenfassung',
18
+ 'deliverytime': 'Lieferzeit',
19
+ 'day': 'Tag | Tage',
20
+ 'availability': 'Verfügbarkeit',
21
+ 'quantity': 'Anzahl',
22
+ 'unit_price': 'Stückpreis',
23
+ 'total_price': 'Gesamtpreis',
24
+ 'article_number': 'Artikelnummer',
25
+ 'pay': 'Bezahlen',
26
+ 'add_discount': 'Hinzufügen',
27
+ 'add_discount_placeholder': 'Dein Rabattcode',
28
+ 'use_shipping_as_billing_address': 'Lieferung zur Rechnungsadresse',
29
+ 'no_valid_shipping_found': 'Keine passenden Versandarten gefunden.',
30
+ 'error_message': 'Ein Fehler ist aufgetreten.',
31
+ 'free_shipping': 'Versandkostenfrei',
32
+ 'proceed-checkout': 'Zur Kasse gehen',
33
+ 'summary_headline': 'Zusammenfassung',
34
+ 'summary_subtotal': 'Zwischensumme',
35
+ 'summary_shipping_total': 'Versand- und Bearbeitungspauschale',
36
+ 'summary_delivery_time': 'Lieferzeit',
37
+ 'summary_discount': 'Sie sparen bei Ihrem Einkauf im Aktionszeitraum',
38
+ 'summary_checkout': 'Zur Kasse gehen',
39
+ 'summary_total': 'Gesamtbetrag',
40
+ 'summary_vat': 'inkl. {percentage} MwSt.',
41
+ 'discount_not_found': 'Dieser Rabattcode existiert nicht.',
42
+ 'discount_not_active': 'Dieser Rabattcode ist nicht aktiv.',
43
+ 'discount_not_available': 'Dieser Rabattcode ist für dieses Land nicht verfügbar.',
44
+ 'discount_already_used': 'Dieser Rabattcode wurde bereits benutzt.',
45
+ 'discount_invalid_period': 'Der Rabattzeitraum hat noch nicht begonnen oder ist bereits vorbei.',
46
+ 'discount_minimum_not_reached': 'Der Mindestbestellwert von {{minimum_order_value}} € wurde nicht erreicht.',
47
+ 'discount_no_sale_article': 'Der Rabattcode ist nicht auf bereits rabattierte Artikel anwendbar.',
48
+ 'discount_scope_not_satisfied': 'Der Rabattcode ist für diesen Warenkorb / diese Artikel nicht anwendbar.',
49
+ 'order_step_cart': 'Warenkorb',
50
+ 'order_step_data': 'Daten',
51
+ 'order_step_shipping': 'Versandart',
52
+ 'order_step_payment': 'Zahlungsart',
53
+ 'order_step_verify': 'Bestellung prüfen',
54
+ 'order_step_complete': 'Bestellung Abgeschlossen',
6
55
  },
7
- shop:{
8
- "check_order":"Prüfen und absenden",
9
- "order_pay":"Zahlungspflichtig bestellen",
10
- "order_number":"Ihre Vorgangsnummer",
11
- "order_thanks":"Vielen Dank für Ihre Bestellung",
12
- "order_message":"Wir haben Ihre Bestellung erhalten und werden diese schnellstmöglich bearbeiten.<br /> Sie erhalten in wenigen Minuten eine Bestätigung per E-Mail.",
13
- "order_paid":"Ihre Zahlung ist bei uns eingegangen.",
14
- "order_ready_to_ship":"Ihre Bestellung ist fertig für den Versand.",
15
- "cart_empty":"Es befinden sich noch keine Artikel im Warenkorb.",
16
- "order_summary":"Bestellzusammenfassung",
17
- "deliverytime":"Lieferzeit",
18
- "day": "Tag | Tage",
19
- "availability": "Verfügbarkeit",
20
- "quantity": "Anzahl",
21
- "unit_price":"Stückpreis",
22
- "total_price":"Gesamtpreis",
23
- "article_number":"Artikelnummer",
24
- "pay":"Bezahlen",
25
- "add_discount":"Hinzufügen",
26
- "add_discount_placeholder":"Dein Rabattcode",
27
- "use_shipping_as_billing_address": "Lieferung zur Rechnungsadresse",
28
- "no_valid_shipping_found":"Keine passenden Versandarten gefunden.",
29
- "error_message":"Eine Fehler ist aufgetreten.",
30
- "free_shipping":"Versandkostenfrei",
31
- "proceed-checkout":"Zur Kasse gehen",
32
- "summary_headline":"Zusammenfassung",
33
- "summary_subtotal":"Zwischensumme",
34
- "summary_shipping_total":"Versand- und Bearbeitungspauschale",
35
- "summary_delivery_time":"Lieferzeit",
36
- "summary_discount":"Sie sparen bei Ihrem Einkauf im Aktionszeitraum",
37
- "summary_checkout":"Zur Kasse gehen",
38
- "summary_total":"Gesamtbetrag",
39
- "summary_vat":"inkl. {percentage} MwSt.",
40
- "discount_not_found": "Dieser Rabattcode existiert nicht.",
41
- "discount_not_active": "Dieser Rabattcode ist nicht aktiv.",
42
- "discount_not_available": "Dieser Rabattcode ist für dieses Land nicht verfügbar.",
43
- "discount_already_used": "Dieser Rabattcode wurde bereits benutzt.",
44
- "discount_invalid_period": "Der Rabattzeitraum hat noch nicht begonnen oder ist bereits vorbei.",
45
- "discount_minimum_not_reached": "Der Mindestbestellwert von {{minimum_order_value}} € wurde nicht erreicht.",
46
- "discount_no_sale_article": "Der Rabattcode ist nicht auf bereits rabattierte Artikel anwendbar.",
47
- "discount_scope_not_satisfied": "Der Rabattcode ist für diesen Warenkorb / diese Artikel nicht anwendbar.",
48
- "order_step_cart":"Warenkorb",
49
- "order_step_data":"Daten",
50
- "order_step_shipping":"Versandart",
51
- "order_step_payment":"Zahlungsart",
52
- "order_step_verify":"Bestellung prüfen",
53
- "order_step_complete":"Bestellung Abgeschlossen"
54
-
55
-
56
- },
57
- messages:{
58
- loading:"Daten werden abgefragt...",
59
- updating:"Daten werden aktualisiert...",
60
- wait_for_payment:"Warte auf Zahlung...",
61
- remove_article_from_cart:"Wollen sie den Artikel wirklich entfernen?",
62
- order_check_later:"Sie können Ihre Bestellung am Ende noch einmal überprüfen.",
63
- },
64
- "skeleton.address.address_type.billing":"Rechnungsadresse",
65
- "skeleton.address.address_type.shipping":"Lieferadresse",
66
- }
56
+ },
57
+ messages: {
58
+ loading: 'Daten werden abgefragt...',
59
+ updating: 'Daten werden aktualisiert...',
60
+ wait_for_payment: 'Warte auf Zahlung...',
61
+ remove_article_from_cart: 'Wollen sie den Artikel wirklich entfernen?',
62
+ order_check_later: 'Sie können Ihre Bestellung am Ende noch einmal überprüfen.',
63
+ },
64
+ };
@@ -1,56 +1,58 @@
1
1
  export default {
2
- actions:{
3
- add: "Hinzufügen",
4
- cancel: "Abbrechen",
5
- delete: "Löschen"
2
+ actions: {
3
+ add: 'Hinzufügen',
4
+ cancel: 'Abbrechen',
5
+ delete: 'Löschen',
6
+ },
7
+ viur: {
8
+ shop: {
9
+ 'check_order': 'Vérifier et envoyer',
10
+ 'order_pay': 'Valider',
11
+ 'order_number': 'N° de commande',
12
+ 'order_thanks': 'Merci pour votre commande et l’intérêt porté à notre société.',
13
+ 'order_message': 'Wir haben Ihre Bestellung erhalten und werden diese schnellstmöglich bearbeiten.<br /> Sie erhalten in wenigen Minuten eine Bestätigung per E-Mail.',
14
+ 'order_paid': 'Ihre Zahlung ist bei uns eingegangen.',
15
+ 'order_ready_to_ship': 'Ihre Bestellung ist fertig für den Versand.',
16
+ 'cart_empty': 'Votre panier est vide.',
17
+ 'order_summary': 'Envoyer la commande',
18
+ 'deliverytime': 'Délai de livraison',
19
+ 'day': 'jour | jours',
20
+ 'availability': 'Disponibilité',
21
+ 'quantity': 'Quantité',
22
+ 'unit_price': 'Prix par pièce',
23
+ 'total_price': 'Montant total',
24
+ 'article_number': 'Numéro d\'article',
25
+ 'pay': 'Payer',
26
+ 'add_discount': 'Valider',
27
+ 'add_discount_placeholder': 'Votre code promo',
28
+ 'use_shipping_as_billing_address': 'Lieferung zur Rechnungsadresse',
29
+ 'no_valid_shipping_found': 'Keine passenden Versandarten gefunden.',
30
+ 'error_message': 'Eine Fehler ist aufgetreten.',
31
+ 'free_shipping': 'Livraison gratuite',
32
+ 'proceed-checkout': 'Acheter cet article',
33
+ 'summary_headline': 'Résumé',
34
+ 'summary_subtotal': 'Sous-total',
35
+ 'summary_shipping_total': 'Emballage et envoi',
36
+ 'summary_delivery_time': '',
37
+ 'summary_discount': 'Vous économisez sur votre achat',
38
+ 'summary_checkout': 'Acheter cet article',
39
+ 'summary_total': 'Montant total',
40
+ 'summary_vat': 'TVA incluse ({vat_percentage})',
41
+ 'discount_not_found': 'Ce code promo n’existe pas.',
42
+ 'discount_not_active': 'Ce code promo n’est pas actif.',
43
+ 'discount_not_available': 'Ce code promo n’est pas valable pour ce pays.',
44
+ 'discount_already_used': 'Ce code promo a déjà été utilisé.',
45
+ 'discount_invalid_period': 'La période de ce code promo n’a encore débuté ou est déjà expirée.',
46
+ 'discount_minimum_not_reached': 'Le montant minimum de commande de {{minimum_order_value}} € n’a pas été atteint.',
47
+ 'discount_no_sale_article': 'Bon d’achat non cumulable avec d’autres promotions en cours.',
48
+ 'discount_scope_not_satisfied': 'Le code promo n’est pas applicable pour ce panier / cet ou ces article(s).',
6
49
  },
7
- shop:{
8
- "check_order":"Vérifier et envoyer",
9
- "order_pay":"Valider",
10
- "order_number":"N° de commande",
11
- "order_thanks":"Merci pour votre commande et l’intérêt porté à notre société.",
12
- "order_message":"Wir haben Ihre Bestellung erhalten und werden diese schnellstmöglich bearbeiten.<br /> Sie erhalten in wenigen Minuten eine Bestätigung per E-Mail.",
13
- "order_paid":"Ihre Zahlung ist bei uns eingegangen.",
14
- "order_ready_to_ship":"Ihre Bestellung ist fertig für den Versand.",
15
- "cart_empty":"Votre panier est vide.",
16
- "order_summary":"Envoyer la commande",
17
- "deliverytime":"Délai de livraison",
18
- "day": "jour | jours",
19
- "availability": "Disponibilité",
20
- "quantity": "Quantité",
21
- "unit_price":"Prix par pièce",
22
- "total_price":"Montant total",
23
- "article_number":"Numéro d'article",
24
- "pay":"Payer",
25
- "add_discount":"Valider",
26
- "add_discount_placeholder":"Votre code promo",
27
- "use_shipping_as_billing_address": "Lieferung zur Rechnungsadresse",
28
- "no_valid_shipping_found":"Keine passenden Versandarten gefunden.",
29
- "error_message":"Eine Fehler ist aufgetreten.",
30
- "free_shipping":"Livraison gratuite",
31
- "proceed-checkout":"Acheter cet article",
32
- "summary_headline":"Résumé",
33
- "summary_subtotal":"Sous-total",
34
- "summary_shipping_total":"Emballage et envoi",
35
- "summary_delivery_time":"",
36
- "summary_discount":"Vous économisez sur votre achat",
37
- "summary_checkout":"Acheter cet article",
38
- "summary_total":"Montant total",
39
- "summary_vat":"TVA incluse ({vat_percentage})",
40
- "discount_not_found": "Ce code promo n’existe pas.",
41
- "discount_not_active": "Ce code promo n’est pas actif.",
42
- "discount_not_available": "Ce code promo n’est pas valable pour ce pays.",
43
- "discount_already_used": "Ce code promo a déjà été utilisé.",
44
- "discount_invalid_period": "La période de ce code promo n’a encore débuté ou est déjà expirée.",
45
- "discount_minimum_not_reached": "Le montant minimum de commande de {{minimum_order_value}} € n’a pas été atteint.",
46
- "discount_no_sale_article": "Bon d’achat non cumulable avec d’autres promotions en cours.",
47
- "discount_scope_not_satisfied": "Le code promo n’est pas applicable pour ce panier / cet ou ces article(s).",
48
- },
49
- messages:{
50
- loading:"Daten werden abgefragt...",
51
- updating:"Daten werden aktualisiert...",
52
- wait_for_payment:"Warte auf Zahlung...",
53
- remove_article_from_cart:"Désirez-vous vraiment supprimer cet article du panier?",
54
- order_check_later:"Vous pourrez revérifier vos données avant de valider votre commande."
55
- }
56
- }
50
+ },
51
+ messages: {
52
+ loading: 'Daten werden abgefragt...',
53
+ updating: 'Daten werden aktualisiert...',
54
+ wait_for_payment: 'Warte auf Zahlung...',
55
+ remove_article_from_cart: 'Désirez-vous vraiment supprimer cet article du panier?',
56
+ order_check_later: 'Vous pourrez revérifier vos données avant de valider votre commande.',
57
+ },
58
+ };