spree 0.10.0.beta → 0.10.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of spree might be problematic. Click here for more details.
- data/README.markdown +36 -30
- data/app/controllers/admin/option_types_controller.rb +1 -1
- data/app/controllers/admin/payments_controller.rb +1 -1
- data/app/controllers/admin/products_controller.rb +4 -4
- data/app/controllers/admin/variants_controller.rb +2 -2
- data/app/controllers/checkouts_controller.rb +5 -11
- data/app/controllers/orders_controller.rb +10 -0
- data/app/controllers/user_sessions_controller.rb +16 -0
- data/app/models/product.rb +2 -1
- data/app/models/variant.rb +1 -1
- data/config/boot.rb +6 -6
- data/config/environment.rb +1 -1
- data/config/locales/cs-CZ.yml +12 -2
- data/config/locales/da.yml +12 -2
- data/config/locales/de-CH.yml +12 -2
- data/config/locales/de.yml +12 -2
- data/config/locales/en-AU.yml +12 -2
- data/config/locales/en-GB.yml +12 -2
- data/config/locales/en-US.yml +12 -2
- data/config/locales/es.yml +12 -2
- data/config/locales/fi.yml +12 -2
- data/config/locales/fr-FR.yml +12 -2
- data/config/locales/il.yml +12 -2
- data/config/locales/it.yml +12 -2
- data/config/locales/jp.yml +12 -2
- data/config/locales/mx.yml +12 -2
- data/config/locales/nb-NO.yml +12 -2
- data/config/locales/nl-BE.yml +12 -2
- data/config/locales/nl-NL.yml +12 -2
- data/config/locales/pl.yml +12 -2
- data/config/locales/pt-BR.yml +12 -2
- data/config/locales/pt-PT.yml +12 -2
- data/config/locales/ru-RU.yml +12 -2
- data/config/locales/th.yml +12 -2
- data/config/locales/vn.yml +12 -2
- data/db/migrate/20091021133257_charge_refactoring.rb +2 -2
- data/db/migrate/20100105132138_shipment_id_for_inventory_units.rb +4 -0
- data/db/schema.rb +1 -1
- data/lib/spree.rb +1 -1
- data/test/functional/admin/payments_controller_test.rb +7 -1
- data/test/integration/checkout_test.rb +59 -0
- data/test/test_helper.rb +1 -0
- data/test/unit/creditcard_test.rb +6 -0
- data/vendor/extensions/localization/app/controllers/locale_controller.rb +4 -1
- data/vendor/extensions/payment_gateway/lib/spree/payment_gateway.rb +1 -0
- data/vendor/extensions/theme_default/app/views/admin/option_types/selected.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/admin/orders/edit.html.erb +1 -0
- data/vendor/extensions/theme_default/app/views/admin/orders/new.html.erb +1 -0
- data/vendor/extensions/theme_default/app/views/admin/payments/_form.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/admin/payments/source_forms/_gateway.html.erb +2 -2
- data/vendor/extensions/theme_default/app/views/admin/products/_option_types.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/admin/shipments/edit.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/admin/shipments/index.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/admin/states/_state_list.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/admin/tax_categories/index.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/admin/zones/index.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/checkouts/_payment.html.erb +7 -11
- data/vendor/extensions/theme_default/app/views/checkouts/_summary.html.erb +9 -6
- data/vendor/extensions/theme_default/app/views/layouts/spree_application.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/shared/_login.html.erb +0 -1
- data/vendor/extensions/theme_default/app/views/users/_openid_identifier.html.erb +0 -1
- data/vendor/extensions/theme_default/public/javascripts/admin/orders/edit.js +1 -1
- data/vendor/extensions/theme_default/theme_default_extension.rb +0 -16
- data/vendor/plugins/resource_controller/lib/resource_controller/controller.rb +3 -3
- metadata +8 -9
data/config/locales/en-AU.yml
CHANGED
@@ -515,6 +515,15 @@ en-AU:
|
|
515
515
|
none_available: "None Available"
|
516
516
|
not: not
|
517
517
|
note: Note
|
518
|
+
notice_messages:
|
519
|
+
option_type_removed: "Succesfully removed option type."
|
520
|
+
product_cloned: "Product has been cloned"
|
521
|
+
product_deleted: "Product has been deleted"
|
522
|
+
product_not_cloned: "Product could not be cloned"
|
523
|
+
product_not_deleted: "Product could not be deleted"
|
524
|
+
track_me_in_GA: "Track Me in GA"
|
525
|
+
variant_deleted: "Variant has been deleted"
|
526
|
+
variant_not_deleted: "Variant could not be deleted"
|
518
527
|
on_hand: "On Hand"
|
519
528
|
operation: Operation
|
520
529
|
option_Values: "Option Values"
|
@@ -609,12 +618,12 @@ en-AU:
|
|
609
618
|
name: Ascend by product name
|
610
619
|
ascend_by_updated_at:
|
611
620
|
name: Ascend by actualization date
|
612
|
-
descend_by_popularity:
|
613
|
-
name: Sort by popularity(most popular first)
|
614
621
|
descend_by_master_price:
|
615
622
|
name: Descend by product master price
|
616
623
|
descend_by_name:
|
617
624
|
name: Descend by product name
|
625
|
+
descend_by_popularity:
|
626
|
+
name: Sort by popularity(most popular first)
|
618
627
|
descend_by_updated_at:
|
619
628
|
name: Descend by actualization date
|
620
629
|
in_name:
|
@@ -882,6 +891,7 @@ en-AU:
|
|
882
891
|
use_as_shipping_address: Use as Delivery Address
|
883
892
|
use_billing_address: Use Billing Address
|
884
893
|
use_different_shipping_address: "Use Different Delivery Address"
|
894
|
+
use_new_cc: "Use a new card"
|
885
895
|
user: User
|
886
896
|
user_account: User Account
|
887
897
|
user_created_successfully: "User created successfully"
|
data/config/locales/en-GB.yml
CHANGED
@@ -515,6 +515,15 @@ en-GB:
|
|
515
515
|
none_available: "None Available"
|
516
516
|
not: not
|
517
517
|
note: Note
|
518
|
+
notice_messages:
|
519
|
+
option_type_removed: "Succesfully removed option type."
|
520
|
+
product_cloned: "Product has been cloned"
|
521
|
+
product_deleted: "Product has been deleted"
|
522
|
+
product_not_cloned: "Product could not be cloned"
|
523
|
+
product_not_deleted: "Product could not be deleted"
|
524
|
+
track_me_in_GA: "Track Me in GA"
|
525
|
+
variant_deleted: "Variant has been deleted"
|
526
|
+
variant_not_deleted: "Variant could not be deleted"
|
518
527
|
on_hand: "On Hand"
|
519
528
|
operation: Operation
|
520
529
|
option_Values: "Option Values"
|
@@ -609,12 +618,12 @@ en-GB:
|
|
609
618
|
name: Ascend by product name
|
610
619
|
ascend_by_updated_at:
|
611
620
|
name: Ascend by actualization date
|
612
|
-
descend_by_popularity:
|
613
|
-
name: Sort by popularity(most popular first)
|
614
621
|
descend_by_master_price:
|
615
622
|
name: Descend by product master price
|
616
623
|
descend_by_name:
|
617
624
|
name: Descend by product name
|
625
|
+
descend_by_popularity:
|
626
|
+
name: Sort by popularity(most popular first)
|
618
627
|
descend_by_updated_at:
|
619
628
|
name: Descend by actualization date
|
620
629
|
in_name:
|
@@ -882,6 +891,7 @@ en-GB:
|
|
882
891
|
use_as_shipping_address: Use as Delivery Address
|
883
892
|
use_billing_address: Use Billing Address
|
884
893
|
use_different_shipping_address: "Use Different Delivery Address"
|
894
|
+
use_new_cc: "Use a new card"
|
885
895
|
user: User
|
886
896
|
user_account: User Account
|
887
897
|
user_created_successfully: "User created successfully"
|
data/config/locales/en-US.yml
CHANGED
@@ -515,6 +515,15 @@ en-US:
|
|
515
515
|
none_available: "None Available"
|
516
516
|
not: not
|
517
517
|
note: Note
|
518
|
+
notice_messages:
|
519
|
+
option_type_removed: "Succesfully removed option type."
|
520
|
+
product_cloned: "Product has been cloned"
|
521
|
+
product_deleted: "Product has been deleted"
|
522
|
+
product_not_cloned: "Product could not be cloned"
|
523
|
+
product_not_deleted: "Product could not be deleted"
|
524
|
+
track_me_in_GA: "Track Me in GA"
|
525
|
+
variant_deleted: "Variant has been deleted"
|
526
|
+
variant_not_deleted: "Variant could not be deleted"
|
518
527
|
on_hand: "On Hand"
|
519
528
|
operation: Operation
|
520
529
|
option_Values: "Option Values"
|
@@ -609,12 +618,12 @@ en-US:
|
|
609
618
|
name: Ascend by product name
|
610
619
|
ascend_by_updated_at:
|
611
620
|
name: Ascend by actualization date
|
612
|
-
descend_by_popularity:
|
613
|
-
name: Sort by popularity(most popular first)
|
614
621
|
descend_by_master_price:
|
615
622
|
name: Descend by product master price
|
616
623
|
descend_by_name:
|
617
624
|
name: Descend by product name
|
625
|
+
descend_by_popularity:
|
626
|
+
name: Sort by popularity(most popular first)
|
618
627
|
descend_by_updated_at:
|
619
628
|
name: Descend by actualization date
|
620
629
|
in_name:
|
@@ -882,6 +891,7 @@ en-US:
|
|
882
891
|
use_as_shipping_address: Use as Shipping Address
|
883
892
|
use_billing_address: Use Billing Address
|
884
893
|
use_different_shipping_address: "Use Different Shipping Address"
|
894
|
+
use_new_cc: "Use a new card"
|
885
895
|
user: User
|
886
896
|
user_account: User Account
|
887
897
|
user_created_successfully: "User created successfully"
|
data/config/locales/es.yml
CHANGED
@@ -515,6 +515,15 @@ es:
|
|
515
515
|
none_available: "No hay nada que mostrar"
|
516
516
|
not: not
|
517
517
|
note: Note
|
518
|
+
notice_messages:
|
519
|
+
option_type_removed: "Succesfully removed option type."
|
520
|
+
product_cloned: "Product has been cloned"
|
521
|
+
product_deleted: "Product has been deleted"
|
522
|
+
product_not_cloned: "Product could not be cloned"
|
523
|
+
product_not_deleted: "Product could not be deleted"
|
524
|
+
track_me_in_GA: "Track Me in GA"
|
525
|
+
variant_deleted: "Variant has been deleted"
|
526
|
+
variant_not_deleted: "Variant could not be deleted"
|
518
527
|
on_hand: "En mano"
|
519
528
|
operation: Operación
|
520
529
|
option_Values: "Valores de opción"
|
@@ -609,12 +618,12 @@ es:
|
|
609
618
|
name: Ascend by product name
|
610
619
|
ascend_by_updated_at:
|
611
620
|
name: Ascend by actualization date
|
612
|
-
descend_by_popularity:
|
613
|
-
name: Sort by popularity(most popular first)
|
614
621
|
descend_by_master_price:
|
615
622
|
name: Descend by product master price
|
616
623
|
descend_by_name:
|
617
624
|
name: Descend by product name
|
625
|
+
descend_by_popularity:
|
626
|
+
name: Sort by popularity(most popular first)
|
618
627
|
descend_by_updated_at:
|
619
628
|
name: Descend by actualization date
|
620
629
|
in_name:
|
@@ -882,6 +891,7 @@ es:
|
|
882
891
|
use_as_shipping_address: Usar como direccion de envio
|
883
892
|
use_billing_address: Usar la direccion de facturacion
|
884
893
|
use_different_shipping_address: "Usar una dirección de envío diferente"
|
894
|
+
use_new_cc: "Use a new card"
|
885
895
|
user: Usuario
|
886
896
|
user_account: Cuenta de usuario
|
887
897
|
user_created_successfully: "User created successfully"
|
data/config/locales/fi.yml
CHANGED
@@ -515,6 +515,15 @@ fi:
|
|
515
515
|
none_available: "Ei yhtäkään saatavilla"
|
516
516
|
not: ei
|
517
517
|
note: Note
|
518
|
+
notice_messages:
|
519
|
+
option_type_removed: "Succesfully removed option type."
|
520
|
+
product_cloned: "Product has been cloned"
|
521
|
+
product_deleted: "Product has been deleted"
|
522
|
+
product_not_cloned: "Product could not be cloned"
|
523
|
+
product_not_deleted: "Product could not be deleted"
|
524
|
+
track_me_in_GA: "Track Me in GA"
|
525
|
+
variant_deleted: "Variant has been deleted"
|
526
|
+
variant_not_deleted: "Variant could not be deleted"
|
518
527
|
on_hand: Saatavilla
|
519
528
|
operation: Operaatio
|
520
529
|
option_Values: Valinta-arvot
|
@@ -609,12 +618,12 @@ fi:
|
|
609
618
|
name: "Nousevasti tuotteen nimen mukaan"
|
610
619
|
ascend_by_updated_at:
|
611
620
|
name: "Nousevasti toteutuksen päivämäärän mukaan"
|
612
|
-
descend_by_popularity:
|
613
|
-
name: "Lajittele suosion mukaan (suosituimmat ensin)"
|
614
621
|
descend_by_master_price:
|
615
622
|
name: "Laskevasti tuotteen hinnan mukaan"
|
616
623
|
descend_by_name:
|
617
624
|
name: "Laskevasti tuotteen nimen mukaan"
|
625
|
+
descend_by_popularity:
|
626
|
+
name: "Lajittele suosion mukaan (suosituimmat ensin)"
|
618
627
|
descend_by_updated_at:
|
619
628
|
name: "Laskevasti toteutuksen päimärään mukaan"
|
620
629
|
in_name:
|
@@ -882,6 +891,7 @@ fi:
|
|
882
891
|
use_as_shipping_address: "Käytä toimitusosoitteena"
|
883
892
|
use_billing_address: "Käytä laskutusosoitetta"
|
884
893
|
use_different_shipping_address: "Käytä eri toimitusosoitetta"
|
894
|
+
use_new_cc: "Use a new card"
|
885
895
|
user: Käyttäjä
|
886
896
|
user_account: Käyttäjätunnus
|
887
897
|
user_created_successfully: "Käyttäjä luotu onnistuneesti"
|
data/config/locales/fr-FR.yml
CHANGED
@@ -515,6 +515,15 @@ fr-FR:
|
|
515
515
|
none_available: "Aucun de disponible"
|
516
516
|
not: pas
|
517
517
|
note: Note
|
518
|
+
notice_messages:
|
519
|
+
option_type_removed: "Succesfully removed option type."
|
520
|
+
product_cloned: "Product has been cloned"
|
521
|
+
product_deleted: "Product has been deleted"
|
522
|
+
product_not_cloned: "Product could not be cloned"
|
523
|
+
product_not_deleted: "Product could not be deleted"
|
524
|
+
track_me_in_GA: "Track Me in GA"
|
525
|
+
variant_deleted: "Variant has been deleted"
|
526
|
+
variant_not_deleted: "Variant could not be deleted"
|
518
527
|
on_hand: "Disponible"
|
519
528
|
operation: Opération
|
520
529
|
option_Values: "Option valeurs"
|
@@ -609,12 +618,12 @@ fr-FR:
|
|
609
618
|
name: Par nom croissant
|
610
619
|
ascend_by_updated_at:
|
611
620
|
name: Par date d'actualisation croissante
|
612
|
-
by_popularity:
|
613
|
-
name: Trier par popularité(le plus populaire en premier)
|
614
621
|
descend_by_master_price:
|
615
622
|
name: Par prix décroissant
|
616
623
|
descend_by_name:
|
617
624
|
name: Par nom décroissant
|
625
|
+
descend_by_popularity:
|
626
|
+
name: Sort by popularity(most popular first)
|
618
627
|
descend_by_updated_at:
|
619
628
|
name: Par date d'actualisation décroissante
|
620
629
|
in_name:
|
@@ -882,6 +891,7 @@ fr-FR:
|
|
882
891
|
use_as_shipping_address: "Utiliser en tant qu'adresse de livraison"
|
883
892
|
use_billing_address: "Utiliser l'adresse de facturation"
|
884
893
|
use_different_shipping_address: "Utiliser une adresse de facturation différente"
|
894
|
+
use_new_cc: "Use a new card"
|
885
895
|
user: Utilisateur
|
886
896
|
user_account: Compte utilisateur
|
887
897
|
user_created_successfully: "Utilisateur créé avec succès"
|
data/config/locales/il.yml
CHANGED
@@ -515,6 +515,15 @@ il:
|
|
515
515
|
none_available: "None Available"
|
516
516
|
not: not
|
517
517
|
note: Note
|
518
|
+
notice_messages:
|
519
|
+
option_type_removed: "Succesfully removed option type."
|
520
|
+
product_cloned: "Product has been cloned"
|
521
|
+
product_deleted: "Product has been deleted"
|
522
|
+
product_not_cloned: "Product could not be cloned"
|
523
|
+
product_not_deleted: "Product could not be deleted"
|
524
|
+
track_me_in_GA: "Track Me in GA"
|
525
|
+
variant_deleted: "Variant has been deleted"
|
526
|
+
variant_not_deleted: "Variant could not be deleted"
|
518
527
|
on_hand: "On Hand"
|
519
528
|
operation: Operation
|
520
529
|
option_Values: "Option Values"
|
@@ -609,12 +618,12 @@ il:
|
|
609
618
|
name: Ascend by product name
|
610
619
|
ascend_by_updated_at:
|
611
620
|
name: Ascend by actualization date
|
612
|
-
descend_by_popularity:
|
613
|
-
name: Sort by popularity(most popular first)
|
614
621
|
descend_by_master_price:
|
615
622
|
name: Descend by product master price
|
616
623
|
descend_by_name:
|
617
624
|
name: Descend by product name
|
625
|
+
descend_by_popularity:
|
626
|
+
name: Sort by popularity(most popular first)
|
618
627
|
descend_by_updated_at:
|
619
628
|
name: Descend by actualization date
|
620
629
|
in_name:
|
@@ -882,6 +891,7 @@ il:
|
|
882
891
|
use_as_shipping_address: Use as Shipping Address
|
883
892
|
use_billing_address: זהה לכתובת למשלוח חשבונית
|
884
893
|
use_different_shipping_address: "Use Different Shipping Address"
|
894
|
+
use_new_cc: "Use a new card"
|
885
895
|
user: User
|
886
896
|
user_account: User Account
|
887
897
|
user_created_successfully: "User created successfully"
|
data/config/locales/it.yml
CHANGED
@@ -515,6 +515,15 @@ it:
|
|
515
515
|
none_available: "None Available"
|
516
516
|
not: not
|
517
517
|
note: Note
|
518
|
+
notice_messages:
|
519
|
+
option_type_removed: "Succesfully removed option type."
|
520
|
+
product_cloned: "Product has been cloned"
|
521
|
+
product_deleted: "Product has been deleted"
|
522
|
+
product_not_cloned: "Product could not be cloned"
|
523
|
+
product_not_deleted: "Product could not be deleted"
|
524
|
+
track_me_in_GA: "Track Me in GA"
|
525
|
+
variant_deleted: "Variant has been deleted"
|
526
|
+
variant_not_deleted: "Variant could not be deleted"
|
518
527
|
on_hand: "In magazzino"
|
519
528
|
operation: Operazione
|
520
529
|
option_Values: "Valori opzioni"
|
@@ -609,12 +618,12 @@ it:
|
|
609
618
|
name: Ascend by product name
|
610
619
|
ascend_by_updated_at:
|
611
620
|
name: Ascend by actualization date
|
612
|
-
descend_by_popularity:
|
613
|
-
name: Sort by popularity(most popular first)
|
614
621
|
descend_by_master_price:
|
615
622
|
name: Descend by product master price
|
616
623
|
descend_by_name:
|
617
624
|
name: Descend by product name
|
625
|
+
descend_by_popularity:
|
626
|
+
name: Sort by popularity(most popular first)
|
618
627
|
descend_by_updated_at:
|
619
628
|
name: Descend by actualization date
|
620
629
|
in_name:
|
@@ -882,6 +891,7 @@ it:
|
|
882
891
|
use_as_shipping_address: Use as Shipping Address
|
883
892
|
use_billing_address: Use Billing Address
|
884
893
|
use_different_shipping_address: "Altro indirizzo di consegna"
|
894
|
+
use_new_cc: "Use a new card"
|
885
895
|
user: Utente
|
886
896
|
user_account: User Account
|
887
897
|
user_created_successfully: "User created successfully"
|
data/config/locales/jp.yml
CHANGED
@@ -515,6 +515,15 @@ jp:
|
|
515
515
|
none_available: "None Available"
|
516
516
|
not: not
|
517
517
|
note: Note
|
518
|
+
notice_messages:
|
519
|
+
option_type_removed: "Succesfully removed option type."
|
520
|
+
product_cloned: "Product has been cloned"
|
521
|
+
product_deleted: "Product has been deleted"
|
522
|
+
product_not_cloned: "Product could not be cloned"
|
523
|
+
product_not_deleted: "Product could not be deleted"
|
524
|
+
track_me_in_GA: "Track Me in GA"
|
525
|
+
variant_deleted: "Variant has been deleted"
|
526
|
+
variant_not_deleted: "Variant could not be deleted"
|
518
527
|
on_hand: 入荷日
|
519
528
|
operation: Operation
|
520
529
|
option_Values: オプション値
|
@@ -609,12 +618,12 @@ jp:
|
|
609
618
|
name: Ascend by product name
|
610
619
|
ascend_by_updated_at:
|
611
620
|
name: Ascend by actualization date
|
612
|
-
descend_by_popularity:
|
613
|
-
name: Sort by popularity(most popular first)
|
614
621
|
descend_by_master_price:
|
615
622
|
name: Descend by product master price
|
616
623
|
descend_by_name:
|
617
624
|
name: Descend by product name
|
625
|
+
descend_by_popularity:
|
626
|
+
name: Sort by popularity(most popular first)
|
618
627
|
descend_by_updated_at:
|
619
628
|
name: Descend by actualization date
|
620
629
|
in_name:
|
@@ -882,6 +891,7 @@ jp:
|
|
882
891
|
use_as_shipping_address: Use as Shipping Address
|
883
892
|
use_billing_address: Use Billing Address
|
884
893
|
use_different_shipping_address: "Use Different Shipping Address"
|
894
|
+
use_new_cc: "Use a new card"
|
885
895
|
user: ユーザ
|
886
896
|
user_account: ユーザアカウント
|
887
897
|
user_created_successfully: "User created successfully"
|
data/config/locales/mx.yml
CHANGED
@@ -515,6 +515,15 @@ mx:
|
|
515
515
|
none_available: "No hay nada que mostrar"
|
516
516
|
not: No
|
517
517
|
note: Note
|
518
|
+
notice_messages:
|
519
|
+
option_type_removed: "Succesfully removed option type."
|
520
|
+
product_cloned: "Product has been cloned"
|
521
|
+
product_deleted: "Product has been deleted"
|
522
|
+
product_not_cloned: "Product could not be cloned"
|
523
|
+
product_not_deleted: "Product could not be deleted"
|
524
|
+
track_me_in_GA: "Track Me in GA"
|
525
|
+
variant_deleted: "Variant has been deleted"
|
526
|
+
variant_not_deleted: "Variant could not be deleted"
|
518
527
|
on_hand: "Disponible"
|
519
528
|
operation: "Operación"
|
520
529
|
option_Values: "Valores de opción"
|
@@ -609,12 +618,12 @@ mx:
|
|
609
618
|
name: Ascend by product name
|
610
619
|
ascend_by_updated_at:
|
611
620
|
name: Ascend by actualization date
|
612
|
-
descend_by_popularity:
|
613
|
-
name: Sort by popularity(most popular first)
|
614
621
|
descend_by_master_price:
|
615
622
|
name: Descend by product master price
|
616
623
|
descend_by_name:
|
617
624
|
name: Descend by product name
|
625
|
+
descend_by_popularity:
|
626
|
+
name: Sort by popularity(most popular first)
|
618
627
|
descend_by_updated_at:
|
619
628
|
name: Descend by actualization date
|
620
629
|
in_name:
|
@@ -882,6 +891,7 @@ mx:
|
|
882
891
|
use_as_shipping_address: Usar como direccion de envio
|
883
892
|
use_billing_address: "Usar la direccion de facturación"
|
884
893
|
use_different_shipping_address: "Usar una dirección de envío diferente"
|
894
|
+
use_new_cc: "Use a new card"
|
885
895
|
user: Usuario
|
886
896
|
user_account: Cuenta de usuario
|
887
897
|
user_created_successfully: "User created successfully"
|
data/config/locales/nb-NO.yml
CHANGED
@@ -515,6 +515,15 @@ nb-NO:
|
|
515
515
|
none_available: "Ingen tilgjengelig"
|
516
516
|
not: not
|
517
517
|
note: Note
|
518
|
+
notice_messages:
|
519
|
+
option_type_removed: "Succesfully removed option type."
|
520
|
+
product_cloned: "Product has been cloned"
|
521
|
+
product_deleted: "Product has been deleted"
|
522
|
+
product_not_cloned: "Product could not be cloned"
|
523
|
+
product_not_deleted: "Product could not be deleted"
|
524
|
+
track_me_in_GA: "Track Me in GA"
|
525
|
+
variant_deleted: "Variant has been deleted"
|
526
|
+
variant_not_deleted: "Variant could not be deleted"
|
518
527
|
on_hand: "Tilgjengelig"
|
519
528
|
operation: Operasjon
|
520
529
|
option_Values: "Variasjonsverdier"
|
@@ -609,12 +618,12 @@ nb-NO:
|
|
609
618
|
name: Ascend by product name
|
610
619
|
ascend_by_updated_at:
|
611
620
|
name: Ascend by actualization date
|
612
|
-
descend_by_popularity:
|
613
|
-
name: Sort by popularity(most popular first)
|
614
621
|
descend_by_master_price:
|
615
622
|
name: Descend by product master price
|
616
623
|
descend_by_name:
|
617
624
|
name: Descend by product name
|
625
|
+
descend_by_popularity:
|
626
|
+
name: Sort by popularity(most popular first)
|
618
627
|
descend_by_updated_at:
|
619
628
|
name: Descend by actualization date
|
620
629
|
in_name:
|
@@ -882,6 +891,7 @@ nb-NO:
|
|
882
891
|
use_as_shipping_address: "Bruk som leveringsadresse"
|
883
892
|
use_billing_address: "Bruk fakturaadressen"
|
884
893
|
use_different_shipping_address: "Bruk en annen leveringsadresse"
|
894
|
+
use_new_cc: "Use a new card"
|
885
895
|
user: Bruker
|
886
896
|
user_account: Brukerkonto
|
887
897
|
user_created_successfully: "User created successfully"
|
data/config/locales/nl-BE.yml
CHANGED
@@ -515,6 +515,15 @@ nl-BE:
|
|
515
515
|
none_available: "Niet op voorraad"
|
516
516
|
not: not
|
517
517
|
note: Note
|
518
|
+
notice_messages:
|
519
|
+
option_type_removed: "Succesfully removed option type."
|
520
|
+
product_cloned: "Product has been cloned"
|
521
|
+
product_deleted: "Product has been deleted"
|
522
|
+
product_not_cloned: "Product could not be cloned"
|
523
|
+
product_not_deleted: "Product could not be deleted"
|
524
|
+
track_me_in_GA: "Track Me in GA"
|
525
|
+
variant_deleted: "Variant has been deleted"
|
526
|
+
variant_not_deleted: "Variant could not be deleted"
|
518
527
|
on_hand: "Op voorraad"
|
519
528
|
operation: Operatie
|
520
529
|
option_Values: "Waarden Opties"
|
@@ -609,12 +618,12 @@ nl-BE:
|
|
609
618
|
name: Ascend by product name
|
610
619
|
ascend_by_updated_at:
|
611
620
|
name: Ascend by actualization date
|
612
|
-
descend_by_popularity:
|
613
|
-
name: Sort by popularity(most popular first)
|
614
621
|
descend_by_master_price:
|
615
622
|
name: Descend by product master price
|
616
623
|
descend_by_name:
|
617
624
|
name: Descend by product name
|
625
|
+
descend_by_popularity:
|
626
|
+
name: Sort by popularity(most popular first)
|
618
627
|
descend_by_updated_at:
|
619
628
|
name: Descend by actualization date
|
620
629
|
in_name:
|
@@ -882,6 +891,7 @@ nl-BE:
|
|
882
891
|
use_as_shipping_address: "Gebruik als afleveringsadres"
|
883
892
|
use_billing_address: "Gebruik als factuuradres"
|
884
893
|
use_different_shipping_address: "Ander afleveringsadres gebruiken"
|
894
|
+
use_new_cc: "Use a new card"
|
885
895
|
user: Gebruiker
|
886
896
|
user_account: "Account Gebruiker"
|
887
897
|
user_created_successfully: "User created successfully"
|