camaleon_ecommerce 0.0.4 → 1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (83) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/plugins/ecommerce/admin.js +0 -33
  3. data/app/assets/javascripts/plugins/ecommerce/cart.js +83 -200
  4. data/app/assets/javascripts/plugins/ecommerce/fix_form.js +1 -4
  5. data/app/assets/stylesheets/plugins/ecommerce/checkout.css.scss +46 -0
  6. data/app/assets/stylesheets/plugins/ecommerce/front.scss +2 -30
  7. data/app/controllers/plugins/ecommerce/admin/coupons_controller.rb +2 -2
  8. data/app/controllers/plugins/ecommerce/admin/orders_controller.rb +45 -34
  9. data/app/controllers/plugins/ecommerce/admin/payment_methods_controller.rb +4 -3
  10. data/app/controllers/plugins/ecommerce/admin/prices_controller.rb +5 -5
  11. data/app/controllers/plugins/ecommerce/admin/settings_controller.rb +0 -2
  12. data/app/controllers/plugins/ecommerce/admin/shipping_methods_controller.rb +3 -3
  13. data/app/controllers/plugins/ecommerce/admin/tax_rates_controller.rb +2 -2
  14. data/app/controllers/plugins/ecommerce/admin_controller.rb +1 -1
  15. data/app/controllers/plugins/ecommerce/front/checkout_controller.rb +162 -110
  16. data/app/controllers/plugins/ecommerce/front/orders_controller.rb +7 -234
  17. data/app/controllers/plugins/ecommerce/front_controller.rb +42 -3
  18. data/app/decorators/plugins/ecommerce/cart_decorator.rb +27 -0
  19. data/app/{models → decorators}/plugins/ecommerce/coupon_decorator.rb +1 -1
  20. data/app/decorators/plugins/ecommerce/order_decorator.rb +22 -0
  21. data/app/decorators/plugins/ecommerce/product_decorator.rb +88 -0
  22. data/app/decorators/plugins/ecommerce/product_item_decorator.rb +18 -0
  23. data/app/helpers/plugins/ecommerce/ecommerce_email_helper.rb +91 -28
  24. data/app/helpers/plugins/ecommerce/ecommerce_helper.rb +30 -136
  25. data/app/helpers/plugins/ecommerce/ecommerce_payment_helper.rb +14 -20
  26. data/app/models/plugins/ecommerce/cart.rb +139 -15
  27. data/app/models/plugins/ecommerce/coupon.rb +33 -7
  28. data/app/models/plugins/ecommerce/order.rb +47 -31
  29. data/app/models/plugins/ecommerce/{product.rb → product_item.rb} +11 -5
  30. data/app/views/camaleon_cms/html_mailer/order_canceled.html.erb +2 -0
  31. data/app/views/camaleon_cms/html_mailer/order_confirmed.html.erb +2 -0
  32. data/app/views/camaleon_cms/html_mailer/order_received_admin.html.erb +1 -1
  33. data/app/views/camaleon_cms/html_mailer/order_shipped.html.erb +2 -0
  34. data/app/views/plugins/ecommerce/admin/coupons/form.html.erb +10 -10
  35. data/app/views/plugins/ecommerce/admin/coupons/index.html.erb +1 -1
  36. data/app/views/plugins/ecommerce/admin/orders/form.html.erb +5 -49
  37. data/app/views/plugins/ecommerce/admin/orders/index.html.erb +140 -80
  38. data/app/views/plugins/ecommerce/admin/orders/show.html.erb +7 -169
  39. data/app/views/plugins/ecommerce/admin/payment_methods/form.html.erb +30 -3
  40. data/app/views/plugins/ecommerce/admin/payment_methods/index.html.erb +1 -3
  41. data/app/views/plugins/ecommerce/admin/prices/index.html.erb +0 -2
  42. data/app/views/plugins/ecommerce/admin/prices/show.html.erb +0 -2
  43. data/app/views/plugins/ecommerce/admin/products/index.html.erb +1 -1
  44. data/app/views/plugins/ecommerce/admin/settings/index.html.erb +0 -1
  45. data/app/views/plugins/ecommerce/admin/tax_rates/form.html.erb +1 -1
  46. data/app/views/plugins/ecommerce/front/checkout/cart_index.html.erb +46 -57
  47. data/app/views/plugins/ecommerce/front/checkout/index.html.erb +34 -158
  48. data/app/views/plugins/ecommerce/front/login.html.erb +67 -0
  49. data/app/views/plugins/ecommerce/front/orders/index.html.erb +36 -44
  50. data/app/views/plugins/ecommerce/front/orders/show.html.erb +121 -67
  51. data/app/views/plugins/ecommerce/partials/_cart_widget.html.erb +38 -0
  52. data/app/views/plugins/ecommerce/partials/checkout/_details.html.erb +35 -0
  53. data/app/views/plugins/ecommerce/partials/checkout/_payments.html.erb +123 -0
  54. data/app/views/plugins/ecommerce/partials/checkout/_products_detail.html.erb +49 -0
  55. data/app/views/plugins/ecommerce/partials/checkout/_user_info.html.erb +93 -0
  56. data/app/views/post_types/commerce.html.erb +22 -0
  57. data/app/views/post_types/commerce/_product_widget.html.erb +13 -0
  58. data/app/views/post_types/commerce/category.html.erb +23 -0
  59. data/app/views/post_types/commerce/single.html.erb +91 -0
  60. data/config/custom_models.rb +24 -57
  61. data/config/locales/en.yml +192 -0
  62. data/config/locales/es.yml +405 -0
  63. data/config/routes.rb +26 -16
  64. data/db/migrate/20160502221327_add_cama_ecommerce_structure_plugin.rb +12 -0
  65. data/db/migrate/20160504162311_move_featured_attribute_of_products.rb +15 -0
  66. data/db/migrate/20160527184747_add_new_cart_structure.rb +21 -0
  67. data/lib/ecommerce/version.rb +1 -1
  68. metadata +42 -19
  69. data/app/models/plugins/ecommerce/order_decorator.rb +0 -54
  70. data/app/views/layouts/plugins/ecommerce/mailer.html.erb +0 -22
  71. data/app/views/plugins/ecommerce/admin/index.html.erb +0 -2
  72. data/app/views/plugins/ecommerce/front/_post_list_item.html.erb +0 -18
  73. data/app/views/plugins/ecommerce/front/index.html.erb +0 -2
  74. data/app/views/plugins/ecommerce/front/list_products.html.erb +0 -34
  75. data/app/views/plugins/ecommerce/front/orders/pay_by_bank_transfer.html.erb +0 -67
  76. data/app/views/plugins/ecommerce/front/orders/pay_by_credit_card.html.erb +0 -131
  77. data/app/views/plugins/ecommerce/front/orders/pay_by_credit_card_authorize_net.erb +0 -150
  78. data/app/views/plugins/ecommerce/front/orders/select_payment.html.erb +0 -70
  79. data/app/views/plugins/ecommerce/front/product.html.erb +0 -105
  80. data/app/views/plugins/ecommerce/layouts/_ecommerce.html.erb +0 -41
  81. data/app/views/plugins/ecommerce/partials/_form_address.html.erb +0 -84
  82. data/app/views/plugins/ecommerce/partials/_table_order_products.html.erb +0 -85
  83. data/config/locales/translation.yml +0 -371
@@ -1,41 +0,0 @@
1
- <div class="container">
2
-
3
- <div class="row" style="min-height: 64px">
4
- <div class="col-md-8">
5
- <ol class="breadcrumb" style="margin: 0;">
6
- <% @ecommerce_bredcrumb.each_with_index do |m, index| %>
7
- <% if m[1].present? %>
8
- <li class="<%= "active" if @ecommerce_bredcrumb.size == index+1 %>"><a href="<%= m[1] %>"><%= m[0] %></a></li>
9
- <% else %>
10
- <li class="<%= "active" if @ecommerce_bredcrumb.size == index+1 %>"><span><%= m[0] %></span></li>
11
- <% end %>
12
- <% end %>
13
- </ol>
14
- </div>
15
-
16
- <div class="col-md-4">
17
- <% if signin? %>
18
- <div class="well shopping_cart_box">
19
- <% @cart = current_site.carts.set_user(current_user).first_or_create(name: "Cart by #{current_user.id}") %>
20
- <h5>Shopping Cart</h5>
21
- <p>(<%= @cart.the_items_count %>) Items, Total: <%= current_site.current_unit %> <%= @cart.the_amount_total %></p>
22
- <span>
23
- <a href="<%= @ecommerce_post_type.the_url %>" class="btn btn-default btn-xs">All Products</a>
24
- <% if( @cart.the_items_count.to_i > 0 ) %>
25
- <a href="<%= plugins_ecommerce_checkout_cart_path %>" class="btn btn-warning btn-xs">Purchase</a>
26
- <% end %>
27
- <a href="<%= plugins_ecommerce_orders_path %>" class="btn btn-success btn-xs">My Orders</a>
28
- </span>
29
- </div>
30
- <% else %>
31
- <div class=" text-right">
32
- <a href="<%= @ecommerce_post_type.the_url %>" class="btn btn-default">All Products</a>
33
- </div>
34
- <% end %>
35
- </div>
36
- </div>
37
- <div class="clearfix" >
38
- <%= render partial: "/camaleon_cms/flash_messages.html.erb" %>
39
- <%= yield %>
40
- </div>
41
- </div>
@@ -1,84 +0,0 @@
1
- <%
2
- billing_address ||= {}
3
- shipping_address ||= {}
4
- %>
5
- <div id="billing_address" class="col-md-6">
6
- <h3><%= t('plugin.ecommerce.billing_address') %></h3>
7
-
8
- <div class="form-group">
9
- <label for=""><%= t('plugin.ecommerce.table.firstname') %></label>
10
- <%= text_field_tag 'order[billing_address][first_name]', billing_address[:first_name], class: 'form-control required' %>
11
-
12
- </div>
13
- <div class="form-group">
14
- <label for=""><%= t('plugin.ecommerce.table.lastname') %></label>
15
- <%= text_field_tag 'order[billing_address][last_name]',billing_address[:last_name], class: 'form-control required' %>
16
- </div>
17
- <div class="form-group">
18
- <label for=""><%= t('plugin.ecommerce.table.address') %></label>
19
- <%= text_field_tag 'order[billing_address][address1]',billing_address[:address1], class: 'form-control required' %>
20
- </div>
21
- <div class="form-group">
22
- <label for=""><%= t('plugin.ecommerce.table.address') %> 2</label>
23
- <%= text_field_tag 'order[billing_address][address2]',billing_address[:address2], class: 'form-control' %>
24
- </div>
25
- <div class="form-group">
26
- <label for=""><%= t('plugin.ecommerce.table.city') %></label>
27
- <%= text_field_tag 'order[billing_address][city]',billing_address[:city], class: 'form-control required' %>
28
- </div>
29
- <div class="form-group">
30
- <label for=""><%= t('plugin.ecommerce.table.country') %></label>
31
- <%= country_select :billing_address, :country, {locale: I18n.locale.to_s, iso_codes: true, selected: billing_address[:country]}, { :name => 'order[billing_address][country]', class: 'form-control' } %>
32
- </div>
33
- <div class="form-group">
34
- <label for=""><%= t('plugin.ecommerce.table.state') %></label>
35
- <%= text_field_tag 'order[billing_address][state]',billing_address[:state], class: 'form-control' %>
36
- </div>
37
- <div class="form-group">
38
- <label for=""><%= t('plugin.ecommerce.table.code_zip') %></label>
39
- <%= text_field_tag 'order[billing_address][zip]',billing_address[:zip], class: 'form-control' %>
40
- </div>
41
-
42
- </div>
43
-
44
- <div id="shipping_address" class="col-md-6">
45
- <h3>
46
- <%= t('plugin.ecommerce.shipping_address') %>
47
- <a href="#" id="ec_copy">copy from billing</a>
48
- </h3>
49
-
50
- <div class="form-group">
51
- <label for=""><%= t('plugin.ecommerce.table.firstname') %></label>
52
- <%= text_field_tag 'order[shipping_address][first_name]', shipping_address[:first_name], class: 'form-control required' %>
53
-
54
- </div>
55
- <div class="form-group">
56
- <label for=""><%= t('plugin.ecommerce.table.lastname') %></label>
57
- <%= text_field_tag 'order[shipping_address][last_name]', shipping_address[:last_name], class: 'form-control required' %>
58
- </div>
59
- <div class="form-group">
60
- <label for=""><%= t('plugin.ecommerce.table.address') %></label>
61
- <%= text_field_tag 'order[shipping_address][address1]', shipping_address[:address1], class: 'form-control required' %>
62
- </div>
63
- <div class="form-group">
64
- <label for=""><%= t('plugin.ecommerce.table.address') %> 2</label>
65
- <%= text_field_tag 'order[shipping_address][address2]', shipping_address[:address2], class: 'form-control' %>
66
- </div>
67
- <div class="form-group">
68
- <label for=""><%= t('plugin.ecommerce.table.city') %></label>
69
- <%= text_field_tag 'order[shipping_address][city]', shipping_address[:city], class: 'form-control required' %>
70
- </div>
71
- <div class="form-group">
72
- <label for=""><%= t('plugin.ecommerce.table.country') %></label>
73
- <%= country_select :shipping_address, :country, {locale: I18n.locale.to_s, iso_codes: true, selected: billing_address[:country]}, { :name => 'order[shipping_address][country]', class: 'form-control' } %>
74
- </div>
75
- <div class="form-group">
76
- <label for=""><%= t('plugin.ecommerce.table.state') %></label>
77
- <%= text_field_tag 'order[shipping_address][state]', shipping_address[:state], class: 'form-control' %>
78
- </div>
79
- <div class="form-group">
80
- <label for=""><%= t('plugin.ecommerce.table.code_zip') %></label>
81
- <%= text_field_tag 'order[shipping_address][zip]', shipping_address[:zip], class: 'form-control' %>
82
- </div>
83
-
84
- </div>
@@ -1,85 +0,0 @@
1
- <table class="table table-bordered">
2
- <tbody>
3
- <tr>
4
- <th id="quantity_col"><%= t('plugin.ecommerce.product.qty') %></th>
5
- <th id="item_col"><%= t('plugin.ecommerce.product.item') %></th>
6
- <th id="price_col"><%= t('plugin.ecommerce.product.price') %></th>
7
-
8
- <th id="tax_col"><%= t('plugin.ecommerce.product.tax') %></th>
9
- <th id="subtotal_col"><%= t('plugin.ecommerce.table.sub_total') %></th>
10
- </tr>
11
-
12
- <%
13
- current_unit = '$'
14
- order.get_meta("products", {}).each do |key, product|
15
-
16
- current_unit = e_get_currency_units[product[:currency_code]]['symbol'] rescue '$'
17
- qty = product[:qty].to_f
18
- price = product[:price].to_f
19
- tax_product = product[:tax].to_f
20
-
21
- tax_total_product = tax_product * qty
22
- sub_total = price * qty
23
- %>
24
- <tr>
25
- <td><%= qty.to_i %></td>
26
- <td><%= product[:product_title] %></td>
27
- <td><%= current_unit %> <%= price %></td>
28
-
29
- <td><%= current_unit %> <%= tax_product %></td>
30
- <td><%= current_unit %> <%= sub_total + tax_total_product %></td>
31
- </tr>
32
- <% end
33
-
34
- %>
35
-
36
-
37
-
38
- <tr>
39
- <td colspan="2"></td>
40
- <td colspan="2" class="text-right"><%= t('plugin.ecommerce.product.total_excluding_tax') %></td>
41
- <td id="subtotal_total">
42
- <%= current_unit %> <%= order.get_meta("payment")[:sub_total] %>
43
- </td>
44
- </tr>
45
- <tr >
46
- <td colspan="2"></td>
47
- <td colspan="2" class="text-right"><%= t('plugin.ecommerce.product.tax') %></td>
48
- <td id="tax_total">
49
- <%= current_unit %> <%= order.get_meta("payment")[:tax_total] %>
50
- </td>
51
- </tr>
52
-
53
-
54
- <tr>
55
- <td colspan="2"></td>
56
- <td colspan="2" class="text-right"><%= t('plugin.ecommerce.table.shipping') %></td>
57
- <td id="shipping_total"><%= current_unit %> <span><%= order.get_meta("payment")[:weight_price] %></span></td>
58
- </tr>
59
-
60
- <tr>
61
- <td colspan="2"></td>
62
- <td colspan="2" class="text-right">Sub <%= t('plugin.ecommerce.table.total') %></td>
63
- <td id="order_total">
64
-
65
- <%= current_unit %> <span><%= order.get_meta("payment")[:total] %></span></td>
66
- </tr>
67
-
68
- <% if order.get_meta("payment")[:coupon_amount].to_i > 0 %>
69
- <tr id="coupon_application_row" >
70
- <td colspan="2"></td>
71
- <td colspan="2" class="text-right"><%= t('plugin.ecommerce.table.discount') %></td>
72
- <td class="extra_totals reduce_tax_subtotal" id="coupon_application_total">
73
- - <%= current_unit %> <span><%= order.get_meta("payment")[:coupon_amount] %></span> <strong>(<%= order.get_meta("payment")[:coupon] %>)</strong>
74
- </td>
75
- </tr>
76
- <% end %>
77
- <tr>
78
- <td colspan="2"></td>
79
- <td colspan="2" class="text-right"><%= t('plugin.ecommerce.table.total') %></td>
80
- <td id="order_total">
81
-
82
- <%= current_unit %> <span><%= order.get_meta("payment")[:amount] %></span></td>
83
- </tr>
84
- </tbody>
85
- </table>
@@ -1,371 +0,0 @@
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
-