kylekthompson-shoppe 1.0.7
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.
- 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,662 @@
|
|
|
1
|
+
pl:
|
|
2
|
+
activerecord:
|
|
3
|
+
models:
|
|
4
|
+
shoppe/country:
|
|
5
|
+
one: Kraj
|
|
6
|
+
other: Kraje
|
|
7
|
+
shoppe/delivery_service:
|
|
8
|
+
one: Opcja dostawy
|
|
9
|
+
other: Opcje dostawy
|
|
10
|
+
shoppe/delivery_service_price:
|
|
11
|
+
one: Cena dostawy
|
|
12
|
+
other: Ceny dostawy
|
|
13
|
+
shoppe/order:
|
|
14
|
+
one: Zamówienie
|
|
15
|
+
other: Zamówienia
|
|
16
|
+
shoppe/order_item:
|
|
17
|
+
one: Pozycja zamówienia
|
|
18
|
+
other: Pozycje zamówienia
|
|
19
|
+
shoppe/payment:
|
|
20
|
+
one: Płatność
|
|
21
|
+
other: Płatności
|
|
22
|
+
shoppe/product:
|
|
23
|
+
one: Produkt
|
|
24
|
+
other: Produkty
|
|
25
|
+
shoppe/product_attribute:
|
|
26
|
+
one: Atrybut produktu
|
|
27
|
+
other: Atrybuty produktu
|
|
28
|
+
shoppe/product_category:
|
|
29
|
+
one: Kategoria produktu
|
|
30
|
+
other: Kategorie produktu
|
|
31
|
+
shoppe/setting:
|
|
32
|
+
one: Ustawienie
|
|
33
|
+
other: Ustawienia
|
|
34
|
+
shoppe/stock_level_adjustment:
|
|
35
|
+
one: Zmiana stanu magazynowego
|
|
36
|
+
other: Zmiany stanu magazynowego
|
|
37
|
+
shoppe/tax_rate:
|
|
38
|
+
one: Stawka podatkowa
|
|
39
|
+
other: Stawki podatkowe
|
|
40
|
+
shoppe/user:
|
|
41
|
+
one: Użytkownik
|
|
42
|
+
other: Użytkownicy
|
|
43
|
+
|
|
44
|
+
attributes:
|
|
45
|
+
shoppe/order:
|
|
46
|
+
billing_address1: Adres na fakturze 1
|
|
47
|
+
billing_address3: Adres na fakturze 3
|
|
48
|
+
billing_address4: Adres na fakturze 4
|
|
49
|
+
billing_country: Kraj na fakturze
|
|
50
|
+
billing_postcode: Kod pocztowy na fakturze
|
|
51
|
+
delivery_address1: Adres dostawy 1
|
|
52
|
+
delivery_address3: Adres dostawy 3
|
|
53
|
+
delivery_address4: Adres dostawy 4
|
|
54
|
+
delivery_country: Kraj dostawy
|
|
55
|
+
delivery_name: Dostawa dla
|
|
56
|
+
delivery_service_id: Opcja dostawy
|
|
57
|
+
delivery_postcode: Kod pocztowy dostawy
|
|
58
|
+
email_address: Adres E-Mail
|
|
59
|
+
first_name: Imię
|
|
60
|
+
last_name: Nazwisko
|
|
61
|
+
phone_number: Numer telefonu
|
|
62
|
+
status: Status
|
|
63
|
+
token: Token
|
|
64
|
+
shoppe/country:
|
|
65
|
+
name: Nazwa
|
|
66
|
+
shoppe/delivery_service:
|
|
67
|
+
courier: Kurier
|
|
68
|
+
name: Nazwa
|
|
69
|
+
shoppe/delivery_service_price:
|
|
70
|
+
code: Kod
|
|
71
|
+
cost_price: Koszt
|
|
72
|
+
max_weight: Waga maksymalna
|
|
73
|
+
min_weight: Waga minimalna
|
|
74
|
+
price: Cena
|
|
75
|
+
shoppe/order_item:
|
|
76
|
+
ordered_item: Zamówiony towar
|
|
77
|
+
quantity: Ilość
|
|
78
|
+
shoppe/payment:
|
|
79
|
+
amount: Ilość
|
|
80
|
+
method: Metoda
|
|
81
|
+
reference: Numer referencyjny
|
|
82
|
+
shoppe/product:
|
|
83
|
+
cost_price: Koszt
|
|
84
|
+
description: Opis
|
|
85
|
+
name: Nazwa
|
|
86
|
+
permalink: Permalink
|
|
87
|
+
price: Cena
|
|
88
|
+
short_description: Opis skrócony
|
|
89
|
+
sku: SKU
|
|
90
|
+
weight: Waga
|
|
91
|
+
shoppe/product_attribute:
|
|
92
|
+
key: Klucz
|
|
93
|
+
shoppe/product_category:
|
|
94
|
+
name: Nazwa
|
|
95
|
+
permalink: Permalink
|
|
96
|
+
shoppe/setting:
|
|
97
|
+
key: Klucz
|
|
98
|
+
value: Wartość
|
|
99
|
+
value_type: Typ wartości
|
|
100
|
+
shoppe/stock_level_adjustment:
|
|
101
|
+
adjustment: Korekcja
|
|
102
|
+
description: Opis
|
|
103
|
+
must_be_greater_or_equal_zero: musi być większa lub mniejsza do zera
|
|
104
|
+
shoppe/tax_rate:
|
|
105
|
+
address_type: Typ adresu
|
|
106
|
+
name: Nazwa
|
|
107
|
+
rate: Wartość
|
|
108
|
+
shoppe/user:
|
|
109
|
+
email_address: E-Mail
|
|
110
|
+
first_name: Imię
|
|
111
|
+
last_name: Nazwisko
|
|
112
|
+
password: Hasło
|
|
113
|
+
password_confirmation: Powtórzone hasło
|
|
114
|
+
errors:
|
|
115
|
+
template:
|
|
116
|
+
body: ! 'Wystąpił z następującymi polami:'
|
|
117
|
+
header:
|
|
118
|
+
one: "%{model} - nie udało się zapisać z powodu błędu"
|
|
119
|
+
few: ! "Wystąpiły %{count} błędy podczas próby zapisu"
|
|
120
|
+
many: ! "Wystąpiło %{count} błędów podczas próby zapisu"
|
|
121
|
+
other: ! "Wystąpiło %{count} błędów podczas próby zapisu"
|
|
122
|
+
models:
|
|
123
|
+
shoppe/product_category:
|
|
124
|
+
attributes:
|
|
125
|
+
permalink:
|
|
126
|
+
wrong_format: "może zawierać wyłącznie litery, cyfry, - oraz _"
|
|
127
|
+
shoppe/delivery:
|
|
128
|
+
attributes:
|
|
129
|
+
delivery_service_id:
|
|
130
|
+
must_be_specified: musi być wybrany
|
|
131
|
+
not_suitable: nie może być użyty z tym zamówieniem
|
|
132
|
+
shoppe/order:
|
|
133
|
+
attributes:
|
|
134
|
+
delivery_service_id:
|
|
135
|
+
must_be_specified: musi być zdefiniowana
|
|
136
|
+
shoppe/product:
|
|
137
|
+
attributes:
|
|
138
|
+
permalink:
|
|
139
|
+
wrong_format: "może zawierać wyłącznie litery, cyfry, - oraz _"
|
|
140
|
+
base:
|
|
141
|
+
can_belong_to_root: może być podpięty do produktu głównego
|
|
142
|
+
shoppe/order_item:
|
|
143
|
+
attributes:
|
|
144
|
+
quantity:
|
|
145
|
+
too_high_quantity: większa niż aktualna ilość w magazynie
|
|
146
|
+
shoppe/payment:
|
|
147
|
+
refund_failed: Zwrot musi być mniejszy niż kwota płatności (%{refundable_amount})
|
|
148
|
+
|
|
149
|
+
will_paginate:
|
|
150
|
+
next_label: "Dalej →"
|
|
151
|
+
page_gap: "…"
|
|
152
|
+
previous_label: "← Wstecz"
|
|
153
|
+
|
|
154
|
+
page_entries_info:
|
|
155
|
+
|
|
156
|
+
single_page:
|
|
157
|
+
zero: "%{model} - nie znalezionon"
|
|
158
|
+
one: "Wyświetlanie 1 %{model}"
|
|
159
|
+
other: "Wyświetlanie wszystkich %{count} %{model}"
|
|
160
|
+
|
|
161
|
+
single_page_html:
|
|
162
|
+
zero: "%{model} - nie znaleziono"
|
|
163
|
+
one_html: "Wyświetlanie <b>1</b> %{model}"
|
|
164
|
+
other_html: "Wyświetlanie <b>wszystkich %{count}</b> %{model}"
|
|
165
|
+
|
|
166
|
+
multi_page: "Wyświetlanie %{model} %{from} - %{to} z %{count}"
|
|
167
|
+
multi_page_html: "Wyświetlanie %{model} <b>%{from} - %{to}</b> z <b>%{count}</b>"
|
|
168
|
+
|
|
169
|
+
helpers:
|
|
170
|
+
number_to_weight:
|
|
171
|
+
kg: kg
|
|
172
|
+
page_entries_info:
|
|
173
|
+
one_page:
|
|
174
|
+
display_entries: Wyświetlanie pozycji
|
|
175
|
+
attachment_preview:
|
|
176
|
+
delete: Usuń
|
|
177
|
+
delete_confirm: Czy na pewno usunąć załącznik?
|
|
178
|
+
no_attachment: Brak załącznika
|
|
179
|
+
|
|
180
|
+
shoppe:
|
|
181
|
+
|
|
182
|
+
# commmon
|
|
183
|
+
cancel: Anuluj
|
|
184
|
+
close: Zamknij
|
|
185
|
+
delete: Usuń
|
|
186
|
+
edit: Edytuj
|
|
187
|
+
import: Importuj
|
|
188
|
+
remove: Usuń
|
|
189
|
+
submit: Zapisz
|
|
190
|
+
|
|
191
|
+
attachments:
|
|
192
|
+
remove_notice: Załącznik został usunięty
|
|
193
|
+
|
|
194
|
+
countries:
|
|
195
|
+
back: Powrót do krajów
|
|
196
|
+
continent: Kontynent
|
|
197
|
+
countries: Kraje
|
|
198
|
+
country_details: Opis
|
|
199
|
+
create_notice: Kraj został utworzony
|
|
200
|
+
delete_confirmation: Na pewno chesz usunąć kraj?
|
|
201
|
+
destroy_notice: Kraj został usunięty
|
|
202
|
+
eu?: UE?
|
|
203
|
+
eu_member: Członkostwo UE?
|
|
204
|
+
is_eu_member: Kraj członkowski UE?
|
|
205
|
+
iso_alpha_2: ISO 3166-1-alpha-2
|
|
206
|
+
iso_alpha_3: ISO 3166-1-alpha-3
|
|
207
|
+
name: Nazwa
|
|
208
|
+
new_country: Nowy kraj
|
|
209
|
+
tld: TLD
|
|
210
|
+
update_notice: Kraj został zaktualizowany
|
|
211
|
+
|
|
212
|
+
delivery_service_prices:
|
|
213
|
+
all_countries: Wszystkie kraje
|
|
214
|
+
back: Powrót do listy cen
|
|
215
|
+
back_to_delivery_services: Powrót do opcji dostaw
|
|
216
|
+
code: Kod
|
|
217
|
+
cost: Koszt
|
|
218
|
+
cost_price: Koszt
|
|
219
|
+
countries: Kraje
|
|
220
|
+
create_notice: Cena została utworzona
|
|
221
|
+
delivery_services: Opcja dostawy
|
|
222
|
+
destroy_notice: Cena została usunięta
|
|
223
|
+
identification_weight: Identyfikacja i waga
|
|
224
|
+
max_weight: Waga maksymalna
|
|
225
|
+
min_weight: Waga minimalna
|
|
226
|
+
new_price: Nowa cena
|
|
227
|
+
no_tax: Brak podatku
|
|
228
|
+
price: Cena
|
|
229
|
+
pricing: Cennik
|
|
230
|
+
pricing_for: Ceny dostaw dla %{delivery_name}
|
|
231
|
+
tax_rate: Stawka podatkowa
|
|
232
|
+
update_notice: Cena została zaktualizowana
|
|
233
|
+
weight_allowance: Dopuszczalna waga
|
|
234
|
+
|
|
235
|
+
help:
|
|
236
|
+
countries: Stawka dostaw będzie dostępna wyłącznie w zamówieniach z zaznaczonych krajów.
|
|
237
|
+
|
|
238
|
+
delivery_services:
|
|
239
|
+
active?: Aktywna?
|
|
240
|
+
active: Aktywna
|
|
241
|
+
active_info: Opcja będzie dostępna do użycia
|
|
242
|
+
back: Powrót do opcji dostaw
|
|
243
|
+
code: Kod
|
|
244
|
+
courier: Kurier
|
|
245
|
+
courier_name: Nazwa kuriera
|
|
246
|
+
create_notice: Opcja dostawy
|
|
247
|
+
default?: Domyślna?
|
|
248
|
+
default: Domyślna
|
|
249
|
+
default_info: Opcja bedzie użyta jako domyślna (gdze to możliwe)
|
|
250
|
+
delivery_services: Opcje dostawy
|
|
251
|
+
destroy_notice: Opcja dostawy została usunięta
|
|
252
|
+
delete_confirmation: Czy na pewno usunąć opcję dostawy?
|
|
253
|
+
details: Szczegóły
|
|
254
|
+
name: Nazwa
|
|
255
|
+
new: Nowa opcja dostawy
|
|
256
|
+
no_services: Brak opcji dostawy
|
|
257
|
+
prices: Ceny
|
|
258
|
+
set_prices: Ustaw ceny
|
|
259
|
+
tracking_url: Link do śledzenia przesyłki
|
|
260
|
+
tracking_url_help_html: Użyj <code>{{consignment_number}}</code> by wstawić numer przesyłki.
|
|
261
|
+
update_notice: Opcja dostawy została zaktualizowana
|
|
262
|
+
|
|
263
|
+
imports:
|
|
264
|
+
example_file: Przykładowy format
|
|
265
|
+
file_upload: Plik do importu
|
|
266
|
+
required_formats: Musi być w formacie csv, xls, lub xlsx.
|
|
267
|
+
errors:
|
|
268
|
+
no_file: Nie wybrano pliku do importu
|
|
269
|
+
unknown_format: "Nieznany format pliku: %{filename}"
|
|
270
|
+
|
|
271
|
+
orders:
|
|
272
|
+
accept: Akceptuj
|
|
273
|
+
accept_notice: Zamówienie zostało zaakceptowane
|
|
274
|
+
add_payment: Dodaj płatność
|
|
275
|
+
add_item: Dodaj pozycję
|
|
276
|
+
address: Adres
|
|
277
|
+
amount: Kwota
|
|
278
|
+
back_to_order: Powrót do zamówienia
|
|
279
|
+
back_to_orders: Powrót do zamówień
|
|
280
|
+
billing_address: Adres na fakturze
|
|
281
|
+
billing_delivery_address: Adres dostawy/płatności
|
|
282
|
+
build_time: Czas utworzenia
|
|
283
|
+
company: Firma
|
|
284
|
+
consignment_number: Numer paczki
|
|
285
|
+
cost: Koszt
|
|
286
|
+
country: Kraj
|
|
287
|
+
create_order: Utwórz zamówienie
|
|
288
|
+
create_notice: Zamówienie zostało utworzone
|
|
289
|
+
customer: Klient
|
|
290
|
+
delivery_address: Adres dostawy
|
|
291
|
+
delivery_name: Dostarczyć do
|
|
292
|
+
edit_order: Edytuj zamówienie
|
|
293
|
+
email_address: E-Mail
|
|
294
|
+
first_name: Imię
|
|
295
|
+
from_payment: z opłaty
|
|
296
|
+
id: ID
|
|
297
|
+
in_progress_warning: Zamówienie jest wciąż w trakcie składania przez klienta. W tym momencie możesz zobaczyć produkty dodane do zamówienia.
|
|
298
|
+
invoice_number: Numer faktury
|
|
299
|
+
insufficient_stock_order: "Brak wystarczającej ilości dla produktów %{out_of_stock_items}. Poszczególne ilości zostały ustawione na maksymalne dostępne"
|
|
300
|
+
item: Pozycja
|
|
301
|
+
last_name: Nazwisko
|
|
302
|
+
mark_as_shipped: Oznacz jako dostarczone
|
|
303
|
+
method: Metoda
|
|
304
|
+
missing_delivery_service: Brak pasującego sposobu dostawy, zamówienie nie może zostać utworzone.
|
|
305
|
+
name: Nazwa
|
|
306
|
+
new_order: Nowe zamówienie
|
|
307
|
+
no_delivery_required: Sposób dostawy nie jest wymagany dla tego zamówienia.
|
|
308
|
+
no_orders: Brak zamówień.
|
|
309
|
+
no_payments: Brak odnotowanych płatności dla zamówienia.
|
|
310
|
+
notes: Notatki
|
|
311
|
+
number: Numer
|
|
312
|
+
order: Zamówienie
|
|
313
|
+
order_accepted: Zamówienie zaakceptowane
|
|
314
|
+
order_balance: Bilans zamówienia
|
|
315
|
+
order_items: Pozycje zamówienia
|
|
316
|
+
order_no_html: Zamówienie <b>#%{order_number}</b>
|
|
317
|
+
order_number: Numer zamówienia
|
|
318
|
+
order_received: Zamówienie odebrane
|
|
319
|
+
order_rejected: Zamówienie odrzucone
|
|
320
|
+
order_shipped: Zamówienie dostarczone
|
|
321
|
+
ordered_products: Zamówione produkty
|
|
322
|
+
orders: Zamówienia
|
|
323
|
+
payment: Płatność
|
|
324
|
+
payment_remove_confirmation: Czy na pewno usunąć płatność?
|
|
325
|
+
payments: Płatności
|
|
326
|
+
phone_number: Numer telefonu
|
|
327
|
+
post_code: Kod pocztowy
|
|
328
|
+
price: Cena
|
|
329
|
+
product: Produkt
|
|
330
|
+
products: Produkty
|
|
331
|
+
qty: il.
|
|
332
|
+
quantity: Ilość
|
|
333
|
+
received_between: Otrzymane pomiędzy
|
|
334
|
+
reference: Referencja
|
|
335
|
+
refund: Zwrot
|
|
336
|
+
refunded?: Zwrócone?
|
|
337
|
+
reject: Odrzuć
|
|
338
|
+
reject_notice: Order has been rejected successfully
|
|
339
|
+
save_order: Zapisz zamówienie
|
|
340
|
+
search: Szukaj
|
|
341
|
+
search_orders: Szukaj zamówienia
|
|
342
|
+
select_country: Wybierz kraj
|
|
343
|
+
separate_delivery_address: Osobny adres dostawy
|
|
344
|
+
ship_notice: Zamówienie zostało dostarczone
|
|
345
|
+
sku: SKU
|
|
346
|
+
sla_warning: Zmiana w ilości spowoduje odpowiadnią zmianę w ilości stanu magazynowego powiązanego produktu
|
|
347
|
+
status: Status
|
|
348
|
+
stock: Stan
|
|
349
|
+
sub_total: Podsuma
|
|
350
|
+
tax: Podatek
|
|
351
|
+
telephone: Telefon
|
|
352
|
+
total: Suma
|
|
353
|
+
type: Typ
|
|
354
|
+
unit_price: Cena jednostkowa
|
|
355
|
+
update_notice: Zamówienie zostało zapisane
|
|
356
|
+
use_separate_delivery_address?: Użyć oddzielnego adresu dostawy?
|
|
357
|
+
weight: Waga
|
|
358
|
+
|
|
359
|
+
status_bar:
|
|
360
|
+
by_user: przez %{user}
|
|
361
|
+
consignment_no_html: Numer paczki #<b>%{consignment_number}</b>
|
|
362
|
+
from_ip: od %{ip}
|
|
363
|
+
on_date: "%{on}"
|
|
364
|
+
tracking_url: Link do śledzenia paczki
|
|
365
|
+
|
|
366
|
+
despatch_note:
|
|
367
|
+
despatch_note: Notatka do dostawy
|
|
368
|
+
footer: Dziękujemy za złożenie zamówienia!
|
|
369
|
+
order_number: Numer zamówienia
|
|
370
|
+
order_placed: Zamówienie złożone
|
|
371
|
+
packed?: Spakowane?
|
|
372
|
+
product: Produkt
|
|
373
|
+
quantity: Ilość
|
|
374
|
+
sku: SKU
|
|
375
|
+
telephone: Telefon
|
|
376
|
+
total_weight: Waga całości
|
|
377
|
+
weight: Waga
|
|
378
|
+
|
|
379
|
+
statuses:
|
|
380
|
+
accepted: Zaakceptowane
|
|
381
|
+
building: W trakcie realizacji
|
|
382
|
+
confirming: W trakcie akceptacji
|
|
383
|
+
received: Otrzymane
|
|
384
|
+
rejected: Odrzucone
|
|
385
|
+
shipped: Dostarczone
|
|
386
|
+
|
|
387
|
+
refund:
|
|
388
|
+
intro_html: Aby dokonać zwrotu płatności proszę wprowadzić kwotę oraz kliknąć 'Zwrot'. Kwota maksymalna zwrotu to <b>%{amount}</b>.
|
|
389
|
+
issue_refund: Dokonaj zwrotu
|
|
390
|
+
refund: Zwrot
|
|
391
|
+
|
|
392
|
+
product_category:
|
|
393
|
+
attachments: Załączniki
|
|
394
|
+
back_to_categories: Powrót do listy kategorii
|
|
395
|
+
category_details: Szczegóły kategorii
|
|
396
|
+
choose_product_category: Wybierz kategorię produktu
|
|
397
|
+
create_notice: Kategoria została utworzona
|
|
398
|
+
delete_confirmation: Czy na pewno usunąć kategorię?
|
|
399
|
+
description: Opis
|
|
400
|
+
destroy_notice: Kategoria została usunięta
|
|
401
|
+
image: Obrazek
|
|
402
|
+
name: Nazwa
|
|
403
|
+
new_category: Nowa kategoria
|
|
404
|
+
no_categories: Brak kategorii do wyświetlenia
|
|
405
|
+
permalink: Permalink
|
|
406
|
+
permalink_includes_ancestors: Prefix links in store with ancestor categories
|
|
407
|
+
product_categories: Kategorie produktów
|
|
408
|
+
update_notice: Kategoria została zaktualizowana
|
|
409
|
+
nesting:
|
|
410
|
+
blank_option: None
|
|
411
|
+
category_nesting: Nesting
|
|
412
|
+
category_parent: Parent
|
|
413
|
+
current_category: Current
|
|
414
|
+
no_children: No Children
|
|
415
|
+
hierarchy: Hierarchy
|
|
416
|
+
|
|
417
|
+
products:
|
|
418
|
+
add_attribute: Dodaj atrybut
|
|
419
|
+
attachments: Załączniki
|
|
420
|
+
attributes: Atrybuty
|
|
421
|
+
back_to_products: Powrót do listy produktów
|
|
422
|
+
cost_price: Koszt
|
|
423
|
+
create_notice: Produkt został utowrzony
|
|
424
|
+
datasheet: Katalog danych
|
|
425
|
+
default_image: Domyślny obraz
|
|
426
|
+
description: Opis
|
|
427
|
+
destroy_notice: Produkt został usunięty
|
|
428
|
+
edit: Edytuj
|
|
429
|
+
enable_stock_control?: Uruchomić kontrolę stanu magazynowego dla produktu?
|
|
430
|
+
featured?: Promowany?
|
|
431
|
+
featured_info: Produkt będzie wyświetlony na stronie głównej
|
|
432
|
+
import_products: Import produktów
|
|
433
|
+
in_the_box: Co zawiera pudełko?
|
|
434
|
+
name: Nazwa
|
|
435
|
+
new_product: Nowy produkt
|
|
436
|
+
no_products: Brak produktów do wyświetlenia
|
|
437
|
+
no_tax: Brak podatku
|
|
438
|
+
no_stock: Brak
|
|
439
|
+
on_sale?: W sprzedaży?
|
|
440
|
+
on_sale_info: Produkt będzie wyświetlany na stronie
|
|
441
|
+
permalink: Permalink
|
|
442
|
+
price: Cena
|
|
443
|
+
price_variants: Ceny/warianty
|
|
444
|
+
pricing: Cennik
|
|
445
|
+
product_category: Kategoria produktu
|
|
446
|
+
product_information: Informacje o proukcie
|
|
447
|
+
products: Produkty
|
|
448
|
+
public?: Publiczny?
|
|
449
|
+
remove: Usuń
|
|
450
|
+
searchable?: W wyszukiwarce?
|
|
451
|
+
short_description: Krótki opis
|
|
452
|
+
sku: SKU
|
|
453
|
+
stock: Stan
|
|
454
|
+
stock_control: Kontrola stanu
|
|
455
|
+
stock_levels: Na stanie
|
|
456
|
+
tax_rate: Stawka podatku
|
|
457
|
+
value: Wartość
|
|
458
|
+
variants: Warianty
|
|
459
|
+
update_notice: Produkt został zaktualizowany
|
|
460
|
+
website_properties: Właściwości strony
|
|
461
|
+
weight: Waga
|
|
462
|
+
|
|
463
|
+
imports:
|
|
464
|
+
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. Możesz zostawić pole permalink puste, jeśli nie chcesz, aby dodać jeden i być generowane automatycznie.
|
|
465
|
+
success: Produkty importowane z powodzeniem
|
|
466
|
+
examples:
|
|
467
|
+
first:
|
|
468
|
+
name: Plush Teddy Bear
|
|
469
|
+
sku: BEAR001
|
|
470
|
+
permalink: plush-teddy-bear
|
|
471
|
+
description: Fantastically plush. Very cuddly. Great for all ages.
|
|
472
|
+
short_description: Buy this for your kids.
|
|
473
|
+
weight: 1.2
|
|
474
|
+
price: 84.95
|
|
475
|
+
category_name: Teddy Bears
|
|
476
|
+
qty: 20
|
|
477
|
+
second:
|
|
478
|
+
name: Standard Teddy Bear
|
|
479
|
+
sku: BEAR002
|
|
480
|
+
permalink: ""
|
|
481
|
+
description: Made out of PVC. A little cuddly. Spill resistant.
|
|
482
|
+
short_description: Buy this for those with two left thumbs.
|
|
483
|
+
weight: 0.6
|
|
484
|
+
price: 24.95
|
|
485
|
+
category_name: Teddy Bears
|
|
486
|
+
qty: 100
|
|
487
|
+
third:
|
|
488
|
+
name: Stick Teddy Bear
|
|
489
|
+
sku: BEAR003
|
|
490
|
+
permalink: stick-teddy-bear
|
|
491
|
+
description: Made out of sticks. Not really cuddly. All natural. Fire hazard.
|
|
492
|
+
short_description: Buy this for that distant aunt who collects bears.
|
|
493
|
+
weight: 0.521
|
|
494
|
+
price: 1.95
|
|
495
|
+
category_name: Teddy Bears
|
|
496
|
+
qty: 50
|
|
497
|
+
|
|
498
|
+
sessions:
|
|
499
|
+
admin_login: Login administratora
|
|
500
|
+
create_alert: Zły login lub hasło. Proszę spróbować ponownie.
|
|
501
|
+
back_to_login: Powrót do logowania
|
|
502
|
+
email: E-Mail
|
|
503
|
+
login: Login
|
|
504
|
+
password: Hasło
|
|
505
|
+
reset: Resetuj
|
|
506
|
+
reset_password: Resetuj hasło
|
|
507
|
+
reset_password?: Zapomniane hasło?
|
|
508
|
+
reset_alert: Nie znaleziono podanego adresu.
|
|
509
|
+
|
|
510
|
+
shared:
|
|
511
|
+
back_to_shoppe: Powrót do sklepu
|
|
512
|
+
error: Błąd
|
|
513
|
+
error_occurred: Wystąpił błąd
|
|
514
|
+
|
|
515
|
+
stock_level_adjustments:
|
|
516
|
+
add: Dodaj
|
|
517
|
+
adjustment: Zmiana
|
|
518
|
+
back_to_product: Powrót do listy produktów
|
|
519
|
+
create_notice: Zmiana została utworzona
|
|
520
|
+
current_stock_level_html: Aktualny stan magazynowy to <b>%{item_stock}</b>
|
|
521
|
+
date: Data
|
|
522
|
+
description: Opis
|
|
523
|
+
edit_product: Edytuj produkt
|
|
524
|
+
invalid_item_type: "Zły typ pozycja (powinna być jedna z %{suitable_objects})"
|
|
525
|
+
stock_levels_for: Stan magazynowy dla %{item_name}
|
|
526
|
+
stock_levels_title: Stan magazynowy - %{item_name}
|
|
527
|
+
|
|
528
|
+
tax_rates:
|
|
529
|
+
address_type_option: Ma zastosowanie do zamówień, w których adres %{address} odpowiada jednemu z poniższych
|
|
530
|
+
all_countries: Wszystkie kraje
|
|
531
|
+
back_to_tax_rates: Powrót do stawek podatkowych
|
|
532
|
+
billing: na fakturze
|
|
533
|
+
country_restriction: Ograniczenie do kraju
|
|
534
|
+
create_notice: Stawka podatkowa została utworzona
|
|
535
|
+
delete_confirmation: Czy na pewno usunąć stawkę podatkową?
|
|
536
|
+
delivery: dostawy
|
|
537
|
+
destroy_notice: Stawka podatkowa została usunięta
|
|
538
|
+
name: Nazwa
|
|
539
|
+
new_tax_rate: Nowa stawka podatkowa
|
|
540
|
+
rate: Stawka
|
|
541
|
+
rate_details: Szczegóły stawki
|
|
542
|
+
tax_rates: Stawki podatkowe
|
|
543
|
+
update_notice: Stawka podatkowa została zaktualizowana
|
|
544
|
+
|
|
545
|
+
users:
|
|
546
|
+
back_to_users: Powrót do listy użytkowników
|
|
547
|
+
create_notice: Użytkownik został utowrzony
|
|
548
|
+
delete_confirmation: Czy na pewno usunąć użytkownika?
|
|
549
|
+
demo_mode_error: Nie możesz zmieniać użytkowników w trybie demo.
|
|
550
|
+
destroy_notice: Użytkownik został usunięty
|
|
551
|
+
email: E-Mail
|
|
552
|
+
first_name: Imię
|
|
553
|
+
last_name: Nazwisko
|
|
554
|
+
login: Login
|
|
555
|
+
name: Nazwa
|
|
556
|
+
new_user: Nowy użytkownik
|
|
557
|
+
password: Hasło
|
|
558
|
+
password_confirmation: ...powtórz hasło
|
|
559
|
+
self_remove_error: Nie można usunąć samego siebie.
|
|
560
|
+
update_notice: Użytkownik został zaktualizowany
|
|
561
|
+
user_details: Dane użytkownika
|
|
562
|
+
users: Użytkownicy
|
|
563
|
+
|
|
564
|
+
variants:
|
|
565
|
+
back_to_variants: Powrót do wariantów
|
|
566
|
+
cost_price: Koszt
|
|
567
|
+
create_notice: Wariant został utworzony
|
|
568
|
+
default_variant?: Domyślny wariant?
|
|
569
|
+
default_variant_info: ten wariant będzie domyślny
|
|
570
|
+
delete_confirmation: Czy na pewno usunąć ten wariant?
|
|
571
|
+
destroy_notice: Wariant został usunięty
|
|
572
|
+
edit_product: Edytuj wariant
|
|
573
|
+
edit_variant: Nowy wariant
|
|
574
|
+
enable_stock_control?: Uruchomić kontrolę stanu magazynowego dla produktu?
|
|
575
|
+
image: Obraz
|
|
576
|
+
name: Nazwa
|
|
577
|
+
no_products: Brak produktów do wyświetlenia
|
|
578
|
+
no_stock: Brak na stanie
|
|
579
|
+
no_tax: Bez podatku
|
|
580
|
+
new_variant: Nowy wariant
|
|
581
|
+
on_sale?: W sprzedaży?
|
|
582
|
+
on_sale_info: Produkt będzie widoczny w sklepie
|
|
583
|
+
permalink: Permalink
|
|
584
|
+
price: Cena
|
|
585
|
+
pricing: Cennik
|
|
586
|
+
product_information: Informacja o produkcie
|
|
587
|
+
save_variant: Zapisz wariant
|
|
588
|
+
sku: SKU
|
|
589
|
+
stock: Stan
|
|
590
|
+
stock_control: Kontrola stanu
|
|
591
|
+
tax_rate: Stawka podatkowa
|
|
592
|
+
update_notice: Wariant został zaktualizowany
|
|
593
|
+
variants: Warianty
|
|
594
|
+
variants_of: Warianty dla %{product}
|
|
595
|
+
website_properties: Atrybuty strony
|
|
596
|
+
weight: Waga
|
|
597
|
+
|
|
598
|
+
payments:
|
|
599
|
+
create_notice: Płatność została dodana
|
|
600
|
+
destroy_notice: Płatność została usunięta
|
|
601
|
+
refund_notice: Zwrot został przetworzony z powodzeniem
|
|
602
|
+
|
|
603
|
+
navigation:
|
|
604
|
+
admin_primary:
|
|
605
|
+
orders: Zamówienia
|
|
606
|
+
products: Produkty
|
|
607
|
+
product_categories: Kategorie produktów
|
|
608
|
+
delivery_services: Opcje dostawy
|
|
609
|
+
tax_rates: Stawki podatkowe
|
|
610
|
+
users: Użytkownicy
|
|
611
|
+
countries: Kraje
|
|
612
|
+
settings: Ustawienia
|
|
613
|
+
|
|
614
|
+
settings:
|
|
615
|
+
|
|
616
|
+
settings: Ustawienia
|
|
617
|
+
system_settings: Ustawienia systemu
|
|
618
|
+
demo_mode_error: Nie można dokonywać zmian w trybie demo.
|
|
619
|
+
update_notice: Ustawienia zostały zapisane
|
|
620
|
+
|
|
621
|
+
types:
|
|
622
|
+
# Force certain settings to certain type
|
|
623
|
+
demo_mode: boolean
|
|
624
|
+
|
|
625
|
+
labels:
|
|
626
|
+
# Labels for fields go here
|
|
627
|
+
email_address: Adres E-Mail sklepu
|
|
628
|
+
store_name: Nazwa Sklepu
|
|
629
|
+
currency_unit: Jednostka Waluty
|
|
630
|
+
tax_name: Nazwa Podatku
|
|
631
|
+
demo_mode: Tryb Demo
|
|
632
|
+
|
|
633
|
+
options:
|
|
634
|
+
# Options for boolean settings
|
|
635
|
+
demo_mode:
|
|
636
|
+
affirmative: Włączony
|
|
637
|
+
negative: Wyłączony
|
|
638
|
+
|
|
639
|
+
help:
|
|
640
|
+
# Help text for individual fields
|
|
641
|
+
currency_unit: Symbol wyświetlany przed wszystkimi numerami związanymi z walutą. Dotyczy tylko interfejsu admina.
|
|
642
|
+
demo_mode: W tym trybie system pozwoli każdemu się zalogować do panelu admina, jednocześnie nie pozwalając dokonywać zmian w użytkownikach.
|
|
643
|
+
email_address: Adres będzie wykorzystywany do wysłania wszystkich wiadomości do użytkowników.
|
|
644
|
+
store_name: Nazwa sklepu, która będzie wykorzystowyana w panelu admina oraz w mailach wychodzących.
|
|
645
|
+
tax_name: Nazwa podatku, która będzie wyświetlana w panelu admina. Zwykle jest to VAT w krajach europejskich.
|
|
646
|
+
|
|
647
|
+
save_settings: Zapisz ustawienia
|
|
648
|
+
page_title: Ustawienia
|
|
649
|
+
|
|
650
|
+
defaults:
|
|
651
|
+
currency_unit: zł
|
|
652
|
+
demo_mode: false
|
|
653
|
+
email_address: sales@example.com
|
|
654
|
+
store_name: Shoppe
|
|
655
|
+
tax_name: VAT
|
|
656
|
+
|
|
657
|
+
layouts:
|
|
658
|
+
shoppe:
|
|
659
|
+
application:
|
|
660
|
+
goto: Idź do
|
|
661
|
+
logged_in_as: Zalogowany jako %{user_name}
|
|
662
|
+
logout: Wyloguj
|