spree_core 0.30.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (795) hide show
  1. data/LICENSE +26 -0
  2. data/README.md +19 -0
  3. data/app/controllers/admin/adjustments_controller.rb +25 -0
  4. data/app/controllers/admin/base_controller.rb +47 -0
  5. data/app/controllers/admin/checkouts_controller.rb +58 -0
  6. data/app/controllers/admin/configurations_controller.rb +26 -0
  7. data/app/controllers/admin/general_settings_controller.rb +13 -0
  8. data/app/controllers/admin/images_controller.rb +54 -0
  9. data/app/controllers/admin/inventory_settings_controller.rb +13 -0
  10. data/app/controllers/admin/inventory_units_controller.rb +2 -0
  11. data/app/controllers/admin/line_items_controller.rb +69 -0
  12. data/app/controllers/admin/mail_settings_controller.rb +14 -0
  13. data/app/controllers/admin/option_types_controller.rb +58 -0
  14. data/app/controllers/admin/orders_controller.rb +94 -0
  15. data/app/controllers/admin/overview_controller.rb +14 -0
  16. data/app/controllers/admin/payment_methods_controller.rb +31 -0
  17. data/app/controllers/admin/payments_controller.rb +105 -0
  18. data/app/controllers/admin/product_groups_controller.rb +45 -0
  19. data/app/controllers/admin/product_properties_controller.rb +14 -0
  20. data/app/controllers/admin/product_scopes_controller.rb +19 -0
  21. data/app/controllers/admin/products_controller.rb +115 -0
  22. data/app/controllers/admin/properties_controller.rb +27 -0
  23. data/app/controllers/admin/prototypes_controller.rb +52 -0
  24. data/app/controllers/admin/reports_controller.rb +44 -0
  25. data/app/controllers/admin/return_authorizations_controller.rb +36 -0
  26. data/app/controllers/admin/shipments_controller.rb +79 -0
  27. data/app/controllers/admin/shipping_categories_controller.rb +16 -0
  28. data/app/controllers/admin/shipping_methods_controller.rb +21 -0
  29. data/app/controllers/admin/states_controller.rb +30 -0
  30. data/app/controllers/admin/tax_categories_controller.rb +13 -0
  31. data/app/controllers/admin/tax_rates_controller.rb +32 -0
  32. data/app/controllers/admin/tax_settings_controller.rb +13 -0
  33. data/app/controllers/admin/taxonomies_controller.rb +17 -0
  34. data/app/controllers/admin/taxons_controller.rb +127 -0
  35. data/app/controllers/admin/trackers_controller.rb +7 -0
  36. data/app/controllers/admin/users_controller.rb +67 -0
  37. data/app/controllers/admin/variants_controller.rb +55 -0
  38. data/app/controllers/admin/zones_controller.rb +35 -0
  39. data/app/controllers/checkout_controller.rb +68 -0
  40. data/app/controllers/content_controller.rb +13 -0
  41. data/app/controllers/countries_controller.rb +11 -0
  42. data/app/controllers/locale_controller.rb +14 -0
  43. data/app/controllers/orders_controller.rb +49 -0
  44. data/app/controllers/password_resets_controller.rb +49 -0
  45. data/app/controllers/products_controller.rb +38 -0
  46. data/app/controllers/spree/base_controller.rb +111 -0
  47. data/app/controllers/states_controller.rb +16 -0
  48. data/app/controllers/taxons_controller.rb +23 -0
  49. data/app/helpers/account_helper.rb +2 -0
  50. data/app/helpers/admin/base_helper.rb +194 -0
  51. data/app/helpers/admin/inventory_settings_helper.rb +5 -0
  52. data/app/helpers/admin/navigation_helper.rb +140 -0
  53. data/app/helpers/admin/orders_helper.rb +22 -0
  54. data/app/helpers/admin/overview_helper.rb +12 -0
  55. data/app/helpers/admin/payments_helper.rb +7 -0
  56. data/app/helpers/admin/product_groups_helper.rb +11 -0
  57. data/app/helpers/admin/product_properties_helper.rb +21 -0
  58. data/app/helpers/admin/products_helper.rb +11 -0
  59. data/app/helpers/admin/taxons_helper.rb +5 -0
  60. data/app/helpers/admin/users_helper.rb +5 -0
  61. data/app/helpers/admin/zones_helper.rb +11 -0
  62. data/app/helpers/checkout_helper.rb +32 -0
  63. data/app/helpers/hook_helper.rb +20 -0
  64. data/app/helpers/orders_helper.rb +3 -0
  65. data/app/helpers/products_helper.rb +49 -0
  66. data/app/helpers/search_helper.rb +10 -0
  67. data/app/helpers/spree/base_helper.rb +91 -0
  68. data/app/helpers/taxons_helper.rb +32 -0
  69. data/app/helpers/trackers_helper.rb +2 -0
  70. data/app/helpers/users_helper.rb +13 -0
  71. data/app/models/address.rb +88 -0
  72. data/app/models/adjustment.rb +46 -0
  73. data/app/models/app_configuration.rb +54 -0
  74. data/app/models/asset.rb +4 -0
  75. data/app/models/billing_integration.rb +23 -0
  76. data/app/models/calculator/flat_percent_item_total.rb +18 -0
  77. data/app/models/calculator/flat_rate.rb +16 -0
  78. data/app/models/calculator/flexi_rate.rb +32 -0
  79. data/app/models/calculator/per_item.rb +16 -0
  80. data/app/models/calculator/price_bucket.rb +30 -0
  81. data/app/models/calculator/sales_tax.rb +48 -0
  82. data/app/models/calculator/vat.rb +63 -0
  83. data/app/models/calculator.rb +46 -0
  84. data/app/models/checkout.rb +141 -0
  85. data/app/models/configuration.rb +3 -0
  86. data/app/models/country.rb +17 -0
  87. data/app/models/creditcard.rb +240 -0
  88. data/app/models/gateway/authorize_net.rb +8 -0
  89. data/app/models/gateway/authorize_net_cim.rb +121 -0
  90. data/app/models/gateway/beanstream.rb +164 -0
  91. data/app/models/gateway/bogus.rb +80 -0
  92. data/app/models/gateway/eway.rb +11 -0
  93. data/app/models/gateway/linkpoint.rb +8 -0
  94. data/app/models/gateway/pay_pal.rb +11 -0
  95. data/app/models/gateway/sage_pay.rb +9 -0
  96. data/app/models/gateway.rb +48 -0
  97. data/app/models/image.rb +30 -0
  98. data/app/models/inventory_unit.rb +132 -0
  99. data/app/models/line_item.rb +67 -0
  100. data/app/models/option_type.rb +8 -0
  101. data/app/models/option_value.rb +5 -0
  102. data/app/models/order.rb +536 -0
  103. data/app/models/order_mailer.rb +24 -0
  104. data/app/models/payment.rb +136 -0
  105. data/app/models/payment_method/check.rb +2 -0
  106. data/app/models/payment_method.rb +54 -0
  107. data/app/models/preference.rb +51 -0
  108. data/app/models/product.rb +239 -0
  109. data/app/models/product_group.rb +208 -0
  110. data/app/models/product_option_type.rb +5 -0
  111. data/app/models/product_property.rb +15 -0
  112. data/app/models/product_scope.rb +58 -0
  113. data/app/models/property.rb +20 -0
  114. data/app/models/prototype.rb +5 -0
  115. data/app/models/return_authorization.rb +70 -0
  116. data/app/models/role.rb +3 -0
  117. data/app/models/shipment.rb +133 -0
  118. data/app/models/shipping_category.rb +3 -0
  119. data/app/models/shipping_method.rb +20 -0
  120. data/app/models/state.rb +17 -0
  121. data/app/models/state_event.rb +16 -0
  122. data/app/models/state_monitor.rb +25 -0
  123. data/app/models/tax_category.rb +14 -0
  124. data/app/models/tax_rate.rb +17 -0
  125. data/app/models/taxon.rb +51 -0
  126. data/app/models/taxonomy.rb +17 -0
  127. data/app/models/tracker.rb +5 -0
  128. data/app/models/user.rb +13 -0
  129. data/app/models/variant.rb +104 -0
  130. data/app/models/zone.rb +84 -0
  131. data/app/models/zone_member.rb +10 -0
  132. data/app/stylesheets/_buttons.less +80 -0
  133. data/app/stylesheets/_cart.less +24 -0
  134. data/app/stylesheets/_checkout.less +76 -0
  135. data/app/stylesheets/_checkout_progress.less +62 -0
  136. data/app/stylesheets/_colors.less +16 -0
  137. data/app/stylesheets/_forms.less +50 -0
  138. data/app/stylesheets/_layout.less +77 -0
  139. data/app/stylesheets/_messages.less +32 -0
  140. data/app/stylesheets/_mixins.less +71 -0
  141. data/app/stylesheets/_navigation.less +130 -0
  142. data/app/stylesheets/_prices.less +18 -0
  143. data/app/stylesheets/_product_details.less +56 -0
  144. data/app/stylesheets/_product_lists.less +66 -0
  145. data/app/stylesheets/_registration.less +24 -0
  146. data/app/stylesheets/_reset.less +69 -0
  147. data/app/stylesheets/_typography.less +158 -0
  148. data/app/stylesheets/screen.less +13 -0
  149. data/app/views/account/login.html.erb +4 -0
  150. data/app/views/admin/adjustments/_form.html.erb +12 -0
  151. data/app/views/admin/adjustments/edit.html.erb +13 -0
  152. data/app/views/admin/adjustments/index.html.erb +34 -0
  153. data/app/views/admin/adjustments/new.html.erb +13 -0
  154. data/app/views/admin/checkouts/_form.html.erb +42 -0
  155. data/app/views/admin/checkouts/edit.html.erb +21 -0
  156. data/app/views/admin/checkouts/show.html.erb +131 -0
  157. data/app/views/admin/configurations/index.html.erb +66 -0
  158. data/app/views/admin/configurations/new.html.erb +13 -0
  159. data/app/views/admin/extensions/index.html.erb +23 -0
  160. data/app/views/admin/general_settings/edit.html.erb +35 -0
  161. data/app/views/admin/general_settings/show.html.erb +28 -0
  162. data/app/views/admin/images/_form.html.erb +16 -0
  163. data/app/views/admin/images/edit.html.erb +19 -0
  164. data/app/views/admin/images/index.html.erb +66 -0
  165. data/app/views/admin/images/new.html.erb +22 -0
  166. data/app/views/admin/inventory_settings/edit.html.erb +27 -0
  167. data/app/views/admin/inventory_settings/show.html.erb +9 -0
  168. data/app/views/admin/inventory_units/adjust.html.erb +33 -0
  169. data/app/views/admin/mail_settings/edit.html.erb +114 -0
  170. data/app/views/admin/mail_settings/show.html.erb +59 -0
  171. data/app/views/admin/option_types/_available.html.erb +27 -0
  172. data/app/views/admin/option_types/_form.html.erb +11 -0
  173. data/app/views/admin/option_types/_option_value_fields.html.erb +5 -0
  174. data/app/views/admin/option_types/_selected.html.erb +26 -0
  175. data/app/views/admin/option_types/available.js.erb +2 -0
  176. data/app/views/admin/option_types/edit.html.erb +30 -0
  177. data/app/views/admin/option_types/index.html.erb +33 -0
  178. data/app/views/admin/option_types/new.html.erb +11 -0
  179. data/app/views/admin/option_types/select.js.erb +3 -0
  180. data/app/views/admin/option_types/selected.html.erb +6 -0
  181. data/app/views/admin/orders/_add_product.html.erb +20 -0
  182. data/app/views/admin/orders/_form.html.erb +66 -0
  183. data/app/views/admin/orders/_line_item.html.erb +16 -0
  184. data/app/views/admin/orders/edit.html.erb +30 -0
  185. data/app/views/admin/orders/history.html.erb +25 -0
  186. data/app/views/admin/orders/index.html.erb +96 -0
  187. data/app/views/admin/orders/new.html.erb +19 -0
  188. data/app/views/admin/orders/show.html.erb +32 -0
  189. data/app/views/admin/payment_methods/_form.html.erb +50 -0
  190. data/app/views/admin/payment_methods/edit.html.erb +10 -0
  191. data/app/views/admin/payment_methods/index.html.erb +47 -0
  192. data/app/views/admin/payment_methods/new.html.erb +11 -0
  193. data/app/views/admin/payments/_bill_address_form.html.erb +9 -0
  194. data/app/views/admin/payments/_card_form.html.erb +49 -0
  195. data/app/views/admin/payments/_form.html.erb +15 -0
  196. data/app/views/admin/payments/_list.html.erb +24 -0
  197. data/app/views/admin/payments/_transaction_list.html.erb +24 -0
  198. data/app/views/admin/payments/credit.html.erb +14 -0
  199. data/app/views/admin/payments/index.html.erb +27 -0
  200. data/app/views/admin/payments/new.html.erb +19 -0
  201. data/app/views/admin/payments/show.html.erb +10 -0
  202. data/app/views/admin/payments/source_forms/_check.html.erb +0 -0
  203. data/app/views/admin/payments/source_forms/_gateway.html.erb +43 -0
  204. data/app/views/admin/payments/source_views/_check.html.erb +0 -0
  205. data/app/views/admin/payments/source_views/_gateway.html.erb +35 -0
  206. data/app/views/admin/product_groups/_preview.html.erb +34 -0
  207. data/app/views/admin/product_groups/_product_scope.html.erb +24 -0
  208. data/app/views/admin/product_groups/edit.html.erb +56 -0
  209. data/app/views/admin/product_groups/index.html.erb +35 -0
  210. data/app/views/admin/product_groups/new.html.erb +12 -0
  211. data/app/views/admin/product_groups/show.html.erb +32 -0
  212. data/app/views/admin/product_groups/update.js.erb +7 -0
  213. data/app/views/admin/product_properties/_product_property_fields.html.erb +11 -0
  214. data/app/views/admin/product_properties/index.html.erb +50 -0
  215. data/app/views/admin/product_scopes/_form.html.erb +106 -0
  216. data/app/views/admin/product_scopes/create.js.erb +3 -0
  217. data/app/views/admin/product_scopes/destroy.js.erb +2 -0
  218. data/app/views/admin/product_scopes/new.html.erb +1 -0
  219. data/app/views/admin/products/_form.html.erb +106 -0
  220. data/app/views/admin/products/_option_types.html.erb +40 -0
  221. data/app/views/admin/products/_properties_form.erb +7 -0
  222. data/app/views/admin/products/edit.html.erb +10 -0
  223. data/app/views/admin/products/index.html.erb +81 -0
  224. data/app/views/admin/products/new.html.erb +53 -0
  225. data/app/views/admin/products/show.html.erb +4 -0
  226. data/app/views/admin/properties/_form.html.erb +12 -0
  227. data/app/views/admin/properties/edit.html.erb +10 -0
  228. data/app/views/admin/properties/filtered.html.erb +1 -0
  229. data/app/views/admin/properties/index.html.erb +40 -0
  230. data/app/views/admin/properties/new.html.erb +11 -0
  231. data/app/views/admin/prototypes/_form.html.erb +44 -0
  232. data/app/views/admin/prototypes/available.html.erb +22 -0
  233. data/app/views/admin/prototypes/edit.html.erb +9 -0
  234. data/app/views/admin/prototypes/index.html.erb +37 -0
  235. data/app/views/admin/prototypes/new.html.erb +11 -0
  236. data/app/views/admin/prototypes/select.js.erb +4 -0
  237. data/app/views/admin/reports/index.html.erb +19 -0
  238. data/app/views/admin/reports/sales_total.html.erb +27 -0
  239. data/app/views/admin/return_authorizations/_form.html.erb +64 -0
  240. data/app/views/admin/return_authorizations/edit.html.erb +27 -0
  241. data/app/views/admin/return_authorizations/index.html.erb +43 -0
  242. data/app/views/admin/return_authorizations/new.html.erb +13 -0
  243. data/app/views/admin/shared/_additional_field.html.erb +5 -0
  244. data/app/views/admin/shared/_address.html.erb +5 -0
  245. data/app/views/admin/shared/_address_form.html.erb +76 -0
  246. data/app/views/admin/shared/_calculator_fields.html.erb +19 -0
  247. data/app/views/admin/shared/_configuration_menu.html.erb +22 -0
  248. data/app/views/admin/shared/_edit_resource_links.html.erb +4 -0
  249. data/app/views/admin/shared/_group_from_products_form.html.erb +12 -0
  250. data/app/views/admin/shared/_new_resource_links.html.erb +4 -0
  251. data/app/views/admin/shared/_order_details.html.erb +3 -0
  252. data/app/views/admin/shared/_order_sub_menu.html.erb +0 -0
  253. data/app/views/admin/shared/_order_tabs.html.erb +60 -0
  254. data/app/views/admin/shared/_product_sub_menu.html.erb +11 -0
  255. data/app/views/admin/shared/_product_tabs.html.erb +34 -0
  256. data/app/views/admin/shared/_report_criteria.html.erb +15 -0
  257. data/app/views/admin/shared/_show_resource_links.html.erb +5 -0
  258. data/app/views/admin/shared/_tabs.html.erb +6 -0
  259. data/app/views/admin/shipments/_form.html.erb +79 -0
  260. data/app/views/admin/shipments/edit.html.erb +40 -0
  261. data/app/views/admin/shipments/index.html.erb +45 -0
  262. data/app/views/admin/shipments/new.html.erb +18 -0
  263. data/app/views/admin/shipping_categories/_form.html.erb +6 -0
  264. data/app/views/admin/shipping_categories/edit.html.erb +6 -0
  265. data/app/views/admin/shipping_categories/index.html.erb +29 -0
  266. data/app/views/admin/shipping_categories/new.html.erb +8 -0
  267. data/app/views/admin/shipping_methods/_form.html.erb +24 -0
  268. data/app/views/admin/shipping_methods/edit.html.erb +16 -0
  269. data/app/views/admin/shipping_methods/index.html.erb +48 -0
  270. data/app/views/admin/shipping_methods/new.html.erb +17 -0
  271. data/app/views/admin/states/_form.html.erb +9 -0
  272. data/app/views/admin/states/_state_list.html.erb +28 -0
  273. data/app/views/admin/states/edit.html.erb +10 -0
  274. data/app/views/admin/states/index.html.erb +16 -0
  275. data/app/views/admin/states/new.html.erb +8 -0
  276. data/app/views/admin/tax_categories/_form.html.erb +12 -0
  277. data/app/views/admin/tax_categories/edit.html.erb +10 -0
  278. data/app/views/admin/tax_categories/index.html.erb +39 -0
  279. data/app/views/admin/tax_categories/new.html.erb +10 -0
  280. data/app/views/admin/tax_categories/show.html.erb +1 -0
  281. data/app/views/admin/tax_rates/_form.html.erb +16 -0
  282. data/app/views/admin/tax_rates/edit.html.erb +6 -0
  283. data/app/views/admin/tax_rates/index.html.erb +34 -0
  284. data/app/views/admin/tax_rates/new.html.erb +8 -0
  285. data/app/views/admin/tax_settings/edit.html.erb +17 -0
  286. data/app/views/admin/tax_settings/show.html.erb +14 -0
  287. data/app/views/admin/taxonomies/_form.html.erb +7 -0
  288. data/app/views/admin/taxonomies/_js_head.html.erb +11 -0
  289. data/app/views/admin/taxonomies/_list.html.erb +17 -0
  290. data/app/views/admin/taxonomies/_taxon.html.erb +12 -0
  291. data/app/views/admin/taxonomies/edit.html.erb +49 -0
  292. data/app/views/admin/taxonomies/get_children.json.erb +9 -0
  293. data/app/views/admin/taxonomies/index.html.erb +16 -0
  294. data/app/views/admin/taxonomies/new.html.erb +12 -0
  295. data/app/views/admin/taxons/_form.html.erb +23 -0
  296. data/app/views/admin/taxons/_taxon_table.html.erb +28 -0
  297. data/app/views/admin/taxons/available.js.erb +36 -0
  298. data/app/views/admin/taxons/edit.html.erb +11 -0
  299. data/app/views/admin/taxons/remove.html.erb +1 -0
  300. data/app/views/admin/taxons/select.html.erb +1 -0
  301. data/app/views/admin/taxons/selected.html.erb +42 -0
  302. data/app/views/admin/trackers/_form.html.erb +26 -0
  303. data/app/views/admin/trackers/edit.html.erb +8 -0
  304. data/app/views/admin/trackers/index.html.erb +41 -0
  305. data/app/views/admin/trackers/new.html.erb +9 -0
  306. data/app/views/admin/users/_form.html.erb +36 -0
  307. data/app/views/admin/users/edit.html.erb +14 -0
  308. data/app/views/admin/users/index.html.erb +62 -0
  309. data/app/views/admin/users/new.html.erb +14 -0
  310. data/app/views/admin/users/show.html.erb +21 -0
  311. data/app/views/admin/variants/_form.html.erb +40 -0
  312. data/app/views/admin/variants/edit.html.erb +13 -0
  313. data/app/views/admin/variants/index.html.erb +51 -0
  314. data/app/views/admin/variants/new.html.erb +11 -0
  315. data/app/views/admin/zones/_country_member.html.erb +5 -0
  316. data/app/views/admin/zones/_form.html.erb +29 -0
  317. data/app/views/admin/zones/_member_type.html.erb +15 -0
  318. data/app/views/admin/zones/_state_member.html.erb +5 -0
  319. data/app/views/admin/zones/_zone_member.html.erb +5 -0
  320. data/app/views/admin/zones/edit.html.erb +10 -0
  321. data/app/views/admin/zones/index.html.erb +40 -0
  322. data/app/views/admin/zones/new.html.erb +10 -0
  323. data/app/views/checkout/_address.html.erb +161 -0
  324. data/app/views/checkout/_complete.html.erb +1 -0
  325. data/app/views/checkout/_confirm.html.erb +11 -0
  326. data/app/views/checkout/_delivery.html.erb +25 -0
  327. data/app/views/checkout/_payment.html.erb +28 -0
  328. data/app/views/checkout/_summary.html.erb +31 -0
  329. data/app/views/checkout/edit.html.erb +18 -0
  330. data/app/views/checkout/payment/_check.html.erb +0 -0
  331. data/app/views/checkout/payment/_gateway.html.erb +31 -0
  332. data/app/views/content/cvv.html.erb +13 -0
  333. data/app/views/countries/index.js.erb +1 -0
  334. data/app/views/layouts/admin.html.erb +79 -0
  335. data/app/views/layouts/spree_application.html.erb +52 -0
  336. data/app/views/order_mailer/cancel.html.erb +16 -0
  337. data/app/views/order_mailer/confirm.html.erb +19 -0
  338. data/app/views/orders/_form.html.erb +19 -0
  339. data/app/views/orders/_line_item.html.erb +43 -0
  340. data/app/views/orders/edit.html.erb +40 -0
  341. data/app/views/orders/new.html.erb +9 -0
  342. data/app/views/orders/show.html.erb +16 -0
  343. data/app/views/password_resets/edit.html.erb +12 -0
  344. data/app/views/password_resets/new.html.erb +12 -0
  345. data/app/views/products/_cart_form.html.erb +54 -0
  346. data/app/views/products/_image.html.erb +5 -0
  347. data/app/views/products/_properties.html.erb +8 -0
  348. data/app/views/products/_taxons.html.erb +16 -0
  349. data/app/views/products/_thumbnails.html.erb +40 -0
  350. data/app/views/products/index.html.erb +30 -0
  351. data/app/views/products/show.html.erb +31 -0
  352. data/app/views/shared/_additional_field.html.erb +7 -0
  353. data/app/views/shared/_admin_head.html.erb +34 -0
  354. data/app/views/shared/_edit_resource_links.html.erb +1 -0
  355. data/app/views/shared/_error_messages.html.erb +11 -0
  356. data/app/views/shared/_filters.html.erb +52 -0
  357. data/app/views/shared/_footer.html.erb +13 -0
  358. data/app/views/shared/_google_analytics.html.erb +39 -0
  359. data/app/views/shared/_head.html.erb +10 -0
  360. data/app/views/shared/_login.html.erb +21 -0
  361. data/app/views/shared/_method_error_message.html.erb +4 -0
  362. data/app/views/shared/_nav_bar.html.erb +5 -0
  363. data/app/views/shared/_new_resource_links.html.erb +1 -0
  364. data/app/views/shared/_order_details.html.erb +50 -0
  365. data/app/views/shared/_products.html.erb +35 -0
  366. data/app/views/shared/_search.html.erb +9 -0
  367. data/app/views/shared/_show_resource_links.html.erb +3 -0
  368. data/app/views/shared/_store_menu.html.erb +3 -0
  369. data/app/views/shared/_taxonomies.html.erb +10 -0
  370. data/app/views/shared/_test_hook.html.erb +1 -0
  371. data/app/views/shared/_user_form.html.erb +17 -0
  372. data/app/views/states/index.js.erb +1 -0
  373. data/app/views/taxons/_taxon.html.erb +4 -0
  374. data/app/views/taxons/show.html.erb +17 -0
  375. data/app/views/users/edit.html.erb +9 -0
  376. data/app/views/users/show.html.erb +46 -0
  377. data/config/initializers/form_builder.rb +23 -0
  378. data/config/initializers/load_unobtrusive_date_picker.rb +8 -0
  379. data/config/initializers/spree.rb +41 -0
  380. data/config/initializers/touch.rb +14 -0
  381. data/config/initializers/workarounds_for_ruby19.rb +72 -0
  382. data/config/locales/en_spree.yml +950 -0
  383. data/config/routes.rb +186 -0
  384. data/lib/active_merchant/billing/authorize_net_cim.rb +871 -0
  385. data/lib/custom_fixtures.rb +7 -0
  386. data/lib/generators/spree_core/extension_generator.rb +57 -0
  387. data/lib/generators/spree_core/install_generator.rb +59 -0
  388. data/lib/generators/templates/LICENSE +23 -0
  389. data/lib/generators/templates/README.md +13 -0
  390. data/lib/generators/templates/Rakefile +1 -0
  391. data/lib/generators/templates/application_controller.rb +4 -0
  392. data/lib/generators/templates/config/initializers/%file_name%.rb.tt +1 -0
  393. data/lib/generators/templates/config/locales/%current_locale%.yml.tt +2 -0
  394. data/lib/generators/templates/config/routes.rb +3 -0
  395. data/lib/generators/templates/db/default/countries.yml +1583 -0
  396. data/lib/generators/templates/db/default/roles.yml +7 -0
  397. data/lib/generators/templates/db/default/states.yml +256 -0
  398. data/lib/generators/templates/db/default/zone_members.yml +169 -0
  399. data/lib/generators/templates/db/default/zones.yml +13 -0
  400. data/lib/generators/templates/db/migrate/20090823005402_spree_zero_nine_zero.rb +442 -0
  401. data/lib/generators/templates/db/migrate/20090904192342_create_indexes_for_inventory_units.rb +12 -0
  402. data/lib/generators/templates/db/migrate/20090923100315_add_count_on_hand_to_variants_and_products.rb +36 -0
  403. data/lib/generators/templates/db/migrate/20091007134354_change_taxons_to_nested_set.rb +40 -0
  404. data/lib/generators/templates/db/migrate/20091008091614_move_to_configurable_gateways.rb +55 -0
  405. data/lib/generators/templates/db/migrate/20091012120519_product_groups_and_scopes.rb +25 -0
  406. data/lib/generators/templates/db/migrate/20091015110842_add_open_id_authentication_tables.rb +20 -0
  407. data/lib/generators/templates/db/migrate/20091015153048_add_openid_field_to_users.rb +19 -0
  408. data/lib/generators/templates/db/migrate/20091016174634_change_preference_value_type.rb +9 -0
  409. data/lib/generators/templates/db/migrate/20091017175558_create_billing_integrations.rb +16 -0
  410. data/lib/generators/templates/db/migrate/20091021133257_charge_refactoring.rb +32 -0
  411. data/lib/generators/templates/db/migrate/20091104151730_add_some_indexes.rb +21 -0
  412. data/lib/generators/templates/db/migrate/20091126190904_checkout_state_machine.rb +13 -0
  413. data/lib/generators/templates/db/migrate/20091209153045_state_for_shipments.rb +9 -0
  414. data/lib/generators/templates/db/migrate/20091209202200_make_state_events_polymorphic.rb +12 -0
  415. data/lib/generators/templates/db/migrate/20091211203813_ship_address_id_for_checkouts.rb +9 -0
  416. data/lib/generators/templates/db/migrate/20091212161118_shipping_method_id_for_checkouts.rb +9 -0
  417. data/lib/generators/templates/db/migrate/20091213222815_creditcard_last_four_digits.rb +19 -0
  418. data/lib/generators/templates/db/migrate/20091214183826_populate_legacy_shipment_state.rb +19 -0
  419. data/lib/generators/templates/db/migrate/20100105090147_add_cost_price.rb +9 -0
  420. data/lib/generators/templates/db/migrate/20100105132138_shipment_id_for_inventory_units.rb +21 -0
  421. data/lib/generators/templates/db/migrate/20100111205525_cim_fields_for_creditcards.rb +11 -0
  422. data/lib/generators/templates/db/migrate/20100112151511_create_return_authorizations.rb +16 -0
  423. data/lib/generators/templates/db/migrate/20100113090919_add_return_authorization_to_inventory_units.rb +9 -0
  424. data/lib/generators/templates/db/migrate/20100113203104_create_trackers.rb +14 -0
  425. data/lib/generators/templates/db/migrate/20100121160010_creditcard_id_for_creditcard_txns.rb +9 -0
  426. data/lib/generators/templates/db/migrate/20100121183934_original_creditcard_txn_id_for_creditcard_txns.rb +9 -0
  427. data/lib/generators/templates/db/migrate/20100125145351_add_test_mode_to_billing_integration.rb +11 -0
  428. data/lib/generators/templates/db/migrate/20100126103714_create_products_product_groups.rb +12 -0
  429. data/lib/generators/templates/db/migrate/20100209025806_create_payment_methods.rb +20 -0
  430. data/lib/generators/templates/db/migrate/20100209144531_polymorphic_payments.rb +29 -0
  431. data/lib/generators/templates/db/migrate/20100213103131_change_payments_payment_method_to_belongs_to.rb +11 -0
  432. data/lib/generators/templates/db/migrate/20100214212536_assign_creditcard_txns_to_payment.rb +16 -0
  433. data/lib/generators/templates/db/migrate/20100223170312_sti_for_transactions.rb +14 -0
  434. data/lib/generators/templates/db/migrate/20100223183812_drop_billing_integrations.rb +16 -0
  435. data/lib/generators/templates/db/migrate/20100224153127_deleted_at_for_payment_methods.rb +13 -0
  436. data/lib/generators/templates/db/migrate/20100301163454_add_adjustments_index.rb +10 -0
  437. data/lib/generators/templates/db/migrate/20100306153445_fix_by_popularity.rb +8 -0
  438. data/lib/generators/templates/db/migrate/20100317120946_add_alt_text_to_images.rb +9 -0
  439. data/lib/generators/templates/db/migrate/20100427121301_add_display_to_payment_methods.rb +9 -0
  440. data/lib/generators/templates/db/migrate/20100504142133_add_addresses_checkouts_indexes.rb +16 -0
  441. data/lib/generators/templates/db/migrate/20100506180619_add_icon_to_taxons.rb +18 -0
  442. data/lib/generators/templates/db/migrate/20100506185838_add_description_to_taxons.rb +11 -0
  443. data/lib/generators/templates/db/migrate/20100528155333_index_for_shipments_number.rb +9 -0
  444. data/lib/generators/templates/db/migrate/20100528185820_add_index_on_users_persistence_token.rb +9 -0
  445. data/lib/generators/templates/db/migrate/20100605152042_add_default_to_tax_categories.rb +9 -0
  446. data/lib/generators/templates/db/migrate/20100624110730_add_display_to_shipping_methods.rb +9 -0
  447. data/lib/generators/templates/db/migrate/20100624123336_rename_payment_method_display.rb +9 -0
  448. data/lib/generators/templates/db/migrate/20100624175547_rename_preferences_field.rb +8 -0
  449. data/lib/generators/templates/db/migrate/20100811163637_add_guest_flag.rb +13 -0
  450. data/lib/generators/templates/db/migrate/20100811205836_drop_order_token.rb +11 -0
  451. data/lib/generators/templates/db/migrate/20100812162326_payments_state_and_assigned_to_order_only.rb +11 -0
  452. data/lib/generators/templates/db/migrate/20100813023502_create_address_keys_for_order.rb +15 -0
  453. data/lib/generators/templates/db/migrate/20100813185745_payment_total_for_orders.rb +9 -0
  454. data/lib/generators/templates/db/migrate/20100816212146_shipping_method_id_for_orders.rb +9 -0
  455. data/lib/generators/templates/db/migrate/20100817152723_add_shipment_and_payment_state.rb +15 -0
  456. data/lib/generators/templates/db/migrate/20100819170125_refactor_adjustments.rb +19 -0
  457. data/lib/generators/templates/db/migrate/20100820135707_response_code_and_avs_response_for_payments.rb +11 -0
  458. data/lib/generators/templates/db/migrate/20100901171814_change_guest_flag_to_anonymous.rb +13 -0
  459. data/lib/generators/templates/db/sample/users.rb +61 -0
  460. data/lib/generators/templates/extension/engine.rb.tt +14 -0
  461. data/lib/generators/templates/extension/extension.rb.tt +1 -0
  462. data/lib/generators/templates/extension.gemspec.tt +21 -0
  463. data/lib/generators/templates/lib/tasks/%file_name%.rake.tt +1 -0
  464. data/lib/generators/templates/public/images/add-to-cart.png +0 -0
  465. data/lib/generators/templates/public/images/admin/bg/active-tab.png +0 -0
  466. data/lib/generators/templates/public/images/admin/bg/admin_tab_back.png +0 -0
  467. data/lib/generators/templates/public/images/admin/bg/admin_tab_selected_back.png +0 -0
  468. data/lib/generators/templates/public/images/admin/bg/content-back-blue.png +0 -0
  469. data/lib/generators/templates/public/images/admin/bg/content-back-green.png +0 -0
  470. data/lib/generators/templates/public/images/admin/bg/content-back.png +0 -0
  471. data/lib/generators/templates/public/images/admin/bg/flash-error.png +0 -0
  472. data/lib/generators/templates/public/images/admin/bg/flash-notice.png +0 -0
  473. data/lib/generators/templates/public/images/admin/bg/green-stripes.gif +0 -0
  474. data/lib/generators/templates/public/images/admin/bg/green-stripes.png +0 -0
  475. data/lib/generators/templates/public/images/admin/bg/grid_header_back.png +0 -0
  476. data/lib/generators/templates/public/images/admin/bg/grid_header_back_green.png +0 -0
  477. data/lib/generators/templates/public/images/admin/bg/header-bg.png +0 -0
  478. data/lib/generators/templates/public/images/admin/bg/header.png +0 -0
  479. data/lib/generators/templates/public/images/admin/bg/header_bg.jpg +0 -0
  480. data/lib/generators/templates/public/images/admin/bg/menu-current.png +0 -0
  481. data/lib/generators/templates/public/images/admin/bg/red-stripes.gif +0 -0
  482. data/lib/generators/templates/public/images/admin/bg/red-stripes.png +0 -0
  483. data/lib/generators/templates/public/images/admin/bg/spree_50.png +0 -0
  484. data/lib/generators/templates/public/images/admin/bg/subnav-divider.png +0 -0
  485. data/lib/generators/templates/public/images/admin/bg/subnav.png +0 -0
  486. data/lib/generators/templates/public/images/admin/bg/tab-back.png +0 -0
  487. data/lib/generators/templates/public/images/admin/buttons/blue/left_01.png +0 -0
  488. data/lib/generators/templates/public/images/admin/buttons/blue/right_01.png +0 -0
  489. data/lib/generators/templates/public/images/admin/buttons/drag-handle-green.png +0 -0
  490. data/lib/generators/templates/public/images/admin/buttons/green/left_01.png +0 -0
  491. data/lib/generators/templates/public/images/admin/buttons/green/right_01.png +0 -0
  492. data/lib/generators/templates/public/images/admin/buttons/left_01.png +0 -0
  493. data/lib/generators/templates/public/images/admin/buttons/left_01_small.png +0 -0
  494. data/lib/generators/templates/public/images/admin/buttons/orange/left_03.png +0 -0
  495. data/lib/generators/templates/public/images/admin/buttons/orange/right_03.png +0 -0
  496. data/lib/generators/templates/public/images/admin/buttons/right_01.png +0 -0
  497. data/lib/generators/templates/public/images/admin/buttons/right_01_small.png +0 -0
  498. data/lib/generators/templates/public/images/admin/icons/16x16/1.png +0 -0
  499. data/lib/generators/templates/public/images/admin/icons/16x16/10.png +0 -0
  500. data/lib/generators/templates/public/images/admin/icons/16x16/2.png +0 -0
  501. data/lib/generators/templates/public/images/admin/icons/16x16/3.png +0 -0
  502. data/lib/generators/templates/public/images/admin/icons/16x16/4.png +0 -0
  503. data/lib/generators/templates/public/images/admin/icons/16x16/5.png +0 -0
  504. data/lib/generators/templates/public/images/admin/icons/16x16/6.png +0 -0
  505. data/lib/generators/templates/public/images/admin/icons/16x16/7.png +0 -0
  506. data/lib/generators/templates/public/images/admin/icons/16x16/8.png +0 -0
  507. data/lib/generators/templates/public/images/admin/icons/16x16/9.png +0 -0
  508. data/lib/generators/templates/public/images/admin/icons/32x32/1.png +0 -0
  509. data/lib/generators/templates/public/images/admin/icons/32x32/10.png +0 -0
  510. data/lib/generators/templates/public/images/admin/icons/32x32/11.png +0 -0
  511. data/lib/generators/templates/public/images/admin/icons/32x32/2.png +0 -0
  512. data/lib/generators/templates/public/images/admin/icons/32x32/3.png +0 -0
  513. data/lib/generators/templates/public/images/admin/icons/32x32/4.png +0 -0
  514. data/lib/generators/templates/public/images/admin/icons/32x32/5.png +0 -0
  515. data/lib/generators/templates/public/images/admin/icons/32x32/6.png +0 -0
  516. data/lib/generators/templates/public/images/admin/icons/32x32/7.png +0 -0
  517. data/lib/generators/templates/public/images/admin/icons/32x32/8.png +0 -0
  518. data/lib/generators/templates/public/images/admin/icons/32x32/9.png +0 -0
  519. data/lib/generators/templates/public/images/admin/icons/accept.png +0 -0
  520. data/lib/generators/templates/public/images/admin/icons/add.gif +0 -0
  521. data/lib/generators/templates/public/images/admin/icons/add.png +0 -0
  522. data/lib/generators/templates/public/images/admin/icons/arrow-down.gif +0 -0
  523. data/lib/generators/templates/public/images/admin/icons/cross.png +0 -0
  524. data/lib/generators/templates/public/images/admin/icons/delete.gif +0 -0
  525. data/lib/generators/templates/public/images/admin/icons/delete.png +0 -0
  526. data/lib/generators/templates/public/images/admin/icons/drag.gif +0 -0
  527. data/lib/generators/templates/public/images/admin/icons/edit.gif +0 -0
  528. data/lib/generators/templates/public/images/admin/icons/edit.png +0 -0
  529. data/lib/generators/templates/public/images/admin/icons/email.png +0 -0
  530. data/lib/generators/templates/public/images/admin/icons/error.png +0 -0
  531. data/lib/generators/templates/public/images/admin/icons/exclamation.png +0 -0
  532. data/lib/generators/templates/public/images/admin/icons/feed.png +0 -0
  533. data/lib/generators/templates/public/images/admin/icons/pdf.png +0 -0
  534. data/lib/generators/templates/public/images/admin/icons/reorder.gif +0 -0
  535. data/lib/generators/templates/public/images/admin/icons/search.gif +0 -0
  536. data/lib/generators/templates/public/images/admin/icons/send-email.png +0 -0
  537. data/lib/generators/templates/public/images/admin/icons/stop.png +0 -0
  538. data/lib/generators/templates/public/images/admin/icons/tick.png +0 -0
  539. data/lib/generators/templates/public/images/admin/icons/up.gif +0 -0
  540. data/lib/generators/templates/public/images/admin/icons/xls.png +0 -0
  541. data/lib/generators/templates/public/images/admin/tabs/off-left.png +0 -0
  542. data/lib/generators/templates/public/images/admin/tabs/off-right.png +0 -0
  543. data/lib/generators/templates/public/images/admin/tabs/on-left.png +0 -0
  544. data/lib/generators/templates/public/images/admin/tabs/on-right.png +0 -0
  545. data/lib/generators/templates/public/images/ajax_loader.gif +0 -0
  546. data/lib/generators/templates/public/images/amex_cid.gif +0 -0
  547. data/lib/generators/templates/public/images/bg-button-hover.png +0 -0
  548. data/lib/generators/templates/public/images/bg-button-pressed.png +0 -0
  549. data/lib/generators/templates/public/images/bg-button.gif +0 -0
  550. data/lib/generators/templates/public/images/bg-button.png +0 -0
  551. data/lib/generators/templates/public/images/blue/left_01.png +0 -0
  552. data/lib/generators/templates/public/images/blue/right_01.png +0 -0
  553. data/lib/generators/templates/public/images/body-back.png +0 -0
  554. data/lib/generators/templates/public/images/bottom_shine.png +0 -0
  555. data/lib/generators/templates/public/images/breadcrumb.gif +0 -0
  556. data/lib/generators/templates/public/images/button-dark-hover.png +0 -0
  557. data/lib/generators/templates/public/images/button-dark.png +0 -0
  558. data/lib/generators/templates/public/images/buttons/bg-button-hover.png +0 -0
  559. data/lib/generators/templates/public/images/buttons/bg-button-pressed.png +0 -0
  560. data/lib/generators/templates/public/images/buttons/bg-button.gif +0 -0
  561. data/lib/generators/templates/public/images/buttons/bg-button.png +0 -0
  562. data/lib/generators/templates/public/images/buttons/blue/left_01.png +0 -0
  563. data/lib/generators/templates/public/images/buttons/blue/right_01.png +0 -0
  564. data/lib/generators/templates/public/images/buttons/button-dark-hover.png +0 -0
  565. data/lib/generators/templates/public/images/buttons/button-dark.png +0 -0
  566. data/lib/generators/templates/public/images/buttons/drag-handle-green.png +0 -0
  567. data/lib/generators/templates/public/images/buttons/green/left_01.png +0 -0
  568. data/lib/generators/templates/public/images/buttons/green/right_01.png +0 -0
  569. data/lib/generators/templates/public/images/buttons/left_01.png +0 -0
  570. data/lib/generators/templates/public/images/buttons/left_01_small.png +0 -0
  571. data/lib/generators/templates/public/images/buttons/orange/left_03.png +0 -0
  572. data/lib/generators/templates/public/images/buttons/orange/right_03.png +0 -0
  573. data/lib/generators/templates/public/images/buttons/right_01.png +0 -0
  574. data/lib/generators/templates/public/images/buttons/right_01_small.png +0 -0
  575. data/lib/generators/templates/public/images/buttons/sxsw-ribbon-v1.png +0 -0
  576. data/lib/generators/templates/public/images/buttons/top-shine.png +0 -0
  577. data/lib/generators/templates/public/images/calendar_date_select/calendar.gif +0 -0
  578. data/lib/generators/templates/public/images/cart-empty.png +0 -0
  579. data/lib/generators/templates/public/images/cart-empty_x32.png +0 -0
  580. data/lib/generators/templates/public/images/cart-full.png +0 -0
  581. data/lib/generators/templates/public/images/cart-full_x32.png +0 -0
  582. data/lib/generators/templates/public/images/checkout.png +0 -0
  583. data/lib/generators/templates/public/images/creditcard.gif +0 -0
  584. data/lib/generators/templates/public/images/datepicker/backstripes.gif +0 -0
  585. data/lib/generators/templates/public/images/datepicker/bg_header.jpg +0 -0
  586. data/lib/generators/templates/public/images/datepicker/bullet1.gif +0 -0
  587. data/lib/generators/templates/public/images/datepicker/bullet2.gif +0 -0
  588. data/lib/generators/templates/public/images/datepicker/cal.gif +0 -0
  589. data/lib/generators/templates/public/images/datepicker/gradient-e5e5e5-ffffff.gif +0 -0
  590. data/lib/generators/templates/public/images/discover_cid.gif +0 -0
  591. data/lib/generators/templates/public/images/drag-handle-green.png +0 -0
  592. data/lib/generators/templates/public/images/favicon.ico +0 -0
  593. data/lib/generators/templates/public/images/green/left_01.png +0 -0
  594. data/lib/generators/templates/public/images/green/right_01.png +0 -0
  595. data/lib/generators/templates/public/images/grid.png +0 -0
  596. data/lib/generators/templates/public/images/left_01.png +0 -0
  597. data/lib/generators/templates/public/images/left_01_small.png +0 -0
  598. data/lib/generators/templates/public/images/master_cid.jpg +0 -0
  599. data/lib/generators/templates/public/images/menu-current.png +0 -0
  600. data/lib/generators/templates/public/images/menu-hover.png +0 -0
  601. data/lib/generators/templates/public/images/noimage/mini.jpg +0 -0
  602. data/lib/generators/templates/public/images/noimage/product.jpg +0 -0
  603. data/lib/generators/templates/public/images/noimage/small.jpg +0 -0
  604. data/lib/generators/templates/public/images/openid-inputicon.gif +0 -0
  605. data/lib/generators/templates/public/images/orange/left_03.png +0 -0
  606. data/lib/generators/templates/public/images/orange/right_03.png +0 -0
  607. data/lib/generators/templates/public/images/progress.gif +0 -0
  608. data/lib/generators/templates/public/images/right_01.png +0 -0
  609. data/lib/generators/templates/public/images/right_01_small.png +0 -0
  610. data/lib/generators/templates/public/images/separator.png +0 -0
  611. data/lib/generators/templates/public/images/shadow-top.png +0 -0
  612. data/lib/generators/templates/public/images/shadow_top.png +0 -0
  613. data/lib/generators/templates/public/images/spinner.gif +0 -0
  614. data/lib/generators/templates/public/images/spree/progress.gif +0 -0
  615. data/lib/generators/templates/public/images/spree/spinner.gif +0 -0
  616. data/lib/generators/templates/public/images/spree/spree.jpg +0 -0
  617. data/lib/generators/templates/public/images/spree.jpg +0 -0
  618. data/lib/generators/templates/public/images/step-progress/completed-completed.gif +0 -0
  619. data/lib/generators/templates/public/images/step-progress/completed-current.gif +0 -0
  620. data/lib/generators/templates/public/images/step-progress/completed-first.gif +0 -0
  621. data/lib/generators/templates/public/images/step-progress/current-first.gif +0 -0
  622. data/lib/generators/templates/public/images/step-progress/current-incomplete.gif +0 -0
  623. data/lib/generators/templates/public/images/step-progress/current-right.gif +0 -0
  624. data/lib/generators/templates/public/images/step-progress/incomplete-incomplete.gif +0 -0
  625. data/lib/generators/templates/public/images/step-progress/incomplete-right.gif +0 -0
  626. data/lib/generators/templates/public/images/steps/1.png +0 -0
  627. data/lib/generators/templates/public/images/steps/1_small.png +0 -0
  628. data/lib/generators/templates/public/images/steps/2.png +0 -0
  629. data/lib/generators/templates/public/images/steps/2_small.png +0 -0
  630. data/lib/generators/templates/public/images/steps/3.png +0 -0
  631. data/lib/generators/templates/public/images/steps/3_small.png +0 -0
  632. data/lib/generators/templates/public/images/steps/4.png +0 -0
  633. data/lib/generators/templates/public/images/steps/4_small.png +0 -0
  634. data/lib/generators/templates/public/images/steps/5.png +0 -0
  635. data/lib/generators/templates/public/images/steps/5_small.png +0 -0
  636. data/lib/generators/templates/public/images/steps/6.png +0 -0
  637. data/lib/generators/templates/public/images/steps/6_small.png +0 -0
  638. data/lib/generators/templates/public/images/sxsw-ribbon-v1.png +0 -0
  639. data/lib/generators/templates/public/images/tab_bottom.gif +0 -0
  640. data/lib/generators/templates/public/images/tile-header.png +0 -0
  641. data/lib/generators/templates/public/images/tile-slider.png +0 -0
  642. data/lib/generators/templates/public/images/top-shine.png +0 -0
  643. data/lib/generators/templates/public/images/tree-nav-icons/bullet.gif +0 -0
  644. data/lib/generators/templates/public/images/tree-nav-icons/minus.gif +0 -0
  645. data/lib/generators/templates/public/images/tree-nav-icons/plus.gif +0 -0
  646. data/lib/generators/templates/public/images/tree-nav-icons/treeview-loading.gif +0 -0
  647. data/lib/generators/templates/public/images/tree-nav-icons/treeview-sprite.gif +0 -0
  648. data/lib/generators/templates/public/images/update.png +0 -0
  649. data/lib/generators/templates/public/images/visa_cid.gif +0 -0
  650. data/lib/generators/templates/public/images/wrapper-back-2.png +0 -0
  651. data/lib/generators/templates/public/images/wrapper-back.png +0 -0
  652. data/lib/generators/templates/public/images/yui-menubaritem_submenuindicator.png +0 -0
  653. data/lib/generators/templates/public/images/yui-menubaritem_submenuindicator_disabled.png +0 -0
  654. data/lib/generators/templates/public/images/yui-menuitem_checkbox.png +0 -0
  655. data/lib/generators/templates/public/images/yui-menuitem_checkbox_disabled.png +0 -0
  656. data/lib/generators/templates/public/images/yui-menuitem_submenuindicator.png +0 -0
  657. data/lib/generators/templates/public/images/yui-menuitem_submenuindicator_disabled.png +0 -0
  658. data/lib/generators/templates/public/images/yui-sprite.png +0 -0
  659. data/lib/generators/templates/public/javascripts/additional-methods.js +236 -0
  660. data/lib/generators/templates/public/javascripts/admin/address_states.js +25 -0
  661. data/lib/generators/templates/public/javascripts/admin/checkouts/edit.js +129 -0
  662. data/lib/generators/templates/public/javascripts/admin/orders/edit.js +23 -0
  663. data/lib/generators/templates/public/javascripts/admin/orders/edit_form.js +15 -0
  664. data/lib/generators/templates/public/javascripts/admin/payments/new.js +9 -0
  665. data/lib/generators/templates/public/javascripts/admin/unobtrusive_handlers.js +15 -0
  666. data/lib/generators/templates/public/javascripts/admin.js +226 -0
  667. data/lib/generators/templates/public/javascripts/application.js +12 -0
  668. data/lib/generators/templates/public/javascripts/calculator.js +15 -0
  669. data/lib/generators/templates/public/javascripts/checkout.js +64 -0
  670. data/lib/generators/templates/public/javascripts/datepicker.js +1445 -0
  671. data/lib/generators/templates/public/javascripts/gateway.js +13 -0
  672. data/lib/generators/templates/public/javascripts/jquery-1.3.2.min.js +19 -0
  673. data/lib/generators/templates/public/javascripts/jquery-1.4.2.min.js +154 -0
  674. data/lib/generators/templates/public/javascripts/jquery-and-plugins.js +36 -0
  675. data/lib/generators/templates/public/javascripts/jquery-ui.js +188 -0
  676. data/lib/generators/templates/public/javascripts/jquery.alerts/images/help.gif +0 -0
  677. data/lib/generators/templates/public/javascripts/jquery.alerts/images/important.gif +0 -0
  678. data/lib/generators/templates/public/javascripts/jquery.alerts/images/info.gif +0 -0
  679. data/lib/generators/templates/public/javascripts/jquery.alerts/images/title.gif +0 -0
  680. data/lib/generators/templates/public/javascripts/jquery.alerts/jquery.alerts.css +57 -0
  681. data/lib/generators/templates/public/javascripts/jquery.alerts/jquery.alerts.js +235 -0
  682. data/lib/generators/templates/public/javascripts/jquery.alerts/jquery.alerts.spree.css +30 -0
  683. data/lib/generators/templates/public/javascripts/jquery.autocomplete.min.js +13 -0
  684. data/lib/generators/templates/public/javascripts/jquery.js +19 -0
  685. data/lib/generators/templates/public/javascripts/jquery.suggest.js +276 -0
  686. data/lib/generators/templates/public/javascripts/jquery.template.js +255 -0
  687. data/lib/generators/templates/public/javascripts/jquery.tokeninput.js +618 -0
  688. data/lib/generators/templates/public/javascripts/jquery.validate.min.js +16 -0
  689. data/lib/generators/templates/public/javascripts/jrails.autocomplete.js +274 -0
  690. data/lib/generators/templates/public/javascripts/jrails.js +1 -0
  691. data/lib/generators/templates/public/javascripts/jsTree/jquery.tree.js +2058 -0
  692. data/lib/generators/templates/public/javascripts/jsTree/plugins/jquery.tree.contextmenu.js +129 -0
  693. data/lib/generators/templates/public/javascripts/jsTree/themes/apple/bg.jpg +0 -0
  694. data/lib/generators/templates/public/javascripts/jsTree/themes/apple/dot_for_ie.gif +0 -0
  695. data/lib/generators/templates/public/javascripts/jsTree/themes/apple/icons.png +0 -0
  696. data/lib/generators/templates/public/javascripts/jsTree/themes/apple/style.css +34 -0
  697. data/lib/generators/templates/public/javascripts/jsTree/themes/apple/throbber.gif +0 -0
  698. data/lib/generators/templates/public/javascripts/lang/af.js +40 -0
  699. data/lib/generators/templates/public/javascripts/lang/ar.js +50 -0
  700. data/lib/generators/templates/public/javascripts/lang/de.js +40 -0
  701. data/lib/generators/templates/public/javascripts/lang/du.js +40 -0
  702. data/lib/generators/templates/public/javascripts/lang/en.js +42 -0
  703. data/lib/generators/templates/public/javascripts/lang/es.js +41 -0
  704. data/lib/generators/templates/public/javascripts/lang/fi.js +40 -0
  705. data/lib/generators/templates/public/javascripts/lang/fr.js +44 -0
  706. data/lib/generators/templates/public/javascripts/lang/gr.js +40 -0
  707. data/lib/generators/templates/public/javascripts/lang/he.js +49 -0
  708. data/lib/generators/templates/public/javascripts/lang/it.js +13 -0
  709. data/lib/generators/templates/public/javascripts/lang/nl.js +40 -0
  710. data/lib/generators/templates/public/javascripts/lang/no.js +40 -0
  711. data/lib/generators/templates/public/javascripts/lang/pt.js +50 -0
  712. data/lib/generators/templates/public/javascripts/lang/ro.js +40 -0
  713. data/lib/generators/templates/public/javascripts/lang/ru.js +40 -0
  714. data/lib/generators/templates/public/javascripts/lang/sp.js +40 -0
  715. data/lib/generators/templates/public/javascripts/lang/sv.js +41 -0
  716. data/lib/generators/templates/public/javascripts/lang/ua.js +40 -0
  717. data/lib/generators/templates/public/javascripts/localization/messages_cn.js +24 -0
  718. data/lib/generators/templates/public/javascripts/localization/messages_cs.js +23 -0
  719. data/lib/generators/templates/public/javascripts/localization/messages_da.js +21 -0
  720. data/lib/generators/templates/public/javascripts/localization/messages_de.js +21 -0
  721. data/lib/generators/templates/public/javascripts/localization/messages_es.js +24 -0
  722. data/lib/generators/templates/public/javascripts/localization/messages_fr.js +23 -0
  723. data/lib/generators/templates/public/javascripts/localization/messages_hu.js +21 -0
  724. data/lib/generators/templates/public/javascripts/localization/messages_it.js +26 -0
  725. data/lib/generators/templates/public/javascripts/localization/messages_kk.js +23 -0
  726. data/lib/generators/templates/public/javascripts/localization/messages_nl.js +23 -0
  727. data/lib/generators/templates/public/javascripts/localization/messages_no.js +23 -0
  728. data/lib/generators/templates/public/javascripts/localization/messages_pl.js +23 -0
  729. data/lib/generators/templates/public/javascripts/localization/messages_ptbr.js +30 -0
  730. data/lib/generators/templates/public/javascripts/localization/messages_ro.js +24 -0
  731. data/lib/generators/templates/public/javascripts/localization/messages_ru.js +23 -0
  732. data/lib/generators/templates/public/javascripts/localization/messages_se.js +23 -0
  733. data/lib/generators/templates/public/javascripts/localization/messages_sk.js +21 -0
  734. data/lib/generators/templates/public/javascripts/localization/messages_tr.js +24 -0
  735. data/lib/generators/templates/public/javascripts/localization/messages_tw.js +24 -0
  736. data/lib/generators/templates/public/javascripts/localization/messages_ua.js +24 -0
  737. data/lib/generators/templates/public/javascripts/nested-attribute.js +26 -0
  738. data/lib/generators/templates/public/javascripts/open_id.js +15 -0
  739. data/lib/generators/templates/public/javascripts/product.js +49 -0
  740. data/lib/generators/templates/public/javascripts/rails.js +127 -0
  741. data/lib/generators/templates/public/javascripts/taxonomy.js +196 -0
  742. data/lib/generators/templates/public/javascripts/zone.js +40 -0
  743. data/lib/generators/templates/public/stylesheets/admin/admin-forms.css +159 -0
  744. data/lib/generators/templates/public/stylesheets/admin/admin-reset.css +67 -0
  745. data/lib/generators/templates/public/stylesheets/admin/admin-tables.css +39 -0
  746. data/lib/generators/templates/public/stylesheets/admin/admin-typography.css +117 -0
  747. data/lib/generators/templates/public/stylesheets/admin/admin.css +576 -0
  748. data/lib/generators/templates/public/stylesheets/admin/autocomplete.css +74 -0
  749. data/lib/generators/templates/public/stylesheets/admin/dashboard.css +143 -0
  750. data/lib/generators/templates/public/stylesheets/admin/edit_checkouts.css +57 -0
  751. data/lib/generators/templates/public/stylesheets/admin/grids.css +314 -0
  752. data/lib/generators/templates/public/stylesheets/admin/reset-fonts-grids-2-6-0.css +7 -0
  753. data/lib/generators/templates/public/stylesheets/admin/token-input.css +109 -0
  754. data/lib/generators/templates/public/stylesheets/admin/yui-includes.css +14 -0
  755. data/lib/generators/templates/public/stylesheets/datepicker.css +263 -0
  756. data/lib/generators/templates/public/stylesheets/jquery.autocomplete.css +48 -0
  757. data/lib/generators/templates/public/stylesheets/scaffold.css +54 -0
  758. data/lib/generators/templates/public/stylesheets/screen.css +1195 -0
  759. data/lib/generators/templates/spree_site.rb +8 -0
  760. data/lib/product_filters.rb +174 -0
  761. data/lib/redirect_legacy_product_url.rb +13 -0
  762. data/lib/scopes/dynamic.rb +38 -0
  763. data/lib/scopes/product.rb +242 -0
  764. data/lib/scopes/variant.rb +17 -0
  765. data/lib/scopes.rb +69 -0
  766. data/lib/seo_assist.rb +38 -0
  767. data/lib/spree/calculated_adjustments.rb +66 -0
  768. data/lib/spree/config.rb +31 -0
  769. data/lib/spree/current_order.rb +14 -0
  770. data/lib/spree/file_utilz.rb +73 -0
  771. data/lib/spree/gateway_error.rb +3 -0
  772. data/lib/spree/preference_access.rb +27 -0
  773. data/lib/spree/search/base.rb +21 -0
  774. data/lib/spree/search.rb +47 -0
  775. data/lib/spree_core/delegate_belongs_to.rb +95 -0
  776. data/lib/spree_core/enumerable_constants.rb +209 -0
  777. data/lib/spree_core/ext/active_record.rb +13 -0
  778. data/lib/spree_core/ext/array.rb +14 -0
  779. data/lib/spree_core/ext/string.rb +10 -0
  780. data/lib/spree_core/find_by_param.rb +117 -0
  781. data/lib/spree_core/preferences/mail_settings.rb +57 -0
  782. data/lib/spree_core/preferences/model_hooks.rb +293 -0
  783. data/lib/spree_core/preferences/preference_definition.rb +53 -0
  784. data/lib/spree_core/ssl_requirement.rb +109 -0
  785. data/lib/spree_core/theme_support/hook.rb +51 -0
  786. data/lib/spree_core/theme_support/hook_listener.rb +68 -0
  787. data/lib/spree_core/theme_support/hook_modifier.rb +35 -0
  788. data/lib/spree_core/theme_support/more_patches.rb +118 -0
  789. data/lib/spree_core/theme_support.rb +4 -0
  790. data/lib/spree_core/validation_group.rb +143 -0
  791. data/lib/spree_core.rb +144 -0
  792. data/lib/store_helpers.rb +10 -0
  793. data/lib/tasks/core.rake +112 -0
  794. data/lib/tasks/themes.rake +34 -0
  795. metadata +1027 -0
@@ -0,0 +1,950 @@
1
+ ---
2
+ en:
3
+ 'no': "No"
4
+ 'yes': "Yes"
5
+ 5_biggest_spenders: "5 Biggest Spenders"
6
+ a_copy_of_all_mail_will_be_sent_to_the_following_addresses: A copy of all mail be sent to the following addresses
7
+ abbreviation: Abbreviation
8
+ access_denied: "Access Denied"
9
+ account: Account
10
+ account_updated: "Account updated!"
11
+ action: Action
12
+ alt_text: Alternative Text
13
+ actions:
14
+ cancel: Cancel
15
+ create: Create
16
+ destroy: Destroy
17
+ list: List
18
+ listing: Listing
19
+ new: New
20
+ update: Update
21
+ active: "Active"
22
+ activerecord:
23
+ attributes:
24
+ address:
25
+ address1: Address
26
+ address2: "Address (contd.)"
27
+ city: City
28
+ country: "Country"
29
+ first_name: "First Name"
30
+ first_name_begins_with: "First Name Begins With"
31
+ last_name: "Last Name"
32
+ last_name_begins_with: "Last Name Begins With"
33
+ phone: Phone
34
+ state: "State"
35
+ zipcode: "Zip Code"
36
+ checkout:
37
+ bill_address:
38
+ address1: "Billing address street"
39
+ city: "Billing address city"
40
+ firstname: "Billing address first name"
41
+ lastname: "Billing address last name"
42
+ phone: "Billing address phone"
43
+ state: "Billing address state"
44
+ zipcode: "Billing address zipcode"
45
+ ship_address:
46
+ address1: "Shipping address street"
47
+ city: "Shipping address city"
48
+ firstname: "Shipping address first name"
49
+ lastname: "Shipping address last name"
50
+ phone: "Shipping address phone"
51
+ state: "Shipping address state"
52
+ zipcode: "Shipping address zipcode"
53
+ country:
54
+ iso: ISO
55
+ iso3: ISO3
56
+ iso_name: "ISO Name"
57
+ name: Name
58
+ numcode: "ISO Code"
59
+ creditcard:
60
+ cc_type: Type
61
+ month: Month
62
+ number: Number
63
+ verification_value: "Verification Value"
64
+ year: Year
65
+ inventory_unit:
66
+ state: State
67
+ line_item:
68
+ price: Price
69
+ quantity: Quantity
70
+ order:
71
+ checkout_complete: "Checkout Complete"
72
+ ip_address: "IP Address"
73
+ item_total: "Item Total"
74
+ number: Number
75
+ special_instructions: "Special Instructions"
76
+ state: State
77
+ total: Total
78
+ product:
79
+ available_on: "Available On"
80
+ cost_price: "Cost Price"
81
+ description: Description
82
+ master_price: "Master Price"
83
+ name: Name
84
+ on_hand: "On Hand"
85
+ shipping_category: "Shipping Category"
86
+ tax_category: "Tax Category"
87
+ product_group:
88
+ name: Name
89
+ product_count: "Product count"
90
+ product_scopes: "Product scopes"
91
+ products: "Products"
92
+ url: URL
93
+ product_scope:
94
+ arguments: "Arguments"
95
+ description: "Description"
96
+ property:
97
+ name: Name
98
+ presentation: Presentation
99
+ prototype:
100
+ name: Name
101
+ return_authorization:
102
+ amount: Amount
103
+ role:
104
+ name: Name
105
+ state:
106
+ abbr: Abbreviation
107
+ name: Name
108
+ tax_category:
109
+ description: Description
110
+ name: Name
111
+ tax_rate:
112
+ amount: Rate
113
+ taxon:
114
+ name: Name
115
+ permalink: Permalink
116
+ position: Position
117
+ taxonomy:
118
+ name: Name
119
+ user:
120
+ email: Email
121
+ variant:
122
+ cost_price: "Cost Price"
123
+ depth: Depth
124
+ height: Height
125
+ price: Price
126
+ sku: SKU
127
+ weight: Weight
128
+ width: Width
129
+ zone:
130
+ description: Description
131
+ name: Name
132
+ models:
133
+ address:
134
+ one: Address
135
+ other: Addresses
136
+ cheque_payment:
137
+ one: Cheque Payment
138
+ other: Cheque Payments
139
+ country:
140
+ one: Country
141
+ other: Countries
142
+ creditcard:
143
+ one: "Credit Card"
144
+ other: "Credit Cards"
145
+ creditcard_payment:
146
+ one: "Credit Card Payment"
147
+ other: "Credit Card Payments"
148
+ creditcard_txn:
149
+ one: "Credit Card Transaction"
150
+ other: "Credit Card Transactions"
151
+ inventory_unit:
152
+ one: "Inventory Unit"
153
+ other: "Inventory Units"
154
+ line_item:
155
+ one: "Line Item"
156
+ other: "Line Items"
157
+ order:
158
+ one: Order
159
+ other: Orders
160
+ payment:
161
+ one: Payment
162
+ other: Payments
163
+ product:
164
+ one: Product
165
+ other: Products
166
+ product_group:
167
+ one: "Product group"
168
+ other: "Product groups"
169
+ property:
170
+ one: Property
171
+ other: Properties
172
+ prototype:
173
+ one: Prototype
174
+ other: Prototypes
175
+ return_authorization:
176
+ one: Return Authorization
177
+ other: Return Authorizations
178
+ role:
179
+ one: Roles
180
+ other: Roles
181
+ shipment:
182
+ one: Shipment
183
+ other: Shipments
184
+ shipping_category:
185
+ one: "Shipping Category"
186
+ other: "Shipping Categories"
187
+ state:
188
+ one: State
189
+ other: States
190
+ tax_category:
191
+ one: "Tax Category"
192
+ other: "Tax Categories"
193
+ tax_rate:
194
+ one: "Tax Rate"
195
+ other: "Tax Rates"
196
+ taxon:
197
+ one: Taxon
198
+ other: Taxons
199
+ taxonomy:
200
+ one: Taxonomy
201
+ other: Taxonomies
202
+ user:
203
+ one: User
204
+ other: Users
205
+ variant:
206
+ one: Variant
207
+ other: Variants
208
+ zone:
209
+ one: Zone
210
+ other: Zones
211
+ add: Add
212
+ add_category: "Add Category"
213
+ add_country: "Add Country"
214
+ add_option_type: "Add Option Type"
215
+ add_option_types: "Add Option Types"
216
+ add_option_value: "Add Option Value"
217
+ add_product: "Add Product"
218
+ add_product_properties: "Add Product Properties"
219
+ add_scope: "Add a scope"
220
+ add_state: "Add State"
221
+ add_to_cart: "Add To Cart"
222
+ add_zone: "Add Zone"
223
+ additional_item: Additional Item Cost
224
+ address: Address
225
+ address_information: "Address Information"
226
+ adjustment: Adjustment
227
+ adjustments: Adjustments
228
+ administration: Administration
229
+ all: "All"
230
+ all_departments: All departments
231
+ allow_backorders: "Allow Backorders"
232
+ allow_ssl_to_be_used_when_in_developement_and_test_modes: Allow SSL to be used when in development and test modes
233
+ allow_ssl_to_be_used_when_in_production_mode: Allow SSL to be used in production mode
234
+ allowed_ssl_in_production_mode: "SSL will %{not} be used in production"
235
+ already_registered: Already Registered?
236
+ alternative_phone: Alternative Phone
237
+ amount: Amount
238
+ analytics_trackers: Analytics Trackers
239
+ apply: "Apply"
240
+ are_you_sure: "Are you sure?"
241
+ are_you_sure_category: "Are you sure you want to delete this category?"
242
+ are_you_sure_delete: "Are you sure you want to delete this record?"
243
+ are_you_sure_delete_image: "Are you sure you want to delete this image?"
244
+ are_you_sure_option_type: "Are you sure you want to delete this option type?"
245
+ are_you_sure_you_want_to_capture: "Are you sure you want to capture?"
246
+ assign_taxon: "Assign Taxon"
247
+ assign_taxons: "Assign Taxons"
248
+ authorization_failure: "Authorization Failure"
249
+ authorized: Authorized
250
+ available_on: "Available On"
251
+ available_taxons: "Available Taxons"
252
+ awaiting_return: Awaiting Return
253
+ back: Back
254
+ back_end: Back End
255
+ back_to_store: "Go Back To Store"
256
+ backordered: Backordered
257
+ backordering_is_allowed: "Backordering %{not} allowed"
258
+ balance_due: "Balance Due"
259
+ best_selling_products: "Best Selling Products"
260
+ best_selling_taxons: "Best Selling Taxons"
261
+ both: Both
262
+ bill_address: "Bill Address"
263
+ billing: Billing
264
+ billing_address: "Billing Address"
265
+ by_day: "by day"
266
+ calculator: Calculator
267
+ calculator_settings_warning: "If you are changing the calculator type, you must save first before you can edit the calculator settings"
268
+ cancel: cancel
269
+ cancel_my_account: Cancel my account
270
+ cancel_my_account_description: "Unhappy?"
271
+ canceled: Canceled
272
+ cannot_create_returns: Cannot create returns as this order has not shipped yet.
273
+ cannot_destory_line_item_as_inventory_units_have_shipped: Cannot destory line item as some inventory units have shipped.
274
+ capture: Capture
275
+ card_code: "Card Code"
276
+ card_details: "Card details"
277
+ card_number: "Card Number"
278
+ card_type_is: Card type is
279
+ cart: Cart
280
+ categories: Categories
281
+ category: Category
282
+ change: Change
283
+ change_language: "Change Language"
284
+ change_my_password: "Change my password"
285
+ charge_total: Charge Total
286
+ charged: Charged
287
+ charges: Charges
288
+ checkout: Checkout
289
+ checkout_steps:
290
+ # keys correspond to Checkout state names:
291
+ address: Address
292
+ complete: Complete
293
+ confirm: Confirm
294
+ delivery: Delivery
295
+ payment: Payment
296
+ cheque: Cheque
297
+ city: City
298
+ clone: Clone
299
+ code: Code
300
+ combine: Combine
301
+ complete: complete
302
+ complete_list: "Complete List"
303
+ configuration: Configuration
304
+ configuration_options: "Configuration Options"
305
+ configurations: Configurations
306
+ configured: Configured
307
+ confirm: Confirm
308
+ confirm_delete: "Confirm Deletion"
309
+ confirm_password: "Password Confirmation"
310
+ continue: Continue
311
+ continue_shopping: "Continue shopping"
312
+ copy_all_mails_to: Copy All Mails To
313
+ cost_price: "Cost Price"
314
+ count: Count
315
+ count_of_reduced_by: "count of '%{name}' reduced by %{count}"
316
+ country: Country
317
+ country_based: "Country Based"
318
+ create: Create
319
+ create_a_new_account: "Create a new account"
320
+ create_product_group_from_products: Create a new product group from these products
321
+ create_user_account: Create User Account
322
+ created_successfully: "Created Successfully"
323
+ credit: Credit
324
+ credit_card: "Credit Card"
325
+ credit_card_capture_complete: "Credit Card Was Captured"
326
+ credit_card_payment: "Credit Card Payment"
327
+ credit_owed: "Credit Owed"
328
+ credit_total: Credit Total
329
+ creditcard: Creditcard
330
+ creditcards: Creditcards
331
+ credits: Credits
332
+ current: Current
333
+ customer: Customer
334
+ customer_details: "Customer Details"
335
+ customer_search: "Customer Search"
336
+ date_created: Date created
337
+ date_range: "Date Range"
338
+ debit: Debit
339
+ default: Default
340
+ delete: Delete
341
+ depth: Depth
342
+ description: Description
343
+ destroy: Destroy
344
+ didnt_receive_confirmation_instructions: "Didn't receive confirmation instructions?"
345
+ didnt_receive_unlock_instructions: "Didn't receive unlock instructions?"
346
+ display: Display
347
+ edit: Edit
348
+ editing_billing_integration: Editing Billing Integration
349
+ editing_category: "Editing Category"
350
+ editing_option_type: "Editing Option Type"
351
+ editing_option_types: "Editing Option Types"
352
+ editing_payment_method: Editing Payment Method
353
+ editing_product: "Editing Product"
354
+ editing_product_group: "Editing Product Group"
355
+ editing_property: "Editing Property"
356
+ editing_prototype: "Editing Prototype"
357
+ editing_shipping_category: "Editing Shipping Category"
358
+ editing_shipping_method: "Editing Shipping Method"
359
+ editing_state: "Editing State"
360
+ editing_tax_category: "Editing Tax Category"
361
+ editing_tax_rate: "Editing Tax Rate"
362
+ editing_tracker: Editing Tracker
363
+ editing_user: "Editing User"
364
+ editing_zone: "Editing Zone"
365
+ email: Email
366
+ email_address: "Email Address"
367
+ email_server_settings_description: "Set email server settings."
368
+ empty: "Empty"
369
+ empty_cart: "Empty Cart"
370
+ enable_login_via_login_password: "Use standard email/password"
371
+ enable_login_via_openid: "Use OpenID instead"
372
+ enable_mail_delivery: Enable Mail Delivery
373
+ enter_exactly_as_shown_on_card: Please enter exactly as shown on the card
374
+ enter_password_to_confirm: "(we need your current password to confirm your changes)"
375
+ environment: "Environment"
376
+ error: error
377
+ event: Event
378
+ existing_customer: "Existing Customer"
379
+ expiration: "Expiration"
380
+ expiration_month: "Expiration Month"
381
+ expiration_year: "Expiration Year"
382
+ extension: Extension
383
+ extensions: Extensions
384
+ front_end: Front End
385
+ filename: Filename
386
+ final_confirmation: "Final Confirmation"
387
+ finalize: Finalize
388
+ finalized_payments: Finalized Payments
389
+ first_item: First Item Cost
390
+ first_name: "First Name"
391
+ first_name_begins_with: "First Name Begins With"
392
+ flat_percent: "Flat Percent"
393
+ flat_rate_amount: Amount
394
+ flat_rate_per_item: "Flat Rate (per item)"
395
+ flat_rate_per_order: "Flat Rate (per order)"
396
+ flexible_rate: "Flexible Rate"
397
+ forgot_password: "Forgot Password?"
398
+ full_name: "Full Name"
399
+ gateway: Gateway
400
+ gateway_configuration: "Gateway configuration"
401
+ gateway_error: "Gateway Error"
402
+ gateway_setting_description: "Select a payment gateway and configure its settings."
403
+ gateway_settings_warning: "If you are changing the gateway type, you must save first before you can edit the gateway settings"
404
+ general: "General"
405
+ general_settings: "General Settings"
406
+ general_settings_description: "Configure general Spree settings."
407
+ google_analytics: "Google Analytics"
408
+ google_analytics_active: "Active"
409
+ google_analytics_create: "Create New Google Analytics Account"
410
+ google_analytics_id: "Analytics ID"
411
+ google_analytics_new: "New Google Analytics Account"
412
+ google_analytics_setting_description: "Manage Google Analytics ID"
413
+ guest_checkout: Guest Checkout
414
+ guest_user_account: Checkout as a Guest
415
+ has_no_shipped_units: has no shipped units
416
+ height: Height
417
+ hello_user: "Hello User"
418
+ history: History
419
+ home: "Home"
420
+ icon: "Icon"
421
+ icons_by: "Icons by"
422
+ image: Image
423
+ images: Images
424
+ images_for: "Images for"
425
+ in_progress: "In Progress"
426
+ include_in_shipment: Include in Shipment
427
+ included_in_other_shipment: Included in another Shipment
428
+ included_in_this_shipment: Included in this Shipment
429
+ instructions_to_reset_password: "Fill out the form below and instructions to reset your password will be emailed to you:"
430
+ integration_settings_warning: "If you are changing the billing integration, you must save first before you can edit the integration settings"
431
+ invalid_search: "Invalid search criteria."
432
+ inventory: Inventory
433
+ inventory_adjustment: "Inventory Adjustment"
434
+ inventory_setting_description: "Inventory Configuration, Backordering, Zero-Stock Display"
435
+ inventory_settings: "Inventory Settings"
436
+ is_not_available_to_shipment_address: is not available to shipment address
437
+ issue_number: Issue Number
438
+ item: Item
439
+ item_description: "Item Description"
440
+ item_total: "Item Total"
441
+ items: "Items"
442
+ last_14_days: "Last 14 Days"
443
+ last_5_orders: "Last 5 Orders"
444
+ last_7_days: "Last 7 Days"
445
+ last_month: "Last Month"
446
+ last_name: "Last Name"
447
+ last_name_begins_with: "Last Name Begins With"
448
+ last_year: "Last Year"
449
+ leave_blank_to_not_change: "(leave blank if you don't want to change it)"
450
+ list: List
451
+ listing_categories: "Listing Categories"
452
+ listing_option_types: "Listing Option Types"
453
+ listing_orders: "Listing Orders"
454
+ listing_product_groups: "Listing Product Groups"
455
+ listing_reports: "Listing Reports"
456
+ listing_tax_categories: "Listing Tax Categories"
457
+ listing_users: "Listing Users"
458
+ live: "Live"
459
+ loading: Loading
460
+ locale_changed: "Locale Changed"
461
+ log_in: "Log In"
462
+ logged_in_as: "Logged in as"
463
+ logged_in_succesfully: "Logged in successfully"
464
+ logged_out: "You have been logged out."
465
+ login_as_existing: "Log In as Existing Customer"
466
+ login_failed: "Login authentication failed."
467
+ login_name: Login
468
+ logout: Logout
469
+ look_for_similar_items: Look for similar items
470
+ maestro_or_solo_cards: Maestro/Solo cards
471
+ mail_delivery_enabled: "Mail delivery is enabled"
472
+ mail_delivery_not_enabled: "Mail delivery is not enabled"
473
+ mail_server_preferences: Mail Server Preferences
474
+ mail_server_settings: "Mail Server Settings"
475
+ make_refund: Make refund
476
+ mark_shipped: "Mark Shipped"
477
+ master_price: "Master Price"
478
+ max_items: Max Items
479
+ meta_description: "Meta Description"
480
+ meta_keywords: "Meta Keywords"
481
+ metadata: "Metadata"
482
+ missing_required_information: "Missing Required Information"
483
+ month: "Month"
484
+ my_account: "My Account"
485
+ my_orders: "My Orders"
486
+ name: Name
487
+ name_or_sku: "Name or SKU"
488
+ new: New
489
+ new_adjustment: "New Adjustment"
490
+ new_billing_integration: New Billing Integration
491
+ new_category: "New category"
492
+ new_customer: "New Customer"
493
+ new_image: "New Image"
494
+ new_option_type: "New Option Type"
495
+ new_option_value: "New Option Value"
496
+ new_order: "New Order"
497
+ new_order_completed: "New Order Completed"
498
+ new_payment: "New Payment"
499
+ new_payment_method: New Payment Method
500
+ new_product: "New Product"
501
+ new_product_group: New Product Group
502
+ new_property: "New Property"
503
+ new_prototype: "New Prototype"
504
+ new_return_authorization: New Return Authorization
505
+ new_shipment: "New Shipment"
506
+ new_shipping_category: "New Shipping Category"
507
+ new_shipping_method: "New Shipping Method"
508
+ new_state: "New State"
509
+ new_tax_category: "New Tax Category"
510
+ new_tax_rate: "New Tax Rate"
511
+ new_taxon: "New Taxon"
512
+ new_taxonomy: "New Taxonomy"
513
+ new_tracker: New Tracker
514
+ new_user: "New User"
515
+ new_variant: "New Variant"
516
+ new_zone: "New Zone"
517
+ next: Next
518
+ no_items_in_cart: ""
519
+ no_match_found: "No Match Found"
520
+ no_payment_methods_available: "Can't check out, no payment methods are configured for this environment"
521
+ no_products_found: "No products found"
522
+ no_results: "No results"
523
+ no_shipping_methods_available: "No shipping methods available, please change your address and try again."
524
+ no_user_found: "No user was found with that email address"
525
+ none: None
526
+ none_available: "None Available"
527
+ not: not
528
+ not_shown: "Not Shown"
529
+ note: Note
530
+ notice_messages:
531
+ option_type_removed: "Succesfully removed option type."
532
+ product_cloned: "Product has been cloned"
533
+ product_deleted: "Product has been deleted"
534
+ product_not_cloned: "Product could not be cloned"
535
+ product_not_deleted: "Product could not be deleted"
536
+ track_me_in_GA: "Track Me in GA"
537
+ variant_deleted: "Variant has been deleted"
538
+ variant_not_deleted: "Variant could not be deleted"
539
+ on_hand: "On Hand"
540
+ operation: Operation
541
+ option_Values: "Option Values"
542
+ option_types: "Option Types"
543
+ option_values: "Option Values"
544
+ options: Options
545
+ or: or
546
+ ord_qty: "Ord. Qty"
547
+ ord_total: "Ord. Total"
548
+ order: Order
549
+ order_confirmation_note: ""
550
+ order_date: "Order Date"
551
+ order_details: "Order Details"
552
+ order_email_resent: "Order Email Resent"
553
+ order_not_in_system: That order number is not valid on this site.
554
+ order_number: Order
555
+ order_operation_authorize: Authorize
556
+ order_processed_but_following_items_are_out_of_stock: "Your order has been processed, but following items are out of stock:"
557
+ order_processed_successfully: "Your order has been processed successfully"
558
+ order_summary: Order Summary
559
+ order_sure_want_to: "Are you sure you want to %{event} this order?"
560
+ order_total: "Order Total"
561
+ order_total_message: "The total amount charged to your card will be"
562
+ order_updated: "Order Updated"
563
+ orders: Orders
564
+ other_payment_options: Other Payment Options
565
+ out_of_stock: "Out of Stock"
566
+ out_of_stock_products: "Out of Stock Products"
567
+ over_paid: "Over Paid"
568
+ overview: Overview
569
+ overview_welcome: "Welcome to your store overview, currently we do not have enough data to display the Overiew Dashboard.<br/><br/> The dashboard will display automatically once the system has sufficent orders to allow generation of the statistics."
570
+ page_only_viewable_when_logged_in: You attempted to visit a page which can only be viewed when you are logged in
571
+ page_only_viewable_when_logged_out: You attempted to visit a page which can only be viewed when you are logged out
572
+ paid: Paid
573
+ parent_category: "Parent Category"
574
+ password: Password
575
+ password_reset_instructions: "Password Reset Instructions"
576
+ password_reset_instructions_are_mailed: "Instructions to reset your password have been emailed to you. Please check your email."
577
+ password_reset_token_not_found: "We're sorry, but we could not locate your account. If you are having issues try copying and pasting the URL from your email into your browser or restarting the reset password process."
578
+ password_updated: "Password successfully updated"
579
+ path: Path
580
+ pay: pay
581
+ payment: Payment
582
+ payment_gateway: "Payment Gateway"
583
+ payment_information: "Payment Information"
584
+ payment_method: Payment Method
585
+ payment_methods: Payment Methods
586
+ payment_methods_setting_description: Configure methods customers can use to pay
587
+ payment_updated: Payment Updated
588
+ payments: Payments
589
+ pending_payments: Pending Payments
590
+ permalink: Permalink
591
+ phone: Phone
592
+ place_order: Place Order
593
+ please_create_user: "Please create a user account"
594
+ powered_by: "Powered by"
595
+ presentation: Presentation
596
+ preview: Preview
597
+ previous: Previous
598
+ price: Price
599
+ price_with_vat_included: "%{price} (inc. VAT)"
600
+ problem_authorizing_card: "Problem authorizing credit card"
601
+ problem_capturing_card: "Problem capturing credit card"
602
+ problems_processing_order: "We had problems processing your order"
603
+ proceed_as_guest: "No Thanks, Proceed as Guest"
604
+ process: Process
605
+ product: Product
606
+ product_details: "Product Details"
607
+ product_group: Product Group
608
+ product_group_invalid: Product Group has invalid scopes
609
+ product_groups: Product Groups
610
+ product_has_no_description: This product has no description
611
+ product_properties: "Product Properties"
612
+ product_scopes:
613
+ groups:
614
+ price:
615
+ description: "Scopes for selecting products based on Price"
616
+ name: Price
617
+ search:
618
+ description: "Scopes for selecting products based on name, keywords and description of product"
619
+ name: "Text search"
620
+ taxon:
621
+ description: "Scopes for selecting products based on Taxons"
622
+ name: Taxon
623
+ values:
624
+ description: "Scopes for selecting products based on option and property values"
625
+ name: Values
626
+ scopes:
627
+ ascend_by_master_price:
628
+ name: Ascend by product master price
629
+ ascend_by_name:
630
+ name: Ascend by product name
631
+ ascend_by_updated_at:
632
+ name: Ascend by actualization date
633
+ descend_by_master_price:
634
+ name: Descend by product master price
635
+ descend_by_name:
636
+ name: Descend by product name
637
+ descend_by_popularity:
638
+ name: Sort by popularity(most popular first)
639
+ descend_by_updated_at:
640
+ name: Descend by actualization date
641
+ in_name:
642
+ args:
643
+ words: Words
644
+ description: "(separated by space or comma)"
645
+ name: "Product name have following"
646
+ sentence: product name contain <em>%s</em>
647
+ in_name_or_description:
648
+ args:
649
+ words: Words
650
+ description: "(separated by space or comma)"
651
+ name: "Product name or description have following"
652
+ sentence: name or description contain <em>%s</em>
653
+ in_name_or_keywords:
654
+ args:
655
+ words: Words
656
+ description: "(separated by space or comma)"
657
+ name: "Product name or meta keywords have following"
658
+ sentence: name or keywords contain <em>%s</em>
659
+ in_taxons:
660
+ args:
661
+ "taxon_names": "Taxon names"
662
+ description: "Taxon names have to be separated by comma or space(eg. adidas,shoes)"
663
+ name: "In taxons and all their descendants"
664
+ sentence: in <em>%s</em> and all their descendants
665
+ master_price_gte:
666
+ args:
667
+ amount: Amount
668
+ description: ""
669
+ name: "Master price greater or equal to"
670
+ sentence: price greater or equal to <em>%.2f</em>
671
+ master_price_lte:
672
+ args:
673
+ amount: Amount
674
+ description: ""
675
+ name: "Master price lesser or equal to"
676
+ sentence: price less or equal to <em>%.2f</em>
677
+ price_between:
678
+ args:
679
+ high: High
680
+ low: Low
681
+ description: ""
682
+ name: "Price between"
683
+ sentence: price between <em>%.2f</em> and <em>%.2f</em>
684
+ taxons_name_eq:
685
+ args:
686
+ taxon_name: "Taxon name"
687
+ description: "In specific taxon - without descendants"
688
+ name: "In Taxon(without descendants)"
689
+ sentence: in <em>%s</em>
690
+ with:
691
+ args:
692
+ value: Value
693
+ description: "Selects all products that have at least one variant that have specified value as either option or property (eg. red)"
694
+ name: With value
695
+ sentence: with value <em>%s</em>
696
+ with_ids:
697
+ args:
698
+ ids: IDs
699
+ description: "Select specific products"
700
+ name: Products with IDs
701
+ sentence: with IDs <em>%s</em>
702
+ with_option:
703
+ args:
704
+ option: Option
705
+ description: "Selects all products that have specified option(eg. color)"
706
+ name: "With option"
707
+ sentence: with option <em>%s</em>
708
+ with_option_value:
709
+ args:
710
+ option: Option
711
+ value: Value
712
+ description: "Selects all products that have at least one variant with specified option and value(eg. color:red)"
713
+ name: "With option and value"
714
+ sentence: with option <em>%s</em> and value <em>%s</em>
715
+ with_property:
716
+ args:
717
+ property: Property
718
+ description: "Selects all products that have specified property(eg. weight)"
719
+ name: "With property"
720
+ sentence: with property <em>%s</em>
721
+ with_property_value:
722
+ args:
723
+ property: Property
724
+ value: Value
725
+ description: "Selects all products that have at least one variant with specified property and value(eg. weight:10kg)"
726
+ name: "With property value"
727
+ sentence: with property <em>%s</em> and value <em>%s</em>
728
+ products: Products
729
+ products_with_zero_inventory_display: "Products with a zero inventory will %{not} be displayed"
730
+ properties: Properties
731
+ property: Property
732
+ prototype: Prototype
733
+ prototypes: Prototypes
734
+ provider: "Provider"
735
+ provider_settings_warning: "If you are changing the provider type, you must save first before you can edit the provider settings"
736
+ qty: Qty
737
+ quantity_shipped: Quantity Shipped
738
+ range: "Range"
739
+ rate: Rate
740
+ reason: Reason
741
+ recalculate_order_total: "Recalculate order total"
742
+ receive: receive
743
+ received: Received
744
+ refund: Refund
745
+ register: Register as a New User
746
+ register_or_guest: Checkout as Guest or Register
747
+ registration: Registration
748
+ remember_me: "Remember me"
749
+ remove: Remove
750
+ reports: Reports
751
+ required_for_solo_and_maestro: Required for Solo and Maestro cards.
752
+ resend: Resend
753
+ resend_confirmation_instructions: "Resend confirmation instructions"
754
+ resend_unlock_instructions: "Resend unlock instructions"
755
+ reset_password: "Reset my password"
756
+ resource_controller:
757
+ member_object_not_found: "Member object not found."
758
+ successfully_created: "Successfully created!"
759
+ successfully_removed: "Successfully removed!"
760
+ successfully_updated: "Successfully updated!"
761
+ response_code: "Response Code"
762
+ resume: "resume"
763
+ resumed: Resumed
764
+ return: return
765
+ return_authorization: Return Authorization
766
+ return_authorization_updated: Return authorization updated
767
+ return_authorizations: Return Authorizations
768
+ return_quantity: Return Quantity
769
+ returned: Returned
770
+ rma_number: RMA Number
771
+ rma_value: RMA Value
772
+ rma_credit: RMA Credit
773
+ roles: Roles
774
+ sales_tax: "Sales Tax"
775
+ sales_total: "Sales Total"
776
+ sales_total_for_all_orders: "Sales total for all orders"
777
+ sales_totals: "Sales Totals"
778
+ sales_totals_description: "Sales Total For All Orders"
779
+ save_and_continue: Save and Continue
780
+ save_preferences: Save Preferences
781
+ scope: Scope
782
+ scopes: Scopes
783
+ search: Search
784
+ search_results: "Search results for '%{keywords}'"
785
+ searching: Searching
786
+ secure_connection_type: Secure Connection Type
787
+ secure_creditcard: Secure Creditcard
788
+ select: Select
789
+ select_from_prototype: "Select From Prototype"
790
+ select_preferred_shipping_option: "Select preferred shipping option"
791
+ send_copy_of_all_mails_to: Send Copy of All Mails To
792
+ send_copy_of_orders_mails_to: Send Copy of Order Mails To
793
+ send_mails_as: Send Mails As
794
+ send_me_reset_password_instructions: "Send me reset password instructions"
795
+ send_order_mails_as: Send Order Mails As
796
+ server: Server
797
+ server_error: "The server returned an error"
798
+ settings: Settings
799
+ ship: ship
800
+ ship_address: "Ship Address"
801
+ shipment: Shipment
802
+ shipment_details: Shipment Details
803
+ shipment_number: "Shipment #"
804
+ shipment_updated: Shipment Updated
805
+ shipments: "Shipments"
806
+ shipped: Shipped
807
+ shipping: Shipping
808
+ shipping_address: "Shipping Address"
809
+ shipping_categories: "Shipping Categories"
810
+ shipping_categories_description: "Manage shipping categories to identify which products can be shipped via which method"
811
+ shipping_category: Shipping Category
812
+ shipping_cost: Cost
813
+ shipping_error: "Shipping Error"
814
+ shipping_instructions: "Shipping Instructions"
815
+ shipping_method: "Shipping Method"
816
+ shipping_methods: "Shipping Methods"
817
+ shipping_methods_description: "Manage shipping methods"
818
+ shipping_total: "Shipping Total"
819
+ shop_by_taxonomy: "Shop by %{taxonomy}"
820
+ shopping_cart: "Shopping Cart"
821
+ show: Show
822
+ show_active: "Show Active"
823
+ show_deleted: "Show Deleted"
824
+ show_incomplete_orders: "Show Incomplete Orders"
825
+ show_only_complete_orders: "Only show complete orders"
826
+ show_out_of_stock_products: "Show out-of-stock products"
827
+ show_price_inc_vat: "Show price including VAT"
828
+ showing_first_n: "Showing first %{n}"
829
+ sign_up: "Sign up"
830
+ site_name: "Site Name"
831
+ site_url: "Site URL"
832
+ sku: SKU
833
+ smtp: SMTP
834
+ smtp_authentication_type: SMTP Authentication Type
835
+ smtp_domain: SMTP Domain
836
+ smtp_mail_host: SMTP Mail Host
837
+ smtp_password: SMTP Password
838
+ smtp_port: SMTP Port
839
+ smtp_send_all_emails_as_from_following_address: "Send all mails as from the following address."
840
+ smtp_send_copy_of_orders_to_this_addresses: "Sends a copy of all order's mails to this address. For multiple addresses, separate with commas."
841
+ smtp_send_copy_to_this_addresses: "Sends a copy of all outgoing mails to this address. For multiple addresses, separate with commas."
842
+ smtp_send_order_mails_as_from_following_address: "Send orders mails as from the following address."
843
+ smtp_username: SMTP Username
844
+ sold: Sold
845
+ sort_ordering: "Sort ordering"
846
+ special_instructions: "Special Instructions"
847
+ spree:
848
+ date: Date
849
+ time: Time
850
+ ssl_will_be_used_in_development_and_test_modes: "SSL will be used in development and test mode if necessary."
851
+ ssl_will_be_used_in_production_mode: "SSL will be used in production mode"
852
+ ssl_will_not_be_used_in_development_and_test_modes: "SSL will not be used in development and test mode if necessary."
853
+ ssl_will_not_be_used_in_production_mode: "SSL will not be used in production mode"
854
+ start: Start
855
+ start_date: Valid from
856
+ state: State
857
+ state_based: "State Based"
858
+ state_setting_description: "Administer the list of states/provinces associated with each country."
859
+ states: States
860
+ status: Status
861
+ stop: Stop
862
+ store: Store
863
+ street_address: "Street Address"
864
+ street_address_2: "Street Address (cont'd)"
865
+ subtotal: Subtotal
866
+ subtract: Subtract
867
+ system: System
868
+ tax: Tax
869
+ tax_categories: "Tax Categories"
870
+ tax_categories_setting_description: "Set up tax categories to identify which products should be taxable."
871
+ tax_category: "Tax Category"
872
+ tax_rates: "Tax Rates"
873
+ tax_rates_description: Tax rates setup and configuration.
874
+ tax_settings: "Tax Settings"
875
+ tax_settings_description: Basic tax settings.
876
+ tax_total: "Tax Total"
877
+ tax_type: "Tax Type"
878
+ taxon: Taxon
879
+ taxon_edit: Edit Taxon
880
+ taxonomies: Taxonomies
881
+ taxonomies_setting_description: "Create and manage taxonomies"
882
+ taxonomy_edit: "Edit taxonomy"
883
+ taxonomy_tree_error: "The requested change has not been accepted and the tree has been returned to its previous state, please try again."
884
+ taxonomy_tree_instruction: "* Right click a child in the tree to access the menu for adding, deleting or sorting a child."
885
+ taxons: Taxons
886
+ test: "Test"
887
+ test_mode: Test Mode
888
+ thank_you_for_your_order: "Thank you for your business. Please print out a copy of this confirmation page for your records."
889
+ this_file_language: "English (US)"
890
+ this_month: "This Month"
891
+ this_year: "This Year"
892
+ thumbnail: "Thumbnail"
893
+ to_add_variants_you_must_first_define: "To add variants, you must first define"
894
+ top_grossing_products: "Top Grossing Products"
895
+ total: Total
896
+ tracking: Tracking
897
+ transaction: Transaction
898
+ transactions: Transactions
899
+ tree: Tree
900
+ try_again: "Try Again"
901
+ type: Type
902
+ type_to_search: Type to search
903
+ unable_ship_method: "Unable to generate shipping methods due to a server error."
904
+ unable_to_authorize_credit_card: "Unable to Authorize Credit Card"
905
+ unable_to_capture_credit_card: "Unable to Capture Credit Card"
906
+ unable_to_connect_to_gateway: "Unable to connect to gateway."
907
+ unable_to_save_order: "Unable to Save Order"
908
+ under_paid: "Under Paid"
909
+ units: "Units"
910
+ unrecognized_card_type: Unrecognized card type
911
+ update: Update
912
+ update_password: "Update my password and log me in"
913
+ updated_successfully: "Updated Successfully"
914
+ updating: Updating
915
+ usage_limit: Usage Limit
916
+ use_as_shipping_address: Use as Shipping Address
917
+ use_billing_address: Use Billing Address
918
+ use_different_shipping_address: "Use Different Shipping Address"
919
+ use_new_cc: "Use a new card"
920
+ user: User
921
+ user_account: User Account
922
+ user_created_successfully: "User created successfully"
923
+ user_details: "User Details"
924
+ users: Users
925
+ validation:
926
+ is_too_large: "is too large -- stock on hand cannot cover requested quantity!"
927
+ must_be_int: "must be an integer"
928
+ must_be_non_negative: "must be a non-negative value"
929
+ cannot_be_less_than_shipped_units: "cannot be less than the number of shipped units."
930
+ value: Value
931
+ variants: Variants
932
+ vat: "VAT"
933
+ version: Version
934
+ view_shipping_options: "View shipping options"
935
+ void: Void
936
+ website: Website
937
+ weight: Weight
938
+ welcome_to_sample_store: "Welcome to the sample store"
939
+ what_is_a_cvv: "What is a (CVV) Credit Card Code?"
940
+ what_is_this: "What's This?"
941
+ whats_this: "What's this"
942
+ width: Width
943
+ year: "Year"
944
+ you_have_been_logged_out: "You have been logged out."
945
+ your_cart_is_empty: "Your cart is empty"
946
+ zip: Zip
947
+ zone: Zone
948
+ zone_based: "Zone Based"
949
+ zone_setting_description: "Collections of countries, states or other zones to be used in various calculations."
950
+ zones: Zones