spree 0.6.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +30 -0
- data/CONTRIBUTORS +38 -20
- data/app/controllers/admin/creditcard_payments_controller.rb +10 -3
- data/app/controllers/admin/orders_controller.rb +17 -16
- data/app/controllers/admin/products_controller.rb +12 -14
- data/app/controllers/admin/reports_controller.rb +12 -14
- data/app/controllers/admin/users_controller.rb +10 -5
- data/app/controllers/admin/zones_controller.rb +4 -1
- data/app/controllers/application.rb +0 -1
- data/app/controllers/checkout_controller.rb +96 -0
- data/app/controllers/content_controller.rb +11 -1
- data/app/controllers/orders_controller.rb +12 -33
- data/app/controllers/products_controller.rb +12 -7
- data/app/controllers/spree/base_controller.rb +1 -1
- data/app/controllers/states_controller.rb +14 -2
- data/app/controllers/taxons_controller.rb +6 -2
- data/app/controllers/users_controller.rb +9 -6
- data/app/helpers/application_helper.rb +1 -11
- data/app/helpers/products_helper.rb +3 -1
- data/app/helpers/spree/base_helper.rb +0 -26
- data/app/models/address.rb +3 -3
- data/app/models/app_configuration.rb +1 -0
- data/app/models/country.rb +4 -0
- data/app/models/creditcard.rb +6 -1
- data/app/models/creditcard_payment.rb +1 -1
- data/app/models/inventory_unit.rb +4 -1
- data/app/models/order.rb +37 -21
- data/app/models/product.rb +19 -8
- data/{vendor/extensions/shipping/app → app}/models/shipment.rb +20 -4
- data/{vendor/extensions/shipping/app → app}/models/shipping_category.rb +0 -0
- data/{vendor/extensions/shipping/app → app}/models/shipping_method.rb +6 -4
- data/app/models/state.rb +5 -0
- data/app/models/user.rb +4 -2
- data/app/models/variant.rb +19 -1
- data/app/presenters/checkout_presenter.rb +58 -0
- data/app/views/admin/creditcard_payments/edit.html.erb +1 -1
- data/app/views/admin/option_types/available.html.erb +1 -1
- data/app/views/admin/orders/index.html.erb +28 -18
- data/app/views/admin/orders/show.html.erb +1 -1
- data/app/views/admin/payments/index.html.erb +1 -1
- data/app/views/admin/products/_images.html.erb +1 -1
- data/app/views/admin/products/index.html.erb +17 -13
- data/app/views/admin/users/index.html.erb +8 -8
- data/app/views/admin/zones/index.html.erb +5 -2
- data/app/views/checkout/_form.html.erb +165 -0
- data/app/views/{creditcards → checkout}/cvv.html.erb +1 -1
- data/app/views/checkout/new.html.erb +6 -0
- data/app/views/layouts/admin.html.erb +2 -3
- data/app/views/layouts/application.html.erb +1 -1
- data/app/views/orders/_form.html.erb +6 -4
- data/app/views/orders/_google_order.html.erb +24 -0
- data/app/views/orders/_line_item.html.erb +2 -1
- data/app/views/orders/show.html.erb +4 -1
- data/app/views/products/index.html.erb +2 -1
- data/app/views/products/show.html.erb +4 -4
- data/app/views/shared/_footer.html.erb +12 -1
- data/app/views/shared/_login.html.erb +1 -1
- data/app/views/shared/_order_details.html.erb +8 -9
- data/app/views/shared/_products.html.erb +1 -1
- data/app/views/shared/_report_criteria.html.erb +28 -28
- data/app/views/states/index.js.erb +10 -1
- data/config/environment.rb +10 -4
- data/config/initializers/searchlogic.rb +6 -0
- data/config/locales/de.yml +14 -0
- data/config/locales/en-GB.yml +20 -6
- data/config/locales/en-US.yml +20 -4
- data/config/locales/es.yml +14 -0
- data/config/locales/fr-FR.yml +463 -0
- data/config/locales/fr-FR_rails.yml +115 -0
- data/config/locales/it.yml +14 -0
- data/config/locales/nb-NO.yml +457 -0
- data/config/locales/nb-NO_rails.yml +105 -0
- data/config/locales/pl.yml +14 -0
- data/config/locales/pt-BR.yml +14 -0
- data/config/locales/pt-PT.yml +14 -0
- data/config/locales/ru-RU.yml +458 -0
- data/config/locales/ru-RU_rails.yml +154 -0
- data/config/routes.rb +11 -4
- data/db/migrate/20090204200045_add_order_permalink.rb +13 -0
- data/db/migrate/20090225231119_add_more_needed_keys_items_and_conf.rb +19 -0
- data/db/migrate/20090302221152_give_all_users_user_role.rb +13 -0
- data/db/sample/orders.yml +1 -1
- data/lib/generators/instance/instance_generator.rb +1 -1
- data/lib/spree.rb +1 -1
- data/lib/spree/setup.rb +1 -1
- data/lib/tasks/database.rake +5 -2
- data/lib/tasks/release.rake +1 -1
- data/lib/tasks/upgrade.rake +11 -0
- data/public/assets/products/1009/mini/sean.jpg +0 -0
- data/public/assets/products/1009/original/sean.jpg +0 -0
- data/public/assets/products/1009/product/sean.jpg +0 -0
- data/public/assets/products/1009/small/sean.jpg +0 -0
- data/public/images/ajax_loader.gif +0 -0
- data/public/javascripts/checkout.js +284 -0
- data/public/javascripts/jquery-1.3.2.min.js +19 -0
- data/public/javascripts/jquery.validate.pack.js +15 -0
- data/public/stylesheets/checkout.css +25 -0
- data/public/stylesheets/spree-admin.css +6 -2
- data/public/stylesheets/spree.css +419 -432
- data/spec/controllers/countries_controller_spec.rb +3 -2
- data/spec/controllers/orders_controller_spec.rb +7 -5
- data/spec/controllers/states_controller_spec.rb +4 -2
- data/spec/models/creditcard_payment_spec.rb +6 -2
- data/spec/models/order_spec.rb +164 -157
- data/spec/models/product_spec.rb +2 -2
- data/vendor/extensions/payment_gateway/db/migrate/20090218091936_create_protx_gateway.rb +18 -0
- data/vendor/extensions/payment_gateway/lib/spree/payment_gateway.rb +7 -5
- data/vendor/extensions/shipping/app/controllers/admin/shipments_controller.rb +6 -5
- data/vendor/extensions/shipping/app/views/admin/shipments/index.html.erb +1 -1
- data/vendor/extensions/shipping/config/locales/nb-NO.yml +25 -0
- data/vendor/extensions/shipping/config/locales/ru-RU.yml +25 -0
- data/vendor/extensions/shipping/db/sample/shipping_methods.yml +5 -1
- data/vendor/extensions/shipping/db/sample/zone_members.yml +9 -1
- data/vendor/extensions/shipping/db/sample/zones.yml +4 -1
- data/vendor/extensions/shipping/lib/spree/shipping_calculator.rb +0 -16
- data/vendor/extensions/shipping/shipping_extension.rb +0 -15
- data/vendor/extensions/shipping/spec/models/shipping_method_spec.rb +16 -10
- data/vendor/extensions/shipping/spec/models/shipping_order_spec.rb +3 -17
- data/vendor/extensions/tax_calculator/config/locales/nb-NO.yml +30 -0
- data/vendor/extensions/tax_calculator/spec/models/{order_spec.rb → order_tax_calc_spec.rb} +2 -2
- data/vendor/gems/{active_presenter-0.0.4 → active_presenter-0.0.6}/.specification +3 -5
- data/vendor/gems/{active_presenter-0.0.4 → active_presenter-0.0.6}/LICENSE +0 -0
- data/vendor/gems/{active_presenter-0.0.4 → active_presenter-0.0.6}/README +9 -2
- data/vendor/gems/{active_presenter-0.0.4 → active_presenter-0.0.6}/Rakefile +0 -0
- data/vendor/gems/{active_presenter-0.0.4 → active_presenter-0.0.6}/lib/active_presenter.rb +0 -0
- data/vendor/gems/{active_presenter-0.0.4 → active_presenter-0.0.6}/lib/active_presenter/base.rb +38 -8
- data/vendor/gems/{active_presenter-0.0.4 → active_presenter-0.0.6}/lib/active_presenter/version.rb +1 -1
- data/vendor/gems/{active_presenter-0.0.4 → active_presenter-0.0.6}/lib/tasks/doc.rake +0 -0
- data/vendor/gems/{active_presenter-0.0.4 → active_presenter-0.0.6}/lib/tasks/gem.rake +0 -0
- data/vendor/gems/{active_presenter-0.0.4 → active_presenter-0.0.6}/test/base_test.rb +66 -30
- data/vendor/gems/{active_presenter-0.0.4 → active_presenter-0.0.6}/test/test_helper.rb +36 -0
- data/vendor/plugins/attribute_fu/lib/attribute_fu/associated_form_helper.rb +12 -4
- data/vendor/plugins/find_by_param/MIT-LICENSE +1 -1
- data/vendor/plugins/find_by_param/{README → README.markdown} +7 -1
- data/vendor/plugins/find_by_param/init.rb +0 -1
- data/vendor/plugins/find_by_param/lib/find_by_param.rb +23 -87
- data/vendor/plugins/find_by_param/test/find_by_param_test.rb +22 -8
- data/vendor/plugins/find_by_param/test/test_helper.rb +0 -1
- metadata +65 -193
- data/app/controllers/creditcards_controller.rb +0 -73
- data/app/models/order_filter.rb +0 -28
- data/app/models/user_filter.rb +0 -6
- data/app/views/creditcards/_form_credit_card.html.erb +0 -30
- data/app/views/creditcards/new.html.erb +0 -25
- data/app/views/shared/_paginate.html.erb +0 -34
- data/lib/plugins/paginating_find/CHANGELOG +0 -120
- data/lib/plugins/paginating_find/README +0 -89
- data/lib/plugins/paginating_find/init.rb +0 -2
- data/lib/plugins/paginating_find/lib/paginating_find.rb +0 -138
- data/lib/plugins/paginating_find/lib/paging_enumerator.rb +0 -158
- data/lib/plugins/paginating_find/lib/paging_helper.rb +0 -47
- data/lib/plugins/paginating_find/test_app/Rakefile +0 -10
- data/lib/plugins/paginating_find/test_app/app/controllers/application.rb +0 -2
- data/lib/plugins/paginating_find/test_app/config/boot.rb +0 -44
- data/lib/plugins/paginating_find/test_app/config/database.yml +0 -6
- data/lib/plugins/paginating_find/test_app/config/environment.rb +0 -53
- data/lib/plugins/paginating_find/test_app/config/environments/test.rb +0 -19
- data/lib/plugins/paginating_find/test_app/config/routes.rb +0 -22
- data/lib/plugins/paginating_find/test_app/script/breakpointer +0 -3
- data/lib/plugins/paginating_find/test_app/script/console +0 -3
- data/lib/plugins/paginating_find/test_app/test/fixtures/articles.yml +0 -19
- data/lib/plugins/paginating_find/test_app/test/fixtures/authors.yml +0 -7
- data/lib/plugins/paginating_find/test_app/test/fixtures/edits.yml +0 -11
- data/lib/plugins/paginating_find/test_app/test/fixtures/models.rb +0 -18
- data/lib/plugins/paginating_find/test_app/test/test_helper.rb +0 -33
- data/lib/plugins/paginating_find/test_app/test/unit/abstract_test.rb +0 -7
- data/lib/plugins/paginating_find/test_app/test/unit/group_test.rb +0 -40
- data/lib/plugins/paginating_find/test_app/test/unit/paginating_find_test.rb +0 -194
- data/lib/plugins/paginating_find/test_app/test/unit/paging_enumerator_test.rb +0 -143
- data/public/assets/products/1012/mini/bt.jpg +0 -0
- data/public/assets/products/1012/original/bt.jpg +0 -0
- data/public/assets/products/1012/product/bt.jpg +0 -0
- data/public/assets/products/1012/small/bt.jpg +0 -0
- data/spec/views/products/index.html.erb_spec.rb +0 -46
- data/spec/views/products/show.html.erb_spec.rb +0 -46
- data/vendor/extensions/shipping/app/controllers/shipments_controller.rb +0 -96
- data/vendor/extensions/shipping/app/helpers/shipments_helper.rb +0 -20
- data/vendor/extensions/shipping/app/views/orders/fatal_shipping.html.erb +0 -6
- data/vendor/extensions/shipping/app/views/shipments/_form.html.erb +0 -46
- data/vendor/extensions/shipping/app/views/shipments/edit.html.erb +0 -57
- data/vendor/extensions/shipping/app/views/shipments/new.html.erb +0 -10
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
# Norwegian, norsk bokmål, by irb.no
|
|
2
|
+
"nb-NO":
|
|
3
|
+
support:
|
|
4
|
+
array:
|
|
5
|
+
sentence_connector: "og"
|
|
6
|
+
date:
|
|
7
|
+
formats:
|
|
8
|
+
default: "%d.%m.%Y"
|
|
9
|
+
short: "%e. %b"
|
|
10
|
+
long: "%e. %B %Y"
|
|
11
|
+
day_names: [søndag, mandag, tirsdag, onsdag, torsdag, fredag, lørdag]
|
|
12
|
+
abbr_day_names: [søn, man, tir, ons, tor, fre, lør]
|
|
13
|
+
month_names: [~, januar, februar, mars, april, mai, juni, juli, august, september, oktober, november, desember]
|
|
14
|
+
abbr_month_names: [~, jan, feb, mar, apr, mai, jun, jul, aug, sep, okt, nov, des]
|
|
15
|
+
order: [:day, :month, :year]
|
|
16
|
+
time:
|
|
17
|
+
formats:
|
|
18
|
+
default: "%A, %e. %B %Y, %H:%M"
|
|
19
|
+
time: "%H:%M"
|
|
20
|
+
short: "%e. %B, %H:%M"
|
|
21
|
+
long: "%A, %e. %B %Y, %H:%M"
|
|
22
|
+
am: ""
|
|
23
|
+
pm: ""
|
|
24
|
+
datetime:
|
|
25
|
+
distance_in_words:
|
|
26
|
+
half_a_minute: "et halvt minutt"
|
|
27
|
+
less_than_x_seconds:
|
|
28
|
+
one: "mindre enn 1 sekund"
|
|
29
|
+
other: "mindre enn {{count}} sekunder"
|
|
30
|
+
x_seconds:
|
|
31
|
+
one: "1 sekund"
|
|
32
|
+
other: "{{count}} sekunder"
|
|
33
|
+
less_than_x_minutes:
|
|
34
|
+
one: "mindre enn 1 minutt"
|
|
35
|
+
other: "mindre enn {{count}} minutter"
|
|
36
|
+
x_minutes:
|
|
37
|
+
one: "1 minutt"
|
|
38
|
+
other: "{{count}} minutter"
|
|
39
|
+
about_x_hours:
|
|
40
|
+
one: "rundt 1 time"
|
|
41
|
+
other: "rundt {{count}} timer"
|
|
42
|
+
x_days:
|
|
43
|
+
one: "1 dag"
|
|
44
|
+
other: "{{count}} dager"
|
|
45
|
+
about_x_months:
|
|
46
|
+
one: "rundt 1 måned"
|
|
47
|
+
other: "rundt {{count}} måneder"
|
|
48
|
+
x_months:
|
|
49
|
+
one: "1 måned"
|
|
50
|
+
other: "{{count}} måneder"
|
|
51
|
+
about_x_years:
|
|
52
|
+
one: "rundt 1 år"
|
|
53
|
+
other: "rundt {{count}} år"
|
|
54
|
+
over_x_years:
|
|
55
|
+
one: "over 1 år"
|
|
56
|
+
other: "over {{count}} år"
|
|
57
|
+
number:
|
|
58
|
+
format:
|
|
59
|
+
precision: 2
|
|
60
|
+
separator: ','
|
|
61
|
+
delimiter: '.'
|
|
62
|
+
currency:
|
|
63
|
+
format:
|
|
64
|
+
unit: 'kr'
|
|
65
|
+
format: '%u %n'
|
|
66
|
+
separator:
|
|
67
|
+
delimiter:
|
|
68
|
+
precision:
|
|
69
|
+
percentage:
|
|
70
|
+
format:
|
|
71
|
+
delimiter: ""
|
|
72
|
+
precision:
|
|
73
|
+
format:
|
|
74
|
+
delimiter: ""
|
|
75
|
+
human:
|
|
76
|
+
format:
|
|
77
|
+
delimiter: ""
|
|
78
|
+
precision: 1
|
|
79
|
+
activerecord:
|
|
80
|
+
errors:
|
|
81
|
+
template:
|
|
82
|
+
header: "kunne ikke lagre {{model}} på grunn av {{count}} feil."
|
|
83
|
+
body: "det oppstod problemer i følgende felt:"
|
|
84
|
+
messages:
|
|
85
|
+
inclusion: "er ikke inkludert i listen"
|
|
86
|
+
exclusion: "er reservert"
|
|
87
|
+
invalid: "er ugyldig"
|
|
88
|
+
confirmation: "passer ikke bekreftelsen"
|
|
89
|
+
accepted: "må være akseptert"
|
|
90
|
+
empty: "kan ikke være tom"
|
|
91
|
+
blank: "kan ikke være blank"
|
|
92
|
+
too_long: "er for lang (maksimum {{count}} tegn)"
|
|
93
|
+
too_short: "er for kort (minimum {{count}} tegn)"
|
|
94
|
+
wrong_length: "er av feil lengde (maksimum {{count}} tegn)"
|
|
95
|
+
taken: "er allerede i bruk"
|
|
96
|
+
not_a_number: "er ikke et tall"
|
|
97
|
+
greater_than: "må være større enn {{count}}"
|
|
98
|
+
greater_than_or_equal_to: "må være større enn eller lik {{count}}"
|
|
99
|
+
equal_to: "må være lik {{count}}"
|
|
100
|
+
less_than: "må være mindre enn {{count}}"
|
|
101
|
+
less_than_or_equal_to: "må være mindre enn eller lik {{count}}"
|
|
102
|
+
odd: "må være oddetall"
|
|
103
|
+
even: "må være partall"
|
|
104
|
+
# models:
|
|
105
|
+
# attributes:
|
data/config/locales/pl.yml
CHANGED
|
@@ -207,6 +207,7 @@ pl:
|
|
|
207
207
|
credit_card: "Karta kredytowa"
|
|
208
208
|
credit_card_capture_complete: "Credit Card Was Captured"
|
|
209
209
|
credit_card_payment: "Credit Card Payment"
|
|
210
|
+
creditcard: Creditcard
|
|
210
211
|
current: Biężący
|
|
211
212
|
customer: Klient
|
|
212
213
|
date_range: "Zakres czasu"
|
|
@@ -234,6 +235,7 @@ pl:
|
|
|
234
235
|
error: błąd
|
|
235
236
|
event: Event
|
|
236
237
|
existing_customer: "Existing Customer"
|
|
238
|
+
expiration: Expiration
|
|
237
239
|
expiration_month: "Miesiąc wygaśnięcia"
|
|
238
240
|
expiration_year: "Rok wygaśnięcia"
|
|
239
241
|
extension: Rozszerzenie
|
|
@@ -246,6 +248,12 @@ pl:
|
|
|
246
248
|
gateway_setting_description: "Wybierz metodę płatności i skonfiguruj jej ustawienia."
|
|
247
249
|
general_settings: "General Settings"
|
|
248
250
|
general_settings_description: "Configure general Spree settings."
|
|
251
|
+
google_analytics: "Google Analytics"
|
|
252
|
+
google_analytics_active: "Active"
|
|
253
|
+
google_analytics_create: "Create New Google Analytics Account"
|
|
254
|
+
google_analytics_id: "Analytics ID"
|
|
255
|
+
google_analytics_new: "New Google Analytics Account"
|
|
256
|
+
google_analytics_setting_description: "Manage Google Analytics ID"
|
|
249
257
|
height: Height
|
|
250
258
|
hello_user: "Witaj użytkowniku"
|
|
251
259
|
image: Obrazek
|
|
@@ -279,6 +287,7 @@ pl:
|
|
|
279
287
|
master_price: "Cena główna"
|
|
280
288
|
my_account: "Moje konto"
|
|
281
289
|
my_orders: "My Orders"
|
|
290
|
+
name: Name
|
|
282
291
|
new: New
|
|
283
292
|
new_category: "Nowa kategoria"
|
|
284
293
|
new_credit_card_payment: "New Credit Card Payment"
|
|
@@ -333,6 +342,7 @@ pl:
|
|
|
333
342
|
payment_information: "Payment Information"
|
|
334
343
|
payments: Payments
|
|
335
344
|
phone: Telefon
|
|
345
|
+
place_order: Place Order
|
|
336
346
|
presentation: Presentacja
|
|
337
347
|
previous: Poprzednie
|
|
338
348
|
price: Cena
|
|
@@ -384,6 +394,7 @@ pl:
|
|
|
384
394
|
shopping_cart: Koszyk
|
|
385
395
|
show_deleted: "Show Deleted"
|
|
386
396
|
show_incomplete_orders: "Show Incomplete Orders"
|
|
397
|
+
show_only_complete_orders: "Only show complete orders"
|
|
387
398
|
show_out_of_stock_products: "Show out-of-stock products"
|
|
388
399
|
sign_up: "Załóż konto"
|
|
389
400
|
sku: SKU
|
|
@@ -429,8 +440,11 @@ pl:
|
|
|
429
440
|
unable_to_capture_credit_card: "Unable to Capture Credit Card"
|
|
430
441
|
update: Aktualizuj
|
|
431
442
|
updated_successfully:
|
|
443
|
+
use_as_shipping_address: Use as Shipping Address
|
|
444
|
+
use_billing_address: Use Billing Address
|
|
432
445
|
use_different_shipping_address: "Użyj innego adresy dostawy"
|
|
433
446
|
user: Użytkownik
|
|
447
|
+
user_account: User Account
|
|
434
448
|
user_details: "User Details"
|
|
435
449
|
users: Użytkownicy
|
|
436
450
|
value: Wartość
|
data/config/locales/pt-BR.yml
CHANGED
|
@@ -207,6 +207,7 @@ pt-BR:
|
|
|
207
207
|
credit_card: "Cartão de Crédito"
|
|
208
208
|
credit_card_capture_complete: "Credit Card Was Captured"
|
|
209
209
|
credit_card_payment: "Credit Card Payment"
|
|
210
|
+
creditcard: Creditcard
|
|
210
211
|
current: Atual
|
|
211
212
|
customer: Cliente
|
|
212
213
|
date_range: "Período de Data"
|
|
@@ -234,6 +235,7 @@ pt-BR:
|
|
|
234
235
|
error: erro
|
|
235
236
|
event: Event
|
|
236
237
|
existing_customer: "Existing Customer"
|
|
238
|
+
expiration: Expiration
|
|
237
239
|
expiration_month: "Mês de Expiração"
|
|
238
240
|
expiration_year: "Ano de Expiração"
|
|
239
241
|
extension: Extensão
|
|
@@ -246,6 +248,12 @@ pt-BR:
|
|
|
246
248
|
gateway_setting_description: "Selecionar um gateway de pagamento e ajustar suas configurações."
|
|
247
249
|
general_settings: "General Settings"
|
|
248
250
|
general_settings_description: "Configure general Spree settings."
|
|
251
|
+
google_analytics: "Google Analytics"
|
|
252
|
+
google_analytics_active: "Active"
|
|
253
|
+
google_analytics_create: "Create New Google Analytics Account"
|
|
254
|
+
google_analytics_id: "Analytics ID"
|
|
255
|
+
google_analytics_new: "New Google Analytics Account"
|
|
256
|
+
google_analytics_setting_description: "Manage Google Analytics ID"
|
|
249
257
|
height: Height
|
|
250
258
|
hello_user: "Olá Usuário"
|
|
251
259
|
image: Imagem
|
|
@@ -279,6 +287,7 @@ pt-BR:
|
|
|
279
287
|
master_price: "Preço Principal"
|
|
280
288
|
my_account: "Minha Conta"
|
|
281
289
|
my_orders: "My Orders"
|
|
290
|
+
name: Name
|
|
282
291
|
new: New
|
|
283
292
|
new_category: "Nova categoria"
|
|
284
293
|
new_credit_card_payment: "New Credit Card Payment"
|
|
@@ -333,6 +342,7 @@ pt-BR:
|
|
|
333
342
|
payment_information: "Payment Information"
|
|
334
343
|
payments: Payments
|
|
335
344
|
phone: Fone
|
|
345
|
+
place_order: Place Order
|
|
336
346
|
presentation: Apresentação
|
|
337
347
|
previous: anterior
|
|
338
348
|
price: Preço
|
|
@@ -384,6 +394,7 @@ pt-BR:
|
|
|
384
394
|
shopping_cart: "Carrinho de Compra"
|
|
385
395
|
show_deleted: "Show Deleted"
|
|
386
396
|
show_incomplete_orders: "Show Incomplete Orders"
|
|
397
|
+
show_only_complete_orders: "Only show complete orders"
|
|
387
398
|
show_out_of_stock_products: "Show out-of-stock products"
|
|
388
399
|
sign_up: Cadastrar
|
|
389
400
|
sku: SKU
|
|
@@ -429,8 +440,11 @@ pt-BR:
|
|
|
429
440
|
unable_to_capture_credit_card: "Unable to Capture Credit Card"
|
|
430
441
|
update: Atualizar
|
|
431
442
|
updated_successfully:
|
|
443
|
+
use_as_shipping_address: Use as Shipping Address
|
|
444
|
+
use_billing_address: Use Billing Address
|
|
432
445
|
use_different_shipping_address: "Use um Endereço de Entrega Diferente"
|
|
433
446
|
user: Usuário
|
|
447
|
+
user_account: User Account
|
|
434
448
|
user_details: "User Details"
|
|
435
449
|
users: Usuários
|
|
436
450
|
value: Valor
|
data/config/locales/pt-PT.yml
CHANGED
|
@@ -207,6 +207,7 @@ pt-PT:
|
|
|
207
207
|
credit_card: "Cartão de Crédito"
|
|
208
208
|
credit_card_capture_complete: "Credit Card Was Captured"
|
|
209
209
|
credit_card_payment: "Pagamento com Cartão de Crédito"
|
|
210
|
+
creditcard: Creditcard
|
|
210
211
|
current: Actual
|
|
211
212
|
customer: Cliente
|
|
212
213
|
date_range: "Entre as Datas"
|
|
@@ -234,6 +235,7 @@ pt-PT:
|
|
|
234
235
|
error: erro
|
|
235
236
|
event: Evento
|
|
236
237
|
existing_customer: "Cliente Existente"
|
|
238
|
+
expiration: Expiration
|
|
237
239
|
expiration_month: "Mês de Expiração"
|
|
238
240
|
expiration_year: "Ano de Expiração"
|
|
239
241
|
extension: Extensão
|
|
@@ -246,6 +248,12 @@ pt-PT:
|
|
|
246
248
|
gateway_setting_description: "Selecionar um gateway de pagamento e ajustar suas configurações."
|
|
247
249
|
general_settings: "Configurações Gerais"
|
|
248
250
|
general_settings_description: "Configuração Geral de Spree."
|
|
251
|
+
google_analytics: "Google Analytics"
|
|
252
|
+
google_analytics_active: "Active"
|
|
253
|
+
google_analytics_create: "Create New Google Analytics Account"
|
|
254
|
+
google_analytics_id: "Analytics ID"
|
|
255
|
+
google_analytics_new: "New Google Analytics Account"
|
|
256
|
+
google_analytics_setting_description: "Manage Google Analytics ID"
|
|
249
257
|
height: Altura
|
|
250
258
|
hello_user: "Olá Utilizador"
|
|
251
259
|
image: Imagem
|
|
@@ -279,6 +287,7 @@ pt-PT:
|
|
|
279
287
|
master_price: "Preço Principal"
|
|
280
288
|
my_account: "Minha Conta"
|
|
281
289
|
my_orders: "As Minhas Encomendas"
|
|
290
|
+
name: Name
|
|
282
291
|
new: New
|
|
283
292
|
new_category: "Nova categoria"
|
|
284
293
|
new_credit_card_payment: "Novo Pagamento por Cartão de Credito"
|
|
@@ -333,6 +342,7 @@ pt-PT:
|
|
|
333
342
|
payment_information: "Dados do Pagamento"
|
|
334
343
|
payments: Pagamentos
|
|
335
344
|
phone: Telefone
|
|
345
|
+
place_order: Place Order
|
|
336
346
|
presentation: Apresentação
|
|
337
347
|
previous: anterior
|
|
338
348
|
price: Preço
|
|
@@ -384,6 +394,7 @@ pt-PT:
|
|
|
384
394
|
shopping_cart: "Carro de Compra"
|
|
385
395
|
show_deleted: "Mortra Eliminados"
|
|
386
396
|
show_incomplete_orders: "Mostra Encomendas Incompletas"
|
|
397
|
+
show_only_complete_orders: "Only show complete orders"
|
|
387
398
|
show_out_of_stock_products: "Mostra produtos sem stock"
|
|
388
399
|
sign_up: Inscrever
|
|
389
400
|
sku: SKU
|
|
@@ -429,8 +440,11 @@ pt-PT:
|
|
|
429
440
|
unable_to_capture_credit_card: "Unable to Capture Credit Card"
|
|
430
441
|
update: Actualizar
|
|
431
442
|
updated_successfully: Actualizado com sucesso
|
|
443
|
+
use_as_shipping_address: Use as Shipping Address
|
|
444
|
+
use_billing_address: Use Billing Address
|
|
432
445
|
use_different_shipping_address: "Use um Endereço de Entrega Diferente"
|
|
433
446
|
user: Utilizador
|
|
447
|
+
user_account: User Account
|
|
434
448
|
user_details: "Detalhes do Utilizador"
|
|
435
449
|
users: Utilizador
|
|
436
450
|
value: Valor
|
|
@@ -0,0 +1,458 @@
|
|
|
1
|
+
---
|
|
2
|
+
ru-RU:
|
|
3
|
+
a_copy_of_all_mail_will_be_sent_to_the_following_addresses: Копии всех писем будут отосланы на следующие адреса
|
|
4
|
+
abbreviation: Аббревиатура
|
|
5
|
+
access_denied: "Доступ запрещен"
|
|
6
|
+
account: Учетная запись
|
|
7
|
+
action: Действие
|
|
8
|
+
actions:
|
|
9
|
+
cancel: Отменить
|
|
10
|
+
create: Создать
|
|
11
|
+
destroy: Удалить
|
|
12
|
+
list: Показать
|
|
13
|
+
listing: Список
|
|
14
|
+
new: Новый
|
|
15
|
+
update: Изменить
|
|
16
|
+
activerecord:
|
|
17
|
+
attributes:
|
|
18
|
+
address:
|
|
19
|
+
address1: Адрес
|
|
20
|
+
address2: "Адрес (2я строка)"
|
|
21
|
+
city: Город
|
|
22
|
+
firstname: "Имя"
|
|
23
|
+
lastname: "Фамилия"
|
|
24
|
+
phone: Телефон
|
|
25
|
+
zipcode: "Индекс"
|
|
26
|
+
country:
|
|
27
|
+
iso: ISO
|
|
28
|
+
iso3: ISO3
|
|
29
|
+
iso_name: "Название ISO"
|
|
30
|
+
name: Название
|
|
31
|
+
numcode: "Код ISO"
|
|
32
|
+
creditcard:
|
|
33
|
+
cc_type: "Тип"
|
|
34
|
+
month: Месяц
|
|
35
|
+
number: Номер
|
|
36
|
+
verification_value: "Код верификации"
|
|
37
|
+
year: Год
|
|
38
|
+
inventory_unit:
|
|
39
|
+
state: Состояние
|
|
40
|
+
line_item:
|
|
41
|
+
price: Цена
|
|
42
|
+
quantity: Количество
|
|
43
|
+
order:
|
|
44
|
+
checkout_complete: "Заказ завершен"
|
|
45
|
+
ip_address: "IP Адрес"
|
|
46
|
+
item_total: "Итого ??"
|
|
47
|
+
number: Номер
|
|
48
|
+
ship_amount: "Ship amount ???"
|
|
49
|
+
special_instructions: "Дополнительные инструкции"
|
|
50
|
+
state: Статус
|
|
51
|
+
tax_amount: "tax amount ??"
|
|
52
|
+
total: Итого
|
|
53
|
+
product:
|
|
54
|
+
available_on: "Доступен ??"
|
|
55
|
+
description: Описание
|
|
56
|
+
master_price: "master price ??"
|
|
57
|
+
name: Name
|
|
58
|
+
on_hand: "On Hand ?"
|
|
59
|
+
property:
|
|
60
|
+
name: Наименование
|
|
61
|
+
presentation: Представление?
|
|
62
|
+
prototype:
|
|
63
|
+
name: Наименование
|
|
64
|
+
role:
|
|
65
|
+
name: Наименование
|
|
66
|
+
state:
|
|
67
|
+
abbr: Аббревиатура
|
|
68
|
+
name: Название
|
|
69
|
+
taxon:
|
|
70
|
+
name: Наименование
|
|
71
|
+
permalink: Постоянная ссылка
|
|
72
|
+
position: Позиция
|
|
73
|
+
taxonomy:
|
|
74
|
+
name: Наименование
|
|
75
|
+
user:
|
|
76
|
+
email: Email
|
|
77
|
+
variant:
|
|
78
|
+
depth: Глубина
|
|
79
|
+
height: Высота
|
|
80
|
+
price: Цена
|
|
81
|
+
sku: Код
|
|
82
|
+
weight: Вес
|
|
83
|
+
width: Ширина
|
|
84
|
+
zone:
|
|
85
|
+
description: Описание
|
|
86
|
+
name: Наименование
|
|
87
|
+
models:
|
|
88
|
+
address:
|
|
89
|
+
one: Адрес
|
|
90
|
+
other: Адреса
|
|
91
|
+
country:
|
|
92
|
+
one: Страна
|
|
93
|
+
other: Страны
|
|
94
|
+
creditcard:
|
|
95
|
+
one: "Кредитная карта"
|
|
96
|
+
other: "Кредитные карты"
|
|
97
|
+
creditcard_payment:
|
|
98
|
+
one: "Платеж кредитной картой"
|
|
99
|
+
other: "Платежи кредитной картой"
|
|
100
|
+
creditcard_txn:
|
|
101
|
+
one: "Транзакция по кредитной карте"
|
|
102
|
+
other: "Транзакции по кредитным картам"
|
|
103
|
+
inventory_unit:
|
|
104
|
+
one: "Единица учета"
|
|
105
|
+
other: "Единицы учета"
|
|
106
|
+
line_item:
|
|
107
|
+
one: "Элемент списка"
|
|
108
|
+
other: "Элементы списка"
|
|
109
|
+
order:
|
|
110
|
+
one: Заказ
|
|
111
|
+
other: Заказы
|
|
112
|
+
payment:
|
|
113
|
+
one: Платеж
|
|
114
|
+
other: Платежи
|
|
115
|
+
product:
|
|
116
|
+
one: Продукт
|
|
117
|
+
other: Продукты
|
|
118
|
+
property:
|
|
119
|
+
one: Свойство
|
|
120
|
+
other: Свойства
|
|
121
|
+
prototype:
|
|
122
|
+
one: Прототип
|
|
123
|
+
other: Прототипы
|
|
124
|
+
role:
|
|
125
|
+
one: Роль
|
|
126
|
+
other: Роли
|
|
127
|
+
state:
|
|
128
|
+
one: Статус
|
|
129
|
+
other: Статусы
|
|
130
|
+
taxon:
|
|
131
|
+
one: Таксон
|
|
132
|
+
other: Таксоны
|
|
133
|
+
taxonomy:
|
|
134
|
+
one: Таксономия
|
|
135
|
+
other: Таксономии
|
|
136
|
+
user:
|
|
137
|
+
one: Пользователь
|
|
138
|
+
other: Пользователи
|
|
139
|
+
variant:
|
|
140
|
+
one: Вариант
|
|
141
|
+
other: Варианты
|
|
142
|
+
zone:
|
|
143
|
+
one: Зона
|
|
144
|
+
other: Зоны
|
|
145
|
+
add: Add
|
|
146
|
+
add_category: "Добавить категорию"
|
|
147
|
+
add_country: "Добавить страну"
|
|
148
|
+
add_option_type: "Добавить тип опции"
|
|
149
|
+
add_option_types: "Добавить типы опций"
|
|
150
|
+
add_option_value: "Добавить значение опции"
|
|
151
|
+
add_product_properties: "Добавить свойства продукта"
|
|
152
|
+
add_state: "Добавить область"
|
|
153
|
+
add_to_cart: "Положить в корзину"
|
|
154
|
+
add_zone: "Добавить зону"
|
|
155
|
+
address: Адрес
|
|
156
|
+
address_information: "Адресная информация"
|
|
157
|
+
adjustment: Поправка(Adjustment)
|
|
158
|
+
administration: Администрирование
|
|
159
|
+
allow_backorders: "Allow Backorders ??"
|
|
160
|
+
allow_ssl_to_be_used_when_in_developement_and_test_modes: Использовать SSL в development и test режимах
|
|
161
|
+
allow_ssl_to_be_used_when_in_production_mode: Использовать SSL в production
|
|
162
|
+
amount: Сумма
|
|
163
|
+
are_you_sure: "Вы уверены"
|
|
164
|
+
are_you_sure_category: "Вы уверены, что хотите удалить эту категорию?"
|
|
165
|
+
are_you_sure_delete: "Вы уверены, что хотите удалить эту запись?"
|
|
166
|
+
are_you_sure_delete_image: "Вы уверены, что хотите удалить эту картинку?"
|
|
167
|
+
are_you_sure_option_type: "Вы уверены, что хотите удалить этот тип опции ?"
|
|
168
|
+
are_you_sure_you_want_to_capture: "Вы уверены, что хотите capture? ??"
|
|
169
|
+
assign_taxon: "Назначить таксон ??"
|
|
170
|
+
assign_taxons: "Назначить таксоны ??"
|
|
171
|
+
authorization_failure: "Ошибка авторизации"
|
|
172
|
+
authorized: Авторизован
|
|
173
|
+
available_on: "Доступно On ??"
|
|
174
|
+
available_taxons: "Доступные таксоны ??"
|
|
175
|
+
back: Назад
|
|
176
|
+
back_to_store: "Назад к списку"
|
|
177
|
+
bill_address: "Адрес счета"
|
|
178
|
+
billing_address: "Адрес биллинга"
|
|
179
|
+
cancel: отмена
|
|
180
|
+
canceled: Отменен
|
|
181
|
+
capture: capture ??
|
|
182
|
+
card_code: "Код карты"
|
|
183
|
+
card_number: "Номер карты"
|
|
184
|
+
cart: Корзина
|
|
185
|
+
categories: Категории
|
|
186
|
+
category: Категория
|
|
187
|
+
change: Изменить
|
|
188
|
+
change_language: "Сменить язык"
|
|
189
|
+
charged: Оплачено
|
|
190
|
+
checkout: оформить заказ
|
|
191
|
+
city: Город
|
|
192
|
+
comp_order: "Comp Order ??"
|
|
193
|
+
comp_order_confirmation: "Customer will not be charged. Are you sure you want to comp this order? ??"
|
|
194
|
+
configuration: Конфигурация
|
|
195
|
+
configuration_options: "Опции конфигурации"
|
|
196
|
+
configurations: Конфигурации
|
|
197
|
+
confirm: Подтвердить
|
|
198
|
+
confirm_password: "Подтверждение пароля"
|
|
199
|
+
continue: Продолжить
|
|
200
|
+
continue_shopping: "Продолжить покупки"
|
|
201
|
+
copy_all_mails_to: Копировать все письма на
|
|
202
|
+
country: Страна
|
|
203
|
+
country_based: "Страна"
|
|
204
|
+
create: Создать
|
|
205
|
+
create_a_new_account: "Создать новую учетную запись"
|
|
206
|
+
created_successfully: "Успешно создана"
|
|
207
|
+
credit_card: "Кредитная карта"
|
|
208
|
+
credit_card_capture_complete: "Credit Card Was Captured ??"
|
|
209
|
+
credit_card_payment: "Платеж крелитной картой"
|
|
210
|
+
current: Текущий
|
|
211
|
+
customer: Пользователь
|
|
212
|
+
date_range: "Период времени"
|
|
213
|
+
delete: Удалить
|
|
214
|
+
depth: Глубина
|
|
215
|
+
description: Описание
|
|
216
|
+
destroy: Удалить
|
|
217
|
+
display: Показать
|
|
218
|
+
edit: Редактировать
|
|
219
|
+
editing_category: "Редактирование категории"
|
|
220
|
+
editing_option_type: "Редактирование типа опции"
|
|
221
|
+
editing_option_types: "Редактирование типов опций"
|
|
222
|
+
editing_product: "Редактирование продукта"
|
|
223
|
+
editing_property: "Редактирование свойства"
|
|
224
|
+
editing_prototype: "Редактирование прототипа"
|
|
225
|
+
editing_state: "Редактирование статуса"
|
|
226
|
+
editing_tax_category: "Редактирование категории налога"
|
|
227
|
+
editing_user: "Редактирование пользователя"
|
|
228
|
+
editing_zone: "Редактирование зоны"
|
|
229
|
+
email: Email
|
|
230
|
+
email_address: "Email адрес"
|
|
231
|
+
email_server_settings_description: "Настройки сервера email."
|
|
232
|
+
empty_cart: "Очистить корзину"
|
|
233
|
+
enable_mail_delivery: Включить доставку почты
|
|
234
|
+
error: ошибка
|
|
235
|
+
event: Событие
|
|
236
|
+
existing_customer: "Для зарегистрированных пользователей"
|
|
237
|
+
expiration_month: "Месяц экспирации ??"
|
|
238
|
+
expiration_year: "Год экспирации ??"
|
|
239
|
+
extension: Расширение
|
|
240
|
+
extensions: Расширения
|
|
241
|
+
filename: Имя Файла
|
|
242
|
+
final_confirmation: "Финальное подтверждение"
|
|
243
|
+
first_name: "Имя"
|
|
244
|
+
gateway: Платежный шлюз ??
|
|
245
|
+
gateway_error: "Ошибка платежного шлюза ??"
|
|
246
|
+
gateway_setting_description: "Выберите платежный шлюз и настройте его."
|
|
247
|
+
general_settings: "Общие настройки"
|
|
248
|
+
general_settings_description: "Общие настройки Spree."
|
|
249
|
+
google_analytics: "Google Analytics"
|
|
250
|
+
google_analytics_active: "Включено"
|
|
251
|
+
google_analytics_create: "Создать новую учетную запись Google Analytics"
|
|
252
|
+
google_analytics_id: "Analytics ID"
|
|
253
|
+
google_analytics_new: "Новая учетная запись Google Analytics"
|
|
254
|
+
google_analytics_setting_description: "Управление Google Analytics ID"
|
|
255
|
+
height: Высота
|
|
256
|
+
hello_user: "Добро пожаловать"
|
|
257
|
+
image: Картинка
|
|
258
|
+
images: Картинки
|
|
259
|
+
in_progress: "В процессе"
|
|
260
|
+
invalid_search: "Неверный критерий поиска."
|
|
261
|
+
inventory: Инвентарь(Inventory) ??
|
|
262
|
+
inventory_adjustment: "Inventory Adjustment ??"
|
|
263
|
+
inventory_setting_description: "Inventory Configuration, Backordering, Zero-Stock Display ??"
|
|
264
|
+
inventory_settings: "Inventory Settings ??"
|
|
265
|
+
item: Наименование
|
|
266
|
+
item_description: "Описание позиции ??"
|
|
267
|
+
item_total: "Item Total"
|
|
268
|
+
last_name: "Фамилия"
|
|
269
|
+
list: Список
|
|
270
|
+
listing_categories: "Список категорий"
|
|
271
|
+
listing_option_types: "Список Option Types ??"
|
|
272
|
+
listing_orders: "Список заказок"
|
|
273
|
+
listing_reports: "Список отчетов"
|
|
274
|
+
listing_tax_categories: "Список категорий налогов"
|
|
275
|
+
listing_users: "Список пользователей"
|
|
276
|
+
locale_changed: "Локаль изменена"
|
|
277
|
+
log_in: "Зайти"
|
|
278
|
+
logged_in_as: "Пользователь"
|
|
279
|
+
login_name: Логин
|
|
280
|
+
logout: Выйти
|
|
281
|
+
mail_delivery_enabled: "Доставка почты включена"
|
|
282
|
+
mail_delivery_not_enabled: "Доставка почты не включена"
|
|
283
|
+
mail_server_preferences: Настройки почтового сервера
|
|
284
|
+
mail_server_settings: "Установки почтового сервера"
|
|
285
|
+
master_price: "Master Price"
|
|
286
|
+
my_account: "Моя учетная запись"
|
|
287
|
+
my_orders: "Мои заказы"
|
|
288
|
+
name: Название
|
|
289
|
+
new: Новый
|
|
290
|
+
new_category: "Новая категория"
|
|
291
|
+
new_credit_card_payment: "Новый платеж по кредитной карте"
|
|
292
|
+
new_customer: "Для новых пользователей"
|
|
293
|
+
new_image: "Новая картинка"
|
|
294
|
+
new_option_type: "Новый Option Type ??"
|
|
295
|
+
new_option_value: "Новое Option Value ??"
|
|
296
|
+
new_product: "Новый продукт"
|
|
297
|
+
new_property: "Новое свойство"
|
|
298
|
+
new_prototype: "Новый прототип"
|
|
299
|
+
new_shipment: "Ноавя доставка"
|
|
300
|
+
new_state: "Новая область"
|
|
301
|
+
new_tax_category: "Новая категория налогов"
|
|
302
|
+
new_tax_rate: "Новая ставка налога"
|
|
303
|
+
new_taxonomy: "Новая таксономия"
|
|
304
|
+
new_user: "Новый пользователь"
|
|
305
|
+
new_variant: "Новый вариант"
|
|
306
|
+
new_zone: "Новая зона"
|
|
307
|
+
next: След.
|
|
308
|
+
no_items_in_cart: ""
|
|
309
|
+
no_match_found: "Совпадений не найдено"
|
|
310
|
+
none: Ни одного
|
|
311
|
+
none_available: "Нет в наличии"
|
|
312
|
+
on_hand: "On Hand"
|
|
313
|
+
operation: Операция
|
|
314
|
+
option_Values: "Option Values"
|
|
315
|
+
option_types: "Option Types"
|
|
316
|
+
option_values: "Option Values"
|
|
317
|
+
options: Опции
|
|
318
|
+
or: или
|
|
319
|
+
order: Заказ
|
|
320
|
+
order_confirmation_note: ""
|
|
321
|
+
order_date: "Дата заказа"
|
|
322
|
+
order_details: "Детали заказа"
|
|
323
|
+
order_email_resent: "Письмо с описанием заказа выслано повторно"
|
|
324
|
+
order_number: Заказ
|
|
325
|
+
order_operation_authorize: Авторизовать
|
|
326
|
+
order_processed_successfully: "Ваш заказ был успешно обработан"
|
|
327
|
+
order_total: "Итого заказ"
|
|
328
|
+
order_total_message: "Полная сумма, снятая с вашей карточки, составит"
|
|
329
|
+
order_updated: "Заказ обновлен"
|
|
330
|
+
orders: Заказы
|
|
331
|
+
out_of_stock: "Нет в наличии"
|
|
332
|
+
overview: Обзор
|
|
333
|
+
paid: Оплачен
|
|
334
|
+
parent_category: "Родительская категория"
|
|
335
|
+
password: Пароль
|
|
336
|
+
path: Путь
|
|
337
|
+
pay: оплатить
|
|
338
|
+
payment: Платеж
|
|
339
|
+
payment_gateway: "Платежный шлюз"
|
|
340
|
+
payment_information: "Информация о платеже"
|
|
341
|
+
payments: Платежи
|
|
342
|
+
phone: Телефон
|
|
343
|
+
presentation: Презентация ??
|
|
344
|
+
previous: предыдущий
|
|
345
|
+
price: Цена
|
|
346
|
+
problem_authorizing_card: "Проблема при авторизации Вашей кредитной карты"
|
|
347
|
+
problem_capturing_card: "Проблема при capture Вашей кредитной карты"
|
|
348
|
+
problems_processing_order: "При обработке Вашего заказа возникли проблемы"
|
|
349
|
+
process: Обработать
|
|
350
|
+
product: Продукт
|
|
351
|
+
product_details: "Описание продукта"
|
|
352
|
+
product_properties: "Свойства продукта"
|
|
353
|
+
products: Продукты
|
|
354
|
+
properties: Свойства
|
|
355
|
+
property: Свойство
|
|
356
|
+
prototypes: Прототипы
|
|
357
|
+
qty: Кол-во
|
|
358
|
+
rate: rate ??
|
|
359
|
+
remember_me: "Запомнить меня"
|
|
360
|
+
remove: Убрать
|
|
361
|
+
reports: отчеты
|
|
362
|
+
resend: Отослать повторно
|
|
363
|
+
response_code: "Response Code"
|
|
364
|
+
resume: "возобновить"
|
|
365
|
+
resumed: Возобновлен
|
|
366
|
+
return: возвратить
|
|
367
|
+
returned: Возвращенные
|
|
368
|
+
roles: Роли
|
|
369
|
+
sales_total: "Продажи итого"
|
|
370
|
+
sales_total_for_all_orders: "Продажи итого по всем заказам"
|
|
371
|
+
sales_totals: "Sales Totals ??"
|
|
372
|
+
sales_totals_description: "Sales Total For All Orders ??"
|
|
373
|
+
save_preferences: Сохранить настройки
|
|
374
|
+
search: Поиск
|
|
375
|
+
secure_connection_type: Тип защищенного соединения
|
|
376
|
+
select: Выбрать
|
|
377
|
+
select_from_prototype: "Выбрать из прототипов"
|
|
378
|
+
send_copy_of_all_mails_to: Отсылать копии всех писем на
|
|
379
|
+
send_copy_of_orders_mails_to: Отсылать копии всех писем с заказами на
|
|
380
|
+
send_mails_as: Отсылать почту как
|
|
381
|
+
send_order_mails_as: Отсылать почту с заказами как
|
|
382
|
+
ship: доставка
|
|
383
|
+
ship_address: "Ship Address"
|
|
384
|
+
shipment: Доставка
|
|
385
|
+
shipped: Доставлено
|
|
386
|
+
shipping: Доставка
|
|
387
|
+
shipping_address: "Адрес доставки"
|
|
388
|
+
shipping_error: "Ошибка при доставке"
|
|
389
|
+
shipping_method: "Тип доставки"
|
|
390
|
+
shipping_total: "Итого за доставку"
|
|
391
|
+
shopping_cart: "Корзина"
|
|
392
|
+
show_deleted: "Показать удаленные"
|
|
393
|
+
show_incomplete_orders: "Показать необработанные заказы"
|
|
394
|
+
show_out_of_stock_products: "Показать продукты, которых нет в наличии"
|
|
395
|
+
sign_up: "Регистрация"
|
|
396
|
+
sku: SKU
|
|
397
|
+
smtp_authentication_type: "Тип SMTP Аутентификации"
|
|
398
|
+
smtp_domain: SMTP Domain
|
|
399
|
+
smtp_mail_host: SMTP Mail Host
|
|
400
|
+
smtp_password: SMTP Password
|
|
401
|
+
smtp_port: SMTP Port
|
|
402
|
+
smtp_username: SMTP Username
|
|
403
|
+
spree:
|
|
404
|
+
date: Дата
|
|
405
|
+
time: Время
|
|
406
|
+
start: Начать
|
|
407
|
+
state: область
|
|
408
|
+
state_based: "есть области"
|
|
409
|
+
state_setting_description: "Administer the list of states/provinces associated with each country."
|
|
410
|
+
states: Области
|
|
411
|
+
status: Статус
|
|
412
|
+
stop: Остановить
|
|
413
|
+
store: Сохранить
|
|
414
|
+
street_address: "Адрес"
|
|
415
|
+
street_address_2: "Адрес (строка 2)"
|
|
416
|
+
subtotal: Подитог
|
|
417
|
+
subtract: Subtract
|
|
418
|
+
system: Система
|
|
419
|
+
tax: Налог
|
|
420
|
+
tax_categories: "Категории налогов"
|
|
421
|
+
tax_categories_setting_description: "Set up tax categories to identify which products should be taxable."
|
|
422
|
+
tax_category: "Категория налогов"
|
|
423
|
+
tax_total: "Налоги Итого"
|
|
424
|
+
tax_type: "Тип налога"
|
|
425
|
+
taxon: Таксон
|
|
426
|
+
taxonomies: Таксонономии
|
|
427
|
+
taxonomies_setting_description: "Create and manage taxonomies"
|
|
428
|
+
taxons: Таксоны
|
|
429
|
+
thank_you_for_your_order: "Thank you for your business. Please print out a copy of this confirmation page for your records."
|
|
430
|
+
this_file_language: "Русский (RU)"
|
|
431
|
+
total: Итого
|
|
432
|
+
transaction: Транзакция
|
|
433
|
+
tree: Дерево
|
|
434
|
+
try_again: "Попробуйте еще раз"
|
|
435
|
+
type: Тип
|
|
436
|
+
unable_to_capture_credit_card: "Unable to Capture Credit Card"
|
|
437
|
+
update: Изменить
|
|
438
|
+
updated_successfully: "Успешна изменена"
|
|
439
|
+
use_different_shipping_address: "использовать другой адрес доставки"
|
|
440
|
+
user: Пользователь
|
|
441
|
+
user_details: "Дополнительно"
|
|
442
|
+
users: Пользователи
|
|
443
|
+
value: Значение
|
|
444
|
+
variants: Варианты
|
|
445
|
+
version: Версия
|
|
446
|
+
website: Сайт
|
|
447
|
+
weight: Вес
|
|
448
|
+
welcome_to_sample_store: "Добро пожаловать в тестовый магазин"
|
|
449
|
+
what_is_a_cvv: "Что означает CVV ?"
|
|
450
|
+
what_is_this: "Что это ?"
|
|
451
|
+
whats_this: "Что это"
|
|
452
|
+
width: Ширина
|
|
453
|
+
your_cart_is_empty: "Ваша корзина пуста"
|
|
454
|
+
zip: Индекс
|
|
455
|
+
zone: Зона
|
|
456
|
+
zone_based: "состоит из других зон"
|
|
457
|
+
zone_setting_description: "Collections of countries, states or other zones to be used in various calculations."
|
|
458
|
+
zones: Зоны
|