From 169fff67a31e8900e948db06e603642013cce1f5 Mon Sep 17 00:00:00 2001 From: Mateusz Zalewski Date: Wed, 14 Feb 2018 12:23:03 +0100 Subject: [PATCH 1/5] Remove some unused methods in Behat pages --- .../Admin/Product/CreateSimpleProductPage.php | 16 ---------------- .../Product/CreateSimpleProductPageInterface.php | 7 ------- .../Page/Admin/ProductVariant/CreatePage.php | 16 ---------------- .../Admin/ProductVariant/CreatePageInterface.php | 7 ------- 4 files changed, 46 deletions(-) diff --git a/src/Sylius/Behat/Page/Admin/Product/CreateSimpleProductPage.php b/src/Sylius/Behat/Page/Admin/Product/CreateSimpleProductPage.php index 39c96bf470a..0218a357257 100644 --- a/src/Sylius/Behat/Page/Admin/Product/CreateSimpleProductPage.php +++ b/src/Sylius/Behat/Page/Admin/Product/CreateSimpleProductPage.php @@ -202,21 +202,6 @@ public function checkChannel($channelName) $this->getElement('channel_checkbox', ['%channelName%' => $channelName])->check(); } - /** - * {@inheritdoc} - */ - public function specifyPriceForChannelAndCurrency($price, ChannelInterface $channel, CurrencyInterface $currency) - { - $calculatorElement = $this->getElement('calculator'); - $calculatorElement - ->waitFor(5, function () use ($channel, $currency) { - return $this->getElement('calculator')->hasField(sprintf('%s %s', $channel->getName(), $currency->getCode())); - }) - ; - - $calculatorElement->fillField(sprintf('%s %s', $channel->getName(), $currency->getCode()), $price); - } - /** * {@inheritdoc} */ @@ -279,7 +264,6 @@ protected function getDefinedElements() 'attribute_delete_button' => '.tab[data-tab="%localeCode%"] .attribute .label:contains("%attributeName%") ~ button', 'attribute_value' => '.tab[data-tab="%localeCode%"] .attribute .label:contains("%attributeName%") ~ input', 'attributes_choice' => '#sylius_product_attribute_choice', - 'calculator' => '#sylius_calculator_container', 'channel_checkbox' => '.checkbox:contains("%channelName%") input', 'channel_pricings' => '#sylius_product_variant_channelPricings', 'code' => '#sylius_product_code', diff --git a/src/Sylius/Behat/Page/Admin/Product/CreateSimpleProductPageInterface.php b/src/Sylius/Behat/Page/Admin/Product/CreateSimpleProductPageInterface.php index 71924e60cd1..a81f4c73a63 100644 --- a/src/Sylius/Behat/Page/Admin/Product/CreateSimpleProductPageInterface.php +++ b/src/Sylius/Behat/Page/Admin/Product/CreateSimpleProductPageInterface.php @@ -42,13 +42,6 @@ public function choosePricingCalculator($name); */ public function checkChannel($channelName); - /** - * @param int $price - * @param ChannelInterface $channel - * @param CurrencyInterface $currency - */ - public function specifyPriceForChannelAndCurrency($price, ChannelInterface $channel, CurrencyInterface $currency); - /** * @param string $code */ diff --git a/src/Sylius/Behat/Page/Admin/ProductVariant/CreatePage.php b/src/Sylius/Behat/Page/Admin/ProductVariant/CreatePage.php index 7c35f1f46cf..b49921e61f7 100644 --- a/src/Sylius/Behat/Page/Admin/ProductVariant/CreatePage.php +++ b/src/Sylius/Behat/Page/Admin/ProductVariant/CreatePage.php @@ -85,21 +85,6 @@ public function choosePricingCalculator($name) $this->getElement('price_calculator')->selectOption($name); } - /** - * {@inheritdoc} - */ - public function specifyPriceForChannelAndCurrency($price, ChannelInterface $channel, CurrencyInterface $currency) - { - $calculatorElement = $this->getElement('calculator'); - $calculatorElement - ->waitFor(5, function () use ($channel, $currency) { - return $this->getElement('calculator')->hasField(sprintf('%s %s', $channel->getName(), $currency->getCode())); - }) - ; - - $calculatorElement->fillField(sprintf('%s %s', $channel->getName(), $currency->getCode()), $price); - } - /** * {@inheritdoc} */ @@ -154,7 +139,6 @@ public function setShippingRequired($isShippingRequired) protected function getDefinedElements() { return array_merge(parent::getDefinedElements(), [ - 'calculator' => '#sylius_calculator_container', 'code' => '#sylius_product_variant_code', 'depth' => '#sylius_product_variant_depth', 'form' => 'form[name="sylius_product_variant"]', diff --git a/src/Sylius/Behat/Page/Admin/ProductVariant/CreatePageInterface.php b/src/Sylius/Behat/Page/Admin/ProductVariant/CreatePageInterface.php index bc83b9a7601..87cdb3e2887 100644 --- a/src/Sylius/Behat/Page/Admin/ProductVariant/CreatePageInterface.php +++ b/src/Sylius/Behat/Page/Admin/ProductVariant/CreatePageInterface.php @@ -66,13 +66,6 @@ public function selectOption($optionName, $optionValue); */ public function choosePricingCalculator($name); - /** - * @param int $price - * @param ChannelInterface $channel - * @param CurrencyInterface $currency - */ - public function specifyPriceForChannelAndCurrency($price, ChannelInterface $channel, CurrencyInterface $currency); - /** * @return string */ From 899adceb8ec62dfa7f789edcf9c8d2fd75cd6aa6 Mon Sep 17 00:00:00 2001 From: Magdalena Banasiak Date: Wed, 14 Feb 2018 15:29:29 +0100 Subject: [PATCH 2/5] Fix CMS cookbook --- docs/cookbook/shop/map.rst.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/cookbook/shop/map.rst.inc b/docs/cookbook/shop/map.rst.inc index 3a355b09f54..e6be0394a60 100644 --- a/docs/cookbook/shop/map.rst.inc +++ b/docs/cookbook/shop/map.rst.inc @@ -5,3 +5,4 @@ * :doc:`/cookbook/shop/taxons-menu` * :doc:`/cookbook/shop/embedding-products` * :doc:`/cookbook/shop/disabling-localised-urls` +* :doc:`/cookbook/shop/cms` From f32992f2f9f523690dfe6c0469759acffe5e0dde Mon Sep 17 00:00:00 2001 From: Magdalena Banasiak Date: Wed, 14 Feb 2018 15:32:25 +0100 Subject: [PATCH 3/5] [Docs] Polish the CMS cookbook --- docs/cookbook/shop/cms.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/cookbook/shop/cms.rst b/docs/cookbook/shop/cms.rst index 8e358b71703..6e5396bf25e 100644 --- a/docs/cookbook/shop/cms.rst +++ b/docs/cookbook/shop/cms.rst @@ -12,8 +12,8 @@ Content management in Sylius ---------------------------- Sylius standard app does not come with a content management system. Our community has taken care of it. -As Sylius does have an awesome dev oriented plugin environment, developers from `BitBag `_ decided to develop -their flexible CMS module. You can find it on `their GitHub `_. +As Sylius does have a convenient dev oriented plugin environment, the developers from `BitBag `_ decided to develop +their flexible CMS module. You can find it `here `_. .. tip:: @@ -28,12 +28,12 @@ Inside the plugin, you will find: * Sections which you can use to create a blog, customer information, etc. * FAQ module -What is the most awesome thing about this plugin is that you can customize it for your specific needs like you do with each :doc:`Sylius model `. +A very handy feature of this plugin is that you can customize it for your specific needs like you do with each :doc:`Sylius model `. Installation & usage -------------------- -Find out more about how to install the plugin on `GitHub `_. +Find out more about how to install the plugin on `GitHub `_ in the README file. Learn more ---------- From 75a0ddf854c43216feed97ecc200e0fa170d5ea2 Mon Sep 17 00:00:00 2001 From: Magdalena Banasiak Date: Wed, 14 Feb 2018 15:37:00 +0100 Subject: [PATCH 4/5] [Docs] Contributing standards enhanced --- docs/contributing/documentation/standards.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/contributing/documentation/standards.rst b/docs/contributing/documentation/standards.rst index 2938fa49d6c..f4d1006b04d 100644 --- a/docs/contributing/documentation/standards.rst +++ b/docs/contributing/documentation/standards.rst @@ -131,7 +131,10 @@ Language Standards The Vitamins are in my Fresh California Raisins -* Do not use `Serial (Oxford) Commas`_; +* Please use appropriate, informative, rather formal language; +* Do not place any kind of advertisements in the documentation; +* The documentation should be neutral, without judgements, opinions. Make sure you do not favor anyone, + our community is great as a whole, there is no need to point who is better than the rest of us; * You should use a form of *you* instead of *we* (i.e. avoid the first person point of view: use the second instead); * When referencing a hypothetical person, such as "a user with a session cookie", gender-neutral From e9253064048dd58c646f2a9c9f12addeb0e1ddf8 Mon Sep 17 00:00:00 2001 From: Sylius Bot Date: Thu, 15 Feb 2018 04:03:56 +0000 Subject: [PATCH 5/5] [Translations] Updated translations from Crowdin --- .../Resources/translations/messages.af.yml | 1 + .../Resources/translations/messages.ar.yml | 4 +- .../Resources/translations/messages.be.yml | 8 +-- .../Resources/translations/messages.bg.yml | 8 +-- .../Resources/translations/messages.cs.yml | 2 +- .../Resources/translations/messages.es.yml | 8 +-- .../Resources/translations/messages.et.yml | 4 +- .../Resources/translations/messages.fi.yml | 2 +- .../Resources/translations/messages.fr.yml | 18 ----- .../Resources/translations/messages.he.yml | 4 +- .../Resources/translations/messages.hr.yml | 10 +-- .../Resources/translations/messages.hu.yml | 2 +- .../Resources/translations/messages.id.yml | 2 +- .../Resources/translations/messages.it.yml | 10 +-- .../Resources/translations/messages.ja.yml | 6 ++ .../Resources/translations/messages.ko.yml | 1 + .../Resources/translations/messages.lv.yml | 11 +++ .../Resources/translations/messages.mk.yml | 9 ++- .../Resources/translations/messages.ms.yml | 2 +- .../Resources/translations/messages.nl.yml | 2 +- .../Resources/translations/messages.pl.yml | 2 +- .../Resources/translations/messages.pt.yml | 2 +- .../Resources/translations/messages.pt_BR.yml | 6 +- .../Resources/translations/messages.ro.yml | 6 +- .../Resources/translations/messages.ru.yml | 6 +- .../Resources/translations/messages.sk.yml | 4 +- .../Resources/translations/messages.sl.yml | 4 +- .../Resources/translations/messages.sq.yml | 1 + .../Resources/translations/messages.sr.yml | 3 +- .../Resources/translations/messages.th.yml | 6 +- .../Resources/translations/messages.tr.yml | 8 +-- .../Resources/translations/messages.uk.yml | 6 +- .../Resources/translations/messages.vi.yml | 1 + .../Resources/translations/messages.zh_CN.yml | 10 +-- .../Resources/translations/validators.af.yml | 3 + .../Resources/translations/validators.sr.yml | 3 + .../Resources/translations/messages.ar.yml | 2 +- .../Resources/translations/messages.be.yml | 4 +- .../Resources/translations/messages.bg.yml | 6 +- .../Resources/translations/messages.cs.yml | 2 +- .../Resources/translations/messages.da.yml | 6 +- .../Resources/translations/messages.de.yml | 4 +- .../Resources/translations/messages.de_CH.yml | 4 +- .../Resources/translations/messages.el.yml | 6 +- .../Resources/translations/messages.es.yml | 6 +- .../Resources/translations/messages.et.yml | 1 + .../Resources/translations/messages.fa.yml | 4 +- .../Resources/translations/messages.fi.yml | 3 +- .../Resources/translations/messages.fr.yml | 18 +---- .../Resources/translations/messages.he.yml | 2 + .../Resources/translations/messages.hr.yml | 7 +- .../Resources/translations/messages.hu.yml | 3 +- .../Resources/translations/messages.id.yml | 6 +- .../Resources/translations/messages.it.yml | 6 +- .../Resources/translations/messages.ja.yml | 11 ++- .../Resources/translations/messages.ko.yml | 9 +++ .../Resources/translations/messages.nl.yml | 6 +- .../Resources/translations/messages.no.yml | 2 +- .../Resources/translations/messages.pl.yml | 8 +-- .../Resources/translations/messages.pt.yml | 2 +- .../Resources/translations/messages.pt_BR.yml | 4 +- .../Resources/translations/messages.ro.yml | 4 +- .../Resources/translations/messages.ru.yml | 6 +- .../Resources/translations/messages.sk.yml | 2 +- .../Resources/translations/messages.sl.yml | 3 + .../Resources/translations/messages.sq.yml | 2 + .../Resources/translations/messages.sr.yml | 11 ++- .../Resources/translations/messages.sv.yml | 4 +- .../Resources/translations/messages.th.yml | 10 +-- .../Resources/translations/messages.tr.yml | 8 +-- .../Resources/translations/messages.uk.yml | 2 +- .../Resources/translations/messages.vi.yml | 4 ++ .../Resources/translations/messages.zh_CN.yml | 12 ++-- .../Resources/translations/messages.zh_TW.yml | 4 +- .../Resources/translations/messages.af.yml | 1 + .../Resources/translations/messages.be.yml | 2 +- .../Resources/translations/messages.bg.yml | 4 +- .../Resources/translations/messages.ca.yml | 1 + .../Resources/translations/messages.da.yml | 2 +- .../Resources/translations/messages.es.yml | 2 +- .../Resources/translations/messages.fr.yml | 12 ---- .../Resources/translations/messages.he.yml | 3 + .../Resources/translations/messages.hr.yml | 5 +- .../Resources/translations/messages.id.yml | 2 +- .../Resources/translations/messages.it.yml | 6 +- .../Resources/translations/messages.ja.yml | 4 ++ .../Resources/translations/messages.ko.yml | 1 + .../Resources/translations/messages.lt.yml | 2 +- .../Resources/translations/messages.lv.yml | 7 ++ .../Resources/translations/messages.mk.yml | 2 + .../Resources/translations/messages.ms.yml | 1 + .../Resources/translations/messages.ro.yml | 2 +- .../Resources/translations/messages.ru.yml | 2 +- .../Resources/translations/messages.sq.yml | 1 + .../Resources/translations/messages.sr.yml | 3 + .../Resources/translations/messages.th.yml | 2 +- .../Resources/translations/messages.tr.yml | 2 +- .../Resources/translations/messages.vi.yml | 1 + .../Resources/translations/messages.zh_CN.yml | 2 +- .../Resources/translations/messages.af.yml | 7 ++ .../Resources/translations/messages.ar.yml | 2 +- .../Resources/translations/messages.be.yml | 4 +- .../Resources/translations/messages.bg.yml | 2 +- .../Resources/translations/messages.es.yml | 2 +- .../Resources/translations/messages.fi.yml | 3 + .../Resources/translations/messages.fr.yml | 4 -- .../Resources/translations/messages.he.yml | 3 + .../Resources/translations/messages.hr.yml | 5 +- .../Resources/translations/messages.id.yml | 2 +- .../Resources/translations/messages.it.yml | 2 +- .../Resources/translations/messages.ja.yml | 9 +++ .../Resources/translations/messages.ko.yml | 8 +++ .../Resources/translations/messages.lv.yml | 8 +++ .../Resources/translations/messages.mk.yml | 9 +++ .../Resources/translations/messages.ms.yml | 8 +++ .../Resources/translations/messages.nl.yml | 2 +- .../Resources/translations/messages.pl.yml | 2 +- .../Resources/translations/messages.pt_BR.yml | 2 +- .../Resources/translations/messages.ro.yml | 2 +- .../Resources/translations/messages.ru.yml | 2 +- .../Resources/translations/messages.sr.yml | 9 +++ .../Resources/translations/messages.th.yml | 4 +- .../Resources/translations/messages.uk.yml | 2 +- .../Resources/translations/messages.vi.yml | 2 + .../Resources/translations/messages.af.yml | 11 +++ .../Resources/translations/messages.ar.yml | 6 +- .../Resources/translations/messages.be.yml | 10 +-- .../Resources/translations/messages.ca.yml | 4 ++ .../Resources/translations/messages.cs.yml | 2 +- .../Resources/translations/messages.da.yml | 4 +- .../Resources/translations/messages.de.yml | 8 +-- .../Resources/translations/messages.de_CH.yml | 12 ++-- .../Resources/translations/messages.el.yml | 2 +- .../Resources/translations/messages.es.yml | 8 +-- .../Resources/translations/messages.et.yml | 7 ++ .../Resources/translations/messages.fi.yml | 55 ++++++++++++++ .../Resources/translations/messages.fr.yml | 32 --------- .../Resources/translations/messages.he.yml | 31 ++++++++ .../Resources/translations/messages.hr.yml | 25 ++++--- .../Resources/translations/messages.hu.yml | 7 ++ .../Resources/translations/messages.it.yml | 6 +- .../Resources/translations/messages.ja.yml | 21 ++++-- .../Resources/translations/messages.ko.yml | 25 +++++++ .../Resources/translations/messages.lv.yml | 10 +++ .../Resources/translations/messages.mk.yml | 33 +++++++++ .../Resources/translations/messages.ms.yml | 16 +++++ .../Resources/translations/messages.nl.yml | 10 +-- .../Resources/translations/messages.pl.yml | 8 +-- .../Resources/translations/messages.pt.yml | 2 + .../Resources/translations/messages.pt_BR.yml | 10 +-- .../Resources/translations/messages.ro.yml | 8 +-- .../Resources/translations/messages.ru.yml | 10 +-- .../Resources/translations/messages.sl.yml | 12 +++- .../Resources/translations/messages.sq.yml | 9 +++ .../Resources/translations/messages.sr.yml | 50 +++++++++++++ .../Resources/translations/messages.sr_CS.yml | 14 ++++ .../Resources/translations/messages.th.yml | 16 ++--- .../Resources/translations/messages.tr.yml | 2 +- .../Resources/translations/messages.uk.yml | 12 ++-- .../Resources/translations/messages.vi.yml | 15 ++++ .../Resources/translations/messages.zh_CN.yml | 4 +- .../Resources/translations/messages.zh_TW.yml | 12 ++++ .../Resources/translations/validators.ar.yml | 2 +- .../Resources/translations/validators.be.yml | 16 +++++ .../Resources/translations/validators.bg.yml | 2 +- .../Resources/translations/validators.ca.yml | 1 + .../translations/validators.de_CH.yml | 2 +- .../Resources/translations/validators.es.yml | 2 +- .../Resources/translations/validators.fa.yml | 5 +- .../Resources/translations/validators.fi.yml | 2 + .../Resources/translations/validators.fr.yml | 7 -- .../Resources/translations/validators.he.yml | 1 + .../Resources/translations/validators.hu.yml | 7 ++ .../Resources/translations/validators.ja.yml | 14 ++++ .../Resources/translations/validators.lt.yml | 5 ++ .../Resources/translations/validators.mk.yml | 2 + .../Resources/translations/validators.pt.yml | 7 +- .../translations/validators.pt_BR.yml | 4 +- .../Resources/translations/validators.ro.yml | 4 +- .../Resources/translations/validators.sl.yml | 8 +++ .../Resources/translations/validators.sq.yml | 8 +++ .../translations/validators.zh_CN.yml | 2 +- .../translations/validators.zh_TW.yml | 3 + .../Resources/translations/messages.af.yml | 7 ++ .../Resources/translations/messages.be.yml | 3 +- .../Resources/translations/messages.ca.yml | 1 + .../Resources/translations/messages.es.yml | 2 +- .../Resources/translations/messages.et.yml | 1 + .../Resources/translations/messages.fi.yml | 2 + .../Resources/translations/messages.fr.yml | 2 - .../Resources/translations/messages.he.yml | 2 + .../Resources/translations/messages.hr.yml | 5 +- .../Resources/translations/messages.it.yml | 2 +- .../Resources/translations/messages.ja.yml | 8 +++ .../Resources/translations/messages.ko.yml | 8 +++ .../Resources/translations/messages.lv.yml | 7 ++ .../Resources/translations/messages.mk.yml | 1 + .../Resources/translations/messages.ms.yml | 8 +++ .../Resources/translations/messages.pl.yml | 2 +- .../Resources/translations/messages.pt_BR.yml | 2 +- .../Resources/translations/messages.ro.yml | 2 +- .../Resources/translations/messages.ru.yml | 2 +- .../Resources/translations/messages.sr.yml | 8 +++ .../Resources/translations/messages.sr_CS.yml | 1 + .../Resources/translations/messages.th.yml | 4 +- .../Resources/translations/messages.uk.yml | 2 +- .../Resources/translations/messages.vi.yml | 1 + .../Resources/translations/flashes.hu.yml | 6 ++ .../Resources/translations/flashes.th.yml | 6 ++ .../Resources/translations/messages.af.yml | 10 +++ .../Resources/translations/messages.be.yml | 2 +- .../Resources/translations/messages.bg.yml | 4 +- .../Resources/translations/messages.cs.yml | 2 +- .../Resources/translations/messages.de.yml | 2 +- .../Resources/translations/messages.et.yml | 2 + .../Resources/translations/messages.fr.yml | 2 - .../Resources/translations/messages.hr.yml | 3 +- .../Resources/translations/messages.it.yml | 2 +- .../Resources/translations/messages.ja.yml | 2 + .../Resources/translations/messages.ko.yml | 10 +++ .../Resources/translations/messages.lv.yml | 7 ++ .../Resources/translations/messages.mk.yml | 4 ++ .../Resources/translations/messages.ms.yml | 4 ++ .../Resources/translations/messages.pt.yml | 2 +- .../Resources/translations/messages.ro.yml | 2 +- .../Resources/translations/messages.ru.yml | 2 +- .../Resources/translations/messages.sl.yml | 4 ++ .../Resources/translations/messages.sq.yml | 5 ++ .../Resources/translations/messages.sr.yml | 5 ++ .../Resources/translations/messages.th.yml | 2 +- .../Resources/translations/messages.tr.yml | 2 +- .../Resources/translations/messages.uk.yml | 4 +- .../Resources/translations/messages.vi.yml | 2 + .../Resources/translations/messages.zh_TW.yml | 2 + .../Resources/translations/validators.be.yml | 5 ++ .../Resources/translations/validators.bg.yml | 4 +- .../Resources/translations/validators.ca.yml | 6 ++ .../Resources/translations/validators.da.yml | 2 +- .../Resources/translations/validators.el.yml | 3 + .../Resources/translations/validators.fa.yml | 2 +- .../Resources/translations/validators.fr.yml | 6 +- .../Resources/translations/validators.he.yml | 2 + .../Resources/translations/validators.hr.yml | 9 +++ .../Resources/translations/validators.hu.yml | 9 +++ .../Resources/translations/validators.id.yml | 2 +- .../Resources/translations/validators.ja.yml | 2 + .../Resources/translations/validators.nl.yml | 2 +- .../Resources/translations/validators.pt.yml | 4 +- .../translations/validators.pt_BR.yml | 2 +- .../Resources/translations/validators.ro.yml | 6 +- .../Resources/translations/validators.ru.yml | 2 +- .../Resources/translations/validators.sl.yml | 7 ++ .../Resources/translations/validators.sq.yml | 9 +++ .../translations/validators.sr_CS.yml | 1 + .../Resources/translations/validators.tr.yml | 6 +- .../translations/validators.zh_CN.yml | 2 +- .../translations/validators.zh_TW.yml | 9 +++ .../{messages.fr.yml => messages.af.yml} | 2 +- .../Resources/translations/messages.be.yml | 2 +- .../Resources/translations/messages.fi.yml | 7 ++ .../Resources/translations/messages.he.yml | 7 ++ .../Resources/translations/messages.hr.yml | 2 +- .../Resources/translations/messages.it.yml | 2 +- .../Resources/translations/messages.ja.yml | 7 ++ .../Resources/translations/messages.ko.yml | 7 ++ .../Resources/translations/messages.lv.yml | 7 ++ .../Resources/translations/messages.mk.yml | 7 ++ .../Resources/translations/messages.ms.yml | 7 ++ .../Resources/translations/messages.ro.yml | 2 +- .../Resources/translations/messages.ru.yml | 2 +- .../Resources/translations/messages.sr.yml | 7 ++ .../Resources/translations/flashes.be.yml | 7 ++ .../Resources/translations/flashes.hu.yml | 7 ++ .../Resources/translations/flashes.sl.yml | 7 ++ .../Resources/translations/flashes.sq.yml | 7 ++ .../Resources/translations/messages.af.yml | 7 ++ .../Resources/translations/messages.be.yml | 1 + .../Resources/translations/messages.bg.yml | 2 +- .../Resources/translations/messages.fa.yml | 1 + .../Resources/translations/messages.fr.yml | 2 - .../Resources/translations/messages.he.yml | 15 ++++ .../Resources/translations/messages.hr.yml | 3 +- .../Resources/translations/messages.it.yml | 2 +- .../Resources/translations/messages.ja.yml | 7 ++ .../Resources/translations/messages.ko.yml | 7 ++ .../Resources/translations/messages.lv.yml | 8 +++ .../Resources/translations/messages.mk.yml | 8 +++ .../Resources/translations/messages.ms.yml | 7 ++ .../Resources/translations/messages.pl.yml | 2 +- .../Resources/translations/messages.pt.yml | 2 +- .../Resources/translations/messages.pt_BR.yml | 2 +- .../Resources/translations/messages.ro.yml | 4 +- .../Resources/translations/messages.ru.yml | 2 +- .../Resources/translations/messages.sr.yml | 6 ++ .../Resources/translations/messages.sr_CS.yml | 3 + .../Resources/translations/messages.th.yml | 2 +- .../Resources/translations/messages.vi.yml | 5 ++ .../Resources/translations/messages.zh_TW.yml | 4 ++ .../Resources/translations/validators.bg.yml | 2 +- .../Resources/translations/validators.ca.yml | 2 +- .../Resources/translations/validators.cs.yml | 4 +- .../Resources/translations/validators.da.yml | 2 +- .../Resources/translations/validators.el.yml | 2 +- .../Resources/translations/validators.es.yml | 2 +- .../Resources/translations/validators.he.yml | 7 ++ .../Resources/translations/validators.hr.yml | 3 + .../Resources/translations/validators.no.yml | 3 + .../Resources/translations/validators.pt.yml | 2 +- .../translations/validators.pt_BR.yml | 2 +- .../Resources/translations/validators.ro.yml | 2 +- .../Resources/translations/validators.sv.yml | 7 ++ .../Resources/translations/validators.tr.yml | 2 +- .../translations/validators.zh_CN.yml | 2 +- .../translations/validators.zh_TW.yml | 7 ++ .../Resources/translations/messages.fi.yml | 1 + .../Resources/translations/messages.fr.yml | 5 -- .../Resources/translations/messages.he.yml | 1 + .../Resources/translations/messages.ja.yml | 2 + .../Resources/translations/messages.ko.yml | 3 + .../Resources/translations/messages.mk.yml | 4 ++ .../Resources/translations/messages.ru.yml | 2 +- .../Resources/translations/messages.sq.yml | 2 + .../Resources/translations/messages.sr.yml | 1 + .../Resources/translations/messages.th.yml | 4 +- .../Resources/translations/messages.tr.yml | 2 +- .../Resources/translations/messages.af.yml | 15 ++++ .../Resources/translations/messages.be.yml | 13 ++-- .../Resources/translations/messages.ca.yml | 3 + .../Resources/translations/messages.cs.yml | 2 +- .../Resources/translations/messages.de_CH.yml | 2 +- .../Resources/translations/messages.fa.yml | 2 +- .../Resources/translations/messages.fi.yml | 12 ++++ .../Resources/translations/messages.fr.yml | 12 ---- .../Resources/translations/messages.he.yml | 8 +-- .../Resources/translations/messages.hr.yml | 13 ++-- .../Resources/translations/messages.hu.yml | 1 + .../Resources/translations/messages.it.yml | 12 ++-- .../Resources/translations/messages.ja.yml | 10 +++ .../Resources/translations/messages.ko.yml | 9 +++ .../Resources/translations/messages.lv.yml | 16 +++++ .../Resources/translations/messages.mk.yml | 10 +++ .../Resources/translations/messages.ms.yml | 15 ++++ .../Resources/translations/messages.pl.yml | 4 +- .../Resources/translations/messages.pt.yml | 1 + .../Resources/translations/messages.pt_BR.yml | 2 +- .../Resources/translations/messages.ro.yml | 10 +-- .../Resources/translations/messages.ru.yml | 10 +-- .../Resources/translations/messages.sl.yml | 1 + .../Resources/translations/messages.sr.yml | 18 +++++ .../Resources/translations/messages.th.yml | 10 +-- .../Resources/translations/messages.vi.yml | 3 + .../Resources/translations/messages.zh_CN.yml | 4 +- .../Resources/translations/validators.be.yml | 2 + .../Resources/translations/validators.da.yml | 1 + .../translations/validators.de_CH.yml | 2 +- .../Resources/translations/validators.hu.yml | 2 + .../Resources/translations/validators.lt.yml | 2 + .../Resources/translations/validators.no.yml | 2 + .../Resources/translations/validators.pt.yml | 1 + .../Resources/translations/validators.sl.yml | 2 + .../Resources/translations/validators.sq.yml | 2 + .../Resources/translations/messages.af.yml | 2 + .../Resources/translations/messages.be.yml | 15 +++- .../Resources/translations/messages.ca.yml | 6 ++ .../Resources/translations/messages.cs.yml | 10 +-- .../Resources/translations/messages.da.yml | 11 ++- .../Resources/translations/messages.de.yml | 6 +- .../Resources/translations/messages.de_CH.yml | 6 +- .../Resources/translations/messages.es.yml | 10 +-- .../Resources/translations/messages.fi.yml | 12 ++++ .../Resources/translations/messages.fr.yml | 23 ------ .../Resources/translations/messages.he.yml | 11 +++ .../Resources/translations/messages.hr.yml | 15 +++- .../Resources/translations/messages.hu.yml | 17 +++++ .../Resources/translations/messages.it.yml | 8 +-- .../Resources/translations/messages.ja.yml | 21 ++++++ .../Resources/translations/messages.ko.yml | 2 + .../Resources/translations/messages.lv.yml | 16 +++++ .../Resources/translations/messages.mk.yml | 9 +++ .../Resources/translations/messages.ms.yml | 2 + .../Resources/translations/messages.nl.yml | 8 +-- .../Resources/translations/messages.no.yml | 2 + .../Resources/translations/messages.pl.yml | 8 +-- .../Resources/translations/messages.pt.yml | 3 + .../Resources/translations/messages.pt_BR.yml | 2 +- .../Resources/translations/messages.ro.yml | 8 +-- .../Resources/translations/messages.ru.yml | 16 ++--- .../Resources/translations/messages.sk.yml | 2 +- .../Resources/translations/messages.sl.yml | 24 +++++++ .../Resources/translations/messages.sq.yml | 24 +++++++ .../Resources/translations/messages.sr.yml | 18 +++++ .../Resources/translations/messages.sr_CS.yml | 4 ++ .../Resources/translations/messages.th.yml | 14 ++-- .../Resources/translations/messages.tr.yml | 6 +- .../Resources/translations/messages.uk.yml | 6 +- .../Resources/translations/messages.vi.yml | 11 +++ .../Resources/translations/messages.zh_CN.yml | 6 +- .../Resources/translations/messages.zh_TW.yml | 1 + .../Resources/translations/validators.be.yml | 6 ++ .../Resources/translations/validators.da.yml | 6 ++ .../Resources/translations/validators.fa.yml | 2 + .../Resources/translations/validators.hu.yml | 11 +++ .../Resources/translations/validators.lt.yml | 6 ++ .../Resources/translations/validators.no.yml | 6 ++ .../Resources/translations/validators.pt.yml | 11 +++ .../Resources/translations/validators.sl.yml | 6 ++ .../Resources/translations/validators.sq.yml | 6 ++ .../Resources/translations/messages.fi.yml | 1 + .../Resources/translations/messages.fr.yml | 1 - .../Resources/translations/messages.el.yml | 2 + .../Resources/translations/messages.es.yml | 2 +- .../Resources/translations/messages.fi.yml | 3 + .../Resources/translations/messages.hr.yml | 3 + .../Resources/translations/messages.ja.yml | 2 + .../Resources/translations/messages.mk.yml | 7 ++ .../Resources/translations/messages.ru.yml | 2 +- .../Resources/translations/messages.sr.yml | 7 ++ .../Resources/translations/messages.tr.yml | 1 + .../Resources/translations/messages.vi.yml | 2 + .../Resources/translations/validators.fi.yml | 7 ++ .../Resources/translations/messages.af.yml | 9 +++ .../Resources/translations/messages.ar.yml | 2 +- .../Resources/translations/messages.be.yml | 9 +-- .../Resources/translations/messages.ca.yml | 7 ++ .../Resources/translations/messages.cs.yml | 4 +- .../Resources/translations/messages.da.yml | 2 +- .../Resources/translations/messages.de.yml | 4 +- .../Resources/translations/messages.de_CH.yml | 8 +-- .../Resources/translations/messages.es.yml | 2 +- .../Resources/translations/messages.et.yml | 1 + .../Resources/translations/messages.fa.yml | 1 + .../Resources/translations/messages.fi.yml | 12 ++++ .../Resources/translations/messages.fr.yml | 10 --- .../Resources/translations/messages.he.yml | 13 ++++ .../Resources/translations/messages.hr.yml | 7 +- .../Resources/translations/messages.hu.yml | 2 + .../Resources/translations/messages.it.yml | 6 +- .../Resources/translations/messages.ja.yml | 19 +++++ .../Resources/translations/messages.ko.yml | 10 +++ .../Resources/translations/messages.lv.yml | 18 +++++ .../Resources/translations/messages.mk.yml | 19 +++++ .../Resources/translations/messages.ms.yml | 10 +++ .../Resources/translations/messages.nl.yml | 8 +-- .../Resources/translations/messages.no.yml | 2 +- .../Resources/translations/messages.pl.yml | 8 +-- .../Resources/translations/messages.pt_BR.yml | 2 +- .../Resources/translations/messages.ro.yml | 10 +-- .../Resources/translations/messages.ru.yml | 12 ++-- .../Resources/translations/messages.sl.yml | 4 ++ .../Resources/translations/messages.sq.yml | 2 + .../Resources/translations/messages.sr.yml | 19 +++++ .../Resources/translations/messages.sr_CS.yml | 7 +- .../Resources/translations/messages.th.yml | 12 ++-- .../Resources/translations/messages.uk.yml | 8 +-- .../Resources/translations/messages.vi.yml | 11 +++ .../Resources/translations/messages.zh_CN.yml | 6 +- .../Resources/translations/validators.ar.yml | 2 +- .../Resources/translations/validators.be.yml | 3 + .../translations/validators.de_CH.yml | 2 +- .../Resources/translations/validators.es.yml | 2 +- .../Resources/translations/validators.ja.yml | 7 ++ .../Resources/translations/messages.de_CH.yml | 4 +- .../Resources/translations/messages.el.yml | 2 + .../Resources/translations/messages.fr.yml | 2 - .../Resources/translations/messages.he.yml | 9 +++ .../Resources/translations/messages.pl.yml | 2 + .../Resources/translations/messages.pt_BR.yml | 2 +- .../Resources/translations/messages.sr.yml | 2 +- .../Resources/translations/messages.sr_CS.yml | 2 +- .../Resources/translations/messages.af.yml | 9 +++ .../Resources/translations/messages.be.yml | 2 +- .../Resources/translations/messages.ca.yml | 1 + .../Resources/translations/messages.de.yml | 2 +- .../Resources/translations/messages.de_CH.yml | 4 +- .../Resources/translations/messages.fr.yml | 5 -- .../Resources/translations/messages.he.yml | 6 ++ .../Resources/translations/messages.hr.yml | 4 +- .../Resources/translations/messages.hu.yml | 1 + .../Resources/translations/messages.it.yml | 6 +- .../Resources/translations/messages.ja.yml | 4 +- .../Resources/translations/messages.ko.yml | 9 +++ .../Resources/translations/messages.mk.yml | 2 + .../Resources/translations/messages.ms.yml | 9 +++ .../Resources/translations/messages.nl.yml | 2 +- .../Resources/translations/messages.ro.yml | 4 +- .../Resources/translations/messages.ru.yml | 6 +- .../Resources/translations/messages.sl.yml | 1 + .../Resources/translations/messages.sq.yml | 1 + .../Resources/translations/messages.sr.yml | 14 ++++ .../Resources/translations/messages.sr_CS.yml | 2 +- .../Resources/translations/messages.th.yml | 8 +-- .../Resources/translations/messages.uk.yml | 2 +- .../Resources/translations/messages.zh_CN.yml | 2 +- .../Resources/translations/messages.af.yml | 9 +++ .../Resources/translations/messages.bg.yml | 2 +- .../Resources/translations/messages.de.yml | 2 +- .../Resources/translations/messages.de_CH.yml | 4 +- .../Resources/translations/messages.fa.yml | 2 +- .../Resources/translations/messages.fr.yml | 4 -- .../Resources/translations/messages.he.yml | 4 ++ .../Resources/translations/messages.hr.yml | 4 +- .../Resources/translations/messages.it.yml | 4 +- .../Resources/translations/messages.ja.yml | 10 +++ .../Resources/translations/messages.ko.yml | 9 +++ .../Resources/translations/messages.lv.yml | 10 +++ .../Resources/translations/messages.mk.yml | 11 +++ .../Resources/translations/messages.ms.yml | 9 +++ .../Resources/translations/messages.nl.yml | 2 +- .../Resources/translations/messages.ro.yml | 4 +- .../Resources/translations/messages.ru.yml | 4 +- .../Resources/translations/messages.sk.yml | 2 +- .../Resources/translations/messages.sr.yml | 11 +++ .../Resources/translations/messages.th.yml | 6 +- .../Resources/translations/messages.vi.yml | 1 + .../Resources/translations/messages.zh_CN.yml | 2 +- .../Resources/translations/messages.zh_TW.yml | 1 + .../Resources/translations/flashes.hu.yml | 6 ++ .../Resources/translations/flashes.lt.yml | 8 +++ .../Resources/translations/flashes.pt.yml | 6 ++ .../Resources/translations/flashes.sq.yml | 6 ++ .../Resources/translations/messages.af.yml | 8 +++ .../Resources/translations/messages.ar.yml | 2 +- .../Resources/translations/messages.be.yml | 44 ++++++++++-- .../Resources/translations/messages.bg.yml | 18 ++--- .../Resources/translations/messages.ca.yml | 22 ++++++ .../Resources/translations/messages.cs.yml | 6 +- .../Resources/translations/messages.da.yml | 46 +++++++++++- .../Resources/translations/messages.de.yml | 12 ++-- .../Resources/translations/messages.de_CH.yml | 36 +++++----- .../Resources/translations/messages.el.yml | 15 ++++ .../Resources/translations/messages.es.yml | 26 +++---- .../Resources/translations/messages.et.yml | 9 +++ .../Resources/translations/messages.fa.yml | 26 ++++++- .../Resources/translations/messages.fi.yml | 29 ++++++++ .../Resources/translations/messages.fr.yml | 72 +------------------ .../Resources/translations/messages.he.yml | 38 ++++++++++ .../Resources/translations/messages.hr.yml | 59 ++++++++++++--- .../Resources/translations/messages.hu.yml | 24 ++++++- .../Resources/translations/messages.id.yml | 16 ++--- .../Resources/translations/messages.it.yml | 20 +++--- .../Resources/translations/messages.ja.yml | 57 +++++++++++++-- .../Resources/translations/messages.ko.yml | 15 ++++ .../Resources/translations/messages.lt.yml | 5 +- .../Resources/translations/messages.lv.yml | 12 ++++ .../Resources/translations/messages.mk.yml | 26 +++++++ .../Resources/translations/messages.ms.yml | 10 +++ .../Resources/translations/messages.nl.yml | 8 +-- .../Resources/translations/messages.no.yml | 46 +++++++++++- .../Resources/translations/messages.pl.yml | 18 ++--- .../Resources/translations/messages.pt.yml | 25 +++++-- .../Resources/translations/messages.pt_BR.yml | 16 ++--- .../Resources/translations/messages.ro.yml | 12 ++-- .../Resources/translations/messages.ru.yml | 26 +++---- .../Resources/translations/messages.sk.yml | 11 +-- .../Resources/translations/messages.sl.yml | 23 ++++++ .../Resources/translations/messages.sq.yml | 23 ++++++ .../Resources/translations/messages.sr.yml | 67 ++++++++++++++++- .../Resources/translations/messages.sr_CS.yml | 20 +++++- .../Resources/translations/messages.sv.yml | 8 +-- .../Resources/translations/messages.th.yml | 40 ++++++----- .../Resources/translations/messages.tr.yml | 15 ++-- .../Resources/translations/messages.uk.yml | 16 ++--- .../Resources/translations/messages.vi.yml | 28 ++++++++ .../Resources/translations/messages.zh_CN.yml | 26 +++---- .../Resources/translations/messages.zh_TW.yml | 31 ++++++++ .../Resources/translations/flashes.hu.yml | 12 ++++ .../Resources/translations/flashes.lt.yml | 12 ++++ .../Resources/translations/flashes.pt.yml | 5 ++ .../Resources/translations/flashes.sl.yml | 8 +++ .../Resources/translations/flashes.sq.yml | 8 +++ .../Resources/translations/messages.bg.yml | 2 +- .../Resources/translations/messages.de_CH.yml | 2 +- .../Resources/translations/messages.es.yml | 8 +-- .../Resources/translations/messages.fr.yml | 5 +- .../Resources/translations/messages.he.yml | 4 +- .../Resources/translations/messages.hr.yml | 2 +- .../Resources/translations/messages.id.yml | 2 +- .../Resources/translations/messages.ja.yml | 3 + .../Resources/translations/messages.ko.yml | 2 +- .../Resources/translations/messages.ms.yml | 7 ++ .../Resources/translations/messages.nl.yml | 2 +- .../Resources/translations/messages.no.yml | 1 + .../Resources/translations/messages.pl.yml | 2 +- .../Resources/translations/messages.pt.yml | 4 +- .../Resources/translations/messages.pt_BR.yml | 2 +- .../Resources/translations/messages.ru.yml | 2 +- .../Resources/translations/messages.sr.yml | 6 ++ .../Resources/translations/messages.sr_CS.yml | 2 +- .../Resources/translations/messages.th.yml | 6 +- .../Resources/translations/messages.uk.yml | 2 +- .../Resources/translations/messages.vi.yml | 1 + .../Resources/translations/messages.zh_TW.yml | 3 + .../Resources/translations/validators.be.yml | 8 +++ .../Resources/translations/validators.bg.yml | 4 +- .../Resources/translations/validators.ca.yml | 8 +++ .../Resources/translations/validators.fa.yml | 2 +- .../Resources/translations/validators.fr.yml | 2 - .../Resources/translations/validators.he.yml | 8 +++ .../Resources/translations/validators.no.yml | 1 + .../Resources/translations/validators.pt.yml | 2 +- .../Resources/translations/validators.ro.yml | 4 +- .../translations/validators.zh_TW.yml | 8 +++ 602 files changed, 3286 insertions(+), 1023 deletions(-) create mode 100644 src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.lv.yml create mode 100644 src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ko.yml create mode 100644 src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.lv.yml create mode 100644 src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.af.yml create mode 100644 src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ja.yml create mode 100644 src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ko.yml create mode 100644 src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.lv.yml create mode 100644 src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.mk.yml create mode 100644 src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ms.yml create mode 100644 src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.sr.yml create mode 100644 src/Sylius/Bundle/CoreBundle/Resources/translations/validators.ja.yml create mode 100644 src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.af.yml create mode 100644 src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ja.yml create mode 100644 src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ko.yml create mode 100644 src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.lv.yml create mode 100644 src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ms.yml create mode 100644 src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.sr.yml create mode 100644 src/Sylius/Bundle/CustomerBundle/Resources/translations/flashes.hu.yml create mode 100644 src/Sylius/Bundle/CustomerBundle/Resources/translations/flashes.th.yml create mode 100644 src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.af.yml create mode 100644 src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.lv.yml create mode 100644 src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.zh_TW.yml rename src/Sylius/Bundle/LocaleBundle/Resources/translations/{messages.fr.yml => messages.af.yml} (82%) create mode 100644 src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.fi.yml create mode 100644 src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.he.yml create mode 100644 src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ja.yml create mode 100644 src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ko.yml create mode 100644 src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.lv.yml create mode 100644 src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.mk.yml create mode 100644 src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ms.yml create mode 100644 src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.sr.yml create mode 100644 src/Sylius/Bundle/PaymentBundle/Resources/translations/flashes.be.yml create mode 100644 src/Sylius/Bundle/PaymentBundle/Resources/translations/flashes.hu.yml create mode 100644 src/Sylius/Bundle/PaymentBundle/Resources/translations/flashes.sl.yml create mode 100644 src/Sylius/Bundle/PaymentBundle/Resources/translations/flashes.sq.yml create mode 100644 src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.af.yml create mode 100644 src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.he.yml create mode 100644 src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ko.yml create mode 100644 src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.lv.yml create mode 100644 src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.mk.yml create mode 100644 src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ms.yml create mode 100644 src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.he.yml create mode 100644 src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.sv.yml create mode 100644 src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.zh_TW.yml create mode 100644 src/Sylius/Bundle/ProductBundle/Resources/translations/messages.af.yml create mode 100644 src/Sylius/Bundle/ProductBundle/Resources/translations/messages.lv.yml create mode 100644 src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ms.yml create mode 100644 src/Sylius/Bundle/ProductBundle/Resources/translations/messages.sr.yml create mode 100644 src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.lv.yml create mode 100644 src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.mk.yml create mode 100644 src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.sr.yml create mode 100644 src/Sylius/Bundle/ReviewBundle/Resources/translations/validators.fi.yml create mode 100644 src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.af.yml create mode 100644 src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ko.yml create mode 100644 src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.lv.yml create mode 100644 src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.mk.yml create mode 100644 src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ms.yml create mode 100644 src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.ja.yml create mode 100644 src/Sylius/Bundle/ShopBundle/Resources/translations/messages.he.yml create mode 100644 src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.af.yml create mode 100644 src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ko.yml create mode 100644 src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ms.yml create mode 100644 src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.sr.yml create mode 100644 src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.af.yml create mode 100644 src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ja.yml create mode 100644 src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ko.yml create mode 100644 src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.lv.yml create mode 100644 src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.mk.yml create mode 100644 src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ms.yml create mode 100644 src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.sr.yml create mode 100644 src/Sylius/Bundle/UiBundle/Resources/translations/flashes.hu.yml create mode 100644 src/Sylius/Bundle/UiBundle/Resources/translations/flashes.lt.yml create mode 100644 src/Sylius/Bundle/UiBundle/Resources/translations/flashes.pt.yml create mode 100644 src/Sylius/Bundle/UiBundle/Resources/translations/flashes.sq.yml create mode 100644 src/Sylius/Bundle/UserBundle/Resources/translations/flashes.hu.yml create mode 100644 src/Sylius/Bundle/UserBundle/Resources/translations/flashes.lt.yml create mode 100644 src/Sylius/Bundle/UserBundle/Resources/translations/flashes.sl.yml create mode 100644 src/Sylius/Bundle/UserBundle/Resources/translations/flashes.sq.yml create mode 100644 src/Sylius/Bundle/UserBundle/Resources/translations/messages.ms.yml create mode 100644 src/Sylius/Bundle/UserBundle/Resources/translations/validators.be.yml create mode 100644 src/Sylius/Bundle/UserBundle/Resources/translations/validators.ca.yml create mode 100644 src/Sylius/Bundle/UserBundle/Resources/translations/validators.he.yml create mode 100644 src/Sylius/Bundle/UserBundle/Resources/translations/validators.zh_TW.yml diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.af.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.af.yml index 9ffd95f4298..57736052065 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.af.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.af.yml @@ -11,6 +11,7 @@ sylius: last_name: Van postcode: Poskode province: Provinsie + zone: Area country: name: Naam provinces: Provinsies diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ar.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ar.yml index 48b4315e5ae..038cada15ed 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ar.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ar.yml @@ -8,7 +8,7 @@ sylius: company: الشركة country: البلد first_name: الاسم الأول - last_name: إسم العائلة + last_name: اسم العائلة phone_number: رقم الهاتف postcode: الرقم البريدي street: عنوان الشارع @@ -35,7 +35,7 @@ sylius: zone: المنطقة scope: نطاق scopes: - all: الكل + all: الجميع select: اختر select_scope: اختر النطاق zone_member: diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.be.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.be.yml index 1a51ebc4e74..a94b575d84c 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.be.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.be.yml @@ -10,7 +10,7 @@ sylius: first_name: Імя last_name: Прозвішча phone_number: Нумар тэлефону - postcode: Індэкс + postcode: Паштовы код street: Вуліца і нумар дома province: Вобласць (рэгіён) zone: Зона @@ -21,13 +21,13 @@ sylius: select: Выбярыце enabled: Уключана province: - name: Імя + name: Назва abbreviation: Абрэвіятура вобласці (рэгіёну) - select: Выберыце + select: Выбярыце zone: add_member: Дадаць удзельніка members: Удзельнікі - name: Імя + name: Назва type: Тып types: country: Краіна diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.bg.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.bg.yml index 065d1726ef9..87163a5a1c8 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.bg.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.bg.yml @@ -15,17 +15,17 @@ sylius: province: Област zone: Зона country: - add_province: Добавяне на провинция + add_province: Добави провинция name: Име provinces: Области select: Изберете - enabled: Активно + enabled: Активирано province: name: Име abbreviation: Съкращение select: Изберете zone: - add_member: Добавяне на член + add_member: Добави член members: Членове name: Име type: Тип @@ -33,7 +33,7 @@ sylius: country: Държава province: Област zone: Зона - scope: Oбсег + scope: Обхват scopes: all: Всички select: Изберете diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.cs.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.cs.yml index 132cb9f4fcd..22c54a263c1 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.cs.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.cs.yml @@ -7,7 +7,7 @@ sylius: city: Město company: Firma country: Země - first_name: Křestní jméno + first_name: Křestní Jméno last_name: Příjmení phone_number: Telefonní číslo postcode: PSČ diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.es.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.es.yml index d5c6c0eda5b..3b7cd513bc1 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.es.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.es.yml @@ -19,7 +19,7 @@ sylius: name: Nombre provinces: Provincias select: Selecciona - enabled: Activado + enabled: '¿Activado?' province: name: Nombre abbreviation: Abreviatura @@ -33,10 +33,10 @@ sylius: country: País province: Provincia zone: Zona - scope: Alcance + scope: Ámbito scopes: all: Todos - select: Seleccionar + select: Selecciona select_scope: Seleccione ámbito zone_member: - select: Seleccionar + select: Selecciona diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.et.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.et.yml index 78e2550715d..fcaa75eab0c 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.et.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.et.yml @@ -19,7 +19,7 @@ sylius: name: Nimi provinces: Provintsid select: Vali - enabled: Luba + enabled: Lubatud province: name: Nimi abbreviation: Lühend @@ -32,7 +32,7 @@ sylius: types: country: Riik province: Provints - zone: Tsoon + zone: Piirkond scope: Ulatus scopes: all: Kõik diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.fi.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.fi.yml index 7831408aeeb..c5fd1d2e9f2 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.fi.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.fi.yml @@ -32,7 +32,7 @@ sylius: types: country: Maa province: Lääni - zone: Alue + zone: Vyöhyke scope: Alue scopes: all: Kaikki diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.fr.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.fr.yml index bac82074b64..e477e131aa6 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.fr.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.fr.yml @@ -4,36 +4,18 @@ sylius: form: address: - city: Ville - company: Société - country: Pays first_name: Prénom last_name: Nom - phone_number: Téléphone - postcode: Code postal street: Voie - province: Région zone: Zone country: - add_province: Ajouter une région - name: Nom - provinces: Etat select: Sélectionner - enabled: Activé province: - name: Nom abbreviation: Abréviation select: Sélectionner zone: - add_member: Ajouter un membre - members: Membres - name: Nom - type: Type types: - country: Pays - province: Région zone: Zone - scope: Champ d'application scopes: all: Tous select: Sélectionner diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.he.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.he.yml index 84356b8754c..a1c95d336f0 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.he.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.he.yml @@ -19,7 +19,7 @@ sylius: name: שם provinces: מחוזות select: בחירה - enabled: מופעל + enabled: הופעל province: name: שם abbreviation: ראשי תיבות או שם מקוצר של מחוז @@ -34,8 +34,6 @@ sylius: province: מחוז zone: איזור scope: תחום - scopes: - all: כל התחומים select: בחירה select_scope: בחרו תחום zone_member: diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.hr.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.hr.yml index 98b1c24b0d3..7a475805a27 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.hr.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.hr.yml @@ -11,16 +11,16 @@ sylius: last_name: Prezime phone_number: Kontakt telefon postcode: Poštanski broj - province: Pokrajina + province: Županija zone: Regija country: add_province: Dodaj pokrajinu - name: Naziv Države - provinces: Pokrajine + name: Naziv regije + provinces: Županije select: Odaberite enabled: Omogućeno province: - name: Naziv pokrajine + name: Naziv regije abbreviation: Skraćeno select: Odaberite zone: @@ -30,7 +30,7 @@ sylius: type: Vrsta types: country: Država - province: Pokrajina + province: Županija zone: Regija scope: Djelokrug scopes: diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.hu.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.hu.yml index 047696c905b..9bf3c477f3d 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.hu.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.hu.yml @@ -23,7 +23,7 @@ sylius: province: name: Név abbreviation: Rövidítés - select: Válasszon + select: Válassza ki zone: add_member: Tag hozzáadása members: Tagok diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.id.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.id.yml index 0948ef19a15..5b794da2262 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.id.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.id.yml @@ -7,7 +7,7 @@ sylius: city: Kota company: Perusahaan country: Negara - first_name: Nama depan + first_name: Nama Depan last_name: Nama belakang phone_number: Nomor telepon postcode: Kode pos diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.it.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.it.yml index a6088946c9e..c5136dd0647 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.it.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.it.yml @@ -6,7 +6,7 @@ sylius: address: city: Città company: Azienda - country: Nazione + country: Paese first_name: Nome last_name: Cognome phone_number: Numero di telefono @@ -16,18 +16,18 @@ sylius: zone: Zona country: add_province: Aggiungi provincia - name: Nome + name: "Nome\n" provinces: Provincia select: Scegli enabled: Abilitato province: - name: Nome + name: "Nome\n" abbreviation: Abbreviazione - select: Seleziona + select: Scegli zone: add_member: Aggiungi membro members: Membri - name: Nome + name: "Nome\n" type: Tipo types: country: Paese diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ja.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ja.yml index e283e161184..a7c6e8c5c44 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ja.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ja.yml @@ -15,10 +15,16 @@ sylius: zone: 対象の地域 country: add_province: 都道府県を設定する + name: ゾーン名 provinces: 都道府県 + enabled: 有効 + province: + name: ゾーン名 zone: add_member: 追加 members: 地域 + name: ゾーン名 + type: タイプ types: country: 国 province: 都道府県 diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ko.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ko.yml index 221ce5fcbf0..077b6c9c443 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ko.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ko.yml @@ -11,6 +11,7 @@ sylius: last_name: 성 phone_number: 전화번호 postcode: 우편번호 + zone: 영역 country: add_province: 시 또는 구 또는 군 추가 name: 이름 diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.lv.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.lv.yml new file mode 100644 index 00000000000..47ac89c7fe6 --- /dev/null +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.lv.yml @@ -0,0 +1,11 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + country: + name: Nosaukums + province: + name: Nosaukums + zone: + name: Nosaukums diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.mk.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.mk.yml index 43291b5ec94..45533654210 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.mk.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.mk.yml @@ -14,21 +14,26 @@ sylius: province: Регион zone: Зона country: - name: Назив + add_province: Додадете регион + name: Име provinces: Региони select: Изберете + enabled: Овозможено province: name: Име select: Изберете zone: + add_member: Додади член members: Членови - name: Назив + name: Име type: Вид types: country: Држава province: Регион zone: Зона scope: Опсег + scopes: + all: Сите select: Изберете select_scope: Изберете опсег zone_member: diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ms.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ms.yml index b6485ff1cee..d9a8c758d34 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ms.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ms.yml @@ -31,7 +31,7 @@ sylius: type: Jenis types: country: Negara - province: Wilayah + province: Daerah zone: Zon scope: Skop scopes: diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.nl.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.nl.yml index 2ebdb3e0ab9..5b06c06cd87 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.nl.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.nl.yml @@ -19,7 +19,7 @@ sylius: name: Naam provinces: Provincies select: Selecteer - enabled: Toegestaan + enabled: Ingeschakeld province: name: Naam abbreviation: Afkorting diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.pl.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.pl.yml index 16bfdb9ee44..bc729d442a7 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.pl.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.pl.yml @@ -19,7 +19,7 @@ sylius: name: Nazwa provinces: Województwa select: Wybierz - enabled: Aktywne + enabled: Dostępny province: name: Nazwa abbreviation: Skrót diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.pt.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.pt.yml index 50eae8fed17..7b4de4434da 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.pt.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.pt.yml @@ -7,7 +7,7 @@ sylius: city: Cidade company: Empresa country: País - first_name: Primeiro nome + first_name: Nome próprio last_name: Apelido phone_number: Número de telefone postcode: Código postal diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.pt_BR.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.pt_BR.yml index 03048292450..8572546091c 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.pt_BR.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.pt_BR.yml @@ -13,7 +13,7 @@ sylius: postcode: CEP street: Endereço province: Estado - zone: Região + zone: Zona country: add_province: Adicionar estado name: Nome @@ -32,10 +32,10 @@ sylius: types: country: País province: Estado - zone: Região + zone: Zona scope: Escopo scopes: - all: Todas + all: Todos(as) select: Selecione select_scope: Selecione o escopo zone_member: diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ro.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ro.yml index 355ba95529a..27dca2d53f7 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ro.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ro.yml @@ -16,18 +16,18 @@ sylius: zone: Zonă country: add_province: Adăugare județ - name: Nume + name: Nume produs provinces: Județe select: Selectaţi enabled: Activat province: - name: Nume + name: Nume produs abbreviation: Abreviere select: Selectaţi zone: add_member: Adaugă membru members: Membri - name: Nume + name: Nume produs type: Tip types: country: Țară diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ru.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ru.yml index 90c7c7d6ae9..1d76b33fab8 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ru.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.ru.yml @@ -12,11 +12,11 @@ sylius: phone_number: Контактный телефон postcode: Индекс street: Улица - province: Район + province: Область zone: Зона country: add_province: Добавить регион - name: Страна + name: Округ provinces: Области select: Выбрать enabled: Активен @@ -27,7 +27,7 @@ sylius: zone: add_member: Добавить members: Области - name: Название + name: Округ type: Тип types: country: Страна diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.sk.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.sk.yml index 04d854719cc..ed401a20210 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.sk.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.sk.yml @@ -6,7 +6,7 @@ sylius: address: city: Mesto company: Spoločnosť - country: Štát + country: Krajina first_name: Meno last_name: Priezvisko phone_number: Telefónne číslo @@ -26,7 +26,7 @@ sylius: select: Vyberte zone: add_member: Pridať člena - members: Členovia + members: Používatelia name: Názov type: Typ types: diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.sl.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.sl.yml index 128ad0d0a6a..fe6d4ef0078 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.sl.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.sl.yml @@ -30,8 +30,8 @@ sylius: type: Vrsta types: country: Država - province: Provinca - zone: Območje + province: Regija + zone: Cona scope: Področje select: Izberite select_scope: Izberite področje diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.sq.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.sq.yml index bcb60c43a42..17bff1a1979 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.sq.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.sq.yml @@ -27,6 +27,7 @@ sylius: add_member: Shto anëtar members: Anëtarët name: Emri + type: Lloji types: country: Shteti province: Rajoni diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.sr.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.sr.yml index bba031d60b7..e75c9903d3e 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.sr.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.sr.yml @@ -5,13 +5,14 @@ sylius: form: address: city: Град - company: Компанија + company: Предузеће country: Земља first_name: Име last_name: Презиме phone_number: Број телефона postcode: Поштански број province: Провинција + zone: Зона country: add_province: Додај провинцију name: Име diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.th.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.th.yml index b97af27e6df..6c14a15826d 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.th.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.th.yml @@ -16,18 +16,18 @@ sylius: zone: โซน country: add_province: เพิ่มจังหวัด - name: ชื่อ + name: ชื่อภาษา provinces: จังหวัด select: เลือก enabled: เปิดใช้งาน province: - name: ชื่อ + name: ชื่อภาษา abbreviation: ตัวย่อ select: เลือก zone: add_member: เพิ่มสมาชิก members: สมาชิก - name: ชื่อ + name: ชื่อภาษา type: ชนิด types: country: ประเทศ diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.tr.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.tr.yml index 597b020338c..8fe09ffab1e 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.tr.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.tr.yml @@ -16,19 +16,19 @@ sylius: zone: Bölge country: add_province: Bölge ekle - name: Ülke adı + name: Ad provinces: İller select: Ülke seçin enabled: Etkin province: name: Ad abbreviation: Kısaltma - select: Seçiniz + select: Ülke seçin zone: add_member: Üye ekle members: Üyeler - name: Bölge adı - type: Türü + name: Ad + type: Tür types: country: Ülke province: Eyalet diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.uk.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.uk.yml index 61af0d87b27..c38ed142f7a 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.uk.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.uk.yml @@ -16,12 +16,12 @@ sylius: zone: Зона country: add_province: Додати регіон - name: Назва країни + name: Назва provinces: Регіони select: Виберіть - enabled: Увімкнено + enabled: Ввімкнено province: - name: Назва регіону + name: Назва abbreviation: Абревіатура select: Виберіть zone: diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.vi.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.vi.yml index 626ae856c79..a7355e2629b 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.vi.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.vi.yml @@ -12,6 +12,7 @@ sylius: phone_number: Số điện thoại postcode: Mã bưu chính province: Tỉnh + zone: Khu vực country: add_province: Thêm tỉnh name: Tên diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.zh_CN.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.zh_CN.yml index 9b5c9f8f012..4cab8f0a389 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.zh_CN.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/messages.zh_CN.yml @@ -6,16 +6,16 @@ sylius: address: city: 城市 company: 公司 - country: 国家 - first_name: 名 - last_name: 姓 + country: test + first_name: 名字 + last_name: 姓氏 phone_number: 电话号码 postcode: 邮编 street: 街道地址 province: 省/直辖市/自治区 zone: 区域 country: - add_province: 添加省份 + add_province: 添加省 name: 名称 provinces: 省份 select: 请选择 @@ -30,7 +30,7 @@ sylius: name: 名称 type: 类型 types: - country: 国家 + country: test province: 省/直辖市/自治区 zone: 区域 scope: 范围 diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/validators.af.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/validators.af.yml index aee6362d0bb..4ae7387c152 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/validators.af.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/validators.af.yml @@ -28,6 +28,9 @@ sylius: min_length: Straat moet minstens 2 karakters lank wees|Straat moet minstens 2 karakters lank wees. not_blank: Voer asb. straat in. not_shippable: Hierdie adres is nie 'n geldige bestemming nie. + country: + code: + not_blank: Voer asb. ISO land kode in. province: name: max_length: Provinsie naam mag nie langer wees as 255 karakters nie|Provinsie naam mag nie langer wees as 255 karakters nie. diff --git a/src/Sylius/Bundle/AddressingBundle/Resources/translations/validators.sr.yml b/src/Sylius/Bundle/AddressingBundle/Resources/translations/validators.sr.yml index 3f85f1e42c4..6d309758ee2 100644 --- a/src/Sylius/Bundle/AddressingBundle/Resources/translations/validators.sr.yml +++ b/src/Sylius/Bundle/AddressingBundle/Resources/translations/validators.sr.yml @@ -29,6 +29,9 @@ sylius: min_length: Назив улице мора имати бар 2 карактера|Назив улице мора имати бар 2 карактера. not_blank: Молимо унесите назив улице. not_shippable: Ова адреса није исправно одредиште за доставу. + country: + code: + not_blank: Молимо унесите ISO кôд државе. province: name: max_length: Назив регије не сме бити дужи од 255 карактера|Назив регије не сме бити дужи од 255 карактера. diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ar.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ar.yml index 32017a02226..ef0bc7c3d74 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ar.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ar.yml @@ -15,7 +15,7 @@ sylius: taxons: تاكسونس configuration: admin_users: مدير - channels: قنوات + channels: القنوات countries: البلدان currencies: العملات exchange_rates: سعر الصرف diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.be.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.be.yml index 9f496ab2c7e..7d7f983ce03 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.be.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.be.yml @@ -9,7 +9,7 @@ sylius: association_types: Тыпы ўзаемасувязей attributes: Атрыбуты header: Каталог - inventory: Склад + inventory: Інвентар options: Опцыі products: Прадукты taxons: Катэгорыі @@ -20,7 +20,7 @@ sylius: currencies: Валюты exchange_rates: Курсы валют header: Канфігурацыя - locales: Мовы + locales: Месцы размяшчэння payment_methods: Метады аплаты shipping_categories: Катэгорыі дастаўкі shipping_methods: Метады дастаўкі diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.bg.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.bg.yml index 7d2407bd986..6a3be3681fe 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.bg.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.bg.yml @@ -6,7 +6,7 @@ sylius: admin: main: catalog: - association_types: Типове асоциации + association_types: Тип асоциации attributes: Атрибути header: Каталог inventory: Инвентар @@ -16,10 +16,10 @@ sylius: configuration: admin_users: Администратори channels: Канали - countries: Държави + countries: Страни currencies: Валути exchange_rates: Валутни курсове - header: Настройки + header: Конфигурация locales: Езикови променливи payment_methods: Начин на плащане shipping_categories: Категории за доставка diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.cs.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.cs.yml index 331bbb3ede0..914aba88c74 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.cs.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.cs.yml @@ -29,7 +29,7 @@ sylius: zones: Oblasti marketing: header: Marketing - product_reviews: Hodnocení produktu + product_reviews: Hodnocení produktů promotions: Akce customers: customers: Zákazníci diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.da.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.da.yml index 4b0dbae52dc..eff2e00c69a 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.da.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.da.yml @@ -6,15 +6,15 @@ sylius: admin: main: catalog: - association_types: Associerede typer + association_types: Tilknytningstyper attributes: Egenskaber header: Katalog inventory: Lager options: Indstillinger - products: Produkter + products: Varer taxons: Kategorier configuration: - admin_users: Administrator + admin_users: Administratorer channels: Kanaler countries: Lande currencies: Valutaer diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.de.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.de.yml index 32bb97e14f4..e08aa570e97 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.de.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.de.yml @@ -23,10 +23,10 @@ sylius: locales: Gebietsschemata payment_methods: Bezahlmethoden shipping_categories: Versandkategorien - shipping_methods: Versandmethoden + shipping_methods: Versandarten tax_categories: Steuerkategorien tax_rates: Steuersätze - zones: Versandgebiete + zones: Gebiete marketing: header: Marketing product_reviews: Produkt-Bewertung diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.de_CH.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.de_CH.yml index 32bb97e14f4..e08aa570e97 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.de_CH.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.de_CH.yml @@ -23,10 +23,10 @@ sylius: locales: Gebietsschemata payment_methods: Bezahlmethoden shipping_categories: Versandkategorien - shipping_methods: Versandmethoden + shipping_methods: Versandarten tax_categories: Steuerkategorien tax_rates: Steuersätze - zones: Versandgebiete + zones: Gebiete marketing: header: Marketing product_reviews: Produkt-Bewertung diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.el.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.el.yml index 7efd80d982e..8a3753fb357 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.el.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.el.yml @@ -7,12 +7,12 @@ sylius: main: catalog: association_types: Τύποι συσχετισμών - attributes: Γνωρίσματα + attributes: Χαρακτηριστικά header: Κατάλογος - inventory: Αποθέματα + inventory: Απόθεμα options: Επιλογές products: Προϊόντα - taxons: Ταξινομική μονάδα + taxons: Ταξινομικές μονάδες configuration: admin_users: Διαχειριστές channels: Κανάλια diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.es.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.es.yml index 01921c62584..aa2d1c17b73 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.es.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.es.yml @@ -21,9 +21,9 @@ sylius: exchange_rates: Tasas de cambio header: Configuración locales: Idiomas - payment_methods: Métodos de pago - shipping_categories: Categorías de envío - shipping_methods: Métodos de envío + payment_methods: Modos de pago + shipping_categories: Categorías de envio + shipping_methods: Métodos de envio tax_categories: Categorías de impuestos tax_rates: Tasas de impuestos zones: Zonas diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.et.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.et.yml index 3d5b967a189..ce995625063 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.et.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.et.yml @@ -6,5 +6,6 @@ sylius: admin: main: configuration: + channels: Kanalid currencies: Valuutad locales: Keeled diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.fa.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.fa.yml index 39c789b8f3c..6fe93957eaa 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.fa.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.fa.yml @@ -7,10 +7,10 @@ sylius: main: catalog: association_types: انواع ارتباط ها - attributes: ویژگی‌ها + attributes: قابلیت ها header: فهرست inventory: موجودی کالا - options: گزینه‎ها + options: آپشن ها products: محصولات taxons: دسته بندی ها configuration: diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.fi.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.fi.yml index 8226fb7526c..98e9c0560ff 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.fi.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.fi.yml @@ -7,7 +7,7 @@ sylius: main: catalog: association_types: Yhteystyypit - attributes: Ominaisuudet + attributes: Määritteet header: Luettelo options: Asetukset products: Tuotteet @@ -29,6 +29,7 @@ sylius: promotions: Kampanjat customers: customers: Asiakkaat + groups: Ryhmät header: Asiakas sales: header: Myynnit diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.fr.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.fr.yml index 46b2372a57e..d711b7e7831 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.fr.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.fr.yml @@ -9,32 +9,18 @@ sylius: association_types: Types d'associations attributes: Attributs header: Catalogue - inventory: Inventaire + inventory: Stock options: Options - products: Produits - taxons: Taxons configuration: admin_users: Administrateurs - channels: Canaux countries: Pays currencies: Devises exchange_rates: Taux de change header: Configuration - locales: Paramètres régionaux - payment_methods: Moyens de paiement - shipping_categories: Catégories d'expédition - shipping_methods: Modes de livraison + locales: Locales tax_categories: Catégories de taxe tax_rates: Taux de taxe - zones: Zones marketing: - header: Marketing product_reviews: Avis produit - promotions: Promotions customers: - customers: Clients groups: Groupes - header: Client - sales: - header: Ventes - orders: Commandes diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.he.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.he.yml index 2d65f8221e7..a3a5b91bc4e 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.he.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.he.yml @@ -8,8 +8,10 @@ sylius: catalog: attributes: מאפיינים options: אפשרויות + products: מוצרים taxons: קבוצות טקסונומיות configuration: + channels: ערוצים currencies: מטבעות customers: groups: קבוצות diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.hr.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.hr.yml index 7fae68b60c5..46943deb440 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.hr.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.hr.yml @@ -12,6 +12,7 @@ sylius: inventory: Skladište options: Opcije products: Proizvodi + taxons: Taksoni configuration: admin_users: Administratori channels: Kanali @@ -25,7 +26,7 @@ sylius: shipping_methods: Načini slanja tax_categories: Kategorije poreza tax_rates: Stope poreza - zones: Regije + zones: Područja (Zone) marketing: header: Marketing product_reviews: Recenzije proizvoda @@ -33,7 +34,7 @@ sylius: customers: customers: Kupci groups: Grupe - header: Kupac + header: Kupci sales: - header: Prodaja + header: Prodaja u trenutnom mjesecu orders: Narudžbe diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.hu.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.hu.yml index c0177ebdd67..8db0087282e 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.hu.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.hu.yml @@ -12,6 +12,7 @@ sylius: inventory: Leltár options: Beállítások products: Termékek + taxons: Taxonok configuration: admin_users: Adminisztrátorok channels: Csatornák @@ -31,7 +32,7 @@ sylius: product_reviews: Termék értékelések promotions: Promóciók customers: - customers: Ügyfelek + customers: Vásárlók groups: Csoportok header: Ügyfél sales: diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.id.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.id.yml index 08e4d11d057..956132c187d 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.id.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.id.yml @@ -6,7 +6,7 @@ sylius: admin: main: catalog: - association_types: Tipe Kategory + association_types: Tipe asosiasi attributes: Atribut header: Katalog inventory: Persediaan @@ -20,7 +20,7 @@ sylius: currencies: Mata Uang exchange_rates: Kurs header: Konfigurasi - locales: Lokal + locales: Pilihan Bahasa payment_methods: Metode Pembayaran shipping_categories: Kategori Pengiriman shipping_methods: Metode Pengiriman @@ -29,7 +29,7 @@ sylius: zones: Wilayah marketing: header: Pemasaran - product_reviews: Review produk + product_reviews: Ulasan produk promotions: Promosi customers: customers: Pelanggan diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.it.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.it.yml index 75b01a6835f..fd4e4ac9125 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.it.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.it.yml @@ -12,7 +12,7 @@ sylius: inventory: Magazzino options: Opzioni products: Prodotti - taxons: Generi + taxons: Taxons configuration: admin_users: Amministratori channels: Canali @@ -22,8 +22,8 @@ sylius: header: Configurazione locales: Localizzazioni payment_methods: Metodi di pagamento - shipping_categories: Categorie di spedizione - shipping_methods: Metodi di spedizione + shipping_categories: Categorie spedizioni + shipping_methods: Metodo di spedizione tax_categories: Categorie di tassazione tax_rates: Aliquote fiscali zones: Zone diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ja.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ja.yml index c74c3ddfa5b..9fd91ed1def 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ja.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ja.yml @@ -8,17 +8,22 @@ sylius: catalog: inventory: sylius.breadcrumb.inventory.index options: sylius.breadcrumb.option.index + products: sylius.breadcrumb.product.index configuration: countries: 国の設定 currencies: 通貨 + exchange_rates: 為替レート + header: 条件設定 payment_methods: 支払い方法の管理 + shipping_categories: 配送カテゴリ shipping_methods: 配送方法管理 tax_rates: 税管理 - zones: 地域 + zones: ゾーン管理 marketing: - promotions: プロモーション管理 + promotions: sylius.breadcrumb.promotion.index customers: + customers: sylius.breadcrumb.customers groups: グループ sales: header: sylius.breadcrumb.sales - orders: 注文管理 + orders: sylius.breadcrumb.order.index diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ko.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ko.yml new file mode 100644 index 00000000000..832741ba6e3 --- /dev/null +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ko.yml @@ -0,0 +1,9 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + menu: + admin: + main: + customers: + groups: 그룹 diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.nl.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.nl.yml index b1565c7a3d1..27cc2a07b66 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.nl.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.nl.yml @@ -9,7 +9,7 @@ sylius: association_types: Relatietypes attributes: Attributen header: Catalogus - inventory: Voorraad + inventory: Locaties options: Opties products: Producten taxons: Taxa @@ -17,12 +17,12 @@ sylius: admin_users: Beheerders channels: Kanalen countries: Landen - currencies: Valuta + currencies: Valuta's exchange_rates: Wisselkoersen header: Configuratie locales: Talen/Regio's payment_methods: Betaalmethoden - shipping_categories: Verzendcategorieën + shipping_categories: Verzend categorieën shipping_methods: Verzendmethoden tax_categories: Belastingcategorieën tax_rates: BTW-tarieven diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.no.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.no.yml index 8655dbaae41..87f5bbd640d 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.no.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.no.yml @@ -23,7 +23,7 @@ sylius: locales: Nasjonale innstillinger payment_methods: Betalingsmetoder shipping_categories: Fraktkategorier - shipping_methods: Leveringsmetoder + shipping_methods: Fraktalternativ tax_categories: Merverdikategorier tax_rates: Skattesatser zones: Soner diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.pl.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.pl.yml index 854786229b0..106cf6e3e89 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.pl.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.pl.yml @@ -7,10 +7,10 @@ sylius: main: catalog: association_types: Typy powiązań - attributes: Atrybuty + attributes: Cechy header: Katalog inventory: Zapasy - options: Opcje + options: Warianty products: Produkty taxons: Taksonomie configuration: @@ -18,12 +18,12 @@ sylius: channels: Kanały countries: Kraje currencies: Waluty - exchange_rates: Kursy walut + exchange_rates: Kursy wymiany walut header: Konfiguracja locales: Ustawienia regionalne payment_methods: Metody płatności shipping_categories: Kategorie wysyłki - shipping_methods: Metody wysyłki + shipping_methods: Sposób wysyłki tax_categories: Kategorie podatkowe tax_rates: Stawki podatkowe zones: Strefy diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.pt.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.pt.yml index 82ccdd93e80..6cdc6eaab4c 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.pt.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.pt.yml @@ -12,7 +12,7 @@ sylius: inventory: Inventário options: Opções products: Produtos - taxons: Taxas + taxons: Táxons configuration: admin_users: Administradores channels: Canais diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.pt_BR.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.pt_BR.yml index 84eefe050db..34a04215230 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.pt_BR.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.pt_BR.yml @@ -12,13 +12,13 @@ sylius: inventory: Estoque options: Opções products: Produtos - taxons: Categorias + taxons: Taxas configuration: admin_users: Administradores channels: Canais countries: Países currencies: Moedas - exchange_rates: Taxas de câmbio + exchange_rates: Taxa de câmbio header: Configuração locales: Localidades payment_methods: Meios de pagamentos diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ro.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ro.yml index 510fa6293f2..ac7495f7c5e 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ro.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ro.yml @@ -18,7 +18,7 @@ sylius: channels: Canale countries: Țări currencies: Monede - exchange_rates: Cursuri de schimb + exchange_rates: Cursul de schimb header: Configurare locales: Setări regionale payment_methods: Metode de plată @@ -29,7 +29,7 @@ sylius: zones: Zone marketing: header: Marketing - product_reviews: Recenzii despre produse + product_reviews: Recenziile produsului promotions: Promoţii customers: customers: Clienți diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ru.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ru.yml index 36204258e7c..5452c37e21d 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ru.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.ru.yml @@ -12,13 +12,13 @@ sylius: inventory: Остатки options: Список опций products: Товары - taxons: Таксоны + taxons: Категории configuration: admin_users: Администраторы channels: Каналы countries: Страны currencies: Валюты - exchange_rates: Курсы валют + exchange_rates: Обменный курс header: Конфигурация locales: Языки payment_methods: Способы оплаты @@ -29,7 +29,7 @@ sylius: zones: Зоны marketing: header: Маркетинг - product_reviews: Обзоры товара + product_reviews: Отзывы о товаре promotions: Рекламные акции customers: customers: Клиенты diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sk.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sk.yml index 91ca896a3eb..8510bf9b063 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sk.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sk.yml @@ -14,7 +14,7 @@ sylius: products: Produkty taxons: Kategórie configuration: - admin_users: Administrátor + admin_users: Administrátory channels: Kanály countries: Krajiny currencies: Meny diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sl.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sl.yml index 40655974ac3..30ecf393902 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sl.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sl.yml @@ -11,6 +11,8 @@ sylius: header: Katalog inventory: Inventar options: Možnosti + products: Izdelki + taxons: Taksoni configuration: channels: Kanali countries: Države @@ -18,6 +20,7 @@ sylius: header: Konfiguracija locales: Področne nastavitve payment_methods: Načini plačila + shipping_categories: Kategorije dostave shipping_methods: Načini dostave tax_categories: Davčne stopnje tax_rates: Davčne stopnje diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sq.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sq.yml index 4e975d1775e..42a09c52df0 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sq.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sq.yml @@ -11,6 +11,7 @@ sylius: header: Katalogu inventory: Gjendja e magazinës options: Opsionet + products: Produktet taxons: Tipologjite configuration: channels: Kanalet @@ -19,6 +20,7 @@ sylius: header: Konfigurimi locales: Rajonet payment_methods: Mënyrat e pagesës + shipping_categories: Kategoritë e dërgesave shipping_methods: Mënyrat e dërgesave tax_categories: Kategoritë e taksimit tax_rates: Normat e taksimit diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sr.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sr.yml index aa1cc3a1acf..0f6536e0e1e 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sr.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sr.yml @@ -5,17 +5,26 @@ sylius: menu: admin: main: + catalog: + attributes: Атрибути + options: Опције + products: Производи configuration: countries: Земље + exchange_rates: Курсна листа header: Подешавања locales: Локални - payment_methods: Опције плаћања + payment_methods: Методи плаћања + shipping_categories: Категорије испорука shipping_methods: Начини доставе tax_categories: Категорија пореза tax_rates: Пореске стопе zones: Зоне marketing: promotions: Промоције + customers: + customers: Купци + groups: Групе sales: header: Продаје orders: Наруџбине diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sv.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sv.yml index 5b24c54b6ac..b94382941dc 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sv.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.sv.yml @@ -6,7 +6,7 @@ sylius: admin: main: catalog: - association_types: Associationstyper + association_types: Associationstyp attributes: Attribut header: Katalog inventory: Lager @@ -34,7 +34,7 @@ sylius: customers: customers: Kunder groups: Grupper - header: Kunder + header: Kund sales: header: Försäljning orders: Beställningar diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.th.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.th.yml index 054a4e376fb..00160495250 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.th.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.th.yml @@ -7,10 +7,10 @@ sylius: main: catalog: association_types: ชนิดความสัมพันธ์ - attributes: คุณสมบัติ + attributes: คุณลักษณะ (Attribute) header: แค็ตตาล็อก inventory: คลังสินค้า - options: ตัวเลือกสินค้า + options: ตัวเลือก products: สินค้า taxons: การจัดหมวดหมู่ configuration: @@ -19,9 +19,9 @@ sylius: countries: ประเทศ currencies: สกุลเงิน exchange_rates: อัตราแลกเปลี่ยน - header: การกำหนดค่า - locales: ภาษา - payment_methods: วิธีการชำระเงิน + header: การกำหนดค่า (Configuration) + locales: ภาษาที่ใช้ + payment_methods: วิธีชำระเงิน shipping_categories: ประเภทการจัดส่ง shipping_methods: วิธีการจัดส่ง tax_categories: ประเภทภาษี diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.tr.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.tr.yml index d0d1128bcab..dac76a09805 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.tr.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.tr.yml @@ -6,7 +6,7 @@ sylius: admin: main: catalog: - association_types: İlişki türleri + association_types: İşbirliği türleri attributes: Nitelikler header: Katalog inventory: Stok @@ -18,12 +18,12 @@ sylius: channels: Kanallar countries: Ülkeler currencies: Para birimi - exchange_rates: Döviz Kurları + exchange_rates: Döviz kurları header: Ayarlar locales: Diller payment_methods: Ödeme Yöntemleri shipping_categories: Kargo Kategorileri - shipping_methods: Gönderim metodları + shipping_methods: Kargolama Yöntemleri tax_categories: Vergi Kategorileri tax_rates: Vergi oranları zones: Bölgeler @@ -32,7 +32,7 @@ sylius: product_reviews: Ürün Yorumları promotions: Promosyonlar customers: - customers: Müşteriler + customers: müşteriler groups: Gruplar header: Müşteri sales: diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.uk.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.uk.yml index e5239147396..5d98adb9a98 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.uk.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.uk.yml @@ -36,5 +36,5 @@ sylius: groups: Групи header: Клієнт sales: - header: Продажі + header: Збут orders: Замовлення diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.vi.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.vi.yml index 0dc6f5bf60c..bcb606c4071 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.vi.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.vi.yml @@ -9,12 +9,16 @@ sylius: attributes: Thuộc tính inventory: Hàng tồn kho options: Tùy chọn + products: Sản phẩm taxons: Phân loại configuration: channels: Kênh countries: Quốc gia + exchange_rates: Tỷ giá ngoại tệ + header: Cấu hình locales: Miền địa phương payment_methods: Phương thức thanh toán + shipping_categories: Thể loại shipping_methods: Phương thức vận chuyển marketing: header: Tiếp thị diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.zh_CN.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.zh_CN.yml index fff7489ca20..9827f748762 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.zh_CN.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.zh_CN.yml @@ -15,25 +15,25 @@ sylius: taxons: 分类 configuration: admin_users: 管理员 - channels: 频道 + channels: 门店 countries: 国家 currencies: 货币 exchange_rates: 汇率 - header: 配置 - locales: 本地化 - payment_methods: 支付方式 + header: 配置: + locales: 区域设置 + payment_methods: 付款方法 shipping_categories: 发货类别 shipping_methods: 发货方式 tax_categories: 税种 tax_rates: 税率 zones: 区域 marketing: - header: 市场营销 + header: 市场 product_reviews: 商品评论 promotions: 促销活动 customers: customers: 客户 - groups: 组 + groups: 团体 header: 客户 sales: header: 销售额 diff --git a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.zh_TW.yml b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.zh_TW.yml index 30d25eccf7f..aa5ce2d6e54 100644 --- a/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.zh_TW.yml +++ b/src/Sylius/Bundle/AdminBundle/Resources/translations/messages.zh_TW.yml @@ -12,14 +12,14 @@ sylius: inventory: 庫存 options: 選項 products: 産品 - taxons: 附加税值 + taxons: 分類 configuration: admin_users: 管理員 channels: 頻道 countries: 國家 currencies: 貨幣 exchange_rates: 匯率 - header: 設定 + header: 配置 locales: 地區設定 payment_methods: 付款方式 shipping_categories: 配送類別 diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.af.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.af.yml index 9f42cdc0914..c3e64708863 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.af.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.af.yml @@ -4,6 +4,7 @@ sylius: form: attribute: + name: Naam type: Tipe attribute_type: select: Kies diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.be.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.be.yml index 19b6a897e74..53e397b851b 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.be.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.be.yml @@ -8,7 +8,7 @@ sylius: add_attributes: Дадаць атрыбуты choices: Вырыянты выбару code: Код - name: Імя + name: Назва translations: Пераклады type: Тып attribute_type: diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.bg.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.bg.yml index 5c04fc56028..bf739aab8b7 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.bg.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.bg.yml @@ -4,7 +4,7 @@ sylius: form: attribute: - add: добавяне + add: Добави add_attributes: Добави атрибути choices: Избор code: Код @@ -16,7 +16,7 @@ sylius: configuration: Конфигурация date: Дата datetime: Дата и час - integer: Целочислено + integer: Цяло число percent: Процент select: Изберете text: Текст diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ca.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ca.yml index c1fe8f3af9a..98a03ebc748 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ca.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ca.yml @@ -8,4 +8,5 @@ sylius: name: Nom type: Tipus attribute_type: + configuration: Configuració select: Tria diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.da.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.da.yml index a4c6891a4d4..507aaae4af8 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.da.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.da.yml @@ -13,7 +13,7 @@ sylius: type: Type attribute_type: checkbox: Markeringsfelt - configuration: Opsætning + configuration: Konfiguration date: Dato datetime: Datotid integer: Heltal diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.es.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.es.yml index 685deb2ce38..8ddd388b956 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.es.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.es.yml @@ -18,7 +18,7 @@ sylius: datetime: Fecha y hora integer: Número entero percent: Porcentaje - select: Selección + select: Selecciona text: Texto textarea: Área de texto title: Tipo de atributos diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.fr.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.fr.yml index 893ab4306ac..d6578f9dd99 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.fr.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.fr.yml @@ -4,23 +4,11 @@ sylius: form: attribute: - add: Ajouter - add_attributes: Ajouter des attributs choices: Choix code: Code - name: Nom - translations: Traductions - type: Type attribute_type: - checkbox: Case à cocher configuration: Configuration - date: Date - datetime: Date et heure - integer: Entier - percent: Pourcentage select: Sélectionner - text: Texte - textarea: Zone de texte title: Type de l'attribut validation: Validation attribute_type_configuration: diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.he.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.he.yml index 2c76e948411..ffa4115196b 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.he.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.he.yml @@ -4,6 +4,9 @@ sylius: form: attribute: + add: הוסף + name: שם + translations: תרגומים type: סוג attribute_type: select: בחירה diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.hr.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.hr.yml index e4386dd86fb..c381377f59e 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.hr.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.hr.yml @@ -5,11 +5,14 @@ sylius: form: attribute: add: Dodaj + add_attributes: Dodajte atribute code: ISO kod - name: Naziv grupe + name: Naziv regije + translations: Prijevodi type: Vrsta attribute_type: configuration: Postavke + date: Datum select: Odaberite attribute_type_configuration: select: diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.id.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.id.yml index c4e86b5c1f1..020ca1a93a8 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.id.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.id.yml @@ -30,7 +30,7 @@ sylius: format: Format select: multiple: Banyak - values: Nilai + values: Nilai-nilai choose: Pilih salah satu min: Minimal jumlah inputan max: Maksimal jumlah inputan diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.it.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.it.yml index 3fcc03099c5..67d335235ed 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.it.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.it.yml @@ -8,14 +8,14 @@ sylius: add_attributes: Aggiungi attributi choices: Scelte code: Codice - name: Nome + name: "Nome\n" translations: Traduzioni type: Tipo attribute_type: - checkbox: Casella di scelta + checkbox: Checkbox configuration: Configurazione date: Data - datetime: DateTime + datetime: Data / ora integer: Numero intero percent: Percento select: Scegli diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ja.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ja.yml index af81ef70f87..aedc13c1245 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ja.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ja.yml @@ -5,3 +5,7 @@ sylius: form: attribute: code: コード + name: ゾーン名 + type: タイプ + attribute_type: + configuration: 条件設定 diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ko.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ko.yml index d9bc4f7e1cd..642b1b53914 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ko.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ko.yml @@ -4,6 +4,7 @@ sylius: form: attribute: + name: 이름 type: 타입 attribute_type: select: 선택하기 diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.lt.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.lt.yml index 47ef4efd8bf..b76c349537f 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.lt.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.lt.yml @@ -5,7 +5,7 @@ sylius: form: attribute: add: Pridėti - add_attributes: Pridėti atributus + add_attributes: Pridėti atributą choices: Pasirinkimai code: Kodas name: Pavadinimas diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.lv.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.lv.yml new file mode 100644 index 00000000000..773c4749b1d --- /dev/null +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.lv.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + attribute: + name: Nosaukums diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.mk.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.mk.yml index 8bbddf1daa4..8482c3e1884 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.mk.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.mk.yml @@ -4,6 +4,8 @@ sylius: form: attribute: + code: Код + name: Име type: Вид attribute_type: select: Изберете diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ms.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ms.yml index c677e0d3b7d..13943e20e49 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ms.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ms.yml @@ -4,6 +4,7 @@ sylius: form: attribute: + name: Nama type: Jenis attribute_type: select: Pilih diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ro.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ro.yml index cac8f93b777..0c854d5a9ae 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ro.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ro.yml @@ -8,7 +8,7 @@ sylius: add_attributes: Adaugă atribut choices: Opțiuni code: Cod - name: Nume + name: Nume produs translations: Traduceri type: Tip attribute_type: diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ru.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ru.yml index b1a100be17c..ce9a461cc50 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ru.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.ru.yml @@ -8,7 +8,7 @@ sylius: add_attributes: Добавить атрибуты choices: Выбор code: Код - name: Название + name: Округ translations: 'Переводы' type: Тип attribute_type: diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.sq.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.sq.yml index ab7238d4060..c3cf89146c4 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.sq.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.sq.yml @@ -10,6 +10,7 @@ sylius: code: Kodi name: Emri translations: Përkthime + type: Lloji attribute_type: checkbox: Checkbox configuration: Konfigurimi diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.sr.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.sr.yml index 456fb6487fa..0b93e4f9a71 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.sr.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.sr.yml @@ -4,6 +4,9 @@ sylius: form: attribute: + code: Кôд + name: Име type: Тип attribute_type: + configuration: Подешавања select: Изаберите diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.th.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.th.yml index bb9f138a288..fac8d409721 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.th.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.th.yml @@ -8,7 +8,7 @@ sylius: add_attributes: เพิ่มคุณลักษณะ choices: ตัวเลือก code: รหัส - name: ชื่อ + name: ชื่อภาษา translations: การแปลภาษา type: ชนิด attribute_type: diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.tr.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.tr.yml index ad4d2c0286c..4579b431192 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.tr.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.tr.yml @@ -10,7 +10,7 @@ sylius: code: Kod name: Ad translations: Çeviriler - type: Türü + type: Tür attribute_type: checkbox: Onay Kutusu configuration: Ayarlar diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.vi.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.vi.yml index 96b7cace755..25d1ed80616 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.vi.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.vi.yml @@ -8,4 +8,5 @@ sylius: name: Tên type: Phân loại attribute_type: + configuration: Cấu hình select: Chọn diff --git a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.zh_CN.yml b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.zh_CN.yml index c67407caeef..5731ab13196 100644 --- a/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.zh_CN.yml +++ b/src/Sylius/Bundle/AttributeBundle/Resources/translations/messages.zh_CN.yml @@ -13,7 +13,7 @@ sylius: type: 类型 attribute_type: checkbox: 复选框 - configuration: 设置 + configuration: 配置: date: 日期 datetime: 日期 integer: 整数 diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.af.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.af.yml new file mode 100644 index 00000000000..55691f04428 --- /dev/null +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.af.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + channel: + name: Naam diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ar.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ar.yml index e315726823a..cf2e9d3887b 100644 --- a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ar.yml +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ar.yml @@ -6,6 +6,6 @@ sylius: channel: color: اللون description: الوصف - enabled: تمكين + enabled: تفعيل name: الاسم url: عنوان URL diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.be.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.be.yml index 55714a44400..e29cd316754 100644 --- a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.be.yml +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.be.yml @@ -6,6 +6,6 @@ sylius: channel: color: Колер description: Апісанне - enabled: Уключаны - name: Імя + enabled: Уключана + name: Назва url: URL diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.bg.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.bg.yml index bd3310aa1b0..243769186de 100644 --- a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.bg.yml +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.bg.yml @@ -6,6 +6,6 @@ sylius: channel: color: Цвят description: Описание - enabled: Включено + enabled: Активирано name: Име url: URL-адрес diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.es.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.es.yml index 97116a0ae29..d852f94fe05 100644 --- a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.es.yml +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.es.yml @@ -6,6 +6,6 @@ sylius: channel: color: Color description: Descripción - enabled: Activado + enabled: '¿Activado?' name: Nombre url: URL diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.fi.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.fi.yml index 65f0db79c0c..057837eac38 100644 --- a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.fi.yml +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.fi.yml @@ -4,4 +4,7 @@ sylius: form: channel: + color: Väri description: Kuvaus + enabled: Aktiivinen + name: Nimi diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.fr.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.fr.yml index 6edc59d30e9..daa4d0adfb1 100644 --- a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.fr.yml +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.fr.yml @@ -4,8 +4,4 @@ sylius: form: channel: - color: Couleur - description: Description - enabled: Activé - name: Nom url: URL diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.he.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.he.yml index 1db70d97f57..2e3c79d0b41 100644 --- a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.he.yml +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.he.yml @@ -4,4 +4,7 @@ sylius: form: channel: + color: צבע + description: תיאור enabled: הופעל + name: שם diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.hr.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.hr.yml index aa7c3949c9a..871852957cb 100644 --- a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.hr.yml +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.hr.yml @@ -4,6 +4,7 @@ sylius: form: channel: + color: Boja description: Opis - enabled: Omogući - name: Naziv grupe + enabled: Omogućeno + name: Naziv regije diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.id.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.id.yml index 052ffddfa51..6273b25c7f0 100644 --- a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.id.yml +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.id.yml @@ -5,7 +5,7 @@ sylius: form: channel: color: Warna - description: Deskripsi + description: Keterangan enabled: Diaktifkan name: Nama url: URL diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.it.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.it.yml index 1053f1e2feb..573e54d2c6b 100644 --- a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.it.yml +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.it.yml @@ -7,5 +7,5 @@ sylius: color: Colore description: Descrizione enabled: Abilitato - name: Nome + name: "Nome\n" url: URL diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ja.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ja.yml new file mode 100644 index 00000000000..b2c04d24cc4 --- /dev/null +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ja.yml @@ -0,0 +1,9 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + channel: + description: 説明 + enabled: 有効 + name: ゾーン名 diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ko.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ko.yml new file mode 100644 index 00000000000..6df0e599c16 --- /dev/null +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ko.yml @@ -0,0 +1,8 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + channel: + enabled: 사용 + name: 이름 diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.lv.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.lv.yml new file mode 100644 index 00000000000..fbc920aa843 --- /dev/null +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.lv.yml @@ -0,0 +1,8 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + channel: + description: Apraksts + name: Nosaukums diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.mk.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.mk.yml new file mode 100644 index 00000000000..16686355707 --- /dev/null +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.mk.yml @@ -0,0 +1,9 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + channel: + description: Опис + enabled: Овозможено + name: Име diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ms.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ms.yml new file mode 100644 index 00000000000..a94e8a5cdaa --- /dev/null +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ms.yml @@ -0,0 +1,8 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + channel: + enabled: Dibenarkan + name: Nama diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.nl.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.nl.yml index 858e6c2165c..48ba0371f88 100644 --- a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.nl.yml +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.nl.yml @@ -6,6 +6,6 @@ sylius: channel: color: Kleur description: Omschrijving - enabled: Toegestaan + enabled: Ingeschakeld name: Naam url: URL diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.pl.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.pl.yml index fd2c0f6e237..41a2a97bc86 100644 --- a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.pl.yml +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.pl.yml @@ -6,6 +6,6 @@ sylius: channel: color: Kolor description: Opis - enabled: Aktywne + enabled: Dostępny name: Nazwa url: URL diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.pt_BR.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.pt_BR.yml index 92cf288c8ea..f3aa4c98577 100644 --- a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.pt_BR.yml +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.pt_BR.yml @@ -6,6 +6,6 @@ sylius: channel: color: Cor description: Descrição - enabled: Ativado + enabled: Habilitado name: Nome url: URL diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ro.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ro.yml index 35e9f9e25e6..21288c01123 100644 --- a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ro.yml +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ro.yml @@ -7,5 +7,5 @@ sylius: color: Culoare description: Descriere enabled: Activat - name: Nume + name: Nume produs url: Adresă diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ru.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ru.yml index ce944607ec3..56091e19785 100644 --- a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ru.yml +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.ru.yml @@ -7,5 +7,5 @@ sylius: color: Цвет description: Описание enabled: Активен - name: Название + name: Округ url: URL diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.sr.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.sr.yml new file mode 100644 index 00000000000..f42941f9a45 --- /dev/null +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.sr.yml @@ -0,0 +1,9 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + channel: + description: Опис + enabled: Омогућено + name: Име diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.th.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.th.yml index 2c1274de1de..49b939a77df 100644 --- a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.th.yml +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.th.yml @@ -6,6 +6,6 @@ sylius: channel: color: สี description: คำอธิบาย - enabled: เปิดใช้งานแล้ว - name: ชื่อ + enabled: เปิดใช้งาน + name: ชื่อภาษา url: URL diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.uk.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.uk.yml index 6aa1f9ddb1e..775b296be0f 100644 --- a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.uk.yml +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.uk.yml @@ -6,6 +6,6 @@ sylius: channel: color: Колір description: Опис - enabled: Увімкнено + enabled: Ввімкнено name: Назва url: URL diff --git a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.vi.yml b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.vi.yml index f58831fe70c..5501eb5a511 100644 --- a/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.vi.yml +++ b/src/Sylius/Bundle/ChannelBundle/Resources/translations/messages.vi.yml @@ -4,4 +4,6 @@ sylius: form: channel: + description: Mô tả + enabled: Đã kích hoạt name: Tên diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.af.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.af.yml index a6ad6ccdfdd..e58282e7816 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.af.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.af.yml @@ -3,8 +3,19 @@ sylius: form: + group: + name: Naam image: type: Tipe + product_filter: + name: Naam + shipping_method: + zone: Area + user: + first_name: Naam + last_name: Van + product_association_type: + name: Naam installer: extensions: off: false diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ar.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ar.yml index 5ac754af075..2ca9a40438a 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ar.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ar.yml @@ -64,7 +64,7 @@ sylius: short_description: وصف مختصر variant_selection_method: أسلوب اختيار البديل main_taxon: الأصناف الرئيسية - channels: قنوات + channels: القنوات enabled: تفعيل product_filter: name: الاسم @@ -95,7 +95,7 @@ sylius: user: billing_address: عنوان الفاتورة different_billing_address: استخدام عنوان مختلف للفوترة؟ - enabled: تمكين + enabled: تفعيل first_name: الاسم الأول groups: المجموعات roles: الأدوار @@ -138,7 +138,7 @@ sylius: taxon: تاكسون amount: القيمة payment_method: - channels: قنوات + channels: القنوات product_attribute: position: المهنة zone: diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.be.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.be.yml index 10d57207f01..3b2b2c5f536 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.be.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.be.yml @@ -22,7 +22,7 @@ sylius: promotion_coupon: per_customer_usage_limit: Ліміт карыстання на кліента group: - name: Імя + name: Назва roles: Ролі channel: contact_email: Кантактны емейл @@ -55,7 +55,7 @@ sylius: payment_state: Статус аплаты channel: Усе каналы page: - body: Цела + body: Змест id: ID title: Назва product: @@ -67,7 +67,7 @@ sylius: channels: Каналы enabled: Уключана product_filter: - name: Імя + name: Назва code: Код product_variant: tax_category: Катэгорыя падатку @@ -123,7 +123,7 @@ sylius: product: Звязаны прадукт type: Тып узаемасувязі product_association_type: - name: Імя + name: Назва promotion_filter: products: Фільтр прадуктаў taxons: Фільтр катэгорый @@ -136,7 +136,7 @@ sylius: products: Прадукты total_of_items_from_taxon: taxon: Катэгорыя - amount: Сума + amount: Колькасць payment_method: channels: Каналы product_attribute: diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ca.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ca.yml index ddb3f371765..df404584b3a 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ca.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ca.yml @@ -160,6 +160,7 @@ sylius: simplexml_import_dom: SimpleXML token_get_all: Tokenizer filesystem: + header: file system cache: header: cache exists: existeix @@ -172,6 +173,7 @@ sylius: vendors: vendors writable: que es pugui escriure settings: + header: Versió de PHP i configuració any: qualsevol detect_unicode: detect_unicode magic_quotes_gpc: magic_quotes_gpc @@ -184,5 +186,7 @@ sylius: short_open_tag: short_open_tag timezone: fus horari timezone_deprecated: + header: Fus horari no aprovat help: El fus horari %timezone% és obsolet. Cal corregir el fitxer php. ini (llista de zones horàries obsolet http://php.net/manual/en/timezones.others.php). version: Versió PHP + version_recommended: Versió de PHP recomanada diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.cs.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.cs.yml index 5bfa0480435..536736a1ef9 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.cs.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.cs.yml @@ -67,7 +67,7 @@ sylius: channels: Kanály enabled: Povoleno product_filter: - name: Název + name: Jméno code: Kód product_variant: tax_category: Typ daně diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.da.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.da.yml index 31af1ed2f64..877d5b4005b 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.da.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.da.yml @@ -55,7 +55,7 @@ sylius: payment_state: Betalingsstatus channel: Alle kanaler page: - body: Krop + body: Indhold id: ID title: Titel product: @@ -133,7 +133,7 @@ sylius: has_taxon: taxons: Kategorier product: - products: Produkter + products: Varer total_of_items_from_taxon: taxon: Taksonomi amount: Beløb diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.de.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.de.yml index b1f35bb6505..2bc90b45875 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.de.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.de.yml @@ -18,7 +18,7 @@ sylius: channels: Ausgabekanäle promotion_action: add_product_configuration: - product: Verkäuflich + product: Produkt promotion_coupon: per_customer_usage_limit: Nutzungsbeschränkung pro Kunde group: @@ -59,7 +59,7 @@ sylius: id: ID title: Titel product: - images: Fotos + images: Bilder restricted_zone: Beschränktes Versandgebiet short_description: Kurzbeschreibung variant_selection_method: Variantenauswahlmethode @@ -89,7 +89,7 @@ sylius: taxon: code: Code file: Foto auswählen - images: Fotos + images: Bilder taxonomy: file: Foto auswählen user: @@ -136,7 +136,7 @@ sylius: products: Produkte total_of_items_from_taxon: taxon: Produktgruppe - amount: Anzahl + amount: Steuersatz payment_method: channels: Ausgabekanäle product_attribute: diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.de_CH.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.de_CH.yml index 38f8e9fa166..47d0cc23523 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.de_CH.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.de_CH.yml @@ -18,7 +18,7 @@ sylius: channels: Ausgabekanäle promotion_action: add_product_configuration: - product: Verkäuflich + product: Produkt promotion_coupon: per_customer_usage_limit: Nutzungsbeschränkung pro Kunde group: @@ -59,7 +59,7 @@ sylius: id: ID title: Titel product: - images: Fotos + images: Bilder restricted_zone: Beschränktes Versandgebiet short_description: Kurzbeschreibung variant_selection_method: Varianten @@ -89,7 +89,7 @@ sylius: taxon: code: Code file: Foto auswählen - images: Fotos + images: Bilder taxonomy: file: Foto auswählen user: @@ -103,11 +103,11 @@ sylius: password: Passwort shipping_address: Lieferadresse user_filter: - query: Suche + query: Suchen variant: depth: Tiefe height: Höhe - on_hand: Auf Lager + on_hand: Aktueller Lagerbestand price: Preis sku: Bestandseinheit shipping_required: Ist ein Versand erforderlich? @@ -136,7 +136,7 @@ sylius: products: Produkte total_of_items_from_taxon: taxon: Produktgruppe - amount: Anzahl + amount: Steuersatz payment_method: channels: Ausgabekanäle product_attribute: diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.el.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.el.yml index 7a86a0a6e41..b29c00a08de 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.el.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.el.yml @@ -68,7 +68,7 @@ sylius: enabled: Ενεργοποιημένο product_filter: name: Ονομασία - code: Κωδικός + code: Κώδικος product_variant: tax_category: Φορολογική κατηγορία shipping_category: Κατηγορία αποστολής diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.es.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.es.yml index 9f287bbf46d..6d93b8a4ebd 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.es.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.es.yml @@ -45,7 +45,7 @@ sylius: file: Imagen locale: code: Código - enabled: Activado + enabled: '¿Activado?' order_filter: created_at_from: Creado después de created_at_to: Creado antes de @@ -65,7 +65,7 @@ sylius: variant_selection_method: Método de selección variante main_taxon: Taxón principal channels: Canales - enabled: Activado + enabled: '¿Activado?' product_filter: name: Nombre code: Código @@ -95,12 +95,12 @@ sylius: user: billing_address: Dirección de facturación different_billing_address: '¿Usar una dirección diferente para la facturación?' - enabled: Activado + enabled: '¿Activado?' first_name: Nombre groups: Grupos roles: Roles last_name: Apellidos - password: Contraseña + password: Contraseña de API shipping_address: Dirección de envío user_filter: query: Búsqueda diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.et.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.et.yml index 1227c8a2dc9..50e07a84f11 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.et.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.et.yml @@ -66,14 +66,21 @@ sylius: created_at_from: Alates created_at_to: Kellele channel: Kõik kanalid + shipping_method: + zone: Piirkond taxon: code: Kood + images: Pildid user: different_billing_address: Kasutada arvel erinevat aadressi? enabled: Lubatud + first_name: Eesnimi roles: Rollid + last_name: Perekonnanimi product_association_type: name: Nimi + payment_method: + channels: Kanalid installer: extensions: off: false diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.fi.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.fi.yml index 12eb0607db5..273414c2784 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.fi.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.fi.yml @@ -3,19 +3,74 @@ sylius: form: + block: + body: Runko + id: Id + title: Otsikko + cart: + coupon: Kuponki + checkout: + addressing: + different_billing_address: Käytä eri osoitetta laskutukseen? promotion: channels: Kanavat + group: + name: Nimi + roles: Roolit + channel: + currencies: Valuutat + currency_base: Perusvaluutta + locales: Alueet image: type: Tyyppi + locale: + code: Koodi + enabled: Aktiivinen + order_filter: + payment_state: Maksun tila + page: + body: Runko + id: Id + title: Otsikko product: channels: Kanavat + enabled: Aktiivinen + product_filter: + name: Nimi + code: Koodi + shipping_method: + zone: Vyöhyke + taxon: + code: Koodi + user: + billing_address: Laskutusosoite + different_billing_address: Käytä eri osoitetta laskutukseen? + enabled: Aktiivinen + first_name: Etunimi + groups: Ryhmät + roles: Roolit + last_name: Sukunimi + password: Salasana + shipping_address: Toimitusosoite + user_filter: + query: Haku + variant: + price: Hinta guest: email: Sähköpostiosoite + product_association_type: + name: Nimi promotion_rule: + has_taxon: + taxons: Veroryhmät product: products: Tuotteet + total_of_items_from_taxon: + amount: Summa payment_method: channels: Kanavat + product_attribute: + position: Asema installer: extensions: off: false diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.fr.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.fr.yml index 138422758e2..6f3ac472701 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.fr.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.fr.yml @@ -14,15 +14,9 @@ sylius: different_billing_address: Utiliser une adresse différente pour la facturation ? payment_method: Moyen de paiement shipping_method: Mode de livraison - promotion: - channels: Canaux - promotion_action: - add_product_configuration: - product: Produit promotion_coupon: per_customer_usage_limit: Limite d'utilisation par client group: - name: Nom roles: Rôles channel: contact_email: Email de contact @@ -41,11 +35,9 @@ sylius: taxonomies: Taxonomies theme: Thème image: - type: Type file: Image locale: code: Code - enabled: Activé order_filter: created_at_from: Créé après le created_at_to: Créé avant le @@ -59,19 +51,14 @@ sylius: id: ID title: Titre product: - images: Images restricted_zone: Restriction de zone short_description: Brève description variant_selection_method: Méthode de sélection de variante main_taxon: Taxinomie principale - channels: Canaux - enabled: Activé product_filter: - name: Nom code: Code product_variant: tax_category: Catégorie de taxe - shipping_category: Catégorie de livraison shipment_filter: created_at_from: De created_at_to: À @@ -89,18 +76,15 @@ sylius: taxon: code: Code file: Sélectionnez une image - images: Images taxonomy: file: Sélectionnez une image user: billing_address: Adresse de facturation different_billing_address: Utiliser une adresse différente pour la facturation ? - enabled: Activé first_name: Prénom groups: Groupes roles: Rôles last_name: Nom - password: Mot de passe shipping_address: Adresse de livraison user_filter: query: Rechercher @@ -122,29 +106,14 @@ sylius: product_association: product: Produits associés type: Type d'association - product_association_type: - name: Nom promotion_filter: products: Filtre de produits taxons: Filtre de taxons promotion_rule: customer_group: group: Groupe de clients - has_taxon: - taxons: Taxons - product: - products: Produits total_of_items_from_taxon: taxon: Taxon - amount: Montant - payment_method: - channels: Canaux - product_attribute: - position: Emplacement - zone: - scopes: - shipping: Expédition - tax: TVA installer: extensions: header: Extensions @@ -206,7 +175,6 @@ sylius: version_recommended: Version de PHP recommandée payum_gateway: cash_on_delivery: Paiement à la livraison - offline: Hors-ligne paypal_express_checkout: Paiement via PayPal Express shipping_method_resolver: by_zones_and_channel: Par zones et canal diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.he.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.he.yml index 1445dfa4ceb..d27b2de5a67 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.he.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.he.yml @@ -3,12 +3,21 @@ sylius: form: + block: + title: כותרת checkout: + addressing: + different_billing_address: השתמש בכתובת שונה על חשבונית? payment_method: אמצעי תשלום shipping_method: אופן המשלוח + promotion: + channels: ערוצים promotion_action: add_product_configuration: product: מוצר + group: + name: שם + roles: תפקידים channel: currencies: מטבעות currency_base: מטבע בסיס @@ -20,27 +29,40 @@ sylius: order_filter: number: מספר channel: כל הערוצים + page: + title: כותרת product: + images: תמונות channels: ערוצים enabled: הופעל + product_filter: + name: שם shipment_filter: + number: מספר הזמנה channel: כל הערוצים payment_filter: number: מספר הזמנה billing_address: חשבונית עבור channel: כל הערוצים + shipping_method: + zone: איזור taxon: file: בחר תמונה images: תמונות taxonomy: file: בחר תמונה user: + billing_address: כתובת לחשבונית + different_billing_address: השתמש בכתובת שונה על חשבונית? enabled: הופעל first_name: שם פרטי groups: קבוצות + roles: תפקידים last_name: שם משפחה password: סיסמה shipping_address: כתובת למשלוח + user_filter: + query: חפש variant: depth: עומק height: גובה @@ -49,6 +71,11 @@ sylius: sku: מק''ט weight: משקל width: רוחב + attribute: + product_attribute_value: + value: ערך + guest: + email: דואר אלקטרוני product_association_type: name: שם promotion_rule: @@ -56,8 +83,12 @@ sylius: taxons: קבוצות טקסונומיות product: products: מוצרים + total_of_items_from_taxon: + amount: כמות payment_method: channels: ערוצים + product_attribute: + position: מיקום zone: scopes: shipping: משלוח diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.hr.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.hr.yml index db940894ed5..c1af27b3062 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.hr.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.hr.yml @@ -22,24 +22,27 @@ sylius: promotion_coupon: per_customer_usage_limit: Ograničenje korištenja po kupcu group: - name: Naziv grupe + name: Naziv regije roles: Role (korisnička prava) channel: contact_email: Kontaktna email adresa currencies: Valute currency_base: Osnovna valuta account_verification_required: Je li potrebna potvrda računa? + hostname: Naziv hosta + locale_default: Zadani lockalitet locales: Lokaliteti payment_methods: Načini plaćanja shipping_methods: Načini slanja tax_zone_default: Zadana porezna zona taxonomies: Glavne kategorije + theme: Tema image: type: Vrsta file: Fotografija locale: code: ISO kod - enabled: Omogući + enabled: Omogućeno order_filter: created_at_from: Kreirano nakon created_at_to: Kreirano prije @@ -48,7 +51,7 @@ sylius: total_to: Do payment_state: Stanje plaćanja page: - body: Sadržaj stranice + body: Poruka id: ID title: Naslov product: @@ -56,10 +59,11 @@ sylius: restricted_zone: Ograničena zona pristupa short_description: Kratak opis variant_selection_method: Način odabira varijante + main_taxon: Glavna taksonomija channels: Kanali - enabled: Omogući + enabled: Omogućeno product_filter: - name: Naziv + name: Naziv regije code: ISO kod product_variant: tax_category: Kategorija artikla @@ -83,8 +87,8 @@ sylius: file: Odaberite sliku user: billing_address: Adresa za dostavu - different_billing_address: Koristio bi drugu adresu za dostavu. - enabled: Aktivan + different_billing_address: Želim koristiti drugu adresu za račun. + enabled: Omogućeno first_name: Ime groups: Grupe roles: Role (korisnička prava) @@ -106,9 +110,13 @@ sylius: value: Vrijednost guest: email: E-mail + product_association: + type: Poveznice proizvoda product_association_type: - name: Naziv grupe + name: Naziv regije promotion_rule: + has_taxon: + taxons: Taksoni product: products: Proizvodi total_of_items_from_taxon: @@ -167,3 +175,4 @@ sylius: header: Zastarjela vremenska zona help: Vremenska zona %timezone% je zastarjela. Ispravite vaš php.ini dokument (popis zastarjelih zona http://php.net/manual/en/timezones.others.php). version: Verzija PHP-a + version_recommended: Preporučena PHP verzija diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.hu.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.hu.yml index 5c3ec16f89d..fb7308690b2 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.hu.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.hu.yml @@ -19,6 +19,8 @@ sylius: promotion_action: add_product_configuration: product: Termék + promotion_coupon: + per_customer_usage_limit: Felhasználókénti felhasználási korlát group: name: Név roles: Szerepek @@ -118,10 +120,15 @@ sylius: product_association_type: name: Név promotion_rule: + customer_group: + group: Felhasználói csoport + has_taxon: + taxons: Taxonok product: products: Termékek total_of_items_from_taxon: taxon: Taxonómia + amount: Összeg payment_method: channels: Csatornák zone: diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.it.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.it.yml index 5055be5e9e3..ab091656eed 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.it.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.it.yml @@ -22,7 +22,7 @@ sylius: promotion_coupon: per_customer_usage_limit: Limite di utilizzo per cliente group: - name: Nome + name: "Nome\n" roles: Regole channel: contact_email: Email di contatto @@ -67,7 +67,7 @@ sylius: channels: Canali enabled: Abilitato product_filter: - name: Nome + name: "Nome\n" code: Codice product_variant: tax_category: Categoria fiscale @@ -123,7 +123,7 @@ sylius: product: Prodotto associato type: Tipi di associazione product_association_type: - name: Nome + name: "Nome\n" promotion_filter: products: Filtro prodotti taxons: Filtro Taxons diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ja.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ja.yml index 34ced875294..2f56bd6b530 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ja.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ja.yml @@ -15,7 +15,9 @@ sylius: shipping_method: 発送方法 promotion_action: add_product_configuration: - product: 商品名 + product: 商品情報 + group: + name: ゾーン名 channel: currencies: 通貨 hostname: ホスト名 @@ -25,9 +27,11 @@ sylius: taxonomies: sylius.breadcrumb.taxonomy.index theme: テーマ image: + type: タイプ file: 画像 locale: code: コード + enabled: 有効 order_filter: number: 注文番号 total_from: 合計金額(下限) @@ -37,17 +41,19 @@ sylius: id: ID title: タイトル product: - images: 画像 + images: 商品画像 short_description: 商品概要 variant_selection_method: バリエーション指定方法 + enabled: 有効 product_filter: - name: 商品名 + name: ゾーン名 code: コード product_variant: tax_category: 税区分 shipment_filter: created_at_from: 合計金額(下限) created_at_to: 合計金額(上限) + number: 注文番号 payment_filter: created_at_from: 合計金額(下限) created_at_to: 合計金額(上限) @@ -57,7 +63,7 @@ sylius: taxon: code: コード file: 画像を選択 - images: 画像 + images: 商品画像 taxonomy: file: 画像を選択 user: @@ -78,6 +84,13 @@ sylius: width: 幅 guest: email: メールアドレス + product_association_type: + name: ゾーン名 + promotion_rule: + product: + products: sylius.breadcrumb.product.index + total_of_items_from_taxon: + amount: 税率 installer: extensions: off: false diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ko.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ko.yml index 48f9d5179fc..a490f1e03e9 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ko.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ko.yml @@ -3,8 +3,33 @@ sylius: form: + group: + name: 이름 + roles: 역할 image: type: 타입 + locale: + enabled: 사용 + product: + enabled: 사용 + product_filter: + name: 이름 + shipping_method: + zone: 영역 + user: + billing_address: 청구지 주소 + enabled: 사용 + first_name: 이름 + groups: 그룹 + roles: 역할 + last_name: 성 + password: 비밀번호 + user_filter: + query: 검색 + guest: + email: 이메일 + product_association_type: + name: 이름 installer: extensions: off: false diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.lv.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.lv.yml index a36f42d280b..03362c4fdd2 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.lv.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.lv.yml @@ -2,6 +2,16 @@ # (c) Paweł Jędrzejewski sylius: + form: + group: + name: Nosaukums + product_filter: + name: Nosaukums + product_association_type: + name: Nosaukums + promotion_rule: + total_of_items_from_taxon: + amount: Summa installer: extensions: off: false diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.mk.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.mk.yml index 78e5110ba14..54d768e5897 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.mk.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.mk.yml @@ -3,13 +3,46 @@ sylius: form: + block: + id: ID број + title: Наслов + group: + name: Име image: type: Вид + locale: + code: Код + enabled: Овозможено + page: + id: ID број + title: Наслов + product: + enabled: Овозможено + product_filter: + name: Име + code: Код + shipping_method: + zone: Зона + taxon: + code: Код + user: + enabled: Овозможено + first_name: Име + last_name: Презиме + password: Лозинка + shipping_address: Адреса за испорака + user_filter: + query: Пребарај attribute: product_attribute_value: value: Вредност guest: email: Е-пошта + product_association_type: + name: Име + promotion_rule: + total_of_items_from_taxon: + amount: Износ installer: extensions: off: false diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ms.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ms.yml index ab9ca8539af..5e276d09f9c 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ms.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ms.yml @@ -3,8 +3,24 @@ sylius: form: + group: + name: Nama image: type: Jenis + locale: + enabled: Dibenarkan + product: + enabled: Dibenarkan + product_filter: + name: Nama + shipping_method: + zone: Zon + user: + enabled: Dibenarkan + first_name: Nama Pertama + last_name: Nama Akhir + product_association_type: + name: Nama installer: extensions: off: false diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.nl.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.nl.yml index de902467c08..2b4ddad543c 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.nl.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.nl.yml @@ -45,7 +45,7 @@ sylius: file: Afbeelding locale: code: Code - enabled: Toegestaan + enabled: Ingeschakeld order_filter: created_at_from: Gemaakt na created_at_to: Gemaakt voor @@ -65,7 +65,7 @@ sylius: variant_selection_method: Variant selectie methode main_taxon: Hoofdcategorie channels: Kanalen - enabled: Toegestaan + enabled: Ingeschakeld product_filter: name: Naam code: Code @@ -94,8 +94,8 @@ sylius: file: Selecteer afbeelding user: billing_address: Factuuradres - different_billing_address: Gebruik een ander adres voor facturering? - enabled: Actief + different_billing_address: Gebruik een ander factuuradres? + enabled: Ingeschakeld first_name: Voornaam groups: Groepen roles: Rollen @@ -136,7 +136,7 @@ sylius: products: Producten total_of_items_from_taxon: taxon: Taxon - amount: Hoeveelheid + amount: Bedrag payment_method: channels: Kanalen product_attribute: diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.pl.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.pl.yml index 08a2982821b..1e924a09019 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.pl.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.pl.yml @@ -45,7 +45,7 @@ sylius: file: Zdjęcie locale: code: Kod - enabled: Aktywne + enabled: Dostępny order_filter: created_at_from: Stworzony po created_at_to: Stworzony przed @@ -65,7 +65,7 @@ sylius: variant_selection_method: Metody wyboru wariantu main_taxon: Główne grupy channels: Kanały - enabled: Aktywne + enabled: Dostępny product_filter: name: Nazwa code: Kod @@ -95,7 +95,7 @@ sylius: user: billing_address: Adres do rachunku different_billing_address: Użyć innego adresu do rozliczeń? - enabled: Aktywne + enabled: Dostępny first_name: Imię groups: Grupy roles: Role @@ -136,7 +136,7 @@ sylius: products: Produkty total_of_items_from_taxon: taxon: Takson - amount: Kwota + amount: Wartość payment_method: channels: Kanały product_attribute: diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.pt.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.pt.yml index 6b442640119..30bfbf4a714 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.pt.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.pt.yml @@ -126,6 +126,8 @@ sylius: promotion_rule: customer_group: group: Grupo de clientes + has_taxon: + taxons: Táxons product: products: Produtos total_of_items_from_taxon: diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.pt_BR.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.pt_BR.yml index 6e329f5fc9b..6cbf67b8104 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.pt_BR.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.pt_BR.yml @@ -45,7 +45,7 @@ sylius: file: Imagem locale: code: Código - enabled: Ativado + enabled: Habilitado order_filter: created_at_from: Criado após created_at_to: Criado antes @@ -65,7 +65,7 @@ sylius: variant_selection_method: Método de seleção da variação main_taxon: Táxon principal channels: Canais - enabled: Ativado + enabled: Habilitado product_filter: name: Nome code: Código @@ -95,7 +95,7 @@ sylius: user: billing_address: Endereço de cobrança different_billing_address: Utilizar um endereço diferente para cobrança? - enabled: Ativado + enabled: Habilitado first_name: Nome groups: Grupos roles: Papéis @@ -143,8 +143,8 @@ sylius: position: Posição zone: scopes: - shipping: Entrega - tax: Taxa + shipping: Expedição + tax: Imposto installer: extensions: header: extensões diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ro.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ro.yml index 460fbf74ac7..6244bddd2aa 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ro.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ro.yml @@ -22,7 +22,7 @@ sylius: promotion_coupon: per_customer_usage_limit: Limita de utilizare per client group: - name: Nume + name: Nume produs roles: Roluri channel: contact_email: E-mail de contact @@ -67,7 +67,7 @@ sylius: channels: Canale enabled: Activat product_filter: - name: Nume + name: Nume produs code: Cod product_variant: tax_category: Categoria de taxă @@ -123,7 +123,7 @@ sylius: product: Produs asociat type: Tipul de asociere product_association_type: - name: Nume + name: Nume produs promotion_filter: products: Filtru produse taxons: Filtru de taxoni @@ -136,7 +136,7 @@ sylius: products: Produse total_of_items_from_taxon: taxon: Taxon - amount: Sumă + amount: Valoare payment_method: channels: Canale product_attribute: diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ru.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ru.yml index ee4b9053ef5..688d7fa9071 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ru.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.ru.yml @@ -18,11 +18,11 @@ sylius: channels: Каналы promotion_action: add_product_configuration: - product: Товар + product: Продукт promotion_coupon: per_customer_usage_limit: Лимит использования на клиента group: - name: Название + name: Округ roles: Роли channel: contact_email: Контактный email @@ -67,7 +67,7 @@ sylius: channels: Каналы enabled: Активен product_filter: - name: Название + name: Округ code: Код product_variant: tax_category: Категория налогов @@ -123,7 +123,7 @@ sylius: product: Связанные продукты type: Типы взаимосвязи product_association_type: - name: Название + name: Округ promotion_filter: products: Фильтр товаров taxons: Фильтр таксонов @@ -136,7 +136,7 @@ sylius: products: Товары total_of_items_from_taxon: taxon: Налог - amount: Сумма + amount: Количество payment_method: channels: Каналы product_attribute: diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.sl.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.sl.yml index e06285afda5..f5c8c921878 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.sl.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.sl.yml @@ -19,6 +19,8 @@ sylius: promotion_action: add_product_configuration: product: Izdelek + promotion_coupon: + per_customer_usage_limit: Omejitev uporabe na kupca group: name: Ime roles: Vloge @@ -86,7 +88,7 @@ sylius: file: Izberite sliko user: billing_address: Naslov za račun - different_billing_address: Uporabimo drug naslov za račun? + different_billing_address: Uporabimo drug naslov za dostavo? enabled: Omogočeno first_name: Ime groups: Skupine @@ -116,8 +118,15 @@ sylius: product_association_type: name: Ime promotion_rule: + customer_group: + group: Skupina kupcev + has_taxon: + taxons: Taksoni + product: + products: Izdelki total_of_items_from_taxon: taxon: Sistematske skupine + amount: Znesek payment_method: channels: Kanali installer: @@ -174,3 +183,4 @@ sylius: header: Opuščeni časovni pas help: Časovni pas %timezone% je opuščen. Popravite vašo datoteko php.ini (seznam opuščenih časovni pasov http://php.net/manual/en/timezones.others.php). version: Različica PHP + version_recommended: Priporočena različica PHP diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.sq.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.sq.yml index ed592619557..6f57373eba3 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.sq.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.sq.yml @@ -19,6 +19,8 @@ sylius: promotion_action: add_product_configuration: product: Produkti + promotion_coupon: + per_customer_usage_limit: Limiti i përdorimit për blerës group: name: Emri roles: Funksionet @@ -34,6 +36,7 @@ sylius: taxonomies: Kategorizimet theme: Tema image: + type: Lloji file: Imazhi locale: code: Kodi @@ -116,10 +119,15 @@ sylius: product_association_type: name: Emri promotion_rule: + customer_group: + group: Grupi i blerësve has_taxon: taxons: Tipologjite + product: + products: Produktet total_of_items_from_taxon: taxon: Fushe + amount: Shuma payment_method: channels: Kanalet installer: @@ -176,3 +184,4 @@ sylius: header: Zonë orare e papranueshme help: Zona orare %timezone% nuk pranohet. is deprecated. Korrigjo php.ini file (lista e zonave orare të kundërshtuara http://php.net/manual/en/timezones.others.php). version: Versioni PHP + version_recommended: Versioni PHP i rekomanduar diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.sr.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.sr.yml index 990af2cb46c..834884423d2 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.sr.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.sr.yml @@ -3,15 +3,65 @@ sylius: form: + block: + body: Садржај + id: ИД + title: Наслов promotion_action: add_product_configuration: product: Производ + group: + name: Име + channel: + locales: Локални + payment_methods: Метод плаћања + shipping_methods: Начини доставе + taxonomies: Категоризација image: type: Тип + locale: + code: Кôд + enabled: Омогућено order_filter: + number: Број payment_state: Стање плаћања + page: + body: Садржај + id: ИД + title: Наслов + product: + images: Слике + variant_selection_method: Метод избора варијанте производа + enabled: Омогућено + product_filter: + name: Име + code: Кôд product_variant: tax_category: Категорија производа + shipping_method: + zone: Зона + taxon: + code: Кôд + images: Слике + user: + billing_address: Адреса за наплату + enabled: Омогућено + first_name: Име + groups: Групе + last_name: Презиме + password: Лозинка + shipping_address: Адреса за слање + variant: + on_hand: Залихе + price: Цена + sku: СКУ + product_association_type: + name: Име + promotion_rule: + product: + products: Производи + total_of_items_from_taxon: + amount: Количина installer: extensions: off: false diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.sr_CS.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.sr_CS.yml index f3ada301d0a..763aa8fff31 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.sr_CS.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.sr_CS.yml @@ -20,14 +20,22 @@ sylius: name: Ime roles: Uloge channel: + currencies: Valute currency_base: Osnovna valuta hostname: Hostname locale_default: Podrazumevana vrednost + locales: Lokalizacije + payment_methods: Metod plaćanja + shipping_methods: Načini dostave tax_zone_default: Podrazumevana poreska zona taxonomies: Kategorizacija theme: Tema image: type: Tip + file: Slika + locale: + code: Kod + enabled: Omogućeno order_filter: number: Broj total_from: Od @@ -41,10 +49,12 @@ sylius: images: Slike short_description: Kratak opis variant_selection_method: Metod izbora varijante proizvoda + main_taxon: Glavna kategorizacija channels: Kanali enabled: Omogućeno product_filter: name: Ime + code: Kod product_variant: tax_category: Kategorija proizvoda shipment_filter: @@ -94,6 +104,8 @@ sylius: promotion_rule: product: products: Proizvodi + total_of_items_from_taxon: + amount: Iznos payment_method: channels: Kanali product_attribute: @@ -110,3 +122,5 @@ sylius: off: false on: true timezone: vremenska zona + payum_gateway: + offline: Van mreže diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.th.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.th.yml index f427b6a6aaa..cad527922f4 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.th.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.th.yml @@ -22,7 +22,7 @@ sylius: promotion_coupon: per_customer_usage_limit: จำกัดการใช้งานสำหรับลูกค้าแต่ละคน group: - name: ชื่อ + name: ชื่อภาษา roles: Roles channel: contact_email: ติดต่ออีเมล์ @@ -45,7 +45,7 @@ sylius: file: รูปภาพ locale: code: รหัส - enabled: เปิดใช้งานแล้ว + enabled: เปิดใช้งาน order_filter: created_at_from: สร้างหลังจาก created_at_to: สร้างก่อน @@ -65,9 +65,9 @@ sylius: variant_selection_method: วิธีการเลือกตัวแปร main_taxon: หมวดหมู่หลัก channels: ช่องทางจำหน่าย - enabled: เปิดใช้งานแล้ว + enabled: เปิดใช้งาน product_filter: - name: ชื่อ + name: ชื่อภาษา code: รหัส product_variant: tax_category: ประเภทภาษี @@ -95,12 +95,12 @@ sylius: user: billing_address: ที่อยู่สำหรับออกใบเสร็จ different_billing_address: ใช้ที่อยู่อื่นสำหรับเรียกเก็บเงินหรือไม่ - enabled: เปิดใช้งานแล้ว + enabled: เปิดใช้งาน first_name: ชื่อ groups: กลุ่ม roles: Roles last_name: นามสกุล - password: รหัสผ่าน + password: Password shipping_address: ที่อยู่สำหรับจัดส่งสินค้า user_filter: query: ค้นหา @@ -123,7 +123,7 @@ sylius: product: สินค้าที่เกี่ยวข้อง type: ชนิดสินค้าที่เกี่ยวข้อง product_association_type: - name: ชื่อ + name: ชื่อภาษา promotion_filter: products: ตัวกรองสินค้า taxons: ตัวกรอง taxons @@ -136,7 +136,7 @@ sylius: products: สินค้า total_of_items_from_taxon: taxon: หมวดหมู่ - amount: ยอดเงิน + amount: ยอดรวม payment_method: channels: ช่องทางจำหน่าย product_attribute: diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.tr.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.tr.yml index f20ebbc7949..572a3fdbcc6 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.tr.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.tr.yml @@ -41,7 +41,7 @@ sylius: taxonomies: Kategoriler theme: Tema image: - type: Türü + type: Tür file: Resim locale: code: Kod diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.uk.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.uk.yml index 098a1def877..79b6a5bd9cf 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.uk.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.uk.yml @@ -45,7 +45,7 @@ sylius: file: Зображення locale: code: Код - enabled: Увімкнено + enabled: Ввімкнено order_filter: created_at_from: Створені після created_at_to: Створений перед @@ -57,7 +57,7 @@ sylius: page: body: Тіло id: ID - title: Назва + title: Заголовок product: images: Зображення restricted_zone: Заборонена зона @@ -65,9 +65,9 @@ sylius: variant_selection_method: Метод вибору варіанту main_taxon: Основний таксон channels: Канали - enabled: Увімкнено + enabled: Ввімкнено product_filter: - name: Ім’я + name: Назва code: Код product_variant: tax_category: Категорія податку @@ -94,8 +94,8 @@ sylius: file: Вибрати зображення user: billing_address: Адреса для рахунків - different_billing_address: Використати іншу адресу для рахунків? - enabled: Увімкнено + different_billing_address: Використати іншу адресу для виставлення рахунків? + enabled: Ввімкнено first_name: Iм'я groups: Групи roles: Ролі diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.vi.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.vi.yml index 91657ac8aa0..aa20dd06234 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.vi.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.vi.yml @@ -16,20 +16,25 @@ sylius: channel: locales: Miền địa phương payment_methods: Phương thức thanh toán + shipping_methods: Phương thức vận chuyển image: type: Phân loại file: Hình ảnh locale: code: Mã + enabled: Đã kích hoạt page: id: ID title: Tiêu đề product: images: Hình ảnh channels: Kênh + enabled: Đã kích hoạt product_filter: name: Tên code: Mã + shipping_method: + zone: Khu vực taxon: code: Mã file: Chọn ảnh @@ -37,8 +42,11 @@ sylius: taxonomy: file: Chọn ảnh user: + enabled: Đã kích hoạt + first_name: Tên groups: Nhóm roles: Vai trò + last_name: Họ password: Mật khẩu user_filter: query: Tìm kiếm @@ -49,6 +57,13 @@ sylius: width: Chiều rộng product_association_type: name: Tên + promotion_rule: + has_taxon: + taxons: Phân loại + product: + products: Sản phẩm + total_of_items_from_taxon: + amount: Số tiền payment_method: channels: Kênh installer: diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.zh_CN.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.zh_CN.yml index 80aea7a321a..c76b7840ddd 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.zh_CN.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.zh_CN.yml @@ -64,7 +64,7 @@ sylius: short_description: 简短说明: variant_selection_method: 变量选择方法 main_taxon: 主分类 - channels: 频道 + channels: 门店 enabled: 已启用 product_filter: name: 名称 @@ -138,7 +138,7 @@ sylius: taxon: 分类 amount: 金额 payment_method: - channels: 频道 + channels: 门店 product_attribute: position: 优先级 zone: diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.zh_TW.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.zh_TW.yml index c4b4dc9b6fa..5921ece15e0 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.zh_TW.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/messages.zh_TW.yml @@ -78,12 +78,22 @@ sylius: created_at_from: 從 created_at_to: 至 channel: 所有頻道 + shipping_method: + zone: 區域 taxon: code: 代碼 + images: 圖像 user: different_billing_address: 使用其他地址作為賬單地址嗎? enabled: 啓用 + first_name: 名 + groups: 群組 roles: 角色 + last_name: 姓 + password: 密碼 + attribute: + product_attribute_value: + value: 數值 product_association_type: name: 名稱 promotion_rule: @@ -104,3 +114,5 @@ sylius: settings: off: false on: true + payum_gateway: + offline: 離線 diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.ar.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.ar.yml index 7b82f390072..1c960c10b26 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.ar.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.ar.yml @@ -20,7 +20,7 @@ sylius: not_blank: يرجى تحديد أسلوب الشحن. contact: email: - invalid: هذا البريد الإلكتروني غير صالح. + invalid: البريد الإلكتروني غير صالح. not_blank: الرجاء إدخال البريدك الإلكتروني. message: not_blank: الرجاء إدخال رسالتك. diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.be.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.be.yml index 546296149b1..288b7ca2b7f 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.be.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.be.yml @@ -2,6 +2,19 @@ # (c) Paweł Jędrzejewski sylius: + channel: + contact_email: + invalid: Несапраўдны адрас. + channel_pricing: + price: + not_blank: Калі ласка, увядзіце кошт. + checkout: + shipping_method: + not_blank: Калі ласка, выберыце метад дастаўкі. + contact: + email: + invalid: Несапраўдны адрас. + not_blank: Калі ласка, увядзіце свой адрас электроннай пошты. locale: code: not_blank: Калі ласка, увядзіце код лакалі. @@ -10,3 +23,6 @@ sylius: onHand: min: На руках павінна быць больш за {{ limit }}. not_blank: Калі ласка, увядзіце колькасць на руках. + user: + email: + invalid: Несапраўдны адрас. diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.bg.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.bg.yml index 50b83f7f8d2..d56430e5480 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.bg.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.bg.yml @@ -86,7 +86,7 @@ sylius: unique: Този имейл е вече използван. min: Имейл трябва да имате поне {{ min }} знака. max: Имейл трябва да има най-много {{ max }} знака. - invalid: Имейлът е невалиден. + invalid: Невалиден имайл адрес. username: unique: Потребителското име вече е заето. not_blank: Моля въведете вашето име. diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.ca.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.ca.yml index 17c671e8d6a..d6b1b2b4fef 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.ca.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.ca.yml @@ -28,6 +28,7 @@ sylius: invalid: Posició ha de ser un nombre sencer. product_variant: onHand: + min: La disponibilitat ha de ser mes gran de {{ limit }}. not_blank: Si us plau introdueix la disponibilitat. width: min: L'amplada no pot ser negativa. diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.de_CH.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.de_CH.yml index 7da7b30f977..ddaf501e81e 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.de_CH.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.de_CH.yml @@ -17,7 +17,7 @@ sylius: not_blank: Bitte Preis eingeben. checkout: shipping_method: - not_blank: Bitte wählen Sie eine Versandart aus. + not_blank: Bitte wählen Sie die Versandart. contact: email: invalid: Diese E-Mail Adresse ist ungültig. diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.es.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.es.yml index 5f4fd1a3f89..27566685627 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.es.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.es.yml @@ -34,7 +34,7 @@ sylius: not_available: '%itemName% no tiene suficiente stock.' order: currency_code: - not_valid: El código de la moneda que ingreso no es válido. + not_valid: El código de la moneda que introdujo no es válido. payment_method_eligibility: 'El método de pago %paymentMethodName% no está activo. Por favor, seleccione otro método de pago.' product_eligibility: 'El producto %productName% ha sido desactivado.' shipping_method_eligibility: 'El producto no cumple los requisitos para el método de envío %shippingMethodName%. Por favor, seleccionar otro método de envío.' diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.fa.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.fa.yml index e5dcd50786e..f6a94c10022 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.fa.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.fa.yml @@ -20,7 +20,7 @@ sylius: not_blank: لطفا شیوه ارسال را انتخاب کنید. contact: email: - invalid: ایمیل وارد شده نامعتبر است. + invalid: این ایمیل نامعتبر است. not_blank: لطفا ایمیل خود را وارد کنید. message: not_blank: لطفا پیام خود را وارد کنید. @@ -48,6 +48,7 @@ sylius: product_image: file: max_size: تصویر بسیار بزرگ است -{{ size }}{{ suffix }}. حداکثر اندازه مجاز {{ limit }}{{ suffix }} می باشد. + upload_ini_size: این تصویر بسیار بزرگ است. حداکثر اندازی مجاز {{ suffix }}{{ limit }} است. product_variant: onHand: min: میزان موجودی باید بیشتر از {{ limit }} باشد. @@ -80,7 +81,7 @@ sylius: unique: این ایمیل قبلا استفاده گردیده. min: ایمیل باید حداقل شامل {{ min }} کاراکتر باشد. max: ایمیل می تواند حداکثر شامل {{ max }} کاراکتر باشد. - invalid: ایمیل وارد شده نامعتبر است. + invalid: این ایمیل نامعتبر است. username: unique: این نام کاربری قبلا استفاده شده است. not_blank: لطفاً نام خود را وارد کنید. diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.fi.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.fi.yml index 22a1d27492a..d5f48f09cc8 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.fi.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.fi.yml @@ -10,6 +10,8 @@ sylius: email: invalid: Sähköpostiosoite ei kelpaa. not_blank: Kirjoita sähköpostiosoitteesi. + message: + not_blank: Kirjoita viesti. customer: currency_code: not_valid: Ilmoittamasi valuuttakoodi ei kelpaa. diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.fr.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.fr.yml index baec0cd00e9..cd8c34440bc 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.fr.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.fr.yml @@ -8,8 +8,6 @@ sylius: default_locale: not_blank: Veuillez renseigner la locale par défaut du canal. contact_email: - invalid: Cet e-mail n'est pas valide. - max: L'e-mail ne doit pas contenir plus de {{ limit }} caractères. min: L'e-mail doit contenir au moins {{ limit }} caractères. channel_pricing: price: @@ -19,9 +17,6 @@ sylius: shipping_method: not_blank: Veuillez sélectionner un mode de livraison. contact: - email: - invalid: Cet e-mail n'est pas valide. - not_blank: Veuillez saisir votre adresse email. message: not_blank: Veuillez saisir votre message. currency: @@ -83,10 +78,8 @@ sylius: upload_ini_size: L'image est trop grande. La taille maximum autorisée est de {{ limit }}{{ suffix }}. user: email: - unique: Cet e-mail est déjà utilisé. min: L'e-mail doit contenir au moins {{ min }} caractères. max: L'e-mail doit contenir au plus {{ max }} caractères. - invalid: Cet e-mail n'est pas valide. username: unique: Ce nom d'utilisateur est déjà utilisé. not_blank: Veuillez entrer un nom d'utilisateur. diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.he.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.he.yml index 2557e952c78..309a124dbb5 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.he.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.he.yml @@ -41,3 +41,4 @@ sylius: user: email: unique: כתובת דואר אלרקטרוני כבר נמצא בשימוש. + invalid: כתובת דואר האלקטרוני אינה תקנית. diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.hu.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.hu.yml index e3f7a6d836f..6620cace670 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.hu.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.hu.yml @@ -5,6 +5,11 @@ sylius: channel: contact_email: invalid: Ez az e-mail cím érvénytelen. + max: E-mail nem lehet {{ limit }} karakternél hosszabb. + min: E-mailnek legalább {{ limit }} karakter hosszúnak kell lennie. + channel_pricing: + price: + not_blank: Kérjük, írja be az árat. checkout: shipping_method: not_blank: Kérjük, válassza ki a szállítási formát. @@ -12,6 +17,8 @@ sylius: email: invalid: Ez az e-mail cím érvénytelen. not_blank: Kérjük adja meg e-mail címét! + message: + not_blank: Kérjük adjon meg egy üzenetet! customer: currency_code: not_valid: A megadott pénznem érvénytelen. diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.ja.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.ja.yml new file mode 100644 index 00000000000..b8195ded5b9 --- /dev/null +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.ja.yml @@ -0,0 +1,14 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + channel_pricing: + price: + not_blank: 価格を入力してください。 + checkout: + shipping_method: + not_blank: 発送方法を選択してください。 + product_variant: + onHand: + min: 在庫は{{ limit }}以上で入力してください。 + not_blank: 在庫を入力してください。 diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.lt.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.lt.yml index 2f676a03060..b64b304638b 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.lt.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.lt.yml @@ -7,6 +7,9 @@ sylius: invalid: Šis adresas yra neteisingas. max: El. paštas turi būti ilgesnis nei {{ limit }} simbolių. min: El. paštas turi būti ilgesnis nei {{ limit }} simboliai. + channel_pricing: + price: + not_blank: Įveskite kainą. checkout: shipping_method: not_blank: Pasirinkite pristatymo būdą. @@ -14,6 +17,8 @@ sylius: email: invalid: Šis adresas yra neteisingas. not_blank: Įveskite savo elektroninio pašto adresą. + message: + not_blank: Įveskite savo pranešimą. customer: currency_code: not_valid: Valiutos kodas yra neteisingas. diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.mk.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.mk.yml index f840dcc5c2c..2d03c12ca03 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.mk.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.mk.yml @@ -5,3 +5,5 @@ sylius: contact: email: not_blank: Внесете ја вашата адреса за е-пошта. + message: + not_blank: Внесете порака. diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.pt.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.pt.yml index 2ce35ad7f24..3f83d6cbd19 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.pt.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.pt.yml @@ -9,13 +9,16 @@ sylius: invalid: Este endereço de e-mail é inválido. max: O e-mail não deve ter mais que {{ limit }} carateres. min: O endereço de e-mail deve pelo menos {{ limit }} caracteres. + channel_pricing: + price: + not_blank: Introduza o preço. checkout: shipping_method: not_blank: Selecione o método de envio. contact: email: invalid: Este endereço de e-mail é inválido. - not_blank: Por favor insira o seu e-mail. + not_blank: Por favor introduza o seu endereço de e-mail. message: not_blank: Por favor, insira a sua mensagem. customer: @@ -23,7 +26,7 @@ sylius: not_valid: O código de moeda introduzido é inválido. order: currency_code: - not_valid: O código de moeda inserido é inválido. + not_valid: O código de moeda introduzido é inválido. locale: code: not_blank: Introduza o código de localidade. diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.pt_BR.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.pt_BR.yml index 75faba6763f..ae56c4eee40 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.pt_BR.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.pt_BR.yml @@ -9,7 +9,7 @@ sylius: not_blank: Introduza a localidade padrão do canal. contact_email: invalid: Este email é inválido. - max: Sobrenome não pode ser maior que {{ limit }} caracteres. + max: O e-mail não deve ter mais que {{ limit }} carateres. min: Email deve ter ao menos {{ limit }} caracteres. channel_pricing: price: @@ -34,7 +34,7 @@ sylius: not_available: '%itemName% não tem estoque suficiente.' order: currency_code: - not_valid: O código de moeda que você inseriu é inválido. + not_valid: O usuário digitado está incorreto. payment_method_eligibility: 'O meio de pagamento %paymentMethodName% foi desabilitado. Por favor selecione novamente sua forma de pagamento.' product_eligibility: 'O produto %productName% foi desabilitado.' shipping_method_eligibility: 'O produto não satizfaz os requisitos do meio de pagamento %shippingMethodName%. Por favor selecione novamente seu meio de pagamento.' diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.ro.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.ro.yml index 466ed13c1b5..c60f7d92c6a 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.ro.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.ro.yml @@ -21,7 +21,7 @@ sylius: contact: email: invalid: Adresa de email nu este validă. - not_blank: Introdu adresa ta de email. + not_blank: Vă rugăm să completați adresa de e-mail. message: not_blank: Scrie-ne un mesaj. currency: @@ -86,7 +86,7 @@ sylius: unique: Acest e-mail este deja folosit. min: Adresa de email trebuie să aibă minim {{ min }} caractere. max: Adresa de email poate să aibă maxim {{ max }} caractere. - invalid: Această adresă de e-mail este invalidă. + invalid: Adresa de email nu este validă. username: unique: Acest nume de utilizator este deja folosit. not_blank: Introdu un nume de utilizator. diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.sl.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.sl.yml index 1cb461a98c8..f43033beb76 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.sl.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.sl.yml @@ -5,6 +5,11 @@ sylius: channel: contact_email: invalid: Ta e-pošta ni veljavna. + max: E-pošta ne sme biti daljša od {{ limit }} znakov. + min: Email mora biti dolga vsaj {{ limit }} znakov. + channel_pricing: + price: + not_blank: Prosimo, vnesite ceno. checkout: shipping_method: not_blank: Prosimo, izberite način dostave. @@ -12,6 +17,8 @@ sylius: email: invalid: Ta e-pošta ni veljavna. not_blank: Prosimo, vnesite vaš elektronski naslov. + message: + not_blank: Prosimo, vnesite vaše sporočilo. locale: code: not_blank: Prosimo, vnesite kodo območnih nastavitev. @@ -27,4 +34,5 @@ sylius: max: Kratek opis ne sme biti daljši kot {{ limit }} znakov. user: email: + unique: Ta e-pošta je že v uporabi. invalid: Ta e-pošta ni veljavna. diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.sq.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.sq.yml index 72cb03c3fcd..3e5400277c3 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.sq.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.sq.yml @@ -5,6 +5,11 @@ sylius: channel: contact_email: invalid: Ky email nuk është i vlefshëm. + max: Email nuk duhet të përmbajë më shumë se {{ limit }} karaktere. + min: Email duhet të përmbajë të paktën {{ limit }} karaktere. + channel_pricing: + price: + not_blank: Shkruaj çmimin. checkout: shipping_method: not_blank: Zgjidh mënyrën e dërgesës. @@ -12,6 +17,8 @@ sylius: email: invalid: Ky email nuk është i vlefshëm. not_blank: Shkruaj adresën e email-it. + message: + not_blank: Shkruaj mesazhin tënd. locale: code: not_blank: Shkruaj kodin lokal. @@ -27,4 +34,5 @@ sylius: max: Përshkrimi i shkurtër nuk duhet të përmbajë më shumë se {{ limit }} karaktere. user: email: + unique: Ky email është përdorur tashmë. invalid: Ky email nuk është i vlefshëm. diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.zh_CN.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.zh_CN.yml index 6bd0aa4932c..931fd27276c 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.zh_CN.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.zh_CN.yml @@ -34,7 +34,7 @@ sylius: not_available: '%itemName% 没有足够的库存。' order: currency_code: - not_valid: 您输入的币种代码是无效的。 + not_valid: 您输入的姓名无效 payment_method_eligibility: '付款方式 %paymentMethodName% 已被禁用。请重新选择您的付款方式。' product_eligibility: '产品 %productName% 已被禁用。' shipping_method_eligibility: '此产品并不适合 %shippingMethodName% 运输方式。请重新选择您的运输方式。' diff --git a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.zh_TW.yml b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.zh_TW.yml index 5e90d22f0c2..f49bd915df9 100644 --- a/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.zh_TW.yml +++ b/src/Sylius/Bundle/CoreBundle/Resources/translations/validators.zh_TW.yml @@ -9,6 +9,9 @@ sylius: email: invalid: 這不是正確的電郵地址。 not_blank: 請輸入您的電郵地址。 + customer: + currency_code: + not_valid: 您輸入的貨幣代碼不正確。 order: currency_code: not_valid: 您輸入的貨幣代碼不正確。 diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.af.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.af.yml new file mode 100644 index 00000000000..844bdc88a54 --- /dev/null +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.af.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + currency: + code: Naam diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.be.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.be.yml index bbec094803d..3e7eb199f08 100644 --- a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.be.yml +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.be.yml @@ -4,6 +4,7 @@ sylius: form: currency: - code: Імя + base: Базавая валюта + code: Назва enabled: Уключана exchange_rate: Абменны курс diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ca.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ca.yml index ca9d60021f5..754be9c9aa1 100644 --- a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ca.yml +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ca.yml @@ -4,5 +4,6 @@ sylius: form: currency: + base: Moneda base code: Nom enabled: Activat diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.es.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.es.yml index 5ba7f9e274b..bfd39d04131 100644 --- a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.es.yml +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.es.yml @@ -6,7 +6,7 @@ sylius: currency: base: Moneda base code: Nombre - enabled: Activado + enabled: '¿Activado?' exchange_rate: Tasa de cambio exchange_rate: source_currency: Moneda origen diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.et.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.et.yml index 28de86d4564..ef3d53df1f3 100644 --- a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.et.yml +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.et.yml @@ -4,5 +4,6 @@ sylius: form: currency: + base: Baasvaluuta code: Nimi enabled: Lubatud diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.fi.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.fi.yml index f352db14084..3c8d09cf945 100644 --- a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.fi.yml +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.fi.yml @@ -4,5 +4,7 @@ sylius: form: currency: + base: Perusvaluutta + code: Nimi enabled: Aktiivinen exchange_rate: Vaihtokurssi diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.fr.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.fr.yml index d9f9d9acb2f..58870fe0b38 100644 --- a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.fr.yml +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.fr.yml @@ -5,8 +5,6 @@ sylius: form: currency: base: Devise de référence - code: Nom - enabled: Activé exchange_rate: Taux de change exchange_rate: source_currency: Devise d'origine diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.he.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.he.yml index e70765cd6d2..78f990c87a3 100644 --- a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.he.yml +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.he.yml @@ -4,4 +4,6 @@ sylius: form: currency: + base: מטבע בסיס + code: שם enabled: הופעל diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.hr.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.hr.yml index fa49fb43d88..d139418b628 100644 --- a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.hr.yml +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.hr.yml @@ -4,6 +4,7 @@ sylius: form: currency: - code: Naziv grupe - enabled: Omogući + base: Osnovna valuta + code: Naziv regije + enabled: Omogućeno exchange_rate: Tečaj diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.it.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.it.yml index 40f02eea528..35a1ee1a2ee 100644 --- a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.it.yml +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.it.yml @@ -5,7 +5,7 @@ sylius: form: currency: base: Valuta base - code: Nome + code: "Nome\n" enabled: Abilitato exchange_rate: Tasso di cambio exchange_rate: diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ja.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ja.yml new file mode 100644 index 00000000000..fee2c1df4af --- /dev/null +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ja.yml @@ -0,0 +1,8 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + currency: + code: ゾーン名 + enabled: 有効 diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ko.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ko.yml new file mode 100644 index 00000000000..8f358f5d3fb --- /dev/null +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ko.yml @@ -0,0 +1,8 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + currency: + code: 이름 + enabled: 사용 diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.lv.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.lv.yml new file mode 100644 index 00000000000..f97100fa128 --- /dev/null +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.lv.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + currency: + code: Nosaukums diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.mk.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.mk.yml index 43aef290abe..b1a0b01dafd 100644 --- a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.mk.yml +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.mk.yml @@ -4,5 +4,6 @@ sylius: form: currency: + code: Име enabled: Овозможено exchange_rate: Курс на конверзија diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ms.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ms.yml new file mode 100644 index 00000000000..e3c799996f2 --- /dev/null +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ms.yml @@ -0,0 +1,8 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + currency: + code: Nama + enabled: Dibenarkan diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.pl.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.pl.yml index d9cfda1c840..ea950c4043d 100644 --- a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.pl.yml +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.pl.yml @@ -6,7 +6,7 @@ sylius: currency: base: Waluta podstawowa code: Nazwa - enabled: Aktywne + enabled: Dostępny exchange_rate: Kurs wymiany exchange_rate: source_currency: Waluta źródłowa diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.pt_BR.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.pt_BR.yml index d520ae99b04..8adc0cd537f 100644 --- a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.pt_BR.yml +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.pt_BR.yml @@ -6,7 +6,7 @@ sylius: currency: base: Moeda base code: Nome - enabled: Ativado + enabled: Habilitado exchange_rate: Taxa de câmbio exchange_rate: source_currency: Moeda de origem diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ro.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ro.yml index 0de43eec7f9..d1e2d75ab37 100644 --- a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ro.yml +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ro.yml @@ -5,7 +5,7 @@ sylius: form: currency: base: Monedă de bază - code: Nume + code: Nume produs enabled: Activat exchange_rate: Cursul de schimb exchange_rate: diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ru.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ru.yml index ae5b5a84594..91e95fe04e8 100644 --- a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ru.yml +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.ru.yml @@ -5,7 +5,7 @@ sylius: form: currency: base: Базовая валюта - code: Название + code: Округ enabled: Активен exchange_rate: Обменный курс exchange_rate: diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.sr.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.sr.yml new file mode 100644 index 00000000000..5a890dcd113 --- /dev/null +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.sr.yml @@ -0,0 +1,8 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + currency: + code: Име + enabled: Омогућено diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.sr_CS.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.sr_CS.yml index 0e9d32511e3..372bf722d5a 100644 --- a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.sr_CS.yml +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.sr_CS.yml @@ -7,6 +7,7 @@ sylius: base: Osnovna valuta code: Ime enabled: Omogućeno + exchange_rate: Kurs exchange_rate: source_currency: Izvorna valuta ratio: Odnos diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.th.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.th.yml index b85ad8c1c69..a55f1fcbd2a 100644 --- a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.th.yml +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.th.yml @@ -5,8 +5,8 @@ sylius: form: currency: base: ฐานสกุลเงิน - code: ชื่อ - enabled: เปิดใช้งานแล้ว + code: ชื่อภาษา + enabled: เปิดใช้งาน exchange_rate: อัตราแลกเปลี่ยน exchange_rate: source_currency: สกุลเงินต้นทาง diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.uk.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.uk.yml index 47217aa58ca..6f3161f3f86 100644 --- a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.uk.yml +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.uk.yml @@ -6,7 +6,7 @@ sylius: currency: base: Основна валюта code: Назва - enabled: Увімкнено + enabled: Ввімкнено exchange_rate: Курс валют exchange_rate: source_currency: Джерело валюти diff --git a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.vi.yml b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.vi.yml index 6d399ba469e..81574b5d4ab 100644 --- a/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.vi.yml +++ b/src/Sylius/Bundle/CurrencyBundle/Resources/translations/messages.vi.yml @@ -5,3 +5,4 @@ sylius: form: currency: code: Tên + enabled: Đã kích hoạt diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/flashes.hu.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/flashes.hu.yml new file mode 100644 index 00000000000..40d80f103b5 --- /dev/null +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/flashes.hu.yml @@ -0,0 +1,6 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + customer: + register: 'Köszönjük a regisztrációt, ellenőrizze leveleit hogy megtudja erősíteni fiókját.' diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/flashes.th.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/flashes.th.yml new file mode 100644 index 00000000000..4b8d701f8c1 --- /dev/null +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/flashes.th.yml @@ -0,0 +1,6 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + customer: + register: 'ขอบคุณสำหรับลงทะเบียน กรุณาตรวจสอบอีเมลเพื่อทำการยืนยันบัญชีของคุณ' diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.af.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.af.yml new file mode 100644 index 00000000000..c9bbcc841bc --- /dev/null +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.af.yml @@ -0,0 +1,10 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + customer: + first_name: Naam + last_name: Van + customer_group: + name: Naam diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.be.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.be.yml index 6ae2bb867af..ea70402636d 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.be.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.be.yml @@ -11,7 +11,7 @@ sylius: billing_address: Адрас для аплаты different_billing_address: Выкарыстоўваць іншы адрас для аплаты? customer_group: - name: Імя + name: Назва roles: Ролі gender: unknown: Невядома diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.bg.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.bg.yml index e46c16ba9eb..a155fc01aee 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.bg.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.bg.yml @@ -11,7 +11,7 @@ sylius: phone_number: Телефонен номер gender: Пол birthday: Рожден ден - billing_address: Адрес за фактуриране + billing_address: Адрес на плащане different_billing_address: Използвайте различен адрес за фактуриране? only_customer_registration: Създаване на профил? subscribed_to_newsletter: Абонирайте се за бюлетин @@ -19,6 +19,6 @@ sylius: name: Име roles: Роли gender: - unknown: Неизвестен + unknown: Неизвестно male: Мъжки female: Женски diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.cs.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.cs.yml index 3e328b49de7..beb8bed0a6c 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.cs.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.cs.yml @@ -4,7 +4,7 @@ sylius: form: customer: - first_name: Křestní jméno + first_name: Křestní Jméno group: Skupina last_name: Příjmení email: Email diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.de.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.de.yml index b64cfd99e66..59b9575ef3b 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.de.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.de.yml @@ -12,7 +12,7 @@ sylius: gender: Geschlecht birthday: Geburtstag billing_address: Rechnungsadresse - different_billing_address: Eine abweichende Rechnungsadresse benutzen? + different_billing_address: Eine andere Rechnungsadresse benutzen? only_customer_registration: Account erstellen? subscribed_to_newsletter: Newsletter abonnieren customer_group: diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.et.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.et.yml index 46ac7d2e7b5..833493b2cbd 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.et.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.et.yml @@ -4,6 +4,8 @@ sylius: form: customer: + first_name: Eesnimi + last_name: Perekonnanimi phone_number: Telefoni number different_billing_address: Kasutada arvel erinevat aadressi? customer_group: diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.fr.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.fr.yml index dfde16455e0..364723b9e51 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.fr.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.fr.yml @@ -8,7 +8,6 @@ sylius: group: Groupe last_name: Nom email: E-mail - phone_number: Téléphone gender: Sexe birthday: Date de naissance billing_address: Adresse de facturation @@ -16,7 +15,6 @@ sylius: only_customer_registration: Créer un compte ? subscribed_to_newsletter: S'abonner à la newsletter customer_group: - name: Nom roles: Rôles gender: unknown: Inconnu diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.hr.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.hr.yml index 39b79e689cb..669e70e6243 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.hr.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.hr.yml @@ -13,9 +13,10 @@ sylius: birthday: Rođendan billing_address: Adresa za dostavu different_billing_address: Želim koristiti drugu adresu za račun. + only_customer_registration: Napravite račun subscribed_to_newsletter: Pretplatite se na naš newsletter customer_group: - name: Naziv grupe + name: Naziv regije roles: Role (korisnička prava) gender: unknown: Nepoznato diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.it.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.it.yml index 23b1ec59c19..2e811ecc7fb 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.it.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.it.yml @@ -16,7 +16,7 @@ sylius: only_customer_registration: Crea un account? subscribed_to_newsletter: Iscriviti alla newsletter customer_group: - name: Nome + name: "Nome\n" roles: Regole gender: unknown: Sconosciuto diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ja.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ja.yml index 6ec4a67832a..2a05162ce15 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ja.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ja.yml @@ -10,3 +10,5 @@ sylius: phone_number: 電話番号 billing_address: ご請求先住所 different_billing_address: 請求先として別の住所を指定する + customer_group: + name: ゾーン名 diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ko.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ko.yml index 4eed13536da..8b7b096e6f5 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ko.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ko.yml @@ -4,4 +4,14 @@ sylius: form: customer: + first_name: 이름 + last_name: 성 + email: 이메일 phone_number: 전화번호 + gender: '성별:' + birthday: 생년월일 + billing_address: 청구지 주소 + only_customer_registration: 계정 등록 + customer_group: + name: 이름 + roles: 역할 diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.lv.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.lv.yml new file mode 100644 index 00000000000..d340a712520 --- /dev/null +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.lv.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + customer_group: + name: Nosaukums diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.mk.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.mk.yml index 0de36af0fcb..cd2b03a1070 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.mk.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.mk.yml @@ -4,5 +4,9 @@ sylius: form: customer: + first_name: Име + last_name: Презиме email: Е-пошта phone_number: Телефонски Број + customer_group: + name: Име diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ms.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ms.yml index 1275e8399ea..d6e1f734abc 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ms.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ms.yml @@ -4,4 +4,8 @@ sylius: form: customer: + first_name: Nama Pertama + last_name: Nama Akhir phone_number: Nombor Telefon + customer_group: + name: Nama diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.pt.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.pt.yml index c5a192d5a0e..83a16c42c63 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.pt.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.pt.yml @@ -7,7 +7,7 @@ sylius: first_name: Nome próprio group: Grupo last_name: Apelido - email: Endereço de e-mail + email: Endereço de email phone_number: Número de telefone gender: Género birthday: Data de nascimento diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ro.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ro.yml index 496a485136d..09a44fe4198 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ro.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ro.yml @@ -16,7 +16,7 @@ sylius: only_customer_registration: Creez cont? subscribed_to_newsletter: Abonează-te la newsletter customer_group: - name: Nume + name: Nume produs roles: Roluri gender: unknown: Necunoscută diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ru.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ru.yml index 26e667c5d5c..25c3125830a 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ru.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.ru.yml @@ -16,7 +16,7 @@ sylius: only_customer_registration: Создать учетную запись? subscribed_to_newsletter: Подписаться на рассылку новостей customer_group: - name: Название + name: Округ roles: Роли gender: unknown: Неизвестен diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.sl.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.sl.yml index 0df55a2ce76..0ac497f739e 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.sl.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.sl.yml @@ -8,6 +8,8 @@ sylius: last_name: Priimek email: E-pošta phone_number: Telefonska številka + gender: Spol + birthday: Rojstni dan billing_address: Naslov za račun different_billing_address: Uporabimo drug naslov za dostavo? customer_group: @@ -15,3 +17,5 @@ sylius: roles: Vloge gender: unknown: Ni znano + male: Moški + female: Ženska diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.sq.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.sq.yml index 388463886f1..898ca60c0e8 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.sq.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.sq.yml @@ -8,10 +8,15 @@ sylius: last_name: Mbiemri email: Email phone_number: Numri i telefonit + gender: Gjinia + birthday: Ditëlindja billing_address: Adresa e faturimit different_billing_address: Përdor adresë tjetër për faturën? + only_customer_registration: Krijo llogari? customer_group: name: Emri roles: Funksionet gender: unknown: E panjohur + male: Mashkull + female: Femër diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.sr.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.sr.yml index 9992be1b133..f5bade86f25 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.sr.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.sr.yml @@ -4,4 +4,9 @@ sylius: form: customer: + first_name: Име + last_name: Презиме phone_number: Број телефона + billing_address: Адреса за наплату + customer_group: + name: Име diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.th.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.th.yml index 1908543fab1..26ffa91ab91 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.th.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.th.yml @@ -16,7 +16,7 @@ sylius: only_customer_registration: สร้างบัญชี? subscribed_to_newsletter: สมัครรับจดหมายข่าว customer_group: - name: ชื่อ + name: ชื่อภาษา roles: Roles gender: unknown: ไม่ทราบสถานะ diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.tr.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.tr.yml index d809157b03e..3be6029f71f 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.tr.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.tr.yml @@ -20,5 +20,5 @@ sylius: roles: Roller gender: unknown: Bilinmiyor - male: Erkek + male: Bay female: Bayan diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.uk.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.uk.yml index d4a4422fa42..608684143af 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.uk.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.uk.yml @@ -12,13 +12,13 @@ sylius: gender: Стать birthday: Дата народження billing_address: Адреса для рахунків - different_billing_address: Використати іншу адресу для рахунків? + different_billing_address: Використати іншу адресу для виставлення рахунків? only_customer_registration: Створити обліковку? subscribed_to_newsletter: Підписатись на інформаційний бюлетень customer_group: name: Назва roles: Ролі gender: - unknown: Не вказана + unknown: Невідомо male: Чоловіча female: Жіноча diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.vi.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.vi.yml index 8aef4770bee..ac99c489193 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.vi.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.vi.yml @@ -4,6 +4,8 @@ sylius: form: customer: + first_name: Tên + last_name: Họ phone_number: Số điện thoại customer_group: name: Tên diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.zh_TW.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.zh_TW.yml index e110846bbf8..b8dbdf8d099 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.zh_TW.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/messages.zh_TW.yml @@ -4,6 +4,8 @@ sylius: form: customer: + first_name: 名 + last_name: 姓 phone_number: 電話號碼 different_billing_address: 使用其他地址作為賬單地址嗎? customer_group: diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.be.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.be.yml index 12d2c06eb32..6a4cd88dfa1 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.be.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.be.yml @@ -4,6 +4,11 @@ sylius: customer: first_name: + min: Імя павінны быць хаця б {{ limit }} сімвалаў даўжынёй. not_blank: Калі ласка, увядзіце ваша імя. last_name: + min: Прозвішча павінна быць хаця б {{ limit }} сімвалаў даўжынёй. not_blank: Калі ласка, увядзіце Ваша прозвішча. + email: + not_blank: Калі ласка, увядзіце свой адрас электроннай пошты. + invalid: Несапраўдны адрас. diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.bg.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.bg.yml index 0c8cf6dbbb3..3533d015b69 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.bg.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.bg.yml @@ -17,8 +17,8 @@ sylius: already_used: Този имейл вече се използва, влезте или използвайте забравена парола. max: Имейлът не трябва да надвишава {{ limit }} знака. not_blank: Моля, въведете вашия имейл. - invalid: Имейлът е невалиден. - unique: Този имейл вече е използван. + invalid: Невалиден имайл адрес. + unique: Този имейл е вече използван. registered: Този имейл вече е регистриран, влезте или използвайте забравена парола. customer_group: code: diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.ca.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.ca.yml index 16ca37a8299..5a2d3643120 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.ca.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.ca.yml @@ -4,6 +4,12 @@ sylius: customer: first_name: + min: El Nom ha de ser almenys de {{ limit }} caràcters. not_blank: Si us plau, introdueix el teu nom. last_name: + min: El Cognom ha de ser almenysde {{ limit }} caràcters. not_blank: Si us plau, introdueix el teu cognom. + email: + not_blank: Escriu el teu correu electrònic. + invalid: Aquest correu electrònic no és vàlid. + unique: Aquest correu electrònic ja té un compte associat. diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.da.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.da.yml index 7c493e7b122..75f12fba317 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.da.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.da.yml @@ -15,7 +15,7 @@ sylius: not_blank: Angiv venligst dit køn. email: already_used: Denne email er allerede i brug, venligst login eller brug glemt adgangskode funktionen. - max: E-mail må ikke være længere end {{ limit }} tegn. + max: Emailen må ikke være længere end {{ limit }} tegn. not_blank: Indtast venligst din email. invalid: Denne email er ugyldig. unique: Denne e-mail er allerede i brug. diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.el.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.el.yml index 6c26a5a44ed..1cad35a0ffd 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.el.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.el.yml @@ -6,7 +6,10 @@ sylius: first_name: not_blank: Παρακαλώ εισάγετε το όνομά σας. last_name: + min: Το Επώνυμο θα πρέπει να είναι τουλάχιστον {{ limit }} χαρακτήρες. not_blank: Παρακαλούμε εισάγετε το επώνυμό σας. email: + max: Το email δεν μπορεί να έχει μεγαλύτερο μήκος από {{ limit }} χαρακτήρες. not_blank: Παρακαλώ εισάγετε το email σας. invalid: Αυτό το email δεν είναι έγκυρο. + unique: Αυτό το email χρησιμοποιείται ήδη. diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.fa.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.fa.yml index 58edb35bd02..d18bd02d899 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.fa.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.fa.yml @@ -17,7 +17,7 @@ sylius: already_used: این ایمیل قبلا استفاده شده، لطفا وارد شوید و یا از قسمت فراموشی کلمه عبور استفاده کنید. max: ایمیل نباید بیش از {{ limit }} حرف باشد. not_blank: لطفا ایمیل خود را وارد کنید. - invalid: ایمیل وارد شده نامعتبر است. + invalid: این ایمیل نامعتبر است. unique: این ایمیل قبلا استفاده گردیده. registered: این ایمیل قبلا ثبت شده، لطفا وارد شوید و یا تنظیم مجدد کلمه عبور را استفاده کنید. customer_group: diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.fr.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.fr.yml index 19082c4a97f..80b161d3b5a 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.fr.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.fr.yml @@ -15,11 +15,7 @@ sylius: not_blank: Veuillez choisir votre sexe. email: already_used: Cet e-mail est déjà utilisé, veuillez vous connecter ou procéder à la réinitialisation du mot de passe oublié. - max: L'e-mail ne doit pas contenir plus de {{ limit }} caractères. - not_blank: Veuillez saisir votre adresse email. - invalid: Cet e-mail n'est pas valide. - unique: Cet e-mail est déjà utilisé. - registered: Cet e-mail est déjà utilisé, réessayez ou cliquez sur mot de passe oublié. + registered: Cet e-mail est déjà utilisé, veuillez vous connecter ou procéder à la réinitialisation du mot de passe oublié. customer_group: code: regex: Le code du groupe de clients peut seulement être constitués de lettres, chiffres, tirets et tirets bas. diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.he.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.he.yml index f3fc1d99a1e..3ae7106a4a4 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.he.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.he.yml @@ -10,6 +10,8 @@ sylius: last_name: max: אורך שם משפחה עד {{ limit }} תווים. email: + max: דואר אלקטרוני אינו יכול להיות יותר מ-{{ limit }} תווים. + not_blank: אנא הזן את כתובת דואר האלקטרוני שלך. invalid: כתובת דואר האלקטרוני אינה תקנית. unique: כתובת דואר אלרקטרוני כבר נמצא בשימוש. registered: כתובת דוא"ל כבר רשומה, אנא התחבר או השתמשו בשיחזור סיסמה. diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.hr.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.hr.yml index fdc616db97e..90a1aacb89d 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.hr.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.hr.yml @@ -4,10 +4,19 @@ sylius: customer: first_name: + max: Ime ne smije biti duže od {{ limit }} znakova. + min: Ime mora imati najmanje {{ limit }} znaka. not_blank: Molimo unesite Vaše ime. last_name: + max: Prezime ne smije biti duže od {{ limit }} znakova. + min: Prezime mora imati najmanje {{ limit }} znakova. not_blank: Molimo unesite Vaše prezime. + gender: + not_blank: Odaberite spol. email: + already_used: Ovaj e-mail se već koristi, molimo prijavite se ili koristite resetiranje lozinke. + max: Email adresa se ne može sastojati s više od {{ limit }} znakova. not_blank: Molimo unesite vašu email adresu. invalid: Ovaj e-mail nije valjan. + unique: Ova email adresa je trenutno zauzeta. registered: Ovaje email je već registriran, molimo prijavite se ili koristite zaboravljenu lozinku. diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.hu.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.hu.yml index 8d3bb5eec8e..d51c8c463cb 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.hu.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.hu.yml @@ -4,10 +4,19 @@ sylius: customer: first_name: + max: A keresztnév lehet nem lehet hosszabb, mint {{ limit }} karakter. + min: Keresztnévnek legalább {{ limit }} karakter hosszúnak kell lennie. not_blank: Kérjük adja meg keresztnevét! last_name: + max: A vezetéknév nem lehet hosszabb, mint {{ limit }} karakter. + min: A vezetéknévnek legalább {{ limit }} karakter hosszúnak kell lennie. not_blank: Kérjük adja meg vezetéknevét! + gender: + not_blank: Kérjük, válaszd ki a nemed. email: + already_used: Ez az e-mail már használatban van. Kérjük, jelentkezzen be vagy igényeljen új jelszót. + max: E-mail nem lehet {{ limit }} karakternél hosszabb. not_blank: Kérjük adja meg e-mail címét! invalid: Ez az e-mail cím érvénytelen. + unique: Ez az e-mail cím már használatban van. registered: Ez az e-mail már regisztrálva van. Kérjük, jelentkezzen be vagy igényeljen új jelszót. diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.id.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.id.yml index 2d68965c9bc..63f788e1435 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.id.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.id.yml @@ -19,7 +19,7 @@ sylius: not_blank: Masukkan email Anda. invalid: Email ini tidak valid. unique: Email ini telah digunakan. - registered: Email ini telah terdaftar, silahkan login atau gunakan lupa kata sandi. + registered: Email ini sudah terdaftar, silahkan login atau gunakan password yang terlupakan. customer_group: code: regex: Kode kelompok pelanggan hanya boleh terdiri dari huruf, angka, tanda strip, dan garis bawah. diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.ja.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.ja.yml index 274d8609d76..236fd87a52c 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.ja.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.ja.yml @@ -4,6 +4,8 @@ sylius: customer: first_name: + min: 名は{{ limit }}文字以上入力してください。 not_blank: 名を入力してください。 last_name: + min: 姓は{{ limit }}文字以上入力してください。 not_blank: 姓を入力してください。 diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.nl.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.nl.yml index d804c6a38d8..e5fd2961787 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.nl.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.nl.yml @@ -19,7 +19,7 @@ sylius: not_blank: Vul uw e-mailadres in. invalid: Deze e-mail is ongeldig. unique: Dit e-mailadres is al in gebruik. - registered: Dit e-mailadres is al in gebruik, gelieve in te loggen of wachtwoord vergeten functionaliteit te gebruiken. + registered: Dit e-mailadres is al in gebruik, gelieve in te loggen of wachtwoord vergeten gebruiken. customer_group: code: regex: Klantgroep code kan alleen bestaan uit letters, cijfers, streepjes en liggende streepjes. diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.pt.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.pt.yml index 2f82403a90e..3e0765525a1 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.pt.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.pt.yml @@ -15,8 +15,8 @@ sylius: not_blank: Por favor escolha o seu género. email: already_used: Este email já está registado. Faça login ou redefina a sua palavra-passe. - max: O endereço de e-mail não deve ter mais que {{ limit }} caracteres. + max: O e-mail não deve ter mais que {{ limit }} carateres. not_blank: Por favor introduza o seu endereço de e-mail. invalid: Este endereço de e-mail é inválido. unique: Este endereço de e-mail já está registado. - registered: Este endereço de e-mail já está registado. Faça login ou redefina a sua palavra-passe. + registered: Este endereço de e-mail já se encontra registado. Faça login ou redefina a sua palavra-passe. diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.pt_BR.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.pt_BR.yml index 4a084ffd18e..6d9321763ef 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.pt_BR.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.pt_BR.yml @@ -15,7 +15,7 @@ sylius: not_blank: Por favor, escolha o seu sexo. email: already_used: Este email já está registrado, por favor realize o Login ou esqueceu sua senha. - max: Sobrenome não pode ser maior que {{ limit }} caracteres. + max: O e-mail não deve ter mais que {{ limit }} carateres. not_blank: Por favor, insira seu email. invalid: Este email é inválido. unique: Este e-mail já está sendo usado. diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.ro.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.ro.yml index 572c6fcffc9..59f4dd8478e 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.ro.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.ro.yml @@ -16,9 +16,9 @@ sylius: email: already_used: Această adresă e deja folosită, autentifică-te sau resetează parola. max: Adresa de email nu trebuie să aibă mai mult de {{ limit }} caractere. - not_blank: Introdu adresa ta de email. - invalid: Această adresă de e-mail este invalidă. - unique: Adresa de email e deja folosită. + not_blank: Vă rugăm să completați adresa de e-mail. + invalid: Adresa de email nu este validă. + unique: Acest e-mail este deja folosit. registered: Acest e-mail este deja înregistrat, vă rugăm să vă autentificați sau să vă resetați parola. customer_group: code: diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.ru.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.ru.yml index b532f106397..ec5a7fd1952 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.ru.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.ru.yml @@ -18,7 +18,7 @@ sylius: max: E-mail не должен быть длиннее {{ limit }} символов. not_blank: Пожалуйста, введите ваш email. invalid: Не правильный e-mail адрес. - unique: Этот e-mail уже используется. + unique: Этот адрес электронной почты уже используется. registered: Этот e-mail уже занят, пожалуйста, войдите или используйте восстановление пароля. customer_group: code: diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.sl.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.sl.yml index 9e32ac0c79e..c1791e08530 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.sl.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.sl.yml @@ -4,10 +4,17 @@ sylius: customer: first_name: + max: Ime ne sme biti daljše od {{ limit }} znakov. + min: Ime mora biti dolgo vsaj {{ limit }} znakov. not_blank: Prosimo, vpišite ime. last_name: + max: Priimek ne sme biti daljši od {{ limit }} znakov. + min: Priimek mora biti dolg vsaj {{ limit }} znakov. not_blank: Prosimo, vpišite priimek. email: + already_used: Ta e-pošta je že uporabljena, prosimo, prijavite se ali pa uporabite pozabljeno geslo. + max: E-pošta ne sme biti daljša od {{ limit }} znakov. not_blank: Prosimo, vnesite vaš elektronski naslov. invalid: Ta e-pošta ni veljavna. + unique: Ta e-pošta je že v uporabi. registered: Ta e-pošta je že uporabljena, prosimo, prijavite se ali pa uporabite pozabljeno geslo. diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.sq.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.sq.yml index 003c83febb5..c7e7306641b 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.sq.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.sq.yml @@ -4,10 +4,19 @@ sylius: customer: first_name: + max: Emri nuk duhet të përmbajë më shumë se {{ limit }} karaktere. + min: Emri duhet të përmbajë të paktën {{ limit }} karaktere. not_blank: Shkruaj emrin. last_name: + max: Mbiemri nuk duhet të përmbajë më shumë se {{ limit }} karaktere. + min: Mbiemri duhet të përmbajë të paktën {{ limit }} karaktere. not_blank: Shkruaj mbiemrin. + gender: + not_blank: Te lutem zgjidh gjinine tende. email: + already_used: Ky email është përdorur tashmë, login ose përdor rikujtimin e fjalëkalimit. + max: Email nuk duhet të përmbajë më shumë se {{ limit }} karaktere. not_blank: Shkruaj adresën e email-it. invalid: Ky email nuk është i vlefshëm. + unique: Ky email është përdorur tashmë. registered: Ky email është i regjistruar, login ose përdor rikujtimin e fjalëkalimit. diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.sr_CS.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.sr_CS.yml index 7c7e44b0036..b1ba479da0e 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.sr_CS.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.sr_CS.yml @@ -9,4 +9,5 @@ sylius: already_used: E-Mail je već registrovan, ulogujete se ili izaberite opciju `zaboravljena lozinka`. not_blank: Unеsite vaš e-mail. invalid: E-mail nije validan. + unique: Ova e-mail adresa je već iskorišćena. registered: E-Mail je već registrovan, ulogujete se ili izaberite opciju `zaboravljena lozinka`. diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.tr.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.tr.yml index 43fbf0c8209..71e26ec0a86 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.tr.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.tr.yml @@ -8,11 +8,15 @@ sylius: min: Soyadı en az {{ limit }} karakter olmalıdır. not_blank: Lütfen adınızı giriniz. last_name: + max: Soyadı {{ limit }} karakterden daha uzun olamaz. + min: Soyadı en az {{ limit }} karakter olmalıdır. not_blank: Lütfen soyadınızı giriniz. gender: not_blank: Lütfen cinsiyetinizi seçiniz. email: + already_used: Bu e-posta zaten kullanılıyor, lütfen giriş yapın veya unutulan parolayı kullanın. + max: E-posta {{ limit }} karakterden uzun olmaması gerekir. not_blank: Lütfen e-posta adresinizi girin. invalid: Bu e-posta geçerli değil. - unique: Bu email zaten kullanımda. + unique: Bu e-posta adresi zaten kullanılmakta. registered: Bu e-posta zaten kullanılıyor, lütfen giriş yapın veya unutulan parolayı kullanın. diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.zh_CN.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.zh_CN.yml index ffa6139cf8e..06b11cb5232 100644 --- a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.zh_CN.yml +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.zh_CN.yml @@ -15,7 +15,7 @@ sylius: not_blank: 请选择你的性别 email: already_used: 该电子邮件已被使用,请登录或选择忘记密码 - max: 电子邮件不允许超过{{limit}}个字符 + max: 电子邮件必须不能超过 {{ limit }} 个字符。 not_blank: 请输入您的电子邮件。 invalid: 电子邮件地址无效。 unique: 该电子邮件已被使用 diff --git a/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.zh_TW.yml b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.zh_TW.yml new file mode 100644 index 00000000000..a79478c84f5 --- /dev/null +++ b/src/Sylius/Bundle/CustomerBundle/Resources/translations/validators.zh_TW.yml @@ -0,0 +1,9 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + customer: + email: + not_blank: 請輸入您的電郵地址。 + invalid: 這不是正確的電郵地址。 + unique: 此電郵位址已被使用。 diff --git a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.fr.yml b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.af.yml similarity index 82% rename from src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.fr.yml rename to src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.af.yml index 74d3bbbe8e6..b146b19e4c2 100644 --- a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.fr.yml +++ b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.af.yml @@ -4,4 +4,4 @@ sylius: form: locale: - name: Nom + name: Naam diff --git a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.be.yml b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.be.yml index 57dc17defac..58daeeb332c 100644 --- a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.be.yml +++ b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.be.yml @@ -4,4 +4,4 @@ sylius: form: locale: - name: Імя + name: Назва diff --git a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.fi.yml b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.fi.yml new file mode 100644 index 00000000000..e04a61d6f8f --- /dev/null +++ b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.fi.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + locale: + name: Nimi diff --git a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.he.yml b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.he.yml new file mode 100644 index 00000000000..381bd98bdc8 --- /dev/null +++ b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.he.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + locale: + name: שם diff --git a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.hr.yml b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.hr.yml index 7d1ff0171df..43fc86f7290 100644 --- a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.hr.yml +++ b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.hr.yml @@ -4,4 +4,4 @@ sylius: form: locale: - name: Naziv grupe + name: Naziv regije diff --git a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.it.yml b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.it.yml index 772edb2b06e..87982c4dd21 100644 --- a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.it.yml +++ b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.it.yml @@ -4,4 +4,4 @@ sylius: form: locale: - name: Nome + name: "Nome\n" diff --git a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ja.yml b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ja.yml new file mode 100644 index 00000000000..7761d393b4a --- /dev/null +++ b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ja.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + locale: + name: ゾーン名 diff --git a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ko.yml b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ko.yml new file mode 100644 index 00000000000..692868de190 --- /dev/null +++ b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ko.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + locale: + name: 이름 diff --git a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.lv.yml b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.lv.yml new file mode 100644 index 00000000000..2c1ad17d8ec --- /dev/null +++ b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.lv.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + locale: + name: Nosaukums diff --git a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.mk.yml b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.mk.yml new file mode 100644 index 00000000000..6220523e3db --- /dev/null +++ b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.mk.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + locale: + name: Име diff --git a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ms.yml b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ms.yml new file mode 100644 index 00000000000..97bd808a90f --- /dev/null +++ b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ms.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + locale: + name: Nama diff --git a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ro.yml b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ro.yml index b373072bed0..6a074cd97b5 100644 --- a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ro.yml +++ b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ro.yml @@ -4,4 +4,4 @@ sylius: form: locale: - name: Nume + name: Nume produs diff --git a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ru.yml b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ru.yml index eed583c12cf..62a09f08957 100644 --- a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ru.yml +++ b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.ru.yml @@ -4,4 +4,4 @@ sylius: form: locale: - name: Название + name: Округ diff --git a/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.sr.yml b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.sr.yml new file mode 100644 index 00000000000..6220523e3db --- /dev/null +++ b/src/Sylius/Bundle/LocaleBundle/Resources/translations/messages.sr.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + locale: + name: Име diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/flashes.be.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/flashes.be.yml new file mode 100644 index 00000000000..0b8174eece2 --- /dev/null +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/flashes.be.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + payment: + cancelled: 'Аплата адменена.' + completed: 'Аплата завершана.' diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/flashes.hu.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/flashes.hu.yml new file mode 100644 index 00000000000..bed81a106e3 --- /dev/null +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/flashes.hu.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + payment: + cancelled: 'A fizetés meg lett szakítva.' + completed: 'A fizetés befejeződött.' diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/flashes.sl.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/flashes.sl.yml new file mode 100644 index 00000000000..b71399f03a7 --- /dev/null +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/flashes.sl.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + payment: + cancelled: 'Plačilo je bilo preklicano.' + completed: 'Plačilo je zaključeno.' diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/flashes.sq.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/flashes.sq.yml new file mode 100644 index 00000000000..51fb495533c --- /dev/null +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/flashes.sq.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + payment: + cancelled: 'Pagesa u fshi.' + completed: 'Pagesa u kompletua.' diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.af.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.af.yml new file mode 100644 index 00000000000..c017583f77f --- /dev/null +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.af.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + payment_method: + name: Naam diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.be.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.be.yml index d27245dc0c4..dfe874c0af9 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.be.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.be.yml @@ -29,3 +29,4 @@ sylius: description: Апісанне enabled: Уключана? name: Назва + position: Пазіцыя diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.bg.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.bg.yml index e19900056ed..8d69bf43ab5 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.bg.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.bg.yml @@ -14,7 +14,7 @@ sylius: amount: Сума за плащане method: Начин на плащане state: - header: Състояние на плащането + header: Състояние на плащане checkout: Плащане completed: Завършено authorized: Оторизирано diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.fa.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.fa.yml index 7f40a09df34..2ac52567c30 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.fa.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.fa.yml @@ -31,3 +31,4 @@ sylius: enabled: فعال? instructions: دستورعمل ها name: نام + position: جایگاه diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.fr.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.fr.yml index 5de157566f4..db3c0bf8461 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.fr.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.fr.yml @@ -30,5 +30,3 @@ sylius: description: Description enabled: Activé ? instructions: Instructions - name: Nom - position: Emplacement diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.he.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.he.yml new file mode 100644 index 00000000000..d8c4adf6ee4 --- /dev/null +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.he.yml @@ -0,0 +1,15 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + payment: + state: + failed: נכשל + new: חדש + unknown: לא ידוע + cancelled: בוטל + payment_method: + description: תיאור + name: שם + position: מיקום diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.hr.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.hr.yml index 3d0cd332bed..3d21dceaa13 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.hr.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.hr.yml @@ -17,6 +17,7 @@ sylius: header: Stanje plaćanja checkout: Blagajna completed: Završeno + authorized: Autorizirano failed: Neuspješno new: Novo pending: Na čekanju @@ -28,4 +29,4 @@ sylius: payment_method: description: Opis enabled: Omogući? - name: Naziv + name: Naziv regije diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.it.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.it.yml index b18fbdc77f8..7ebc09d94c4 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.it.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.it.yml @@ -30,5 +30,5 @@ sylius: description: Descrizione enabled: Abilitato? instructions: Istruzioni - name: Nome + name: "Nome\n" position: Posizione diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ja.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ja.yml index ae0d08af235..21bb4446426 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ja.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ja.yml @@ -4,5 +4,12 @@ sylius: form: payment: + method: お支払い方法 state: header: 入金状況 + checkout: 注文に進む + new: sylius.breadcrumb.new + pending: 未発送 + payment_method: + description: 説明 + name: ゾーン名 diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ko.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ko.yml new file mode 100644 index 00000000000..6932a570569 --- /dev/null +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ko.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + payment_method: + name: 이름 diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.lv.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.lv.yml new file mode 100644 index 00000000000..150fa3e902c --- /dev/null +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.lv.yml @@ -0,0 +1,8 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + payment_method: + description: Apraksts + name: Nosaukums diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.mk.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.mk.yml new file mode 100644 index 00000000000..8f225b7acb7 --- /dev/null +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.mk.yml @@ -0,0 +1,8 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + payment_method: + description: Опис + name: Име diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ms.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ms.yml new file mode 100644 index 00000000000..3bedaea6caf --- /dev/null +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ms.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + payment_method: + name: Nama diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.pl.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.pl.yml index 6daf8b0410e..ce3717966fe 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.pl.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.pl.yml @@ -31,4 +31,4 @@ sylius: enabled: Aktywna? instructions: Instrukcje name: Nazwa - position: Pozycja + position: Położenie diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.pt.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.pt.yml index 715a37d1668..f6722316da8 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.pt.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.pt.yml @@ -14,7 +14,7 @@ sylius: amount: Valor do pagamento method: Método de pagamento state: - header: Estado do pagamento + header: Situação do pagamento checkout: Finalizar compra completed: Concluído authorized: Autorizado diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.pt_BR.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.pt_BR.yml index e1d6dab5bc4..7c5ade68241 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.pt_BR.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.pt_BR.yml @@ -31,4 +31,4 @@ sylius: enabled: Habilitado? instructions: Instruções name: Nome - position: Função + position: Posição diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ro.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ro.yml index 58345fbe5a0..67b341a08d5 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ro.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ro.yml @@ -30,5 +30,5 @@ sylius: description: Descriere enabled: Activată? instructions: Instrucțiuni - name: Nume - position: Poziție + name: Nume produs + position: Poziţie diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ru.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ru.yml index ce05ed2f66e..9a66b3236f7 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ru.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.ru.yml @@ -30,5 +30,5 @@ sylius: description: Описание enabled: Включен? instructions: Инструкции - name: Название + name: Округ position: Позиция diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.sr.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.sr.yml index 94fcfe3c3a2..28368511160 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.sr.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.sr.yml @@ -4,5 +4,11 @@ sylius: form: payment: + method: Метод плаћања state: header: Стање плаћања + checkout: Завршите куповину + pending: Обрада у току + payment_method: + description: Опис + name: Име diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.sr_CS.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.sr_CS.yml index 1779398f150..d97ca429633 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.sr_CS.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.sr_CS.yml @@ -13,15 +13,18 @@ sylius: method: Metod plaćanja state: header: Stanje plaćanja + checkout: Plaćanje completed: Završeno authorized: Autorizovano failed: Nеuspеšno + new: Novo pending: Na čekanju processing: Obrađivanje unknown: Nеpoznato void: Otkazano cancelled: Otkazano payment_method: + description: Opis enabled: Omogućeno? instructions: Instrunkcije name: Ime diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.th.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.th.yml index 82f5259ebee..78fcff81728 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.th.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.th.yml @@ -30,5 +30,5 @@ sylius: description: คำอธิบาย enabled: เปิดใช้งานแล้ว? instructions: คำแนะนำ - name: ชื่อ + name: ชื่อภาษา position: ตำแหน่ง diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.vi.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.vi.yml index 9e0d1253885..18b3de2862b 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.vi.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.vi.yml @@ -3,5 +3,10 @@ sylius: form: + payment: + method: Phương thức thanh toán + state: + new: Mới payment_method: + description: Mô tả name: Tên diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.zh_TW.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.zh_TW.yml index 230ceef299b..4b8e98fa600 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.zh_TW.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/messages.zh_TW.yml @@ -6,6 +6,10 @@ sylius: payment: state: header: 付款狀態 + checkout: 結帳 + pending: 待處理 + cancelled: 已取消 payment_method: + description: 説明 name: 名稱 position: 位置 diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.bg.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.bg.yml index 831da66c4de..dd4841fa4b2 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.bg.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.bg.yml @@ -21,7 +21,7 @@ sylius: not_blank: Моля, изберете годината на изтичане. payment: currency_code: - not_valid: Въведеният от вас валутен код е невалиден. + not_valid: Кода на валутата, която въведохте е невалиден. method: not_blank: 'Моля, изберете начин на плащане.' payment_method: diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.ca.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.ca.yml index ea0e443332b..6583825608a 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.ca.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.ca.yml @@ -8,7 +8,7 @@ sylius: not_blank: Si us plau, introduïu el nom de la titular de la targeta. expiry_month: max_range: Mes de caducitat de la targeta de crèdit ha de ser entre {{ min }} i {{ max }}. - min_range: El Mes de caducitat de la targeta de crèdit ha de ser entre {{ min }} i {{ max }}. + min_range: Mes de caducitat de la targeta de crèdit ha de ser entre {{ min }} i {{ max }}. not_blank: Si us plau seleccioni el mes de venciment. number: not_blank: Si us plau, introduïu el número de targeta. diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.cs.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.cs.yml index da4ea1eb815..f43a335a83a 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.cs.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.cs.yml @@ -8,7 +8,7 @@ sylius: not_blank: Zadejte prosím Jméno držitele karty. expiry_month: max_range: Měsíc vypršení platnosti karty musí být mezi {{ min }} max {{ max }} - min_range: Měsíc vypršení platnosti karty musí být mezi {{ min }} a {{ max }}. + min_range: Měsíc vypršení platnosti karty musí být mezi {{ min }} max {{ max }} not_blank: Vyberte prosím měsíc vypršení platnosti. number: not_blank: Zadejte prosím číslo karty. @@ -21,7 +21,7 @@ sylius: not_blank: Vyberte prosím rok vypršení platnosti. payment: currency_code: - not_valid: Zadaný kód měny je neplatný. + not_valid: Kód měny, kterou jste zadali, je neplatný. method: not_blank: 'Vyberte, prosím, způsob platby.' payment_method: diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.da.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.da.yml index 1b698a959d7..4cc85120196 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.da.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.da.yml @@ -8,7 +8,7 @@ sylius: not_blank: Angiv navnet på kortindehaveren. expiry_month: max_range: Kreditkortets udløbsmåned skal være mellem {{ min }}} og {{ max }}. - min_range: Kreditkortets udløbsmåned skal være mellem {{ min }} og {{ max }}. + min_range: Kreditkortets udløbsmåned skal være mellem {{ min }}} og {{ max }}. not_blank: Vælg venligst udløbsmåneden. number: not_blank: Angiv kortnummer. diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.el.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.el.yml index 4a5ab3c1655..2f74a59b9ec 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.el.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.el.yml @@ -21,7 +21,7 @@ sylius: not_blank: Παρακαλούμε επιλέξτε το έτος λήξης. payment: currency_code: - not_valid: Ο κωδικός συναλλάγματος που έχετε εισάγει δεν είναι έγκυρος. + not_valid: Ο κωδικός νομίσματος που εισάγατε δεν είναι έγκυρος. method: not_blank: 'Παρακαλούμε επιλέξτε μια μέθοδο πληρωμής.' payment_method: diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.es.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.es.yml index 1a98bdbfea3..c6b4fcdc11d 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.es.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.es.yml @@ -21,7 +21,7 @@ sylius: not_blank: Por favor, seleccione el año de caducidad. payment: currency_code: - not_valid: El código de moneda introducido no es válido. + not_valid: El código de la moneda que introdujo no es válido. method: not_blank: 'Por favor, seleccione un método de pago.' payment_method: diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.he.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.he.yml new file mode 100644 index 00000000000..ce981894d1c --- /dev/null +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.he.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + payment: + currency_code: + not_valid: קוד המטבע אינו תקני. diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.hr.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.hr.yml index f062dd9c161..bf6091864f1 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.hr.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.hr.yml @@ -19,6 +19,9 @@ sylius: min_length: CVV kod kreditne kartice ne može imati više od {{ limit }} znamenke. expiry_year: not_blank: Odaberite godinu isteka valjanosti kartice. + payment: + currency_code: + not_valid: Kod valute koji ste unjeli nije ispravan. payment_method: gateway: not_blank: Odaberite način plaćanja. diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.no.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.no.yml index 8fbd1e47ac2..952525254c1 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.no.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.no.yml @@ -19,6 +19,9 @@ sylius: min_length: Kredittkortets CVV koden må være maksimalt {{ limit }} sifre. expiry_year: not_blank: Velg utløpsår. + payment: + currency_code: + not_valid: Valutakoden du oppga er ugyldig. payment_method: gateway: not_blank: Vennligst velg betalingsmetode. diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.pt.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.pt.yml index 8cffcb7d430..0c6a60d574b 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.pt.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.pt.yml @@ -8,7 +8,7 @@ sylius: not_blank: Por favor introduza o nome do titular do cartão. expiry_month: max_range: O mês de validade do cartão de crédito deve estar entre {{ min }} e {{ max }}. - min_range: O mês de validade do cartão de crédito deve estar compreendido entre {{ min }} e {{ max }}. + min_range: O mês de validade do cartão de crédito deve estar entre {{ min }} e {{ max }}. not_blank: Selecione o mês de validade. number: not_blank: Por favor, insira o número do cartão. diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.pt_BR.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.pt_BR.yml index 267ab505d60..fc3ea8ee316 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.pt_BR.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.pt_BR.yml @@ -21,7 +21,7 @@ sylius: not_blank: Por favor selecione o ano de validade. payment: currency_code: - not_valid: O código de moeda que você inseriu é inválido. + not_valid: O usuário digitado está incorreto. method: not_blank: 'Por favor, selecione um método de pagamento.' payment_method: diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.ro.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.ro.yml index 61e526ef6c1..f01aa5ede73 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.ro.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.ro.yml @@ -21,7 +21,7 @@ sylius: not_blank: Vă rugăm să alegeți anul expirării. payment: currency_code: - not_valid: Codul valutei introdus este invalid. + not_valid: Codul de valută pe care l-aţi introdus nu este valid. method: not_blank: 'Selectează o metodă de plată.' payment_method: diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.sv.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.sv.yml new file mode 100644 index 00000000000..1b7daf297bc --- /dev/null +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.sv.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + payment: + currency_code: + not_valid: Valutakoden du angav är ogiltig. diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.tr.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.tr.yml index 7e33cd61ea3..98fb98cc912 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.tr.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.tr.yml @@ -21,7 +21,7 @@ sylius: not_blank: Lütfen son kullanım tarihi yılını seçin. payment: currency_code: - not_valid: Girdiğiniz para birimi kodu geçersiz. + not_valid: Girmiş olduğunuz döviz numarası geçersiz. method: not_blank: 'Lütfen bir ödeme şekli seçin.' payment_method: diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.zh_CN.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.zh_CN.yml index 6afbadbe32a..925a5cb492e 100644 --- a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.zh_CN.yml +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.zh_CN.yml @@ -21,7 +21,7 @@ sylius: not_blank: 请选择到期年份。 payment: currency_code: - not_valid: 您输入的币种代码是无效的。 + not_valid: 您输入的姓名无效 method: not_blank: '请选择一种支付方式。' payment_method: diff --git a/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.zh_TW.yml b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.zh_TW.yml new file mode 100644 index 00000000000..c5107ab6b77 --- /dev/null +++ b/src/Sylius/Bundle/PaymentBundle/Resources/translations/validators.zh_TW.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + payment: + currency_code: + not_valid: 您輸入的貨幣代碼不正確。 diff --git a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.fi.yml b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.fi.yml index b87c7208e64..07d0e621769 100644 --- a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.fi.yml +++ b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.fi.yml @@ -7,4 +7,5 @@ sylius: type: Tyyppi gateway_configuration: paypal: + password: Salasana username: Käyttäjänimi diff --git a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.fr.yml b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.fr.yml index 146c48a7ce3..e0aed8cdf72 100644 --- a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.fr.yml +++ b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.fr.yml @@ -3,19 +3,14 @@ sylius: form: - gateway_config: - type: Type gateway_configuration: paypal: - password: Mot de passe signature: Signature - username: Identifiant sandbox: Mode bac à sable stripe: publishable_key: Clé publique secret_key: Clé secrète payum_gateway_factory: - offline: Hors-ligne paypal_express_checkout: Paiement via PayPal Express stripe_checkout: Paiement via Stripe payum_action: diff --git a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.he.yml b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.he.yml index 9adbd2df9cc..7b8dd5d875a 100644 --- a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.he.yml +++ b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.he.yml @@ -8,3 +8,4 @@ sylius: gateway_configuration: paypal: password: סיסמה + username: שם משתמש diff --git a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.ja.yml b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.ja.yml index 68944b258bd..c3331d8bc88 100644 --- a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.ja.yml +++ b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.ja.yml @@ -3,6 +3,8 @@ sylius: form: + gateway_config: + type: タイプ gateway_configuration: paypal: password: パスワード diff --git a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.ko.yml b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.ko.yml index c2876b355fd..d7b4bee6e6f 100644 --- a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.ko.yml +++ b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.ko.yml @@ -5,3 +5,6 @@ sylius: form: gateway_config: type: 타입 + gateway_configuration: + paypal: + password: 비밀번호 diff --git a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.mk.yml b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.mk.yml index 2a3624e3d35..a7c8839a5fb 100644 --- a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.mk.yml +++ b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.mk.yml @@ -5,3 +5,7 @@ sylius: form: gateway_config: type: Вид + gateway_configuration: + paypal: + password: Лозинка + username: Корисничко име diff --git a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.ru.yml b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.ru.yml index 678777c701c..dcc59b1561e 100644 --- a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.ru.yml +++ b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.ru.yml @@ -9,7 +9,7 @@ sylius: paypal: password: Пароль signature: Подпись - username: Логин + username: Имя пользователя sandbox: Песочница stripe: publishable_key: Публикуемый ключ diff --git a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.sq.yml b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.sq.yml index 3c43be6a6a1..1286748da9f 100644 --- a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.sq.yml +++ b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.sq.yml @@ -3,6 +3,8 @@ sylius: form: + gateway_config: + type: Lloji gateway_configuration: paypal: password: Fjalëkalimi diff --git a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.sr.yml b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.sr.yml index 0306f8e3efe..654b382c522 100644 --- a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.sr.yml +++ b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.sr.yml @@ -7,4 +7,5 @@ sylius: type: Тип gateway_configuration: paypal: + password: Лозинка username: Кросницко име diff --git a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.th.yml b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.th.yml index b32b4a72a22..e5ef887f4d7 100644 --- a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.th.yml +++ b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.th.yml @@ -7,7 +7,7 @@ sylius: type: ชนิด gateway_configuration: paypal: - password: รหัสผ่าน - username: ชื่อผู้ใช้ + password: Password + username: Username payum_gateway_factory: offline: ออฟไลน์ diff --git a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.tr.yml b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.tr.yml index 25979af4511..53ef4e5a1c7 100644 --- a/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.tr.yml +++ b/src/Sylius/Bundle/PayumBundle/Resources/translations/messages.tr.yml @@ -4,7 +4,7 @@ sylius: form: gateway_config: - type: Türü + type: Tür gateway_configuration: paypal: password: Şifre diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.af.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.af.yml new file mode 100644 index 00000000000..0f30ed70a1c --- /dev/null +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.af.yml @@ -0,0 +1,15 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + product: + name: Naam + product_variant: + name: Naam + association_type: + name: Naam + variant: + name: Naam + option: + name: Naam diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.be.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.be.yml index dc4c89eed29..6d1fe831ddc 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.be.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.be.yml @@ -4,20 +4,23 @@ sylius: form: product: - name: Імя + name: Назва description: Апісанне + attributes: Атрыбуты options: Опцыі meta_keywords: Meta keywords meta_description: Meta description + taxons: Катэгорыі product_variant: - name: Імя + name: Назва association_type: - name: Імя + name: Назва translations: Пераклады variant: - name: Імя + name: Назва option: - name: Імя + name: Назва + position: Пазіцыя values: Магчымыя значэнні option_value: add_value: Дадаць значэнне diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ca.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ca.yml index 95d1f08dee0..5dd8630e967 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ca.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ca.yml @@ -6,6 +6,8 @@ sylius: product: name: Nom description: Descripció + attributes: Atributs + options: Opcions meta_keywords: Meta keywords meta_description: Metadescripció product_variant: @@ -16,5 +18,6 @@ sylius: name: Nom option: name: Nom + position: Posició option_value: value: Valor diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.cs.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.cs.yml index 65633f0f537..2cb8da2f1f0 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.cs.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.cs.yml @@ -27,5 +27,5 @@ sylius: position: Pozice values: Možné hodnoty option_value: - add_value: Přidání hodnoty + add_value: Přidat hodnotu value: Hodnota diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.de_CH.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.de_CH.yml index 782f1c5db38..9902caf9d69 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.de_CH.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.de_CH.yml @@ -10,7 +10,7 @@ sylius: options: Optionen meta_keywords: Meta-Stichwörter meta_description: Meta-Beschreibung - slug: Produkt SEO-URL + slug: Kategorie SEO-URL taxons: Produktgruppen product_variant: name: Name diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.fa.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.fa.yml index 273b749cc38..de658a77229 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.fa.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.fa.yml @@ -24,7 +24,7 @@ sylius: name: نام option: name: نام - position: موقعیت + position: جایگاه values: مقادیر قابل قبول option_value: add_value: افزودن مقدار diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.fi.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.fi.yml index d3a95841c3b..4b174fbcae8 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.fi.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.fi.yml @@ -4,8 +4,20 @@ sylius: form: product: + name: Nimi description: Kuvaus + attributes: Määritteet + options: Asetukset + taxons: Veroryhmät + product_variant: + name: Nimi association_type: + name: Nimi translations: Käännökset + variant: + name: Nimi + option: + name: Nimi + position: Asema option_value: add_value: Lisää arvo diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.fr.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.fr.yml index aa9b815549a..5e4f284ae86 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.fr.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.fr.yml @@ -4,28 +4,16 @@ sylius: form: product: - name: Nom description: Description attributes: Attributs options: Options meta_keywords: Meta mots-clés meta_description: Méta description slug: Slug - taxons: Taxons - product_variant: - name: Nom - association_type: - name: Nom - translations: Traductions association: type: Type d'association product: Produits associés - variant: - name: Nom option: - name: Nom - position: Emplacement values: Valeurs possibles option_value: - add_value: Ajouter une valeur value: Valeur diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.he.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.he.yml index 7d80bf97a39..5c87cf8b30c 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.he.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.he.yml @@ -13,17 +13,17 @@ sylius: slug: שם מקוצר לשימוש בקישורים taxons: קבוצות טקסונומיות product_variant: - name: שם גרסה + name: שם association_type: - name: שם מקשור + name: שם translations: תרגומים association: type: סוג משקור product: מוצר מקושר variant: - name: שם גירסה + name: שם option: - name: שם הגדרה + name: שם position: מיקום values: ערכים אפשריים option_value: diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.hr.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.hr.yml index 9267e2f49a8..707aab85993 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.hr.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.hr.yml @@ -4,19 +4,22 @@ sylius: form: product: - name: Naziv grupe + name: Naziv regije description: Opis + attributes: Značajke proizvoda options: Opcije meta_keywords: Ključne riječi (Meta Keywords) meta_description: Opis (Meta Description) + taxons: Taksoni product_variant: - name: Naziv grupe + name: Naziv regije association_type: - name: Naziv grupe + name: Naziv regije + translations: Prijevodi variant: - name: Naziv grupe + name: Naziv regije option: - name: Naziv grupe + name: Naziv regije values: Moguće vrijednosti option_value: add_value: Dodaj vrijednost diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.hu.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.hu.yml index 682ad5cf275..d07b468b8cc 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.hu.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.hu.yml @@ -10,6 +10,7 @@ sylius: options: Beállítások meta_keywords: Meta kulcsszavak meta_description: Meta leírás + taxons: Taxonok product_variant: name: Név association_type: diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.it.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.it.yml index 69f137986f7..4fcb8dad874 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.it.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.it.yml @@ -4,26 +4,26 @@ sylius: form: product: - name: Nome + name: "Nome\n" description: Descrizione attributes: Attributi options: Opzioni meta_keywords: Meta keywords meta_description: Meta descrizione slug: Slug - taxons: Generi + taxons: Taxons product_variant: - name: Nome + name: "Nome\n" association_type: - name: Nome + name: "Nome\n" translations: Traduzioni association: type: Tipo di associazione product: Prodotto associato variant: - name: Nome + name: "Nome\n" option: - name: Nome + name: "Nome\n" position: Posizione values: Valori possibili option_value: diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ja.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ja.yml index adb3322c01f..17ea96bc042 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ja.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ja.yml @@ -4,6 +4,16 @@ sylius: form: product: + name: ゾーン名 + description: 説明 options: sylius.breadcrumb.option.index meta_keywords: Metaタグ(keywords) meta_description: metaタグ(description) + product_variant: + name: ゾーン名 + association_type: + name: ゾーン名 + variant: + name: ゾーン名 + option: + name: ゾーン名 diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ko.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ko.yml index 57ff8c1d157..993b02c9d13 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ko.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ko.yml @@ -3,5 +3,14 @@ sylius: form: + product: + name: 이름 + product_variant: + name: 이름 + association_type: + name: 이름 + variant: + name: 이름 option: + name: 이름 values: 예상값 diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.lv.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.lv.yml new file mode 100644 index 00000000000..27544c2149d --- /dev/null +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.lv.yml @@ -0,0 +1,16 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + product: + name: Nosaukums + description: Apraksts + product_variant: + name: Nosaukums + association_type: + name: Nosaukums + variant: + name: Nosaukums + option: + name: Nosaukums diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.mk.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.mk.yml index 4e215285f8c..363422ba50e 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.mk.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.mk.yml @@ -3,7 +3,17 @@ sylius: form: + product: + name: Име + description: Опис + product_variant: + name: Име + association_type: + name: Име + variant: + name: Име option: + name: Име values: Можни вредности option_value: add_value: Додај вредност diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ms.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ms.yml new file mode 100644 index 00000000000..cfeaf4c909a --- /dev/null +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ms.yml @@ -0,0 +1,15 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + product: + name: Nama + product_variant: + name: Nama + association_type: + name: Nama + variant: + name: Nama + option: + name: Nama diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.pl.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.pl.yml index bb7f9abd89c..7bca3cbf9d8 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.pl.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.pl.yml @@ -11,7 +11,7 @@ sylius: meta_keywords: Słowa kluczowe w sekcji meta meta_description: Opis w sekcji meta slug: Fragment URL - taxons: Kategorie + taxons: Taksonomie product_variant: name: Nazwa association_type: @@ -24,7 +24,7 @@ sylius: name: Nazwa option: name: Nazwa - position: Pozycja + position: Położenie values: Możliwe wartości option_value: add_value: Dodaj wartość diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.pt.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.pt.yml index 1cd235d01ad..2c6cc9f30c2 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.pt.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.pt.yml @@ -10,6 +10,7 @@ sylius: options: Opções meta_keywords: Palavras-chave meta meta_description: Descrição meta + taxons: Táxons product_variant: name: Nome association_type: diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.pt_BR.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.pt_BR.yml index 3b796b67dc1..0cbb8ba9761 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.pt_BR.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.pt_BR.yml @@ -11,7 +11,7 @@ sylius: meta_keywords: Meta palavra-chaves meta_description: Meta descrição slug: Slug - taxons: Categorias + taxons: Taxas product_variant: name: Nome association_type: diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ro.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ro.yml index 2e10785d98f..e5c4f9bccb9 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ro.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ro.yml @@ -4,7 +4,7 @@ sylius: form: product: - name: Nume + name: Nume produs description: Descriere attributes: Atribute options: Opţiuni @@ -13,17 +13,17 @@ sylius: slug: Slug taxons: Taxoni product_variant: - name: Nume + name: Nume produs association_type: - name: Nume + name: Nume produs translations: Traduceri association: type: Tipul de asociere product: Produs asociat variant: - name: Nume + name: Nume produs option: - name: Nume + name: Nume produs position: Poziţie values: Valori posibile option_value: diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ru.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ru.yml index 20037f09ee7..891ce03250e 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ru.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.ru.yml @@ -4,7 +4,7 @@ sylius: form: product: - name: Название + name: Округ description: Описание attributes: Атрибуты options: Список опций @@ -13,17 +13,17 @@ sylius: slug: Псевдоним taxons: Категории product_variant: - name: Название + name: Округ association_type: - name: Название + name: Округ translations: 'Переводы' association: type: Тип взаимосвязи product: Связанные продукты variant: - name: Название + name: Округ option: - name: Название + name: Округ position: Позиция values: Возможные значения option_value: diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.sl.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.sl.yml index 9f146a4413f..56c84f20074 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.sl.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.sl.yml @@ -10,6 +10,7 @@ sylius: options: Možnosti meta_keywords: Meta ključne besede meta_description: Meta opis + taxons: Taksoni product_variant: name: Ime association_type: diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.sr.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.sr.yml new file mode 100644 index 00000000000..5dc64edc411 --- /dev/null +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.sr.yml @@ -0,0 +1,18 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + product: + name: Име + description: Опис + attributes: Атрибути + options: Опције + product_variant: + name: Име + association_type: + name: Име + variant: + name: Име + option: + name: Име diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.th.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.th.yml index 2a98856763a..65c39838941 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.th.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.th.yml @@ -4,7 +4,7 @@ sylius: form: product: - name: ชื่อ + name: ชื่อภาษา description: คำอธิบาย attributes: คุณลักษณะ (Attribute) options: ตัวเลือก @@ -13,17 +13,17 @@ sylius: slug: Slug taxons: การจัดหมวดหมู่ product_variant: - name: ชื่อ + name: ชื่อภาษา association_type: - name: ชื่อ + name: ชื่อภาษา translations: การแปลภาษา association: type: ชนิดที่เกี่ยวข้อง product: สินค้าที่เกี่ยวข้อง variant: - name: ชื่อ + name: ชื่อภาษา option: - name: ชื่อ + name: ชื่อภาษา position: ตำแหน่ง values: ค่าที่เป็นไปได้ option_value: diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.vi.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.vi.yml index 4925158da06..6112cbd12d8 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.vi.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.vi.yml @@ -5,7 +5,10 @@ sylius: form: product: name: Tên + description: Mô tả + attributes: Thuộc tính options: Tùy chọn + taxons: Phân loại product_variant: name: Tên association_type: diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.zh_CN.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.zh_CN.yml index 314e8f4519e..0f835ac8a65 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.zh_CN.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/messages.zh_CN.yml @@ -24,8 +24,8 @@ sylius: name: 名称 option: name: 名称 - position: 位置 + position: 优先级 values: 可能的值 option_value: - add_value: 添加值 + add_value: 增加 value: 值 diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.be.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.be.yml index 0cb67bf9227..e85459a235c 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.be.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.be.yml @@ -10,6 +10,8 @@ sylius: not_blank: Калі ласка, увядзіце назву тавара. min_length: Назва тавара павінна быць мінімум 1 сімвал даўжыней|Назва тавара павінна быць мінімум {{ limit }} сімвалы даўжыней. max_length: Назва тавара павінна быць не даўжэй за 1 сімвал.|Назва тавара павінна быць не даўжэй за {{ limit }} сімвалы. + product_variant: + combination: Варыянт з такімі параметрамі ўжо існуе. option: name: not_blank: Калі ласка, увядзіце назву варыянта. diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.da.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.da.yml index 695cf4c60ee..0d4ae4e89a0 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.da.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.da.yml @@ -16,6 +16,7 @@ sylius: min_length: Produktnavnet skal være mindst ét tegn langt. |Produktnavnet skal være mindst {{ limit }} tegn langt. max_length: Produktnavnet må ikke være længere end 1 tegn. |Produktnavn må ikke være længere end {{ limit }} tegn. product_variant: + combination: Variant med denne indstilling eksisterer allerede. code: not_blank: Angiv venligst koden. within_product_unique: Denne kode skal være unik i dette produkt. diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.de_CH.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.de_CH.yml index 9a618c0a27b..9a7328c8870 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.de_CH.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.de_CH.yml @@ -34,7 +34,7 @@ sylius: unique: Eine Option mit diesem Kürzel existiert bereits. name: not_blank: Bitte Optionsnamen eingeben. - min_length: Der Optionsname muss mindestens 1 Zeichen lang sein.|Der Optionsname muss mindestens {{ limit }} Zeichen lang sein. + min_length: Der Name der Option muss mindestens 1 Zeichen lang sein.|Der Name der Option muss mindestens {{ limit }} Zeichen lang sein. max_length: Der Optionsname darf nicht länger als 1 Zeichen sein.|Der Optionsname darf nicht länger als {{ limit }} Zeichen sein. values: min_count: Bitte geben Sie mindestens {{ limit }} Wert für diese Option ein.|Bitte geben Sie mindestens {{ limit }} Werte für diese Option ein. diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.hu.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.hu.yml index b74ed523435..e7d64950452 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.hu.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.hu.yml @@ -13,6 +13,8 @@ sylius: not_blank: Kérjük, írja be a termék nevét. min_length: Termék neve legalább 1 karakter hosszúnak kell lennie. |Termék neve legalább {{ limit }} karakter hosszú. max_length: Termék neve nem lehet hosszabb, mint 1 karakter. |Termék neve nem lehet hosszabb, mint {{ limit }} karakter. + product_variant: + combination: A változat ebben a választék készletben már létezik. option: code: not_blank: Kérjük, írja be az opció kódját. diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.lt.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.lt.yml index 158f3759228..1d1d1fad010 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.lt.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.lt.yml @@ -13,6 +13,8 @@ sylius: not_blank: Įveskite produkto pavadinimą. min_length: Produkto pavadinimas turi būti ne mažiau kaip 1 simbolio ilgio.|Produkto pavadinimas turi būti ne mažiau kaip {{ limit }} simbolių ilgio. max_length: Produkto pavadinimas neturi būti ilgesnis kaip 1 simbolis.|Produkto pavadinimas neturi būti ilgesnis nei {{ limit }} simbolių. + product_variant: + combination: Variantas su šia parinktimi jau egzistuoja. option: code: not_blank: Įveskite parinkties kodą. diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.no.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.no.yml index 07ae5b55d68..32f660b6226 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.no.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.no.yml @@ -10,6 +10,8 @@ sylius: not_blank: Vennligst skriv inn produktnavnet. min_length: Produktnavn må være minst ett tegn. |Produktnavn må være minst {{ limit }} tegn. max_length: Navn må ikke være lengre enn ett tegn. |Navn må ikke være lengre enn {{ limit }} tegn. + product_variant: + combination: Variant med dette valget finnes allerede. option: name: not_blank: Skriv inn navnet på alternativet. diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.pt.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.pt.yml index 80c7c486ceb..890459e98f6 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.pt.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.pt.yml @@ -14,6 +14,7 @@ sylius: min_length: O nome do produto deve ter pelo menos 1 caracter.|O nome do produto deve ter pelo menos {{ limit }} caracteres. max_length: O nome do produto não deve ter mais que 1 caracter.|O nome do produto não deve ter mais que {{ limit }} caracteres. product_variant: + combination: Variante com esta opção definida já existe. code: not_blank: Por favor, insira o código. option: diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.sl.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.sl.yml index b2e40df0a3e..107ca11a393 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.sl.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.sl.yml @@ -10,6 +10,8 @@ sylius: not_blank: Prosimo, vnesite ime izdelka. min_length: Ime izdelka mora biti dolgo vsaj 1 znak.|Ime izdelka mora biti dolgo vsaj {{ limit }} znakov. max_length: Ime izdelka ne sme biti daljše od 1 znaka.|Ime izdelka ne sme biti daljše od {{ limit }} znakov. + product_variant: + combination: Varianta s tem naborom možnosti že obstaja. option: code: not_blank: Prosimo, vnesite kodo možnosti. diff --git a/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.sq.yml b/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.sq.yml index 9f0d4970823..aef11f4e4ce 100644 --- a/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.sq.yml +++ b/src/Sylius/Bundle/ProductBundle/Resources/translations/validators.sq.yml @@ -10,6 +10,8 @@ sylius: not_blank: Fut emrin e produktit. min_length: Emri i produktit duhet të përmbajë të paktën 1 karakter.|Emri i produktit duhet të përmbajë të paktën {{ limit }} karaktere. max_length: Emri i produktit nuk duhet të përmbajë më shumë se një 1 karakter.|Emri i produktit nuk duhet të përmbajë më shumë se {{ limit }} karaktere. + product_variant: + combination: Varianti me këtë grup opsionesh ekziston tashmë. option: code: not_blank: Shto kodin e opsionit. diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.af.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.af.yml index ed1656640f8..49b4a5aa666 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.af.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.af.yml @@ -3,6 +3,8 @@ sylius: form: + promotion: + name: Naam promotion_action: type: Tipe promotion_rule: diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.be.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.be.yml index be2cbb70092..0f1d2f9374a 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.be.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.be.yml @@ -16,21 +16,30 @@ sylius: usage_limit: Ліміт карыстання promotion_action: fixed_discount_configuration: - amount: Сума + amount: Колькасць + percentage_discount_configuration: + percentage: Адсотак type: Тып promotion_coupon: usage_limit: Ліміт карыстання promotion_coupon_generator_instruction: - amount: Сума + amount: Колькасць usage_limit: Ліміт карыстання promotion_rule: customer_group: Група кліентаў cart_quantity_configuration: count: Колькасць + equal: Роўна contains_product_configuration: + exclude: Выключыць variants: Прадукты item_total_configuration: - amount: Сума + amount: Колькасць + nth_order_configuration: + nth: N-нны shipping_country_configuration: country: Краіна + taxonomy_configuration: + exclude: Выключыць + taxons: Катэгорыі type: Тып diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ca.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ca.yml index dfdbaf14993..393b07ee298 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ca.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ca.yml @@ -7,10 +7,16 @@ sylius: description: Descripció name: Nom promotion_action: + fixed_discount_configuration: + amount: Total type: Tipus + promotion_coupon_generator_instruction: + amount: Total promotion_rule: contains_product_configuration: variants: Productes + item_total_configuration: + amount: Total shipping_country_configuration: country: País type: Tipus diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.cs.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.cs.yml index 29482b03d4a..8ba9b0c97d8 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.cs.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.cs.yml @@ -23,7 +23,7 @@ sylius: order_percentage_discount: Procentuální sleva objednávky shipping_percentage_discount: Procentuální sleva dopravy fixed_discount_configuration: - amount: Množství + amount: Částka percentage_discount_configuration: percentage: Procentuální type: Typ @@ -31,7 +31,7 @@ sylius: expires_at: Vyprší za usage_limit: Omezení použití promotion_coupon_generator_instruction: - amount: Množství + amount: Částka code_length: Délka kódu expires_at: Vyprší za usage_limit: Omezení použití @@ -43,7 +43,7 @@ sylius: customer_group: Skupina zákazníků has_at_least_one_from_taxons: Má alespoň jeden z taxonů item_total: Položka celkem - nth_order: Nth pořadí + nth_order: V pořadí objednávka shipping_country: Dodací adresa – země taxonomy: Taxy DPH total_price_of_items_from_taxon: Celková cena položek z taxonu @@ -54,9 +54,9 @@ sylius: exclude: Výjma variants: Produkty item_total_configuration: - amount: Množství + amount: Částka nth_order_configuration: - nth: N-tý + nth: N-tá shipping_country_configuration: country: Země taxonomy_configuration: diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.da.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.da.yml index 1cced4d798f..537e03fbba5 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.da.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.da.yml @@ -11,20 +11,29 @@ sylius: description: Beskrivelse ends_at: Slutter den name: Navn + priority: Prioritet rules: Regler starts_at: Starter ved + usage_limit: Brugsgrænse promotion_action: fixed_discount_configuration: amount: Beløb type: Type + promotion_coupon: + expires_at: Udløber + usage_limit: Brugsgrænse promotion_coupon_generator_instruction: amount: Beløb + expires_at: Udløber + usage_limit: Brugsgrænse promotion_rule: customer_group: Kundegruppe + taxonomy: Taksonomi cart_quantity_configuration: count: Antal + equal: Lige contains_product_configuration: - variants: Produkter + variants: Varer item_total_configuration: amount: Beløb shipping_country_configuration: diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.de.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.de.yml index 91e3cd5faa7..1579f881172 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.de.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.de.yml @@ -23,7 +23,7 @@ sylius: order_percentage_discount: Prozentualer Rabatt shipping_percentage_discount: Prozentualer Versandrabatt fixed_discount_configuration: - amount: Anzahl + amount: Steuersatz percentage_discount_configuration: percentage: Prozent type: Typ @@ -31,7 +31,7 @@ sylius: expires_at: Verfällt am usage_limit: Nutzungslimit promotion_coupon_generator_instruction: - amount: Anzahl + amount: Steuersatz code_length: Codelänge expires_at: Verfällt am usage_limit: Nutzungslimit @@ -54,7 +54,7 @@ sylius: exclude: Ausgenommen variants: Produkte item_total_configuration: - amount: Anzahl + amount: Steuersatz nth_order_configuration: nth: N-ter shipping_country_configuration: diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.de_CH.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.de_CH.yml index 91e3cd5faa7..1579f881172 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.de_CH.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.de_CH.yml @@ -23,7 +23,7 @@ sylius: order_percentage_discount: Prozentualer Rabatt shipping_percentage_discount: Prozentualer Versandrabatt fixed_discount_configuration: - amount: Anzahl + amount: Steuersatz percentage_discount_configuration: percentage: Prozent type: Typ @@ -31,7 +31,7 @@ sylius: expires_at: Verfällt am usage_limit: Nutzungslimit promotion_coupon_generator_instruction: - amount: Anzahl + amount: Steuersatz code_length: Codelänge expires_at: Verfällt am usage_limit: Nutzungslimit @@ -54,7 +54,7 @@ sylius: exclude: Ausgenommen variants: Produkte item_total_configuration: - amount: Anzahl + amount: Steuersatz nth_order_configuration: nth: N-ter shipping_country_configuration: diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.es.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.es.yml index f38d9fbdf9f..23b933e8094 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.es.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.es.yml @@ -9,13 +9,13 @@ sylius: add_rule: Añadir regla coupon_based: Basado en cupones description: Descripción - ends_at: Termina el + ends_at: Fecha de fin exclusive: Exclusivo name: Nombre priority: Prioridad rules: Reglas - starts_at: Empieza el - usage_limit: Límite de uso + starts_at: Fecha de inicio + usage_limit: límite de uso de la promoción promotion_action: item_fixed_discount: Descuento fijo en producto item_percentage_discount: Porcentaje descuento en producto @@ -29,12 +29,12 @@ sylius: type: Tipo promotion_coupon: expires_at: Caduca el - usage_limit: Límite de uso + usage_limit: límite de uso de la promoción promotion_coupon_generator_instruction: amount: Cantidad code_length: Longitud del código expires_at: Caduca el - usage_limit: Límite de uso + usage_limit: límite de uso de la promoción promotion_filter: price_range: Filtro de rango de precio promotion_rule: diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.fi.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.fi.yml index 6f925ef5160..990e0f67c61 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.fi.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.fi.yml @@ -4,12 +4,24 @@ sylius: form: promotion: + actions: Toiminnot + add_action: Lisää toiminto + add_rule: Lisää sääntö description: Kuvaus + name: Nimi promotion_action: + fixed_discount_configuration: + amount: Summa type: Tyyppi + promotion_coupon_generator_instruction: + amount: Summa promotion_rule: contains_product_configuration: variants: Tuotteet + item_total_configuration: + amount: Summa shipping_country_configuration: country: Maa + taxonomy_configuration: + taxons: Veroryhmät type: Tyyppi diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.fr.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.fr.yml index 9da411abfa4..e4e67f2c37e 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.fr.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.fr.yml @@ -4,37 +4,21 @@ sylius: form: promotion: - actions: Actions - add_action: Ajouter une action - add_rule: Ajouter une règle - coupon_based: Comprend des coupons description: Description - ends_at: Se termine le - exclusive: Exclusif - name: Nom priority: Priorité - rules: Règles - starts_at: Commence le - usage_limit: Limite d'utilisation promotion_action: item_fixed_discount: Remise fixe produit item_percentage_discount: Rabais en pourcentage produit order_fixed_discount: Remise sur la commande order_percentage_discount: Rabais en pourcentage commande shipping_percentage_discount: Rabais en pourcentage expédition - fixed_discount_configuration: - amount: Montant percentage_discount_configuration: percentage: Pourcentage - type: Type promotion_coupon: expires_at: Expire le - usage_limit: Limite d'utilisation promotion_coupon_generator_instruction: - amount: Montant code_length: Longueur du code expires_at: Expire le - usage_limit: Limite d'utilisation promotion_filter: price_range: Filtre de gamme de prix promotion_rule: @@ -52,14 +36,7 @@ sylius: equal: Égal contains_product_configuration: exclude: Exclure - variants: Produits - item_total_configuration: - amount: Montant nth_order_configuration: nth: Nième - shipping_country_configuration: - country: Pays taxonomy_configuration: exclude: Exclure - taxons: Taxons - type: Type diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.he.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.he.yml index b0f0deaf10f..20ea6f35119 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.he.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.he.yml @@ -3,9 +3,20 @@ sylius: form: + promotion: + description: תיאור + name: שם promotion_action: + fixed_discount_configuration: + amount: כמות type: סוג + promotion_coupon_generator_instruction: + amount: כמות promotion_rule: + contains_product_configuration: + variants: מוצרים + item_total_configuration: + amount: כמות shipping_country_configuration: country: מדינה taxonomy_configuration: diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.hr.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.hr.yml index efc28e9c164..e4cc8f64f01 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.hr.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.hr.yml @@ -10,27 +10,38 @@ sylius: coupon_based: Promocija bazirana na kuponima za popust description: Opis ends_at: Završava - name: Naziv promocije + name: Naziv regije priority: Prioritet rules: Pravila - starts_at: Počinje + starts_at: Početak usage_limit: Ograničenje promotion_action: fixed_discount_configuration: amount: Iznos + percentage_discount_configuration: + percentage: Postotak type: Vrsta promotion_coupon: + expires_at: Istječe usage_limit: Ograničenje promotion_coupon_generator_instruction: amount: Iznos + expires_at: Istječe usage_limit: Ograničenje promotion_rule: cart_quantity_configuration: count: Brojač + equal: Jednak contains_product_configuration: + exclude: Ne uključuje variants: Proizvodi item_total_configuration: amount: Iznos + nth_order_configuration: + nth: N-ti shipping_country_configuration: country: Država + taxonomy_configuration: + exclude: Ne uključuje + taxons: Taksoni type: Vrsta diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.hu.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.hu.yml index d69cd9908b2..c47965ff97c 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.hu.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.hu.yml @@ -17,18 +17,35 @@ sylius: starts_at: Kezdődik usage_limit: Felhasználhatóság korlátozása promotion_action: + fixed_discount_configuration: + amount: Összeg + percentage_discount_configuration: + percentage: Százalék type: Típus promotion_coupon: + expires_at: Lejárat usage_limit: Felhasználhatóság korlátozása promotion_coupon_generator_instruction: + amount: Összeg + code_length: A kód hossza + expires_at: Lejárat usage_limit: Felhasználhatóság korlátozása promotion_rule: + customer_group: Felhasználói csoport taxonomy: Taxonómia cart_quantity_configuration: count: Mennyiség equal: Egyenlő contains_product_configuration: + exclude: Kivétel variants: Termékek + item_total_configuration: + amount: Összeg + nth_order_configuration: + nth: N-edik shipping_country_configuration: country: Ország + taxonomy_configuration: + exclude: Kivétel + taxons: Taxonok type: Típus diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.it.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.it.yml index 0df6b190df0..33160cf217b 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.it.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.it.yml @@ -7,11 +7,11 @@ sylius: actions: Azioni add_action: Aggiungi azione add_rule: Aggiungi regola - coupon_based: Basata su coupon + coupon_based: Basata su codice sconto description: Descrizione - ends_at: Termina il + ends_at: Termina exclusive: Esclusivo - name: Nome + name: "Nome\n" priority: Priorità rules: Regole starts_at: Inizia il @@ -58,7 +58,7 @@ sylius: nth_order_configuration: nth: Ennesimo shipping_country_configuration: - country: Nazione + country: Paese taxonomy_configuration: exclude: Escludi taxons: Taxons diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ja.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ja.yml index 5b03358854b..0d0a8d777c3 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ja.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ja.yml @@ -4,8 +4,29 @@ sylius: form: promotion: + actions: 値引き設定 add_action: 値引き設定を追加 add_rule: 条件を追加 + description: 説明 + ends_at: 終了日 + name: ゾーン名 + rules: 条件 + starts_at: 開始日 + usage_limit: 利用件数制限 + promotion_action: + fixed_discount_configuration: + amount: 税率 + type: タイプ + promotion_coupon: + usage_limit: 利用件数制限 + promotion_coupon_generator_instruction: + amount: 税率 + usage_limit: 利用件数制限 promotion_rule: + contains_product_configuration: + variants: sylius.breadcrumb.product.index + item_total_configuration: + amount: 税率 shipping_country_configuration: country: 国 + type: タイプ diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ko.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ko.yml index f0ca85baa5a..6ec66568dda 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ko.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ko.yml @@ -3,6 +3,8 @@ sylius: form: + promotion: + name: 이름 promotion_action: type: 타입 promotion_rule: diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.lv.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.lv.yml new file mode 100644 index 00000000000..0de263c70a9 --- /dev/null +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.lv.yml @@ -0,0 +1,16 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + promotion: + description: Apraksts + name: Nosaukums + promotion_action: + fixed_discount_configuration: + amount: Summa + promotion_coupon_generator_instruction: + amount: Summa + promotion_rule: + item_total_configuration: + amount: Summa diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.mk.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.mk.yml index eaa5765c08e..17bc1900be7 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.mk.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.mk.yml @@ -3,9 +3,18 @@ sylius: form: + promotion: + description: Опис + name: Име promotion_action: + fixed_discount_configuration: + amount: Износ type: Вид + promotion_coupon_generator_instruction: + amount: Износ promotion_rule: + item_total_configuration: + amount: Износ shipping_country_configuration: country: Држава type: Вид diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ms.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ms.yml index 2e7785c3e58..3b3e89f2f08 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ms.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ms.yml @@ -3,6 +3,8 @@ sylius: form: + promotion: + name: Nama promotion_action: type: Jenis promotion_rule: diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.nl.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.nl.yml index 18bd1c266d6..bcc93fa12a4 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.nl.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.nl.yml @@ -23,7 +23,7 @@ sylius: order_percentage_discount: Vaste percentage per bestelling shipping_percentage_discount: Percentage op verzending fixed_discount_configuration: - amount: Hoeveelheid + amount: Bedrag percentage_discount_configuration: percentage: Percentage type: Type @@ -31,7 +31,7 @@ sylius: expires_at: Verloopt op usage_limit: Gebruikslimiet promotion_coupon_generator_instruction: - amount: Hoeveelheid + amount: Bedrag code_length: Lengte van de code expires_at: Verloopt op usage_limit: Gebruikslimiet @@ -54,12 +54,12 @@ sylius: exclude: Uitsluiten variants: Producten item_total_configuration: - amount: Hoeveelheid + amount: Bedrag nth_order_configuration: nth: N-de shipping_country_configuration: country: Land taxonomy_configuration: exclude: Uitsluiten - taxons: Taxons + taxons: Taxa type: Type diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.no.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.no.yml index 2b87ba4a2eb..99cb814ce6d 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.no.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.no.yml @@ -40,6 +40,8 @@ sylius: variants: Produkter item_total_configuration: amount: Antall + nth_order_configuration: + nth: Nth shipping_country_configuration: country: Land taxonomy_configuration: diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.pl.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.pl.yml index cd51320ef10..e763c39bee3 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.pl.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.pl.yml @@ -23,7 +23,7 @@ sylius: order_percentage_discount: Procentowa kwota zniżki na zamówienie shipping_percentage_discount: Procentowa kwota zniżki na koszty wysyłki fixed_discount_configuration: - amount: Kwota + amount: Wartość percentage_discount_configuration: percentage: Procentowa type: Typ @@ -31,7 +31,7 @@ sylius: expires_at: Wygasa usage_limit: Limit użycia promotion_coupon_generator_instruction: - amount: Kwota + amount: Wartość code_length: Długość kodu expires_at: Wygasa usage_limit: Limit użycia @@ -54,12 +54,12 @@ sylius: exclude: Nie zawiera variants: Produkty item_total_configuration: - amount: Kwota + amount: Wartość nth_order_configuration: nth: N-ty shipping_country_configuration: country: Kraj taxonomy_configuration: exclude: Nie zawiera - taxons: Kategorie + taxons: Taksonomie type: Typ diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.pt.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.pt.yml index 2aef13877d3..ef22d313cae 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.pt.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.pt.yml @@ -41,8 +41,11 @@ sylius: variants: Produtos item_total_configuration: amount: Quantia + nth_order_configuration: + nth: N-ésimo shipping_country_configuration: country: País taxonomy_configuration: exclude: Excluir + taxons: Táxons type: Tipo diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.pt_BR.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.pt_BR.yml index 16f7c425b8b..008b589e830 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.pt_BR.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.pt_BR.yml @@ -61,5 +61,5 @@ sylius: country: País taxonomy_configuration: exclude: Excluir - taxons: Categorias + taxons: Taxas type: Tipo diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ro.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ro.yml index 50b7e906c3d..bc4c810af6f 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ro.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ro.yml @@ -11,7 +11,7 @@ sylius: description: Descriere ends_at: Se termină la exclusive: Exclusiv - name: Nume + name: Nume produs priority: Prioritate rules: Reguli starts_at: Începe la @@ -23,7 +23,7 @@ sylius: order_percentage_discount: Discount procentual pe comandă shipping_percentage_discount: Discount procentual pe costul de livrare fixed_discount_configuration: - amount: Sumă + amount: Valoare percentage_discount_configuration: percentage: Procent type: Tip @@ -31,7 +31,7 @@ sylius: expires_at: Expiră la usage_limit: Limita de utilizare promotion_coupon_generator_instruction: - amount: Sumă + amount: Valoare code_length: Lungimea codului expires_at: Expiră la usage_limit: Limita de utilizare @@ -54,7 +54,7 @@ sylius: exclude: Exclude variants: Produse item_total_configuration: - amount: Sumă + amount: Valoare nth_order_configuration: nth: Al n-lea shipping_country_configuration: diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ru.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ru.yml index c8a7bc3fd3f..dc0501ba1ba 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ru.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.ru.yml @@ -11,11 +11,11 @@ sylius: description: Описание ends_at: Конец exclusive: Эксклюзив - name: Название + name: Округ priority: Приоритет rules: Правила - starts_at: Старт - usage_limit: Предел использования + starts_at: Начало + usage_limit: Предел promotion_action: item_fixed_discount: Фиксированная скидка item_percentage_discount: Процентная скидка @@ -23,18 +23,18 @@ sylius: order_percentage_discount: Процент скидки на заказ shipping_percentage_discount: Процент скидки на доставку fixed_discount_configuration: - amount: Сумма + amount: Количество percentage_discount_configuration: percentage: Процент type: Тип promotion_coupon: expires_at: Истекает - usage_limit: Предел использования + usage_limit: Предел promotion_coupon_generator_instruction: - amount: Сумма + amount: Количество code_length: Длина кода expires_at: Истекает - usage_limit: Предел использования + usage_limit: Предел promotion_filter: price_range: Фильтр диапазона цен promotion_rule: @@ -54,7 +54,7 @@ sylius: exclude: Исключить variants: Товары item_total_configuration: - amount: Сумма + amount: Количество nth_order_configuration: nth: Количество shipping_country_configuration: diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sk.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sk.yml index d5ad9b5e36d..fb1640f0060 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sk.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sk.yml @@ -46,7 +46,7 @@ sylius: nth_order_configuration: nth: N-tý shipping_country_configuration: - country: Štát + country: Krajina taxonomy_configuration: exclude: Vylúčiť taxons: Kategórie diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sl.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sl.yml index 4f5c03fd280..9a15b715d4c 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sl.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sl.yml @@ -15,11 +15,35 @@ sylius: priority: Prednost rules: Pravila starts_at: Se začne pri + usage_limit: Omejitev uporabe promotion_action: + fixed_discount_configuration: + amount: Znesek + percentage_discount_configuration: + percentage: Odstotki type: Vrsta + promotion_coupon: + expires_at: Poteče dne + usage_limit: Omejitev uporabe + promotion_coupon_generator_instruction: + amount: Znesek + expires_at: Poteče dne + usage_limit: Omejitev uporabe promotion_rule: + customer_group: Skupina kupcev cart_quantity_configuration: count: Število + equal: Enako + contains_product_configuration: + exclude: Izključuje + variants: Izdelki + item_total_configuration: + amount: Znesek + nth_order_configuration: + nth: N-ti shipping_country_configuration: country: Država + taxonomy_configuration: + exclude: Izključuje + taxons: Taksoni type: Vrsta diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sq.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sq.yml index 19bffbb2905..75ef298edd8 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sq.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sq.yml @@ -15,11 +15,35 @@ sylius: priority: Përparësia rules: Rregullat starts_at: Fillon më + usage_limit: Kufiri i përdorimit + promotion_action: + fixed_discount_configuration: + amount: Shuma + percentage_discount_configuration: + percentage: Përqindja + type: Lloji + promotion_coupon: + expires_at: Skadon më + usage_limit: Kufiri i përdorimit + promotion_coupon_generator_instruction: + amount: Shuma + expires_at: Skadon më + usage_limit: Kufiri i përdorimit promotion_rule: + customer_group: Grupi i blerësve cart_quantity_configuration: count: Numëro equal: E njëjtë + contains_product_configuration: + exclude: Përjashto + variants: Produktet + item_total_configuration: + amount: Shuma + nth_order_configuration: + nth: Nth shipping_country_configuration: country: Shteti taxonomy_configuration: + exclude: Përjashto taxons: Tipologjite + type: Lloji diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sr.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sr.yml index 93987107a84..1f9289ce399 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sr.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sr.yml @@ -4,11 +4,29 @@ sylius: form: promotion: + actions: Акције add_action: Додајте акцију add_rule: Додајте правило + description: Опис + ends_at: Завршава се + name: Име + rules: Правила + starts_at: Почиње + usage_limit: Ограничење коришћења promotion_action: + fixed_discount_configuration: + amount: Количина type: Тип + promotion_coupon: + usage_limit: Ограничење коришћења + promotion_coupon_generator_instruction: + amount: Количина + usage_limit: Ограничење коришћења promotion_rule: + contains_product_configuration: + variants: Производи + item_total_configuration: + amount: Количина shipping_country_configuration: country: Земља type: Тип diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sr_CS.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sr_CS.yml index 9861daf21e3..af57676d556 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sr_CS.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.sr_CS.yml @@ -7,13 +7,17 @@ sylius: actions: Akcije add_action: Dodajte akciju add_rule: Dodajte pravilo + coupon_based: Bazirano na kuponu description: Opis ends_at: Završava se + exclusive: Ekskluzivno name: Ime rules: Pravila starts_at: Počinje usage_limit: Ograničenje korišćenja promotion_action: + fixed_discount_configuration: + amount: Iznos percentage_discount_configuration: percentage: Procenat type: Tip diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.th.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.th.yml index 5e8b087bc97..6d16ec1af7e 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.th.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.th.yml @@ -11,25 +11,25 @@ sylius: description: คำอธิบาย ends_at: สิ้นสุด exclusive: พิเศษ - name: ชื่อ + name: ชื่อภาษา priority: ระดับความสำคัญ rules: เงื่อนไข starts_at: เริ่มต้น - usage_limit: ขีดจำกัดการใช้งาน + usage_limit: จำกัดการใช้งาน promotion_action: fixed_discount_configuration: - amount: ยอดเงิน + amount: ยอดรวม percentage_discount_configuration: percentage: เปอร์เซ็นต์ type: ชนิด promotion_coupon: expires_at: หมดอายุ - usage_limit: ขีดจำกัดการใช้งาน + usage_limit: จำกัดการใช้งาน promotion_coupon_generator_instruction: - amount: ยอดเงิน + amount: ยอดรวม code_length: ความยาวของรหัส expires_at: หมดอายุ - usage_limit: ขีดจำกัดการใช้งาน + usage_limit: จำกัดการใช้งาน promotion_filter: price_range: กรองช่วงราคา promotion_rule: @@ -42,7 +42,7 @@ sylius: exclude: ไม่รวม variants: สินค้า item_total_configuration: - amount: ยอดเงิน + amount: ยอดรวม nth_order_configuration: nth: Nth shipping_country_configuration: diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.tr.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.tr.yml index 232db399f0d..3c4b68c08d9 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.tr.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.tr.yml @@ -14,7 +14,7 @@ sylius: name: Ad priority: Öncelik rules: Kurallar - starts_at: ''' Dan başlar' + starts_at: ''' Dan başlar (start at)' usage_limit: Kullanım sınırı promotion_action: item_fixed_discount: Eşya sabit indirim @@ -26,7 +26,7 @@ sylius: amount: Miktar percentage_discount_configuration: percentage: Yüzde - type: Türü + type: Tür promotion_coupon: expires_at: Süre sonu usage_limit: Kullanım sınırı @@ -62,4 +62,4 @@ sylius: taxonomy_configuration: exclude: Hariç taxons: Kategoriler - type: Türü + type: Tür diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.uk.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.uk.yml index 23d93b6f368..c9ba381ae03 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.uk.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.uk.yml @@ -18,7 +18,7 @@ sylius: usage_limit: Обмеження використання promotion_action: fixed_discount_configuration: - amount: Сума + amount: Обсяг percentage_discount_configuration: percentage: Відсоток type: Тип @@ -26,7 +26,7 @@ sylius: expires_at: Дійсний до usage_limit: Обмеження використання promotion_coupon_generator_instruction: - amount: Сума + amount: Обсяг code_length: Довжина коду expires_at: Дійсний до usage_limit: Обмеження використання @@ -42,7 +42,7 @@ sylius: exclude: Виключити variants: Продукція item_total_configuration: - amount: Сума + amount: Обсяг nth_order_configuration: nth: Кількість shipping_country_configuration: diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.vi.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.vi.yml index 2dd488213a3..ff84b471050 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.vi.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.vi.yml @@ -4,10 +4,21 @@ sylius: form: promotion: + description: Mô tả name: Tên promotion_action: + fixed_discount_configuration: + amount: Số tiền type: Phân loại + promotion_coupon_generator_instruction: + amount: Số tiền promotion_rule: + contains_product_configuration: + variants: Sản phẩm + item_total_configuration: + amount: Số tiền shipping_country_configuration: country: Quốc gia + taxonomy_configuration: + taxons: Phân loại type: Phân loại diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.zh_CN.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.zh_CN.yml index a9b818a34f3..c9b1dcade57 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.zh_CN.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.zh_CN.yml @@ -23,7 +23,7 @@ sylius: order_percentage_discount: 订单百分比折扣 shipping_percentage_discount: 货运百分比折扣 fixed_discount_configuration: - amount: 折扣金额 + amount: 金额 percentage_discount_configuration: percentage: 折扣比例 type: 类型 @@ -31,7 +31,7 @@ sylius: expires_at: 到期时间 usage_limit: 使用次数 promotion_coupon_generator_instruction: - amount: 优惠金额 + amount: 金额 code_length: 优惠码长度 expires_at: 到期时间 usage_limit: 使用次数 @@ -58,7 +58,7 @@ sylius: nth_order_configuration: nth: 订单数 shipping_country_configuration: - country: 国家 + country: test taxonomy_configuration: exclude: 不包括: taxons: 分类 diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.zh_TW.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.zh_TW.yml index 9b6655cbb11..a755b0b5a21 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.zh_TW.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.zh_TW.yml @@ -4,6 +4,7 @@ sylius: form: promotion: + description: 説明 name: 名稱 promotion_action: fixed_discount_configuration: diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.be.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.be.yml index 4beb1860397..354253587b4 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.be.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.be.yml @@ -18,3 +18,9 @@ sylius: not_blank: Калі ласка, увядзіце код купона. usage_limit: min: Колькасць выкарыстання купона павінна быць больш за {{ limit }}. + promotion_coupon_generator_instruction: + amount: + min: Колькасць купонаў для генерацыі павінна быць мінімум {{ limit }}. + not_blank: Калі ласка, увядзіце колькасць купонў для генерацыі. + usage_limit: + min: Колькасць выкарыстання згенераваных купонаў павінна быць мінімум {{ limit }}. diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.da.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.da.yml index 563516545fe..21b6fc7844d 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.da.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.da.yml @@ -18,3 +18,9 @@ sylius: not_blank: Indtast kuponkode. usage_limit: min: Kupon brugsgrænse skal være mindst {{ limit }}. + promotion_coupon_generator_instruction: + amount: + min: Mængden af kuponer skal være mindst {{ limit }}. + not_blank: Angiv mængden af kuponer til at generere. + usage_limit: + min: Brugsgrænse for genererede kuponer skal mindst {{ limit }}. diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.fa.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.fa.yml index e0a8f8fa48f..c0f0a34ef1b 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.fa.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.fa.yml @@ -36,3 +36,5 @@ sylius: min: کد کوپن می بایست حداقل {{ limit }} کاراکتر باشد. max: کد کوپن نباید بیش از {{ limit }} حرف باشد. not_blank: طول کد کوپن را وارد کنید. + usage_limit: + min: محدودیت استفاده از کدهای تخفیف ساخته شده باید حداقل {{ limit }} باشد. diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.hu.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.hu.yml index 10febcaf8d1..f782159096a 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.hu.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.hu.yml @@ -23,3 +23,14 @@ sylius: unique: Ez a kupon már létezik. usage_limit: min: A kupon használati korlátozás legalább {{ limit }} kell legyen. + promotion_coupon_generator_instruction: + amount: + min: A létrehozandó kuponok mennyisége legalább {{ limit }} kell legyen. + not_blank: Kérjük, adja meg a létrehozandó kuponok mennyiségét. + code_length: + min: A kupon kódjának legalább {{ limit }} karakter hosszúnak kell lennie. + max: A kupon kódja nem lehet {{ limit }} karakternél hosszabb. + not_blank: Kérjük, adja meg a kupon kód hosszát. + possible_generation_amount: 'Érvénytelen kuponkód hossz vagy kupon mennyiség. Nem lehet %expectedAmount% egyedi kupont generálni ezzel a kód hosszúsággal ( %codeLength%). A maximális mennyiség ami generálható: %possibleAmount%.' + usage_limit: + min: A létrehozott kuponok használati korlátozása legalább {{ limit }} kell legyen. diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.lt.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.lt.yml index 6bfcbdca395..3668d08c1ea 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.lt.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.lt.yml @@ -19,3 +19,9 @@ sylius: unique: Šis kuponas jau egzistuoja. usage_limit: min: Kupono naudojimo limitas turi būti ne mažiau kaip {{ limit }}. + promotion_coupon_generator_instruction: + amount: + min: Generuojamų kuponų kiekis turi būti ne mažesnis kaip {{ limit }}. + not_blank: Įveskite generuotinų kuponų kiekį. + usage_limit: + min: Sugeneruotų kuponų naudojimo limitas turi būti ne mažesnis kaip {{ limit }}. diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.no.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.no.yml index dd5c3dfa1cc..d10802c7fe4 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.no.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.no.yml @@ -18,3 +18,9 @@ sylius: not_blank: Angi kupongkode. usage_limit: min: Kupongens bruksgrense må være minst {{ limit }}. + promotion_coupon_generator_instruction: + amount: + min: Mengden av kuponger å generere må være minst {{ limit }}. + not_blank: Angi mengden kuponger å generere. + usage_limit: + min: Bruksgrensen av genererte kuponger må være minst {{ limit }}. diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.pt.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.pt.yml index 1f84740a50d..9f70a331bbb 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.pt.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.pt.yml @@ -24,3 +24,14 @@ sylius: is_invalid: O código do cupão é inválido. usage_limit: min: O limite de uso do cupão deve ser de pelo menos {{ limit }}. + promotion_coupon_generator_instruction: + amount: + min: A quantidade de cupões a criar deve ser de pelo menos {{ limit }}. + not_blank: Por favor introduza a quantidade de cupões a criar. + code_length: + min: O código do cupão deve ter pelo menos {{ limit }} caracteres. + max: O código do cupão não deve ter mais que {{ limit }} caracteres. + not_blank: Por favor introduza o comprimento do código do cupão. + possible_generation_amount: Tamanho dos códigos de cupão ou quantia inválidos. Não é possível criar %expectedAmount% cupões únicos com um código de %codeLength% caracteres. É apenas possível criar %possibleAmount%. + usage_limit: + min: O limite de uso dos cupões criados deve ser de pelo menos {{ limit }}. diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.sl.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.sl.yml index ee6482055c4..d514be2381c 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.sl.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.sl.yml @@ -22,3 +22,9 @@ sylius: unique: Ta kupon že obstaja. usage_limit: min: Omejitev uporabe kupona mora biti vsaj {{ limit }}. + promotion_coupon_generator_instruction: + amount: + min: Znesek kuponov za generiranje mora biti vsaj {{ limit }}. + not_blank: Prosimo, vnesite znesek kuponov za generiranje. + usage_limit: + min: Omejitev uporabe generiranih kuponov mora biti vsaj {{ limit }}. diff --git a/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.sq.yml b/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.sq.yml index a1e9dca6630..1ab90c5ead4 100644 --- a/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.sq.yml +++ b/src/Sylius/Bundle/PromotionBundle/Resources/translations/validators.sq.yml @@ -23,3 +23,9 @@ sylius: unique: Ky kupon ekziston tashmë. usage_limit: min: Kufiri i përdorimit të kuponit duhet të jetë të paktën {{ limit }}. + promotion_coupon_generator_instruction: + amount: + min: Sasia e kuponave për t'u të gjeneruar duhet të jetë të paktën {{ limit }}. + not_blank: Fut sasinë e kuponave për t'u gjeneruar. + usage_limit: + min: Kufiri i përdorimit të kuponave të gjeneruar duhet të jetë të paktën {{ limit }}. diff --git a/src/Sylius/Bundle/ResourceBundle/Resources/translations/messages.fi.yml b/src/Sylius/Bundle/ResourceBundle/Resources/translations/messages.fi.yml index 57ec99b5a7b..6b2d7817afa 100644 --- a/src/Sylius/Bundle/ResourceBundle/Resources/translations/messages.fi.yml +++ b/src/Sylius/Bundle/ResourceBundle/Resources/translations/messages.fi.yml @@ -5,3 +5,4 @@ sylius: form: collection: add: Lisää + delete: Poista diff --git a/src/Sylius/Bundle/ResourceBundle/Resources/translations/messages.fr.yml b/src/Sylius/Bundle/ResourceBundle/Resources/translations/messages.fr.yml index 524f7c0dcc9..fd14f4577ed 100644 --- a/src/Sylius/Bundle/ResourceBundle/Resources/translations/messages.fr.yml +++ b/src/Sylius/Bundle/ResourceBundle/Resources/translations/messages.fr.yml @@ -4,5 +4,4 @@ sylius: form: collection: - add: Ajouter delete: Supprimer diff --git a/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.el.yml b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.el.yml index 61f71d40fad..2fe67d55b7a 100644 --- a/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.el.yml +++ b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.el.yml @@ -4,6 +4,8 @@ sylius: form: review: + author: Συντάκτης + comment: Σχόλιο status: new: Νέα title: Τίτλος diff --git a/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.es.yml b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.es.yml index 30e4411cb59..3c42fe90d64 100644 --- a/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.es.yml +++ b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.es.yml @@ -11,7 +11,7 @@ sylius: status: approved: Aprobado label: Estado - new: Nueva + new: Nuevo rejected: Rechazada submit: Guardar title: Título diff --git a/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.fi.yml b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.fi.yml index f9638395cf9..da4d4512995 100644 --- a/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.fi.yml +++ b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.fi.yml @@ -4,5 +4,8 @@ sylius: form: review: + author: Tekijä + comment: Kommentti status: new: Uusi + title: Otsikko diff --git a/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.hr.yml b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.hr.yml index 9ff32711102..a2787bba49c 100644 --- a/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.hr.yml +++ b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.hr.yml @@ -5,6 +5,9 @@ sylius: form: review: author: Autor + comment: Komentar + rating: Ocjena status: + label: Status new: Novo title: Naslov diff --git a/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.ja.yml b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.ja.yml index b3af6a4919d..57e020f3675 100644 --- a/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.ja.yml +++ b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.ja.yml @@ -4,4 +4,6 @@ sylius: form: review: + status: + new: sylius.breadcrumb.new title: タイトル diff --git a/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.mk.yml b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.mk.yml new file mode 100644 index 00000000000..a3d5483f9c4 --- /dev/null +++ b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.mk.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + review: + title: Наслов diff --git a/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.ru.yml b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.ru.yml index 122c087270b..2e6eadcc2eb 100644 --- a/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.ru.yml +++ b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.ru.yml @@ -14,4 +14,4 @@ sylius: new: Новый rejected: Отклонено submit: Отправить - title: Заголовок + title: Название diff --git a/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.sr.yml b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.sr.yml new file mode 100644 index 00000000000..a3d5483f9c4 --- /dev/null +++ b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.sr.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + review: + title: Наслов diff --git a/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.tr.yml b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.tr.yml index e4e019d448f..d9e0ffc98a0 100644 --- a/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.tr.yml +++ b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.tr.yml @@ -7,6 +7,7 @@ sylius: author: Hazırlayan comment: Yorum header: Bir gözden ekle + rating: Puan status: approved: Onaylandı label: Durum diff --git a/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.vi.yml b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.vi.yml index 5055d5fdfe8..caf5212bc30 100644 --- a/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.vi.yml +++ b/src/Sylius/Bundle/ReviewBundle/Resources/translations/messages.vi.yml @@ -4,4 +4,6 @@ sylius: form: review: + status: + new: Mới title: Tiêu đề diff --git a/src/Sylius/Bundle/ReviewBundle/Resources/translations/validators.fi.yml b/src/Sylius/Bundle/ReviewBundle/Resources/translations/validators.fi.yml new file mode 100644 index 00000000000..f436ac8a160 --- /dev/null +++ b/src/Sylius/Bundle/ReviewBundle/Resources/translations/validators.fi.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + review: + author: + already_exists: Tämä sähköpostiosoite on jo rekisteröity. Kirjaudu sisään tai käytä unohtunut salasana -toimintoa. diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.af.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.af.yml new file mode 100644 index 00000000000..d4bd8586106 --- /dev/null +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.af.yml @@ -0,0 +1,9 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + shipping_category: + name: Naam + shipping_method: + name: Naam diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ar.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ar.yml index 2ac0046f7b2..d2c6c22c474 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ar.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ar.yml @@ -32,7 +32,7 @@ sylius: calculator: الحاسبة category: القسم category_requirement: متطلبات القسم - channels: قنوات + channels: القنوات configuration: الضبط description: الوصف enabled: تفعيل diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.be.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.be.yml index ba5ff53b607..26d66edc5c5 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.be.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.be.yml @@ -9,8 +9,8 @@ sylius: shipment: state: Статус states: - checkout: Афармленне заказа - pending: У апрацоўцы + checkout: Афрмленне замовы + pending: У чаканні ready: Гатова shipped: Дастаўлена returned: Вернута @@ -18,9 +18,9 @@ sylius: tracking_code: Трэкінг-код shipping_calculator: flat_rate_configuration: - amount: Сума + amount: Колькасць per_unit_rate_configuration: - amount: Сума + amount: Колькасць shipping_category: description: Апісанне name: Назва @@ -33,5 +33,6 @@ sylius: description: Апісанне enabled: Уключана name: Назва + position: Пазіцыя tax_category: Катэгорыя падатку translations: Пераклады diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ca.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ca.yml index 416e3edd711..b91cc19f767 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ca.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ca.yml @@ -8,12 +8,19 @@ sylius: checkout: Realitza la compra pending: Pendent cancelled: Cancel·lat + shipping_calculator: + flat_rate_configuration: + amount: Total + per_unit_rate_configuration: + amount: Total shipping_category: description: Descripció name: Nom shipping_method: channels: Canals + configuration: Configuració description: Descripció enabled: Activat name: Nom + position: Posició tax_category: Categoria d'impost diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.cs.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.cs.yml index f0746d29f42..3b6d7c3db2b 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.cs.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.cs.yml @@ -21,10 +21,10 @@ sylius: shipping_calculator: flat_rate_configuration: label: Paušální sazba za zásilku - amount: Množství + amount: Částka per_unit_rate_configuration: label: Paušální sazba za položku - amount: Množství + amount: Částka shipping_category: description: Popis name: Jméno diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.da.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.da.yml index 76146581de7..02e998026bb 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.da.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.da.yml @@ -40,6 +40,6 @@ sylius: match_any_category_requirement: Mindst en enhed skal matche med forsendelseskategorien match_none_category_requirement: Ingen af enhederne behøves at matche med forsendelseskategorien name: Navn - position: Position + position: Placering tax_category: Momskategori translations: Oversættelser diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.de.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.de.yml index 7d7326b5008..bd26ccd6655 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.de.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.de.yml @@ -21,10 +21,10 @@ sylius: shipping_calculator: flat_rate_configuration: label: Pauschale pro Sendung - amount: Anzahl + amount: Steuersatz per_unit_rate_configuration: label: Pauschale pro Artikel - amount: Anzahl + amount: Steuersatz shipping_category: description: Beschreibung name: Name diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.de_CH.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.de_CH.yml index 7d7326b5008..9047c94e606 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.de_CH.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.de_CH.yml @@ -9,7 +9,7 @@ sylius: equal: Ist gleich type: Regeltyp shipment: - state: Versandstatus + state: Bundesland states: checkout: Zur Kasse pending: Ausstehend @@ -21,15 +21,15 @@ sylius: shipping_calculator: flat_rate_configuration: label: Pauschale pro Sendung - amount: Anzahl + amount: Steuersatz per_unit_rate_configuration: label: Pauschale pro Artikel - amount: Anzahl + amount: Steuersatz shipping_category: description: Beschreibung name: Name shipping_method: - calculator: Rechner + calculator: Steuersatzrechner category: Kategorie category_requirement: Kategorievoraussetzungen channels: Ausgabekanäle diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.es.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.es.yml index 0e02862b237..09437eb54e7 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.es.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.es.yml @@ -35,7 +35,7 @@ sylius: channels: Canales configuration: Configuración description: Descripción - enabled: Activado + enabled: '¿Activado?' match_all_category_requirement: Todas las unidades deben coincidir con la categoría del método de envío match_any_category_requirement: Al menos 1 unidad debe coincidir con la categoría del método de envío match_none_category_requirement: Ninguna de las unidades debe coincidir con la categoría del método de envío diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.et.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.et.yml index c24a4ba98e3..441c5cf681f 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.et.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.et.yml @@ -6,6 +6,7 @@ sylius: shipping_category: name: Nimi shipping_method: + channels: Kanalid enabled: Lubatud name: Nimi tax_category: Maksu kategooria diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.fa.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.fa.yml index aa2d6b47aab..34f38b8df5b 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.fa.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.fa.yml @@ -37,5 +37,6 @@ sylius: description: شرح enabled: فعال name: نام + position: جایگاه tax_category: نوع مالیات translations: زبان های diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.fi.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.fi.yml index ca1fbafbb77..fe7bb3985f2 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.fi.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.fi.yml @@ -8,9 +8,21 @@ sylius: checkout: Kassa pending: Odottaa cancelled: Peruutettu + shipping_calculator: + flat_rate_configuration: + amount: Summa + per_unit_rate_configuration: + amount: Summa shipping_category: description: Kuvaus + name: Nimi shipping_method: + calculator: Laskin + category: Kategoria channels: Kanavat + configuration: Asetukset description: Kuvaus + enabled: Aktiivinen + name: Nimi + position: Asema translations: Käännökset diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.fr.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.fr.yml index 09204a6b715..31d2f07c295 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.fr.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.fr.yml @@ -21,25 +21,15 @@ sylius: shipping_calculator: flat_rate_configuration: label: Prix fixe par envoi - amount: Montant per_unit_rate_configuration: label: Montant forfaitaire par unité - amount: Montant shipping_category: description: Description - name: Nom shipping_method: - calculator: Calculateur - category: Catégorie category_requirement: Exigence de la catégorie - channels: Canaux configuration: Configuration description: Description - enabled: Activé match_all_category_requirement: Tous les produits doivent correspondre à la catégorie d'expédition match_any_category_requirement: Au moins un des produits doivent correspondre à la catégorie d'expédition match_none_category_requirement: Aucune contrainte de correspondance à la catégorie d'expédition - name: Nom - position: Emplacement tax_category: Catégorie de taxe - translations: Traductions diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.he.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.he.yml index d3e1491cad7..1ed9b7547be 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.he.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.he.yml @@ -5,10 +5,23 @@ sylius: form: shipment: states: + ready: מוכן cancelled: בוטל tracking_code: מספר מעקב + shipping_calculator: + flat_rate_configuration: + amount: כמות + per_unit_rate_configuration: + amount: כמות shipping_category: + description: תיאור name: שם shipping_method: calculator: מחשבון + category: קטגוריה + channels: ערוצים + description: תיאור enabled: הופעל + name: שם + position: מיקום + translations: תרגומים diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.hr.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.hr.yml index 11832c21b36..4e92caa8f58 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.hr.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.hr.yml @@ -23,7 +23,7 @@ sylius: amount: Iznos shipping_category: description: Opis - name: Naziv + name: Naziv regije shipping_method: calculator: Kalkulator category: Kategorija @@ -31,6 +31,7 @@ sylius: channels: Kanali configuration: Postavke description: Opis - enabled: Omogući - name: Naziv + enabled: Omogućeno + name: Naziv regije tax_category: Kategorija artikla + translations: Prijevodi diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.hu.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.hu.yml index 9008600d05c..b75e3efcbcb 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.hu.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.hu.yml @@ -21,8 +21,10 @@ sylius: shipping_calculator: flat_rate_configuration: label: Átalánydíj szállítmányonként + amount: Összeg per_unit_rate_configuration: label: Átalánydíj per elem + amount: Összeg shipping_category: description: Leírás name: Név diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.it.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.it.yml index 4810efeae94..c0bff9d9b52 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.it.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.it.yml @@ -11,7 +11,7 @@ sylius: shipment: state: Stato states: - checkout: Vai alla cassa + checkout: Checkout pending: In attesa ready: Pronto shipped: Spedito @@ -27,7 +27,7 @@ sylius: amount: Importo shipping_category: description: Descrizione - name: Nome + name: "Nome\n" shipping_method: calculator: Calcolatore category: Categoria @@ -36,7 +36,7 @@ sylius: configuration: Configurazione description: Descrizione enabled: Abilitato - name: Nome + name: "Nome\n" position: Posizione tax_category: Categoria fiscale translations: Traduzioni diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ja.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ja.yml index 26c2afc026a..ecc0dfdf07a 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ja.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ja.yml @@ -3,5 +3,24 @@ sylius: form: + shipment: + state: 出荷ステータス + states: + checkout: 注文に進む + pending: 未発送 + shipping_calculator: + flat_rate_configuration: + amount: 税率 + per_unit_rate_configuration: + amount: 税率 + shipping_category: + description: 説明 + name: ゾーン名 shipping_method: + calculator: 計算方法 + category: 税区分 + configuration: 条件設定 + description: 説明 + enabled: 有効 + name: ゾーン名 tax_category: 税区分 diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ko.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ko.yml new file mode 100644 index 00000000000..bb5982c556d --- /dev/null +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ko.yml @@ -0,0 +1,10 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + shipping_category: + name: 이름 + shipping_method: + enabled: 사용 + name: 이름 diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.lv.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.lv.yml new file mode 100644 index 00000000000..7d5d77eb569 --- /dev/null +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.lv.yml @@ -0,0 +1,18 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + shipping_calculator: + flat_rate_configuration: + amount: Summa + per_unit_rate_configuration: + amount: Summa + shipping_category: + description: Apraksts + name: Nosaukums + shipping_method: + calculator: '- Kalkulators' + category: Kategorija + description: Apraksts + name: Nosaukums diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.mk.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.mk.yml new file mode 100644 index 00000000000..d3673de4d3f --- /dev/null +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.mk.yml @@ -0,0 +1,19 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + shipping_calculator: + flat_rate_configuration: + amount: Износ + per_unit_rate_configuration: + amount: Износ + shipping_category: + description: Опис + name: Име + shipping_method: + calculator: Калкулатор + category: Категорија + description: Опис + enabled: Овозможено + name: Име diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ms.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ms.yml new file mode 100644 index 00000000000..713f28ac247 --- /dev/null +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ms.yml @@ -0,0 +1,10 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + shipping_category: + name: Nama + shipping_method: + enabled: Dibenarkan + name: Nama diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.nl.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.nl.yml index 5c3b1f09eb4..b0dc9a4e612 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.nl.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.nl.yml @@ -12,7 +12,7 @@ sylius: state: Status states: checkout: Afrekenen - pending: Wachtende + pending: In behandeling ready: Klaar shipped: Verzonden returned: Geretourneerd @@ -21,10 +21,10 @@ sylius: shipping_calculator: flat_rate_configuration: label: Vast tarief per zending - amount: Hoeveelheid + amount: Bedrag per_unit_rate_configuration: label: Forfaitair bedrag per eenheid - amount: Hoeveelheid + amount: Bedrag shipping_category: description: Omschrijving name: Naam @@ -35,7 +35,7 @@ sylius: channels: Kanalen configuration: Configuratie description: Omschrijving - enabled: Toegestaan + enabled: Ingeschakeld match_all_category_requirement: Alle eenheden moeten overeenkomen met de methodecategorie match_any_category_requirement: Minstens 1 eenheid moet overeenkomen met de methodecategorie match_none_category_requirement: Geen van de eenheden hoeven overeen te komen met de methodecategorie diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.no.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.no.yml index 274ffc1d181..043b8d1ee01 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.no.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.no.yml @@ -10,7 +10,7 @@ sylius: shipment: state: Tilstand states: - checkout: Sjekk ut + checkout: Gå til kassen pending: Venter ready: Klar shipped: Sendt diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.pl.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.pl.yml index 724038f9293..6648d7a3235 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.pl.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.pl.yml @@ -21,10 +21,10 @@ sylius: shipping_calculator: flat_rate_configuration: label: Jednolita stawka za dostawę - amount: Kwota + amount: Wartość per_unit_rate_configuration: label: Jednolita stawka za jednostkę - amount: Kwota + amount: Wartość shipping_category: description: Opis name: Nazwa @@ -35,11 +35,11 @@ sylius: channels: Kanały configuration: Konfiguracja description: Opis - enabled: Aktywne + enabled: Dostępny match_all_category_requirement: Wszystkie przedmioty muszą pochodzić z tej samej kategorii wysyłki match_any_category_requirement: Przynajmniej 1 przedmiot musi pochodzić z kategorii wysyłki match_none_category_requirement: Żaden przedmiot nie musi pochodzić z kategorii wysyłki name: Nazwa - position: Pozycja + position: Położenie tax_category: Kategoria podatkowa translations: Tłumaczenia diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.pt_BR.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.pt_BR.yml index 6e3d9136010..3b7876b458a 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.pt_BR.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.pt_BR.yml @@ -35,7 +35,7 @@ sylius: channels: Canais configuration: Configuração description: Descrição - enabled: Ativado + enabled: Habilitado match_all_category_requirement: Todas as unidades devem corresponder à categoria do método match_any_category_requirement: Pelo menos uma unidade deve corresponder à categoria do método match_none_category_requirement: Nenhuma das unidades deve corresponder à categoria do método diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ro.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ro.yml index a9ac2ca6cfe..b7d4477cb48 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ro.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ro.yml @@ -11,7 +11,7 @@ sylius: shipment: state: Status states: - checkout: Finalizare comandă + checkout: Trimite comanda pending: În așteptare ready: Gata shipped: Expediată @@ -21,13 +21,13 @@ sylius: shipping_calculator: flat_rate_configuration: label: Sumă forfetară pe expediere - amount: Sumă + amount: Valoare per_unit_rate_configuration: label: Sumă forfetară pe unitate - amount: Sumă + amount: Valoare shipping_category: description: Descriere - name: Nume + name: Nume produs shipping_method: calculator: Calculator category: Categorie @@ -39,7 +39,7 @@ sylius: match_all_category_requirement: Toate categoriile unităților trebuie să coincidă cu categoria metodei match_any_category_requirement: Cel puțin o unitate trebuie să aibă aceeași categorie cu metoda match_none_category_requirement: Nicio unitate nu trebuie să aibă aceeași categorie cu metoda - name: Nume + name: Nume produs position: Poziţie tax_category: Categoria de taxă translations: Traduceri diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ru.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ru.yml index 5b202cd9a94..db03571e9e1 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ru.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.ru.yml @@ -11,8 +11,8 @@ sylius: shipment: state: Cтатус states: - checkout: Оформление заказа - pending: В обработке + checkout: Сверка + pending: Ожидает ready: Готов shipped: Доставлено returned: Возвращено @@ -21,13 +21,13 @@ sylius: shipping_calculator: flat_rate_configuration: label: Фиксированная ставка за доставку - amount: Сумма + amount: Количество per_unit_rate_configuration: label: Фиксированная ставка за единицу товара - amount: Сумма + amount: Количество shipping_category: description: Описание - name: Название + name: Округ shipping_method: calculator: Калькулятор category: Категория @@ -39,7 +39,7 @@ sylius: match_all_category_requirement: Все единицы товара должны соответствовать способу доставки match_any_category_requirement: По крайней мере одна единица товара должны соответствовать способу доставки match_none_category_requirement: Ни одна из единиц товара не должна соответствовать способу доставки - name: Название + name: Округ position: Позиция tax_category: Категория налогов translations: 'Переводы' diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.sl.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.sl.yml index 8974efa7515..9876fe8baec 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.sl.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.sl.yml @@ -6,6 +6,7 @@ sylius: rule: unit_count_configuration: count: Število + equal: Enako kot type: Vrsta pravila shipment: state: Stanje @@ -20,6 +21,9 @@ sylius: shipping_calculator: flat_rate_configuration: label: Pavšalno na pošiljko + amount: Znesek + per_unit_rate_configuration: + amount: Znesek shipping_category: description: Opis name: Ime diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.sq.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.sq.yml index 0d7a7964f5a..2eab8527cf5 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.sq.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.sq.yml @@ -21,8 +21,10 @@ sylius: shipping_calculator: flat_rate_configuration: label: Taksa fikse për dërgimin + amount: Shuma per_unit_rate_configuration: label: Tarife fikse per njesi + amount: Shuma shipping_category: description: Përshkrimi name: Emri diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.sr.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.sr.yml index f7c173921a1..375d30d214b 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.sr.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.sr.yml @@ -3,5 +3,24 @@ sylius: form: + shipment: + state: стање + states: + checkout: Завршите куповину + pending: Обрада у току + shipping_calculator: + flat_rate_configuration: + amount: Количина + per_unit_rate_configuration: + amount: Количина + shipping_category: + description: Опис + name: Име shipping_method: + calculator: Калкулатор + category: Категорија пореске стопе + configuration: Подешавања + description: Опис + enabled: Омогућено + name: Име tax_category: Категорија производа diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.sr_CS.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.sr_CS.yml index 80daccef382..fa17397124d 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.sr_CS.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.sr_CS.yml @@ -8,6 +8,7 @@ sylius: count: Broj equal: Jednako shipment: + state: stanje states: checkout: Plaćanje pending: Na čekanju @@ -16,14 +17,16 @@ sylius: cancelled: Otkazano tracking_code: Kod Praćenja shipping_calculator: + flat_rate_configuration: + amount: Iznos per_unit_rate_configuration: - amount: Količina + amount: Iznos shipping_category: description: Opis name: Ime shipping_method: calculator: Kalkulator - category: Kategorija + category: Kategorija poreske stope channels: Kanali configuration: Konfiguracija description: Opis diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.th.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.th.yml index f803932fbc9..e4472376dff 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.th.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.th.yml @@ -21,22 +21,22 @@ sylius: shipping_calculator: flat_rate_configuration: label: อัตราต่อการจัดส่ง - amount: ยอดเงิน + amount: ยอดรวม per_unit_rate_configuration: label: อัตราต่อหน่วย - amount: ยอดเงิน + amount: ยอดรวม shipping_category: description: คำอธิบาย - name: ชื่อ + name: ชื่อภาษา shipping_method: - calculator: การคำนวณราคา + calculator: การคำนวณ category: หมวดหมู่ category_requirement: ความต้องการสำหรับหมวดหมู่ channels: ช่องทางจำหน่าย configuration: การกำหนดค่า (Configuration) description: คำอธิบาย - enabled: เปิดใช้งานแล้ว - name: ชื่อ + enabled: เปิดใช้งาน + name: ชื่อภาษา position: ตำแหน่ง tax_category: ประเภทภาษี translations: การแปลภาษา diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.uk.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.uk.yml index 80c947e7d36..d498d2c004a 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.uk.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.uk.yml @@ -16,15 +16,15 @@ sylius: ready: Готове shipped: Доставлене returned: Повернене - cancelled: Скасоване + cancelled: Скасовано tracking_code: Код відстеження shipping_calculator: flat_rate_configuration: label: Фіксована ставка за доставку - amount: Сума + amount: Обсяг per_unit_rate_configuration: label: Фіксована ставка за одиницю - amount: Сума + amount: Обсяг shipping_category: description: Опис name: Назва @@ -35,7 +35,7 @@ sylius: channels: Канали configuration: Конфігурація description: Опис - enabled: Увімкнено + enabled: Ввімкнено name: Назва position: Позиція tax_category: Категорія податку diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.vi.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.vi.yml index e3376cc052e..0dbb02b5040 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.vi.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.vi.yml @@ -3,8 +3,19 @@ sylius: form: + shipping_calculator: + flat_rate_configuration: + amount: Số tiền + per_unit_rate_configuration: + amount: Số tiền shipping_category: + description: Mô tả name: Tên shipping_method: + calculator: Máy tính + category: Danh mục channels: Kênh + configuration: Cấu hình + description: Mô tả + enabled: Đã kích hoạt name: Tên diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.zh_CN.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.zh_CN.yml index 7f7c8330cdc..4b2675c2fc7 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.zh_CN.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/messages.zh_CN.yml @@ -30,9 +30,9 @@ sylius: name: 名称 shipping_method: calculator: 计算器 - category: 分类 + category: 税目 category_requirement: 类别要求 - channels: 频道 + channels: 门店 configuration: 配置: description: 描述 enabled: 已启用 @@ -40,6 +40,6 @@ sylius: match_any_category_requirement: 至少一个单位必须匹配送货方式的分类 match_none_category_requirement: 所有单位都无需匹配送货方式的分类 name: 名称 - position: 位置 + position: 优先级 tax_category: 税类别 translations: 翻译 diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.ar.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.ar.yml index 4f5701be029..789054da504 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.ar.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.ar.yml @@ -28,4 +28,4 @@ sylius: not_blank: 'يرجى تحديد أسلوب الشحن.' shipment: shipping_method: - not_blank: 'يرجى تحديد طريقة الشحن.' + not_blank: 'يرجى تحديد أسلوب الشحن.' diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.be.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.be.yml index 9c8bb671d31..8e836154bd2 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.be.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.be.yml @@ -16,3 +16,6 @@ sylius: max_length: 'Назоў метаду траспартыроўкі мусіць быць не даўжэй за {{ limit }} сымбаляў.' min_length: 'Назоў метаду траспартыроўкі мусіць быць як мінімум {{ limit }} сымбаляў.' not_blank: 'Калі ласка, увядзіце назоў метаду транспартыроўкі.' + shipment: + shipping_method: + not_blank: 'Калі ласка, выберыце метад дастаўкі.' diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.de_CH.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.de_CH.yml index c853bc09ce7..23bc093c015 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.de_CH.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.de_CH.yml @@ -28,4 +28,4 @@ sylius: not_blank: 'Bitte wählen Sie eine Zone für die Versandart.' shipment: shipping_method: - not_blank: 'Bitte wählen Sie eine Versandart aus.' + not_blank: 'Bitte wählen Sie die Versandart.' diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.es.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.es.yml index 14cf7d94c26..e873481c615 100644 --- a/src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.es.yml +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.es.yml @@ -28,4 +28,4 @@ sylius: not_blank: 'Por favor, introduzca la zona del método de envío.' shipment: shipping_method: - not_blank: 'Por favor, seleccione el método de envío.' + not_blank: 'Por favor seleccione el método de envío.' diff --git a/src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.ja.yml b/src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.ja.yml new file mode 100644 index 00000000000..baf6429c51e --- /dev/null +++ b/src/Sylius/Bundle/ShippingBundle/Resources/translations/validators.ja.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + shipment: + shipping_method: + not_blank: '発送方法を選択してください。' diff --git a/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.de_CH.yml b/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.de_CH.yml index 616e7c4d3bd..d910a35f3cf 100644 --- a/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.de_CH.yml +++ b/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.de_CH.yml @@ -2,6 +2,8 @@ # (c) Paweł Jędrzejewski sylius: + lightbox: + image_album_label: 'Bild %1 von %2' menu: shop: account: @@ -9,5 +11,5 @@ sylius: change_password: 'Passwort ändern' dashboard: 'Dashboard' header: 'Ihr Konto' - order_history: 'Bestellungsverlauf' + order_history: 'Bestellverlauf' personal_information: 'Persönliche Informationen' diff --git a/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.el.yml b/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.el.yml index b9abefb4f47..4bc0b5027a8 100644 --- a/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.el.yml +++ b/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.el.yml @@ -5,4 +5,6 @@ sylius: menu: shop: account: + address_book: 'Βιβλίο διευθύνσεων' change_password: 'Αλλαγή κωδικού πρόσβασης' + dashboard: 'Dashboard' diff --git a/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.fr.yml b/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.fr.yml index efd141731ae..f66af72fcc7 100644 --- a/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.fr.yml +++ b/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.fr.yml @@ -6,8 +6,6 @@ sylius: shop: account: address_book: 'Carnet d’adresses' - change_password: 'Changer votre mot de passe' - dashboard: 'Tableau de bord' header: 'Votre compte' order_history: 'Historique des commandes' personal_information: 'Informations personnelles' diff --git a/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.he.yml b/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.he.yml new file mode 100644 index 00000000000..178512e5a0e --- /dev/null +++ b/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.he.yml @@ -0,0 +1,9 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + menu: + shop: + account: + address_book: 'רשימת כתובות' + change_password: 'שנה סיסמה' diff --git a/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.pl.yml b/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.pl.yml index ba453ed3e24..dc4899ce6c0 100644 --- a/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.pl.yml +++ b/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.pl.yml @@ -2,6 +2,8 @@ # (c) Paweł Jędrzejewski sylius: + lightbox: + image_album_label: 'Obraz %1 z %2' menu: shop: account: diff --git a/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.pt_BR.yml b/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.pt_BR.yml index 0022e85bc14..3c5b7848cf8 100644 --- a/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.pt_BR.yml +++ b/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.pt_BR.yml @@ -6,7 +6,7 @@ sylius: shop: account: address_book: 'Catálogo de endereços' - change_password: 'Alterar senha' + change_password: 'Alterar palavra-passe' dashboard: 'Painel' header: 'Sua conta' order_history: 'Histórico de pedidos' diff --git a/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.sr.yml b/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.sr.yml index 5aec1b353cb..619b274afe9 100644 --- a/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.sr.yml +++ b/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.sr.yml @@ -5,4 +5,4 @@ sylius: menu: shop: account: - dashboard: 'Командна Табла' + dashboard: 'Контролна табла' diff --git a/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.sr_CS.yml b/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.sr_CS.yml index 566b6686eec..ad064a9bc97 100644 --- a/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.sr_CS.yml +++ b/src/Sylius/Bundle/ShopBundle/Resources/translations/messages.sr_CS.yml @@ -7,7 +7,7 @@ sylius: account: address_book: 'Adresar' change_password: 'Promenite lozinku' - dashboard: 'Komandna Tabla' + dashboard: 'Kontrolna tabla' header: 'Vaš nalog' order_history: 'Istorija narudžbina' personal_information: 'Lični podaci' diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.af.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.af.yml new file mode 100644 index 00000000000..90598ab8397 --- /dev/null +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.af.yml @@ -0,0 +1,9 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + tax_category: + name: Naam + tax_rate: + name: Naam diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.be.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.be.yml index 7cd10ebd32d..9039c434d7e 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.be.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.be.yml @@ -9,6 +9,6 @@ sylius: tax_rate: category: Катэгорыя name: Назва - amount: Сума + amount: Колькасць included_in_price: Уваходзіць у цэну? calculator: Калькулятар diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ca.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ca.yml index 23a49cad3e4..5ae6b5a8b1f 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ca.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ca.yml @@ -8,3 +8,4 @@ sylius: description: Descripció tax_rate: name: Nom + amount: Total diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.de.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.de.yml index 2bb49ead340..618a8526e47 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.de.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.de.yml @@ -9,6 +9,6 @@ sylius: tax_rate: category: Kategorie name: Name - amount: Anzahl + amount: Steuersatz included_in_price: Im Preis enthalten? calculator: Rechner diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.de_CH.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.de_CH.yml index 2bb49ead340..8c1044d5599 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.de_CH.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.de_CH.yml @@ -9,6 +9,6 @@ sylius: tax_rate: category: Kategorie name: Name - amount: Anzahl + amount: Steuersatz included_in_price: Im Preis enthalten? - calculator: Rechner + calculator: Steuersatzrechner diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.fr.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.fr.yml index 6d11ddb477a..8babba778c6 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.fr.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.fr.yml @@ -4,11 +4,6 @@ sylius: form: tax_category: - name: Nom description: Description tax_rate: - category: Catégorie - name: Nom - amount: Montant included_in_price: Inclus dans le prix? - calculator: Calculateur diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.he.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.he.yml index b2e19adb386..d51912a67ee 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.he.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.he.yml @@ -3,5 +3,11 @@ sylius: form: + tax_category: + name: שם + description: תיאור tax_rate: + category: קטגוריה + name: שם + amount: כמות calculator: מחשבון diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.hr.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.hr.yml index b3da31c8f7a..47baa6925e9 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.hr.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.hr.yml @@ -4,11 +4,11 @@ sylius: form: tax_category: - name: Naziv + name: Naziv regije description: Opis tax_rate: category: Kategorija - name: Naziv + name: Naziv regije amount: Iznos included_in_price: Uključeno u cijenu? calculator: Kalkulator diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.hu.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.hu.yml index 741c293f3e3..24d92edd0ec 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.hu.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.hu.yml @@ -9,5 +9,6 @@ sylius: tax_rate: category: Kategória name: Név + amount: Összeg included_in_price: Az ár tartalmazza? calculator: Számológép diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.it.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.it.yml index ed78c0619a1..b028dcb69bb 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.it.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.it.yml @@ -4,11 +4,11 @@ sylius: form: tax_category: - name: Nome + name: "Nome\n" description: Descrizione tax_rate: category: Categoria - name: Nome - amount: Valore + name: "Nome\n" + amount: Importo included_in_price: Incluso nel prezzo? calculator: Calcolatore diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ja.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ja.yml index 8de1f4e9538..45281ab331e 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ja.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ja.yml @@ -4,11 +4,11 @@ sylius: form: tax_category: - name: 区分名 + name: ゾーン名 description: 説明 tax_rate: category: 税区分 - name: 名称 + name: ゾーン名 amount: 税率 included_in_price: 内税 calculator: 計算方法 diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ko.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ko.yml new file mode 100644 index 00000000000..a82c0889fde --- /dev/null +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ko.yml @@ -0,0 +1,9 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + tax_category: + name: 이름 + tax_rate: + name: 이름 diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.mk.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.mk.yml index 83e94583f80..8314d29a925 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.mk.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.mk.yml @@ -4,9 +4,11 @@ sylius: form: tax_category: + name: Име description: Опис tax_rate: category: Категорија + name: Име amount: Износ included_in_price: Вклучено во цената? calculator: Калкулатор diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ms.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ms.yml new file mode 100644 index 00000000000..d7fb51d74a3 --- /dev/null +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ms.yml @@ -0,0 +1,9 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + tax_category: + name: Nama + tax_rate: + name: Nama diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.nl.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.nl.yml index 006ca19e60c..51879a9758b 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.nl.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.nl.yml @@ -9,6 +9,6 @@ sylius: tax_rate: category: Categorie name: Naam - amount: Hoeveelheid + amount: Bedrag included_in_price: Inbegrepen in de prijs? calculator: Calculator diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ro.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ro.yml index 28469a48508..9610abb8178 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ro.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ro.yml @@ -4,11 +4,11 @@ sylius: form: tax_category: - name: Nume + name: Nume produs description: Descriere tax_rate: category: Categorie - name: Nume + name: Nume produs amount: Valoare included_in_price: Inclusă în preţ? calculator: Calculator diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ru.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ru.yml index 7851b36f22b..f79adf70003 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ru.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.ru.yml @@ -4,11 +4,11 @@ sylius: form: tax_category: - name: Название + name: Округ description: Описание tax_rate: category: Категория - name: Название - amount: Сумма + name: Округ + amount: Количество included_in_price: Включено в цену? calculator: Калькулятор diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.sl.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.sl.yml index 48325fe8e48..abb3800370f 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.sl.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.sl.yml @@ -9,5 +9,6 @@ sylius: tax_rate: category: Kategorija name: Ime + amount: Znesek included_in_price: Vključeno v ceno? calculator: Kalkulator diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.sq.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.sq.yml index a7be7157ef8..c3c83dc8b15 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.sq.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.sq.yml @@ -9,5 +9,6 @@ sylius: tax_rate: category: Kategorija name: Emri + amount: Shuma included_in_price: Përfshirë në çmim? calculator: Llogaritësi diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.sr.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.sr.yml new file mode 100644 index 00000000000..4d98c204a1e --- /dev/null +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.sr.yml @@ -0,0 +1,14 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + tax_category: + name: Име + description: Опис + tax_rate: + category: Категорија пореске стопе + name: Име + amount: Количина + included_in_price: Укљуцен у цену? + calculator: Калкулатор diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.sr_CS.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.sr_CS.yml index 9685b49e856..d3f9fcb5ccb 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.sr_CS.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.sr_CS.yml @@ -9,6 +9,6 @@ sylius: tax_rate: category: Kategorija poreske stope name: Ime - amount: Količina + amount: Iznos included_in_price: Uključeno u cenu? calculator: Kalkulator diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.th.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.th.yml index 68a58f0df0e..d25cedba5e1 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.th.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.th.yml @@ -4,11 +4,11 @@ sylius: form: tax_category: - name: ชื่อ - description: รายละเอียด + name: ชื่อภาษา + description: คำอธิบาย tax_rate: category: หมวดหมู่ - name: ชื่อ - amount: รวม + name: ชื่อภาษา + amount: ยอดรวม included_in_price: รวมในราคาสินค้า? calculator: การคำนวณ diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.uk.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.uk.yml index d20fc4b1e8f..11522f6ebf1 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.uk.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.uk.yml @@ -9,6 +9,6 @@ sylius: tax_rate: category: Категорія name: Назва - amount: Кількість + amount: Обсяг included_in_price: Включено в ціну? calculator: Калькулятор diff --git a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.zh_CN.yml b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.zh_CN.yml index c65ca1472f3..a520680aa5c 100644 --- a/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.zh_CN.yml +++ b/src/Sylius/Bundle/TaxationBundle/Resources/translations/messages.zh_CN.yml @@ -9,6 +9,6 @@ sylius: tax_rate: category: 税目 name: 名称 - amount: 税率 + amount: 金额 included_in_price: 包含在价格中? calculator: 计算器 diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.af.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.af.yml new file mode 100644 index 00000000000..437a72a6db9 --- /dev/null +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.af.yml @@ -0,0 +1,9 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + taxon: + name: Naam + taxonomy: + name: Naam diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.bg.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.bg.yml index 67a041c16de..86dd4b07941 100644 --- a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.bg.yml +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.bg.yml @@ -6,7 +6,7 @@ sylius: taxon: description: Описание name: Име - parent: Родител + parent: Източник slug: Слъг taxonomy: name: Име diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.de.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.de.yml index a66adf2ce71..95b067806cc 100644 --- a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.de.yml +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.de.yml @@ -7,6 +7,6 @@ sylius: description: Beschreibung name: Name parent: Übergeordnet - slug: Kategorie SEO-URL + slug: Produkt SEO-URL taxonomy: name: Name diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.de_CH.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.de_CH.yml index 95b067806cc..55b6f1d8a0b 100644 --- a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.de_CH.yml +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.de_CH.yml @@ -6,7 +6,7 @@ sylius: taxon: description: Beschreibung name: Name - parent: Übergeordnet - slug: Produkt SEO-URL + parent: Parent + slug: Kategorie SEO-URL taxonomy: name: Name diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.fa.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.fa.yml index 88ddfc15c4a..c62e66179b0 100644 --- a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.fa.yml +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.fa.yml @@ -6,7 +6,7 @@ sylius: taxon: description: شرح name: نام - parent: رده پدر + parent: شاخه بالادستی slug: حلزون taxonomy: name: نام diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.fr.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.fr.yml index 32b5f09e33f..a6d3b1926d2 100644 --- a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.fr.yml +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.fr.yml @@ -5,8 +5,4 @@ sylius: form: taxon: description: Description - name: Nom - parent: Parent slug: Slug - taxonomy: - name: Nom diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.he.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.he.yml index 10922a580fc..392323fe0ad 100644 --- a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.he.yml +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.he.yml @@ -4,4 +4,8 @@ sylius: form: taxon: + description: תיאור + name: שם slug: שם מקוצר לשימוש בקישורים + taxonomy: + name: שם diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.hr.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.hr.yml index 133c0308896..1ecfbb77a21 100644 --- a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.hr.yml +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.hr.yml @@ -5,7 +5,7 @@ sylius: form: taxon: description: Opis - name: Naziv + name: Naziv regije parent: Nadređena kategorija taxonomy: - name: Naziv + name: Naziv regije diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.it.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.it.yml index 7843916b029..053c2a53832 100644 --- a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.it.yml +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.it.yml @@ -7,6 +7,6 @@ sylius: description: Descrizione name: "Nome\n" parent: Genitore - slug: SEO URL Categoria + slug: Slug taxonomy: - name: Nome + name: "Nome\n" diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ja.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ja.yml new file mode 100644 index 00000000000..e74aaf97ca5 --- /dev/null +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ja.yml @@ -0,0 +1,10 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + taxon: + description: 説明 + name: ゾーン名 + taxonomy: + name: ゾーン名 diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ko.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ko.yml new file mode 100644 index 00000000000..bb6cb36fb66 --- /dev/null +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ko.yml @@ -0,0 +1,9 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + taxon: + name: 이름 + taxonomy: + name: 이름 diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.lv.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.lv.yml new file mode 100644 index 00000000000..0e4a2e29d79 --- /dev/null +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.lv.yml @@ -0,0 +1,10 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + taxon: + description: Apraksts + name: Nosaukums + taxonomy: + name: Nosaukums diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.mk.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.mk.yml new file mode 100644 index 00000000000..bccc11c2b85 --- /dev/null +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.mk.yml @@ -0,0 +1,11 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + taxon: + description: Опис + name: Име + parent: Родител + taxonomy: + name: Име diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ms.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ms.yml new file mode 100644 index 00000000000..4ef0c7f2727 --- /dev/null +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ms.yml @@ -0,0 +1,9 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + taxon: + name: Nama + taxonomy: + name: Nama diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.nl.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.nl.yml index 143fd39b610..a82456f48d4 100644 --- a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.nl.yml +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.nl.yml @@ -7,6 +7,6 @@ sylius: description: Omschrijving name: Naam parent: Ouder - slug: Korte naam + slug: Slug taxonomy: name: Naam diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ro.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ro.yml index b5fe47d6181..ddc12cfd88d 100644 --- a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ro.yml +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ro.yml @@ -5,8 +5,8 @@ sylius: form: taxon: description: Descriere - name: Nume + name: Nume produs parent: Părinte slug: Slug taxonomy: - name: Nume + name: Nume produs diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ru.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ru.yml index 5de0b1b9b3d..700f68ef52a 100644 --- a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ru.yml +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.ru.yml @@ -5,8 +5,8 @@ sylius: form: taxon: description: Описание - name: Название + name: Округ parent: Родитель slug: Псевдоним taxonomy: - name: Название + name: Округ diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.sk.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.sk.yml index 83cca0e113a..6873127cd10 100644 --- a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.sk.yml +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.sk.yml @@ -6,7 +6,7 @@ sylius: taxon: description: Popis name: Názov - parent: Nadradená kategória + parent: Nadradený prototyp slug: Slug taxonomy: name: Názov diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.sr.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.sr.yml new file mode 100644 index 00000000000..f204358030f --- /dev/null +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.sr.yml @@ -0,0 +1,11 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + taxon: + description: Опис + name: Име + parent: Родитељ + taxonomy: + name: Име diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.th.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.th.yml index 06047bb02ef..5d995f7d1ff 100644 --- a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.th.yml +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.th.yml @@ -5,8 +5,8 @@ sylius: form: taxon: description: คำอธิบาย - name: ชื่อ - parent: หมวดแม่ + name: ชื่อภาษา + parent: หมวดหมู่หลัก slug: Slug taxonomy: - name: ชื่อ + name: ชื่อภาษา diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.vi.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.vi.yml index 03bcdee3e98..4005eb1e9c4 100644 --- a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.vi.yml +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.vi.yml @@ -4,6 +4,7 @@ sylius: form: taxon: + description: Mô tả name: Tên taxonomy: name: Tên diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.zh_CN.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.zh_CN.yml index 9f18ade5233..5d4aacc4968 100644 --- a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.zh_CN.yml +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.zh_CN.yml @@ -7,6 +7,6 @@ sylius: description: 描述 name: 名称 parent: 上一级 - slug: 标语 + slug: Slug taxonomy: name: 名称 diff --git a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.zh_TW.yml b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.zh_TW.yml index c4711ec1591..876e8b6aa40 100644 --- a/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.zh_TW.yml +++ b/src/Sylius/Bundle/TaxonomyBundle/Resources/translations/messages.zh_TW.yml @@ -4,6 +4,7 @@ sylius: form: taxon: + description: 説明 name: 名稱 slug: Slug taxonomy: diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/flashes.hu.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/flashes.hu.yml new file mode 100644 index 00000000000..a76632a225d --- /dev/null +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/flashes.hu.yml @@ -0,0 +1,6 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + channel: + delete_error: 'A csatornát nem lehet törölni. Legalább egy engedélyezett csatornának lennie kell.' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/flashes.lt.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/flashes.lt.yml new file mode 100644 index 00000000000..8412a7c85a7 --- /dev/null +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/flashes.lt.yml @@ -0,0 +1,8 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + channel: + delete_error: 'Kanalas negali būti panaikintas. Reikalingas bent vienas įjungtas kanalas.' + customer: + add_address: 'Adresas buvo sėkmingai pridėtas.' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/flashes.pt.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/flashes.pt.yml new file mode 100644 index 00000000000..e914f306b29 --- /dev/null +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/flashes.pt.yml @@ -0,0 +1,6 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + channel: + delete_error: 'O canal não pode ser excluído. É necessário pelo menos um canal ativo.' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/flashes.sq.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/flashes.sq.yml new file mode 100644 index 00000000000..8900e0c51db --- /dev/null +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/flashes.sq.yml @@ -0,0 +1,6 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + channel: + delete_error: 'Kanali nuk mund të fshihet. Të paktën një kanal duhet të jetë i aktivizuar.' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.af.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.af.yml index 8aa97675ade..92aed309dfc 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.af.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.af.yml @@ -2,11 +2,18 @@ # (c) Paweł Jędrzejewski sylius: + form: + option: + name: 'Naam' ui: city: 'Stad' company: 'Maatskappy' country: 'Land' + first_name: 'Naam' + last_name: 'Van' + lastname: 'Van' members: 'Lede' + name: 'Naam' postcode: 'Poskode' presentation: 'Weergawe' province: 'Provinsie' @@ -14,3 +21,4 @@ sylius: scope: 'Gebied' street: 'Straat' type: 'Tipe' + zone: 'Area' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ar.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ar.yml index 76fee137429..c717f140c15 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ar.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ar.yml @@ -115,7 +115,7 @@ sylius: change_your_password: 'تغير كلمة المرور الخاصة بك' changes: 'التغييرات' channel: 'قناة' - channels: 'قنوات' + channels: 'القنوات' charges_and_taxes: 'الرسوم والضرائب' cheapest_first: 'الأحدث أولاً' checkbox: 'خانة الاختيار' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.be.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.be.yml index 8656b06108d..9ae158199b7 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.be.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.be.yml @@ -7,13 +7,14 @@ sylius: username: 'Юзернэйм' password: 'Пароль' option: - name: 'Імя' + name: 'Назва' ui: action: 'Дзеянне' actions: 'Дзеянні' add: 'Дадаць' add_action: 'Дадаць дзеянне' add_attributes: 'Дадаць атрыбуты' + add_choice: 'Дадаць выбар' add_coupon: 'Дадаць купон' add_image: 'Дадаць выяву' add_member: 'Дадаць удзельніка' @@ -25,15 +26,20 @@ sylius: addressing_step: 'Адрас' administration: 'Адміністрацыя' administration_dashboard: 'Панэль адміністратара' + admin_users: 'Адміністратары' + all: 'Усе' all_your_addresses: 'Усе Вашы адрасы' - amount: 'Сума' + amount: 'Колькасць' + association_types: 'Тыпы ўзаемасувязей' assortment: 'Асартымент' + attributes: 'Атрыбуты' author: 'Аўтар' availability: 'Наяўнасць' available_on: 'У наяўнасці з' back: 'Назад' backorder: 'Замовіць тавар, якога няма на складзе' balance_due: 'Баланс за' + base_currency: 'Базавая валюта' billing_address: 'Адрас для аплаты' blocks: 'Блокі' body: 'Змест' @@ -42,6 +48,8 @@ sylius: calculator: 'Калькулятар' cancel: 'Адмяніць' cancelled: 'Адменена' + cart_locked: 'Кошык зачынены' + cart_summary: 'Кошт кошыка' categorization: 'Класіфікацыя' category: 'Катэгорыя' change_your_password: 'Змяніць пароль' @@ -59,6 +67,7 @@ sylius: confirmation: 'Пацверджанне' confirmation_title: 'Пацверджанне' contain_variants: 'Змясціць варыянты' + content: 'Змест' countries: 'Краіны' country: 'Краіна' country_details: 'Дэталі краіны' @@ -71,6 +80,7 @@ sylius: create_locale: 'Стварыць лакацыю' create_new_coupon: 'Стварыць новы купон' create_new_page: 'Стварыць новую старонку' + create_option: 'Сварыць опцыю' create_order: 'Стварыць замову' create_payment: 'Стварыць плацёж' create_payment_method: 'Стварыць метад аплаты' @@ -83,6 +93,7 @@ sylius: create_taxon: 'Стварыць класіфікацыю' create_variant: 'Стварыць варыянт' create_zone: 'Стварыць зону' + created: 'Створаны' created_at: 'Сворана ў' creation_time: 'Час стварэння' currencies: 'Валюты' @@ -98,6 +109,7 @@ sylius: date: 'Дата' datetime: 'Дата і час' default_billing_address: 'Галоўны адрас для аплаты' + default_currency: 'Галоўная валюта' default_locale: 'Мова па змоўчанні' default_shipping_address: 'Галоўны адрас для дастаўкі' delete: 'Выдаліць' @@ -110,6 +122,8 @@ sylius: edit_your_personal_information: 'Рэдагаваць асабістыя звесткі' editing_country: 'Рэдагаванне краіны' editing_coupon: 'Рэдагаванне купону' + editing_exchange_rate: 'Рэдагаванне валютнага курса' + editing_option: 'Рэдагаванне опцыі' editing_order: 'Рэдагаванне замовы' editing_payment: 'Рэдагаванне плацяжу' editing_payment_method: 'Рэдагаванне метаду аплаты' @@ -126,10 +140,13 @@ sylius: email: 'Email' enabled: 'Уключана' ends_at: 'Канец' + equal: 'Роўна' error: 'Памылка' exchange_rate: 'Абменны курс' + exchange_rates: 'Курсы валют' existing_customer: 'Існуючы пакупнік' failed: 'Памылка' + filter: 'Фільтр' first_name: 'Імя' from: 'З' fulfill: 'Выканаць' @@ -142,6 +159,7 @@ sylius: generating_coupons: 'Купоны генеруюцца' grand_total: 'Усяго' hide_deleted: 'Схаваць выдаленае' + history: 'Гісторыя' home: 'На галоўную' hostname: 'Імя хаста' id: 'ID' @@ -166,7 +184,9 @@ sylius: lastname: 'Прозвішча' latest_orders: 'Апошнія замовы' list_coupons: 'Стварыць спіс купонаў' + locale: 'Лакалізацыя' locales: 'Месцы размяшчэння' + logged_at: 'Увайшоў праз' login: 'Увайсці' login_button: 'Увайсці' logout: 'Выйсці' @@ -190,14 +210,16 @@ sylius: modified: 'Мадыфікавана' my_account: 'Мой рахунак' n_a: 'Няма адказу' - name: 'Імя' + name: 'Назва' new: 'Новы' new_country: 'Новая краіна' + new_exchange_rate: 'Новы абменны курс' new_order: 'Новая замова' new_password: 'Новы пароль' new_payment: 'Новы плацёж' new_payment_method: 'Новы метад аплаты' new_product: 'Новы тавар' + new_product_option: 'Опцыя новага тавара' new_product_variant: 'Варыянт новага тавара' new_promotion: 'Новая прамоцыя' new_shipping_category: 'Новая катэгорыя дастаўкі' @@ -228,6 +250,7 @@ sylius: order_item_product: 'Тавар' order_summary: 'Апісанне замовы' order_value: 'кошт замовы' + ordered: 'Замоўлена' orders: 'Замовы' out_of_stock: 'Няма на складзе' overview_of_your_store: 'Аглядзець сваю краму' @@ -244,7 +267,8 @@ sylius: phone_number: 'Нумар тэлефону' place_order: 'Размесціць замову' placed_at: 'Размешчана' - postcode: 'Індэкс' + postcode: 'Паштовы код' + position: 'Пазіцыя' presentation: 'Выгляд' previous: 'Папярэдне' price: 'Кошт' @@ -253,6 +277,8 @@ sylius: product: 'Тавар' product_association_type_index: 'Тып узаемасувязі' product_details_viewing_product_product: 'Дэталі тавара Прагляд тавара "%product%"' + product_options: 'Опцыя тавара' + product_reviews: 'Агляды прадуктаў' products: 'Прадукты' products_categorized_as_name: 'Тавары, катэгарызаваныя як "%name%"' products_categorized_under_taxon_taxon: 'Тавары з раздзелу "%taxon%" taxon' @@ -261,8 +287,11 @@ sylius: promotion_details: 'Дэталі прамоцыі' promotion_total: 'Агульная зніжка' promotions: 'Прасоўванні' + properties: 'Характарыстыкі' province: 'Вобласць (рэгіён)' provinces: 'Вобласці' + qty: 'Колькасць' + quantity: 'Колькасць' ready: 'Гатова' recent_orders: 'Нядаўнія замовы' recent_users: 'Нядаўнія карыстальнікі' @@ -289,6 +318,7 @@ sylius: shipment_state: 'Статус дастаўкі' shipments: 'Дастаўка' shipped: 'Дастаўлена' + shipping: 'Дастаўка' shipping_address: 'Адрас дастаўкі' shipping_categories: 'Катэгорыі дастаўкі' shipping_category: 'Катэгорыя дастаўкі' @@ -308,6 +338,9 @@ sylius: state: 'Статус' street: 'Вуліца' success: 'Поспех' + sylius_logo: 'Sylius' + tax: 'Падатак' + tax_categories: 'Катэгорыі падаткаў' tax_category: 'Катэгорыя падатку' tax_rate_details: 'Дэталі стаўкі падатку' tax_rates: 'Памеры падаткаў' @@ -315,12 +348,14 @@ sylius: taxation_categories: 'Катэгорыі падаткаў' taxation_settings: 'Падатковыя налады' taxes: 'Падаткі' + taxons: 'Катэгорыі' text: 'Тэкст' textarea: 'Тэкставая вобласць' theme: 'Тэма' there_are_no_images_for_this_product: 'Для гэтага тавару няма выяваў' there_are_no_options_for_this_product: 'Для гэтага тавару няма опцый' there_are_no_taxons_for_this_product: 'Гэты тавар не абкладаецца падаткам' + this_months_statistics: 'Статыстыка за бягучы месяц' title: 'Назва' to: 'Да' total: 'Агулам' @@ -340,6 +375,7 @@ sylius: username: 'Юзернэйм' users_list_of_all_users_registered_in_store: 'КарыстальнікіСпіс усіх карыстальнікаў у краме' value: 'Значэнне' + values: 'Значэнне' variant: 'Варыянт' variant_selection_method: 'Метад выбару варыянта' view_more: 'Глядзець болей' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.bg.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.bg.yml index 080e0fcdf4f..08338a716e7 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.bg.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.bg.yml @@ -41,7 +41,7 @@ sylius: add_province: 'Добави провинция' add_rule: 'Добавяне на правило' add_to_cart: 'Добави в количката' - add_value: 'Добавяне на стойност' + add_value: 'Добави стойност' add_your_review: 'Добави отзив' adding_new_customer_groups: 'Добави нова група клиенти' adding_new_email: 'Добави нов имейл' @@ -108,7 +108,7 @@ sylius: category_requirements: 'Изисквания за категория' change_address: 'Промени адреса' change_file: 'Промени файла' - change_password: 'Промени паролата' + change_password: 'Промяна на паролата' change_payment_method: 'Промени метод на плащане' change_position: 'Промени позицията' change_shipping_method: 'Промени метода на доставка' @@ -150,7 +150,7 @@ sylius: countries: 'Страни' country: 'Държава' country_details: 'Държави детайли' - coupon: 'Талон' + coupon: 'Ваучер' coupon_based: 'Базирано на промоционални талони' coupons: 'Талони' create: 'Създай' @@ -322,7 +322,7 @@ sylius: enter_your_code: 'Въведете вашия код' equal: 'Равно' error: 'Грешка' - exchange_rate: 'Валутен курс' + exchange_rate: 'Обменен курс' exchange_rates: 'Валутни курсове' exclusive: 'Изключително' existing_customer: 'Съществуващ клиент' @@ -566,7 +566,7 @@ sylius: order_comments: 'Коментари към поръчката' order_confirmation_name: 'Потвърждение на поръчката' order_details: 'Детайлите за вашата поръчка' - order_history: 'История на поръчката' + order_history: 'История на поръчките' order_item_product: 'Артикул' order_state: 'Състояние на поръчката' order_summary: 'Информация за поръчка' @@ -583,7 +583,7 @@ sylius: page: 'Страница' pages: 'Страници' paid: 'Платено' - parent: 'Родител' + parent: 'Източник' partially_paid: 'Частично платено' partially_shipped: 'Частично изпратена' password: 'Парола' @@ -720,7 +720,7 @@ sylius: shipping_address: 'Адрес за доставка' shipping_and_payment_methods: 'Доставка и начини на плащане' shipping_categories: 'Категории за доставка' - shipping_category: 'Категория за доставка' + shipping_category: 'Категория за доставки' shipping_address_changes_history: 'История на промените в адреса за доставка' shipping_charges: 'Такса за доставка' shipping_method: 'Метод на доставка' @@ -743,7 +743,7 @@ sylius: sign_out: 'Изход' simple_blocks: 'Опростени блокове' simple_product: 'Опростен продукт' - sku: 'Референтер номер' + sku: 'Код' slideshow: 'Слайдшоу' slideshow_blocks: 'Слайдшоу блокове' sort: 'Сортиране' @@ -775,7 +775,7 @@ sylius: taxation_settings: 'Настройки на данъчно облагане' taxes: 'Такси' taxonomy: 'Класификации' - taxons: 'Класификации' + taxons: 'Категории' terms_and_conditions: 'Правила и условия за ползване' text: 'Текст' textarea: 'Поле за текст' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ca.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ca.yml index 1e1ed0aecce..b517361c3d3 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ca.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ca.yml @@ -13,8 +13,14 @@ sylius: add_province: 'Afegeix una província' add_to_cart: 'Afegir a la cistella' administration_dashboard: 'Quadre de comandament' + admin_users: 'Administradors' + all: 'Totes' all_your_addresses: 'Totes les teves adreces' + amount: 'Total' + association_types: 'Tipus d''Associació' + attributes: 'Atributs' back: 'Enrera' + base_currency: 'Moneda base' billing_address: 'Adreça de facturació' body: 'Cos' cancelled: 'Cancel·lat' @@ -24,6 +30,8 @@ sylius: code: 'Codi' company: 'Empresa' completed: 'Completat' + configuration: 'Configuració' + countries: 'Països' country: 'País' coupon: 'Cupó' create_a_new_address: 'Crea una nova adreça' @@ -33,6 +41,7 @@ sylius: customer: 'Client' customers: 'Clients' default_billing_address: 'Adreça de facturació per defecte' + default_currency: 'Moneda predeterminada' default_locale: 'Idioma per defecte' default_shipping_address: 'Adreça d''enviament per defecte' delete: 'Suprimir' @@ -41,6 +50,8 @@ sylius: edit_my_address: 'Editar la meva adreça' email: 'Correu electrònic' enabled: 'Activat' + error: 'Error' + exchange_rates: 'Tipus de canvi' failed: 'S''ha produït un error' first_name: 'Nom' from: 'Des de' @@ -50,11 +61,14 @@ sylius: image: 'Imatge' images: 'Imatges' information: 'Informació' + inventory: 'Inventari' + inventory_index: 'Inventari' invoice: 'Factura' last_name: 'Cognoms' last_week_orders: 'Comandes de la setmana passada' last_week_revenue: 'Ingressos de la setmana passada' lastname: 'Cognoms' + locale: 'Locale' locales: 'Locals' marketing: 'Màrqueting' members: 'Membres' @@ -67,6 +81,7 @@ sylius: no_default_shipping_address: 'Cap adreça d''enviament per defecte' number: 'Nombre' number_of_orders: 'Número de comandes' + options: 'Opcions' order_details: 'Detalls de la teva comanda' order_value: 'Valor de la comanda' orders: 'Comandes' @@ -78,14 +93,18 @@ sylius: phone_number: 'Telèfon' placed_at: 'Situat a' postcode: 'Codi postal' + position: 'Posició' presentation: 'Presentació' price: 'Preu' processing: 'Processant' + product: 'Producte' product_association_type_index: 'Tipus d''Associació' + product_reviews: 'Ressenyes de productes' products: 'Productes' promotions: 'Promocions' province: 'Província' provinces: 'Províncies' + quantity: 'Quantitat' refunded: 'Reemborsat' roles: 'Rols' sales: 'Vendes' @@ -94,6 +113,7 @@ sylius: search: 'Cerca' set_as_default_billing_address: 'Estableix com adreça de facturació per defecte' set_as_default_shipping_address: 'Estableix com adreça d''enviament per defecte' + shipping: 'Lliurament' shipping_address: 'Adreça d''enviament' shipping_categories: 'Categories d''enviament' shipping_category: 'Categoria d''enviament' @@ -101,10 +121,12 @@ sylius: sku: 'SKU' street: 'Carrer' success: 'Realitzat amb èxit' + tax: 'Impostos' tax_category: 'Categoria d''impost' theme: 'Tema' title: 'Títol' to: 'A' + total: 'Total' tracking_number: 'Número de seguiment' type: 'Tipus' unit_price: 'Preu per unitat' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.cs.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.cs.yml index 6a57db3c9bc..10964376c49 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.cs.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.cs.yml @@ -41,7 +41,7 @@ sylius: add_province: 'Přidat provincii' add_rule: 'Přidat pravidlo' add_to_cart: 'Přidat do košíku' - add_value: 'Přidání hodnoty' + add_value: 'Přidat hodnotu' add_your_review: 'Přidejte vaši recenzi' adding_new_customer_groups: 'Přidání nové skupiny zákazníků' adding_new_email: 'Přidání nového e-mailu' @@ -752,8 +752,8 @@ sylius: start_date: 'Datum zahájení' starts_at: 'Začíná' starts_with: 'Začíná na' - state: 'Stav' - status: 'Status' + state: 'Stát' + status: 'Stav' street: 'Ulice' string_blocks: 'Řetězcové bloky' subject: 'Předmět' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.da.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.da.yml index c38df430cf8..8056536fe85 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.da.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.da.yml @@ -95,8 +95,11 @@ sylius: calculator: 'Beregner' cancel: 'Anuller' cancelled: 'Annulleret' + cart_locked: 'Indkøbskurv låst' + cart_summary: 'Indkøbskurv oversigt' categorization: 'Kategorisering' category: 'Kategori' + change_password: 'Skift adgangskode' change_your_password: 'Ændre din adgangskode' channels: 'Kanaler' checkbox: 'Markeringsfelt' @@ -113,6 +116,7 @@ sylius: confirmation: 'Bekræftelse' confirmation_title: 'Bekræftelse' contain_variants: 'Indeholder varianter' + content: 'Indhold' countries: 'Lande' country: 'Land' country_details: 'Lande detaljer' @@ -125,6 +129,7 @@ sylius: create_locale: 'Opret landestandard' create_new_coupon: 'Opret ny kupon' create_new_page: 'Opret ny side' + create_option: 'Opret indstilling' create_order: 'Opret ordre' create_payment: 'Opret betaling' create_payment_method: 'Oprette betalingsmetode' @@ -137,6 +142,7 @@ sylius: create_taxon: 'Opret taksionomisk gruppe' create_variant: 'Opret variant' create_zone: 'Opret zone' + created: 'Oprettet' created_at: 'Oprettet den' creation_time: 'Oprettelsestidspunkt' currencies: 'Valutaer' @@ -148,9 +154,11 @@ sylius: customer: 'Kunde' customers: 'Kunder' dashboard: 'Kontrolpanel' + data: 'Data' date: 'Dato' datetime: 'Datotid' default_billing_address: 'Standard betalingsadresse' + default_currency: 'Standard valuta' default_locale: 'Standardlokalisering' default_shipping_address: 'Standard leveringsadresse' delete: 'Slet' @@ -163,6 +171,8 @@ sylius: edit_your_personal_information: 'Redigere dine personlige oplysninger' editing_country: 'Redigering af land' editing_coupon: 'Rediger kupon' + editing_exchange_rate: 'Redigering valutakurs' + editing_option: 'Redigerer egenskab' editing_order: 'Redigering af ordre' editing_payment: 'Redigerer betaling' editing_payment_method: 'Redigering betalingsmetode' @@ -180,11 +190,16 @@ sylius: enabled: 'Aktiveret' ends_at: 'Slutter den' enjoy_all_the_features_that_are_available_on_your_personal_space_to_view_track_and_manage_all_your_data: 'Nyd alle de funktioner som er tilgængelige på din personlige oversigt, til at se, spore og håndtere al din data' + equal: 'Lige' error: 'Fejl' exchange_rate: 'Vekselkurs' + exchange_rates: 'Valutakurser' existing_customer: 'Eksisterende kunde' + expires_at: 'Udløber' extra_notes: 'Ekstra noter' failed: 'Mislykkedes' + female: 'Kvinde' + filter: 'Filter' first_name: 'Fornavn' from: 'Fra' fulfill: 'Udfør' @@ -197,6 +212,7 @@ sylius: generating_coupons: 'Genererer kuponer' grand_total: 'Pris i alt' hide_deleted: 'Skjul slettede' + history: 'Historie' home: 'Hjem' hostname: 'Værtsnavn' id: 'ID' @@ -221,11 +237,14 @@ sylius: lastname: 'Efternavn' latest_orders: 'Seneste ordrer' list_coupons: 'Kupon liste' + locale: 'Landekode' locales: 'Landekoder' + logged_at: 'Logget på' login: 'Log ind' login_button: 'Log ind' logout: 'Log af' main_taxon: 'Hovedtaksonomi' + male: 'Mand' manage: 'Administrer' manage_countries: 'Administrer lande' manage_options: 'Administrer egenskaber' @@ -245,14 +264,17 @@ sylius: method: 'Metode' modified: 'Ændret' my_account: 'Min konto' + n_a: 'N/A' name: 'Navn' new: 'Ny' new_country: 'Nyt land' + new_exchange_rate: 'Ny valutakurs' new_order: 'Ny ordre' new_password: 'Ny adgangskode' new_payment: 'Ny betaling' new_payment_method: 'Ny betalingsmetode' new_product: 'Nyt produkt' + new_product_option: 'Ny produkt egenskab' new_product_variant: 'Nye produktvariant' new_promotion: 'Ny kampagne' new_shipping_category: 'Ny shipping kategori' @@ -280,9 +302,11 @@ sylius: options: 'Indstillinger' order: 'Ordre' order_details: 'Detaljer for din ordre' + order_history: 'Ordrehistorik' order_item_product: 'Varen' order_summary: 'Ordre resume' order_value: 'Ordreværdi' + ordered: 'Bestilt' orders: 'Ordrer' out_of_stock: 'Udsolgt' overview_of_your_store: 'Oversigt over din butik' @@ -296,20 +320,24 @@ sylius: payments: 'Betalinger' pending: 'Afventer' percent: 'Procent' + personal_information: 'Personlige oplysninger' phone_number: 'Telefonnummer' place_order: 'Afgiv ordre' placed_at: 'Placeret hos' postcode: 'Postnummer' - position: 'Position' + position: 'Placering' presentation: 'Præsentation' previous: 'Forrige' price: 'Pris' + priority: 'Prioritet' processing: 'Behandler' product: 'Produkt' product_association_index: 'Tilknytning' product_association_type_index: 'Associeringstype' product_details_viewing_product_product: 'Produkt detaljer Viser produkt "%product%"' - products: 'Produkter' + product_options: 'Produkt egenskaber' + product_reviews: 'Produktanmeldelser' + products: 'Varer' products_categorized_as_name: 'Produkter kategoriseres som "%name%"' products_categorized_under_taxon_taxon: 'Produkter kategoriseret under "%taxon%" taxon' products_index_of_all_products_in_your_store: 'Produkter katalog af alle produkter i din butik' @@ -317,9 +345,13 @@ sylius: promotion_details: 'Kampagne detaljer' promotion_total: 'Rabat total' promotions: 'Kampagner' + properties: 'Egenskaber' province: 'Provins' provinces: 'Provinser' + qty: 'Antal' + quantity: 'Mængde' rating: 'Vurdering' + ratio: 'Kurs' ready: 'Klar' recent_orders: 'De seneste ordrer' recent_users: 'De seneste brugere' @@ -348,6 +380,7 @@ sylius: shipment_state: 'Forsendelsesstatus' shipments: 'Forsendelser' shipped: 'Afsendt' + shipping: 'Forsendelse' shipping_address: 'Leveringsadresse' shipping_categories: 'Forsendelseskategorier' shipping_category: 'Fragt kategori' @@ -363,11 +396,16 @@ sylius: sign_in_to_the_store_or_create_new_account: 'Log ind eller Opret ny konto' sku: 'SKU' slideshow: 'Slideshow' + source_currency: 'Fra valuta' starts_at: 'Starter ved' state: 'Status' status: 'Status' street: 'Gade' success: 'Succes' + sylius_logo: 'Sylius' + target_currency: 'Til valuta' + tax: 'Skat' + tax_categories: 'Momskategorier' tax_category: 'Momskategori' tax_rate_details: 'Moms sats detaljer' tax_rates: 'Momssatser' @@ -375,6 +413,7 @@ sylius: taxation_categories: 'Moms kategorier' taxation_settings: 'Indstillinger for beskatning' taxes: 'Moms' + taxonomy: 'Taksonomi' taxons: 'Kategorier' text: 'Tekst' textarea: 'Tekstområde' @@ -386,6 +425,7 @@ sylius: title: 'Titel' to: 'Til' topic: 'Emne' + total: 'Total' total_orders: 'Totale ordrer' total_qty: 'Samlet antal' total_registrations: 'Totale registreringer' @@ -396,11 +436,13 @@ sylius: unit_price: 'Enhedspris' unknown: 'Ukendt' updating_tax_rate: 'Opdatering af moms sats' + usage_limit: 'Brugsgrænse' used: 'Brugt' user_details: 'Bruger detaljer' username: 'Brugernavn' users_list_of_all_users_registered_in_store: 'Brugere liste over alle brugere registreret i butikken' value: 'Værdi' + values: 'Værdier' variant: 'Variant' variant_selection_method: 'Variant udvælgelsesmetode' view_more: 'Se mere' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.de.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.de.yml index 01cff336bd7..ea768237ee6 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.de.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.de.yml @@ -58,7 +58,7 @@ sylius: admin_users: 'Administratoren' all: 'Alle' all_your_addresses: 'Alle Adressen' - amount: 'Anzahl' + amount: 'Steuersatz' an_error_occurred: 'Es ist ein Fehler aufgetreten' api: 'API' apply_coupon: 'Gutscheincode einlösen' @@ -373,7 +373,7 @@ sylius: identifier: 'Kennung' if_you_have_an_account_sign_in_with_your_email_address: 'Wenn du bereits einen Account besitzt, melde dich bitte mit deiner E-Mail Adresse an.' image: 'Foto' - images: 'Fotos' + images: 'Bilder' imagine_blocks: 'Bild Blöcke' impersonate: 'Benutzerübernahme' in: 'In' @@ -566,7 +566,7 @@ sylius: order_comments: 'Kommentar' order_confirmation_name: 'Bestellbestätigung' order_details: 'Bestelldetails' - order_history: 'Bestellungsverlauf' + order_history: 'Bestellverlauf' order_item_product: 'Produkt' order_state: 'Bestellstatus' order_summary: 'Bestellübersicht' @@ -619,7 +619,7 @@ sylius: privacy_policy: 'Datenschutzbestimmungen' process_your_orders: 'Bearbeiten Sie Ihre Bestellungen' processing: 'Wird verarbeitet' - product: 'Verkäuflich' + product: 'Produkt' product_association_index: 'Verbindung' product_association_type_index: 'Assoziationstyp' product_association_types: 'Produkt-Beziehungsvorlagen' @@ -725,7 +725,7 @@ sylius: shipping_charges: 'Versandkosten' shipping_method: 'Lieferverfahren' shipping_method_details: 'Versandartenetails' - shipping_methods: 'Versandmethoden' + shipping_methods: 'Versandarten' shipping_state: 'Versandstatus' shipping_total: 'Versandkosten gesamt' shop_by: 'Shop von' @@ -902,4 +902,4 @@ sylius: zone_consisting_of_other_zones: 'Zur Zone gehörende andere Zonen' zone_consisting_of_provinces: 'Zur Zone gehörende Ortschaften' zone_details: 'Gebietedetails' - zones: 'Versandgebiete' + zones: 'Gebiete' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.de_CH.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.de_CH.yml index 84aa8422e30..e3d351c63d7 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.de_CH.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.de_CH.yml @@ -58,7 +58,7 @@ sylius: admin_users: 'Administratoren' all: 'Alle' all_your_addresses: 'Alle Adressen' - amount: 'Anzahl' + amount: 'Steuersatz' an_error_occurred: 'Es ist ein Fehler aufgetreten' api: 'API' apply_coupon: 'Gutscheincode einlösen' @@ -68,7 +68,7 @@ sylius: association: 'Verbindung' association_types: 'Verbindungstypen' associations: 'Verbindungen' - assortment: 'Kollektionen' + assortment: 'Sortiment' attributes: 'Attribute' author: 'Autor' availability: 'Verfügbarkeit' @@ -96,14 +96,14 @@ sylius: browse_your_orders_from_the_past: 'Bestellungen aus der Vergangenheit durchsuchen' build: 'Erstellen' by_position: 'Nach Position' - calculator: 'Rechner' + calculator: 'Steuersatzrechner' call_us: 'Rufen Sie uns an!' cancel: 'Abbrechen' cancelled: 'Abgebrochen' cart: 'Warenkorb' cart_locked: 'Warenkorb gesperrt' cart_summary: 'Warenkorb-Übersicht' - categorization: 'Kategorisierung' + categorization: 'Produktkategorisierung' category: 'Kategorie' category_requirements: 'Kategorievoraussetzungen' change_address: 'Adresse ändern' @@ -206,7 +206,7 @@ sylius: current_orders: 'Aktuelle Bestellungen' current_password: 'Aktuelles Passwort' current_promotions: 'Aktuelle Aktionen' - current_stock: 'Auf Lager' + current_stock: 'Aktueller Lagerbestand' customer: 'Kunde' customer_can_login_to_the_store: 'Kunde darf sich im Shop anmelden?' customer_care: 'Kundendienst' @@ -373,7 +373,7 @@ sylius: identifier: 'Kennung' if_you_have_an_account_sign_in_with_your_email_address: 'Wenn du bereits einen Account besitzt, melde dich bitte mit deiner E-Mail Adresse an.' image: 'Bild' - images: 'Fotos' + images: 'Bilder' imagine_blocks: 'Bild Blöcke' impersonate: 'Benutzerübernahme' in: 'In' @@ -416,8 +416,8 @@ sylius: locked: 'Gesperrt' logged_at: 'Aufgezeichnet am' logged_in_as: 'Angemeldet als %username%' - login: 'Anmelden' - login_button: 'Anmelden' + login: 'Login' + login_button: 'Login' login_sylius_store: 'Login Sylius Webshop' logout: 'Abmelden' main_taxon: 'Haupt-Produktgruppe' @@ -443,7 +443,7 @@ sylius: manage_inventory: 'Lagerbestand verwalten' manage_languages_available_in_the_store: 'Verwaltung der verschiedene Sprachen in dem Shop' manage_metadata: 'Metadaten verwalten' - manage_options: 'Produktoptionen verwalten' + manage_options: 'Optionen verwalten' manage_orders: 'Bestellungsverwaltung' manage_payment_methods_available_to_your_customers: 'Verwaltung der Zahlungsmethoden deiner Kunden' manage_payments: 'Zahlungen verwalten' @@ -566,7 +566,7 @@ sylius: order_comments: 'Kommentar' order_confirmation_name: 'Bestellbestätigung' order_details: 'Bestelldetails' - order_history: 'Bestellungsverlauf' + order_history: 'Bestellverlauf' order_item_product: 'Produkt' order_state: 'Bestellstatus' order_summary: 'Bestellübersicht' @@ -583,7 +583,7 @@ sylius: page: 'Seite' pages: 'Seiten' paid: 'Bezahlt' - parent: 'Übergeordnet' + parent: 'Parent' partially_paid: 'Teilweise bezahlt' partially_shipped: 'Teilweise versendet' password: 'Passwort' @@ -594,7 +594,7 @@ sylius: payment_mode: 'Zahlungsweise' payment_ready_to_pay: 'Sie können jetzt Ihre Zahlung durchführen' payment_state: 'Zahlungsstatus' - payments: 'Zahlungen' + payments: 'Bezahlungen' pay: 'Zahlen' pay_again: 'Klicke auf Bezahlen um es erneut zu versuchen' pending: 'Ausstehend' @@ -619,7 +619,7 @@ sylius: privacy_policy: 'Datenschutzbestimmungen' process_your_orders: 'Bearbeiten Sie Ihre Bestellungen' processing: 'Wird verarbeitet' - product: 'Verkäuflich' + product: 'Produkt' product_association_index: 'Verbindung' product_association_type_index: 'Assoziationstyp' product_association_types: 'Produkt-Beziehungsvorlagen' @@ -695,7 +695,7 @@ sylius: save_changes: 'Änderungen speichern' save_positions: 'Positionen speichern' scope: 'Umfang' - search: 'Suche' + search: 'Suchen' search_products: 'Artikel suchen' security_settings: 'Sicherheitseinstellungen' select_address_from_book: 'Adresse aus Adressbuch auswählen' @@ -725,7 +725,7 @@ sylius: shipping_charges: 'Versandkosten' shipping_method: 'Lieferverfahren' shipping_method_details: 'Versandartenetails' - shipping_methods: 'Versandmethoden' + shipping_methods: 'Versandarten' shipping_state: 'Versandstatus' shipping_total: 'Versandkosten gesamt' shop_by: 'Shop von' @@ -752,7 +752,7 @@ sylius: start_date: 'Start–Datum' starts_at: 'Beginnt am' starts_with: 'Beginnt mit' - state: 'Versandstatus' + state: 'Bundesland' status: 'Status' street: 'Strasse / Nr.' string_blocks: 'Zeichenketten–Elemente' @@ -771,7 +771,7 @@ sylius: tax_rate_details: 'Steuersätze' tax_rates: 'Steuersätze' tax_total: 'Steuern gesamt' - taxation_categories: 'Steuergruppen' + taxation_categories: 'Steuerkategorien' taxation_settings: 'Gruppeneinstellungen' taxes: 'Steuern' taxonomy: 'Klassifizierung' @@ -902,4 +902,4 @@ sylius: zone_consisting_of_other_zones: 'Zur Zone gehörende andere Zonen' zone_consisting_of_provinces: 'Zur Zone gehörende Ortschaften' zone_details: 'Gebietedetails' - zones: 'Versandgebiete' + zones: 'Gebiete' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.el.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.el.yml index bcd4c4ceeaf..bd730f63e00 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.el.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.el.yml @@ -219,6 +219,7 @@ sylius: customize_metadata: 'Προσαρμογή μεταδεδομένων' customize_products_metadata: 'Προσαρμογή μεταδεδομένων προϊόντων' customizing_metadata: 'Προσαρμογή μεταδεδομένων' + dashboard: 'Dashboard' data: 'Δεδομένα' date: 'Ημερομηνία' datetime: 'Ημερομηνία και ώρα' @@ -477,18 +478,26 @@ sylius: position: 'Θέση' presentation: 'Παρουσίαση' price: 'Τιμή' + priority: 'Προτεραιότητα' processing: 'Σε εξέλιξη' product: 'Προϊόν' product_association_index: 'Συσχετισμός' product_association_type_index: 'Τύπος συσχετισμού' + product_reviews: 'Κριτικές Προϊόντος' products: 'Προϊόντα' promotion_coupons: 'Κουπόνια' promotion_total: 'Σύνολο προώθησης' promotions: 'Προσφορές' + properties: 'Ιδιότητες' province: 'Επαρχία' provinces: 'Επαρχίες' + qty: 'Ποσότητα' + quantity: 'Ποσότητα' + ratio: 'Αναλογία' ready: 'Έτοιμα' refunded: 'Επιστροφή χρημάτων' + register: 'Καταχώρηση' + register_button: 'Καταχώρηση' remember_me: 'Να με θυμάσαι' retail_price: 'Τιμή' returned: 'Επεστράφησαν' @@ -502,6 +511,7 @@ sylius: search: 'Αναζήτηση' shipments: 'Αποστολές' shipped: 'Αποστάλθηκαν' + shipping: 'Αποστολή' shipping_address: 'Διεύθυνση αποστολής' shipping_categories: 'Κατηγορίες αποστολής' shipping_category: 'Κατηγορία αποστολής' @@ -512,14 +522,18 @@ sylius: shipping_total: 'Σύνολο εξόδων αποστολής' sign_in_to_the_store_or_create_new_account: 'Είσοδος στο κατάστημα ή να δημιουργήσετε νέο λογαριασμό' sku: 'ΚΩΔΙΚΟΣ ΠΡΟΪΟΝΤΟΣ' + source_currency: 'Νόμισμα προέλευσης' starts_at: 'Αρχίζει με' state: 'Νομός' street: 'Οδός' success: 'Επιτυχία' + target_currency: 'Νόμισμα προορισμού' + tax: 'Φόρος' tax_category: 'Φορολογική κατηγορία' tax_rates: 'Φορολογικοί συντελεστές' tax_total: 'Σύνολο φόρων' taxes: 'Φόροι' + taxonomy: 'Ταξινομία' taxons: 'Ταξινομικές μονάδες' text: 'Κείμενο' textarea: 'Περιοχή κειμένου' @@ -534,6 +548,7 @@ sylius: usage_limit: 'Όριο χρήσης' username: 'Όνομα χρήστη' value: 'Αξία' + values: 'Τιμές' variant: 'Παραλλαγή' variant_selection_method: 'Μέθοδος επιλογής παραλλαγής' void: 'Κενό' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.es.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.es.yml index f4e0e538dcc..030dbde747f 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.es.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.es.yml @@ -4,8 +4,8 @@ sylius: form: login: - username: 'Nombre de usuario' - password: 'Contraseña' + username: 'Nombre de usuario de API' + password: 'Contraseña de API' remember_me: 'Recordarme' option: name: 'Nombre' @@ -308,15 +308,15 @@ sylius: editing_user: 'Editando usuario' editing_variant: 'Editando variante' editing_zone: 'Editando zona' - email: 'Correo electrónico' + email: 'Dirección de correo electrónico' email_templates: 'Plantillas de correo electrónico' email_verified: 'Correo electrónico verificado' emails: 'Correos electrónicos' empty: 'Vacío' enable: 'Activar' - enabled: 'Activado' + enabled: '¿Activado?' end_date: 'Fecha fin' - ends_at: 'Termina el' + ends_at: 'Fecha de fin' ends_with: 'Termina en' enjoy_all_the_features_that_are_available_on_your_personal_space_to_view_track_and_manage_all_your_data: 'Disfrute de todas las características disponibles en su espacio personal para examinar, controlar y gestionar todos sus datos' enter_your_code: 'Introduzca su código' @@ -558,7 +558,7 @@ sylius: oauth_provider: 'Proveedor de OAuth' oldest_first: 'Más viejos primero' on_hold: 'En espera' - options: 'Opciones' + options: 'Opciones de producto' options_matching: 'Opciones que coinciden' or: 'o' order: 'Pedido' @@ -586,11 +586,11 @@ sylius: parent: 'Padre' partially_paid: 'Parcialmente pagado' partially_shipped: 'Enviado parcialmente' - password: 'Contraseña' + password: 'Contraseña de API' payment: 'Pago' payment_details: 'Detalles de pago' payment_method: 'Modo de pago' - payment_methods: 'Métodos de pago' + payment_methods: 'Modos de pago' payment_mode: 'Modo de pago' payment_ready_to_pay: 'Ahora puede hacer el pago' payment_state: 'Estado del pago' @@ -719,13 +719,13 @@ sylius: shipping: 'Gastos de envío' shipping_address: 'Dirección de envío' shipping_and_payment_methods: 'Métodos de pago y envío' - shipping_categories: 'Categorías de envío' + shipping_categories: 'Categorías de envio' shipping_category: 'Categoría de envío' shipping_address_changes_history: 'Historial de cambios de dirección de facturación' shipping_charges: 'Gastos de envío' shipping_method: 'Método de envío' shipping_method_details: 'Detalles de método de envío' - shipping_methods: 'Métodos de envío' + shipping_methods: 'Métodos de envio' shipping_state: 'Estado del envío' shipping_total: 'Total gastos de envío' shop_by: 'Comprar por' @@ -750,7 +750,7 @@ sylius: sort_by_date: 'Ordenar por fecha' source_currency: 'Moneda origen' start_date: 'Fecha de inicio' - starts_at: 'Empieza el' + starts_at: 'Fecha de inicio' starts_with: 'Comienza por' state: 'Estado' status: 'Estado' @@ -855,11 +855,11 @@ sylius: updating_tax_rate: 'Actualizando tasa de impuesto' updating_date: 'Fecha de actualización' usage: 'Uso' - usage_limit: 'Límite de uso' + usage_limit: 'límite de uso de la promoción' use_the_contact_form_below_to_send_us_a_message: 'Utilice el formulario de contacto que se muestra a continuación para mandarnos un mensaje.' used: 'Usado' user_details: 'Detalles del usuario' - username: 'Nombre de usuario' + username: 'Nombre de usuario de API' users_list_of_all_users_registered_in_store: 'Usuarios Lista de todos los usuarios registrados en la tienda' value: 'Valor' values: 'Valores' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.et.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.et.yml index 77ab0179494..37bd94b76cb 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.et.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.et.yml @@ -8,7 +8,10 @@ sylius: ui: add_member: 'Lisa liige' add_province: 'Lisa provints' + all: 'Kõik' + base_currency: 'Baasvaluuta' body: 'Sisu' + channels: 'Kanalid' city: 'Linn' code: 'Kood' company: 'Ettevõtte' @@ -17,15 +20,20 @@ sylius: currencies: 'Valuutad' default_locale: 'Vaikimisi keel' enabled: 'Lubatud' + first_name: 'Eesnimi' from: 'Alates' id: 'ID' image: 'Pilt' + images: 'Pildid' + last_name: 'Perekonnanimi' + lastname: 'Perekonnanimi' locales: 'Keeled' members: 'Liikmed' name: 'Nimi' number: 'Number' phone_number: 'Telefoni number' postcode: 'Pistiindeks' + product: 'Toode' province: 'Provints' provinces: 'Provintsid' roles: 'Rollid' @@ -36,3 +44,4 @@ sylius: title: 'Pealkiri' to: 'Kellele' type: 'Tüüp' + zone: 'Piirkond' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.fa.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.fa.yml index e9876835c65..79b4209debe 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.fa.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.fa.yml @@ -168,6 +168,7 @@ sylius: create_user: 'ایجاد کاربر' create_variant: 'ایجاد تنوع کالا' create_zone: 'ایجاد منطقه' + created: 'ساخته شده در تاریخ' created_at: 'ایجاد شده در' creating_a_new_imagine_block: 'ایجاد بلاک عکس' creating_a_new_simple_block: 'ایجاد بلاک ساده' @@ -202,6 +203,7 @@ sylius: date: 'تاریخ' datetime: 'تاریخ و زمان' default_billing_address: 'آدرس پیش فرض صورت حساب' + default_currency: 'واحد پولی پیش‌فرض' default_locale: 'زبان پیش فرض' default_shipping_address: 'آدرس پیش فرض تحویل' delete: 'حذف' @@ -211,6 +213,7 @@ sylius: details: 'جزئیات' disable: 'غیرفعال کردن' disabled: 'غیرفعال' + display: 'نمایش در سایت؟' edit: 'ويرايش' edit_association_type: 'ویرایش نوع ارتباط' edit_channel: 'ویرایش کانال' @@ -271,10 +274,14 @@ sylius: equal: 'برابر با' error: 'خطا' exchange_rate: 'نرخ تبدیل ارز' + exchange_rates: 'نرخ تبدیل ارز' exclusive: 'یکبار مصرف' existing_customer: 'از قبل عضو هستم' + expires_at: 'انقضا در تاریخ' extra_notes: 'یادداشت های اضافی' failed: 'پرداخت ناموفق' + female: 'خانم' + filter: 'فیلتر' first_name: 'نام' from: 'از تاریخ' fulfill: 'ارسال' @@ -291,6 +298,7 @@ sylius: guest_customer: 'مشتری مهمان' hello_name: 'سلام %name%' hide_deleted: 'مخفی کردن آیتم های حذف شده' + history: 'پيشينه' home: 'خانه' hostname: 'نام میزبان' id: 'شناسه' @@ -315,6 +323,7 @@ sylius: item: 'کالا' items: 'آیتم ها' items_total: 'جمع قیمت کالا' + label: 'عنوان منو' last_login: 'آخرین ورود' last_name: 'نام خانوادگی' last_update: 'آخرین به روز رسانی' @@ -334,9 +343,11 @@ sylius: login_sylius_store: 'ورود فروشگاه سایلیوس ' logout: 'خروج' main_taxon: 'طبقه بندی اصلی' + male: 'آقا' manage: 'مدیریت' manage_adjustments: 'مدیریت سایر هزینه ها' manage_attributes: 'مدیریت قابلیت ها' + manage_attributes_of_your_products: 'مدیریت ویژگی های محصولات خود' manage_channels: 'مدیریت کانال ها' manage_countries: 'مدیریت کشورها' manage_currencies_available_in_the_store: 'مدیریت واحدهای پولی موجود در فروشگاه' @@ -409,6 +420,7 @@ sylius: newest_products: 'جدیدترین کالاها' next: 'بعدی' no_label: 'خير' + no_account: 'ثبت نام کنید' no_association_types_to_display: 'هیچ نوع ارتباط تعریف شده ای وجود ندارد' no_comment: 'بدون نظر' no_default_billing_address: 'آدرس پیش فرضی برای صورت حساب تعریف نشده' @@ -440,6 +452,7 @@ sylius: order_comments: 'نظرات سفارش' order_confirmation_name: 'تایید سفارش' order_details: 'جزئیات سفارش شما' + order_history: 'تاریخچه سفارشات' order_item_product: 'کالا' order_state: 'وضعیت سفارش' order_summary: 'فاکتور نهایی خرید' @@ -451,7 +464,7 @@ sylius: overview_of_your_store: 'نگاهی اجمالی به فروشگاه' page: 'صفحه' pages: 'صفحات' - parent: 'رده پدر' + parent: 'شاخه بالادستی' password: 'کلمه عبور' payment: 'پرداخت' payment_details: 'جزئیات پرداخت' @@ -464,10 +477,12 @@ sylius: pending: 'پرداخت منتظر تایید' percent: 'درصدی' permissions: 'دسترسی ها' + personal_information: 'اطلاعات شخصی' phone_number: 'شماره تلفن' place_order: 'نهایی کردن خرید' placed_at: 'تاریخ ثبت سفارش' postcode: 'کد پستی' + position: 'جایگاه' powered_by: 'قدرت گرفته از' presentation: 'عنوان برای مشتری' previous: 'قبلی' @@ -498,9 +513,12 @@ sylius: promotions: 'فروش های ویژه' province: 'استان' provinces: 'استان ها' + qty: 'تعداد' qty_max: 'حداکثر حجم' qty_min: 'حداقل حجم' + quantity: 'تعداد' rating: 'امتیازدهی' + ratio: 'نسبت' ready: 'آماده ارسال' recent_customers: 'مشتریان اخیر' recent_orders: 'سفارش های اخیر' @@ -544,6 +562,7 @@ sylius: shipment_state: 'وضعیت ارسال' shipments: 'ارسال محصول' shipped: 'ارسال شده' + shipping: 'حمل' shipping_address: 'آدرس تحویل سفارش' shipping_categories: 'انواع ارسال' shipping_category: 'نوع ارسال' @@ -566,6 +585,7 @@ sylius: sku: 'کد محصول' slideshow: 'اسلایدشو' slideshow_blocks: 'بلاک های اسلایدشو' + source_currency: 'ارز مبدا' start_date: 'تاریخ شروع' starts_at: 'شروع از' starts_with: 'شروع می شود با' @@ -578,6 +598,9 @@ sylius: summary: 'خلاصه' support: 'پشتیبانی' sylius_logo: 'Sylius' + target_currency: 'ارز مقصد' + tax: 'مالیات' + tax_categories: 'انواع مالیات' tax_category: 'نوع مالیات' tax_rate_details: 'جزئیات نرخ مالیات' tax_rates: 'نرخ های مالیات' @@ -665,6 +688,7 @@ sylius: welcome: 'خوش آمدید' welcome_to_our_store: 'به فروشگاه ما خوش آمدید' welcome_to_your_space: 'به صفحه ی شخصیتان خوش آمدید' + yes_label: 'بلی' you_are_customer_since: 'تاریخ ثبت نام در فروشگاه' you_have_no_addresses_defined: 'هیچ آدرسی در حساب شما ثبت نشده است' you_have_no_new_orders: 'سفارش جدیدی ندارید' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.fi.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.fi.yml index bb14f63bb26..ca595c7b8c4 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.fi.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.fi.yml @@ -100,6 +100,8 @@ sylius: call_us: 'Soita meille!' cancel: 'Peruuta' cancelled: 'Peruutettu' + category: 'Kategoria' + change_password: 'Vaihda salasana' channels: 'Kanavat' checkbox: 'Valintalaatikko' checkout: 'Kassa' @@ -112,11 +114,13 @@ sylius: comment: 'Kommentti' company: 'Yritys' completed: 'Valmis' + configuration: 'Asetukset' confirmation: 'Vahvistus' confirmation_title: 'Vahvistus' contact_us: 'Ota yhteyttä' contain_variants: 'Sisältää muuttujia' contains: 'Sisältää' + content: 'Sisältö' countries: 'Maat' country: 'Maa' country_details: 'Maatiedot' @@ -139,6 +143,7 @@ sylius: create_payment_method: 'Luo maksutapa' create_product: 'Luo tuote' create_promotion: 'Luo kampanja' + currencies: 'Valuutat' currency: 'Valuutta' current_password: 'Nykyinen salasana' customer: 'Asiakas' @@ -174,23 +179,41 @@ sylius: edit_shipping_address: 'Muokkaa toimitusosoitetta' edit_shipping_method: 'Muokkaa toimitustapaa' email: 'Sähköpostiosoite' + enabled: 'Aktiivinen' enjoy_all_the_features_that_are_available_on_your_personal_space_to_view_track_and_manage_all_your_data: 'Nauti omassa tilassasi käytettävissä olevista ominaisuuksista ja tarkastele, seuraa ja hallitse kaikkia tietojasi' exchange_rate: 'Vaihtokurssi' extra_notes: 'Muistiinpanot' failed: 'Epäonnistunut' + female: 'Nainen' + first_name: 'Etunimi' + id: 'Id' + label: 'Otsikko' + last_name: 'Sukunimi' + lastname: 'Sukunimi' + locale: 'Kieli' + locales: 'Alueet' + male: 'Mies' marketing: 'Markkinointi' members: 'Jäsenet' message: 'Viesti' + name: 'Nimi' new: 'Uusi' new_password: 'Uusi salasana' next: 'Seuraava' + options: 'Asetukset' + order_history: 'Tilaushistoria' orders: 'Tilaukset' parent: 'Vanhempi' + password: 'Salasana' payment_method: 'Maksutapa' payment_methods: 'Maksutavat' + payment_state: 'Maksun tila' pending: 'Odottaa' + personal_information: 'Omat tiedot' phone_number: 'Puhelinnumero' postcode: 'Postinumero' + position: 'Asema' + price: 'Hinta' pricing: 'Hinnoittelu' processing: 'Käsitellään' product_association_index: 'Yhteys' @@ -201,15 +224,21 @@ sylius: provinces: 'Maakunnat' refunded: 'Hyvitetty' remember_me: 'Muista minut' + roles: 'Roolit' sales: 'Myynnit' sales_this_month: 'Myynnit' scope: 'Alue' + search: 'Haku' + shipping_address: 'Toimitusosoite' shipping_methods: 'Toimitustavat' street: 'Katuosoite' + taxons: 'Veroryhmät' + title: 'Otsikko' topic: 'Aihe' translations: 'Käännökset' type: 'Tyyppi' unknown: 'Tuntematon' username: 'Käyttäjänimi' void: 'Mitätön' + zone: 'Vyöhyke' zones: 'Vyöhykkeet' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.fr.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.fr.yml index 5829f6cccae..6a91f53dddc 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.fr.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.fr.yml @@ -4,11 +4,7 @@ sylius: form: login: - username: 'Identifiant' - password: 'Mot de passe' remember_me: 'Rester connecté' - option: - name: 'Nom' notes: 'Notes supplémentaires' variant: tracked: 'Suivi des stocks' @@ -22,26 +18,18 @@ sylius: account_credentials: 'Informations d''identification' account_panel_outline: 'Profitez de toutes les fonctionnalités qui sont disponibles sur votre espace personnel pour visualiser, suivre et gérer toutes vos données' action: 'Action' - actions: 'Actions' - add: 'Ajouter' - add_action: 'Ajouter une action' add_address: 'Ajouter une adresse' add_association: 'Ajouter une association' add_attribute: 'Ajouter un attribut' - add_attributes: 'Ajouter des attributs' add_channel: 'Ajouter un canal' add_choice: 'Ajouter un choix' add_coupon: 'Ajouter un coupon' add_image: 'Ajouter une image' - add_member: 'Ajouter un membre' add_menu_element: 'Ajouter un élément de menu' add_new_email: 'Ajouter un nouvel email' add_new_permission: 'Ajouter une nouvelle permission' add_new_role: 'Ajouter un nouveau rôle' - add_province: 'Ajouter une région' - add_rule: 'Ajouter une règle' add_to_cart: 'Ajouter au panier' - add_value: 'Ajouter une valeur' add_your_review: 'Ajouter votre avis' adding_new_customer_groups: 'Ajout de nouveaux groupes de clients' adding_new_email: 'E-mail en cours d''ajout' @@ -58,7 +46,6 @@ sylius: admin_users: 'Administrateurs' all: 'Tous' all_your_addresses: 'Toutes vos adresses' - amount: 'Montant' an_error_occurred: 'Une erreur s''est produite' api: 'Api' apply_coupon: 'Coupon de réduction' @@ -96,7 +83,6 @@ sylius: browse_your_orders_from_the_past: 'Parcourir vos commandes passées' build: 'Construire' by_position: 'Par position' - calculator: 'Calculateur' call_us: 'Appelez-nous !' cancel: 'Annuler' cancelled: 'Annulé' @@ -104,35 +90,29 @@ sylius: cart_locked: 'Panier verrouillé' cart_summary: 'Détail du panier' categorization: 'Catégorisation' - category: 'Catégorie' category_requirements: 'Exigences de la catégorie' change_address: 'Modifier l''adresse' change_file: 'Changer le fichier' - change_password: 'Changer votre mot de passe' change_payment_method: 'Modifier le mode de paiement' change_position: 'Modifier la position' change_shipping_method: 'Modifier le mode de livraison' change_your_password: 'Modifier votre mot de passe' changes: 'Modifications' channel: 'Canal' - channels: 'Canaux' charges_and_taxes: 'Taxes et frais' cheapest_first: 'Le moins cher en premier' - checkbox: 'Case à cocher' checking_out_as: 'Payer en tant que' checkout: 'Paiement' choose_channel: 'Choisir un canal' choose_file: 'Choisir un fichier' choose_how_your_goods_will_be_delivered: 'Choisir comment vos marchandises vont être livrées' choose_how_you_will_pay: 'Choisir comment vous allez payer' - city: 'Ville' clear: 'Réinitialiser' clear_cart: 'Vider le panier' clear_filters: 'Réinitialiser les filtres' code: 'Code' color: 'Couleur' comment: 'Commentaire' - company: 'Société' complete: 'Terminer' completed: 'Complété' configurable_product: 'Produit configurable' @@ -148,10 +128,8 @@ sylius: contains: 'Contient' content: 'Contenu' countries: 'Pays' - country: 'Pays' country_details: 'Détails du pays' coupon: 'Code promo' - coupon_based: 'Comprend des coupons' coupons: 'Coupons de réduction' create: 'Créer' create_a_new_address: 'Créer une nouvelle adresse' @@ -207,7 +185,6 @@ sylius: current_password: 'Mot de passe actuel' current_promotions: 'Promotions courantes' current_stock: 'Stock actuel' - customer: 'Client' customer_can_login_to_the_store: 'Peut se connecter au magasin en ligne ?' customer_care: 'Service client' customer_details: 'Informations sur le client' @@ -218,16 +195,12 @@ sylius: customer_notified: 'Client informé' customer_orders: 'Commandes client' customer_since: 'Client depuis le' - customers: 'Clients' customers_list_of_all_customers_in_store: 'Clients Liste de tous les clients de la boutique' customize_default_metadata: 'Personnaliser les méta-données par défaut' customize_metadata: 'Personnaliser les méta-données' customize_products_metadata: 'Personnaliser les méta-données du produit' customizing_metadata: 'Personnalisation des méta-données' - dashboard: 'Tableau de bord' data: 'Données' - date: 'Date' - datetime: 'Date et heure' default: 'Défaut' default_address: 'Adresse par défaut' default_billing_address: 'Adresse de facturation par défaut' @@ -314,9 +287,7 @@ sylius: emails: 'Emails' empty: 'Vide' enable: 'Activer' - enabled: 'Activé' end_date: 'Date de fin' - ends_at: 'Se termine le' ends_with: 'Se termine par' enjoy_all_the_features_that_are_available_on_your_personal_space_to_view_track_and_manage_all_your_data: 'Profitez de toutes les fonctionnalités qui sont disponibles sur votre espace personnel pour visualiser, suivre et gérer toutes vos données' enter_your_code: 'Entrez votre code' @@ -324,7 +295,6 @@ sylius: error: 'Erreur' exchange_rate: 'Taux de change' exchange_rates: 'Taux de change' - exclusive: 'Exclusif' existing_customer: 'Client existant' expiration_and_usage_limits: 'Expiration et limites d’utilisation' expires_at: 'Expire le' @@ -332,7 +302,7 @@ sylius: extra_notes: 'Notes supplémentaires' failed: 'Échoué' faqs: 'FAQs' - female: 'Féminin' + female: 'Femme' filter: 'Filtrer' filters: 'Filtres' fill_in_your_billing_and_shipping_addresses: 'Renseignez vos adresses de facturation et de livraison' @@ -373,7 +343,6 @@ sylius: identifier: 'Identifiant' if_you_have_an_account_sign_in_with_your_email_address: 'Si vous possédez déjà un compte, connectez-vous à l''aide de votre adresse email' image: 'Image' - images: 'Images' imagine_blocks: 'Blocs de type imagine' impersonate: 'Voir le site en tant que cet utilisateur' in: 'Dans' @@ -382,7 +351,6 @@ sylius: index_of_all_configured_locales: 'Index de tous les paramètres régionaux configurés' info: 'Info' information: 'Informations' - integer: 'Entier' inventory: 'Stock' inventory_here_you_can_see_current_stock_levels: 'Inventaire États des stocks' inventory_index: 'Stock' @@ -421,7 +389,7 @@ sylius: login_sylius_store: 'Connexion Boutique Sylius' logout: 'Déconnexion' main_taxon: 'Taxinomie principale' - male: 'Masculin' + male: 'Homme' manage: 'Gérer' manage_adjustments: 'Gérer les ajustements' manage_admin_users: 'Gérer les administrateurs' @@ -469,9 +437,7 @@ sylius: manage_your_product_catalog: 'Gérer votre catalogue de produits' manage_your_saved_addresses: 'Gérer vos adresses enregistrées' manage_zones: 'Gérer les zones' - marketing: 'Marketing' media: 'Media' - members: 'Membres' menu_nodes: 'Nœuds de menu' menus: 'Menus' message: 'Message' @@ -483,7 +449,6 @@ sylius: move_up: 'Déplacement vers le haut' my_account: 'Mon compte' n_a: 'N/A' - name: 'Nom' need_assistance: 'Besoin d''aide?' new: 'Nouveau' new_admin_user: 'Nouvel administrateur' @@ -574,7 +539,6 @@ sylius: base_currency_order_total: 'Totale de la commande en devise de base' order_value: 'Valeur de la commande' ordered: 'Commandé' - orders: 'Commandes' orders_statistics: 'Statistiques de commandes' original_price: 'Prix d''origine' out_of_stock: 'Rupture de stock' @@ -583,14 +547,11 @@ sylius: page: 'Page' pages: 'Pages' paid: 'Payée' - parent: 'Parent' partially_paid: 'Partiellement payée' partially_shipped: 'Partiellement expédiée' - password: 'Mot de passe' payment: 'Paiement' payment_details: 'Informations de paiement' payment_method: 'Moyen de paiement' - payment_methods: 'Moyens de paiement' payment_mode: 'Modes de paiement' payment_ready_to_pay: 'Vous pouvez maintenant procéder au paiement' payment_state: 'Etat du paiement' @@ -599,16 +560,12 @@ sylius: pay_again: 'Cliquez sur « Payer » pour essayer à nouveau' pending: 'En attente' per_customer_usage_limit: 'Limite d''utilisation par client' - percent: 'Pourcentage' permissions: 'Droits d''accès' personal_information: 'Informations personnelles' - phone_number: 'Téléphone' place_order: 'Commander' placed_an_order: 'Votre commande a bien été prise en compte.' placed_at: 'Effectuée le' please_sign_in: 'Veuillez vous connecter' - postcode: 'Code postal' - position: 'Emplacement' powered_by: 'Propulsé par' preferences: 'Préferences' presentation: 'Présentation' @@ -619,7 +576,6 @@ sylius: privacy_policy: 'Charte de confidentialité' process_your_orders: 'Traiter vos commandes' processing: 'En cours' - product: 'Produit' product_association_index: 'Association' product_association_type_index: 'Type d''association' product_association_types: 'Types d''association de produits' @@ -631,7 +587,6 @@ sylius: product_reviews: 'Avis produit' product_taxon: 'Taxonomie du produit' product_variants: 'Variantes de produit' - products: 'Produits' products_categorized_as_name: 'Produits classés en tant que « %name% »' products_categorized_under_taxon_taxon: 'Produits catégorisés sous le taxon "%taxon%"' products_index_of_all_products_in_your_store: 'Produits Liste de tous les produits de votre boutique' @@ -642,17 +597,14 @@ sylius: promotion_discount: 'Remises' promotion_information: 'Information de la promotion' promotion_total: 'Total des remises' - promotions: 'Promotions' properties: 'Propriétés' - province: 'Région' - provinces: 'Etat' purchased_from: 'Acheté chez' qty: 'Qté' qty_max: 'Qté max' qty_min: 'Qté min' quantity: 'Quantité' rating: 'Note' - ratio: 'Ratio' + ratio: 'Rapport' ready: 'Prêt' recent_customers: 'Clients récents' recent_orders: 'Commandes récentes' @@ -688,13 +640,9 @@ sylius: review_details: 'Détails' reviews: 'Avis' roles: 'Rôles' - rules: 'Règles' - sales: 'Ventes' - sales_this_month: 'Ventes' save: 'Appliquer' save_changes: 'Enregistrer les modifications' save_positions: 'Enregistrer les positions' - scope: 'Champ d''application' search: 'Rechercher' search_products: 'Chercher des produits' security_settings: 'Paramètres de Sécurité' @@ -716,16 +664,12 @@ sylius: shipment_state: 'Statut d''expédition' shipments: 'Expéditions' shipped: 'Expédié' - shipping: 'Expédition' shipping_address: 'Adresse de livraison' shipping_and_payment_methods: 'Méthodes d’expédition et de paiement' - shipping_categories: 'Catégories d''expédition' - shipping_category: 'Catégorie de livraison' shipping_address_changes_history: 'Historique du changement d''adresse d''expédition' shipping_charges: 'Frais de port' shipping_method: 'Moyen de livraison' shipping_method_details: 'Détails du mode de livraison' - shipping_methods: 'Modes de livraison' shipping_state: 'Statut de la livraison' shipping_total: 'Total des frais de port' shop_by: 'Accès par' @@ -750,7 +694,6 @@ sylius: sort_by_date: 'Trier par date' source_currency: 'Devise d''origine' start_date: 'Date de début' - starts_at: 'Commence le' starts_with: 'Commence par' state: 'État' status: 'Statut' @@ -765,7 +708,6 @@ sylius: support: 'Support' sylius_logo: 'Sylius' target_currency: 'Devise cible' - tax: 'TVA' tax_categories: 'Catégories de taxe' tax_category: 'Catégorie de taxe' tax_rate_details: 'Détails du taux' @@ -775,10 +717,7 @@ sylius: taxation_settings: 'Configuration des taxes' taxes: 'Taxes' taxonomy: 'Taxinomie' - taxons: 'Taxons' terms_and_conditions: 'Conditions générales de vente' - text: 'Texte' - textarea: 'Zone de texte' thank_you: 'Merci !' thank_you_for_your_order: 'Merci pour votre commande' theme: 'Thème' @@ -840,8 +779,6 @@ sylius: total_value_of_orders: 'Total des commandes' tracking_code: 'Code de suivi' tracking_number: 'Numéro de suivi' - translations: 'Traductions' - type: 'Type' unavailable: 'Indisponible' unexpected_error_occurred: 'Une erreur inattendue s''est produite.' unit_price: 'Prix unitaire' @@ -855,11 +792,9 @@ sylius: updating_tax_rate: 'Modification du taux' updating_date: 'Mise à jour de la date' usage: 'Utilisation' - usage_limit: 'Limite d''utilisation' use_the_contact_form_below_to_send_us_a_message: 'Utilisez le formulaire de contact ci-dessous pour nous envoyer un message.' used: 'Utilisé' user_details: 'Détails d''un utilisateur' - username: 'Identifiant' users_list_of_all_users_registered_in_store: 'Utilisateurs' value: 'Valeur' values: 'Valeurs' @@ -902,4 +837,3 @@ sylius: zone_consisting_of_other_zones: 'Zone constituée d''autres zones' zone_consisting_of_provinces: 'Zone composée de régions' zone_details: 'Détails de la zone' - zones: 'Zones' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.he.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.he.yml index bf0e99350e8..1bc08a40f1a 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.he.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.he.yml @@ -4,52 +4,90 @@ sylius: form: login: + username: 'שם משתמש' password: 'סיסמה' remember_me: 'זכור אותי' + option: + name: 'שם' ui: + add: 'הוסף' add_member: 'הוסיפו חבר/ה' add_province: 'הוסף/י מחוז' + add_value: 'הוסיפו ערך' + address_book: 'רשימת כתובות' + amount: 'כמות' attributes: 'מאפיינים' author: 'מחבר' + base_currency: 'מטבע בסיס' + billing_address: 'כתובת לחשבונית' calculator: 'מחשבון' + cancelled: 'בוטל' + category: 'קטגוריה' + change_password: 'שנה סיסמה' + channels: 'ערוצים' city: 'עיר' + color: 'צבע' comment: 'תגובה' company: 'חברה' confirmation: 'אישור' confirmation_title: 'אישור' country: 'מדינה' + coupons: 'קופונים' currencies: 'מטבעות' current_password: 'סיסמה נוכחית' current_stock: 'מלאי נוכחי' delete: 'מחק' + description: 'תיאור' + email: 'דואר אלקטרוני' enabled: 'הופעל' + failed: 'נכשל' + female: 'נקבה' first_name: 'שם פרטי' image: 'תמונה' + images: 'תמונות' last_name: 'שם משפחה' lastname: 'שם משפחה' + male: 'זכר' members: 'חברים' + name: 'שם' + new: 'חדש' new_password: 'סיסמה חדשה' number: 'מספר' options: 'אפשרויות' password: 'סיסמה' phone_number: 'מספר טלפון' postcode: 'מיקוד' + position: 'מיקום' price: 'מחיר' + product: 'מוצר' + products: 'מוצרים' + promotion_coupons: 'קופונים' province: 'מחוז' provinces: 'מחוזות' rating: 'דירוג' + ready: 'מוכן' rejected: 'נדחה' remember_me: 'זכור אותי' + roles: 'תפקידים' scope: 'תחום' + search: 'חפש' + shipping: 'משלוח' shipping_address: 'כתובת למשלוח' sku: 'מק''''ט' status: 'מצב' street: 'רחוב' + tax: 'מס' taxons: 'קבוצות טקסונומיות' + title: 'כותרת' + translations: 'תרגומים' type: 'סוג' + unknown: 'לא ידוע' + username: 'שם משתמש' + value: 'ערך' welcome: 'ברוכים הבאים' welcome_to_our_store: 'ברוכים הבאים לחנות שלנו' yes_label: 'כן' your_cart_is_empty: 'העגלה שלך ריקה' your_default_address: 'כתובת ברירת המחדל שלך' your_last_5_orders: '5 הזמנות האחרונות שלך' + zone: 'איזור' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.hr.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.hr.yml index b1322919f4d..223c7fa0a7d 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.hr.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.hr.yml @@ -8,7 +8,7 @@ sylius: password: 'Lozinka' remember_me: 'Zapamti me' option: - name: 'Naziv grupe' + name: 'Naziv regije' ui: abandoned: 'Napušteno' about: 'Ukratko' @@ -20,6 +20,7 @@ sylius: add_action: 'Dodajte akciju' add_association: 'Dodajte vezane proizvode' add_attribute: 'Dodajte atribut' + add_attributes: 'Dodajte atribute' add_channel: 'Dodajte kanal' add_choice: 'Dodajte odabir' add_coupon: 'Dodaj kod za popust' @@ -41,6 +42,7 @@ sylius: adjustments: 'Prilagodbe' administration: 'Administracija' administration_dashboard: 'Kontrolna ploča' + admin_users: 'Administratori' all: 'Sve' all_your_addresses: 'sylius.account.address.list' amount: 'Iznos' @@ -48,13 +50,17 @@ sylius: association_types: 'Tipovi poveznica' associations: 'Poveznice' assortment: 'Ponuda' + attributes: 'Značajke proizvoda' author: 'Autor' availability: 'Dostupnost' available_on: 'Dostupno' + available_until: 'Dostupno do' back: 'Povratak' back_to_store: 'Povratak u trgovinu' backorder: 'Na čekanju' + backordered: 'Kasne s isporukom' balance_due: 'Dugovni saldo' + base_currency: 'Osnovna valuta' bill_to: 'Račun na' billing_address: 'Adresa za dostavu' blocks: 'Blokovi' @@ -79,6 +85,7 @@ sylius: clear_filters: 'Očistite filtere' code: 'ISO kod' color: 'Boja' + comment: 'Komentar' company: 'Tvrtka' completed: 'Završeno' configuration: 'Postavke' @@ -87,6 +94,7 @@ sylius: confirmed: 'Potvrđeno' contact_us: 'Kontaktirajte nas' contain_variants: 'Postoje varijante' + content: 'Sadržaj' countries: 'Države' country: 'Država' country_details: 'Detalji države' @@ -143,7 +151,7 @@ sylius: current_password: 'Trenutna lozinka' current_promotions: 'Trenutne akcije' current_stock: 'Treutno dostupno' - customer: 'Kupac' + customer: 'Kupci' customer_details: 'Detalji kupca' customer_id: 'ID kupca' customer_not_notified: 'Kupac nije obaviješten' @@ -160,6 +168,8 @@ sylius: data: 'Podaci' date: 'Datum' default_billing_address: 'sylius.account.address.default.billing' + default_currency: 'Zadana valuta' + default_locale: 'Zadani lockalitet' default_shipping_address: 'sylius.account.address.default.shipping' delete: 'sylius.account.address.action.delete' delete_image: 'Obriši sliku' @@ -169,6 +179,7 @@ sylius: disable: 'Onemogućite' disabled: 'Onemogućeno' discounted_unit_price: 'Cijena s popustom' + display: 'Prikaz' edit: 'Uredi' edit_association_type: 'Uređivanje tipa poveznice' edit_locale: 'Uredi lokalitet' @@ -209,16 +220,23 @@ sylius: email: 'E-mail' email_templates: 'Uređivanje predloška' emails: 'Email' + empty: 'Prazno' enable: 'Omogućite' - enabled: 'Omogući' + enabled: 'Omogućeno' + end_date: 'Dazum završetka' ends_at: 'Završava' enjoy_all_the_features_that_are_available_on_your_personal_space_to_view_track_and_manage_all_your_data: 'Uživajte u svim značajkama koje su dostupne na vašem osobnom prostoru za pregled, praćenje i upravljanje vašim podacima' enter_your_code: 'Unesite kod' + equal: 'Jednak' error: 'Greška' exchange_rate: 'Tečaj' + exchange_rates: 'Tečajne liste' existing_customer: 'Postojeći kupac' + expires_at: 'Istječe' failed: 'Neuspješno' faqs: 'Česta pitanja' + female: 'Žensko' + filter: 'Filter' filters: 'Filteri' first_name: 'Ime' from: 'Od' @@ -236,7 +254,9 @@ sylius: guest_customer: 'Neregistrirani kupac' hello_name: 'Pozdrav %name%' hide_deleted: 'Sakrij izbrisano' + history: 'Povijest' home: 'Početna' + hostname: 'Naziv hosta' id: 'ID' identifier: 'Identifikator' image: 'Fotografija' @@ -257,6 +277,7 @@ sylius: item: 'sylius.order_item.product' items: 'Stavke' items_total: 'Ukupno artikala' + label: 'Oznaka' last_login: 'Posljednja prijava' last_name: 'Prezime' last_update: 'Ažurirano' @@ -266,14 +287,18 @@ sylius: latest_orders: 'Pregledaj narudžbe' links: 'Linkovi' list_coupons: 'Izlist kodova za popust' + locale: 'Lokalni kod' locales: 'Lokaliteti' lock: 'Zaključajte' locked: 'Zaključano' + logged_at: 'Zabilježeno na' logged_in_as: 'Prijavljeni kao %username%' login: 'Prijavi se' login_button: 'Prijavi se' login_sylius_store: 'Prijava Sylius trgovina' logout: 'Odjavi se' + main_taxon: 'Glavna taksonomija' + male: 'Muško' manage: 'Upravljanje' manage_adjustments: 'Upravljajte prilagodbama' manage_attributes: 'Upravljajte atributima' @@ -307,7 +332,7 @@ sylius: move_up: 'Pomaknite gore' my_account: 'Moj profil' n_a: 'Nije dostupno' - name: 'Naziv grupe' + name: 'Naziv regije' new: 'Novo' new_channel: 'Novi kanal' new_comment_posted_on_order: 'Novi komentar na narudžbu' @@ -338,6 +363,8 @@ sylius: new_zone: 'Nova regija' newest_products: 'Najnoviji proizvodi' next: 'Sljedeća' + no_label: 'Ne' + no_account: 'Nemam korisnički račun' no_association_types_to_display: 'Nema definiranih tipova poveznica' no_comment: 'Nema komentara' no_default_billing_address: 'sylius.account.address.default.no_billing' @@ -370,11 +397,13 @@ sylius: order_value: 'Vrijednost narudžbi' ordered: 'Naručeno' orders: 'Narudžbe' + original_price: 'Originalna cijena' out_of_stock: 'Nema na skladištu' overview_of_your_store: 'Pregled vaše web trgovine' page: 'Stranica' pages: 'Stranice' parent: 'Nadređena kategorija' + partially_shipped: 'Djelomično dostavljeno' password: 'Lozinka' payment: 'Naplata' payment_details: 'Detalji o plaćanju' @@ -397,6 +426,7 @@ sylius: processing: 'U obradi' product: 'Artikal' product_association_index: 'Poveznica' + product_association_type_index: 'Poveznice proizvoda' product_association_types: 'Tipovi poveznica proizvoda' product_associations: 'Poveznice proizvoda' product_attributes: 'Atributi proizvoda' @@ -413,10 +443,12 @@ sylius: promotion_details: 'Detalji akcije' promotion_total: 'Ukupno akcije' promotions: 'Promocije' - province: 'Pokrajina' - provinces: 'Pokrajine' + province: 'Županija' + provinces: 'Županije' qty_max: 'Maksimalna količina' qty_min: 'Minimalna količina' + quantity: 'Količina' + rating: 'Ocjena' ready: 'Spremno' recent_customers: 'Posljednji kupci' recent_orders: 'Posljednje narudžbe' @@ -443,8 +475,8 @@ sylius: reviews: 'Recenzije' roles: 'Role (korisnička prava)' rules: 'Pravila' - sales: 'Prodaja' - sales_this_month: 'Prodaja' + sales: 'Prodaja u trenutnom mjesecu' + sales_this_month: 'Prodaja u trenutnom mjesecu' save: 'Spremi' save_changes: 'Sačuvaj izmjene' scope: 'Djelokrug' @@ -480,14 +512,17 @@ sylius: slideshow: 'Automatski prikaz' slideshow_blocks: 'Slideshow blokovi' start_date: 'Datum početka' - starts_at: 'Počinje' + starts_at: 'Početak' state: 'Stanje' + status: 'Status' street: 'Ulica' string_blocks: 'Tekstualni blokovi' + subject: 'Naslov' success: 'Uspješno' summary: 'Sažetak' support: 'Podrška' sylius_logo: 'Syius' + tax_categories: 'Kategorije poreza' tax_category: 'Kategorija artikla' tax_rate_details: 'Detalji porezne stope' tax_rates: 'Stope poreza' @@ -495,7 +530,9 @@ sylius: taxation_categories: 'Kategorije poreza' taxation_settings: 'Postavke oporezivanja' taxes: 'Porezi' + taxons: 'Taksoni' thank_you_for_your_order: 'Zahvaljujemo na vašoj narudžbi' + theme: 'Tema' there_are_no_attributes_configured: 'Nema postavljenih atributa' there_are_no_blocks_to_display: 'Ne postoje blokovi za prikazati' there_are_no_channels_configured: 'Nema postavljenih kanala' @@ -544,6 +581,7 @@ sylius: total_registrations: 'Registracije u trenutnom mjesecu' tracking_code: 'Kod za praćenje' tracking_number: 'Kod za praćenje' + translations: 'Prijevodi' type: 'Vrsta' unavailable: 'Nedostupno' unit_price: 'Jedinična cijena' @@ -571,6 +609,7 @@ sylius: welcome: 'Dobrodošli' welcome_to_our_store: 'Dobrodošli na našu trgovinu' welcome_to_your_space: 'Dobrodošli u vaš kutak' + yes_label: 'Da' you_are_customer_since: 'Vi ste kupac od' you_have_no_addresses_defined: 'Nemate unešenih adresa' you_have_no_new_orders: 'Nema novih narudžbi' @@ -580,4 +619,4 @@ sylius: your_products: 'Pregledaj proizvode' zone: 'Regija' zone_details: 'Detalji regije' - zones: 'Regije' + zones: 'Područja (Zone)' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.hu.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.hu.yml index b4f23a14815..28dbcb808e2 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.hu.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.hu.yml @@ -51,6 +51,7 @@ sylius: admin_users: 'Adminisztrátorok' all: 'Mind' all_your_addresses: 'Minden Ön által megadott cím' + amount: 'Összeg' an_error_occurred: 'Hiba történt' api: 'API' apply_coupon: 'Kupon használata' @@ -119,6 +120,7 @@ sylius: contact_us: 'Kapcsolat' contain_variants: 'Változatokat tartalmaz' contains: 'Tartalmaz' + content: 'Tartalom' countries: 'Országok' country: 'Ország' country_details: 'Ország részletek' @@ -161,6 +163,7 @@ sylius: create_user: 'Felhasználó létrehozása' create_variant: 'Változat létrehozása' create_zone: 'Zóna létrehozása' + created: 'Készített' created_at: 'Készítetve' creating_a_new_imagine_block: 'Új kép blokk létrehozása' creating_a_new_simple_block: 'Új egyszerű blokk létrehozása' @@ -186,7 +189,7 @@ sylius: customer_notified: 'Ügyfél értesítve' customer_orders: 'Vevői megrendelések' customer_since: 'Ügyfél amióta' - customers: 'Ügyfelek' + customers: 'Vásárlók' customers_list_of_all_customers_in_store: 'VevőkA webáruház összes ügyfelének listája' customize_default_metadata: 'Alapértelmezett metaadat testreszabása' customize_metadata: 'Metaadatok testreszabása' @@ -197,6 +200,7 @@ sylius: date: 'Dátum' datetime: 'Dátum/idő' default_billing_address: 'Alapértelmezett számlázási cím' + default_currency: 'Alapértelmezett pénznem' default_locale: 'Alapértelmezett nyelv' default_shipping_address: 'Alapértelmezett szállítási cím' delete: 'Törlés' @@ -209,6 +213,7 @@ sylius: disabled: 'Letiltva' discount: 'Kedvezmény' discounted_unit_price: 'Kedvezményes egységár' + display: 'Megmutat' edit: 'Szerkesztés' edit_association_type: 'Kapcsolat típusának módosítása' edit_channel: 'Csatorna módosítása' @@ -240,6 +245,7 @@ sylius: editing_currency: 'Pénznem módosítása' editing_customer: 'Vevő módosítása' editing_email: 'Email módosítása' + editing_exchange_rate: 'Árfolyam szerkesztése' editing_imagine_block: 'Kép blokk módosítása' editing_menu: 'Menü módosítása' editing_menu_node: 'Menü csomópont módosítása' @@ -278,14 +284,17 @@ sylius: equal: 'Egyenlő' error: 'Hiba' exchange_rate: 'Árfolyam' + exchange_rates: 'Árfolyamok' exclusive: 'Exkluzív' existing_customer: 'Meglévő ügyfél' expiration_and_usage_limits: 'Lejárati és a használati korlát' + expires_at: 'Lejárat' extra_information: 'További információk' extra_notes: 'További megjegyzések' failed: 'Sikertelen' faqs: 'GYIK' female: 'Nő' + filter: 'Szűrő' filters: 'Szűrők' first_name: 'Keresztnév' from: '-tól' @@ -305,6 +314,7 @@ sylius: hello: 'Üdvözlünk' hello_name: 'Üdvözöljük %name%' hide_deleted: 'Törölt elem elrejtése' + history: 'Előzmények' home: 'Főoldal' hostname: 'Hoszt neve' id: 'Azonosító' @@ -331,6 +341,7 @@ sylius: items: 'Elemek' items_total: 'Tételek összesen' jump_to_page: 'Ugrás az oldalra' + label: 'Címke' last_login: 'Utolsó bejelentkezés' last_name: 'Vezetéknév' last_update: 'Utolsó frissítés' @@ -343,9 +354,11 @@ sylius: links: 'Linkek' list_coupons: 'Kuponok listázása' list_variants: 'Változatok listája' + locale: 'Terület' locales: 'Területi beállítások' lock: 'Zárol' locked: 'Lezárt' + logged_at: 'Bejelentkezett:' logged_in_as: 'Bejelentkezve mint %username%' login: 'Belépés' login_button: 'Belépés' @@ -412,6 +425,7 @@ sylius: new_currency: 'Új pénznem' new_customer: 'Új Ügyfél' new_customers: 'Új vásárlók' + new_exchange_rate: 'Új árfolyam' new_locale: 'Új nyelv' new_order: 'Új rendelés' new_orders: 'Új rendelések' @@ -436,6 +450,8 @@ sylius: new_zone: 'Új zóna' newest_products: 'Legújabb termékek' next: 'Következő' + no_label: 'Nem' + no_account: 'Nincs még fiókja' no_association_types_to_display: 'Nincsenek kapcsolat típusok meghatározva' no_comment: 'Nincs megjegyzés' no_default_billing_address: 'Nincs alapértelmezett számlázási cím megadva' @@ -539,11 +555,14 @@ sylius: promotion_information: 'Promóció információ' promotion_total: 'A promóciók teljes összege' promotions: 'Promóciók' + properties: 'Tulajdonságok' province: 'Tartomány/állam' provinces: 'Tartományok' purchased_from: 'Megvásárolva innét' + qty: 'Mennyiség' qty_max: 'Max mennyiség' qty_min: 'Min mennyiség' + quantity: 'Mennyiség' rating: 'Értékelés' ready: 'Kész' recent_customers: 'Legfrissebb vásárlók' @@ -638,6 +657,7 @@ sylius: support: 'Támogatás' sylius_logo: 'Sylius' tax: 'Adó' + tax_categories: 'Adó kategóriák' tax_category: 'ÁFA-kategória' tax_rate_details: 'Adó mérték részletei' tax_rates: 'Adókulcsok' @@ -646,6 +666,7 @@ sylius: taxation_settings: 'Adózás-beállítások' taxes: 'Adók' taxonomy: 'Taxonómia' + taxons: 'Taxonok' terms_and_conditions: 'Felhasználási feltételek' text: 'Szöveg' textarea: 'Szövegmező' @@ -736,6 +757,7 @@ sylius: welcome: 'Üdözlünk' welcome_to_our_store: 'Üdvözöljük áruházunkban' welcome_to_your_space: 'Üdvözöljük az Ön tárhelyén' + yes_label: 'Igen' you_are_customer_since: 'Ön ügyfél' you_have_no_addresses_defined: 'Nincs címed meghatározva' you_have_no_new_orders: 'Nincsenek új megrendelések' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.id.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.id.yml index a99c6cc9b8c..b67e0b36058 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.id.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.id.yml @@ -4,7 +4,7 @@ sylius: form: login: - username: 'Nama pengguna' + username: 'Username' password: 'Kata sandi' remember_me: 'Ingat saya' option: @@ -23,7 +23,7 @@ sylius: account_panel_outline: 'Nikmati semua fitur yang tersedia di ruang pribadi Anda untuk melihat, melacak dan mengelola semua data Anda' action: 'Tindakan' actions: 'Tindakan' - add: 'Menambahkan' + add: 'Tambah' add_action: 'Tambahkan tindakan' add_address: 'Tambahkan alamat' add_association: 'Tambahkan asosiasi' @@ -41,7 +41,7 @@ sylius: add_province: 'Tambah Provinsi' add_rule: 'Tambahkan aturan' add_to_cart: 'Masukkan ke keranjang' - add_value: 'Tambahkan nilai' + add_value: 'Tambah nilai value' add_your_review: 'Tambahkan ulasan anda' adding_new_customer_groups: 'Menambahkan grup pelanggan baru' adding_new_email: 'Menambahkan Email baru' @@ -566,7 +566,7 @@ sylius: order_comments: 'Memesan komentar' order_confirmation_name: 'Konfirmasi pesanan' order_details: 'Rincian pesanan Anda' - order_history: 'Sejarah Orde' + order_history: 'Riwayat pembelian' order_item_product: 'Item' order_state: 'Negara Orde' order_summary: 'Ringkasan rangka' @@ -652,7 +652,7 @@ sylius: qty_min: 'Qty min' quantity: 'Kuantitas' rating: 'Rating' - ratio: 'Perbandingan' + ratio: 'Rasio' ready: 'Siap' recent_customers: 'pelanggan baru-baru ini' recent_orders: 'Pesanan baru-baru ini' @@ -748,7 +748,7 @@ sylius: slideshow_blocks: 'Blok slideshow' sort: 'Menyortir' sort_by_date: 'Urutkan berdasarkan tanggal' - source_currency: 'Mata uang sumber' + source_currency: 'Sumber mata uang' start_date: 'Mulai tanggal' starts_at: 'Mulai di' starts_with: 'Dimulai dengan' @@ -764,7 +764,7 @@ sylius: summary_of_your_order: 'Ringkasan pesanan Anda' support: 'Mendukung' sylius_logo: 'Silius' - target_currency: 'Mata uang Target' + target_currency: 'Target mata uang' tax: 'Pajak' tax_categories: 'Kategori pajak' tax_category: 'Kategori Pajak' @@ -859,7 +859,7 @@ sylius: use_the_contact_form_below_to_send_us_a_message: 'Gunakan formulir kontak di bawah ini untuk mengirim pesan kepada kami.' used: 'Bekas' user_details: 'Rincian pengguna' - username: 'Nama pengguna' + username: 'Username' users_list_of_all_users_registered_in_store: 'Pengguna Daftar semua pengguna yang terdaftar di toko ' value: 'Isi' values: 'Nilai-nilai' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.it.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.it.yml index b2bcaff73d3..44631a36b51 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.it.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.it.yml @@ -8,7 +8,7 @@ sylius: password: 'Password' remember_me: 'Ricordami' option: - name: 'Nome' + name: "Nome\n" notes: 'Note per lo staff' variant: tracked: 'Tracciato' @@ -108,7 +108,7 @@ sylius: category_requirements: 'Requisiti della categoria' change_address: 'Cambia indirizzo' change_file: 'Modifica file' - change_password: 'Cambia la password' + change_password: 'Modifica la password' change_payment_method: 'Cambia il metodo di pagamento' change_position: 'Cambia posizione' change_shipping_method: 'Cambia il metodo di spedizione' @@ -224,7 +224,7 @@ sylius: customize_metadata: 'Personalizza i metadati' customize_products_metadata: 'Personalizza i metadati dei prodotti' customizing_metadata: 'Personalizzazione dei metadati' - dashboard: 'Pannello amministrazione' + dashboard: 'Pannello di amministrazione' data: 'Dati' date: 'Data' datetime: 'Data / ora' @@ -316,7 +316,7 @@ sylius: enable: 'Attiva' enabled: 'Abilitato' end_date: 'Data di fine' - ends_at: 'Termina il' + ends_at: 'Termina' ends_with: 'Finisce con' enjoy_all_the_features_that_are_available_on_your_personal_space_to_view_track_and_manage_all_your_data: 'Questo è la tua area personale. Qui puoi seguire l''andamento dei tuoi ordini, aggiornare i tuoi dati personali e aggiungere nuovi indirizzi.' enter_your_code: 'Inserisci il tuo codice' @@ -482,7 +482,7 @@ sylius: move_up: 'Spostarsi verso l''alto' my_account: 'Il mio account' n_a: 'N/A' - name: 'Nome' + name: "Nome\n" need_assistance: 'Hai bisogno di aiuto?' new: 'Nuovo' new_admin_user: 'Nuovo amministratore' @@ -565,7 +565,7 @@ sylius: order_comments: 'Commento dell''ordine' order_confirmation_name: 'Conferma dell''ordine' order_details: 'Dettagli dell''ordine' - order_history: 'Cronologia ordini' + order_history: 'Storico ordini' order_item_product: 'Articolo' order_state: 'Stato dell''ordine' order_summary: 'Riepilogo ordine' @@ -618,7 +618,7 @@ sylius: privacy_policy: 'Privacy Policy' process_your_orders: 'Effettua il tuo ordine' processing: 'In elaborazione' - product: 'Prodotto' + product: 'Prdotto' product_association_index: 'Relazione' product_association_type_index: 'Tipi di associazione' product_association_types: 'Tipi di associazione di prodotto' @@ -718,13 +718,13 @@ sylius: shipping: 'Spese di spedizione' shipping_address: 'Indirizzo di spedizione' shipping_and_payment_methods: 'Metodi di spedizione e pagamento' - shipping_categories: 'Categorie di spedizione' + shipping_categories: 'Categorie spedizioni' shipping_category: 'Categoria di spedizione' shipping_address_changes_history: 'Indirizzo di spedizione cambiato nello storico' shipping_charges: 'Spese di spedizione' shipping_method: 'Metodi di spedizione' shipping_method_details: 'Dettaglio spedizione' - shipping_methods: 'Metodi di spedizione' + shipping_methods: 'Metodo di spedizione' shipping_state: 'Stato spedizione' shipping_total: 'Totale spedizione' shop_by: 'eshop by' @@ -774,7 +774,7 @@ sylius: taxation_settings: 'Impostazioni tassazione' taxes: 'Tasse' taxonomy: 'Tassonomia' - taxons: 'Generi' + taxons: 'Taxons' terms_and_conditions: 'Termini e condizioni' text: 'Testo' textarea: 'Area di testo' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ja.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ja.yml index 6e914b9085e..ee97f6cb9ac 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ja.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ja.yml @@ -6,8 +6,12 @@ sylius: login: username: 'ユーザー名' password: 'パスワード' + option: + name: 'ゾーン名' ui: + actions: '値引き設定' add_action: '値引き設定を追加' + add_choice: '選択肢を追加' add_coupon: 'クーポンを追加' add_image: '画像を追加' add_member: '追加' @@ -19,6 +23,7 @@ sylius: administration: '管理' administration_dashboard: '管理者ダッシュボード' all_your_addresses: 'sylius.account.address.list' + amount: '税率' assortment: '商品管理' availability: '在庫状況' available_on: '入荷日' @@ -26,14 +31,22 @@ sylius: balance_due: '未入金' billing_address: 'ご請求先住所' build: 'sylius.breadcrumb.build' + calculator: '計算方法' cancel: 'キャンセル' + cart_summary: 'カートを見る' categorization: 'カテゴリ設定' + category: '税区分' + change_password: 'パスワードの変更' change_your_password: 'パスワードの変更' + checkout: '注文に進む' choose_file: 'ファイルを選択' city: '市町村' clear_cart: 'カートを空にする' code: 'コード' company: '会社名' + configuration: '条件設定' + confirmation: '確認のため再入力' + confirmation_title: '確認のため再入力' countries: '国の設定' country: '国' country_details: '国の詳細' @@ -43,6 +56,7 @@ sylius: create_a_new_address: 'sylius.account.address.create' create_country: '国を登録する' create_new_coupon: 'クーポンを追加' + create_option: '商品オプションを登録' create_order: '注文を登録' create_payment: '入金を登録する' create_payment_method: '支払い方法を登録する' @@ -55,22 +69,30 @@ sylius: create_taxon: 'カテゴリを登録する' create_variant: 'バリエーションを登録する' create_zone: 'ゾーンを登録する' + created: '登録日時' created_at: '登録日時' creation_time: '登録日時' currencies: '通貨' + currency: '通貨' current_orders: '現在の注文' current_password: '現在のパスワード' current_promotions: '現在のプロモーション' current_stock: '在庫' + customers: 'sylius.breadcrumb.customers' dashboard: 'ダッシュボード' default_billing_address: 'sylius.account.address.default.billing' + default_currency: 'デフォルトの通貨' default_shipping_address: 'sylius.account.address.default.shipping' delete: 'sylius.account.address.action.delete' delete_image: '画像を削除' + description: '説明' + edit: 'sylius.breadcrumb.update' edit_my_address: 'sylius.account.address.update' edit_your_personal_information: '顧客情報の変更' editing_country: '国を編集' editing_coupon: 'クーポンの編集' + editing_exchange_rate: '為替レートの編集' + editing_option: '商品オプションを編集' editing_order: '注文を編集' editing_payment: '入金を編集' editing_payment_method: '支払い方法の編集' @@ -84,8 +106,12 @@ sylius: editing_variant: 'バリエーションを編集' editing_zone: 'ゾーンの編集' email: 'メールアドレス' + enabled: '有効' + ends_at: '終了日' error: 'エラー' + exchange_rates: '為替レート' existing_customer: '登録済の顧客' + filter: 'F絞り込む' first_name: '名' from: '合計金額(下限)' general_info: 'sylius.promotion.general_info' @@ -99,7 +125,7 @@ sylius: hostname: 'ホスト名' id: 'ID' image: '画像' - images: '画像' + images: '商品画像' information: '情報' inventory: 'sylius.breadcrumb.inventory.index' inventory_here_you_can_see_current_stock_levels: '在庫照会' @@ -137,12 +163,16 @@ sylius: method: '発送方法' modified: '更新日時' my_account: 'マイアカウント' + name: 'ゾーン名' + new: 'sylius.breadcrumb.new' new_country: '国を登録' + new_exchange_rate: '為替レートを登録' new_order: '新しい注文を登録' new_password: '新しいパスワード' new_payment: '入金を登録' new_payment_method: '支払い方法を登録' new_product: 'sylius.backend.quick_links.add_product' + new_product_option: '商品オプション登録' new_product_variant: 'バリエーション登録' new_promotion: 'プロモーションを登録' new_shipping_category: '配送カテゴリを登録' @@ -168,37 +198,46 @@ sylius: options: 'sylius.breadcrumb.option.index' order: '注文' order_details: 'sylius.account.order.details' + order_history: '注文履歴' order_item_product: 'sylius.order_item.product' order_summary: 'ご注文内容の確認' order_value: '注文' - orders: '注文管理' + orders: 'sylius.breadcrumb.order.index' out_of_stock: '在庫切れ' overview_of_your_store: 'サマリー' password: 'パスワード' + payment_method: 'お支払い方法' payment_methods: '支払い方法の管理' payment_state: '入金状況' payments: '入金管理' + pending: '未発送' + personal_information: '個人情報' phone_number: '電話番号' place_order: '注文を確定する' placed_at: 'sylius.account.order.created_at' postcode: '郵便番号' previous: '前へ' price: '価格' - product: '商品名' + product: '商品情報' product_details_viewing_product_product: '商品詳細"%product%"' + product_options: '商品オプション' + products: 'sylius.breadcrumb.product.index' products_categorized_under_taxon_taxon: 'カテゴリ"%taxon%"の商品' products_index_of_all_products_in_your_store: '商品管理' promotion_coupons: 'sylius.breadcrumb.promotion_coupon.index' promotion_details: 'プロモーション詳細' promotion_total: 'プロモーション値引き額合計' - promotions: 'プロモーション管理' + promotions: 'sylius.breadcrumb.promotion.index' + properties: '商品オプション設定' province: '都道府県' provinces: '都道府県' + qty: '数量' recent_orders: '最近の注文' recent_users: '新着の顧客' register: 'お客様登録' register_button: 'お客様登録' retail_price: '販売価格' + rules: '条件' sales: 'sylius.breadcrumb.sales' sales_this_month: 'sylius.breadcrumb.sales' save: '保存' @@ -208,6 +247,7 @@ sylius: shipment_state: '発送状況' shipments: '出荷管理' shipping_address: '配送先住所' + shipping_categories: '配送カテゴリ' shipping_charges: '送料' shipping_method: '発送方法' shipping_method_details: '配送方法詳細' @@ -218,8 +258,11 @@ sylius: show_all: 'sylius.show_all' sign_in_to_the_store_or_create_new_account: 'ログイン又は新規顧客登録' slideshow: 'スライドショー' + starts_at: '開始日' + state: '出荷ステータス' street: 'それ以降の住所' success: '成功' + tax_categories: 'sylius.breadcrumb.tax_category.index' tax_category: '税区分' tax_rate_details: '税詳細' tax_rates: 'sylius.breadcrumb.tax_rate.index' @@ -231,13 +274,17 @@ sylius: there_are_no_images_for_this_product: '画像未登録' there_are_no_options_for_this_product: '商品オプション未設定' there_are_no_taxons_for_this_product: 'カテゴリ未設定' + this_months_statistics: 'sylius.backend.statistics' title: 'タイトル' to: '合計金額(上限)' total: '小計' total_orders: 'sylius.backend.statistics.orders_this_month' total_registrations: 'sylius.backend.statistics.registrations_this_month' tracking_number: 'sylius.account.order.tracking_number' + type: 'タイプ' + unit_price: '単価' updating_tax_rate: '税の編集' + usage_limit: '利用件数制限' used: '利用件数' user_details: '顧客詳細' username: 'ユーザー名' @@ -252,4 +299,4 @@ sylius: your_products: 'sylius.backend.quick_links.products' zone: '対象の地域' zone_details: 'ゾーン詳細' - zones: '地域' + zones: 'ゾーン管理' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ko.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ko.yml index f254367a7e9..c6e14671774 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ko.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ko.yml @@ -4,22 +4,37 @@ sylius: form: login: + password: '비밀번호' remember_me: '아이디/암호 저장' + option: + name: '이름' ui: add_member: '회원 추가' add_province: '시 또는 구 또는 군 추가' + all: '전체' + billing_address: '청구지 주소' city: '도시' company: '회사명' confirmation: '확인' confirmation_title: '확인' country: '국가' current_password: '현재 비밀번호' + email: '이메일' + enabled: '사용' + first_name: '이름' + last_name: '성' + lastname: '성' members: '회원' + name: '이름' new_password: '새로운 비밀번호' + password: '비밀번호' phone_number: '전화번호' postcode: '우편번호' presentation: '소개' provinces: '시 또는 구 또는 구' remember_me: '아이디/암호 저장' + roles: '역할' scope: '범위' + search: '검색' type: '타입' + zone: '영역' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.lt.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.lt.yml index 74a2f71f8e0..2cefc3177f8 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.lt.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.lt.yml @@ -223,7 +223,7 @@ sylius: customize_metadata: 'Koreguoti metaduomenis' customize_products_metadata: 'Koreguoti produktų metaduomenis' customizing_metadata: 'Tinkinti metaduomenis' - dashboard: 'Skydelis' + dashboard: 'Prietaisų skydelis' data: 'Duomenys' date: 'Data' datetime: 'Data ir laikas' @@ -506,6 +506,7 @@ sylius: no_default_billing_address: 'Nėra numatytojo atsiskaitymo adreso' no_default_shipping_address: 'Nėra numatytojo pristatymo adreso' no_description: 'Nėra aprašymo' + no_pricing_configuration: 'Nėra kainų nustatymo konfigūracijos' no_promotion: 'Nepritaikyta jokių nuolaidų' no_results: 'Nėra rezultatų' no_shipping_category: 'Nėra pristatymo kategorijos' @@ -611,8 +612,10 @@ sylius: province: 'Provincija' provinces: 'Provincijos' purchased_from: 'Pirktas' + qty: 'Kiekis' qty_max: 'Kiekis max' qty_min: 'Kiekis min' + quantity: 'Kiekis' rating: 'Įvertinimas' ratio: 'Santykis' ready: 'Paruošta' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.lv.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.lv.yml index 9ae00bf1240..81c69b96e6c 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.lv.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.lv.yml @@ -2,5 +2,17 @@ # (c) Paweł Jędrzejewski sylius: + form: + option: + name: 'Nosaukums' ui: address_book: 'Adrešu grāmata' + amount: 'Summa' + calculator: '- Kalkulators' + category: 'Kategorija' + change_password: 'Mainīt paroli' + dashboard: 'Informācijas panelis' + description: 'Apraksts' + name: 'Nosaukums' + order_history: 'Pasūtījumu vēsture' + personal_information: 'Personīgā informācija' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.mk.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.mk.yml index b9c11633afc..35124661d15 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.mk.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.mk.yml @@ -4,20 +4,41 @@ sylius: form: login: + username: 'Корисничко име' + password: 'Лозинка' remember_me: 'Запамти ме' + option: + name: 'Име' ui: + add_member: 'Додади член' + add_province: 'Додадете регион' add_value: 'Додај вредност' + all: 'Сите' + amount: 'Износ' + calculator: 'Калкулатор' + category: 'Категорија' city: 'Град' + code: 'Код' company: 'Компанија' confirmation: 'Потврда' confirmation_title: 'Потврда' country: 'Држава' + currency: 'Валута' current_password: 'Тековна лозинка' + description: 'Опис' email: 'Е-пошта' + enabled: 'Овозможено' exchange_rate: 'Курс на конверзија' + first_name: 'Име' + id: 'ID број' + last_name: 'Презиме' + lastname: 'Презиме' members: 'Членови' message: 'Порака' + name: 'Име' new_password: 'Нова лозинка' + parent: 'Родител' + password: 'Лозинка' phone_number: 'Телефонски Број' postcode: 'Поштенски Број' presentation: 'Презентација' @@ -25,7 +46,12 @@ sylius: provinces: 'Региони' remember_me: 'Запамти ме' scope: 'Опсег' + search: 'Пребарај' + shipping_address: 'Адреса за испорака' street: 'Улица' + title: 'Наслов' topic: 'Тема' type: 'Вид' + username: 'Корисничко име' value: 'Вредност' + zone: 'Зона' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ms.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ms.yml index 7f63fb2e8b9..9e422ecb3fe 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ms.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ms.yml @@ -2,16 +2,26 @@ # (c) Paweł Jędrzejewski sylius: + form: + option: + name: 'Nama' ui: add_member: 'Tambah ahli' add_province: 'Tambah Daerah' + all: 'Semua' city: 'Bandar' company: 'Syarikat' country: 'Negara' + enabled: 'Dibenarkan' + first_name: 'Nama Pertama' + last_name: 'Nama Akhir' + lastname: 'Nama Akhir' members: 'Ahli' + name: 'Nama' phone_number: 'Nombor Telefon' postcode: 'Poskod' province: 'Daerah' provinces: 'Daerah-Daerah' scope: 'Skop' type: 'Jenis' + zone: 'Zon' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.nl.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.nl.yml index 909232799fc..c016df5fc26 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.nl.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.nl.yml @@ -58,7 +58,7 @@ sylius: admin_users: 'Beheerders' all: 'Alles' all_your_addresses: 'Uw adressen' - amount: 'Hoeveelheid' + amount: 'Bedrag' an_error_occurred: 'Er deed zich een fout voor' api: 'Api' apply_coupon: 'Coupon toepassen' @@ -108,7 +108,7 @@ sylius: category_requirements: 'Categorie vereisten' change_address: 'Adres wijzigen' change_file: 'Bestand wijzigen' - change_password: 'Wijzig wachtwoord' + change_password: 'Wachtwoord wijzigen' change_payment_method: 'Betaalmethode wijzigen' change_position: 'Positie wijzigen' change_shipping_method: 'Verzendmethode wijzigen' @@ -314,7 +314,7 @@ sylius: emails: 'E-mails' empty: 'Leeg' enable: 'Inschakelen' - enabled: 'Toegestaan' + enabled: 'Ingeschakeld' end_date: 'Einddatum' ends_at: 'Eindigt op' ends_with: 'Eindigt met' @@ -719,7 +719,7 @@ sylius: shipping: 'Verzending' shipping_address: 'Bezorgadres' shipping_and_payment_methods: 'Verzend- en betaal methoden' - shipping_categories: 'Verzendcategorieën' + shipping_categories: 'Verzend categorieën' shipping_category: 'Verzend categorie' shipping_address_changes_history: 'Wijzigingsgeschiedenis verzend adres' shipping_charges: 'Verzendkosten' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.no.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.no.yml index fd83f4c071c..abf9130076e 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.no.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.no.yml @@ -19,6 +19,7 @@ sylius: add_action: 'Legg til handling' add_address: 'Legg til adresse' add_attributes: 'Legg til produktegenskaper' + add_choice: 'Legg til valg' add_coupon: 'Legg til rabattkupong' add_image: 'Legg til bilde' add_member: 'Legg til medlem' @@ -47,6 +48,7 @@ sylius: archival: 'Arkivering' archive: 'Arkiv' are_your_sure_you_want_to_perform_this_action: 'Er du sikker på at du vil utføre denne handlingen?' + association_types: 'Relasjonstyper' assortment: 'Utvalg' attributes: 'Egenskaper' author: 'Forfatter' @@ -69,8 +71,11 @@ sylius: calculator: 'Kalkulator' cancel: 'Avbryt' cancelled: 'Avbrutt' + cart_locked: 'Handlevogn låst' + cart_summary: 'Oppsummering' categorization: 'Kategorisering' category: 'Kategori' + change_password: 'Endre passord' change_your_password: 'Endre passord' channels: 'Kanaler' checkbox: 'Avkrysningsboks' @@ -112,6 +117,7 @@ sylius: create_locale: 'Definer språk/land' create_new_coupon: 'Lag ny rabattkupong' create_new_page: 'Opprett ny side' + create_option: 'Opprett alternativ' create_order: 'Opprette ordre' create_payment: 'Opprette betaling' create_payment_method: 'Opprett betalingsmåte' @@ -141,22 +147,27 @@ sylius: customer_details: 'Kundeopplysninger' customer_groups: 'Kundegrupper' customers: 'Kunder' - dashboard: 'Panel' + dashboard: 'Kontrollpanel' + data: 'Data' date: 'Dato' datetime: 'Dato og tid' default_billing_address: 'Standard faktureringsadresse' + default_currency: 'Standard valuta' default_locale: 'Standard nasjonal innstilling' default_shipping_address: 'Standard leveringsadresse' delete: 'Slett' delete_image: 'Slett bilde' deleted: 'Slettet' description: 'Beskrivelse' + display: 'Vis' edit: 'Rediger' edit_locale: 'Redigere språk/land' edit_my_address: 'Rediger min adresse' edit_your_personal_information: 'Endre din personlige informasjon' editing_country: 'Rediger land' editing_coupon: 'Endrer kupong' + editing_exchange_rate: 'Redigerer valutakurs' + editing_option: 'Redigere alternativet' editing_order: 'Redigere rekkefølge' editing_payment: 'Rediger betaling' editing_payment_method: 'Rediger betalingsmåte' @@ -173,11 +184,16 @@ sylius: email: 'E-post' enabled: 'Aktivert' ends_at: 'Slutter på' + equal: 'Lik' error: 'Feil' exchange_rate: 'Valutakurs' + exchange_rates: 'Valutakurser' exclusive: 'Eksklusiv' existing_customer: 'Eksisterende kunde' + expires_at: 'Utløper' failed: 'Mislyktes' + female: 'Kvinne' + filter: 'Filtrer' first_name: 'Fornavn' from: 'Fra' fulfill: 'Oppfylle' @@ -190,6 +206,7 @@ sylius: generating_coupons: 'Genererer kuponger' grand_total: 'Total' hide_deleted: 'Skjul slettet' + history: 'Historikk' home: 'Hjem' hostname: 'Vertsnavn' id: 'ID' @@ -206,6 +223,7 @@ sylius: invoice: 'Faktura' item: 'Produkt' items_total: 'Antall varer' + label: 'Etikett' last_login: 'Siste pålogging' last_name: 'Etternavn' last_update: 'Sist oppdatert' @@ -214,11 +232,14 @@ sylius: lastname: 'Etternavn' latest_orders: 'Siste ordre' list_coupons: 'List ut kuponger' + locale: 'Språk' locales: 'Nasjonale innstillinger' + logged_at: 'Logget på' login: 'Logg inn' login_button: 'Logg inn' logout: 'Logg ut' main_taxon: 'Hoved taksonomi' + male: 'Mann' manage: 'Administrer' manage_countries: 'Administrer land' manage_options: 'Endre innstillinger' @@ -243,11 +264,13 @@ sylius: name: 'Navn' new: 'Ny' new_country: 'Nytt land' + new_exchange_rate: 'Ny valutakurs' new_order: 'Ny ordre' new_password: 'Nytt Passord' new_payment: 'Ny betaling' new_payment_method: 'Ny betalingsmåte' new_product: 'Nytt produkt' + new_product_option: 'Nytt produktalternativ' new_product_variant: 'Ny produktvariant' new_promotion: 'Ny kampanje' new_shipping_category: 'Ny fraktkategori' @@ -275,9 +298,11 @@ sylius: options: 'Instillinger' order: 'Ordre' order_details: 'Nærmere opplysninger om bestillingen' + order_history: 'Ordrehistorikk' order_item_product: 'Produkt' order_summary: 'Ordreoversikt' order_value: 'Ordeverdi' + ordered: 'Bestilt' orders: 'Bestillinger' out_of_stock: 'Ikke på lager' overview_of_your_store: 'Oversikt over butikken' @@ -291,6 +316,7 @@ sylius: payments: 'Betalinger' pending: 'Venter' percent: 'Prosent' + personal_information: 'Personlig informasjon' phone_number: 'Telefonnummer' place_order: 'Legg inn bestilling' placed_at: 'Plassert på' @@ -300,10 +326,13 @@ sylius: previous: 'Forrige' price: 'Pris' pricing: 'Prising' + priority: 'Prioritet' processing: 'Behandler' product: 'Produkt' product_association_type_index: 'Relasjonstype' product_details_viewing_product_product: 'Produktdetaljer Ser på produkt "%product%"' + product_options: 'Produktalternativer' + product_reviews: 'Produktomtaler' products: 'Produkter' products_categorized_as_name: 'Produkter kategorisert som "%name%"' products_categorized_under_taxon_taxon: 'Produkter kategorisert under "%taxon%" gruppe' @@ -312,9 +341,13 @@ sylius: promotion_details: 'Kampanjedetaljer' promotion_total: 'Total kampanje' promotions: 'Kampanjer' + properties: 'Egenskaper' province: 'Fylke' provinces: 'Fylker' + qty: 'Antall' + quantity: 'Antall' rating: 'Rangering' + ratio: 'Kurs' ready: 'Klar' recent_orders: 'Siste ordrer' recent_users: 'Nylige brukere' @@ -324,6 +357,7 @@ sylius: registration_date: 'Registreringdato' rejected: 'Avvist' release_inventory: 'Utgivelselager' + remember_me: 'Husk meg' retail_price: 'Utsalgspris' return: 'Retur' returned: 'Returnert' @@ -342,13 +376,14 @@ sylius: shipment_state: 'Forsendelsestatus' shipments: 'Forsendelser' shipped: 'Sendt' + shipping: 'Frakt' shipping_address: 'Leveringsadresse' shipping_categories: 'Fraktkategorier' shipping_category: 'Fraktkategori' shipping_charges: 'Fraktkostnader' shipping_method: 'Fraktalternativ' shipping_method_details: 'Fraktmetodedetaljer' - shipping_methods: 'Leveringsmetoder' + shipping_methods: 'Fraktalternativ' shipping_state: 'Fraktstatus' shipping_total: 'Frakt totalt' shop_by: 'Butikk av' @@ -357,11 +392,16 @@ sylius: sign_in_to_the_store_or_create_new_account: 'Logg på butikken eller opprett ny konto' sku: 'Strekkode' slideshow: 'Lysbildevisning' + source_currency: 'Fra valuta' starts_at: 'Starter på' state: 'Tilstand' status: 'Status' street: 'Gate' success: 'Suksess' + sylius_logo: 'Sylius' + target_currency: 'Til valuta' + tax: 'Mva' + tax_categories: 'Merverdikategorier' tax_category: 'Skattekategori' tax_rate_details: 'Skatteratedetaljer' tax_rates: 'Skattesatser' @@ -376,6 +416,7 @@ sylius: there_are_no_images_for_this_product: 'Det er ingen bilder for dette produktet' there_are_no_options_for_this_product: 'Det er ingen alternativer for dette produktet' there_are_no_taxons_for_this_product: 'Det er ingen grupper for dette produktet' + this_months_statistics: 'Denne månedens statistikk' title: 'Tittel' to: 'Til' topic: 'Emne' @@ -396,6 +437,7 @@ sylius: username: 'Brukernavn' users_list_of_all_users_registered_in_store: 'Brukere Liste over alle brukere registrert i butikken' value: 'Verdi' + values: 'Verdier' variant: 'Variant' variant_selection_method: 'Metode for valg av variant' view_more: 'Vis mer' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.pl.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.pl.yml index dbbf238657e..c2b86bc1166 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.pl.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.pl.yml @@ -58,7 +58,7 @@ sylius: admin_users: 'Administratorzy' all: 'Wszystko' all_your_addresses: 'Wszystkie Twoje adresy' - amount: 'Kwota' + amount: 'Wartość' an_error_occurred: 'Wystąpił błąd' api: 'Interfejs API' apply_coupon: 'Zastosuj kupon' @@ -120,7 +120,7 @@ sylius: cheapest_first: 'Pierwszy najtańszy' checkbox: 'Pole wyboru' checking_out_as: 'Sprawdzanie jako' - checkout: 'Zamów' + checkout: 'Koszyk' choose_channel: 'Wybierz kanał' choose_file: 'Wybierz plik' choose_how_your_goods_will_be_delivered: 'Wybierz, jak Twoje towary zostaną dostarczone' @@ -314,7 +314,7 @@ sylius: emails: 'Adresy email' empty: 'Brak' enable: 'Włącz' - enabled: 'Aktywne' + enabled: 'Dostępny' end_date: 'Data zakończenia' ends_at: 'Data zakończenia' ends_with: 'Kończy się na' @@ -565,7 +565,7 @@ sylius: order_comments: 'Uwagi dotyczące zamówienia' order_confirmation_name: 'Potwierdzenie zamówienia' order_details: 'Szczegóły Twojego zamówienia' - order_history: 'Historia zamówienia' + order_history: 'Historia zamówień' order_item_product: 'Element' order_state: 'Stan zamówienia' order_summary: 'Podsumowanie zamówienia' @@ -607,7 +607,7 @@ sylius: placed_at: 'Umieszczone w' please_sign_in: 'Proszę się zalogować' postcode: 'Kod pocztowy' - position: 'Pozycja' + position: 'Położenie' powered_by: 'Zasilany przez' preferences: 'Preferencje' presentation: 'Nazwa publiczna' @@ -651,7 +651,7 @@ sylius: qty_min: 'Ilość min.' quantity: 'Ilość' rating: 'Ocena' - ratio: 'Współczynnik' + ratio: 'Współczynnik wymiany' ready: 'Gotowe' recent_customers: 'Ostatni klienci' recent_orders: 'Najnowsze zamówienia' @@ -675,7 +675,7 @@ sylius: reports: 'Raporty' reserved: 'Zarezerwowany' reset: 'Zresetowano' - reset_button: 'Zresetuj' + reset_button: 'Zresetowano' reset_password: 'Resetuj hasło' restore: 'Przywróć' retail_price: 'Cena detaliczna' @@ -724,7 +724,7 @@ sylius: shipping_charges: 'Koszty przesyłki' shipping_method: 'Metoda wysyłki' shipping_method_details: 'Szczegóły metody wysyłki' - shipping_methods: 'Metody wysyłki' + shipping_methods: 'Sposób wysyłki' shipping_state: 'Status wysyłki' shipping_total: 'Koszt wysyłki' shop_by: 'Przeglądaj' @@ -774,7 +774,7 @@ sylius: taxation_settings: 'Ustawienia podatków' taxes: 'Podatki' taxonomy: 'Taksonomia' - taxons: 'Kategorie' + taxons: 'Taksonomie' terms_and_conditions: 'Regulamin' text: 'Tekst' textarea: 'Pole tekstowe' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.pt.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.pt.yml index 8ebe360aadd..ae52592c3c1 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.pt.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.pt.yml @@ -4,7 +4,7 @@ sylius: form: login: - username: 'Login' + username: 'Nome de utilizador' password: 'Palavra-passe' remember_me: 'Lembrar-me' option: @@ -108,7 +108,7 @@ sylius: category_requirements: 'Requisitos de categoria' change_address: 'Alterar endereço' change_file: 'Alterar ficheiro' - change_password: 'Alterar a palavra-passe' + change_password: 'Alterar palavra-passe' change_payment_method: 'Alterar o método de pagamento' change_position: 'Alterar posição' change_shipping_method: 'Alterar o método de envio' @@ -182,6 +182,7 @@ sylius: create_user: 'Criar utilizador' create_variant: 'Criar variação' create_zone: 'Criar zona' + created: 'Data de criação' created_at: 'Data de criação' creating_a_new_imagine_block: 'Criação de um novo bloco de imaginar' creating_a_new_simple_block: 'Criação de um novo bloco simples' @@ -209,7 +210,7 @@ sylius: customer_orders: 'Encomendas de cliente' customer_since: 'Cliente desde' customers: 'Clientes' - dashboard: 'Painel de Instrumentos' + dashboard: 'Painel' data: 'Dados' date: 'Data' datetime: 'DateTime' @@ -308,6 +309,7 @@ sylius: failed: 'Falhou' faqs: 'FAQs' female: 'Feminino' + filter: 'Filtrar' filters: 'Filtros' first_name: 'Nome próprio' forgot_password: 'Esqueceu-se da palavra-passe?' @@ -353,6 +355,7 @@ sylius: it_seems_you_have_an_account_already: 'Parece que já tem uma conta' item: 'Item' items_total: 'Total de itens' + label: 'Rótulo' last_login: 'Último login' last_name: 'Apelido' last_update: 'Data de atualização' @@ -364,6 +367,7 @@ sylius: login_button: 'Login' logout: 'Sair' main_taxon: 'Táxon principal' + male: 'Masculino' manage: 'Gerenciar' manage_attributes: 'Gerir atributos' manage_channels: 'Gerir canais' @@ -422,6 +426,7 @@ sylius: new_payment_method: 'Novo meio de pagamento' new_permission: 'Nova permissão' new_product: 'Novo produto' + new_product_option: 'Nova opção' new_product_variant: 'Nova variação de produto' new_promotion: 'Nova promoção' new_review: 'Novo comentário' @@ -457,6 +462,7 @@ sylius: order_comment_name: 'Comentário de encomenda' order_confirmation_name: 'Confirmação de encomenda' order_details: 'Detalhes da sua encomenda' + order_history: 'Histórico de encomendas' order_item_product: 'Item' order_summary: 'Dados da compra' order_value: 'Valor da encomenda' @@ -485,6 +491,7 @@ sylius: pending: 'Pendente' percent: 'Percentagem' permissions: 'Permissões' + personal_information: 'Informação Pessoal' phone_number: 'Número de telefone' place_order: 'Fazer pedido' please_sign_in: 'Por favor, inicie a sessão' @@ -524,10 +531,12 @@ sylius: province: 'Distrito' provinces: 'Distritos' purchased_from: 'Comprado de' + qty: 'Quantidade' qty_max: 'Qt. máx.' qty_min: 'Qt. mín.' + quantity: 'Quantidade' rating: 'Classificação' - ratio: 'Proporção' + ratio: 'Taxa' ready: 'Preparado' recent_customers: 'Clientes recentes' recent_orders: 'Encomendas recentes' @@ -577,6 +586,7 @@ sylius: shipment_state: 'Situação do envio' shipments: 'Envios' shipped: 'Enviado' + shipping: 'Expedição' shipping_address: 'Endereço de entrega' shipping_categories: 'Categorias de expedição' shipping_category: 'Categoria de transporte' @@ -591,6 +601,8 @@ sylius: show_all: 'Mostrar todos' sign_in_to_the_store_or_create_new_account: 'Cadastre-se na loja ou crie uma nova conta' sku: 'SKU' + slideshow: 'Apresentação de slides' + source_currency: 'Moeda fonte' starts_at: 'Começa em' state: 'Estado' status: 'Estado' @@ -611,6 +623,7 @@ sylius: taxation_settings: 'Configurações de taxas' taxes: 'Taxas' taxonomy: 'Taxonomia' + taxons: 'Táxons' terms_and_conditions: 'Termos e Condições' text: 'Texto' textarea: 'Área de texto' @@ -621,9 +634,11 @@ sylius: there_are_no_images_for_this_product: 'Não há imagens para este produto' there_are_no_options_for_this_product: 'Não há opções para este produto' there_are_no_taxons_for_this_product: 'Sem táxons' + this_months_statistics: 'Estatísticas do mês' title: 'Título' to: 'Para' topic: 'Assunto' + total: 'Total' total_orders: 'Total de encomendas' total_registrations: 'Total de registos' tracking_number: 'Número de Tracking' @@ -641,7 +656,7 @@ sylius: usage_limit: 'Limite de utilização' used: 'Utilizado' user_details: 'Detalhes do usuários' - username: 'Login' + username: 'Nome de utilizador' users_list_of_all_users_registered_in_store: 'Usuários Lista de todos os usuários cadastros na loja' value: 'Valor' values: 'Valores' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.pt_BR.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.pt_BR.yml index 13c0bce34c1..3fbc6b3c871 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.pt_BR.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.pt_BR.yml @@ -48,7 +48,7 @@ sylius: adding_new_locale: 'Adicionando nova localidade' additional_information: 'Informações adicionais' address: 'Endereço' - address_book: 'Catálogo de Endereços' + address_book: 'Catálogo de endereços' addressing: 'Endereçamento' addressing_step: 'Endereço' adjustments: 'Ajustes' @@ -108,7 +108,7 @@ sylius: category_requirements: 'Requerimentos da categoria' change_address: 'Mudar endereço' change_file: 'Alterar arquivo' - change_password: 'Alterar senha' + change_password: 'Alterar palavra-passe' change_payment_method: 'Mudar método de pagamento' change_position: 'Alterar posição' change_shipping_method: 'Mudar o método de envio' @@ -314,7 +314,7 @@ sylius: emails: 'E-mails' empty: 'Vazio' enable: 'Ativar' - enabled: 'Ativado' + enabled: 'Habilitado' end_date: 'Data Final' ends_at: 'Termina em' ends_with: 'Termina com' @@ -420,7 +420,7 @@ sylius: login_button: 'Login' login_sylius_store: 'Logon Sylius armazenar' logout: 'Sair' - main_taxon: 'Categoria principal' + main_taxon: 'Táxon principal' male: 'Masculino' manage: 'Gerenciar' manage_adjustments: 'Gerenciar ajustes' @@ -601,7 +601,7 @@ sylius: per_customer_usage_limit: 'Limite de uso por cliente' percent: 'Porcentagem' permissions: 'Permissões' - personal_information: 'Dados pessoais' + personal_information: 'Informação pessoal' phone_number: 'Número de Telefone' place_order: 'Fazer pedido' placed_an_order: 'Pedido inserido com sucesso' @@ -716,7 +716,7 @@ sylius: shipment_state: 'Situação do envio' shipments: 'Envios' shipped: 'Enviado' - shipping: 'Entrega' + shipping: 'Expedição' shipping_address: 'Endereço de entrega' shipping_and_payment_methods: 'Métodos de envio e pagamento' shipping_categories: 'Categorias de envio' @@ -765,7 +765,7 @@ sylius: support: 'Suporte' sylius_logo: 'Sylius' target_currency: 'Moeda de destino' - tax: 'Taxa' + tax: 'Imposto' tax_categories: 'Categorias de impostos' tax_category: 'Categoria de imposto' tax_rate_details: 'Detalhes de imposto' @@ -775,7 +775,7 @@ sylius: taxation_settings: 'Configurações de taxas' taxes: 'Taxas' taxonomy: 'Categorias' - taxons: 'Categorias' + taxons: 'Taxas' terms_and_conditions: 'Termos e condições' text: 'Texto' textarea: 'Área de Texto' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ro.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ro.yml index 91ce38e369a..3e61a88e9f5 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ro.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ro.yml @@ -8,7 +8,7 @@ sylius: password: 'Parolă' remember_me: 'Ţine-mă minte' option: - name: 'Nume' + name: 'Nume produs' notes: 'Note suplimentare' variant: tracked: 'Gestiune stoc' @@ -58,7 +58,7 @@ sylius: admin_users: 'Administratori' all: 'Tot' all_your_addresses: 'Toate adresele' - amount: 'Sumă' + amount: 'Valoare' an_error_occurred: 'A apărut o eroare' api: 'API' apply_coupon: 'Adaugă cupon' @@ -483,7 +483,7 @@ sylius: move_up: 'Mută sus' my_account: 'Contul meu' n_a: 'N/A' - name: 'Nume' + name: 'Nume produs' need_assistance: 'Ai nevoie de ajutor?' new: 'Nouă' new_admin_user: 'Administrator nou' @@ -566,7 +566,7 @@ sylius: order_comments: 'Comentarii comandă' order_confirmation_name: 'Confirmare comandă' order_details: 'Detaliile comenzii dumneavoastră' - order_history: 'Istoric comandă' + order_history: 'Istoric comenzi' order_item_product: 'Item' order_state: 'Starea comenzii' order_summary: 'Sumar comandă' @@ -652,7 +652,7 @@ sylius: qty_min: 'Cant. min.' quantity: 'Cantitate' rating: 'Rating' - ratio: 'Raport' + ratio: 'Curs de schimb' ready: 'Gata' recent_customers: 'Clienți recenți' recent_orders: 'Comenzi recente' @@ -765,7 +765,7 @@ sylius: support: 'Suport' sylius_logo: 'Sylius' target_currency: 'Monedă de schimb' - tax: 'Taxă' + tax: 'Taxe' tax_categories: 'Categorii de taxe' tax_category: 'Categoria de taxă' tax_rate_details: 'Detalii taxă' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ru.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ru.yml index e7f04078caf..e3a07000c75 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ru.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.ru.yml @@ -4,11 +4,11 @@ sylius: form: login: - username: 'Логин' + username: 'Имя пользователя' password: 'Пароль' remember_me: 'Запомнить меня' option: - name: 'Название' + name: 'Округ' notes: 'Дополнительные заметки' variant: tracked: 'Отслеживаемая' @@ -48,7 +48,7 @@ sylius: adding_new_locale: 'Добавление нового языка' additional_information: 'Дополнительная информация' address: 'Адрес' - address_book: 'Aдресная книга' + address_book: 'Адресная книга' addressing: 'Адрес' addressing_step: 'Адрес' adjustments: 'Корректировки' @@ -58,7 +58,7 @@ sylius: admin_users: 'Администраторы' all: 'Все' all_your_addresses: 'Ваши адреса' - amount: 'Сумма' + amount: 'Количество' an_error_occurred: 'Произошла ошибка' api: 'API' apply_coupon: 'Применить купон' @@ -120,7 +120,7 @@ sylius: cheapest_first: 'Дешёвые первыми' checkbox: 'Флажок' checking_out_as: 'Проверить как' - checkout: 'Оформление заказа' + checkout: 'Сверка' choose_channel: 'Выберите канал' choose_file: 'Выбрать файл' choose_how_your_goods_will_be_delivered: 'Выберите, как ваш товар будет доставлен' @@ -224,7 +224,7 @@ sylius: customize_metadata: 'Настроить метаданные' customize_products_metadata: 'Настройка метаданных товаров' customizing_metadata: 'Настройка метаданных' - dashboard: 'Приборная панель' + dashboard: 'Панель инструментов' data: 'Данные' date: 'Дата' datetime: 'Дата и время' @@ -483,7 +483,7 @@ sylius: move_up: 'Переместить выше' my_account: 'Моя учетная запись' n_a: 'Н/Д' - name: 'Название' + name: 'Округ' need_assistance: 'Нужна помощь?' new: 'Новый' new_admin_user: 'Новый администратор' @@ -601,7 +601,7 @@ sylius: per_customer_usage_limit: 'Клиентские ограничения' percent: 'Процент' permissions: 'Права доступа' - personal_information: 'Личная информация' + personal_information: 'Персональные данные' phone_number: 'Контактный телефон' place_order: 'Заказать' placed_an_order: 'Вы успешно оформили заказ.' @@ -619,7 +619,7 @@ sylius: privacy_policy: 'Политика конфидециальности' process_your_orders: 'Обработать ваши заказы' processing: 'Обрабатывается' - product: 'Товар' + product: 'Продукт' product_association_index: 'Взаимосвязи' product_association_type_index: 'Типы взаимосвязи' product_association_types: 'Типы взаимосвязей продуктов' @@ -644,7 +644,7 @@ sylius: promotion_total: 'Сумма скидки' promotions: 'Рекламные акции' properties: 'Настройки' - province: 'Район' + province: 'Область' provinces: 'Области' purchased_from: 'Приобретенные' qty: 'Кол-во' @@ -750,7 +750,7 @@ sylius: sort_by_date: 'Сортировка по дате' source_currency: 'Исходная валюта' start_date: 'Дата начала' - starts_at: 'Старт' + starts_at: 'Начало' starts_with: 'Начинается с' state: 'Cтатус' status: 'Статус' @@ -855,11 +855,11 @@ sylius: updating_tax_rate: 'Редактирование налоговой ставки' updating_date: 'Дата обновления' usage: 'Использование' - usage_limit: 'Предел использования' + usage_limit: 'Предел' use_the_contact_form_below_to_send_us_a_message: 'Используйте контактную форму ниже, чтобы отправить нам сообщение.' used: 'Использован' user_details: 'Детали пользователя' - username: 'Логин' + username: 'Имя пользователя' users_list_of_all_users_registered_in_store: 'Пользователи список всех пользователей зарегистрированных в магазине' value: 'Значение' values: 'Значения' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sk.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sk.yml index c54b6cc5c88..aba7144c0df 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sk.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sk.yml @@ -120,7 +120,7 @@ sylius: cheapest_first: 'Od najlacnejšieho' checkbox: 'Checkbox' checking_out_as: 'Nakupujúci ako' - checkout: 'Objednať' + checkout: 'Košík' choose_channel: 'Vyber kanál' choose_file: 'Vybrať súbor' choose_how_your_goods_will_be_delivered: 'Vyberte si, ako vám bude tovar doručený' @@ -148,7 +148,7 @@ sylius: contains: 'Obsahuje' content: 'Obsah' countries: 'Krajiny' - country: 'Štát' + country: 'Krajina' country_details: 'Podrobnosti o krajine' coupon: 'Kupón' coupon_based: 'Používať kupóny' @@ -470,7 +470,7 @@ sylius: manage_zones: 'Spravovať zóny' marketing: 'Marketing' media: 'Média' - members: 'Členovia' + members: 'Používatelia' menu_nodes: 'Menu elementy' menus: 'Menu' message: 'Správa' @@ -521,6 +521,7 @@ sylius: newest_first: 'Od najnovšieho' next: 'Ďalej' no_label: 'Nie' + no_account: 'Ešte nemáte konto' no_addresses: 'Neexistujú žiadne adresy pre zobrazenie' no_association_types_to_display: 'Neexistujú žiadne typy priradení' no_comment: 'Žiadne komentáre' @@ -581,7 +582,7 @@ sylius: page: 'Stránka' pages: 'Stránky' paid: 'Zaplatené' - parent: 'Nadradená kategória' + parent: 'Nadradený prototyp' partially_paid: 'Čiastočne zaplatené' partially_shipped: 'Čiastočne dodané' password: 'Heslo' @@ -644,8 +645,10 @@ sylius: province: 'Provincia' provinces: 'Provincie' purchased_from: 'Zakúpené od' + qty: 'Množstvo' qty_max: 'Max. množstvo' qty_min: 'Min. množstvo' + quantity: 'Množstvo' rating: 'Hodnotenie' ratio: 'Kurz' ready: 'Pripravená' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sl.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sl.yml index 8d1e5570dd3..edc6130e1fc 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sl.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sl.yml @@ -42,6 +42,7 @@ sylius: administration: 'Administracija' administration_dashboard: 'Administracijska nadzorna plošča' all_your_addresses: 'Vsi vaši naslovi' + amount: 'Znesek' association: 'Povezave' association_types: 'Vrste združenj' associations: 'Povezave' @@ -64,6 +65,7 @@ sylius: cancel: 'Prekliči' cancelled: 'Preklicano' cart_locked: 'Košarica zaklenjena' + cart_summary: 'Povzetek košarice' categorization: 'Kategorizacija' category: 'Kategorija' change_your_password: 'Spremenite vaše geslo' @@ -84,6 +86,7 @@ sylius: confirmation_title: 'Potrditev' confirmed: 'Potrjeno' contain_variants: 'Vsebuje variante' + content: 'Vsebina' countries: 'Države' country: 'Država' country_details: 'Podrobnosti države' @@ -124,6 +127,7 @@ sylius: create_user: 'Ustvarjanje uporabnika' create_variant: 'Ustvarite različico' create_zone: 'Ustvarite območje' + created: 'Ustvarjeno' created_at: 'Ustvarjeno ob' creating_a_new_imagine_block: 'Ustvarite nov blok imagine' creating_a_new_simple_block: 'Ustvarjanje novega preprostega bloka' @@ -157,6 +161,7 @@ sylius: date: 'Datum' datetime: 'Datum in čas' default_billing_address: 'Privzeti naslov za izstavitev računa' + default_currency: 'Privzeta valuta' default_locale: 'Privzeto območje' default_shipping_address: 'Privzeti naslov za pošiljanje' delete: 'Zbriši' @@ -165,6 +170,7 @@ sylius: description: 'Opis' details: 'Podrobnosti' disable: 'Onemogoči' + display: 'Prikaz' edit: 'Urejanje' edit_association_type: 'Uredite vrsto združenja' edit_locale: 'Urejanje področne nastavitve' @@ -210,11 +216,15 @@ sylius: end_date: 'Končni datum' ends_at: 'Konča se na' enjoy_all_the_features_that_are_available_on_your_personal_space_to_view_track_and_manage_all_your_data: 'Uživajte vse lastnosti vašega osebnega prostora, ki so na voljo za ogled, sledenje in upravljanje vseh vaših podatkov' + equal: 'Enako' error: 'Napaka' exchange_rate: 'Menjalni tečaj' exclusive: 'Izključno' existing_customer: 'Obstoječa stranka' + expires_at: 'Poteče dne' failed: 'Ni uspelo' + female: 'Ženska' + filter: 'Filter' first_name: 'Ime' from: 'Od' fulfill: 'Izpolnitev' @@ -231,6 +241,7 @@ sylius: guest_customer: 'Kupec gost' hello_name: 'Pozdravljeni, %name%' hide_deleted: 'Skrijte izbrisane' + history: 'Zgodovina' home: 'Domov' hostname: 'Ime gostitelja' id: 'ID' @@ -253,6 +264,7 @@ sylius: item: 'Izdelek' items: 'Izdelki' items_total: 'Elementi skupaj' + label: 'Oznaka' last_login: 'Zadnja prijava' last_name: 'Priimek' last_update: 'Zadnja posodobitev' @@ -271,6 +283,7 @@ sylius: login_sylius_store: 'Prijava trgovina Sylius' logout: 'Odjava' main_taxon: 'Glavni takson' + male: 'Moški' manage: 'Upravljanje' manage_adjustments: 'Upravljanje prilagoditev' manage_attributes: 'Upravljaljanje atributov' @@ -308,6 +321,7 @@ sylius: new_comment_posted_on_order: 'Nov komentar objavljen pri naročilu' new_country: 'Nova država' new_currency: 'Nova valuta' + new_customer: 'Nov kupec' new_order: 'Novo naročilo' new_password: 'Novo geslo' new_payment: 'Novo plačilo' @@ -328,6 +342,7 @@ sylius: new_zone: 'Novo območje' newest_products: 'Najnovejši izdelki' next: 'Naprej' + no_account: 'Nimate še računa' no_association_types_to_display: 'Nobena vrsta povezave ni definirana' no_comment: 'Brez komentarjev' no_default_billing_address: 'Ni privzetega naslova za izstavitev računa' @@ -396,6 +411,7 @@ sylius: product_attributes: 'Lastnosti izdelkov' product_details_viewing_product_product: 'Podrobnosti izdelka Ogled izdelka "%product%"' product_options: 'Možnosti izdelka' + products: 'Izdelki' products_categorized_as_name: 'Proizvodi razvrščeni kot "%name%"' products_categorized_under_taxon_taxon: 'Proizvodi Razvrščeni v sistematsko skupino "%taxon%"' products_index_of_all_products_in_your_store: 'Izdelki Indeks vseh izdelkov vaše trgovine' @@ -406,8 +422,10 @@ sylius: promotions: 'Promocije' province: 'Regija' provinces: 'Province' + qty: 'Količina' qty_max: 'Največja količina' qty_min: 'Najmanjša količina' + quantity: 'Količina' ready: 'Pripravljen' recent_customers: 'Nedavni kupci' recent_orders: 'Nedavna naročila' @@ -449,6 +467,7 @@ sylius: shipments: 'Pošiljke' shipped: 'Poslano' shipping_address: 'Naslov za dostavo' + shipping_categories: 'Kategorije dostave' shipping_category: 'Kategorija dostave' shipping_charges: 'Stroški dostave' shipping_method: 'Način dostave' @@ -477,6 +496,8 @@ sylius: success: 'Uspešno' summary: 'Povzetek' support: 'Podpora' + sylius_logo: 'Sylius' + tax_categories: 'Davčne kategorije' tax_category: 'Kategorija davka' tax_rate_details: 'Podrobnosti davčne stopnje' tax_rates: 'Davčne stopnje' @@ -484,6 +505,7 @@ sylius: taxation_categories: 'Kategorije obdavčitev' taxation_settings: 'Nastavitve obdavčitve' taxes: 'Davki' + taxons: 'Taksoni' text: 'Tekst' textarea: 'Besedilno polje' thank_you_for_your_order: 'Hvala za vaše naročilo' @@ -544,6 +566,7 @@ sylius: update: 'Posodobitev' update_product_association_type: 'Posodobite vrsto povezave izdelka' updating_tax_rate: 'Posodabljanje davčne stopnje' + usage_limit: 'Omejitev uporabe' used: 'Uporabljeno' user_details: 'Podrobnosti uporabnika' username: 'Uporabniško ime' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sq.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sq.yml index 7a8703f4f08..a895d24c835 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sq.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sq.yml @@ -45,6 +45,7 @@ sylius: administration_panel_login: 'Login i panelit te administrimit' all: 'Të gjitha' all_your_addresses: 'Të gjitha adresat e tua' + amount: 'Shuma' an_error_occurred: 'Ndodhi një gabim' are_your_sure_you_want_to_perform_this_action: 'Jeni i sigurte se deshironi te egzekutoni kete veprim?' association: 'Lidhje' @@ -98,6 +99,7 @@ sylius: confirmed: 'Konfirmuar' contain_variants: 'Përmban variante' contains: 'Përmban' + content: 'Përmbajtja' countries: 'Vendet' country: 'Shteti' country_details: 'Hollësi për vendin' @@ -138,6 +140,7 @@ sylius: create_user: 'Krijo përdorues' create_variant: 'Krijo variant' create_zone: 'Krijo zonën' + created: 'Krijuar' created_at: 'Krijuar më' creating_a_new_imagine_block: 'Duke krijuar një bllok të ri figure' creating_a_new_simple_block: 'Duke krijuar një bllok të thjeshtë të ri' @@ -171,6 +174,7 @@ sylius: date: 'Data' datetime: 'Data dhe koha' default_billing_address: 'Adresa kryesore e faturimit' + default_currency: 'Monedha e paracaktuar' default_locale: 'Lokalizimi i parazgjedhur' default_shipping_address: 'Adresa kryesore e dërgimit' delete: 'Fshi' @@ -180,6 +184,7 @@ sylius: details: 'Detajet' disable: 'Çaktivizo' disabled: 'I çaktivizuar' + display: 'Pamja' edit: 'Afisho' edit_association_type: 'Ndrysho tipin e lidhjes' edit_channel: 'Modifiko kanalin' @@ -245,9 +250,13 @@ sylius: exchange_rate: 'Norma e shkëmbimit' exclusive: 'Ekskluziv' existing_customer: 'Blerës ekzistues' + expires_at: 'Skadon më' extra_information: 'Informacione shtese' failed: 'Nuk u krye' + female: 'Femër' + filter: 'Filtri' first_name: 'Emri' + forgot_password: 'Harrove fjalëkalimin?' from: 'Nga (dërguesi)' fulfill: 'Përmbyll' gateway: 'Gateway' @@ -264,6 +273,7 @@ sylius: guest_customer: 'Blerës i ftuar' hello_name: 'Përshëndetje %name%' hide_deleted: 'Fshihi elementet e fshira' + history: 'Historia' home: 'Faqja kryesore' hostname: 'Emri i hostit' id: 'ID' @@ -289,6 +299,7 @@ sylius: items: 'Artikujt' items_total: 'Totali i artikujve' jump_to_page: 'Kerce ne faqen' + label: 'Etiketa' last_login: 'Login i fundit' last_name: 'Mbiemri' last_update: 'Ndryshimi i fundit' @@ -299,6 +310,7 @@ sylius: latest_orders: 'Porositë më të fundit' links: 'Linket' list_coupons: 'Listo kuponat' + locale: 'Lokalizimi' locales: 'Rajonet' lock: 'Kyç' locked: 'Kyçur' @@ -308,6 +320,7 @@ sylius: login_sylius_store: 'Futu Sylius arkiv ' logout: 'Dil' main_taxon: 'Tipologjia kryesore' + male: 'Mashkull' manage: 'Kontrollo' manage_adjustments: 'Kontrollo parametrat' manage_attributes: 'Kontrollo atributet' @@ -382,6 +395,8 @@ sylius: new_zone: 'Zonë e re' newest_products: 'Produktet më të reja' next: 'Hapi tjetër' + no_label: 'Jo' + no_account: 'Ende nuk keni krijuar account' no_association_types_to_display: 'Nuk ka tipologji lidhjesh te percaktuar' no_comment: 'Asnjë koment' no_default_billing_address: 'Nuk ka adresë kryesore faturimi' @@ -459,6 +474,7 @@ sylius: product_options: 'Opsionet e produktit' product_review: 'Recensioni i produktit' product_reviews: 'Recensionet e produktit' + products: 'Produktet' products_categorized_as_name: 'Produkte të klasifikuar si "%name%"' products_categorized_under_taxon_taxon: 'Produkte Të kategorizuar nën "%taxon%" tipologjine ' products_index_of_all_products_in_your_store: 'Produkte Indeksi i të gjitha produkteve në arkivin tuaj' @@ -471,8 +487,10 @@ sylius: promotions: 'Reklamat' province: 'Rajoni' provinces: 'Rajonet' + qty: 'Sasitë' qty_max: 'Sasia maksimale' qty_min: 'Sasia minimale' + quantity: 'Sasia' rating: 'Vlersimi' ready: 'Gati' recent_customers: 'Blerësit e fundit' @@ -518,6 +536,7 @@ sylius: shipments: 'Dërgesat' shipped: 'Dërguar' shipping_address: 'Adresa e dërgimit' + shipping_categories: 'Kategoritë e dërgesave' shipping_category: 'Kategoria e dërgesës' shipping_charges: 'Pagesat e dërgimit' shipping_method: 'Mënyra e dërgimit' @@ -550,6 +569,7 @@ sylius: summary: 'Permbledhje' support: 'Mbështetja' sylius_logo: 'Sylius' + tax_categories: 'Kategoritë e taksimit' tax_category: 'Kategoria e taksimit' tax_rate_details: 'Hollësi të normës së taksimit' tax_rates: 'Normat e taksimit' @@ -611,6 +631,7 @@ sylius: total_registrations: 'Regjistrimet totale' tracking_number: 'Numri i gjurmimit' translations: 'Përkthime' + type: 'Lloji' unavailable: 'Nuk gjendet' unit_price: 'Çmimi për njësi' unknown: 'E panjohur' @@ -620,6 +641,7 @@ sylius: update_product_association_type: 'Perditeso tipologji te lidhjes se produktit' updating_tax_rate: 'Duke përditësuar normën e taksimit' usage: 'Perdorimi' + usage_limit: 'Kufiri i përdorimit' used: 'I përdorur' user_details: 'Hollësi të përdoruesit' username: 'Username' @@ -638,6 +660,7 @@ sylius: welcome: 'Mirësevini' welcome_to_our_store: 'Mirë se erdhët në arkivin tone' welcome_to_your_space: 'Mirë se erdhët në hapësirën tuaj' + yes_label: 'Po' you_are_customer_since: 'Ti je blerës qysh prej' you_have_no_addresses_defined: 'Nuk ke adresë të përcaktuar' you_have_no_new_orders: 'Nuk ke porosi të reja' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sr.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sr.yml index 433992eb924..426d62bab47 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sr.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sr.yml @@ -5,8 +5,13 @@ sylius: form: login: username: 'Кросницко име' + password: 'Лозинка' + option: + name: 'Име' ui: + actions: 'Акције' add_action: 'Додајте акцију' + add_choice: 'Додајте избор' add_coupon: 'Додај купон' add_image: 'Додај слику' add_member: 'Додајте члана' @@ -17,18 +22,31 @@ sylius: administration: 'Администрација' administration_dashboard: 'Административна табла' all_your_addresses: 'Све Ваше адресе' + amount: 'Количина' assortment: 'Избор' + attributes: 'Атрибути' availability: 'Доступност' available_on: 'Доступно' back: 'Назад' balance_due: 'Дуговни салдо' + billing_address: 'Адреса за наплату' blocks: 'Блокови' + body: 'Садржај' + calculator: 'Калкулатор' cancel: 'Откажи' + cart_summary: 'Резиме корпе' categorization: 'Категоризација' + category: 'Категорија пореске стопе' + checkout: 'Завршите куповину' choose_file: 'Фајл' city: 'Град' clear_cart: 'Испразни корпу' - company: 'Компанија' + code: 'Кôд' + company: 'Предузеће' + configuration: 'Подешавања' + confirmation: 'Потврда' + confirmation_title: 'Потврда' + content: 'Садржај' countries: 'Земље' country: 'Земља' country_details: 'Детаљи земље' @@ -36,6 +54,7 @@ sylius: create_a_new_address: 'Унеси нову адресу' create_country: 'Додај земљу' create_new_coupon: 'Нови купон' + create_option: 'Креирајте опцију' create_order: 'Креирајте наруџбину' create_payment: 'Креирај плаћање' create_payment_method: 'Креирајте метод плаћања' @@ -48,20 +67,26 @@ sylius: create_taxon: 'Креирај категорију' create_variant: 'Креирај варијанту' create_zone: 'Креирајте зону' + created: 'Креиран' created_at: 'направљено' creation_time: 'Креирано' current_orders: 'Тренутне наруџбине' current_password: 'Тренутна лозинка' current_promotions: 'Тренутне промоције' - dashboard: 'Командна Табла' + current_stock: 'Залихе' + customers: 'Купци' + dashboard: 'Контролна табла' default_billing_address: 'Подразумевана адреса за плаћање' default_shipping_address: 'Подразумевана адреса за слање' delete: 'Обриши' delete_image: 'Избришите слику' + description: 'Опис' edit: 'Измени' edit_my_address: 'Измени моју адресу' editing_country: 'Измените земљу' editing_coupon: 'Ажурирање купона' + editing_exchange_rate: 'Измени курсну листу' + editing_option: 'Ажурирање опција' editing_order: 'Ажурирање наруџбине' editing_payment: 'Ажурирање плаћања' editing_payment_method: 'Ажурирање метода плаћања' @@ -73,8 +98,13 @@ sylius: editing_taxon: 'Ажурирање категоризације' editing_variant: 'Ажурирање варијанте' editing_zone: 'Ажурирање зоне' + enabled: 'Омогућено' + ends_at: 'Завршава се' error: 'Грешка' + exchange_rates: 'Курсна листа' existing_customer: 'Постојећа муштерија' + filter: 'Филтер' + first_name: 'Име' general_info: 'Опсте информације' general_settings: 'Генерална подешавања' generate: 'Генериши' @@ -83,6 +113,8 @@ sylius: generating_coupons: 'Генерисање купона' grand_total: 'Свеукупно' home: 'Почетна страна' + id: 'ИД' + images: 'Слике' information: 'Обавештење' inventory_here_you_can_see_current_stock_levels: 'Лагер Преглед стања залиха' inventory_state: 'стање залиха' @@ -90,11 +122,14 @@ sylius: invoice: 'Фактура' items_total: 'Укупно производа' last_login: 'Последње пријављивање' + last_name: 'Презиме' last_update: 'последња измена' last_week_orders: 'Прошлонедељне поруџбине' last_week_revenue: 'Прошлонедељна зарада' + lastname: 'Презиме' latest_orders: 'Најновије наруџбине' list_coupons: 'Листа купона' + locales: 'Локални' login: 'Пријави се' login_button: 'Пријави се' logout: 'Одјави се' @@ -114,12 +149,14 @@ sylius: method: 'метод' modified: 'измењено' my_account: 'Мој налог' + name: 'Име' new_country: 'Нова земља' new_order: 'Нова наруџбина' new_password: 'Нова лозинка' new_payment: 'Ново плаћање' new_payment_method: 'Нови метод плаћања' new_product: 'Нови производ' + new_product_option: 'Нова опција производа' new_product_variant: 'Нова варијанта производа' new_promotion: 'Нова промоција' new_shipping_category: 'Нова категорија слања' @@ -139,7 +176,9 @@ sylius: no_sku: '<и>Нема СКУ' no_tax_category: 'Нема категорије пореза' no_taxes: 'Нису додати порези' + number: 'Број' number_of_orders: 'Број наруџбина' + options: 'Опције' order: 'наруџбина' order_details: 'Детаљи Ваше наруџбине' order_summary: 'Резиме наруџбине' @@ -148,29 +187,40 @@ sylius: out_of_stock: 'Нема на лагеру' overview_of_your_store: 'Преглед продавнице' pages: 'Стране' - payment_methods: 'Опције плаћања' + parent: 'Родитељ' + password: 'Лозинка' + payment_method: 'Метод плаћања' + payment_methods: 'Методи плаћања' payment_state: 'Стање плаћања' payments: 'Плаћања' + pending: 'Обрада у току' phone_number: 'Број телефона' place_order: 'Креирајте наруџбину' placed_at: 'Постављен на' postcode: 'Поштански број' presentation: 'Приказ' previous: 'Предходна' + price: 'Цена' product: 'Производ' product_details_viewing_product_product: 'Детаљи производа Преглед производа "<стронг>%product%"' + product_options: 'Опције производа' + products: 'Производи' products_categorized_under_taxon_taxon: 'Производи Категорисани у "%taxon%"' products_index_of_all_products_in_your_store: 'Производи Сви производи у продавници' promotion_details: 'Детаљи промоције' promotion_total: 'Укупно промоције' promotions: 'Промоције' + properties: 'Атрибути' province: 'Провинција' provinces: 'Провинције' + qty: 'Количина' + quantity: 'Количина' recent_orders: 'Последње наруџбине' recent_users: 'Последњи корисници' register: 'Регистрација' register_button: 'Регистрација' retail_price: 'Продајна цена' + rules: 'Правила' sales: 'Продаје' sales_this_month: 'Продаје' save: 'Сачувај' @@ -181,6 +231,8 @@ sylius: shipment_details: 'Детаљи пошиљке' shipment_state: 'Стање пошиљке' shipments: 'Пошиљке' + shipping_address: 'Адреса за слање' + shipping_categories: 'Категорије испорука' shipping_charges: 'Цена испоруке' shipping_method: 'Начин доставе' shipping_method_details: 'Детаљи налина доставе' @@ -189,7 +241,10 @@ sylius: shipping_total: 'Укупно испорука' shop_by: 'Купујте по' sign_in_to_the_store_or_create_new_account: 'Улогујете се или направите нови налог' + sku: 'СКУ' slideshow: 'Галерија' + starts_at: 'Почиње' + state: 'стање' street: 'Улица' success: 'Успех' sylius_logo: 'Сyлиус' @@ -203,16 +258,21 @@ sylius: there_are_no_images_for_this_product: 'Нема слика за овај производ' there_are_no_options_for_this_product: 'Нема опција за овај производ' there_are_no_taxons_for_this_product: 'сyлиус.продуцт.но_таxонс' + this_months_statistics: 'Статистика овога месеца' + title: 'Наслов' total: 'Укупно' total_orders: 'Укупно поруџбина' total_registrations: 'Укупно пријављених' tracking_number: 'Број за праћење поруџбине' type: 'Тип' + unit_price: 'Цена по комаду' updating_tax_rate: 'Ажурирање пореске стопе' + usage_limit: 'Ограничење коришћења' used: 'Коришћено' user_details: 'Детаљи корисника' username: 'Кросницко име' users_list_of_all_users_registered_in_store: 'Корисници Листа свих регистрованих корисника' + variant_selection_method: 'Метод избора варијанте производа' view_more: 'Више' warning: 'Упозпрење' welcome_to_your_space: 'Добро дошли на Вашу страницу' @@ -220,5 +280,6 @@ sylius: you_have_no_new_orders: 'Нема нових наруџбина' your_cart_is_empty: 'Ваша корпа је празна' your_products: 'Ваши производи' + zone: 'Зона' zone_details: 'Детаљи зоне' zones: 'Зоне' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sr_CS.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sr_CS.yml index 350889d1705..d468eb2237e 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sr_CS.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sr_CS.yml @@ -36,6 +36,8 @@ sylius: admin_users: 'Administratori' all: 'Sve' all_your_addresses: 'Sve vaše adrese' + amount: 'Iznos' + association_types: 'Tipovi asocijacija' assortment: 'Asortiman' attributes: 'Atributi' author: 'Autor' @@ -57,8 +59,10 @@ sylius: call_us: 'Pozovite nas!' cancel: 'Otkaži' cancelled: 'Otkazano' + cart_summary: 'Rezime korpe' categorization: 'Kategorizacija' - category: 'Kategorija' + category: 'Kategorija poreske stope' + change_password: 'Promenite lozinku' channels: 'Kanali' checkbox: 'Polje za potvrdu' checkout: 'Plaćanje' @@ -122,7 +126,7 @@ sylius: customer_id: 'Kupac ID' customer_login: 'Prijava Korisnika' customers: 'Kupci' - dashboard: 'Komandna Tabla' + dashboard: 'Kontrolna tabla' data: 'Podaci' date: 'Datum' datetime: 'Datum i vreme' @@ -145,6 +149,7 @@ sylius: edit_my_address: 'Izmeni moju adresu' editing_country: 'Izmenite zemlju' editing_coupon: 'Ažuriranje kupona' + editing_option: 'Ažuriranje opcija' editing_order: 'Ažuriranje narudžbine' editing_payment: 'Ažuriranje plaćanja' editing_payment_method: 'Ažuriranje metoda plaćanja' @@ -311,6 +316,7 @@ sylius: number_of_orders: 'Broj narudžbina' options: 'Opcije' order: 'narudžbina' + order_history: 'Istorija narudžbina' order_item_product: 'Stavka' order_summary: 'Rezime narudžbine' order_value: 'Vrednost narudžbine' @@ -325,6 +331,7 @@ sylius: payments: 'Plaćanja' pending: 'Na čekanju' percent: 'Procenat' + personal_information: 'Lični podaci' phone_number: 'Broj telefona' place_order: 'Kreirajte narudžbinu' postcode: 'Poštanski broj' @@ -335,14 +342,19 @@ sylius: product: 'Proizvod' product_association_type_index: 'Tipovi asocijacija' product_details_viewing_product_product: 'Detalji proizvoda Pregled proizvoda "%product%"' + product_options: 'Opcije proizvoda' + product_reviews: 'Opisi proizvoda' products: 'Proizvodi' products_categorized_under_taxon_taxon: 'Proizvodi Kategorisani u "%taxon%"' products_index_of_all_products_in_your_store: 'Proizvodi Svi proizvodi u prodavnici' promotion_details: 'Detalji promocije' promotion_total: 'Ukupno promocije' promotions: 'Promocije' + properties: 'Atributi' province: 'Pokrajina' provinces: 'Provincije' + qty: 'Količina' + ratio: 'Odnos' ready: 'Spremno' recent_orders: 'Poslednje narudžbine' recent_users: 'Poslednji korisnici' @@ -377,7 +389,9 @@ sylius: sign_in_to_the_store_or_create_new_account: 'Ulogujete se ili napravite novi nalog' sku: 'SKU' slideshow: 'Galerija' + source_currency: 'Izvorna valuta' starts_at: 'Počinje' + state: 'stanje' street: 'Ulica' success: 'Uspeh' tax_category: 'Kategorija proizvoda' @@ -398,6 +412,7 @@ sylius: total: 'Ukupno' translations: 'Prevodi' type: 'Tip' + unit_price: 'Cena po komadu' unknown: 'Nеpoznato' updating_tax_rate: 'Ažuriranje poreske stope' usage_limit: 'Ograničenje korišćenja' @@ -406,6 +421,7 @@ sylius: username: 'Krosnicko ime' users_list_of_all_users_registered_in_store: 'Korisnici Lista svih registrovanih korisnika' value: 'Vrednost' + values: 'Vrednosti' variant_selection_method: 'Metod izbora varijante proizvoda' view_more: 'Više' void: 'Otkazano' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sv.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sv.yml index ce3d56d0e1b..2d53a9f8468 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sv.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.sv.yml @@ -199,7 +199,7 @@ sylius: current_password: 'Nuvarande lösenord' current_promotions: 'Aktuella kampanjer' current_stock: 'I lager' - customer: 'Kunder' + customer: 'Kund' customer_care: 'Kundtjänst' customer_details: 'Kunduppgifter' customer_groups: 'Kundgrupper' @@ -558,7 +558,7 @@ sylius: per_customer_usage_limit: 'Användningsbegränsning per kund' percent: 'Procent' permissions: 'Rättigheter' - personal_information: 'Personuppgifter' + personal_information: 'Personlig information' phone_number: 'Telefonnummer' place_order: 'Beställ' placed_an_order: 'Din beställning lyckades.' @@ -603,8 +603,9 @@ sylius: qty: 'Antal' qty_max: 'Antal max' qty_min: 'Antal min' + quantity: 'Antal' rating: 'Betyg' - ratio: 'Förhållande' + ratio: 'Kurs' ready: 'Redo' recent_customers: 'Senaste kunder' recent_orders: 'Senaste ordar' @@ -667,7 +668,6 @@ sylius: shipping_address: 'Leveransadress' shipping_and_payment_methods: 'Leverans- och betalningsmetoder' shipping_categories: 'Fraktkategorier' - shipping_category: 'Kategori' shipping_address_changes_history: 'Leveransadress ändrar historiken' shipping_charges: 'Fraktkostnader' shipping_method: 'Leveransmetod' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.th.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.th.yml index 3f593d1c452..fe085c82388 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.th.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.th.yml @@ -4,11 +4,11 @@ sylius: form: login: - username: 'ชื่อผู้ใช้' - password: 'รหัสผ่าน' - remember_me: 'จำการเข้าระบบของฉันไว้' + username: 'Username' + password: 'Password' + remember_me: 'จำฉันไว้' option: - name: 'ชื่อ' + name: 'ชื่อภาษา' notes: 'หมายเหตุเพิ่มเติม' variant: tracked: 'ติดตาม' @@ -58,7 +58,7 @@ sylius: admin_users: 'ผู้ดูแลระบบ' all: 'ทั้งหมด' all_your_addresses: 'รายการที่อยู่ทั้งหมดของคุณ' - amount: 'ยอดเงิน' + amount: 'ยอดรวม' an_error_occurred: 'เกิดข้อผิดพลาด' api: 'Api' apply_coupon: 'ใช้คูปอง' @@ -94,7 +94,7 @@ sylius: browse_your_orders_from_the_past: 'เรียกดูใบสั่งซื้อที่ผ่านมาของคุณ' build: 'สร้าง' by_position: 'โดยตำแหน่ง' - calculator: 'การคำนวณราคา' + calculator: 'การคำนวณ' call_us: 'โทรหาเรา' cancel: 'ยกเลิก' cancelled: 'ถูกยกเลิก' @@ -186,6 +186,7 @@ sylius: create_user: 'สร้างผู้ใช้' create_variant: 'สร้าง Variant' create_zone: 'สร้างโซน' + created: 'สร้าง' created_at: 'สร้างเมื่อ' creating_a_new_imagine_block: 'สร้างบล็อกรูปภาพ' creating_a_new_simple_block: 'สร้างบล็อกง่ายๆ ใหม่' @@ -228,13 +229,13 @@ sylius: default_address: 'ที่อยู่เริ่มต้น' default_billing_address: 'ค่าเริ่มต้นที่อยู่เรียกเก็บเงิน' default_currency: 'สกุลเงินเริ่มต้น' - default_locale: 'ภาษาเริ่มต้น' + default_locale: 'ตำแหน่งที่ตั้งเริ่มต้น' default_shipping_address: 'ค่าเริ่มต้นที่อยู่ในการจัดส่ง' delete: 'ลบ' delete_image: 'ลบรูปภาพ' deleted: 'ลบทิ้งแล้ว' delivery_and_shipping: 'การจัดส่งสินค้า' - description: 'รายละเอียด' + description: 'คำอธิบาย' details: 'ราย​ละเอียด' disable: 'ปิดการใช้งาน' disabled: 'ปิดการใช้งาน' @@ -310,7 +311,7 @@ sylius: emails: 'อีเมล' empty: 'ว่างเปล่า' enable: 'เปิดใช้งาน' - enabled: 'เปิดใช้งานแล้ว' + enabled: 'เปิดใช้งาน' end_date: 'วันสิ้นสุด' ends_at: 'สิ้นสุด' ends_with: 'ลงท้ายด้วย' @@ -360,6 +361,7 @@ sylius: hello: 'สวัสดี!' hello_name: 'สวัสดี %name%' hide_deleted: 'ซ่อนรายการที่ลบแล้ว' + history: 'ประวัติย้อนหลัง' home: 'หน้า​แรก​' hostname: 'Hostname' id: 'ID' @@ -404,7 +406,7 @@ sylius: list_coupons: 'รายการคูปอง' list_variants: 'รายการสินค้าย่อย' locale: 'ภาษา' - locales: 'ภาษา' + locales: 'ภาษาที่ใช้' lock: 'ล็อค' locked: 'ล็อคแล้ว' logged_at: 'เข้าสู่ระบบเมื่อ' @@ -476,7 +478,7 @@ sylius: move_up: 'ย้ายขึ้น' my_account: 'บัญชีของฉัน' n_a: 'N/A' - name: 'ชื่อ' + name: 'ชื่อภาษา' need_assistance: 'ต้องการความช่วยเหลือใช่หรือไม่?' new: 'รายการใหม่' new_admin_user: 'ผู้ดูแลระบบใหม่' @@ -515,6 +517,7 @@ sylius: newest_first: 'สินค้าใหม่' next: 'ถัดไป' no_label: 'ไม่ใช่' + no_account: 'ไม่มีบัญชี' no_addresses: 'ไม่มีรายการสำหรับแสดง' no_association_types_to_display: 'ไม่มีชนิดความสัมพันธ์กำหนดไว้' no_comment: 'ไม่มีความเห็น' @@ -572,14 +575,14 @@ sylius: page: 'หน้า' pages: 'หน้า' paid: 'ชำระเงินแล้ว' - parent: 'หมวดแม่' + parent: 'หมวดหมู่หลัก' partially_paid: 'ชำระเงินบางส่วน' partially_shipped: 'ส่งบางส่วน' - password: 'รหัสผ่าน' + password: 'Password' payment: 'การชำระเงิน' payment_details: 'รายละเอียดการชำระเงิน' payment_method: 'วิธีการชำระเงิน' - payment_methods: 'วิธีการชำระเงิน' + payment_methods: 'วิธีชำระเงิน' payment_mode: 'วิธีการชำระเงิน' payment_ready_to_pay: 'คุณสามารถทำการชำระเงินได้' payment_state: 'สถานะการชำระเงิน' @@ -638,6 +641,7 @@ sylius: qty: 'จำนวน' qty_max: 'ปริมาณสูงสุด' qty_min: 'ปริมาณต่ำสุด' + quantity: 'จำนวน' rating: 'การจัดอันดับ' ratio: 'อัตราส่วน' ready: 'พร้อมส่ง' @@ -656,7 +660,7 @@ sylius: reject: 'ปฏิเสธ' rejected: 'ปฏิเสธ' release_inventory: 'รายการสินค้าคงคลัง' - remember_me: 'จำการเข้าระบบของฉันไว้' + remember_me: 'จำฉันไว้' remove_attribute: 'ลบคุณลักษณะ (Attribute)' repeat_new_password: 'ใส่รหัสอีกครั้ง' report_details: 'รายละเอียดของรายงาน' @@ -761,7 +765,7 @@ sylius: taxation_settings: 'การตั้งค่าภาษี' taxes: 'ภาษี' taxonomy: 'การจัดประเภท' - taxons: 'หมวดหมู่' + taxons: 'การจัดหมวดหมู่' terms_and_conditions: 'ข้อกำหนดและเงื่อนไข' text: 'ข้อความ (Text)' textarea: 'กล่องข้อความ (Textarea)' @@ -836,11 +840,11 @@ sylius: updating_tax_rate: 'ปรับปรุงอัตราภาษี' updating_date: 'วันปรับปรุง' usage: 'การใช้งาน' - usage_limit: 'ขีดจำกัดการใช้งาน' + usage_limit: 'จำกัดการใช้งาน' use_the_contact_form_below_to_send_us_a_message: 'ใช้แบบฟอร์มติดต่อด้านล่างเพื่อส่งข้อความ' used: 'ใช้' user_details: 'รายละเอียดผู้ใช้' - username: 'ชื่อผู้ใช้' + username: 'Username' users_list_of_all_users_registered_in_store: 'ผู้ใช้ รายชื่อผู้ใช้ทั้งหมด' value: 'ค่า' values: 'ค่า' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.tr.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.tr.yml index 39f8270821a..84e92bfd61a 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.tr.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.tr.yml @@ -108,7 +108,7 @@ sylius: category_requirements: 'Kategori gereksinimleri' change_address: 'Adresi değiştir' change_file: 'Dosyayı değiştir' - change_password: 'Şifreyi değiştir' + change_password: 'Şifre değiştir' change_payment_method: 'Ödeme yöntemini değiştir' change_position: 'Poziysonu değiştir' change_shipping_method: 'Gönderim metodunu değiştir' @@ -218,7 +218,7 @@ sylius: customer_notified: 'Müşteri bildirim' customer_orders: 'Müşteri siparişleri' customer_since: 'Tarihinden beri müşteri' - customers: 'Müşteriler' + customers: 'müşteriler' customers_list_of_all_customers_in_store: 'Müşteriler Mağazanın tüm müşterilerinin listesi' customize_default_metadata: 'Varsayılan meta verileri özelleştirmek' customize_metadata: 'Meta verileri özelleştirmek' @@ -421,7 +421,7 @@ sylius: login_sylius_store: 'Oturum açma Sylius saklamak' logout: 'Çıkış yap' main_taxon: 'Ana takson' - male: 'Erkek' + male: 'Bay' manage: 'Yönet' manage_adjustments: 'Ayarları yönet' manage_admin_users: 'Yöneticileri düzenle' @@ -702,7 +702,7 @@ sylius: shipment_state: 'Teslimat durumu' shipments: 'Kargo İşlemleri' shipped: 'Kargolandı' - shipping: 'Gönderim' + shipping: 'Nakliye' shipping_address: 'Teslimat adresi' shipping_and_payment_methods: 'Gönderim ve ödeme metodları' shipping_categories: 'Kargo Kategorileri' @@ -711,7 +711,7 @@ sylius: shipping_charges: 'Kargo ücretleri' shipping_method: 'Gönderim metodu' shipping_method_details: 'Kargo yöntemi ayrıntıları' - shipping_methods: 'Gönderim metodları' + shipping_methods: 'Kargolama Yöntemleri' shipping_state: 'İl' shipping_total: 'Toplam kargo ücreti' shop_by: 'benim alışveriş' @@ -736,7 +736,7 @@ sylius: sort_by_date: 'Tarihe göre sırala' source_currency: 'Para birimi kaybağı' start_date: 'Başlangıç Tarihi' - starts_at: ''' Dan başlar' + starts_at: ''' Dan başlar (start at)' starts_with: 'Başlıyor' state: 'Durum' status: 'Durum' @@ -760,6 +760,7 @@ sylius: taxation_categories: 'Vergi kategorileri' taxation_settings: 'Vergilendirme Ayarları' taxes: 'Vergiler' + taxonomy: 'Bölümlendirme' taxons: 'Kategoriler' terms_and_conditions: 'Koşullar ve şartlar' text: 'Metin' @@ -807,7 +808,7 @@ sylius: total_registrations: 'Toplam kayıtlar' tracking_number: 'Kargo takip numarası' translations: 'Çeviriler' - type: 'Türü' + type: 'Tür' unavailable: 'sylius -> ürün -> kullanılamıyor' unit_price: 'Birim fiyatı' unknown: 'Bilinmiyor' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.uk.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.uk.yml index fd84510ebe3..0d58db6b747 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.uk.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.uk.yml @@ -224,7 +224,7 @@ sylius: customize_metadata: 'Користувацькі налаштування метаданих' customize_products_metadata: 'Користувацькі налаштування метаданих продукції' customizing_metadata: 'Користувацьке налаштування метаданих' - dashboard: 'Панель керування' + dashboard: 'Приладова дошка' data: 'Дані' date: 'Дата' datetime: 'Дата й час' @@ -314,7 +314,7 @@ sylius: emails: 'Повідомлення електронної пошти' empty: 'Порожній' enable: 'Увімкнути' - enabled: 'Увімкнено' + enabled: 'Ввімкнено' end_date: 'Дата завершення' ends_at: 'Кінець дії' ends_with: 'Закінчується на' @@ -420,7 +420,7 @@ sylius: login_sylius_store: 'Вхід крамниця Sylius' logout: 'Вихід' main_taxon: 'Основний таксон' - male: 'Чоловічий' + male: 'Чоловіча' manage: 'Управління' manage_adjustments: 'Керувати налаштуваннями' manage_admin_users: 'Управління адміністраторами' @@ -651,7 +651,7 @@ sylius: qty_min: 'Мінімальна к-сть' quantity: 'Кількість' rating: 'Рейтинг' - ratio: 'По рейтингу' + ratio: 'Рейтинг' ready: 'Готове' recent_customers: 'Останні відвідувачі' recent_orders: 'Останні замовлення' @@ -660,7 +660,7 @@ sylius: refund: 'Повернення коштів' refunded: 'Відшкодовано' register: 'Реєстрація' - register_button: 'Зареєструватись' + register_button: 'Реєстрація' register_in_the_store: 'Реєстрація в крамниці' registered_customers: 'Зареєстровані клієнти' registration_create_an_account_in_store: 'Реєстрація Створіть обліковку в крамниці' @@ -688,8 +688,8 @@ sylius: reviews: 'Відгуки' roles: 'Ролі' rules: 'Правила' - sales: 'Продажі' - sales_this_month: 'Продажі' + sales: 'Збут' + sales_this_month: 'Збут' save: 'Зберегти' save_changes: 'Зберегти зміни' save_positions: 'Зберегти позиції' @@ -746,7 +746,7 @@ sylius: slideshow: 'Слайд-шоу' slideshow_blocks: 'Слайд-шоу блоки' sort_by_date: 'Сортування за датою' - source_currency: 'Початкова валюта' + source_currency: 'Джерело валюти' start_date: 'Дата початку' starts_at: 'Початок дії' starts_with: 'Розпочати з' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.vi.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.vi.yml index f8a222ec5c3..ab29e5af03c 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.vi.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.vi.yml @@ -10,10 +10,15 @@ sylius: ui: add_member: 'Thêm thành viên' add_province: 'Thêm tỉnh' + amount: 'Số tiền' + attributes: 'Thuộc tính' + calculator: 'Máy tính' + category: 'Danh mục' channels: 'Kênh' city: 'Thành phố' code: 'Mã' company: 'Công ty' + configuration: 'Cấu hình' confirmation: 'Xác nhận' confirmation_title: 'Xác nhận' countries: 'Quốc gia' @@ -21,14 +26,22 @@ sylius: coupon: 'Phiếu giảm giá' create: 'Tạo' create_country: 'Tạo quốc gia' + create_option: 'Tạo tùy chọn' created_at: 'Được tạo vào lúc' current_orders: 'Đơn đặt hàng hiện tại' customer: 'Khách hàng' customers: 'Khách hàng' dashboard: 'Bảng tin' deleted: 'Đã bị xoá' + description: 'Mô tả' + edit: 'Chỉnh sửa' + editing_exchange_rate: 'Chỉnh sửa tỷ giá hối đoái' + editing_option: 'Chỉnh sửa tùy chọn' + enabled: 'Đã kích hoạt' error: 'Lỗi' + exchange_rates: 'Tỷ giá ngoại tệ' existing_customer: 'Khách hàng hiện tại' + first_name: 'Tên' general_settings: 'Cài đặt chung' generate: 'Tạo' id: 'ID' @@ -37,9 +50,11 @@ sylius: information: 'Thông tin' inventory: 'Hàng tồn kho' inventory_index: 'Hàng tồn kho' + last_name: 'Họ' last_update: 'Cập nhật lần cuối' last_week_orders: 'Đơn đặt hàng tuần trước' last_week_revenue: 'Doanh thu tuần trước' + lastname: 'Họ' links: 'Liên kết' locales: 'Miền địa phương' login: 'Đăng nhập' @@ -47,11 +62,15 @@ sylius: logout: 'Đăng xuất' manage: 'Quản lý' manage_countries: 'Quản lý quốc gia' + manage_options: 'Quản lý tuỳ chọn' marketing: 'Tiếp thị' members: 'Thành viên' menus: 'Menu' name: 'Tên' + new: 'Mới' new_country: 'Tạo quốc gia mới' + new_exchange_rate: 'Tỷ giá ngoại tệ mới' + new_product_option: 'Tạo tuỳ chọn sản phẩm mới' newest_products: 'Sản phẩm mới nhất' number_of_orders: 'Số lượng đơn đặt hàng' options: 'Tùy chọn' @@ -59,15 +78,19 @@ sylius: orders: 'Đơn đặt hàng' pages: 'Trang' password: 'Mật khẩu' + payment_method: 'Phương thức thanh toán' payment_methods: 'Phương thức thanh toán' payments: 'Thanh toán' phone_number: 'Số điện thoại' place_order: 'Đặt hàng' postcode: 'Mã bưu chính' price: 'Giá' + product_options: 'Tuỳ chọn cho sản phẩm' + products: 'Sản phẩm' promotions: 'Chương trình khuyến mãi' province: 'Tỉnh' provinces: 'Tỉnh' + qty: 'Số lượng' register: 'Đăng ký' register_button: 'Đăng ký' reports: 'Báo cáo' @@ -76,14 +99,19 @@ sylius: scope: 'Phạm vi' search: 'Tìm kiếm' shipments: 'Vận chuyển' + shipping_categories: 'Thể loại' shipping_method: 'Phương pháp vận chuyển' shipping_methods: 'Phương thức vận chuyển' sign_in_to_the_store_or_create_new_account: 'Đăng nhập vào hoặc tạo tài khoản mới' sku: 'MÃ SẢN PHẨM' street: 'Đường Phố' success: 'Thành công' + sylius_logo: 'Sylius' taxes: 'Thuế' + taxons: 'Phân loại' title: 'Tiêu đề' total: 'Tổng cộng' type: 'Phân loại' + unit_price: 'Đơn giá' warning: 'Cảnh báo' + zone: 'Khu vực' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.zh_CN.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.zh_CN.yml index 863ccc7f851..31cfd43d764 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.zh_CN.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.zh_CN.yml @@ -38,10 +38,10 @@ sylius: add_new_email: '添加新的电子邮件' add_new_permission: '添加新的权限' add_new_role: '添加新角色' - add_province: '添加省份' + add_province: '添加省' add_rule: '添加规则' add_to_cart: '放进购物车' - add_value: '添加值' + add_value: '增加' add_your_review: '添加评论' adding_new_customer_groups: '添加新的客户组' adding_new_email: '添加新的电子邮件' @@ -104,7 +104,7 @@ sylius: cart_locked: '购物车已锁定' cart_summary: '购物车清单' categorization: '分类' - category: '分类' + category: '税目' category_requirements: '类别要求' change_address: '修改地址' change_file: '变更' @@ -115,7 +115,7 @@ sylius: change_your_password: '更改您的密码' changes: '更改' channel: '頻道' - channels: '频道' + channels: '门店' charges_and_taxes: '费和税' cheapest_first: '最便宜的优先' checkbox: '复选框' @@ -148,7 +148,7 @@ sylius: contains: '包含' content: '内容' countries: '国家' - country: '国家' + country: 'test' country_details: '国家详细信息' coupon: '优惠券' coupon_based: '基于优惠券' @@ -224,7 +224,7 @@ sylius: customize_metadata: '自定义元数据' customize_products_metadata: '自定义产品元数据' customizing_metadata: '自定义元数据' - dashboard: '仪表板' + dashboard: '统计' data: '数据' date: '日期' datetime: '日期' @@ -332,7 +332,7 @@ sylius: extra_notes: '额外的备注' failed: '失败' faqs: '常见问题' - female: '女性' + female: '女' filter: '筛选' filters: '筛选' fill_in_your_billing_and_shipping_addresses: '填写您的账单和配送地址' @@ -421,7 +421,7 @@ sylius: login_sylius_store: '登录 Sylius 店铺' logout: '注销' main_taxon: '主分类' - male: '男性' + male: '男' manage: '管理' manage_adjustments: '管理调价' manage_admin_users: '管理管理员' @@ -469,7 +469,7 @@ sylius: manage_your_product_catalog: '管理您的产品目录' manage_your_saved_addresses: '管理您已保存的地址' manage_zones: '管理区域' - marketing: '市场营销' + marketing: '市场' media: '图片和视频' members: '会员' menu_nodes: '菜单节点' @@ -566,7 +566,7 @@ sylius: order_comments: '订单的评论' order_confirmation_name: '订单确认' order_details: '您的订单的详细信息' - order_history: '历史订单' + order_history: '我的订单' order_item_product: '项' order_state: '订单状态' order_summary: '订单汇总' @@ -590,7 +590,7 @@ sylius: payment: '付款' payment_details: '付款详情' payment_method: '付款方式:' - payment_methods: '支付方式' + payment_methods: '付款方法' payment_mode: '付款模式' payment_ready_to_pay: '你现在可以进行支付' payment_state: '付款状态' @@ -608,7 +608,7 @@ sylius: placed_at: '放置在' please_sign_in: '请登录' postcode: '邮编' - position: '位置' + position: '优先级' powered_by: '基于' preferences: '偏好设置' presentation: '演示' @@ -716,7 +716,7 @@ sylius: shipment_state: '配送状态' shipments: '发货' shipped: '已发货' - shipping: '配送' + shipping: '运费' shipping_address: '送货地址' shipping_and_payment_methods: '运送及付款方法' shipping_categories: '发货类别' diff --git a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.zh_TW.yml b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.zh_TW.yml index c36811ea237..ed79dbe161e 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/translations/messages.zh_TW.yml +++ b/src/Sylius/Bundle/UiBundle/Resources/translations/messages.zh_TW.yml @@ -23,36 +23,53 @@ sylius: add_attributes: '新增屬性' add_member: '新增' add_province: '添加省份' + add_value: '添加值' address_book: '通訊錄' + admin_users: '管理員' + all: '全部' amount: '金額' + association_types: '關聯類型' attributes: '屬性' base_currency: '基準幣別' body: '内文' calculator: '計算機' + cancelled: '已取消' category: '類別' + change_password: '更改密碼' channels: '頻道' checkbox: '複選框' + checkout: '結帳' city: '城市' code: '代碼' color: '顔色' company: '公司' configuration: '配置' + countries: '國家' country: '國家' coupon: '折價券' currencies: '貨幣' customer: '客戸' customers: '客戸' + dashboard: '後台管理' date: '日期' datetime: '日期時間' default_locale: '預設地域設置' + description: '説明' enabled: '啓用' exchange_rate: '匯率' + exchange_rates: '匯率' extra_notes: '附註' + first_name: '名' from: '從' hostname: '主機名稱' id: 'ID' image: '圖像' + images: '圖像' integer: '整數' + inventory: '庫存' + inventory_index: '庫存' + last_name: '姓' + lastname: '姓' locales: '地區設定' main_taxon: '主要分類' marketing: '市場行銷' @@ -60,18 +77,26 @@ sylius: name: '名稱' number: '數字' options: '選項' + order_history: '訂單記錄' orders: '訂單' + password: '密碼' payment_methods: '付款方式' payment_state: '付款狀態' + pending: '待處理' percent: '百分比' + personal_information: '個人資訊' phone_number: '電話號碼' postcode: '郵編' position: '位置' + product: '産品' + product_reviews: '産品評論' products: '産品' promotions: '促銷推廣' province: '省' provinces: '省份' + ratio: '比率' ready: '就緒' + remember_me: '記住我' returned: '已退還' roles: '角色' sales: '銷售' @@ -79,9 +104,12 @@ sylius: scope: '範圍' shipped: '已出貨' shipping_categories: '配送類別' + shipping_category: '付運類別' shipping_methods: '配送方式' + source_currency: '來源幣別' state: '狀態' street: '街道' + target_currency: '目標幣別' tax_category: '税别' taxons: '分類' text: '文字' @@ -92,5 +120,8 @@ sylius: translations: '翻譯' type: '類型' username: '使用者名稱' + value: '數值' + values: '數值' variant_selection_method: '變數選擇方法' + zone: '區域' zones: '區域' diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/flashes.hu.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/flashes.hu.yml new file mode 100644 index 00000000000..2e4efa91134 --- /dev/null +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/flashes.hu.yml @@ -0,0 +1,12 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + user: + change_password: 'Jelszavát sikeresen megváltoztattuk!' + reset_password: 'Jelszava sikeresen visszaállítva!' + reset_password_request: 'Ha az általad megadott email létezik rendszerünkben, akkor küldtünk egy emailt a további instrukciókkal.' + verify_email: 'Email címe megerősítése sikeres.' + verify_email_by_invalid_token: 'Ez ellenőrzőkód hibás.' + verify_email_request: 'Egy megerősítő link el lett küldve az e-mail címére.' + verify_verified_email: 'Az email címed már meg lett erősítve.' diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/flashes.lt.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/flashes.lt.yml new file mode 100644 index 00000000000..975d5508a63 --- /dev/null +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/flashes.lt.yml @@ -0,0 +1,12 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + user: + change_password: 'Jūsų slaptažodis buvo pakeistas sėkmingai!' + reset_password: 'Jūsų slaptažodis atstatytas sėkmingai!' + reset_password_request: 'Jei nurodytas el. pašto adresas yra užregistruotas, tada mes išsiųsime instrukciją apie tai, kaip iš naujo nustatyti naują slaptažodį.' + verify_email: 'Elektroninio pašto adresas sėkmingai patikrintas.' + verify_email_by_invalid_token: 'Patvirtinimo raktas yra neteisingas.' + verify_email_request: 'Jūsų el. pašto adresu buvo išsiųstas el. laiškas su patvirtinimo nuoroda.' + verify_verified_email: 'Jūsų elektroninio pašto adresas jau yra patikrintas.' diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/flashes.pt.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/flashes.pt.yml index fb447376e1d..231e16ddcc3 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/flashes.pt.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/flashes.pt.yml @@ -4,4 +4,9 @@ sylius: user: change_password: 'A sua palavra-passe foi alterada com sucesso!' + reset_password: 'A sua palavra-passe foi redefinida com sucesso!' + reset_password_request: 'Se o email especificado existir no sistema, receberá um e-mail com instruções para redefinir a sua palavra-passe.' + verify_email: 'O seu endereço de e-mail foi verificado com sucesso.' + verify_email_by_invalid_token: 'O token de verificação é inválido.' + verify_email_request: 'Um e-mail com um link de verificação foi enviado para seu endereço de e-mail.' verify_verified_email: 'O seu e-mail já foi verificado.' diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/flashes.sl.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/flashes.sl.yml new file mode 100644 index 00000000000..b2d79648dc0 --- /dev/null +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/flashes.sl.yml @@ -0,0 +1,8 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + user: + change_password: 'Vaše geslo je bilo uspešno spremenjeno!' + reset_password: 'Vaše geslo je bilo uspešno ponastavljeno!' + reset_password_request: 'Če e-pošta, ki ste jo določili v našem sistemu, obstaja, smo nanjo poslali navodila, kako ponastaviti vaše geslo.' diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/flashes.sq.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/flashes.sq.yml new file mode 100644 index 00000000000..cb98b5b3157 --- /dev/null +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/flashes.sq.yml @@ -0,0 +1,8 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + user: + change_password: 'Fjalëkalimi yt u ndryshua me sukses!' + reset_password: 'Fjalëkalimi yt u rivendos me sukses!' + reset_password_request: 'Në rast se emaili që keni specifikuar egziston në sistemin tonë, ju kemi dërguar në atë adresë një udhëzim mbi mënyrën e rivendosjes së fjalëkalimit tuaj.' diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.bg.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.bg.yml index 0ff5e20457d..451e9285797 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.bg.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.bg.yml @@ -5,7 +5,7 @@ sylius: form: user: email: Имейл - enabled: Активно + enabled: Активирано password: label: Парола confirmation: Проверка diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.de_CH.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.de_CH.yml index 5dd7ada506d..21ed5e071fe 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.de_CH.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.de_CH.yml @@ -13,7 +13,7 @@ sylius: shipping_address: Lieferadresse username: Benutzername user_filter: - query: Suche + query: Suchen user_change_password: confirmation: Bestätigung current: Aktuelles Passwort diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.es.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.es.yml index 310735d1328..5377fd89caf 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.es.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.es.yml @@ -4,14 +4,14 @@ sylius: form: user: - email: Correo electrónico - enabled: Activado + email: Dirección de correo electrónico + enabled: '¿Activado?' password: - label: Contraseña + label: Contraseña de API confirmation: Confirmar contraseña remember_me: Recordarme shipping_address: Dirección de envío - username: Nombre de usuario + username: Nombre de usuario de API user_filter: query: Búsqueda user_change_password: diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.fr.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.fr.yml index 2754c4eb6a7..7ec15371070 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.fr.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.fr.yml @@ -4,14 +4,11 @@ sylius: form: user: - email: Courriel - enabled: Activé + email: E-mail password: - label: Mot de passe confirmation: Vérification remember_me: Rester connecté shipping_address: Adresse de livraison - username: Identifiant user_filter: query: Rechercher user_change_password: diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.he.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.he.yml index 55e7b3f13f8..ad69755d05e 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.he.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.he.yml @@ -4,7 +4,7 @@ sylius: form: user: - email: דוא"ל + email: דואר אלקטרוני enabled: הופעל password: label: סיסמה @@ -19,5 +19,5 @@ sylius: current: סיסמה נוכחית new: סיסמה חדשה user_reset_password: - confirmation: אימות + confirmation: אישור new: סיסמה חדשה diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.hr.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.hr.yml index f51b63c356c..e690b8753ca 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.hr.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.hr.yml @@ -5,7 +5,7 @@ sylius: form: user: email: E-mail - enabled: Omogući + enabled: Omogućeno password: label: Lozinka confirmation: Verifikacija diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.id.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.id.yml index a24481183da..b46cbfcd97b 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.id.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.id.yml @@ -11,7 +11,7 @@ sylius: confirmation: Verifikasi remember_me: Ingat saya shipping_address: Alamat pengiriman - username: Nama pengguna + username: Username user_filter: query: Cari user_change_password: diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.ja.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.ja.yml index 5857e14f0be..f15f1e8ffd3 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.ja.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.ja.yml @@ -5,6 +5,7 @@ sylius: form: user: email: メールアドレス + enabled: 有効 password: label: パスワード shipping_address: 配送先住所 @@ -12,7 +13,9 @@ sylius: user_filter: query: 検索 user_change_password: + confirmation: 確認のため再入力 current: 現在のパスワード new: 新しいパスワード user_reset_password: + confirmation: 確認のため再入力 new: 新しいパスワード diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.ko.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.ko.yml index f3b46c8efd7..02084135ce0 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.ko.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.ko.yml @@ -5,7 +5,7 @@ sylius: form: user: email: 이메일 - enabled: 활성 + enabled: 사용 password: label: 비밀번호 confirmation: 인증 diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.ms.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.ms.yml new file mode 100644 index 00000000000..7e203b29f7d --- /dev/null +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.ms.yml @@ -0,0 +1,7 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + form: + user: + enabled: Dibenarkan diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.nl.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.nl.yml index cd294818eb6..0d296f0d9a1 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.nl.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.nl.yml @@ -5,7 +5,7 @@ sylius: form: user: email: E-mail - enabled: Toegestaan + enabled: Ingeschakeld password: label: Wachtwoord confirmation: Verificatie diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.no.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.no.yml index fac0da89efd..19e1336ada6 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.no.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.no.yml @@ -8,6 +8,7 @@ sylius: enabled: Aktivert password: label: Passord + remember_me: Husk meg shipping_address: Leveringsadresse username: Brukernavn user_filter: diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.pl.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.pl.yml index c27106a983e..a0cb595c1f1 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.pl.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.pl.yml @@ -5,7 +5,7 @@ sylius: form: user: email: Email - enabled: Aktywne + enabled: Dostępny password: label: Hasło confirmation: Weryfikacja diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.pt.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.pt.yml index 5e3395f03fe..966530f42d3 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.pt.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.pt.yml @@ -4,13 +4,13 @@ sylius: form: user: - email: Endereço de e-mail + email: Endereço de email enabled: Ativado password: label: Palavra-passe confirmation: Verificação remember_me: Lembrar-me - shipping_address: Morada de expedição + shipping_address: Endereço de entrega username: Nome de utilizador user_filter: query: Pesquisar diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.pt_BR.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.pt_BR.yml index 0ca2435ae83..3eb745923cc 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.pt_BR.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.pt_BR.yml @@ -5,7 +5,7 @@ sylius: form: user: email: Email - enabled: Ativado + enabled: Habilitado password: label: Senha confirmation: Verificação diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.ru.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.ru.yml index d70495e908d..b46039b6595 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.ru.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.ru.yml @@ -11,7 +11,7 @@ sylius: confirmation: Верификация remember_me: Запомнить меня shipping_address: Адрес доставки - username: Логин + username: Имя пользователя user_filter: query: Поиск user_change_password: diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.sr.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.sr.yml index 3c2697fb1ee..e06e9101f1d 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.sr.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.sr.yml @@ -4,9 +4,15 @@ sylius: form: user: + enabled: Омогућено + password: + label: Лозинка + shipping_address: Адреса за слање username: Кросницко име user_change_password: + confirmation: Потврда current: Тренутна лозинка new: Нова лозинка user_reset_password: + confirmation: Потврда new: Нова лозинка diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.sr_CS.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.sr_CS.yml index 35dbc6be07f..c4e796a4bc8 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.sr_CS.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.sr_CS.yml @@ -4,7 +4,7 @@ sylius: form: user: - email: E-pošta + email: E-mail enabled: Omogućeno password: label: Lozinka diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.th.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.th.yml index 6bc2bd91d1a..82ea83efc8a 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.th.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.th.yml @@ -5,13 +5,13 @@ sylius: form: user: email: อีเมล - enabled: เปิดใช้งานแล้ว + enabled: เปิดใช้งาน password: - label: รหัสผ่าน + label: Password confirmation: ยืนยันรหัสผ่าน remember_me: จำฉันไว้ shipping_address: ที่อยู่สำหรับจัดส่งสินค้า - username: ชื่อผู้ใช้ + username: Username user_filter: query: ค้นหา user_change_password: diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.uk.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.uk.yml index a253a9b9d03..48d1be31192 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.uk.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.uk.yml @@ -5,7 +5,7 @@ sylius: form: user: email: Адреса електронної пошти - enabled: Увімкнено + enabled: Ввімкнено password: label: Пароль confirmation: Перевірка diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.vi.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.vi.yml index 579bba9c898..26b52ceccae 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.vi.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.vi.yml @@ -4,6 +4,7 @@ sylius: form: user: + enabled: Đã kích hoạt password: label: Mật khẩu user_filter: diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.zh_TW.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.zh_TW.yml index 6582364b7b6..44f26b50c81 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/messages.zh_TW.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/messages.zh_TW.yml @@ -5,4 +5,7 @@ sylius: form: user: enabled: 啓用 + password: + label: 密碼 + remember_me: 記住我 username: 使用者名稱 diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/validators.be.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.be.yml new file mode 100644 index 00000000000..03d921a10f3 --- /dev/null +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.be.yml @@ -0,0 +1,8 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + user: + email: + not_blank: Калі ласка, увядзіце свой адрас электроннай пошты. + invalid: Несапраўдны адрас. diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/validators.bg.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.bg.yml index daa6019b91d..0e972b984f9 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/validators.bg.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.bg.yml @@ -4,8 +4,8 @@ sylius: user: email: - not_blank: Моля, въведете имейла си. - invalid: Този имейл е невалиден. + not_blank: Моля, въведете вашия имейл. + invalid: Невалиден имайл адрес. not_registered: Потребителят с този имейл не съществува. Моля, първо се регистрирайте. plainPassword: not_blank: Моля, въведете паролата си. diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/validators.ca.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.ca.yml new file mode 100644 index 00000000000..58f4bebdba5 --- /dev/null +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.ca.yml @@ -0,0 +1,8 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + user: + email: + not_blank: Escriu el teu correu electrònic. + invalid: Aquest correu electrònic no és vàlid. diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/validators.fa.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.fa.yml index 0cb300b9a07..852b255bcdb 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/validators.fa.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.fa.yml @@ -5,7 +5,7 @@ sylius: user: email: not_blank: لطفا ایمیل خود را وارد کنید. - invalid: ایمیل وارد شده نامعتبر است. + invalid: این ایمیل نامعتبر است. not_registered: کاربری با ایمیل وارد شده وجود ندارد. لطفا ابتدا ثبت‌نام کنید. plainPassword: not_blank: لطفا کلمه عبور را وارد کنید. diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/validators.fr.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.fr.yml index ef386e6a25b..2d54078c0bb 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/validators.fr.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.fr.yml @@ -4,8 +4,6 @@ sylius: user: email: - not_blank: Veuillez saisir votre adresse email. - invalid: Cet e-mail n'est pas valide. not_registered: Cet e-mail n'existe pas. Veuillez d'abord vous inscrire. plainPassword: not_blank: Veuillez saisir votre mot de passe. diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/validators.he.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.he.yml new file mode 100644 index 00000000000..94752167b4d --- /dev/null +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.he.yml @@ -0,0 +1,8 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + user: + email: + not_blank: אנא הזן את כתובת דואר האלקטרוני שלך. + invalid: כתובת דואר האלקטרוני אינה תקנית. diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/validators.no.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.no.yml index 4f61c6a4ca5..bd97b994417 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/validators.no.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.no.yml @@ -5,3 +5,4 @@ sylius: user: email: not_blank: Skriv inn din e-post. + invalid: Ugyldig epostadresse. diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/validators.pt.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.pt.yml index d2fcf82191b..c248a78cb4e 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/validators.pt.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.pt.yml @@ -4,7 +4,7 @@ sylius: user: email: - not_blank: Por favor insira o seu e-mail. + not_blank: Por favor introduza o seu endereço de e-mail. invalid: Este endereço de e-mail é inválido. not_registered: Utilizador com este e-mail não existe. Por favor, registe-se primeiro. plainPassword: diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/validators.ro.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.ro.yml index 35d7e61d98c..8edbc5db678 100644 --- a/src/Sylius/Bundle/UserBundle/Resources/translations/validators.ro.yml +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.ro.yml @@ -4,8 +4,8 @@ sylius: user: email: - not_blank: Introdu adresa ta de email. - invalid: Această adresă de e-mail este invalidă. + not_blank: Vă rugăm să completați adresa de e-mail. + invalid: Adresa de email nu este validă. not_registered: Nu exista un utilizator cu această adresă de email. Întregistrează-te mai întâi. plainPassword: not_blank: Te rugăm să introduci parola. diff --git a/src/Sylius/Bundle/UserBundle/Resources/translations/validators.zh_TW.yml b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.zh_TW.yml new file mode 100644 index 00000000000..0d1e03ce8ee --- /dev/null +++ b/src/Sylius/Bundle/UserBundle/Resources/translations/validators.zh_TW.yml @@ -0,0 +1,8 @@ +# This file is part of the Sylius package. +# (c) Paweł Jędrzejewski + +sylius: + user: + email: + not_blank: 請輸入您的電郵地址。 + invalid: 這不是正確的電郵地址。