Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Exceptions messages in german #1548

Merged
merged 3 commits into from
May 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/core/config/pricing.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
| Specify whether the prices entered into the system include tax or not.
|
*/
'stored_inclusive_of_tax' => false,
'stored_inclusive_of_tax' => env('LUNAR_STORE_INCLUSIVE_OF_TAX', false),

/*
|--------------------------------------------------------------------------
Expand Down
18 changes: 18 additions & 0 deletions packages/core/resources/lang/de/exceptions.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

return [
'non_purchasable_item' => 'Das Model ":class" implementiert nicht das "Bestellbar (purchasable)" Interface.',
'cart_line_id_mismatch' => 'Die Position gehört nicht zu diesem Warenkorb.',
'invalid_cart_line_quantity' => 'Die Bestellmenge muss mindestens "1" sein, angegeben wurden ":quantity".',
'maximum_cart_line_quantity' => 'Die Bestellmenge darf nicht mehr als ":quantity" betragen.',
'carts.shipping_missing' => 'Eine Lieferadresse ist erforderlich',
'carts.billing_missing' => 'Eine Rechnungsadresse ist erforderlich',
'carts.billing_incomplete' => 'Die Rechnungsadresse ist unvollständig',
'carts.order_exists' => 'Für diesen Warenkorb existiert bereits eine Bestellung',
'carts.shipping_option_missing' => 'Eine gültige Versandart fehlt',
'missing_currency_price' => 'Es existiert kein Preis für die Währung ":currency"',
'fieldtype_missing' => 'Der FeldType ":class" existiert nicht',
'invalid_fieldtype' => 'Die Klasse ":class" implementiert nicht das Feldtyp-Interface.',
'discounts.invalid_type' => 'Die Liste der Rabatte darf nur ":expected" enthalten, gefunden wurde ":actual"',
'disallow_multiple_cart_orders' => 'Ein Warenkorb kann nur zu einer Bestellung gehören.',
];