camaleon_ecommerce 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +37 -0
  5. data/app/assets/javascripts/plugins/ecommerce/admin.js +33 -0
  6. data/app/assets/javascripts/plugins/ecommerce/cart.js +207 -0
  7. data/app/assets/javascripts/plugins/ecommerce/fix_form.js +10 -0
  8. data/app/assets/javascripts/plugins/ecommerce/jquery.creditCardValidator.js +208 -0
  9. data/app/assets/stylesheets/plugins/ecommerce/admin.scss +122 -0
  10. data/app/assets/stylesheets/plugins/ecommerce/front.scss +36 -0
  11. data/app/controllers/plugins/ecommerce/admin/coupons_controller.rb +61 -0
  12. data/app/controllers/plugins/ecommerce/admin/orders_controller.rb +96 -0
  13. data/app/controllers/plugins/ecommerce/admin/payment_methods_controller.rb +90 -0
  14. data/app/controllers/plugins/ecommerce/admin/prices_controller.rb +70 -0
  15. data/app/controllers/plugins/ecommerce/admin/settings_controller.rb +22 -0
  16. data/app/controllers/plugins/ecommerce/admin/shipping_methods_controller.rb +62 -0
  17. data/app/controllers/plugins/ecommerce/admin/tax_rates_controller.rb +61 -0
  18. data/app/controllers/plugins/ecommerce/admin_controller.rb +20 -0
  19. data/app/controllers/plugins/ecommerce/front/checkout_controller.rb +166 -0
  20. data/app/controllers/plugins/ecommerce/front/orders_controller.rb +255 -0
  21. data/app/controllers/plugins/ecommerce/front_controller.rb +18 -0
  22. data/app/helpers/plugins/ecommerce/ecommerce_email_helper.rb +46 -0
  23. data/app/helpers/plugins/ecommerce/ecommerce_functions_helper.rb +49 -0
  24. data/app/helpers/plugins/ecommerce/ecommerce_helper.rb +240 -0
  25. data/app/helpers/plugins/ecommerce/ecommerce_payment_helper.rb +67 -0
  26. data/app/models/plugins/ecommerce/cart.rb +40 -0
  27. data/app/models/plugins/ecommerce/coupon.rb +25 -0
  28. data/app/models/plugins/ecommerce/coupon_decorator.rb +60 -0
  29. data/app/models/plugins/ecommerce/order.rb +65 -0
  30. data/app/models/plugins/ecommerce/order_decorator.rb +54 -0
  31. data/app/models/plugins/ecommerce/order_detail.rb +13 -0
  32. data/app/models/plugins/ecommerce/payment_method.rb +29 -0
  33. data/app/models/plugins/ecommerce/product.rb +14 -0
  34. data/app/models/plugins/ecommerce/shipping_method.rb +26 -0
  35. data/app/models/plugins/ecommerce/tax_rate.rb +18 -0
  36. data/app/views/camaleon_cms/html_mailer/order_received.html.erb +3 -0
  37. data/app/views/camaleon_cms/html_mailer/order_received_admin.html.erb +3 -0
  38. data/app/views/camaleon_cms/html_mailer/recovery_cart.html.erb +4 -0
  39. data/app/views/layouts/plugins/ecommerce/mailer.html.erb +22 -0
  40. data/app/views/plugins/ecommerce/admin/coupons/form.html.erb +73 -0
  41. data/app/views/plugins/ecommerce/admin/coupons/index.html.erb +50 -0
  42. data/app/views/plugins/ecommerce/admin/index.html.erb +2 -0
  43. data/app/views/plugins/ecommerce/admin/orders/form.html.erb +64 -0
  44. data/app/views/plugins/ecommerce/admin/orders/index.html.erb +90 -0
  45. data/app/views/plugins/ecommerce/admin/orders/show.html.erb +173 -0
  46. data/app/views/plugins/ecommerce/admin/payment_methods/form.html.erb +115 -0
  47. data/app/views/plugins/ecommerce/admin/payment_methods/index.html.erb +43 -0
  48. data/app/views/plugins/ecommerce/admin/payment_methods/show.html.erb +70 -0
  49. data/app/views/plugins/ecommerce/admin/prices/form.html.erb +49 -0
  50. data/app/views/plugins/ecommerce/admin/prices/index.html.erb +39 -0
  51. data/app/views/plugins/ecommerce/admin/prices/show.html.erb +19 -0
  52. data/app/views/plugins/ecommerce/admin/products/index.html.erb +114 -0
  53. data/app/views/plugins/ecommerce/admin/settings/index.html.erb +25 -0
  54. data/app/views/plugins/ecommerce/admin/shipping_methods/form.html.erb +39 -0
  55. data/app/views/plugins/ecommerce/admin/shipping_methods/index.html.erb +41 -0
  56. data/app/views/plugins/ecommerce/admin/shipping_methods/show.html.erb +22 -0
  57. data/app/views/plugins/ecommerce/admin/tax_rates/form.html.erb +36 -0
  58. data/app/views/plugins/ecommerce/admin/tax_rates/index.html.erb +41 -0
  59. data/app/views/plugins/ecommerce/front/_post_list_item.html.erb +18 -0
  60. data/app/views/plugins/ecommerce/front/checkout/cart_index.html.erb +59 -0
  61. data/app/views/plugins/ecommerce/front/checkout/index.html.erb +166 -0
  62. data/app/views/plugins/ecommerce/front/index.html.erb +2 -0
  63. data/app/views/plugins/ecommerce/front/list_products.html.erb +34 -0
  64. data/app/views/plugins/ecommerce/front/orders/index.html.erb +46 -0
  65. data/app/views/plugins/ecommerce/front/orders/pay_by_bank_transfer.html.erb +67 -0
  66. data/app/views/plugins/ecommerce/front/orders/pay_by_credit_card.html.erb +131 -0
  67. data/app/views/plugins/ecommerce/front/orders/pay_by_credit_card_authorize_net.erb +150 -0
  68. data/app/views/plugins/ecommerce/front/orders/select_payment.html.erb +70 -0
  69. data/app/views/plugins/ecommerce/front/orders/show.html.erb +76 -0
  70. data/app/views/plugins/ecommerce/front/product.html.erb +105 -0
  71. data/app/views/plugins/ecommerce/layouts/_ecommerce.html.erb +41 -0
  72. data/app/views/plugins/ecommerce/partials/_form_address.html.erb +84 -0
  73. data/app/views/plugins/ecommerce/partials/_table_order_products.html.erb +85 -0
  74. data/config/camaleon_plugin.json +48 -0
  75. data/config/currency.json +154 -0
  76. data/config/currency_en.json +154 -0
  77. data/config/currency_es.json +154 -0
  78. data/config/custom_models.rb +64 -0
  79. data/config/locales/readme.txt +1 -0
  80. data/config/locales/translation.yml +371 -0
  81. data/config/routes.rb +57 -0
  82. data/lib/camaleon_ecommerce.rb +4 -0
  83. data/lib/ecommerce.rb +4 -0
  84. data/lib/ecommerce/engine.rb +6 -0
  85. data/lib/ecommerce/version.rb +3 -0
  86. data/lib/tasks/ecommerce_tasks.rake +4 -0
  87. metadata +185 -0
@@ -0,0 +1,154 @@
1
+ {
2
+ "USD": {
3
+ "symbol": "$",
4
+ "name": "Dólar Americano",
5
+ "symbol_native": "$",
6
+ "decimal_digits": 2,
7
+ "rounding": 0,
8
+ "code": "USD",
9
+ "name_plural": "Dólares estadounidenses"
10
+ },
11
+ "CAD": {
12
+ "symbol": "CA$",
13
+ "name": "Dólar Canadiense",
14
+ "symbol_native": "$",
15
+ "decimal_digits": 2,
16
+ "rounding": 0,
17
+ "code": "CAD",
18
+ "name_plural": "Dólares canadienses"
19
+ },
20
+ "EUR": {
21
+ "symbol": "€",
22
+ "name": "Euro",
23
+ "symbol_native": "€",
24
+ "decimal_digits": 2,
25
+ "rounding": 0,
26
+ "code": "EUR",
27
+ "name_plural": "euros"
28
+ },
29
+ "AUD": {
30
+ "symbol": "AU$",
31
+ "name": "Dólar Australiano",
32
+ "symbol_native": "$",
33
+ "decimal_digits": 2,
34
+ "rounding": 0,
35
+ "code": "AUD",
36
+ "name_plural": "Dólares australianos"
37
+ },
38
+ "GBP": {
39
+ "symbol": "£",
40
+ "name": "Libra Esterlina Británica",
41
+ "symbol_native": "£",
42
+ "decimal_digits": 2,
43
+ "rounding": 0,
44
+ "code": "GBP",
45
+ "name_plural": "Libras esterlinas"
46
+ },
47
+ "CZK": {
48
+ "symbol": "Kč",
49
+ "name": "Corona Checa",
50
+ "symbol_native": "Kč",
51
+ "decimal_digits": 2,
52
+ "rounding": 0,
53
+ "code": "CZK",
54
+ "name_plural": "Coronas República Checa"
55
+ },
56
+ "DKK": {
57
+ "symbol": "Dkr",
58
+ "name": "Corona Danesa",
59
+ "symbol_native": "kr",
60
+ "decimal_digits": 2,
61
+ "rounding": 0,
62
+ "code": "DKK",
63
+ "name_plural": "Coronas danesas"
64
+ },
65
+
66
+ "HKD": {
67
+ "symbol": "HK$",
68
+ "name": "Dólar de Hong Kong",
69
+ "symbol_native": "$",
70
+ "decimal_digits": 2,
71
+ "rounding": 0,
72
+ "code": "HKD",
73
+ "name_plural": "Dólares de Hong Kong"
74
+ },
75
+
76
+ "HUF": {
77
+ "symbol": "Ft",
78
+ "name": "Florín Húngaro",
79
+ "symbol_native": "Ft",
80
+ "decimal_digits": 0,
81
+ "rounding": 0,
82
+ "code": "HUF",
83
+ "name_plural": "Florín húngaro"
84
+ },
85
+
86
+ "JPY": {
87
+ "symbol": "¥",
88
+ "name": "Yen Japonés",
89
+ "symbol_native": "¥",
90
+ "decimal_digits": 0,
91
+ "rounding": 0,
92
+ "code": "JPY",
93
+ "name_plural": "Yen Japonés"
94
+ },
95
+
96
+ "NOK": {
97
+ "symbol": "Nkr",
98
+ "name": "Corona Noruega",
99
+ "symbol_native": "kr",
100
+ "decimal_digits": 2,
101
+ "rounding": 0,
102
+ "code": "NOK",
103
+ "name_plural": "Coronas noruegas"
104
+ },
105
+
106
+ "NZD": {
107
+ "symbol": "NZ$",
108
+ "name": "Dólar de Nueva Zelanda",
109
+ "symbol_native": "$",
110
+ "decimal_digits": 2,
111
+ "rounding": 0,
112
+ "code": "NZD",
113
+ "name_plural": "Dólares de Nueva Zelanda"
114
+ },
115
+
116
+ "PLN": {
117
+ "symbol": "zł",
118
+ "name": "Zloty Polaco",
119
+ "symbol_native": "zł",
120
+ "decimal_digits": 2,
121
+ "rounding": 0,
122
+ "code": "PLN",
123
+ "name_plural": "Zlotys Polacos"
124
+ },
125
+
126
+ "SEK": {
127
+ "symbol": "Skr",
128
+ "name": "Corona Sueca",
129
+ "symbol_native": "kr",
130
+ "decimal_digits": 2,
131
+ "rounding": 0,
132
+ "code": "SEK",
133
+ "name_plural": "Coronas Suecas"
134
+ },
135
+ "SGD": {
136
+ "symbol": "S$",
137
+ "name": "Dólar de Singapur",
138
+ "symbol_native": "$",
139
+ "decimal_digits": 2,
140
+ "rounding": 0,
141
+ "code": "SGD",
142
+ "name_plural": "Dólares de Singapur"
143
+ },
144
+ "CHF": {
145
+ "symbol": "CHF",
146
+ "name": "Franco Suizo",
147
+ "symbol_native": "CHF",
148
+ "decimal_digits": 2,
149
+ "rounding": 0.05,
150
+ "code": "CHF",
151
+ "name_plural": "Francos Suizos"
152
+ }
153
+
154
+ }
@@ -0,0 +1,64 @@
1
+ CamaleonCms::Site.class_eval do
2
+ #attr_accessible :my_id
3
+ has_many :carts, :class_name => "Plugins::Ecommerce::Cart", foreign_key: :parent_id, dependent: :destroy
4
+ has_many :orders, :class_name => "Plugins::Ecommerce::Order", foreign_key: :parent_id, dependent: :destroy
5
+ has_many :payment_methods, :class_name => "Plugins::Ecommerce::PaymentMethod", foreign_key: :parent_id, dependent: :destroy
6
+ has_many :shipping_methods, :class_name => "Plugins::Ecommerce::ShippingMethod", foreign_key: :parent_id, dependent: :destroy
7
+ has_many :coupons, :class_name => "Plugins::Ecommerce::Coupon", foreign_key: :parent_id, dependent: :destroy
8
+ has_many :tax_rates, :class_name => "Plugins::Ecommerce::TaxRate", foreign_key: :parent_id, dependent: :destroy
9
+ end
10
+
11
+ CamaleonCms::SiteDecorator.class_eval do
12
+ def current_unit
13
+ @current_unit ||= h.e_get_currency_units[object.meta[:_setting_ecommerce][:current_unit]]['symbol'] rescue '$'
14
+ end
15
+ def currency_code
16
+ @currency_code ||= h.e_get_currency_units[object.meta[:_setting_ecommerce][:current_unit]]['code'] rescue 'USD'
17
+ end
18
+ def current_weight
19
+ @current_weight ||= h.e_get_currency_weight[object.meta[:_setting_ecommerce][:current_weight]]['code'] rescue 'kg'
20
+ end
21
+ end
22
+
23
+ CamaleonCms::PostDecorator.class_eval do
24
+ def the_sku
25
+ object.get_field_value('ecommerce_sku').to_s
26
+ end
27
+ def the_price
28
+ "#{h.current_site.current_unit} #{object.get_field_value('ecommerce_price').to_f}"
29
+ end
30
+ def the_weight
31
+ "#{h.current_site.current_weight} #{object.get_field_value('ecommerce_weight').to_f}"
32
+ end
33
+ def the_qty
34
+ object.get_field_value('ecommerce_qty') || 0
35
+ end
36
+ def the_photos
37
+ object.get_field_values('ecommerce_photos') || []
38
+ end
39
+ def in_stock?
40
+ object.get_field_value('ecommerce_stock').to_s.to_bool
41
+ end
42
+ def the_stock_status
43
+ if in_stock? && the_qty_real.to_i > 0
44
+ "<span class='label label-success'>#{I18n.t('plugin.ecommerce.product.in_stock')}</span>"
45
+ else
46
+ "<span class='label label-danger'>#{I18n.t('plugin.ecommerce.product.not_in_tock')}</span>"
47
+ end
48
+ end
49
+
50
+ def featured?
51
+ object.get_field_value('ecommerce_featured').to_s.to_bool
52
+ end
53
+ def the_featured_status
54
+ if featured?
55
+ "<span class='label label-primary'>#{I18n.t('plugin.ecommerce.product.featured')}</span>"
56
+ else
57
+ ""
58
+ end
59
+ end
60
+
61
+ def the_qty_real
62
+ object.get_field_value('ecommerce_qty') || 0
63
+ end
64
+ end
@@ -0,0 +1 @@
1
+ Here all your plugin locales
@@ -0,0 +1,371 @@
1
+ en:
2
+ plugin:
3
+ ecommerce:
4
+ active: 'Active'
5
+ add_shipping_methods: 'Add Shipping Method'
6
+ not_active: 'Not Active'
7
+ accepted: 'Accepted'
8
+ coupons: 'Coupons'
9
+ e_commerce: 'E-Commerce'
10
+ e_commerce_settings: 'E-commerce Settings'
11
+ e_mail_address: 'E-Mail Address'
12
+ edit_tax_rate: 'Edit Tax Rate'
13
+ edit_shipping_methods: 'Edit Shipping Method'
14
+ edit_price: 'Edit Price'
15
+ edit_payment_methods: 'Edit Payment Methods'
16
+ edit_coupon: 'Edit Coupon'
17
+ edit_order: 'Edit Order'
18
+ all_products: 'All Products'
19
+ add_new: 'Add New'
20
+ add_tax_rate: 'Add Tax Rate'
21
+ add_shipping_methods: 'Add Shipping Method'
22
+ add_price: 'Add Price'
23
+ add_coupons: 'Add Coupons'
24
+ add_payment_method: 'Add Payment Method'
25
+ billing_address: 'Billing Address'
26
+ by_bank_transfer: 'By bank transfer'
27
+ by_paypal: 'By Paypal'
28
+ by_credit_card: 'By credit card (with paypal)'
29
+ by_authorize_net: 'By credit card (Authorize.net)'
30
+ details_shipping_methods: 'Shipping Method Details'
31
+ details_payment_methods: 'Payment Methods Details'
32
+ details_order: 'Details Order'
33
+ details_user: 'User Details'
34
+ form_tax_rate: 'Tax Rate Form'
35
+ form_shipping_methods: 'Shipping Method Form'
36
+ form_price: 'Price Form'
37
+ form_payment_methods: 'Payment Methods Form'
38
+ form_coupon: 'Coupon Form'
39
+ form_settings: 'Settings Form'
40
+ orders: 'Orders'
41
+ order_received: 'Order Received'
42
+ order_accepted: 'Order Accepted'
43
+ order_shipped: 'Order Shipped'
44
+ payment_methods: 'Payment Methods'
45
+ info: 'Information'
46
+ list_orders: 'List Orders'
47
+ list_tax_rate: 'Tax Rate List'
48
+ list_shipping_methods: 'Shipping Method List'
49
+ shipping_methods: 'Shipping Methods'
50
+ shipping_prices: 'Shipping Prices'
51
+ list_price: 'Price List'
52
+ list_payment_methods: 'Payment Methods List'
53
+ list_coupons: 'Coupons List'
54
+ mark_shipped: 'Mark as Shipped'
55
+ message:
56
+ consignment_number: 'Use {{consignment_number}} to insert the consignment number.'
57
+ error_paypal_values: 'Error Paypal Values'
58
+ not_shipped: 'Not Shipped'
59
+ not_shipped_assigned: 'Not Shipped Assigned'
60
+ order: 'Order %{status}'
61
+ accepted: 'Accepted'
62
+ shipped: 'Shipped'
63
+ updated: 'Updated'
64
+ closed: 'Closed'
65
+ modal_close_order: 'Are you sure to close this order?'
66
+ buttons:
67
+ close_order: 'Close order'
68
+ method_paypal: 'Method by Paypal'
69
+ method_credit_card: 'Method by Credit Card'
70
+ method_bank_transfer: 'Method Bank Transfer'
71
+ method_shipped: 'Method Shipped'
72
+ method_authorize_net: 'Method by Authorize.net'
73
+ new: 'New'
74
+ new_tax_rate: 'New Tax Rate'
75
+ new_shipping_methods: 'New Shipping Method'
76
+ new_payment_methods: 'New Payment Methods'
77
+ new_coupon: 'New Coupon'
78
+ options_payment_methods: 'Payment Options'
79
+ payments: 'Payments'
80
+ phone_number: 'Phone Number'
81
+ product:
82
+ featured: 'Featured'
83
+ item: 'Item'
84
+ photo: "Photos of product"
85
+ box: "What's in the box"
86
+ sku: "SKU"
87
+ attrs: "Attributes"
88
+ photos: "Photos"
89
+ price: "Price"
90
+ cost: "Cost"
91
+ tax: "Tax rate"
92
+ weight: "Weight"
93
+ stock_status: 'Stock Status'
94
+ stock: "Stock control?"
95
+ qty: "Quantity"
96
+ in_stock: 'In Stock'
97
+ not_in_tock: 'Not In Stock'
98
+ total_excluding_tax: 'Total (excluding Tax)'
99
+ products: 'Products'
100
+ shipping_address: 'Shipping Address'
101
+ shipping_methods: 'Shipping Methods'
102
+ shipped_date: 'Shipped Date'
103
+ search_order_number: 'Search for order number'
104
+ select:
105
+ received: 'Received'
106
+ unpaid: 'Unpaid'
107
+ accepted: 'Accepted'
108
+ shipped: 'Shipped'
109
+ closed: 'Closed'
110
+ canceled: 'Canceled'
111
+ kilogram: 'kilogram'
112
+ pound: 'pound'
113
+ dram: 'dram'
114
+ grain: 'grain'
115
+ gram: 'gram'
116
+ hundredweight: 'hundredweight'
117
+ milligram: 'milligram'
118
+ ounce: 'ounce'
119
+ tonne: 'tonne'
120
+ table:
121
+ address: 'Address'
122
+ actions: 'Actions'
123
+ amount: 'Amount'
124
+ allowed_applications: 'Allowed applications'
125
+ city: 'City'
126
+ code: 'Code'
127
+ country: 'Country'
128
+ currency_unit: 'Currency Unit'
129
+ currency_weight: 'Currency Weight'
130
+ customer: 'Customer'
131
+ customer_info: 'Customer Info'
132
+ description: 'Description'
133
+ details: 'Details'
134
+ discount: 'Discount'
135
+ discount_type: 'Discount type'
136
+ email: 'Email'
137
+ expiration_date: 'Expiration date'
138
+ expired: 'Expired'
139
+ firstname: 'Firstname'
140
+ id: 'ID'
141
+ lastname: 'Lastname'
142
+ login: 'Login'
143
+ login_id: 'Login Id'
144
+ max_weight: 'Max Weight'
145
+ min_weight: 'Min Weight'
146
+ min_cart_total: 'Min cart total'
147
+ name: 'Name'
148
+ not_paid: 'Not Paid'
149
+ method: 'Method'
150
+ number_account_bank: 'Number Account Bank'
151
+ phone: 'Phone'
152
+ paid: 'Paid?'
153
+ password: 'Password'
154
+ payment_method: 'Payment Method'
155
+ percent: 'Percent'
156
+ money: 'Money'
157
+ free_shipping: 'Free Shipping'
158
+ products: 'Products'
159
+ rate: 'Rate'
160
+ received_time: 'Received Time'
161
+ sandbox: 'Sandbox'
162
+ shipping: 'Shipping'
163
+ signature: 'Signature'
164
+ status: 'Status'
165
+ slug: 'Slug'
166
+ sub_total: 'Subtotal'
167
+ state: 'State'
168
+ total: 'Total'
169
+ url_tracking: 'URL Tracking'
170
+ username_login: 'Username / Login'
171
+ used_applications: 'Used applications'
172
+ code_zip: 'Code Zip'
173
+ method_type: 'Method type'
174
+ transaction_key: 'Transaction key'
175
+ tax_rates: 'Tax Rates'
176
+ add_to_cart: 'Add to cart'
177
+ msg:
178
+ added_product_in_cart: 'Added product successfully in Cart.'
179
+ mail:
180
+ order_received:
181
+ welcome: "Hi"
182
+ thanks: "Thank you for your purchase."
183
+ reference: "For your reference, your order number is:"
184
+ recovery_cart:
185
+ body: "We noticed that you might be stuck."
186
+ reference: "For your reference, your order number is:"
187
+ email:
188
+ order_received:
189
+ subject: "Thank you for purchasing"
190
+ recovery_cart:
191
+ subject: "We noticed that you might be stuck"
192
+ order_received_admin:
193
+ subject: "New purchase"
194
+ es:
195
+ plugin:
196
+ ecommerce:
197
+ accepted: 'Aceptado'
198
+ active: 'Activo'
199
+ add_shipping_methods: 'Agregar Método de Envío'
200
+ not_active: 'No Activo'
201
+ coupons: 'Cupones'
202
+ e_commerce: 'Comercio Electrónico'
203
+ e_commerce_settings: 'Ajustes Comercio Electrónico'
204
+ e_mail_address: 'Dirección Correo Electrónico'
205
+ edit_tax_rate: 'Editar Tasa de Impuesto'
206
+ edit_shipping_methods: 'Editar Método de Envío'
207
+ edit_price: 'Editar Precio'
208
+ edit_payment_methods: 'Editar Método de Pago'
209
+ edit_coupon: 'Editar Cupón'
210
+ edit_order: 'Editar Pedido'
211
+ all_products: 'Todos los Productos'
212
+ add_new: 'Agregar Nuevo'
213
+ add_tax_rate: 'Agregar Tasa de Impuesto'
214
+ add_shipping_methods: 'Agregar Método de Envío'
215
+ add_price: 'Agregar Precio'
216
+ add_coupons: 'Agregar Cupones'
217
+ add_payment_method: 'Agregar Método de Pago'
218
+ billing_address: 'Dirección de facturación'
219
+ by_bank_transfer: 'Por Transferencia Bancaria'
220
+ by_paypal: 'Por Paypal'
221
+ by_credit_card: 'Tarjeta Crédito (PayPal)'
222
+ by_authorize_net: 'Tarjeta Crédito (Authorize.net)'
223
+ details_shipping_methods: 'Detalle Método de Envío'
224
+ details_payment_methods: 'Detalle Método de Pago'
225
+ details_order: 'Detalle Pedido'
226
+ details_user: 'Detalle Usuario'
227
+ form_tax_rate: 'Formulario Tasa de Impuesto'
228
+ form_shipping_methods: 'Formulario Método de Envío'
229
+ form_price: 'Formulario Precio'
230
+ form_payment_methods: 'Formulario Método de Pago'
231
+ form_coupon: 'Formulario Cupón'
232
+ form_settings: 'Formulario Ajustes'
233
+ orders: 'Pedidos'
234
+ order_received: 'Pedido Recibida'
235
+ order_accepted: 'Pedido Aceptado'
236
+ order_shipped: 'Solicitar Envio'
237
+ payment_methods: 'Métodos de Pago'
238
+ info: 'Información'
239
+ list_orders: 'Lista de Pedidos'
240
+ list_tax_rate: 'Lista Tasas de Impuestos'
241
+ list_shipping_methods: 'Lista Métodos de Envío '
242
+ list_price: 'Lista de Precio'
243
+ list_payment_methods: 'Lista Métodos de Pago'
244
+ list_coupons: 'Lista Cupones'
245
+ mark_Shipped: 'Marcar como enviado'
246
+ message:
247
+ consignment_number: 'Use {{numero_envio}} para insertar el número de envío.'
248
+ error_paypal_values: 'Error Valores Paypal'
249
+ not_shipped: 'No Enviado'
250
+ not_shipped_assigned: 'Envío no asignado'
251
+ order: 'Pedido %{status}'
252
+ accepted: 'Aceptado'
253
+ shipped: 'Enviado'
254
+ updated: 'Actualizado'
255
+ closed: 'Cerrado'
256
+ modal_close_order: '¿Estás seguro de que quieres cerrar este pedido?'
257
+ buttons:
258
+ close_order: 'Cerrar pedido'
259
+ method_paypal: 'Método por Paypal'
260
+ method_credit_card: 'Método por Tarjeta de Credito'
261
+ method_bank_transfer: 'Método Transferencia Bancaria'
262
+ method_shipped: 'Método de Envío'
263
+ method_authorize_net: 'Método por Authorize.net'
264
+ new: 'Nuevo'
265
+ new_tax_rate: 'Nueva Tasa de Impuesto'
266
+ new_shipping_methods: 'Nuevo Método de Envío'
267
+ new_price: 'Nuevo Precio'
268
+ new_payment_methods: 'Nuevo Método de Pago'
269
+ new_coupon: 'Nuevo Cupón'
270
+ options_payment_methods: 'Opciones de Pago'
271
+ payments: 'Pagos'
272
+ phone_number: 'Número Telefónico'
273
+ product:
274
+ featured: 'Destacado'
275
+ item: 'Artículo'
276
+ price: "Precio"
277
+ photo: "Fotos del producto"
278
+ box: "Que contiene la caja"
279
+ sku: "SKU"
280
+ attrs: "Atributos"
281
+ photos: "Fotos"
282
+ cost: "Costo"
283
+ tax: "Tasa de impuesto"
284
+ weight: "Peso"
285
+ stock_tatus: 'Cantidad de Productos'
286
+ stock: "Control de Cantidad de Productos?"
287
+ qty: "Cantidad"
288
+ in_stock: 'Disponible'
289
+ not_in_tock: 'No Disponible'
290
+ total_excluding_tax: 'Total (impuestos excluidos)'
291
+ products: 'Productos'
292
+ shipping_address: 'Dirección de Envío'
293
+ shipping_methods: 'Métodos de Envío'
294
+ shipped_date: 'Fecha de Envío'
295
+ search_order_number: 'Buscar número de pedido'
296
+ select:
297
+ received: 'Recibido'
298
+ unpaid: 'Sin Pagar'
299
+ accepted: 'Aceptado'
300
+ shipped: 'Enviado'
301
+ closed: 'Cerrado'
302
+ canceled: 'Cancelado'
303
+ kilogram: 'kilogramo'
304
+ pound: 'libra'
305
+ dram: 'dracma'
306
+ grain: 'grano'
307
+ gram: 'gramo'
308
+ hundredweight: 'quintal'
309
+ milligram: 'miligramo'
310
+ ounce: 'onza'
311
+ tonne: 'tonelada'
312
+ table:
313
+ address: 'Dirección'
314
+ actions: 'Acciones'
315
+ amount: 'Cantidad'
316
+ allowed_applications: 'Aplicaciones permitidas'
317
+ city: 'Ciudad'
318
+ code: 'CÓDIGO'
319
+ country: 'País'
320
+ currency_unit: 'Unidad de Moneda'
321
+ currency_weight: 'Unidad de Peso'
322
+ customer: 'Cliente'
323
+ customer_info: 'Información del cliente'
324
+ description: 'Descripción'
325
+ details: 'Detalle'
326
+ discount: 'Descuento'
327
+ discount_type: 'Tipo de Descuento'
328
+ email: 'Correo Electrónico'
329
+ expiration_date: 'Fecha de expiración'
330
+ expired: 'Expirado'
331
+ firstname: 'Nombre'
332
+ id: 'ID'
333
+ lastname: 'Apellido'
334
+ login: 'Inicio Sesión'
335
+ login_id: 'Identificar de inicio'
336
+ max_weight: 'Peso Máximo'
337
+ min_weight: 'Peso Mínimo'
338
+ min_cart_total: 'Compra total mínima'
339
+ method: 'Método'
340
+ name: 'Nombre'
341
+ not_paid: 'No pagado'
342
+ number_account_bank: 'Número Cuenta Bancaria'
343
+ password: 'Contraseña'
344
+ paid: 'A cargo?'
345
+ payment_method: 'Forma de Pago'
346
+ percent: 'Porcentaje'
347
+ money: 'Dinero'
348
+ free_shipping: 'Envío Gratis'
349
+ phone: 'Teléfono'
350
+ products: 'Productos'
351
+ rate: 'Tarifa'
352
+ received_time: 'Tiempo Recibido'
353
+ sandbox: 'Cuentas de Prueba'
354
+ shipping: 'Envío'
355
+ signature: 'Firma'
356
+ status: 'Estado'
357
+ slug: 'Código'
358
+ sub_total: 'Sub Total'
359
+ state: 'Estado'
360
+ total: 'Total'
361
+ url_tracking: 'URL de seguimiento'
362
+ username_login: 'Nombre Usuario / Inicio Sesión'
363
+ used_applications: 'Aplicaciones Usadas'
364
+ code_zip: 'Código Postal'
365
+ method_type: 'Tipo de metodo'
366
+ transaction_key: 'Clave de transacción'
367
+ tax_rates: 'Tasas de Impuesto'
368
+ add_to_cart: 'Añadir al carro'
369
+ msg:
370
+ added_product_in_cart: 'Producto añadido al carro correctamente.'
371
+