-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
<?php | ||
|
||
return [ | ||
'non_purchasable_item' => 'The ":class" model does not implement the purchasable interface.', | ||
'cart_line_id_mismatch' => 'This cart line does not belong to this cart', | ||
'invalid_cart_line_quantity' => 'Expected quantity to be at least "1", ":quantity" found.', | ||
'maximum_cart_line_quantity' => 'Quantity cannot exceed :quantity.', | ||
'carts.invalid_action' => 'The cart action was invalid', | ||
'carts.shipping_missing' => 'A shipping address is required', | ||
'carts.billing_missing' => 'A billing address is required', | ||
'carts.billing_incomplete' => 'The billing address is incomplete', | ||
'carts.order_exists' => 'An order for this cart already exists', | ||
'carts.shipping_option_missing' => 'Missing Shipping Option', | ||
'missing_currency_price' => 'No price for currency ":currency" exists', | ||
'minimum_quantity' => 'You must add a minimum of :quantity items.', | ||
'quantity_increment' => 'Quantity :quantity must be in increments of :increment', | ||
'fieldtype_missing' => 'FieldType ":class" does not exist', | ||
'invalid_fieldtype' => 'Class ":class" does not implement the FieldType interface.', | ||
'discounts.invalid_type' => 'Collection must only contain ":expected", found ":actual"', | ||
'disallow_multiple_cart_orders' => 'Carts can only have one order associated to them.', | ||
'non_purchasable_item' => 'Het ":class" model implementeert de koopbare interface niet.', | ||
'cart_line_id_mismatch' => 'Deze winkelwagenregel behoort niet tot deze winkelwagen', | ||
'invalid_cart_line_quantity' => 'Verwachte hoeveelheid is minimaal "1", ":quantity" gevonden.', | ||
'maximum_cart_line_quantity' => 'Hoeveelheid mag niet meer zijn dan :quantity.', | ||
'carts.invalid_action' => 'De winkelwagenactie was ongeldig', | ||
'carts.shipping_missing' => 'Een verzendadres is vereist', | ||
'carts.billing_missing' => 'Een factuuradres is vereist', | ||
'carts.billing_incomplete' => 'Het factuuradres is onvolledig', | ||
'carts.order_exists' => 'Er bestaat al een bestelling voor deze winkelwagen', | ||
'carts.shipping_option_missing' => 'Ontbrekende verzendoptie', | ||
'missing_currency_price' => 'Er bestaat geen prijs voor valuta ":currency"', | ||
'minimum_quantity' => 'U moet minimaal :quantity items toevoegen.', | ||
'quantity_increment' => 'Hoeveelheid :quantity moet in stappen van :increment zijn', | ||
'fieldtype_missing' => 'FieldType ":class" bestaat niet', | ||
'invalid_fieldtype' => 'Klasse ":class" implementeert de FieldType interface niet.', | ||
'discounts.invalid_type' => 'Collectie moet alleen ":expected" bevatten, gevonden ":actual"', | ||
'disallow_multiple_cart_orders' => 'Winkelwagens kunnen slechts één bestelling hebben.', | ||
]; |