kylekthompson-shoppe 1.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +55 -0
- data/Rakefile +36 -0
- data/app/assets/images/shoppe/chosen-sprite.png +0 -0
- data/app/assets/images/shoppe/chosen-sprite@2x.png +0 -0
- data/app/assets/images/shoppe/document.svg +1 -0
- data/app/assets/images/shoppe/icons/bag.svg +1 -0
- data/app/assets/images/shoppe/icons/balance.svg +1 -0
- data/app/assets/images/shoppe/icons/box.svg +1 -0
- data/app/assets/images/shoppe/icons/building.svg +1 -0
- data/app/assets/images/shoppe/icons/chart.svg +1 -0
- data/app/assets/images/shoppe/icons/chat.svg +1 -0
- data/app/assets/images/shoppe/icons/checkbox.svg +1 -0
- data/app/assets/images/shoppe/icons/checkbox2.svg +1 -0
- data/app/assets/images/shoppe/icons/cloud.svg +1 -0
- data/app/assets/images/shoppe/icons/cone.svg +1 -0
- data/app/assets/images/shoppe/icons/credit_card.svg +1 -0
- data/app/assets/images/shoppe/icons/currency.svg +1 -0
- data/app/assets/images/shoppe/icons/edit.svg +14 -0
- data/app/assets/images/shoppe/icons/flowchart.svg +1 -0
- data/app/assets/images/shoppe/icons/gift.svg +1 -0
- data/app/assets/images/shoppe/icons/globe.svg +1 -0
- data/app/assets/images/shoppe/icons/id.svg +1 -0
- data/app/assets/images/shoppe/icons/id2.svg +1 -0
- data/app/assets/images/shoppe/icons/locked.svg +1 -0
- data/app/assets/images/shoppe/icons/report.svg +1 -0
- data/app/assets/images/shoppe/icons/search.svg +1 -0
- data/app/assets/images/shoppe/icons/support.svg +1 -0
- data/app/assets/images/shoppe/icons/tags.svg +1 -0
- data/app/assets/images/shoppe/icons/toolbox.svg +1 -0
- data/app/assets/images/shoppe/icons/unlocked.svg +1 -0
- data/app/assets/images/shoppe/icons/wallet.svg +1 -0
- data/app/assets/images/shoppe/logo.svg +47 -0
- data/app/assets/images/shoppe/move.svg +1 -0
- data/app/assets/images/shoppe/shoppe.svg +25 -0
- data/app/assets/images/shoppe/square.svg +9 -0
- data/app/assets/images/shoppe/statuses/accepted.svg +14 -0
- data/app/assets/images/shoppe/statuses/paid.svg +16 -0
- data/app/assets/images/shoppe/statuses/received.svg +15 -0
- data/app/assets/images/shoppe/statuses/rejected.svg +14 -0
- data/app/assets/images/shoppe/statuses/shipped.svg +14 -0
- data/app/assets/images/shoppe/table-tear-off.png +0 -0
- data/app/assets/javascripts/shoppe/application.coffee +123 -0
- data/app/assets/javascripts/shoppe/chosen.jquery.js +1166 -0
- data/app/assets/javascripts/shoppe/jquery_ui.js +6 -0
- data/app/assets/javascripts/shoppe/mousetrap.js +9 -0
- data/app/assets/javascripts/shoppe/order_form.coffee +47 -0
- data/app/assets/stylesheets/shoppe/application.scss +601 -0
- data/app/assets/stylesheets/shoppe/chosen.scss +424 -0
- data/app/assets/stylesheets/shoppe/dialog.scss +25 -0
- data/app/assets/stylesheets/shoppe/elements.scss +79 -0
- data/app/assets/stylesheets/shoppe/printable.scss +67 -0
- data/app/assets/stylesheets/shoppe/reset.scss +93 -0
- data/app/assets/stylesheets/shoppe/sub.scss +106 -0
- data/app/assets/stylesheets/shoppe/variables.scss +1 -0
- data/app/controllers/shoppe/addresses_controller.rb +47 -0
- data/app/controllers/shoppe/application_controller.rb +46 -0
- data/app/controllers/shoppe/attachments_controller.rb +14 -0
- data/app/controllers/shoppe/countries_controller.rb +47 -0
- data/app/controllers/shoppe/customers_controller.rb +55 -0
- data/app/controllers/shoppe/dashboard_controller.rb +9 -0
- data/app/controllers/shoppe/delivery_service_prices_controller.rb +45 -0
- data/app/controllers/shoppe/delivery_services_controller.rb +47 -0
- data/app/controllers/shoppe/orders_controller.rb +119 -0
- data/app/controllers/shoppe/payments_controller.rb +33 -0
- data/app/controllers/shoppe/product_categories_controller.rb +47 -0
- data/app/controllers/shoppe/product_category_localisations_controller.rb +58 -0
- data/app/controllers/shoppe/product_localisations_controller.rb +58 -0
- data/app/controllers/shoppe/products_controller.rb +58 -0
- data/app/controllers/shoppe/sessions_controller.rb +34 -0
- data/app/controllers/shoppe/settings_controller.rb +16 -0
- data/app/controllers/shoppe/stock_level_adjustments_controller.rb +40 -0
- data/app/controllers/shoppe/tax_rates_controller.rb +49 -0
- data/app/controllers/shoppe/users_controller.rb +53 -0
- data/app/controllers/shoppe/variants_controller.rb +50 -0
- data/app/helpers/shoppe/application_helper.rb +60 -0
- data/app/helpers/shoppe/product_category_helper.rb +36 -0
- data/app/mailers/shoppe/order_mailer.rb +25 -0
- data/app/mailers/shoppe/user_mailer.rb +10 -0
- data/app/models/shoppe/address.rb +44 -0
- data/app/models/shoppe/country.rb +27 -0
- data/app/models/shoppe/customer.rb +41 -0
- data/app/models/shoppe/delivery_service.rb +33 -0
- data/app/models/shoppe/delivery_service_price.rb +31 -0
- data/app/models/shoppe/order.rb +100 -0
- data/app/models/shoppe/order/actions.rb +94 -0
- data/app/models/shoppe/order/billing.rb +105 -0
- data/app/models/shoppe/order/delivery.rb +229 -0
- data/app/models/shoppe/order/states.rb +69 -0
- data/app/models/shoppe/order_item.rb +239 -0
- data/app/models/shoppe/payment.rb +86 -0
- data/app/models/shoppe/product.rb +189 -0
- data/app/models/shoppe/product/product_attributes.rb +20 -0
- data/app/models/shoppe/product/variants.rb +51 -0
- data/app/models/shoppe/product_attribute.rb +66 -0
- data/app/models/shoppe/product_categorization.rb +14 -0
- data/app/models/shoppe/product_category.rb +75 -0
- data/app/models/shoppe/setting.rb +68 -0
- data/app/models/shoppe/stock_level_adjustment.rb +19 -0
- data/app/models/shoppe/tax_rate.rb +46 -0
- data/app/models/shoppe/user.rb +49 -0
- data/app/validators/permalink_validator.rb +7 -0
- data/app/views/layouts/shoppe/application.html.haml +34 -0
- data/app/views/layouts/shoppe/printable.html.haml +11 -0
- data/app/views/layouts/shoppe/sub.html.haml +10 -0
- data/app/views/shoppe/addresses/_form.html.haml +33 -0
- data/app/views/shoppe/addresses/edit.html.haml +5 -0
- data/app/views/shoppe/addresses/new.html.haml +5 -0
- data/app/views/shoppe/countries/_form.html.haml +35 -0
- data/app/views/shoppe/countries/edit.html.haml +6 -0
- data/app/views/shoppe/countries/index.html.haml +25 -0
- data/app/views/shoppe/countries/new.html.haml +7 -0
- data/app/views/shoppe/customers/_addresses.html.haml +20 -0
- data/app/views/shoppe/customers/_form.html.haml +30 -0
- data/app/views/shoppe/customers/_search_form.html.haml +13 -0
- data/app/views/shoppe/customers/edit.html.haml +5 -0
- data/app/views/shoppe/customers/index.html.haml +32 -0
- data/app/views/shoppe/customers/new.html.haml +5 -0
- data/app/views/shoppe/customers/show.html.haml +53 -0
- data/app/views/shoppe/delivery_service_prices/_form.html.haml +44 -0
- data/app/views/shoppe/delivery_service_prices/edit.html.haml +6 -0
- data/app/views/shoppe/delivery_service_prices/index.html.haml +23 -0
- data/app/views/shoppe/delivery_service_prices/new.html.haml +6 -0
- data/app/views/shoppe/delivery_services/_form.html.haml +38 -0
- data/app/views/shoppe/delivery_services/edit.html.haml +9 -0
- data/app/views/shoppe/delivery_services/index.html.haml +27 -0
- data/app/views/shoppe/delivery_services/new.html.haml +6 -0
- data/app/views/shoppe/order_mailer/accepted.text.erb +12 -0
- data/app/views/shoppe/order_mailer/received.text.erb +9 -0
- data/app/views/shoppe/order_mailer/rejected.text.erb +10 -0
- data/app/views/shoppe/order_mailer/shipped.text.erb +16 -0
- data/app/views/shoppe/orders/_form.html.haml +58 -0
- data/app/views/shoppe/orders/_order_details.html.haml +57 -0
- data/app/views/shoppe/orders/_order_items.html.haml +38 -0
- data/app/views/shoppe/orders/_order_items_form.html.haml +61 -0
- data/app/views/shoppe/orders/_payments_form.html.haml +15 -0
- data/app/views/shoppe/orders/_payments_table.html.haml +37 -0
- data/app/views/shoppe/orders/_search_form.html.haml +24 -0
- data/app/views/shoppe/orders/_status_bar.html.haml +35 -0
- data/app/views/shoppe/orders/despatch_note.html.haml +45 -0
- data/app/views/shoppe/orders/edit.html.haml +21 -0
- data/app/views/shoppe/orders/index.html.haml +39 -0
- data/app/views/shoppe/orders/new.html.haml +14 -0
- data/app/views/shoppe/orders/show.html.haml +25 -0
- data/app/views/shoppe/payments/refund.html.haml +13 -0
- data/app/views/shoppe/product_categories/_form.html.haml +50 -0
- data/app/views/shoppe/product_categories/edit.html.haml +8 -0
- data/app/views/shoppe/product_categories/index.html.haml +27 -0
- data/app/views/shoppe/product_categories/new.html.haml +6 -0
- data/app/views/shoppe/product_category_localisations/form.html.haml +29 -0
- data/app/views/shoppe/product_category_localisations/index.html.haml +26 -0
- data/app/views/shoppe/product_localisations/form.html.haml +32 -0
- data/app/views/shoppe/product_localisations/index.html.haml +26 -0
- data/app/views/shoppe/products/_form.html.haml +118 -0
- data/app/views/shoppe/products/_table.html.haml +42 -0
- data/app/views/shoppe/products/edit.html.haml +9 -0
- data/app/views/shoppe/products/import.html.haml +67 -0
- data/app/views/shoppe/products/index.html.haml +9 -0
- data/app/views/shoppe/products/new.html.haml +7 -0
- data/app/views/shoppe/sessions/new.html.haml +12 -0
- data/app/views/shoppe/sessions/reset.html.haml +12 -0
- data/app/views/shoppe/settings/edit.html.haml +19 -0
- data/app/views/shoppe/shared/error.html.haml +6 -0
- data/app/views/shoppe/stock_level_adjustments/index.html.haml +40 -0
- data/app/views/shoppe/tax_rates/form.html.haml +28 -0
- data/app/views/shoppe/tax_rates/index.html.haml +17 -0
- data/app/views/shoppe/user_mailer/new_password.text.erb +9 -0
- data/app/views/shoppe/users/_form.html.haml +27 -0
- data/app/views/shoppe/users/edit.html.haml +5 -0
- data/app/views/shoppe/users/index.html.haml +17 -0
- data/app/views/shoppe/users/new.html.haml +7 -0
- data/app/views/shoppe/variants/form.html.haml +68 -0
- data/app/views/shoppe/variants/index.html.haml +33 -0
- data/config/locales/de.yml +653 -0
- data/config/locales/en.yml +744 -0
- data/config/locales/es.yml +653 -0
- data/config/locales/pl.yml +662 -0
- data/config/locales/pt-BR.yml +655 -0
- data/config/routes.rb +53 -0
- data/db/countries.txt +252 -0
- data/db/migrate/20130926094549_create_shoppe_initial_schema.rb +175 -0
- data/db/migrate/20131024201501_add_address_type_to_shoppe_tax_rates.rb +5 -0
- data/db/migrate/20131024204815_create_shoppe_payments.rb +32 -0
- data/db/migrate/20131102143930_remove_default_on_order_item_weight.rb +9 -0
- data/db/migrate/20141013192427_create_shoppe_customers.rb +14 -0
- data/db/migrate/20141026175622_add_indexes_to_shoppe_order_items.rb +6 -0
- data/db/migrate/20141026175943_add_indexes_to_shoppe_orders.rb +7 -0
- data/db/migrate/20141026180333_add_indexes_to_shoppe_payments.rb +6 -0
- data/db/migrate/20141026180835_add_indexes_to_shoppe_product_attributes.rb +7 -0
- data/db/migrate/20141026180952_add_indexes_to_shoppe_product_categories.rb +5 -0
- data/db/migrate/20141026181040_add_indexes_to_shoppe_products.rb +8 -0
- data/db/migrate/20141026181312_add_indexes_to_shoppe_settings.rb +5 -0
- data/db/migrate/20141026181354_add_indexes_to_shoppe_stock_level_adjustments.rb +6 -0
- data/db/migrate/20141026181559_add_indexes_to_shoppe_users.rb +5 -0
- data/db/migrate/20141026181716_add_indexes_to_shoppe_delivery_services.rb +9 -0
- data/db/migrate/20141026181717_allow_multiple_shoppe_products_per_shoppe_product_category.rb +46 -0
- data/db/migrate/20141026181718_add_nested_to_product_categories.rb +30 -0
- data/db/migrate/20141027215005_create_shoppe_addresses.rb +17 -0
- data/db/migrate/20150315215633_add_customer_to_shoppe_orders.rb +5 -0
- data/db/migrate/20150513171350_create_shoppe_product_category_translation_table.rb +17 -0
- data/db/migrate/20150519173350_create_shoppe_product_translation_table.rb +18 -0
- data/db/schema.rb +308 -0
- data/db/seeds.rb +137 -0
- data/db/seeds_data/poe400.jpg +0 -0
- data/db/seeds_data/snom-870-blk.jpg +0 -0
- data/db/seeds_data/snom-870-grey.jpg +0 -0
- data/db/seeds_data/snom-mm2.jpg +0 -0
- data/db/seeds_data/spa303.jpg +0 -0
- data/db/seeds_data/t18p.jpg +0 -0
- data/db/seeds_data/t20p.jpg +0 -0
- data/db/seeds_data/t22p.jpg +0 -0
- data/db/seeds_data/t26p.jpg +0 -0
- data/db/seeds_data/t41pn.jpg +0 -0
- data/db/seeds_data/t46gn.jpg +0 -0
- data/db/seeds_data/w52p.jpg +0 -0
- data/db/seeds_data/yhs32.jpg +0 -0
- data/lib/shoppe.rb +60 -0
- data/lib/shoppe/associated_countries.rb +20 -0
- data/lib/shoppe/country_importer.rb +15 -0
- data/lib/shoppe/default_navigation.rb +21 -0
- data/lib/shoppe/engine.rb +55 -0
- data/lib/shoppe/error.rb +21 -0
- data/lib/shoppe/errors/inappropriate_delivery_service.rb +6 -0
- data/lib/shoppe/errors/insufficient_stock_to_fulfil.rb +15 -0
- data/lib/shoppe/errors/invalid_configuration.rb +6 -0
- data/lib/shoppe/errors/not_enough_stock.rb +15 -0
- data/lib/shoppe/errors/payment_declined.rb +6 -0
- data/lib/shoppe/errors/refund_failed.rb +6 -0
- data/lib/shoppe/errors/unorderable_item.rb +6 -0
- data/lib/shoppe/navigation_manager.rb +81 -0
- data/lib/shoppe/orderable_item.rb +39 -0
- data/lib/shoppe/settings.rb +26 -0
- data/lib/shoppe/settings_loader.rb +16 -0
- data/lib/shoppe/setup_generator.rb +10 -0
- data/lib/shoppe/version.rb +3 -0
- data/lib/shoppe/view_helpers.rb +16 -0
- data/lib/tasks/shoppe.rake +29 -0
- metadata +662 -0
@@ -0,0 +1,744 @@
|
|
1
|
+
en:
|
2
|
+
activerecord:
|
3
|
+
models:
|
4
|
+
shoppe/country:
|
5
|
+
one: Country
|
6
|
+
other: Countries
|
7
|
+
shoppe/delivery_service:
|
8
|
+
one: Delivery service
|
9
|
+
other: Delivery services
|
10
|
+
shoppe/delivery_service_price:
|
11
|
+
one: Delivery service price
|
12
|
+
other: Delivery service prices
|
13
|
+
shoppe/order:
|
14
|
+
one: Order
|
15
|
+
other: Orders
|
16
|
+
shoppe/order_item:
|
17
|
+
one: Order item
|
18
|
+
other: Order items
|
19
|
+
shoppe/payment:
|
20
|
+
one: Payment
|
21
|
+
other: Payments
|
22
|
+
shoppe/product:
|
23
|
+
one: Product
|
24
|
+
other: Products
|
25
|
+
shoppe/product_attribute:
|
26
|
+
one: Product attribute
|
27
|
+
other: Product attributes
|
28
|
+
shoppe/product_category:
|
29
|
+
one: Product category
|
30
|
+
other: Product categories
|
31
|
+
shoppe/setting:
|
32
|
+
one: Setting
|
33
|
+
other: Settings
|
34
|
+
shoppe/stock_level_adjustment:
|
35
|
+
one: Stock Level Adjustment
|
36
|
+
other: Stock Level Adjustments
|
37
|
+
shoppe/tax_rate:
|
38
|
+
one: Tax Rate
|
39
|
+
other: Tax Rates
|
40
|
+
shoppe/user:
|
41
|
+
one: User
|
42
|
+
other: Users
|
43
|
+
|
44
|
+
attributes:
|
45
|
+
shoppe/order:
|
46
|
+
billing_address1: Billing address1
|
47
|
+
billing_address3: Billing address3
|
48
|
+
billing_address4: Billing address4
|
49
|
+
billing_country: Billing country
|
50
|
+
billing_postcode: Billing postcode
|
51
|
+
delivery_address1: Delivery address1
|
52
|
+
delivery_address3: Delivery address3
|
53
|
+
delivery_address4: Delivery address4
|
54
|
+
delivery_country: Delivery country
|
55
|
+
delivery_name: Delivery name
|
56
|
+
delivery_service_id: Delivery service
|
57
|
+
delivery_postcode: Delivery postcode
|
58
|
+
email_address: E-Mail address
|
59
|
+
first_name: First name
|
60
|
+
last_name: Last name
|
61
|
+
phone_number: Phone number
|
62
|
+
status: Status
|
63
|
+
token: Token
|
64
|
+
shoppe/country:
|
65
|
+
name: Name
|
66
|
+
shoppe/delivery_service:
|
67
|
+
name: Name
|
68
|
+
courier: Courier
|
69
|
+
shoppe/delivery_service_price:
|
70
|
+
code: Code
|
71
|
+
cost_price: Cost price
|
72
|
+
max_weight: Max weight
|
73
|
+
min_weight: Min weight
|
74
|
+
price: Price
|
75
|
+
shoppe/order_item:
|
76
|
+
ordered_item: Ordered Item
|
77
|
+
quantity: Quantity
|
78
|
+
shoppe/payment:
|
79
|
+
amount: Amount
|
80
|
+
method: Method
|
81
|
+
reference: Reference
|
82
|
+
shoppe/product:
|
83
|
+
cost_price: Cost price
|
84
|
+
description: Description
|
85
|
+
name: Name
|
86
|
+
permalink: Permalink
|
87
|
+
price: Price
|
88
|
+
short_description: Short description
|
89
|
+
sku: SKU
|
90
|
+
weight: Weight
|
91
|
+
shoppe/product_attribute:
|
92
|
+
key: Key
|
93
|
+
shoppe/product_category:
|
94
|
+
name: Name
|
95
|
+
permalink: Permalink
|
96
|
+
shoppe/setting:
|
97
|
+
key: Key
|
98
|
+
value: Value
|
99
|
+
value_type: Value type
|
100
|
+
shoppe/stock_level_adjustment:
|
101
|
+
adjustment: Adjustment
|
102
|
+
description: Description
|
103
|
+
must_be_greater_or_equal_zero: must be greater or less than zero
|
104
|
+
shoppe/tax_rate:
|
105
|
+
address_type: Address type
|
106
|
+
name: Name
|
107
|
+
rate: Rate
|
108
|
+
shoppe/user:
|
109
|
+
email_address: E-Mail address
|
110
|
+
first_name: First name
|
111
|
+
last_name: Last name
|
112
|
+
password: Password
|
113
|
+
password_confirmation: Password confirmation
|
114
|
+
errors:
|
115
|
+
template:
|
116
|
+
body: ! 'There were problems with the following fields:'
|
117
|
+
header:
|
118
|
+
one: 1 error prohibited this %{model} from being saved
|
119
|
+
many: ! '%{count} errors prohibited this %{model} from being saved'
|
120
|
+
other: ! '%{count} errors prohibited this %{model} from being saved'
|
121
|
+
models:
|
122
|
+
shoppe/product_category:
|
123
|
+
attributes:
|
124
|
+
permalink:
|
125
|
+
wrong_format: "can only contain letters, numbers, - and _"
|
126
|
+
shoppe/delivery:
|
127
|
+
attributes:
|
128
|
+
delivery_service_id:
|
129
|
+
must_be_specified: must be specified
|
130
|
+
not_suitable: is not suitable for this order
|
131
|
+
shoppe/order:
|
132
|
+
attributes:
|
133
|
+
delivery_service_id:
|
134
|
+
must_be_specified: Must be specified
|
135
|
+
shoppe/product:
|
136
|
+
attributes:
|
137
|
+
permalink:
|
138
|
+
wrong_format: "can only contain letters, numbers, - and _"
|
139
|
+
base:
|
140
|
+
can_belong_to_root: can only belong to a root product
|
141
|
+
shoppe/order_item:
|
142
|
+
attributes:
|
143
|
+
quantity:
|
144
|
+
too_high_quantity: is too high for the quantity in stock
|
145
|
+
shoppe/payment:
|
146
|
+
refund_failed: "Refunds must be less than the payment (%{refundable_amount})"
|
147
|
+
|
148
|
+
will_paginate:
|
149
|
+
next_label: "Next →"
|
150
|
+
page_gap: "…"
|
151
|
+
previous_label: "← Previous"
|
152
|
+
|
153
|
+
page_entries_info:
|
154
|
+
|
155
|
+
single_page:
|
156
|
+
zero: "No %{model} found"
|
157
|
+
one: "Displaying 1 %{model}"
|
158
|
+
other: "Displaying all %{count} %{model}"
|
159
|
+
|
160
|
+
single_page_html:
|
161
|
+
zero: "No %{model} found"
|
162
|
+
one_html: "Displaying <b>1</b> %{model}"
|
163
|
+
other_html: "Displaying <b>all %{count}</b> %{model}"
|
164
|
+
|
165
|
+
multi_page: "Displaying %{model} %{from} - %{to} of %{count} in total"
|
166
|
+
multi_page_html: "Displaying %{model} <b>%{from} - %{to}</b> of <b>%{count}</b> in total"
|
167
|
+
|
168
|
+
helpers:
|
169
|
+
number_to_weight:
|
170
|
+
kg: kg
|
171
|
+
page_entries_info:
|
172
|
+
one_page:
|
173
|
+
display_entries: Display Entries
|
174
|
+
attachment_preview:
|
175
|
+
delete: Delete
|
176
|
+
delete_confirm: Are you sure you wish to remove this attachment?
|
177
|
+
no_attachment: No attachment
|
178
|
+
|
179
|
+
shoppe:
|
180
|
+
|
181
|
+
# common
|
182
|
+
cancel: Cancel
|
183
|
+
close: Close
|
184
|
+
delete: Delete
|
185
|
+
edit: Edit
|
186
|
+
import: Import
|
187
|
+
remove: Remove
|
188
|
+
|
189
|
+
removed_it: "%{it} has been removed successfully"
|
190
|
+
save_settings: Save Settings
|
191
|
+
separate_delivery_address: Separate delivery address
|
192
|
+
service_available: Service will be available for use
|
193
|
+
service_default: Service will be used by default (if possible)
|
194
|
+
settings_title: Settings
|
195
|
+
settings_not_in_demo: You cannot make changes to settings in demo mode. Sorry about that.
|
196
|
+
set_prices: Set Prices
|
197
|
+
shoppe_back: Back to Shoppe
|
198
|
+
sku: SKU
|
199
|
+
status: Status
|
200
|
+
stock: Stock
|
201
|
+
stock_current: Current stock level is
|
202
|
+
stock_control: Stock Control
|
203
|
+
stock_control_enable: Enable stock control for this product?
|
204
|
+
stock_levels: Stock levels
|
205
|
+
stock_levels_for: Stock levels %{item}
|
206
|
+
stock_none: No stock
|
207
|
+
system_settings: System settings
|
208
|
+
tax_rate: Tax rate
|
209
|
+
tax_rate_apply_to: Apply to orders where the %{to} matches one of the countries below
|
210
|
+
tax_rate_delete_confirm: Are you sure you wish to remove this tax_rate?
|
211
|
+
tax_rate_details: Rate Details
|
212
|
+
tax_rate_new: New tax rate
|
213
|
+
tax_rate_note: Do NOT edit tax rates that are already in use.
|
214
|
+
Care should be taken when editing tax rates, as this may affect existing orders.
|
215
|
+
while creating a new tax rate, you must delete it and create a new one. When you delete a tax rate
|
216
|
+
it is not removed from the system, only deactivated, so existing orders stay unaffected.
|
217
|
+
tax_rates: Tax Rates
|
218
|
+
tax_rates_back: Back to tax rates
|
219
|
+
tax_none: No tax
|
220
|
+
telephone: Telephone
|
221
|
+
total: Total
|
222
|
+
total_weight: Total weight
|
223
|
+
tracking_url: Tracking URL
|
224
|
+
unknown: Unknown
|
225
|
+
updated_it: "%{it} has been updated successfully"
|
226
|
+
users: Users
|
227
|
+
users_back: Back to users
|
228
|
+
user_delete_confirm: Are you sure you wish to remove this user?
|
229
|
+
user_details: User Details
|
230
|
+
user: User
|
231
|
+
user_edit: Edit user
|
232
|
+
user_new: New User
|
233
|
+
user_not_in_demo: You cannot make changes to users in demo mode. Sorry about that.
|
234
|
+
user_not_yourself: You cannot remove yourself
|
235
|
+
variants: Variants
|
236
|
+
variants_back: Back to variants
|
237
|
+
variants_of: Variants of %{product}
|
238
|
+
variant_delete_confirm: Are you sure you wish to remove this variant?
|
239
|
+
variant_of: Variant of %{product}
|
240
|
+
variant_new: New variant
|
241
|
+
variant_save: Save Variant
|
242
|
+
value: Value
|
243
|
+
website_properties: Website Properties
|
244
|
+
weight: Weight
|
245
|
+
weight_allowance: Weight Allowance
|
246
|
+
|
247
|
+
submit: Submit
|
248
|
+
|
249
|
+
attachments:
|
250
|
+
remove_notice: Attachment removed successfully
|
251
|
+
|
252
|
+
countries:
|
253
|
+
back: Back to countries
|
254
|
+
continent: Continent
|
255
|
+
countries: Countries
|
256
|
+
country_details: Country details
|
257
|
+
create_notice: Country has been created successfully
|
258
|
+
delete_confirmation: Are you sure you wish to remove this country?
|
259
|
+
destroy_notice: Country has been removed successfully
|
260
|
+
eu?: EU?
|
261
|
+
eu_member: EU Member?
|
262
|
+
is_eu_member: Country is an EU member?
|
263
|
+
iso_alpha_2: ISO 3166-1-alpha-2
|
264
|
+
iso_alpha_3: ISO 3166-1-alpha-3
|
265
|
+
name: Name
|
266
|
+
new_country: New country
|
267
|
+
tld: TLD
|
268
|
+
update_notice: Country has been updated successfully
|
269
|
+
|
270
|
+
delivery_service_prices:
|
271
|
+
all_countries: All Countries
|
272
|
+
back: Back to prices
|
273
|
+
back_to_delivery_services: Back to delivery services
|
274
|
+
code: Code
|
275
|
+
cost: Cost
|
276
|
+
cost_price: Cost price
|
277
|
+
countries: Countries
|
278
|
+
create_notice: Price has been created successfully
|
279
|
+
delivery_services: Delivery Services
|
280
|
+
destroy_notice: Price has been removed successfully
|
281
|
+
identification_weight: Identification & Weight
|
282
|
+
max_weight: Max weight
|
283
|
+
min_weight: Min weight
|
284
|
+
new_price: New price
|
285
|
+
no_tax: No tax
|
286
|
+
price: Price
|
287
|
+
pricing: Pricing
|
288
|
+
pricing_for: "Delivery Pricing for %{delivery_name}"
|
289
|
+
tax_rate: Tax rate
|
290
|
+
update_notice: Price has been updated successfully
|
291
|
+
weight_allowance: Weight Allowance
|
292
|
+
|
293
|
+
help:
|
294
|
+
countries: This delivery rate will only be available to orders where the country selected is listed here.
|
295
|
+
|
296
|
+
delivery_services:
|
297
|
+
active?: Active?
|
298
|
+
active: Active
|
299
|
+
active_info: Service will be available for use
|
300
|
+
back: Back to delivery services
|
301
|
+
code: Code
|
302
|
+
courier: Courier
|
303
|
+
courier_name: Courier name
|
304
|
+
create_notice: Delivery Service has been created successfully
|
305
|
+
default?: Default?
|
306
|
+
default: Default
|
307
|
+
default_info: Service will be used by default (if possible)
|
308
|
+
delivery_services: Delivery Services
|
309
|
+
destroy_notice: Delivery Service has been removed successfully
|
310
|
+
delete_confirmation: Are you sure you wish to remove this delivery service?
|
311
|
+
details: Details
|
312
|
+
name: Name
|
313
|
+
new: New delivery service
|
314
|
+
no_services: No delivery services to display.
|
315
|
+
prices: Prices
|
316
|
+
set_prices: Set Prices
|
317
|
+
tracking_url: Tracking URL
|
318
|
+
tracking_url_help_html: Use <code>{{consignment_number}}</code> to insert the consignment number.
|
319
|
+
update_notice: Delivery Service has been updated successfully
|
320
|
+
|
321
|
+
imports:
|
322
|
+
example_file: Example Format
|
323
|
+
file_upload: File for Import
|
324
|
+
required_formats: Must be csv, xls or xlsx.
|
325
|
+
errors:
|
326
|
+
no_file: No file chosen for import
|
327
|
+
unknown_format: "Unknown file format: %{filename}"
|
328
|
+
|
329
|
+
orders:
|
330
|
+
accept: Accept
|
331
|
+
accept_notice: Order has been accepted successfully
|
332
|
+
add_payment: Add payment
|
333
|
+
add_item: Add an item
|
334
|
+
address: Address
|
335
|
+
amount: Amount
|
336
|
+
back_to_order: Back to order
|
337
|
+
back_to_orders: Back to orders
|
338
|
+
billing_address: Billing Address
|
339
|
+
billing_delivery_address: Billing/Delivery Address
|
340
|
+
build_time: Build time
|
341
|
+
company: Company
|
342
|
+
consignment_number: Consignment Number
|
343
|
+
cost: Cost
|
344
|
+
country: Country
|
345
|
+
create_order: Create order
|
346
|
+
create_notice: Order has been created successfully
|
347
|
+
customer: Customer
|
348
|
+
delivery_address: Delivery address
|
349
|
+
delivery_name: Delivery name
|
350
|
+
edit_order: Edit order
|
351
|
+
email_address: E-Mail address
|
352
|
+
first_name: First name
|
353
|
+
from_payment: from payment
|
354
|
+
id: ID
|
355
|
+
in_progress_warning: This order is still being built by the customer in your store. At present you can only view the items which are within the order.
|
356
|
+
invoice_number: Invoice number
|
357
|
+
insufficient_stock_order: "Insufficient stock to order %{out_of_stock_items}. Quantities have been updated to max total stock available."
|
358
|
+
item: Item
|
359
|
+
last_name: Last name
|
360
|
+
mark_as_shipped: Mark as shipped
|
361
|
+
method: Method
|
362
|
+
missing_delivery_service: No suitable delivery service available, order cannot be created without an associated delivery service.
|
363
|
+
name: Name
|
364
|
+
new_order: New order
|
365
|
+
no_delivery_required: No delivery required for this order.
|
366
|
+
no_orders: No orders to display.
|
367
|
+
no_payments: There are no payments recorded for this order...
|
368
|
+
notes: Notes
|
369
|
+
number: Number
|
370
|
+
order: Order
|
371
|
+
order_accepted: Order Accepted
|
372
|
+
order_balance: Order Balance
|
373
|
+
order_items: Order items
|
374
|
+
order_no_html: "Order <b>#%{order_number}</b>"
|
375
|
+
order_number: Order number
|
376
|
+
order_received: Order Received
|
377
|
+
order_rejected: Order Rejected
|
378
|
+
order_shipped: Order Shipped
|
379
|
+
ordered_products: Ordered products
|
380
|
+
|
381
|
+
orders: Orders
|
382
|
+
payment: Payment
|
383
|
+
payment_remove_confirmation: Are you sure you wish to remove this payment?
|
384
|
+
payments: Payments
|
385
|
+
phone_number: Phone number
|
386
|
+
post_code: Post code
|
387
|
+
price: Price
|
388
|
+
product: Product
|
389
|
+
products: Products
|
390
|
+
qty: Qty
|
391
|
+
quantity: Quantity
|
392
|
+
received_between: Received between
|
393
|
+
reference: Reference
|
394
|
+
refund: Refund
|
395
|
+
refunded?: Refunded?
|
396
|
+
reject: Reject
|
397
|
+
reject_notice: Order has been rejected successfully
|
398
|
+
save_order: Save order
|
399
|
+
search: Search
|
400
|
+
search_orders: Search orders
|
401
|
+
select_country: Select a country
|
402
|
+
customer: Customer
|
403
|
+
select_customer: Select a customer or leave blank
|
404
|
+
separate_delivery_address: Separate delivery address
|
405
|
+
ship_notice: Order has been shipped successfully
|
406
|
+
sku: SKU
|
407
|
+
sla_warning: Any changes to quantities will update the appropriate stock levels for the associated product.
|
408
|
+
status: Status
|
409
|
+
stock: Stock
|
410
|
+
sub_total: Sub-Total
|
411
|
+
tax: Tax
|
412
|
+
telephone: Telephone
|
413
|
+
total: Total
|
414
|
+
type: Type
|
415
|
+
unit_price: Unit price
|
416
|
+
update_notice: Order has been saved successfully
|
417
|
+
use_separate_delivery_address?: Use a separate delivery address?
|
418
|
+
weight: Weight
|
419
|
+
|
420
|
+
status_bar:
|
421
|
+
by_user: "by %{user}"
|
422
|
+
consignment_no_html: "Consignment #<b>%{consignment_number}</b>"
|
423
|
+
from_ip: "from %{ip}"
|
424
|
+
on_date: "on %{on}"
|
425
|
+
tracking_url: Tracking URL
|
426
|
+
|
427
|
+
despatch_note:
|
428
|
+
despatch_note: Despatch note
|
429
|
+
footer: Thank you for your order!
|
430
|
+
order_number: Order number
|
431
|
+
order_placed: Order placed
|
432
|
+
packed?: Packed?
|
433
|
+
product: Product
|
434
|
+
quantity: Quantity
|
435
|
+
sku: SKU
|
436
|
+
telephone: Telephone
|
437
|
+
total_weight: Total weight
|
438
|
+
weight: Weight
|
439
|
+
|
440
|
+
statuses:
|
441
|
+
accepted: Accepted
|
442
|
+
building: Building
|
443
|
+
confirming: Confirming
|
444
|
+
received: Received
|
445
|
+
rejected: Rejected
|
446
|
+
shipped: Shipped
|
447
|
+
|
448
|
+
product_category:
|
449
|
+
attachments: Attachments
|
450
|
+
back_to_categories: Back to categories list
|
451
|
+
category_details: Category Details
|
452
|
+
choose_product_category: Choose a product category
|
453
|
+
create_notice: Category has been created successfully
|
454
|
+
delete_confirmation: Are you sure you wish to remove this category?
|
455
|
+
description: Description
|
456
|
+
destroy_notice: Category has been removed successfully
|
457
|
+
destroy_alert: Category could not be removed
|
458
|
+
image: Image
|
459
|
+
name: Name
|
460
|
+
new_category: New category
|
461
|
+
no_categories: No categories to display.
|
462
|
+
permalink: Permalink
|
463
|
+
permalink_includes_ancestors: Prefix links in store with ancestor categories
|
464
|
+
product_categories: Product categories
|
465
|
+
update_notice: Category has been updated successfully
|
466
|
+
nesting:
|
467
|
+
blank_option: None
|
468
|
+
category_nesting: Nesting
|
469
|
+
category_parent: Parent
|
470
|
+
current_category: Current
|
471
|
+
no_children: No Children
|
472
|
+
hierarchy: Hierarchy
|
473
|
+
|
474
|
+
products:
|
475
|
+
add_attribute: Add attribute
|
476
|
+
attachments: Attachments
|
477
|
+
attributes: Attributes
|
478
|
+
back_to_products: Back to product list
|
479
|
+
cost_price: Cost price
|
480
|
+
create_notice: Product has been created successfully
|
481
|
+
datasheet: Datasheet
|
482
|
+
default_image: Default Image
|
483
|
+
description: Description
|
484
|
+
destroy_notice: Product has been removed successfully
|
485
|
+
edit: Edit
|
486
|
+
enable_stock_control?: Enable stock control for this product?
|
487
|
+
featured?: Featured?
|
488
|
+
featured_info: If checked, this product will appear on your homepage
|
489
|
+
import_products: Import products
|
490
|
+
in_the_box: "What's in the box?"
|
491
|
+
name: Name
|
492
|
+
new_product: New product
|
493
|
+
no_products: No products to display.
|
494
|
+
no_stock: No stock
|
495
|
+
no_tax: No tax
|
496
|
+
on_sale?: On sale?
|
497
|
+
on_sale_info: If checked, this product will be displayed within the public store
|
498
|
+
permalink: Permalink
|
499
|
+
price: Price
|
500
|
+
price_variants: Price/Variants
|
501
|
+
pricing: Pricing
|
502
|
+
product_category: Product category
|
503
|
+
product_information: Product Information
|
504
|
+
products: Products
|
505
|
+
public?: Public?
|
506
|
+
remove: Remove
|
507
|
+
searchable?: Searchable?
|
508
|
+
short_description: Short description
|
509
|
+
sku: SKU
|
510
|
+
stock: Stock
|
511
|
+
stock_control: Stock Control
|
512
|
+
stock_levels: Stock levels
|
513
|
+
tax_rate: Tax rate
|
514
|
+
value: Value
|
515
|
+
variants: Variants
|
516
|
+
update_notice: Product has been updated successfully
|
517
|
+
website_properties: Website Properties
|
518
|
+
weight: Weight
|
519
|
+
|
520
|
+
imports:
|
521
|
+
help: Products and Categories are matched by name. If no product is found, a new one will be created with all the attributes on the line. If a product is found, only the quantity will be updated and all other fields will be ignored. If no category is found, one with that name will be created . One product per line. You can leave permalink field empty if you don't want to add one and to be generated automatically.
|
522
|
+
success: Products imported successfully
|
523
|
+
examples:
|
524
|
+
first:
|
525
|
+
name: Plush Teddy Bear
|
526
|
+
sku: BEAR001
|
527
|
+
permalink: plush-teddy-bear
|
528
|
+
description: Fantastically plush. Very cuddly. Great for all ages.
|
529
|
+
short_description: Buy this for your kids.
|
530
|
+
weight: 1.2
|
531
|
+
price: 84.95
|
532
|
+
category_name: Teddy Bears
|
533
|
+
qty: 20
|
534
|
+
second:
|
535
|
+
name: Standard Teddy Bear
|
536
|
+
sku: BEAR002
|
537
|
+
permalink: ""
|
538
|
+
description: Made out of PVC. A little cuddly. Spill resistant.
|
539
|
+
short_description: Buy this for those with two left thumbs.
|
540
|
+
weight: 0.6
|
541
|
+
price: 24.95
|
542
|
+
category_name: Teddy Bears
|
543
|
+
qty: 100
|
544
|
+
third:
|
545
|
+
name: Stick Teddy Bear
|
546
|
+
sku: BEAR003
|
547
|
+
permalink: stick-teddy-bear
|
548
|
+
description: Made out of sticks. Not really cuddly. All natural. Fire hazard.
|
549
|
+
short_description: Buy this for that distant aunt who collects bears.
|
550
|
+
weight: 0.521
|
551
|
+
price: 1.95
|
552
|
+
category_name: Teddy Bears
|
553
|
+
qty: 50
|
554
|
+
|
555
|
+
refund:
|
556
|
+
intro_html: "To issue a refund for this payment, just enter the amount you wish to refund below and click 'Refund'. The maximum you can refund is <b>%{amount}</b>."
|
557
|
+
issue_refund: Issue Refund
|
558
|
+
refund: Refund
|
559
|
+
|
560
|
+
sessions:
|
561
|
+
admin_login: Admin Login
|
562
|
+
create_alert: The email address and/or password you have entered is invalid. Please check and try again.
|
563
|
+
back_to_login: Back to login
|
564
|
+
email: E-Mail Address
|
565
|
+
login: Login
|
566
|
+
password: Password
|
567
|
+
reset: Reset
|
568
|
+
reset_password: Reset your password
|
569
|
+
reset_password?: Reset your password?
|
570
|
+
reset_alert: No user was found matching the e-mail address
|
571
|
+
reset_notice: "An e-mail has been sent to %{email_address} with a new password"
|
572
|
+
|
573
|
+
shared:
|
574
|
+
back_to_shoppe: Back to Shoppe
|
575
|
+
error: Error
|
576
|
+
error_occurred: An error has occurred
|
577
|
+
|
578
|
+
stock_level_adjustments:
|
579
|
+
add: Add
|
580
|
+
adjustment: Adjustment
|
581
|
+
back_to_product: Back to product list
|
582
|
+
create_notice: Adjustment has been added successfully
|
583
|
+
current_stock_level_html: "Current stock level is <b>%{item_stock}</b>"
|
584
|
+
date: Date
|
585
|
+
description: Description
|
586
|
+
edit_product: Edit product
|
587
|
+
invalid_item_type: "Invalid item_type (must be one of %{suitable_objects})"
|
588
|
+
stock_levels_for: "Stock Levels for %{item_name}"
|
589
|
+
stock_levels_title: "Stock Levels - %{item_name}"
|
590
|
+
|
591
|
+
tax_rates:
|
592
|
+
address_type_option: "Apply to orders where the %{address} address matches one of the countries below"
|
593
|
+
all_countries: All countries
|
594
|
+
back_to_tax_rates: Back to tax rates
|
595
|
+
billing: billing
|
596
|
+
country_restriction: Country Restriction
|
597
|
+
create_notice: Tax rate has been created successfully
|
598
|
+
delete_confirmation: Are you sure you wish to remove this tax rate?
|
599
|
+
delivery: delivery
|
600
|
+
destroy_notice: Tax rate has been removed successfully
|
601
|
+
name: Name
|
602
|
+
new_tax_rate: New tax rate
|
603
|
+
rate: Rate
|
604
|
+
rate_details: Rate Details
|
605
|
+
tax_rates: Tax Rates
|
606
|
+
update_notice: Tax rate has been updated successfully
|
607
|
+
|
608
|
+
users:
|
609
|
+
back_to_users: Back to users
|
610
|
+
create_notice: User has been created successfully
|
611
|
+
delete_confirmation: Are you sure you wish to remove this user?
|
612
|
+
demo_mode_error: You cannot make changes to users in demo mode. Sorry about that.
|
613
|
+
destroy_notice: User has been removed successfully
|
614
|
+
email: E-Mail Address
|
615
|
+
first_name: First name
|
616
|
+
last_name: Last name
|
617
|
+
login: Login
|
618
|
+
name: Name
|
619
|
+
new_user: New user
|
620
|
+
password: Password
|
621
|
+
password_confirmation: ...and again
|
622
|
+
self_remove_error: You cannot remove yourself
|
623
|
+
update_notice: User has been updated successfully
|
624
|
+
user_details: User Details
|
625
|
+
users: Users
|
626
|
+
|
627
|
+
variants:
|
628
|
+
back_to_variants: Back to variants
|
629
|
+
cost_price: Cost price
|
630
|
+
create_notice: Variant has been added successfully
|
631
|
+
default_variant?: Default variant?
|
632
|
+
default_variant_info: If checked, this variant will be the default
|
633
|
+
delete_confirmation: Are you sure you wish to remove this variant?
|
634
|
+
destroy_notice: Variant has been removed successfully
|
635
|
+
edit_product: Edit product
|
636
|
+
edit_variant: New variant
|
637
|
+
enable_stock_control?: Enable stock control for this product?
|
638
|
+
image: Image
|
639
|
+
name: Name
|
640
|
+
no_products: No products to display.
|
641
|
+
no_stock: No stock
|
642
|
+
no_tax: No tax
|
643
|
+
new_variant: New variant
|
644
|
+
on_sale?: On sale?
|
645
|
+
on_sale_info: If checked, this product will be displayed within the public store
|
646
|
+
permalink: Permalink
|
647
|
+
price: Price
|
648
|
+
pricing: Pricing
|
649
|
+
product_information: Product Information
|
650
|
+
save_variant: Save Variant
|
651
|
+
sku: SKU
|
652
|
+
stock: Stock
|
653
|
+
stock_control: Stock Control
|
654
|
+
tax_rate: Tax rate
|
655
|
+
update_notice: Variant has been updated successfully
|
656
|
+
variants: Variants
|
657
|
+
variants_of: "Variants of %{product}"
|
658
|
+
website_properties: Website Properties
|
659
|
+
weight: Weight
|
660
|
+
|
661
|
+
payments:
|
662
|
+
create_notice: Payment has been added successfully
|
663
|
+
destroy_notice: Payment has been removed successfully
|
664
|
+
refund_notice: Refund has been processed successfully.
|
665
|
+
|
666
|
+
localisations:
|
667
|
+
localisations: Localisations
|
668
|
+
back: Back
|
669
|
+
back_to_localisations: Back
|
670
|
+
localisations_of: Localisations of %{name}
|
671
|
+
product_information: Product Information
|
672
|
+
locales: Locales
|
673
|
+
choose_locale: Please choose a locale
|
674
|
+
save_localisation: Save Localisation
|
675
|
+
new_localisation: New Localisation
|
676
|
+
edit_localisation: Edit Localisation
|
677
|
+
localisation_created: Localisation created successfully
|
678
|
+
localisation_updated: Localisation updated successfully
|
679
|
+
localisation_destroyed: Localisation destroyed successfully
|
680
|
+
language: Language
|
681
|
+
no_localisations: No localisations to display.
|
682
|
+
delete_confirmation: Are you sure?
|
683
|
+
|
684
|
+
navigation:
|
685
|
+
admin_primary:
|
686
|
+
customers: Customers
|
687
|
+
orders: Orders
|
688
|
+
products: Products
|
689
|
+
product_categories: Product Categories
|
690
|
+
delivery_services: Delivery Services
|
691
|
+
tax_rates: Tax Rates
|
692
|
+
users: Users
|
693
|
+
countries: Countries
|
694
|
+
settings: Settings
|
695
|
+
|
696
|
+
settings:
|
697
|
+
|
698
|
+
settings: Settings
|
699
|
+
system_settings: System Settings
|
700
|
+
demo_mode_error: You cannot make changes to settings in demo mode. Sorry about that.
|
701
|
+
update_notice: Settings have been updated successfully.
|
702
|
+
|
703
|
+
types:
|
704
|
+
# Force certain settings to certain type
|
705
|
+
demo_mode: boolean
|
706
|
+
|
707
|
+
labels:
|
708
|
+
# Labels for fields go here
|
709
|
+
email_address: Store E-Mail Address
|
710
|
+
store_name: Store Name
|
711
|
+
currency_unit: Currency Unit
|
712
|
+
tax_name: Tax Name
|
713
|
+
demo_mode: Demo Mode
|
714
|
+
|
715
|
+
options:
|
716
|
+
# Options for boolean settings
|
717
|
+
demo_mode:
|
718
|
+
affirmative: Enabled
|
719
|
+
negative: Disabled
|
720
|
+
|
721
|
+
help:
|
722
|
+
# Help text for individual fields
|
723
|
+
currency_unit: The symbol to be displayed before all numbers which relate to money. Only applies to the admin interface and must be implemented separately in your base application.
|
724
|
+
demo_mode: If enabled, your Shoppe admin interface will allow any users to login and will not permit changes to your users. This should be used with caution and never enabled for a production store.
|
725
|
+
email_address: The e-mail address to use when sending outbound messages. Must just be an e-mail address.
|
726
|
+
store_name: This is the name of your store which will be used through the Shoppe admin interface as well as in the default outbound e-mail messages.
|
727
|
+
tax_name: The name for "Tax" which will be displayed in your admin interface. Commonly replaced with VAT in European countries.
|
728
|
+
|
729
|
+
save_settings: Save Settings
|
730
|
+
page_title: Settings
|
731
|
+
|
732
|
+
defaults:
|
733
|
+
currency_unit: $
|
734
|
+
demo_mode: false
|
735
|
+
email_address: sales@example.com
|
736
|
+
store_name: Widgets Inc.
|
737
|
+
tax_name: Tax
|
738
|
+
|
739
|
+
layouts:
|
740
|
+
shoppe:
|
741
|
+
application:
|
742
|
+
goto: Goto
|
743
|
+
logged_in_as: "Logged in as %{user_name}"
|
744
|
+
logout: Logout
|