Module Mondial Relay + quelques modifs de design
This commit is contained in:
8
local/modules/MondialRelay/Config/drop.sql
Normal file
8
local/modules/MondialRelay/Config/drop.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
SET FOREIGN_KEY_CHECKS = 0;
|
||||
|
||||
DROP TABLE IF EXISTS `mondial_relay_pickup_address`;
|
||||
DROP TABLE IF EXISTS `mondial_relay_delivery_price`;
|
||||
DROP TABLE IF EXISTS `mondial_relay_delivery_insurance`;
|
||||
DROP TABLE IF EXISTS `mondial_relay_zone_configuration`;
|
||||
|
||||
SET FOREIGN_KEY_CHECKS = 1;
|
||||
@@ -13,7 +13,7 @@
|
||||
<language>en_US</language>
|
||||
<language>fr_FR</language>
|
||||
</languages>
|
||||
<version>1.0.5</version>
|
||||
<version>1.0.7</version>
|
||||
<author>
|
||||
<name>Franck Allimant</name>
|
||||
<company>CQFDev</company>
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
# Sqlfile -> Database map
|
||||
thelia.sql=thelia
|
||||
@@ -57,6 +57,10 @@ class DeliveryListener extends BaseAction implements EventSubscriberInterface
|
||||
$this->requestStack = $requestStack;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return ApiClient
|
||||
* @throws \SoapFault
|
||||
*/
|
||||
protected function getWebServiceClient()
|
||||
{
|
||||
return new ApiClient(
|
||||
@@ -136,19 +140,19 @@ class DeliveryListener extends BaseAction implements EventSubscriberInterface
|
||||
$countryHasRelay = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// If the area delivery type matches the selected one, or if no zone is selected
|
||||
if (null === $selectedDeliveryType || $zoneDeliveryType === $selectedDeliveryType) {
|
||||
// Check if we have a price slice
|
||||
if (null !== $deliveryPrice = MondialRelayDeliveryPriceQuery::create()
|
||||
->filterByAreaId($area->getAreaId())
|
||||
->filterByMaxWeight($weight, Criteria::GREATER_EQUAL)
|
||||
->orderByMaxWeight(Criteria::ASC)
|
||||
->findOne()) {
|
||||
$price = min($price, $deliveryPrice->getPriceWithTax());
|
||||
// If the area delivery type matches the selected one, or if no zone is selected
|
||||
if (null === $selectedDeliveryType || $zoneDeliveryType === $selectedDeliveryType) {
|
||||
// Check if we have a price slice
|
||||
if (null !== $deliveryPrice = MondialRelayDeliveryPriceQuery::create()
|
||||
->filterByAreaId($area->getAreaId())
|
||||
->filterByMaxWeight($weight, Criteria::GREATER_EQUAL)
|
||||
->orderByMaxWeight(Criteria::ASC)
|
||||
->findOne()) {
|
||||
$price = min($price, $deliveryPrice->getPriceWithTax());
|
||||
|
||||
$deliveryDelay = $zoneConfig->getDeliveryTime();
|
||||
$deliveryDelay = $zoneConfig->getDeliveryTime();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@ return array(
|
||||
'Find a pickup location around you' => 'Trouver un point relais autour de vous',
|
||||
'Loading...' => 'Chargement...',
|
||||
'Mondial Relay home delivery' => 'Livraison Mondial Relay à mon domicile',
|
||||
'Mondial Relay pickup location' => 'Adresse du point relais Mondial Relay',
|
||||
'Mondial Relay pickup location' => ' Point relais Mondial Relay',
|
||||
'Mondial Relay pickup location #%num' => 'Point relais Mondial Relay No. %num',
|
||||
'No pickup locations were found for this address.' => 'Nous n\'avons pas trouvé de point relais autour de cette adresse.',
|
||||
'Oops, something goes wrong, please try again.' => 'Oups, quelque chose n\'a pas fonctionné correctement. Merci de recommencer.',
|
||||
|
||||
@@ -14,6 +14,7 @@ use MondialRelay\Model\MondialRelayDeliveryInsurance;
|
||||
use MondialRelay\Model\MondialRelayDeliveryPrice;
|
||||
use MondialRelay\Model\MondialRelayDeliveryPriceQuery;
|
||||
use MondialRelay\Model\MondialRelayZoneConfiguration;
|
||||
use Payzen\Model\Thelia\Model\ModuleConfigQuery;
|
||||
use Propel\Runtime\Connection\ConnectionInterface;
|
||||
use Thelia\Core\Translation\Translator;
|
||||
use Thelia\Exception\TheliaProcessException;
|
||||
@@ -29,6 +30,7 @@ use Thelia\Model\Lang;
|
||||
use Thelia\Model\LangQuery;
|
||||
use Thelia\Model\Message;
|
||||
use Thelia\Model\MessageQuery;
|
||||
use Thelia\Model\ModuleConfig;
|
||||
use Thelia\Model\ModuleImageQuery;
|
||||
use Thelia\Model\OrderPostage;
|
||||
use Thelia\Module\AbstractDeliveryModule;
|
||||
@@ -101,7 +103,7 @@ class MondialRelay extends AbstractDeliveryModule
|
||||
self::setConfigValue(self::CODE_ENSEIGNE, "BDTEST13");
|
||||
self::setConfigValue(self::PRIVATE_KEY, "PrivateK");
|
||||
self::setConfigValue(self::WEBSERVICE_URL, "https://api.mondialrelay.com/Web_Services.asmx?WSDL");
|
||||
self::setConfigValue(self::GOOGLE_MAPS_API_KEY, "AIzaSyBY_RCM1zkJ0-Df1XMTq3fDzypFC95ZNFE");
|
||||
self::setConfigValue(self::GOOGLE_MAPS_API_KEY, "get_your_own_api_key");
|
||||
self::setConfigValue(self::ALLOW_HOME_DELIVERY, true);
|
||||
self::setConfigValue(self::ALLOW_RELAY_DELIVERY, true);
|
||||
self::setConfigValue(self::ALLOW_INSURANCE, true);
|
||||
@@ -205,4 +207,28 @@ class MondialRelay extends AbstractDeliveryModule
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param ConnectionInterface|null $con
|
||||
* @param bool $deleteModuleData
|
||||
* @throws \Propel\Runtime\Exception\PropelException
|
||||
*/
|
||||
public function destroy(ConnectionInterface $con = null, $deleteModuleData = false)
|
||||
{
|
||||
if ($deleteModuleData) {
|
||||
// Delete message
|
||||
MessageQuery::create()->filterByName(self::TRACKING_MESSAGE_NAME)->delete($con);
|
||||
|
||||
// Delete module config data
|
||||
ModuleConfigQuery::create()->filterByModuleId(self::getModuleId())->delete($con);
|
||||
|
||||
// Delete module tables.
|
||||
if (null !== $con) {
|
||||
$database = new Database($con);
|
||||
$database->insertSql(null, [__DIR__ . '/Config/drop.sql']);
|
||||
}
|
||||
}
|
||||
|
||||
parent::destroy($con, $deleteModuleData);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,199 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'%nb Item' => 'البند %nb',
|
||||
'%nb Items' => 'العناصر %nb',
|
||||
'+' => '+',
|
||||
'<strong>Sorry!</strong> We are not able to give you a delivery method for your order.' => '<strong>عذراً!</strong> نحن غير قادرين على إعطائك طريقة التوصيل لهذا الطلب.',
|
||||
'A problem occured' => 'حدثت مشكلة',
|
||||
'Account' => 'حساب',
|
||||
'Add a new address' => 'إضافة عنوان جديد',
|
||||
'Add to cart' => 'أضف إلى السلّة',
|
||||
'Additional Info' => 'معلومات إضافية',
|
||||
'Address' => 'عنوان',
|
||||
'Address %nb' => 'عنوان %nb',
|
||||
'Address Update' => 'تحديث العنوان',
|
||||
'All contents' => 'جميع المحتويات',
|
||||
'All contents in' => 'جميع المحتويات في',
|
||||
'All products' => 'جميع المنتجات',
|
||||
'All products in' => 'جميع المنتجات في',
|
||||
'Amount' => 'القيمة',
|
||||
'An error occurred' => 'حدث خطأ',
|
||||
'Availability' => 'التوافر',
|
||||
'Available' => 'متوفر',
|
||||
'Back' => 'خلف',
|
||||
'Billing address' => 'عنوان الفاتورة',
|
||||
'Billing and delivery' => 'الفواتير وتسليم',
|
||||
'Brands' => 'العلامات التجارية',
|
||||
'Cancel' => 'إالغاء',
|
||||
'Cart' => 'السله',
|
||||
'Categories' => 'الفئات',
|
||||
'Change Password' => 'تغيير كلمة المرور',
|
||||
'Change address' => 'تغيير العنوان',
|
||||
'Change my account information' => 'تغيير معلومات حسابي',
|
||||
'Change my password' => 'تغيير كلمة المرور الخاصة بي',
|
||||
'Check my order' => 'تحقق من طلبي',
|
||||
'Choose your delivery address' => 'اختر عنوان التسليم',
|
||||
'Choose your delivery method' => 'اختر طريقة التوصيل',
|
||||
'Choose your payment method' => 'اختر طريقة الدفع',
|
||||
'Code :' => 'الرمز :',
|
||||
'Connecting to the secure payment server, please wait a few seconds...' => 'الاتصال بالاتحاد الأفريقي.',
|
||||
'Contact Us' => 'إتصل بنا',
|
||||
'Continue Shopping' => 'متابعة التسوق',
|
||||
'Copyright' => 'حق النشر',
|
||||
'Coupon code' => 'رمز قسيمة الخصم',
|
||||
'Create' => 'إنشاء',
|
||||
'Create New Account' => 'إنشاء حساب جديد',
|
||||
'Create New Address' => 'إنشاء عنوان جديد',
|
||||
'Currency' => 'عملة',
|
||||
'Date' => 'التاريخ',
|
||||
'Delivery Information' => 'معلومات التسليم',
|
||||
'Delivery address' => 'عنوان التوصيل',
|
||||
'Demo product description' => 'وصف المنتج التجريبي',
|
||||
'Demo product title' => 'عنوان المنتج التجريبي',
|
||||
'Description' => 'الوصف',
|
||||
'Discount' => 'خصم',
|
||||
'Do you have an account?' => 'هل لديك حساب؟',
|
||||
'Do you really want to delete this address ?' => 'هل تريد حذف هذا العنوان حقاً؟',
|
||||
'Edit' => 'تحرير',
|
||||
'Edit this address' => 'تحرير عنوان هذا',
|
||||
'Estimated shipping ' => 'القيمه المقدره للشحن ',
|
||||
'Forgot your Password?' => 'نسيت كلمة المرور الخاصة بك؟',
|
||||
'Free shipping' => 'شحن مجاني',
|
||||
'Go home' => 'عد لصفحة البداية',
|
||||
'Grid' => 'شبكة',
|
||||
'Home' => 'صفحة البداية',
|
||||
'In Stock' => 'متوفر حالياً',
|
||||
'Invoice REF' => 'مرجع الفاتورة',
|
||||
'Language' => 'اللّغة',
|
||||
'Latest' => 'الأحدث',
|
||||
'Latest products' => 'أحدث المنتجات',
|
||||
'List' => 'القائمة',
|
||||
'List of orders' => 'قائمة الطلبات',
|
||||
'Login' => 'تسجل الدخول',
|
||||
'Login Information' => 'معلومات تسجيل الدخول',
|
||||
'Multi-payment platform' => 'منصة الدفع المتعددة',
|
||||
'My Account' => 'حسابي',
|
||||
'My Address Books' => 'عناويني',
|
||||
'My Address book' => 'دفتر العناوين الخاص بي',
|
||||
'My Orders' => 'طلباتي',
|
||||
'My order' => 'طلباتي',
|
||||
'Name' => 'الإسم',
|
||||
'Name ascending' => 'الاسم تصاعدي',
|
||||
'Name descending' => 'الاسم تنازلي',
|
||||
'Need help ?' => 'تحتاج مساعدة؟',
|
||||
'Newsletter' => 'رسائل بريدية',
|
||||
'Newsletter Subscription' => 'الاشتراك في خدمة الرسائل البريدية',
|
||||
'Next' => ' التالي',
|
||||
'Next Step' => 'الخطوة التالية',
|
||||
'Next product' => 'المنتج التالي',
|
||||
'No deliveries available for this cart and this country' => 'لا توجد شحنات متاحة لهذه السلة وهذا البلد',
|
||||
'No products available in this category' => 'لا توجد منتجات متوفرة في هذه الفئة',
|
||||
'No results found' => 'لم يتم العثور على أي نتيجة',
|
||||
'No.' => 'رقم.',
|
||||
'Ok' => 'موافق',
|
||||
'Order details' => 'تفاصيل الطلب',
|
||||
'Order number' => 'رقم طلب الشراء',
|
||||
'Orders over $50' => 'طلبات أكثر من 50 دولار',
|
||||
'Out of Stock' => 'غير متوفر حالياً',
|
||||
'Pagination' => 'ترقيم الصفحات',
|
||||
'Password' => 'كلمة المرور',
|
||||
'Password Forgotten' => 'نسيت كلمة السر',
|
||||
'Pay with %module_title' => 'الدافع avec module_title %',
|
||||
'Personal Information' => 'المعلومات الشخصية',
|
||||
'Placeholder address label' => 'المنزل، العمل، المكتب، أخرى',
|
||||
'Placeholder address1' => '76 الشارع التاسع',
|
||||
'Placeholder address2' => 'عنوان',
|
||||
'Placeholder cellphone' => 'رقم الهاتف الخلوي',
|
||||
'Placeholder city' => 'نيويورك',
|
||||
'Placeholder company' => 'جوجل',
|
||||
'Placeholder contact email' => 'حيث يمكن أن نعود إليكم.',
|
||||
'Placeholder contact message' => 'و رسالتك...',
|
||||
'Placeholder contact name' => 'ما اسمك؟',
|
||||
'Placeholder contact subject' => 'موضوع الرسالة الخاصة بك.',
|
||||
'Placeholder email' => 'johndoe@domain.com',
|
||||
'Placeholder firstname' => 'جون',
|
||||
'Placeholder lastname' => 'Doe',
|
||||
'Placeholder zipcode' => 'NY 10011',
|
||||
'Please enter your email address below.' => 'الرجاء إدخال عنوان البريد الإلكتروني الخاص بك أدناه.',
|
||||
'Please try again to order' => 'الرجاء المحاولة مرة أخرى للطلب',
|
||||
'Position' => 'موضع',
|
||||
'Postage' => 'الارسالية',
|
||||
'Previous' => 'السابق',
|
||||
'Previous product' => 'المنتج السابق',
|
||||
'Price' => 'السعر',
|
||||
'Price ascending' => 'سعر تصاعدي',
|
||||
'Price descending' => 'السعر تنازلي',
|
||||
'Proceed checkout' => 'إكمال عملية الدفع',
|
||||
'Product Empty Button' => 'إضاف المنتج الأول',
|
||||
'Product Empty Message' => 'أنها حقاً سريعة لإضافة منتج. <ol><li>الاختيار <strong>الجديد</strong> تحت علامة التبويب التفاصيل إذا كنت ترغب في رؤية المنتج الخاص بك في المقطع منتج آخر.</li> <li>الاختيار <strong>البيع</strong> تحت علامة التبويب التفاصيل إذا كنت ترغب في رؤية المنتج الخاص بك في المقطع منتج العرض.</li> </ol>',
|
||||
'Product Name' => 'اسم المنتج',
|
||||
'Product Offers' => 'عروض المنتج',
|
||||
'Qty' => 'الكميّة',
|
||||
'Quantity' => 'الكمية',
|
||||
'Questions ? See our F.A.Q.' => 'أسئلة؟ انظر القسم الخاص بنا والأجوبة',
|
||||
'Rating' => 'التقييم',
|
||||
'Redirect to bank service' => 'إعادة توجيه إلى خدمة البنك',
|
||||
'Ref.' => 'المرجع.',
|
||||
'Register' => 'إنشاء حساب',
|
||||
'Regular Price:' => 'السعر العادي:',
|
||||
'Related' => 'ذات الصلة',
|
||||
'Remove' => 'إزالة',
|
||||
'Remove this address' => 'إزالة هذا العنوان؟',
|
||||
'SELECT YOUR CURRENCY' => 'حدد العملة الخاصة بك',
|
||||
'SELECT YOUR LANGUAGE' => 'حدد اللغة الخاصة بك',
|
||||
'Search' => 'بحث',
|
||||
'Search Result for' => 'نتائج البحث عن',
|
||||
'Secure Payment' => 'دفع آمن',
|
||||
'Secure payment' => 'دفع آمن',
|
||||
'Select Country' => 'حدد البلد',
|
||||
'Select Title' => 'حدد العنوان',
|
||||
'Select your country:' => 'حدد بلدك:',
|
||||
'Send' => 'إرسل',
|
||||
'Send us a message' => 'أرسل لنا رسالة',
|
||||
'Shipping Tax' => 'سعر الشحن',
|
||||
'Show' => 'عرض',
|
||||
'Skip to content' => 'الانتقال إلى المحتوى',
|
||||
'Sort By' => 'ترتيب حسب',
|
||||
'Special Price:' => 'سعر خاص:',
|
||||
'Status' => 'الحالة',
|
||||
'Subscribe' => 'الاشتراك',
|
||||
'Thank you for the trust you place in us.' => 'نشكركم على الثقة التي وضعت فينا.',
|
||||
'Thanks !' => 'شكراً !',
|
||||
'Thanks for signing up! We\'ll keep you posted whenever we have any new updates.' => 'شكرا للتسجيل! سوف نقوم بالتواصل معكم حين الحصول على أي تحديثات.',
|
||||
'Thanks for your message, we will contact as soon as possible.' => 'شكرا لرسالتك، وسوف نتصل بك في أقرب وقت ممكن.',
|
||||
'The page cannot be found' => 'لا يمكن العثور على الصفحة',
|
||||
'Thelia V2' => 'Thelia V2',
|
||||
'Toggle navigation' => 'تبديل التنقل',
|
||||
'Total' => 'الإجمالي',
|
||||
'Total without tax' => 'المجموع بدون ضريبة',
|
||||
'Try again' => 'شكراً',
|
||||
'Unit Price' => 'سعر الوحدة',
|
||||
'Update' => 'تحديث',
|
||||
'Update Profile' => 'تحديث حسابك',
|
||||
'Update Quantity' => 'تحديث الكمية',
|
||||
'Upsell Products' => 'منتجات للبيع',
|
||||
'View' => 'عرض',
|
||||
'View Cart' => 'عرض محتوى سلة التسوق',
|
||||
'View all' => 'عرض الكل',
|
||||
'View as' => 'عرض حسب',
|
||||
'View product' => 'عرض المنتج',
|
||||
'Warning' => 'تحذير',
|
||||
'We\'re sorry, a problem occured and your payment was not successful.' => 'نحن آسفون، حدثت مشكلة و عملية الدفع لم تكن ناجحة.',
|
||||
'You are here:' => 'أنت هنا:',
|
||||
'You choose to pay by' => 'يمكنك اختيار طريقة الدفع',
|
||||
'You don\'t have orders yet.' => 'لا يوجد لديك طلبات بعد.',
|
||||
'You have no items in your shopping cart.' => 'لا يوجد لديك عناصر في سلة التسوق الخاصة بك.',
|
||||
'You may have a coupon ?' => 'هل لديك قسيمة؟',
|
||||
'You want to subscribe to the newsletter? Please enter your email address below.' => 'هل ترغب في الاشتراك في النشرة الإخبارية؟ الرجاء إدخال عنوان البريد الإلكتروني الخاص بك أدناه.',
|
||||
'You will receive a link to reset your password.' => 'سوف تتلقى رابط إعادة تعيين كلمة المرور الخاصة بك.',
|
||||
'Your Cart' => 'عربة التسوق الخاصة بك',
|
||||
'Your order will be confirmed by us upon receipt of your payment.' => 'سيتم تأكيد طلبك من قبلنا عند استلام قيمة الدفع الخاص بك.',
|
||||
'for' => 'لـ',
|
||||
'instead of' => 'بدلا من',
|
||||
'missing or invalid data' => 'بيانات مفقودة أو غير صالحة',
|
||||
'per page' => 'لكل صفحة',
|
||||
'update' => 'تحديث',
|
||||
'with:' => 'مع:',
|
||||
'404' => '404',
|
||||
];
|
||||
@@ -1,250 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'%nb Item' => '%nb položka',
|
||||
'%nb Items' => '%nb položek',
|
||||
'+' => '+',
|
||||
'<strong>Sorry!</strong> We are not able to give you a delivery method for your order.' => '<strong>Promiňеу!</strong> Nemáme žádný způsob doručení vaší objednávku.',
|
||||
'A new password has been sent to your e-mail address. Please check your mailbox.' => 'Nové heslo bylo zasláno na vaši emailovou adresu. Zkontrolujte prosím svou poštovní schránku.',
|
||||
'A problem occured' => 'Nastal problém',
|
||||
'A summary of your order has been sent to the following address' => 'E-mail se souhrnem objednávky byl odeslán na následující adresu',
|
||||
'Account' => 'Účet',
|
||||
'Add a new address' => 'Přidat novou adresu',
|
||||
'Add to cart' => 'Přidat do košíku',
|
||||
'Additional Info' => 'Další informace',
|
||||
'Address' => 'Adresa',
|
||||
'Address %nb' => 'Adresa %nb',
|
||||
'Address Update' => 'Aktualizace adresy',
|
||||
'All' => 'Vše',
|
||||
'All brands' => 'Všechny značky',
|
||||
'All brands in %store' => 'Všechny značky v obchodě %store',
|
||||
'All contents' => 'Celý obsah',
|
||||
'All contents in' => 'Celý obsah v',
|
||||
'All product in brand %title' => 'Všechny výrobky značky %title',
|
||||
'All products' => 'Všechna zboží',
|
||||
'All products for brand %title in %store' => 'Všechny výrobky značky %title v obchodě %store',
|
||||
'All products in' => 'Všechna zboží v',
|
||||
'Amount' => 'Množství',
|
||||
'An error occurred' => 'Došlo k chybě',
|
||||
'Availability' => 'Dostupnost',
|
||||
'Available' => 'K dispozici',
|
||||
'Back' => 'Zpět',
|
||||
'Billing' => 'Platba',
|
||||
'Billing Mode' => 'Způsob platby',
|
||||
'Billing address' => 'Fakturační adresa',
|
||||
'Billing and delivery' => 'Dodání a platba',
|
||||
'Brand information' => 'Informace o značce',
|
||||
'Cancel' => 'Zrušit',
|
||||
'Cart' => 'Košík',
|
||||
'Categories' => 'Kategorie',
|
||||
'Change Password' => 'Změnit heslo',
|
||||
'Change address' => 'Změnit adresu',
|
||||
'Change my account information' => 'Změnit informace o účtu',
|
||||
'Change my password' => 'Změnit heslo',
|
||||
'Check my order' => 'Kontrola objednávky',
|
||||
'Choose your delivery address' => 'Zvolte vaši dodací adresu',
|
||||
'Choose your delivery method' => 'Zvolte způsob doručení',
|
||||
'Choose your payment method' => 'Zvolte způsob platby',
|
||||
'Code :' => 'Kód:',
|
||||
'Connecting to the secure payment server, please wait a few seconds...' => 'Připojení k serveru bezpečného placení, děkuji za vaši trpělivost.',
|
||||
'Contact Us' => 'Kontaktujte nás',
|
||||
'Contact page' => 'Kontaktní stránka',
|
||||
'Continue Shopping' => 'Pokračovat v nákupu',
|
||||
'Copyright' => 'Autorská práva',
|
||||
'Coupon code' => 'Kód kupónu',
|
||||
'Create' => 'Vytvořit',
|
||||
'Create New Account' => 'Vytvořit nový účet',
|
||||
'Create New Address' => 'Vytvořit novou adresu',
|
||||
'Created' => 'Vytvořeno',
|
||||
'Currency' => 'Měna',
|
||||
'Customer Number' => 'Číslo zákazníka',
|
||||
'Date' => 'Datum',
|
||||
'Delivery Information' => 'Informace o dodání',
|
||||
'Delivery Mode' => 'Způsob dodání',
|
||||
'Delivery REF' => 'Sledovací číslo',
|
||||
'Delivery address' => 'Doručovací adresa',
|
||||
'Demo product description' => 'Popis demo výrobku',
|
||||
'Demo product title' => 'Název demo výrobku',
|
||||
'Description' => 'Popis',
|
||||
'Do you have an account?' => 'Máte účet?',
|
||||
'Do you really want to delete this address ?' => 'Opravdu chcete odstranit tuto adresu?',
|
||||
'Download' => 'Stáhnout',
|
||||
'Edit' => 'Upravit',
|
||||
'Edit this address' => 'Upravit tuto adresu',
|
||||
'Estimated shipping ' => 'Předpokládaná doba dodání ',
|
||||
'Forgot your Password?' => 'Zapomněli jste heslo?',
|
||||
'Free shipping' => 'Doprava zdarma',
|
||||
'From %price' => 'Od %price',
|
||||
'Go back to the previous page' => 'Přejít zpět na předchozí stránku',
|
||||
'Go home' => 'Na hlavní',
|
||||
'Grid' => 'Mřížka',
|
||||
'Home' => 'Domů',
|
||||
'I\'ve read and agreed on <a href=\'%link\' class=\'terms-quickview\'>Terms & Conditions</a>' => 'Přečetl jsem a souhlasím s <a href=\'%link\' class=\'terms-quickview\'>obchodními podmínkami</a>',
|
||||
'If nothing happens within 10 seconds, <a id="force-submit-payment-form" href="#">please click here</a>.' => 'Pokud se nic nestane během 10 vteřin, <a id="force-submit-payment-form" href="#">kliknete sem</a>. ',
|
||||
'If you want to change your email, please contact us.' => 'Chcete-li změnit svoji emailovou adresu, prosím, kontaktujte nás.',
|
||||
'In Stock' => 'Skladem',
|
||||
'Invoice REF' => 'Faktura číslo',
|
||||
'Language' => 'Jazyk',
|
||||
'Latest' => 'Nejnovější',
|
||||
'Latest products' => 'Nejnovější produkty',
|
||||
'List' => 'Seznam',
|
||||
'List of orders' => 'Seznam objednávek',
|
||||
'Login' => 'Přihlášení',
|
||||
'Login Information' => 'Přihlašovací informace',
|
||||
'Main Address' => 'Hlavní adresa',
|
||||
'More information about this brand' => 'Další informace o této značce',
|
||||
'Multi-payment platform' => 'Multi-platební platforma',
|
||||
'My Account' => 'Můj účet',
|
||||
'My Address Books' => 'Moje adresáře',
|
||||
'My Address book' => 'Můj adresář',
|
||||
'My Orders' => 'Moje objednávky',
|
||||
'My order' => 'Moje objednávka',
|
||||
'Name' => 'Název',
|
||||
'Name ascending' => 'Název vzestupně',
|
||||
'Name descending' => 'Název sestupně',
|
||||
'Need help ?' => 'Potřebujete pomoc?',
|
||||
'Newsletter' => 'Odběr novinek',
|
||||
'Newsletter Subscription' => 'Přihlášení k odběru novinek',
|
||||
'Next' => 'Další',
|
||||
'Next Step' => 'Další krok',
|
||||
'Next product' => 'Další produkt',
|
||||
'No Contents in this folder.' => 'Žádný obsah v této složce.',
|
||||
'No deliveries available for this cart and this country' => 'Žádný způsob dodání pro tuto zemi',
|
||||
'No products available in this brand' => 'Žádný dostupný výrobek této značky',
|
||||
'No products available in this category' => 'Žádné produkty v této kategorii',
|
||||
'No results found' => 'Nebylo nic nalezeno',
|
||||
'No.' => 'č.',
|
||||
'Ok' => 'Ok',
|
||||
'Options' => 'Možnosti',
|
||||
'Order details' => 'Detail objednávky',
|
||||
'Order details %ref' => 'Podrobnosti objednávky %ref',
|
||||
'Order number' => 'Číslo objednávky',
|
||||
'Orders over $50' => 'Objednávky nad 50 dolarů',
|
||||
'Out of Stock' => 'Není skladem',
|
||||
'PDF invoice' => 'PDF faktura',
|
||||
'Pagination' => 'Stránkování',
|
||||
'Password' => 'Heslo',
|
||||
'Password Forgotten' => 'Zapomenuté heslo',
|
||||
'Pay with %module_title' => 'Zaplatit přes %module_title',
|
||||
'Personal Information' => 'Osobní údaje',
|
||||
'Placeholder address label' => 'Domácí, pracovní, jiná',
|
||||
'Placeholder address1' => '76 Ninth Avenue',
|
||||
'Placeholder address2' => 'Adresa',
|
||||
'Placeholder city' => 'New York',
|
||||
'Placeholder company' => 'Google',
|
||||
'Placeholder contact email' => 'Abychom mohli Vám odpovědět.',
|
||||
'Placeholder contact message' => 'A Vaše zpráva...',
|
||||
'Placeholder contact name' => 'Jak se jmenujete?',
|
||||
'Placeholder contact subject' => 'Předmět Vaší zprávy.',
|
||||
'Placeholder email' => 'johndoe@domain.com',
|
||||
'Placeholder email confirm' => 'Potvrzení emailové adresy',
|
||||
'Placeholder firstname' => 'John',
|
||||
'Placeholder lastname' => 'Doe',
|
||||
'Placeholder zipcode' => 'NY 10011',
|
||||
'Please enter your email address below.' => 'Zadejte prosím níže vaši e-mailovou adresu.',
|
||||
'Please try again to order' => 'Zkuste prosím objednat znovu',
|
||||
'Position' => 'Pozice',
|
||||
'Previous' => 'Předchozí',
|
||||
'Previous product' => 'Předchozí produkt',
|
||||
'Price' => 'Cena',
|
||||
'Price ascending' => 'Cena vzestupně',
|
||||
'Price descending' => 'Cena sestupně',
|
||||
'Proceed checkout' => 'Pokračovat',
|
||||
'Product Empty Button' => 'Přidejte svůj první produkt',
|
||||
'Product Empty Message' => 'Přidání produktu je to opravdu rychlé.
|
||||
<ol>
|
||||
<li>Zvolte <strong>NEW</strong> v záložce podrobnosti, pokud chcete vidět váš produkt v sekci nejnovější.</li>
|
||||
<li>Zvolte <strong>SALE</strong> v záložce podrobnosti, pokud chcete vidět váš produkt v sekci akčních nabídek.</li>
|
||||
</ol>',
|
||||
'Product Name' => 'Název produktu',
|
||||
'Product Offers' => 'Akční nabídka',
|
||||
'Qty' => 'Množství',
|
||||
'Quantity' => 'Množství',
|
||||
'Questions ? See our F.A.Q.' => 'Potřebujete pomoc? Podívejte se na F.A.Q.',
|
||||
'REF' => 'Číslo',
|
||||
'Rating' => 'Hodnocení',
|
||||
'Redirect to bank service' => 'Přesměrovat na bankovní služby',
|
||||
'Ref.' => 'č.',
|
||||
'Register' => 'Registrace',
|
||||
'Regular Price:' => 'Běžná cena:',
|
||||
'Related' => 'Související',
|
||||
'Remove' => 'Odstranit',
|
||||
'Remove this address' => 'Odstranit tuto adresu',
|
||||
'SELECT YOUR CURRENCY' => 'VYBERTE SVOU MĚNU',
|
||||
'SELECT YOUR LANGUAGE' => 'VYBERTE SVŮJ JAZYK',
|
||||
'Sale was not found' => 'Akční nabídky nebyly nalezené',
|
||||
'Save %amount%sign on these products' => 'Ušetříte %amount%sign při nákupu těchto výrobků',
|
||||
'Save %amount%sign on this product' => 'Ušetříte %amount%sign při nákupu tohoto výrobku',
|
||||
'Search' => 'Vyhledávání',
|
||||
'Search Result for' => 'Výsledek hledání pro',
|
||||
'Secondary Navigation' => 'Sekundární navigace',
|
||||
'Secure Payment' => 'Bezpečné platby',
|
||||
'Secure payment' => 'Bezpečná platba',
|
||||
'Select Country' => 'Vyberte zemi',
|
||||
'Select Title' => 'Vyberte název',
|
||||
'Select your country:' => 'Vyberte svou zemi:',
|
||||
'Send' => 'Odeslat',
|
||||
'Send new password again' => 'Zaslat nové heslo znovu',
|
||||
'Send us a message' => 'Pošlete nám zprávu',
|
||||
'Shipping Tax' => 'Cena dopravy',
|
||||
'Show' => 'Zobrazit',
|
||||
'Sign in' => 'Přihlásit',
|
||||
'Skip to content' => 'Přeskočit na obsah',
|
||||
'Sorry but this combination does not exist.' => 'Omlouváme se, ale tato kombinace neexistuje.',
|
||||
'Sorry, your cart is empty. There\'s nothing to pay.' => 'Je nám líto, ale Váš nákupní košík je prázdný. Nemáte za co platit.',
|
||||
'Sort By' => 'Seřadit podle',
|
||||
'Special Price:' => 'Speciální cena:',
|
||||
'Status' => 'Stav',
|
||||
'Subscribe' => 'Odebírat',
|
||||
'Taxed Price' => 'Cena včetně daně',
|
||||
'Thank you for the trust you place in us.' => 'Děkujeme Vám za důvěru.',
|
||||
'Thanks !' => 'Děkuji!',
|
||||
'Thanks for signing up! We\'ll keep you posted whenever we have any new updates.' => 'Díky za přihlášení! Budeme vás informovat o všech novinkách.',
|
||||
'Thanks for your message, we will contact as soon as possible.' => 'Díky za zprávu, budeme Vás co nejdříve kontaktovat.',
|
||||
'The page cannot be found' => 'Stránka nebyla nalezena',
|
||||
'The product has been added to your cart' => 'Produkt byl přidán do košíku',
|
||||
'Thelia V2' => 'Thelia V2',
|
||||
'This offer is valid until %date' => 'Tato nabídka platí do %date',
|
||||
'Toggle navigation' => 'Přepnout navigace',
|
||||
'Total' => 'Celkem',
|
||||
'Total excl. taxes' => 'Celkem bez daně',
|
||||
'Total incl. taxes' => 'Celkem včetně daně',
|
||||
'Total with tax' => 'Celkem s daní',
|
||||
'Total without tax' => 'Celkem bez daně',
|
||||
'Transaction REF : %ref' => 'Transakce číslo: %ref',
|
||||
'Try again' => 'Zkuste to znovu.',
|
||||
'Unit Price' => 'Jednotková cena',
|
||||
'Unit Price incl. taxes' => 'Jednotková cena včetně daně',
|
||||
'Unit Taxed Price' => 'Jednotková cena včetně daně',
|
||||
'Update' => 'Aktualizovat',
|
||||
'Update Profile' => 'Aktualizovat profil',
|
||||
'Update Quantity' => 'Aktualizovat množství',
|
||||
'Upsell Products' => 'Zboží se slevou',
|
||||
'View' => 'Prohlížet',
|
||||
'View Cart' => 'Zobrazit košík',
|
||||
'View all' => 'Zobrazit vše',
|
||||
'View as' => 'Zobrazit jako',
|
||||
'View order %ref details' => 'Zobrazit podrobnosti objednávky %ref',
|
||||
'View product' => 'Zobrazit produkt',
|
||||
'Warning' => 'Upozornění',
|
||||
'We apologize but some of the ordered products are not available any more.' => 'Omlouváme se, ale některé z objednaného zboží už není k dispozici.',
|
||||
'We\'re sorry but an error occured. Please try to contact the site <a href=\'mailto:%mail\'>administrator</a>' => 'Je nám líto, ale došlo k chybě. Zkuste, prosím, kontaktovat <a href=\'mailto:%mail\'>správce</a> webu',
|
||||
'We\'re sorry, a problem occured and your payment was not successful.' => 'Omlouváme se, došlo k problému a platba nebyla provedená.',
|
||||
'You are here:' => 'Nacházíte se tady:',
|
||||
'You choose' => 'Jste zvolili',
|
||||
'You choose to pay by' => 'Zvolil jste platbu',
|
||||
'You don\'t have orders yet.' => 'Ještě nemáte objednávky.',
|
||||
'You have no items in your shopping cart.' => 'Nákupní košík je prázdný.',
|
||||
'You may have a coupon ?' => 'Máte kupón?',
|
||||
'You want to subscribe to the newsletter? Please enter your email address below.' => 'Chcete se přihlásit k odběru novinek? Zadejte prosím níže Vaši e-mailovou adresu.',
|
||||
'You will receive a link to reset your password.' => 'Obdržíte odkaz pro obnovení hesla.',
|
||||
'Your Cart' => 'Váš košík',
|
||||
'Your order will be confirmed by us upon receipt of your payment.' => 'Vaše objednávka bude potvrzena po obdržení platby.',
|
||||
'for' => 'pro',
|
||||
'instead of' => 'namísto',
|
||||
'missing or invalid data' => 'chybějící nebo neplatné údaje',
|
||||
'per page' => 'na stránce',
|
||||
'update' => 'aktualizovat',
|
||||
'with:' => 's:',
|
||||
'404' => '404',
|
||||
];
|
||||
@@ -1,256 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'%nb Item' => '%nb Artikel',
|
||||
'%nb Items' => '%nb Artikel',
|
||||
'+' => '+',
|
||||
'<strong>Sorry!</strong> We are not able to give you a delivery method for your order.' => '<strong>Tut uns leid!</strong> WIr können für Ihre Bestellung leider keine Liefermethode anbieten.',
|
||||
'A new password has been sent to your e-mail address. Please check your mailbox.' => 'Ein neues Passwort wurde an Ihre E-Mail-Adresse geschickt. Bitte überprüfen Sie Ihre Mailbox.',
|
||||
'A problem occured' => 'Ein Problem ist aufgetreten',
|
||||
'A summary of your order has been sent to the following address' => 'Eine Zusammenfassung Ihrer Bestellung wurde an die folgende Adresse gesendet',
|
||||
'Account' => 'Benutzerkonto',
|
||||
'Add a new address' => 'Neue Adresse hinzufügen',
|
||||
'Add to cart' => 'In den Warenkorb',
|
||||
'Additional Info' => 'Zusätzliche Informationen',
|
||||
'Address' => 'Adresse',
|
||||
'Address %nb' => 'Adresse %nb',
|
||||
'Address Update' => 'Adresse bearbeiten',
|
||||
'All' => 'Alle',
|
||||
'All brands' => 'Alle Marken',
|
||||
'All brands in %store' => 'Alle Marken in %store',
|
||||
'All contents' => 'Alle Inhalte',
|
||||
'All contents in' => 'Alle Inhalte in',
|
||||
'All product in brand %title' => 'Alle Produkte der Marke %title',
|
||||
'All products' => 'Alle Artikel',
|
||||
'All products for brand %title in %store' => 'Alle Produkte der Marke %title in %store',
|
||||
'All products in' => 'Alle Produkten in ',
|
||||
'Amount' => 'Betrag',
|
||||
'An error occurred' => 'Ein Fehler ist aufgetreten',
|
||||
'Availability' => 'Verfügbarkeit',
|
||||
'Available' => 'Verfügbar',
|
||||
'Back' => 'Zurück',
|
||||
'Billing' => 'Rechnung',
|
||||
'Billing Mode' => 'Zahlungsmethode',
|
||||
'Billing address' => 'Rechnungsadresse',
|
||||
'Billing and delivery' => 'Rechnungs- und Lieferadresse',
|
||||
'Brand information' => 'Marke Informationen',
|
||||
'Brands' => 'Marken',
|
||||
'Cancel' => 'Abbrechen',
|
||||
'Cart' => 'Warenkorb',
|
||||
'Categories' => 'Kategorien',
|
||||
'Change Password' => 'Passwort ändern',
|
||||
'Change address' => 'Adresse ändern',
|
||||
'Change my account information' => 'Meine Kontodaten bearbeiten',
|
||||
'Change my password' => 'Mein Passwort ändern',
|
||||
'Check my order' => 'Meine Bestellung überprüfen',
|
||||
'Choose your delivery address' => 'Wählen Sie Ihre Lieferadresse',
|
||||
'Choose your delivery method' => 'Wählen Sie Ihre Liefermethode',
|
||||
'Choose your payment method' => 'Wählen Sie Ihre Zahlungsmethode',
|
||||
'Code :' => 'Code : ',
|
||||
'Connecting to the secure payment server, please wait a few seconds...' => 'Verbindung mit dem Secure Payment Server, bitte warten Sie einige Sekunden... ',
|
||||
'Contact Us' => 'Uns kontaktieren',
|
||||
'Contact page' => 'Kontakt-Seite',
|
||||
'Continue Shopping' => 'Weitere Artikeln aussuchen',
|
||||
'Copyright' => 'Copyright',
|
||||
'Coupon code' => 'Gutschein Code : ',
|
||||
'Create' => 'Erstellen',
|
||||
'Create New Account' => 'Neues Konto erstellen',
|
||||
'Create New Address' => 'Neue Adresse erstellen',
|
||||
'Created' => 'Erstellt',
|
||||
'Currency' => 'Währung',
|
||||
'Customer Number' => 'Kundennummer',
|
||||
'Date' => 'Datum',
|
||||
'Delivery' => 'Lieferung',
|
||||
'Delivery Information' => 'Lieferinformationen',
|
||||
'Delivery Mode' => 'Liefermethode',
|
||||
'Delivery REF' => 'Lieferungs REF',
|
||||
'Delivery address' => 'Lieferadresse',
|
||||
'Demo product description' => 'Demo Produkt Beschreibung',
|
||||
'Demo product title' => 'Demo Produkt Titel',
|
||||
'Description' => 'Beschreibung',
|
||||
'Discount' => 'Rabatt',
|
||||
'Do you have an account?' => 'Haben sie ein Konto ?',
|
||||
'Do you really want to delete this address ?' => 'Möchten sie wirklich diese Adresse löschen ?',
|
||||
'Documents' => 'Dokumente',
|
||||
'Download' => 'Herunterladen',
|
||||
'Edit' => 'Ändern',
|
||||
'Edit this address' => 'Diese Adresse ändern',
|
||||
'Estimated shipping ' => 'Erwartenden Versandkosten',
|
||||
'Forgot your Password?' => 'Haben sir Ihr Passwort vergessen ?',
|
||||
'Free shipping' => 'Kostenloser Versand',
|
||||
'From %price' => 'Ab %price',
|
||||
'Go back to the previous page' => 'Zurück auf die vorherige Seite',
|
||||
'Go home' => 'Zurück zur Startseite',
|
||||
'Grid' => 'Raster',
|
||||
'Home' => 'Startseite',
|
||||
'I\'ve read and agreed on <a href=\'%link\' class=\'terms-quickview\'>Terms & Conditions</a>' => 'Ich habe gelesen und akzeptiere die <a href=\'%link\' class=\'terms-quickview\'>allgemeine Bedingungen</a> ',
|
||||
'If nothing happens within 10 seconds, <a id="force-submit-payment-form" href="#">please click here</a>.' => 'Wenn nichts passiert nach 10 Sekunden, <a id="force-submit-payment-form" href="#">bitte hier klicken</a>. ',
|
||||
'If you want to change your email, please contact us.' => 'Wenn Sie Ihre E-Mail wechseln möchten, bitte kontaktieren Sie uns. ',
|
||||
'In Stock' => 'Verfügbar',
|
||||
'Invoice REF' => 'Rechnungs REF',
|
||||
'Invoice date' => 'Rechnungsdatum',
|
||||
'Language' => 'Sprache',
|
||||
'Latest' => 'Neuigkeiten',
|
||||
'Latest products' => 'Neuesten Produkten',
|
||||
'List' => 'Liste',
|
||||
'List of orders' => 'Bestellungensliste',
|
||||
'Login' => 'Anmeldung',
|
||||
'Login Information' => 'Zugangsdaten',
|
||||
'Main Address' => 'Adresse',
|
||||
'More information about this brand' => 'Mehr Informationen über diese Marke',
|
||||
'Multi-payment platform' => 'Multi-Zahlungsplattform',
|
||||
'My Account' => 'Mein Kundenkonto',
|
||||
'My Address Books' => 'Meine Adressbücher',
|
||||
'My Address book' => 'Mein Adressbuch',
|
||||
'My Orders' => 'Meine Bestellungen',
|
||||
'My order' => 'Meine Bestellung',
|
||||
'Name' => 'Name',
|
||||
'Name ascending' => 'Name aufsteigend',
|
||||
'Name descending' => 'Name absteigend',
|
||||
'Need help ?' => 'Brauchen Sie Hilfe?',
|
||||
'Newsletter' => 'Newsletter',
|
||||
'Newsletter Subscription' => 'Newsletter-Abo',
|
||||
'Next' => 'Weiter',
|
||||
'Next Step' => 'Nächster Schritt',
|
||||
'Next product' => 'Nächster Artikel',
|
||||
'No Contents in this folder.' => 'Kein Inhalt in diesem Ordner',
|
||||
'No deliveries available for this cart and this country' => 'Keine Lieferung für dieses Warenkorb und dieses Land verfügbar',
|
||||
'No products available in this brand' => 'Keine Produkte verfügbar in dieser Marke',
|
||||
'No products available in this category' => 'Keine Produkte verfügbar in dieser Kategorie',
|
||||
'No results found' => 'Keine Ergebnisse gefunden',
|
||||
'No.' => 'Nein.',
|
||||
'Ok' => 'Okay',
|
||||
'Options' => 'Optionen',
|
||||
'Order details' => 'Bestelldaten',
|
||||
'Order details %ref' => 'Bestelldaten %ref',
|
||||
'Order number' => 'Bestellungsnummer',
|
||||
'Orders over $50' => 'Bestellungen über $50',
|
||||
'Out of Stock' => 'Nicht auf Lager',
|
||||
'PDF invoice' => 'PDF Rechnung',
|
||||
'Pagination' => 'Paginierung',
|
||||
'Password' => 'Passwort',
|
||||
'Password Forgotten' => 'Passwort vergessen',
|
||||
'Pay with %module_title' => 'Mit %module_title bezahlen',
|
||||
'Personal Information' => 'Persönliche Informationen',
|
||||
'Placeholder address label' => 'Haus, Arbeit ...',
|
||||
'Placeholder address1' => 'Adresse 1',
|
||||
'Placeholder address2' => 'Adresse',
|
||||
'Placeholder cellphone' => 'Mobiltelefonnummer',
|
||||
'Placeholder city' => 'New York',
|
||||
'Placeholder company' => 'Google',
|
||||
'Placeholder contact email' => 'E-mail Adresse',
|
||||
'Placeholder contact message' => 'Und Ihre Nachricht...',
|
||||
'Placeholder contact name' => 'Wie heißen Sie?',
|
||||
'Placeholder contact subject' => 'Betreff',
|
||||
'Placeholder email' => 'E-mail Adresse',
|
||||
'Placeholder email confirm' => 'E-Mail Adresse',
|
||||
'Placeholder firstname' => 'Vorname',
|
||||
'Placeholder lastname' => 'Nachname',
|
||||
'Placeholder phone' => 'Telefonnummer',
|
||||
'Placeholder zipcode' => 'Postleitzahl',
|
||||
'Please enter your email address below.' => 'Bitte geben Sie Ihre E-Mail-Adresse ein.',
|
||||
'Please try again to order' => 'Versuchen Sie es erneut',
|
||||
'Position' => 'Position',
|
||||
'Postage' => 'Porto',
|
||||
'Previous' => 'Zurück',
|
||||
'Previous product' => 'Vorgängerprodukt',
|
||||
'Price' => 'Preis',
|
||||
'Price ascending' => 'Preis aufsteigend',
|
||||
'Price descending' => 'Preis absteigend',
|
||||
'Proceed checkout' => 'Zur Kasse',
|
||||
'Product Empty Button' => 'Produkt Leere Taste',
|
||||
'Product Empty Message' => 'Produkt Leere Nachricht',
|
||||
'Product Empty Title' => 'Willkommen',
|
||||
'Product Name' => 'Produktname',
|
||||
'Product Offers' => 'Produktangebote',
|
||||
'Qty' => 'Menge',
|
||||
'Quantity' => 'Menge',
|
||||
'Questions ? See our F.A.Q.' => 'Haben Sie Fragen? Sehen Sie unsere F.A.Q.',
|
||||
'REF' => 'REF',
|
||||
'Rating' => 'Bewertung',
|
||||
'Redirect to bank service' => 'Weiterleitung ',
|
||||
'Ref.' => 'Ref.',
|
||||
'Register' => 'Registrieren',
|
||||
'Regular Price:' => 'Normalpreis :',
|
||||
'Related' => 'Ähnlich',
|
||||
'Remove' => 'Entfernen',
|
||||
'Remove this address' => 'Diese Adresse entfernen',
|
||||
'SELECT YOUR CURRENCY' => 'WÄHLEN SIE IHRE WÄHRUNG',
|
||||
'SELECT YOUR LANGUAGE' => 'WÄHLEN SIE IHRE SPRACHE',
|
||||
'Sale was not found' => 'Die Angebot wurde nicht gefunden',
|
||||
'Save %amount%sign on these products' => '%amount%sign sparen',
|
||||
'Save %amount%sign on this product' => '%amount%sign sparen',
|
||||
'Search' => 'Suchen',
|
||||
'Search Result for' => 'Suchergebnis für',
|
||||
'Secondary Navigation' => 'Sekundäre Navigation',
|
||||
'Secure Payment' => 'Sichere Bezahlung',
|
||||
'Secure payment' => 'Sichere Bezahlung',
|
||||
'Select Country' => 'Land',
|
||||
'Select State' => 'Bundesland auswählen',
|
||||
'Select Title' => 'Anrede',
|
||||
'Select your country:' => 'Wählen Sie Ihr Land aus :',
|
||||
'Send' => 'Senden',
|
||||
'Send new password again' => 'Den neuen Passwort wieder schicken',
|
||||
'Send us a message' => 'Uns eine Nachricht senden',
|
||||
'Shipping Tax' => 'Versandsteuern',
|
||||
'Show' => 'Zeigen',
|
||||
'Sign in' => 'Anmeldung',
|
||||
'Skip to content' => 'Direkt zum Inhalt',
|
||||
'Sorry but this combination does not exist.' => 'Es tut uns Leid, aber diese Kombination ist nicht vorhanden.',
|
||||
'Sorry, your cart is empty. There\'s nothing to pay.' => 'Ihr Wahrenkorb ist derzeit leer. ',
|
||||
'Sort By' => 'Sortieren nach',
|
||||
'Special Price:' => 'Aktionspreis:',
|
||||
'Status' => 'Status',
|
||||
'Subscribe' => 'Abonnieren',
|
||||
'Taxed Price' => 'Besteuert Preis',
|
||||
'Thank you for the trust you place in us.' => 'Vielen Dank für das Vertrauen, das Sie in uns setzen.',
|
||||
'Thanks !' => 'Vielen Dank!',
|
||||
'Thanks for signing up! We\'ll keep you posted whenever we have any new updates.' => 'Vielen Dank für Ihre Anmeldung! Wir halten Ihnen auf dem Laufenden über neuen Updates.',
|
||||
'Thanks for your message, we will contact as soon as possible.' => 'Vielen Dank für Ihre Nachricht, wir melden uns so bald wie möglich.',
|
||||
'The page cannot be found' => 'Die Seite kann nicht gefunden werden',
|
||||
'The product has been added to your cart' => 'Das Produkt wurde im Warenkorb hinzugefügt',
|
||||
'Thelia V2' => 'Thelia V2',
|
||||
'This offer is valid until %date' => 'Diese Angebot ist gültig bis den %date',
|
||||
'Toggle navigation' => 'Navigation umschalten',
|
||||
'Total' => 'Gesamtsumme',
|
||||
'Total excl. taxes' => 'Gesamtpreis exkl. Steuern',
|
||||
'Total incl. taxes' => 'Gesamtpreis inkl. Steuern',
|
||||
'Total with tax' => 'Gesamtsumme mit Steuer',
|
||||
'Total without tax' => 'Gesamtpreis exkl. Steuern',
|
||||
'Transaction REF : %ref' => 'Transaktions REF : %ref',
|
||||
'Try again' => 'Versuchen Sie es erneut',
|
||||
'Unit Price' => 'Stückpreis',
|
||||
'Unit Price incl. taxes' => 'Einzelpreis inkl. Steuer',
|
||||
'Unit Taxed Price' => 'Einzelpreis inklusive Steuer',
|
||||
'Update' => 'Update',
|
||||
'Update Profile' => 'Profil aktualisieren',
|
||||
'Update Quantity' => 'Menge aktualisieren',
|
||||
'Upsell Products' => 'Weitere Produkte',
|
||||
'View' => 'Ansehen',
|
||||
'View Cart' => 'Warenkorb anzeigen',
|
||||
'View all' => 'Alle anzeigen',
|
||||
'View as' => 'Sehen als',
|
||||
'View order %ref details' => 'Bestellung %ref als Pdf Dokument ansehen',
|
||||
'View product' => 'Das Produkt ansehen',
|
||||
'Warning' => 'Warnung',
|
||||
'We apologize but some of the ordered products are not available any more.' => 'Es tut uns Leid, aber einige der bestellten Produkte sind nicht mehr erhältlich.',
|
||||
'We\'re sorry but an error occured. Please try to contact the site <a href=\'mailto:%mail\'>administrator</a>' => 'Ein Fehler ist aufgetreten. Bitte probieren Sie den <a href=\'mailto:%mail\'>Administrator</a> zu kontaktieren',
|
||||
'We\'re sorry, a problem occured and your payment was not successful.' => 'Es tut uns Leid, ein Problem ist aufgetreten und Ihre Zahlung war nicht erfolgreich',
|
||||
'You are here:' => 'Sie sind hier:',
|
||||
'You choose' => 'Sie haben gewählt',
|
||||
'You choose to pay by' => 'Gewähltes Zahlungsmittel',
|
||||
'You don\'t have orders yet.' => 'Sie haben noch keine Bestellungen',
|
||||
'You have no items in your shopping cart.' => 'Sie haben keine Produkte im Warenkorb',
|
||||
'You may have a coupon ?' => 'Haben Sie einen Gutschein?',
|
||||
'You want to subscribe to the newsletter? Please enter your email address below.' => 'Sie möchten den Newsletter abonnieren? Bitte geben Sie Ihre E-mail Adresse ein. ',
|
||||
'You will receive a link to reset your password.' => 'Sie erhalten einen Link, um Ihr Passwort zurückzusetzen.',
|
||||
'Your Cart' => 'Ihr Warenkorb',
|
||||
'Your order will be confirmed by us upon receipt of your payment.' => 'Ihre Bestellung wird von uns nach Erhalt Ihrer Zahlung bestätigt.',
|
||||
'for' => 'für',
|
||||
'instead of' => 'statt',
|
||||
'missing or invalid data' => 'fehlende oder ungültige Daten',
|
||||
'per page' => 'pro Seite',
|
||||
'update' => 'Aktualisieren',
|
||||
'with:' => 'mit : ',
|
||||
'404' => '404',
|
||||
];
|
||||
@@ -1,201 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'%nb Item' => 'Στοιχείο %nb',
|
||||
'%nb Items' => 'Στοιχεία %nb',
|
||||
'+' => '+',
|
||||
'<strong>Sorry!</strong> We are not able to give you a delivery method for your order.' => '<strong>Συγγνώμη!</strong> Δεν είμαστε σε θέση να σας δώσεουμε μια μέθοδος παράδοσης για την παραγγελία σας.',
|
||||
'A problem occured' => 'Παρουσιάστηκε ένα πρόβλημα',
|
||||
'Account' => 'Λογαριασμός',
|
||||
'Add a new address' => 'Προσθέστε μια νέα διεύθυνση',
|
||||
'Add to cart' => 'Προσθήκη στο καλάθι',
|
||||
'Additional Info' => 'Πρόσθετες πληροφορίες',
|
||||
'Address' => 'Διεύθυνση',
|
||||
'Address %nb' => 'Διεύθυνση %nb',
|
||||
'Address Update' => 'Ενημέρωση διεύθυνσης',
|
||||
'All contents' => 'Όλα τα περιεχόμενα',
|
||||
'All contents in' => 'Όλα τα περιεχόμενα σε',
|
||||
'All products' => 'Όλα τα προϊόντα',
|
||||
'All products in' => 'Όλα τα προϊόντα στο',
|
||||
'Amount' => 'Ποσό',
|
||||
'An error occurred' => 'An error occured',
|
||||
'Availability' => 'Διαθεσιμότητα',
|
||||
'Available' => 'Διαθέσιμο',
|
||||
'Back' => 'Προηγούμενο',
|
||||
'Billing address' => 'Διεύθυνση χρέωσης',
|
||||
'Billing and delivery' => 'Χρέωση και παράδοση',
|
||||
'Cancel' => 'Ακύρωση',
|
||||
'Cart' => 'Καλάθι',
|
||||
'Categories' => 'Kατηγορίες',
|
||||
'Change Password' => 'Αλλάξτε κωδικό πρόσβασης',
|
||||
'Change address' => 'Αλλάξτε τη διεύθυνση',
|
||||
'Change my account information' => 'Αλλάξτε τις πληροφορίες του λογαριασμού μου',
|
||||
'Change my password' => 'Αλλαγή του κωδικού μου',
|
||||
'Check my order' => 'Ελέγξτε την παραγγελία μου',
|
||||
'Choose your delivery address' => 'Επιλέξτε τη διεύθυνση παράδοσης',
|
||||
'Choose your delivery method' => 'Επιλέξτε τρόπο παράδοσης',
|
||||
'Choose your payment method' => 'Επιλέξτε τη μέθοδο πληρωμής',
|
||||
'Code :' => 'Κωδικός:',
|
||||
'Connecting to the secure payment server, please wait a few seconds...' => 'Σύνδεση με ασφαλή διακομιστή, σας ευχαριστούμε για την υπομονή σας.',
|
||||
'Contact Us' => 'Επικοινωνείστε μαζί μας',
|
||||
'Continue Shopping' => 'Συνέχεια Αγορών',
|
||||
'Copyright' => 'Πνευματικά δικαιώματα',
|
||||
'Coupon code' => 'Κωδικός κουπονιού',
|
||||
'Create' => 'Δημιουργία',
|
||||
'Create New Account' => 'Δημιουργία νέου λογαριασμού',
|
||||
'Create New Address' => 'Δημιουργία νέας διεύθυνσης',
|
||||
'Currency' => 'Nόμισμα',
|
||||
'Date' => 'Ημ/νία',
|
||||
'Delivery Information' => 'Πληροφορίες παράδοσης',
|
||||
'Delivery address' => 'Διεύθυνση παράδοσης',
|
||||
'Demo product description' => 'Περιγραφή του προϊόντος demo',
|
||||
'Demo product title' => 'Τίτλος προϊόντος demo',
|
||||
'Description' => 'Περιγραφή',
|
||||
'Do you have an account?' => 'Έχετε ένα λογαριασμό;',
|
||||
'Do you really want to delete this address ?' => 'Θέλετε να διαγράψετε αυτή τη διεύθυνση;',
|
||||
'Edit' => 'Επεξεργασία',
|
||||
'Edit this address' => 'Επεξεργαστείτε αυτή τη διεύθυνση',
|
||||
'Estimated shipping ' => 'Εκτιμώμενα μεταφορικά ',
|
||||
'Forgot your Password?' => 'Ξεχάσατε τον κωδικό σας?',
|
||||
'Free shipping' => 'Δωρεάν αποστολή',
|
||||
'Go home' => 'Πήγαινε στην Αρχή',
|
||||
'Grid' => 'Πλέγμα',
|
||||
'Home' => 'Αρχή',
|
||||
'If nothing happens within 10 seconds, <a id="force-submit-payment-form" href="#">please click here</a>.' => 'Εάν δε συμβεί τίποτα εντός των επόμενων 10 δευτερολέπτων, <a id="force-submit-payment-form" href="#"> Παρακαλώ, πατήστε εδώ</a>. ',
|
||||
'In Stock' => 'Σε απόθεμα',
|
||||
'Invoice REF' => 'Αναφ Τιμολογίου',
|
||||
'Language' => 'Γλώσσα',
|
||||
'Latest' => 'Πρόσφατα',
|
||||
'Latest products' => 'Τελευταία προϊόντα',
|
||||
'List' => 'Λίστα',
|
||||
'List of orders' => 'Λίστα παραγγελιών',
|
||||
'Login' => 'Σύνδεση',
|
||||
'Login Information' => 'Πληροφορίες Σύνδεσης',
|
||||
'Multi-payment platform' => 'Πλατφόρμα πολλαπλών πληρωμών',
|
||||
'My Account' => 'Ο Λογαριασμός μου',
|
||||
'My Address Books' => 'Τα βιβλία διευθύνσεων μου',
|
||||
'My Address book' => 'Κατάλογος Διευθύνσεων',
|
||||
'My Orders' => 'Οι παραγγελίες μου',
|
||||
'My order' => 'Η Παραγγελία μου',
|
||||
'Name' => 'Όνομα',
|
||||
'Name ascending' => 'Όνομα αύξουσα',
|
||||
'Name descending' => 'Όνομα Φθίνουσα',
|
||||
'Need help ?' => 'Χρειάζεστε βοήθεια; ?',
|
||||
'Newsletter' => 'Ενημερωτικό δελτίο',
|
||||
'Newsletter Subscription' => 'Συνδρομή στο Newsletter',
|
||||
'Next' => 'Επόμενο',
|
||||
'Next Step' => 'Επόμενο βήμα',
|
||||
'Next product' => 'Επόμενο προϊόν',
|
||||
'No deliveries available for this cart and this country' => 'Δεν υπάρχουν διαθέσιμες παραδόσεις για το καλάθι και τη χώρα σας',
|
||||
'No products available in this category' => 'Δεν υπάρχουν διαθέσιμα προϊόντα σε αυτήν την κατηγορία',
|
||||
'No results found' => 'Δε βρέθηκαν αποτελέσματα',
|
||||
'No.' => 'Αριθ.',
|
||||
'Ok' => 'Οκ',
|
||||
'Order details' => 'Λεπτομέρειες παραγγελίας',
|
||||
'Order number' => 'Αριθμός παραγγελίας',
|
||||
'Orders over $50' => 'Παραγγελίες άνω των $50',
|
||||
'Out of Stock' => 'Εξαντλημένο',
|
||||
'Pagination' => 'Σελιδοποίηση',
|
||||
'Password' => 'Κωδικός',
|
||||
'Password Forgotten' => 'Ξεχασμένος Κωδικός',
|
||||
'Pay with %module_title' => 'Πληρώστε με %module_title',
|
||||
'Personal Information' => 'Προσωπικές πληροφορίες',
|
||||
'Placeholder address label' => 'Σπίτι, Γραφείο εργασίας, άλλο',
|
||||
'Placeholder address1' => '76, Ενατη λεωφόρος',
|
||||
'Placeholder address2' => 'Διεύθυνση',
|
||||
'Placeholder city' => 'Νέα Υόρκη',
|
||||
'Placeholder company' => 'Google',
|
||||
'Placeholder contact email' => 'Έτσι ώστε να μπορέσω να σας πάρω πίσω.',
|
||||
'Placeholder contact message' => 'Και το μήνυμά σας...',
|
||||
'Placeholder contact name' => 'Ποιό είναι το όνομά σας?',
|
||||
'Placeholder contact subject' => 'Το θέμα του μηνύματός σας.',
|
||||
'Placeholder email' => 'georgepapadopoulos@domain.com',
|
||||
'Placeholder firstname' => 'Γιώργος',
|
||||
'Placeholder lastname' => 'Παπαδόπουλος',
|
||||
'Placeholder zipcode' => 'NY 10011',
|
||||
'Please enter your email address below.' => 'Παρακαλούμε εισάγετε το email σας παρακάτω.',
|
||||
'Please try again to order' => 'Παρακαλώ ξαναπροσπαθήστε να παραγγείλετε',
|
||||
'Position' => 'Θέση',
|
||||
'Previous' => 'Προηγούμενο',
|
||||
'Previous product' => 'Προηγούμενο προϊόν',
|
||||
'Price' => 'Τιμή',
|
||||
'Price ascending' => 'Αύξουσα τιμή',
|
||||
'Price descending' => 'Φθίνουσα τιμή',
|
||||
'Proceed checkout' => 'Προχωρήστε στην ολοκλήρωση της παραγγελίας',
|
||||
'Product Empty Button' => 'Προσθήκη πρώτου προϊόντος',
|
||||
'Product Empty Message' => 'Είναι πολύ εύκολο να προσθέσετε ένα προϊόν.
|
||||
<ol>
|
||||
<li>Επιλέξτε<strong>Νέο</strong> κάτω από την καρτέλα λεπτομέρειες εάν θέλετε να δείτε το προϊόν σας στην ενότητα τελευταίων προϊόντων.</li>
|
||||
<li>Επιλέξτε<strong>Πώληση</strong> κάτω από την καρτέλα λεπτομέρειες εάν θέλετε να δείτε το προϊόν σας στην ενότητα προσφορών προϊόντων.</li>
|
||||
</ol>',
|
||||
'Product Name' => 'Όνομα Προϊόντος',
|
||||
'Product Offers' => 'Προσφορές προϊόντων',
|
||||
'Qty' => 'Ποσότητα',
|
||||
'Quantity' => 'Ποσότητα',
|
||||
'Questions ? See our F.A.Q.' => 'Ερωτήσεις; Δείτε τις Συχνές ερωτήσεις',
|
||||
'Rating' => 'Βαθμολογία',
|
||||
'Redirect to bank service' => 'Ανακατευθύνει στην υπηρεσία της Τράπεζας',
|
||||
'Ref.' => 'Αναφ.',
|
||||
'Register' => 'Καταχώρηση',
|
||||
'Regular Price:' => 'Κανονική τιμή:',
|
||||
'Related' => 'Που σχετίζονται με',
|
||||
'Remove' => 'Διαγραφη',
|
||||
'Remove this address' => 'Αφαιρέστε αυτή τη διεύθυνση',
|
||||
'SELECT YOUR CURRENCY' => 'ΕΠΙΛΕΞΤΕ ΤΟ ΝΟΜΙΣΜΑ ΣΑΣ',
|
||||
'SELECT YOUR LANGUAGE' => 'ΕΠΙΛΕΞΤΕ ΤΗ ΓΛΩΣΣΑ ΣΑΣ',
|
||||
'Search' => 'Αναζήτηση',
|
||||
'Search Result for' => 'Αναζητήστε Αποτελέσματα για',
|
||||
'Secure Payment' => 'Ασφαλής πληρωμή',
|
||||
'Secure payment' => 'Ασφαλής πληρωμή',
|
||||
'Select Country' => 'Επιλέξτε Χώρα',
|
||||
'Select Title' => 'Επιλέξτε τίτλο',
|
||||
'Select your country:' => 'Επιλέξτε τη χώρα σας:',
|
||||
'Send' => 'Αποστολή',
|
||||
'Send us a message' => 'Στείλτε μας ένα μήνυμα',
|
||||
'Shipping Tax' => 'Φόρος Αποστολής',
|
||||
'Show' => 'Εμφάνιση',
|
||||
'Skip to content' => 'Μετάβαση στο περιεχόμενο',
|
||||
'Sorry, your cart is empty. There\'s nothing to pay.' => 'Λυπούμαστε, το καλάθι αγορών σας είναι άδειο. Δεν υπάρχει τίποτα για να πληρώσετε.',
|
||||
'Sort By' => 'Ταξινόμηση κατά',
|
||||
'Special Price:' => 'Ειδική τιμή:',
|
||||
'Status' => 'Κατάσταση',
|
||||
'Subscribe' => 'Συνδρομή',
|
||||
'Thank you for the trust you place in us.' => 'Σας ευχαριστούμε για την εμπιστοσύνη που μας δείχνετε.',
|
||||
'Thanks !' => 'Ευχαριστούμε !',
|
||||
'Thanks for signing up! We\'ll keep you posted whenever we have any new updates.' => 'Ευχαριστούμε για την εγγραφή! Θα θα σας κρατήσουμε ενήμερους όποτε έχουμε νέες ενημερώσεις.',
|
||||
'Thanks for your message, we will contact as soon as possible.' => 'Ευχαριστούμε για το μήνυμά σας, θα επικοινωνήσουμε μαζί σας το συντομότερο δυνατό.',
|
||||
'The page cannot be found' => 'Η σελίδα δεν βρέθηκε',
|
||||
'Thelia V2' => 'Thelia V2',
|
||||
'Toggle navigation' => 'Εναλλαγή περιήγησης',
|
||||
'Total' => 'Σύνολο',
|
||||
'Total without tax' => 'Σύνολο χωρίς ΦΠΑ',
|
||||
'Try again' => 'Ευχαριστούμε που ξαναπροσπαθήσατε.',
|
||||
'Unit Price' => 'Τιμή μονάδας',
|
||||
'Update' => 'Ενημέρωση',
|
||||
'Update Profile' => 'Ενημέρωση Προφιλ',
|
||||
'Update Quantity' => 'Ενημέρωση Ποσότητας',
|
||||
'Upsell Products' => 'Προϊόντα Υψηλότερης Αξίας',
|
||||
'View' => 'Προβολή',
|
||||
'View Cart' => 'Προβολή Καλαθιού',
|
||||
'View all' => 'Εμφάνιση όλων',
|
||||
'View as' => 'Προβολή ως',
|
||||
'View product' => 'Προβολή προϊόντος',
|
||||
'Warning' => 'Προειδοποίηση',
|
||||
'We\'re sorry, a problem occured and your payment was not successful.' => 'Ζητούμε συγνώμη, παρουσιάστηκε πρόβλημα και η πληρωμή σας δεν ήταν επιτυχής.',
|
||||
'You are here:' => 'Είστε εδώ:',
|
||||
'You choose to pay by' => 'Επιλέξατε να πληρώσετε με',
|
||||
'You don\'t have orders yet.' => 'Δεν έχετε ακόμα παραγγελίες.',
|
||||
'You have no items in your shopping cart.' => 'Δεν έχετε προϊόντα στο καλάθι αγορών σας.',
|
||||
'You may have a coupon ?' => 'Μπορεί να έχετε ένα κουπόνι;',
|
||||
'You want to subscribe to the newsletter? Please enter your email address below.' => 'Θέλετε να εγγραφείτε στο ενημερωτικό δελτίο; Παρακαλούμε συμπληρώστε παρακάτω το email σας.',
|
||||
'You will receive a link to reset your password.' => 'Θα λάβετε ένα σύνδεσμο για να επαναδημιουργήσετε τον κωδικό πρόσβασής σας.',
|
||||
'Your Cart' => 'Το καλάθι σας',
|
||||
'Your order will be confirmed by us upon receipt of your payment.' => 'Παραγγελία σας θα επιβεβαιωθεί από εμάς, μετά την παραλαβή της πληρωμής σας.',
|
||||
'for' => 'για',
|
||||
'instead of' => 'αντί για',
|
||||
'missing or invalid data' => 'ελλειπή ή αναληθή δεδομένα',
|
||||
'per page' => 'ανά σελίδα',
|
||||
'update' => 'ενημέρωση',
|
||||
'with:' => 'με:',
|
||||
'404' => '404',
|
||||
];
|
||||
@@ -264,4 +264,7 @@ return array(
|
||||
'per page' => 'per page',
|
||||
'update' => 'update',
|
||||
'with:' => 'with:',
|
||||
|
||||
'Click to apply coupon' => 'Click on "Ok" button below to apply your coupon code.',
|
||||
'Estimated weight %weight' => '(for an estimated weight of %weight kg)',
|
||||
);
|
||||
|
||||
@@ -1,262 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'%nb Item' => '%nb artículo',
|
||||
'%nb Items' => '%nb artículos',
|
||||
'+' => '+',
|
||||
'<strong>Sorry!</strong> We are not able to give you a delivery method for your order.' => '<strong>¡Lo sentimos!</strong> No somos capaces de dar un método de entrega para tu pedido.',
|
||||
'A new password has been sent to your e-mail address. Please check your mailbox.' => 'Se ha enviado una nueva contraseña a por correo electrónico. Por favor comprueba tu buzón.',
|
||||
'A problem occured' => 'Ha surgido un problema',
|
||||
'A summary of your order has been sent to the following address' => 'Un resumen de tu pedido ha sido enviado a la siguiente dirección de correo',
|
||||
'Account' => 'Cuenta',
|
||||
'Add a new address' => 'Añadir una nueva dirección',
|
||||
'Add to cart' => 'Añadir al carrito',
|
||||
'Additional Info' => 'Información adicional',
|
||||
'Address' => 'Dirección',
|
||||
'Address %nb' => 'Dirección %nb',
|
||||
'Address Update' => 'Dirección actualizada',
|
||||
'All' => 'Todo',
|
||||
'All brands' => 'Todas las marcas',
|
||||
'All brands in %store' => 'Todas las marcas en %store',
|
||||
'All contents' => 'Todos los contenidos',
|
||||
'All contents in' => 'Todos los contenidos en',
|
||||
'All product in brand %title' => 'Todos los productos de la marca %title',
|
||||
'All products' => 'Todos los productos',
|
||||
'All products for brand %title in %store' => 'Todos los productos de la marca %title en %store',
|
||||
'All products in' => 'Todos los productos en',
|
||||
'Amount' => 'Importe',
|
||||
'An error occurred' => 'Ha ocurrido un error',
|
||||
'Availability' => 'Disponibilidad',
|
||||
'Available' => 'Disponible',
|
||||
'Back' => 'Volver',
|
||||
'Billing' => 'Facturación',
|
||||
'Billing Mode' => 'Modo de facturación',
|
||||
'Billing address' => 'Dirección de facturación',
|
||||
'Billing and delivery' => 'Facturación y entrega',
|
||||
'Brand information' => 'Información de marca',
|
||||
'Brands' => 'Marcas',
|
||||
'Cancel' => 'Cancelar',
|
||||
'Cart' => 'Carrito',
|
||||
'Categories' => 'Categorías',
|
||||
'Change Password' => 'Cambiar contraseña',
|
||||
'Change address' => 'Cambiar dirección',
|
||||
'Change my account information' => 'Cambiar la información de mi cuenta',
|
||||
'Change my password' => 'Cambiar mi contraseña',
|
||||
'Check my order' => 'Verificar mi pedido',
|
||||
'Choose your delivery address' => 'Elige tu dirección de entrega',
|
||||
'Choose your delivery method' => 'Elegir el método de entrega',
|
||||
'Choose your payment method' => 'Elegir el método de pago',
|
||||
'Code :' => 'Código:',
|
||||
'Connecting to the secure payment server, please wait a few seconds...' => 'Conectando al servidor de pago seguro, por favor espere unos segundos.',
|
||||
'Contact Us' => 'Contacte con nosotros',
|
||||
'Contact page' => 'Página de contacto',
|
||||
'Continue Shopping' => 'Seguir comprando',
|
||||
'Copyright' => 'Derechos de autor',
|
||||
'Coupon code' => 'Código de cupón',
|
||||
'Create' => 'Crear',
|
||||
'Create New Account' => 'Crear una cuenta nueva',
|
||||
'Create New Address' => 'Crear una nueva dirección',
|
||||
'Created' => 'Creado',
|
||||
'Currency' => 'Divisa',
|
||||
'Customer Number' => 'Número de cliente',
|
||||
'Date' => 'Fecha',
|
||||
'Delete' => 'Borrar',
|
||||
'Delivery' => 'Envío',
|
||||
'Delivery Information' => 'Información de entrega',
|
||||
'Delivery Mode' => 'Forma de envío',
|
||||
'Delivery REF' => 'REF de entrega',
|
||||
'Delivery address' => 'Dirección de entrega',
|
||||
'Demo product description' => 'Descripción del producto demo',
|
||||
'Demo product title' => 'Título del producto demo',
|
||||
'Description' => 'Descripción',
|
||||
'Discount' => 'Descuento',
|
||||
'Do you have an account?' => '¿Tienes una cuenta?',
|
||||
'Do you really want to delete this address ?' => '¿Quieres eliminar esta dirección?',
|
||||
'Documents' => 'Documentos',
|
||||
'Download' => 'Descargar',
|
||||
'Edit' => 'Editar',
|
||||
'Edit this address' => 'Editar esta dirección',
|
||||
'Estimated shipping ' => 'Envío estimado ',
|
||||
'Expected delivery date: %delivery_date' => 'Fecha estimada de entrega :',
|
||||
'Forgot your Password?' => '¿Olvidaste tu contraseña?',
|
||||
'Free shipping' => '¡Envío gratuito!',
|
||||
'From %price' => 'De %price',
|
||||
'Go back to the previous page' => 'Volver a la página anterior',
|
||||
'Go home' => 'Vuelve a la página de inicio',
|
||||
'Grid' => 'Cuadrícula',
|
||||
'Home' => 'Página de inicio',
|
||||
'I\'ve read and agreed on <a href=\'%link\' class=\'terms-quickview\'>Terms & Conditions</a>' => 'He leído y acuerdo con <a href=\'%link\' class=\'terms-quickview\'> los términos y condiciones</a>',
|
||||
'If nothing happens within 10 seconds, <a id="force-submit-payment-form" href="#">please click here</a>.' => 'Si nada sucede dentro de 10 segundos, <a id="force-submit-payment-form" href="#"> por favor haga clic aquí</a>. ',
|
||||
'If you want to change your email, please contact us.' => 'Si deseas cambiar tu correo electrónico, contacta con nosotros.',
|
||||
'In Stock' => 'En stock',
|
||||
'Invoice REF' => 'REF de factura ',
|
||||
'Invoice date' => 'Fecha factura',
|
||||
'Language' => 'Idioma',
|
||||
'Latest' => 'Más reciente',
|
||||
'Latest products' => 'Últimos productos',
|
||||
'List' => 'Lista',
|
||||
'List of orders' => 'Lista de pedidos',
|
||||
'Login' => '¡Iniciar sesión!',
|
||||
'Login Information' => 'Información de registro',
|
||||
'Main Address' => 'Dirección principal',
|
||||
'More information about this brand' => 'Más información sobre esta marca',
|
||||
'Multi-payment platform' => 'Plataforma multi-pago',
|
||||
'My Account' => 'Mi cuenta',
|
||||
'My Address Books' => 'Mis libretas de direcciones',
|
||||
'My Address book' => 'Mi libreta de direcciones',
|
||||
'My Orders' => 'Mis pedidos',
|
||||
'My order' => 'Mi pedido',
|
||||
'Name' => 'Nombre',
|
||||
'Name ascending' => 'Nombre ascendente',
|
||||
'Name descending' => 'Nombre descendente',
|
||||
'Need help ?' => '¿Necesitas ayuda?',
|
||||
'Newsletter' => 'Boletín de noticias',
|
||||
'Newsletter Subscription' => 'Suscripción al boletín',
|
||||
'Next' => 'Próximo',
|
||||
'Next Step' => 'Siguiente paso',
|
||||
'Next product' => 'Producto siguiente',
|
||||
'No Contents in this folder.' => 'No hay contenidos en esta carpeta.',
|
||||
'No deliveries available for this cart and this country' => 'No hay envíos disponibles para este carrito y este país',
|
||||
'No products available in this brand' => 'No hay productos disponibles en esta marca',
|
||||
'No products available in this category' => 'No hay productos disponibles en esta categoría',
|
||||
'No results found' => 'No se encontraron resultados',
|
||||
'No.' => 'No.',
|
||||
'Ok' => 'Ok',
|
||||
'Options' => 'Opciones',
|
||||
'Order details' => 'Detalles del pedido',
|
||||
'Order details %ref' => 'Detalles del pedido %ref',
|
||||
'Order number' => 'Número de pedido',
|
||||
'Orders over $50' => 'Pedidos superiores a 50$',
|
||||
'Out of Stock' => 'Fuera de stock',
|
||||
'PDF invoice' => 'Factura PDF',
|
||||
'Pagination' => 'Paginación',
|
||||
'Password' => 'Contraseña',
|
||||
'Password Forgotten' => 'Contraseña olvidada',
|
||||
'Pay with %module_title' => 'Pagar con %module_title',
|
||||
'Personal Information' => 'Información personal',
|
||||
'Placeholder address label' => 'Casa, Trabajo, otros',
|
||||
'Placeholder address1' => 'Paseo del prado 76',
|
||||
'Placeholder address2' => 'Dirección',
|
||||
'Placeholder cellphone' => 'Número de teléfono móvil',
|
||||
'Placeholder city' => 'Nueva York',
|
||||
'Placeholder company' => 'Google',
|
||||
'Placeholder contact email' => 'Entonces, puedo ponerme en contacto contigo.',
|
||||
'Placeholder contact message' => 'Y tu mensaje...',
|
||||
'Placeholder contact name' => '¿Cómo te llamas?',
|
||||
'Placeholder contact subject' => 'El asunto de tu mensaje.',
|
||||
'Placeholder email' => 'Johndoe@domain.com',
|
||||
'Placeholder email confirm' => 'Posición de confirmación de correo electrónico',
|
||||
'Placeholder firstname' => 'Juan',
|
||||
'Placeholder lastname' => 'Doe',
|
||||
'Placeholder phone' => 'Número de teléfono',
|
||||
'Placeholder zipcode' => 'Madrid 28011',
|
||||
'Please enter your email address below.' => 'Por favor, introduce tu dirección de correo electrónico.',
|
||||
'Please try again to order' => 'Intentar de nuevo para realizar pedido',
|
||||
'Position' => 'Posición',
|
||||
'Postage' => 'Gastos de envío',
|
||||
'Previous' => 'Anterior',
|
||||
'Previous product' => 'Producto anterior',
|
||||
'Price' => 'Precio',
|
||||
'Price ascending' => 'Precio ascendente',
|
||||
'Price descending' => 'Precio descendente',
|
||||
'Proceed checkout' => 'Realizar el checkout',
|
||||
'Product Empty Button' => 'Añadir mi primer producto',
|
||||
'Product Empty Message' => 'Es rápido añadir un producto.
|
||||
<ol>
|
||||
<li>Pincha <strong>Nuevo</strong> en la pestaña de detalles si quieres ver tu producto en la sección de últimos productos.</li>
|
||||
<li>Pincha <strong>En promoción</strong> en la pestaña de detalles si quieres ver tu producto en la sección de promociones.</li>
|
||||
</ol>',
|
||||
'Product Empty Title' => 'Bienvenido',
|
||||
'Product Name' => 'Nombre de producto',
|
||||
'Product Offers' => 'Ofertas de producto',
|
||||
'Qty' => 'Cant.',
|
||||
'Quantity' => 'Cantidad',
|
||||
'Questions ? See our F.A.Q.' => '¿Preguntas? Mira nuestras preguntas más frecuentes.',
|
||||
'REF' => 'REF',
|
||||
'Rating' => 'Valoración',
|
||||
'Redirect to bank service' => 'Redirigir a servicio bancario',
|
||||
'Ref.' => 'Ref.',
|
||||
'Register' => 'Registrarse',
|
||||
'Regular Price:' => 'Precio normal:',
|
||||
'Related' => 'Relacionado',
|
||||
'Remove' => 'Eliminar',
|
||||
'Remove this address' => 'Eliminar esta dirección',
|
||||
'SELECT YOUR CURRENCY' => 'SELECCIONA TU MONEDA',
|
||||
'SELECT YOUR LANGUAGE' => 'SELECCIONA TU IDIOMA',
|
||||
'Sale was not found' => 'No se encontró la venta',
|
||||
'Save %amount%sign on these products' => 'Guardar %amount%sign en estos productos',
|
||||
'Save %amount%sign on this product' => 'Guardar %amount%sign en estos productos',
|
||||
'Search' => 'Buscar',
|
||||
'Search Result for' => 'Resultados de búsqueda de',
|
||||
'Secondary Navigation' => 'Navegación secundaria',
|
||||
'Secure Payment' => 'Pago seguro',
|
||||
'Secure payment' => 'Pago seguro',
|
||||
'Select Country' => 'Elegir país',
|
||||
'Select State' => 'Selecciona un Estado',
|
||||
'Select Title' => 'Selecciona título',
|
||||
'Select your country:' => 'Selecciona tu país:',
|
||||
'Send' => 'Enviar',
|
||||
'Send new password again' => 'Enviar nueva contraseña otra vez',
|
||||
'Send us a message' => 'Envíanos un mensaje',
|
||||
'Shipping Tax' => 'Impuestos de envío',
|
||||
'Show' => 'Mostrar',
|
||||
'Sign in' => 'Iniciar Sesión',
|
||||
'Skip to content' => 'Pasar al contenido',
|
||||
'Sorry but this combination does not exist.' => 'Lo siento pero esta combinación no existe.',
|
||||
'Sorry, your cart is empty. There\'s nothing to pay.' => 'Lo siento, su carro está vacío. No hay para pagar.',
|
||||
'Sort By' => 'Ordenar por',
|
||||
'Special Price:' => 'Precio especial:',
|
||||
'Status' => 'Estado',
|
||||
'Subscribe' => 'suscribir',
|
||||
'Taxed Price' => 'Precio impuesto',
|
||||
'Thank you for the trust you place in us.' => 'Gracias por la confianza que depositas en nosotros.',
|
||||
'Thanks !' => '¡Gracias!',
|
||||
'Thanks for signing up! We\'ll keep you posted whenever we have any new updates.' => '¡Gracias por registrarte! Te mantendremos informado cuando tengamos cualquier nueva actualización.',
|
||||
'Thanks for your message, we will contact as soon as possible.' => 'Gracias por tu mensaje, nos pondremos en contacto contigo lo antes posible.',
|
||||
'The page cannot be found' => 'No se puede encontrar la página',
|
||||
'The product has been added to your cart' => 'El producto ha sido añadido a tu carrito',
|
||||
'Thelia V2' => 'Thelia V2',
|
||||
'This offer is valid until %date' => 'Esta oferta es válida hasta el %date',
|
||||
'Toggle navigation' => 'Cambiar el modo de navegación',
|
||||
'Total' => 'Total',
|
||||
'Total excl. taxes' => 'Total sin Impuestos',
|
||||
'Total incl. taxes' => 'Total con impuestos',
|
||||
'Total with tax' => 'Total con impuestos',
|
||||
'Total without tax' => 'Total sin impuestos',
|
||||
'Transaction REF : %ref' => 'Transacción REF: %ref',
|
||||
'Try again' => 'Intente nuevamente.',
|
||||
'Unit Price' => 'Precio unitario',
|
||||
'Unit Price incl. taxes' => 'Precio unitario incluyendo impuestos',
|
||||
'Unit Taxed Price' => 'Impuestos precio unitario',
|
||||
'Update' => 'Actualizar',
|
||||
'Update Profile' => 'Actualizar el perfil',
|
||||
'Update Quantity' => 'Actualizar cantidad',
|
||||
'Upsell Products' => 'Productos relacionados',
|
||||
'View' => 'Ver',
|
||||
'View Cart' => 'Ver carrito',
|
||||
'View all' => 'Ver todos',
|
||||
'View as' => 'Ver como',
|
||||
'View order %ref details' => 'Ver detalles de la orden %ref',
|
||||
'View product' => 'Ver producto',
|
||||
'Warning' => 'Alerta',
|
||||
'We apologize but some of the ordered products are not available any more.' => 'Lo sentimos pero algunos de los productos pedidos ya no están disponibles.',
|
||||
'We\'re sorry but an error occured. Please try to contact the site <a href=\'mailto:%mail\'>administrator</a>' => 'Lo sentimos pero se ha producido un error. Por favor trate de contactar al <a href=\'mailto:%mail\'> Administrador</a> del sitio',
|
||||
'We\'re sorry, a problem occured and your payment was not successful.' => 'Lo sentimos, se produjo un problema y su pago no tuvo éxito.',
|
||||
'You are here:' => 'Estas aquí:',
|
||||
'You choose' => 'Usted elige',
|
||||
'You choose to pay by' => 'Eliges pagar por',
|
||||
'You don\'t have orders yet.' => 'Todavía no tienes pedidos.',
|
||||
'You have no items in your shopping cart.' => 'No hay artículos en tu carrito de compras.',
|
||||
'You may have a coupon ?' => '¿Tienes un cupón?',
|
||||
'You want to subscribe to the newsletter? Please enter your email address below.' => '¿Deseas suscribirte al boletín de noticias? Por favor, introduce tu dirección de correo electrónico.',
|
||||
'You will receive a link to reset your password.' => 'Recibirás un enlace para restablecer tu contraseña.',
|
||||
'Your Cart' => 'Tu carrito',
|
||||
'Your order will be confirmed by us upon receipt of your payment.' => 'Tu pedido será confirmado a recepción del pago.',
|
||||
'for' => 'para',
|
||||
'instead of' => 'En lugar de',
|
||||
'missing or invalid data' => 'Dato aunsente o no válido',
|
||||
'per page' => 'por página',
|
||||
'update' => 'actualización',
|
||||
'with:' => 'con:',
|
||||
'404' => '404',
|
||||
];
|
||||
@@ -1,259 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'%nb Item' => '%nb مورد',
|
||||
'%nb Items' => '%nb مورد',
|
||||
'+' => '+',
|
||||
'<strong>Sorry!</strong> We are not able to give you a delivery method for your order.' => '<strong>متاسفیم!</strong> ما در حال حاضر قادر به تحویل سفارش شما به این روش نیستیم.',
|
||||
'A new password has been sent to your e-mail address. Please check your mailbox.' => 'رمز عبور جدید به آدرس ایمیل شما ارسال شده است. لطفا صندوق پستی خود را بررسی کنید.',
|
||||
'A problem occured' => 'مشکلی رخ داده است',
|
||||
'A summary of your order has been sent to the following address' => 'خلاصه سفارش شما به آدرس زیر ارسال شده است',
|
||||
'Account' => 'حساب کاربری',
|
||||
'Add a new address' => 'افزودن آدرس جدید',
|
||||
'Add to cart' => 'افزودن به سبد خرید',
|
||||
'Additional Info' => 'اطلاعات بیشتر',
|
||||
'Address' => 'نشانی',
|
||||
'Address %nb' => 'آدرس %nb',
|
||||
'Address Update' => 'به روز رسانی نشانی',
|
||||
'All' => 'همه',
|
||||
'All brands' => 'تمامی برندها',
|
||||
'All brands in %store' => 'تمامی برندهای %store',
|
||||
'All contents' => 'تمام مطالب',
|
||||
'All contents in' => 'تمام مطالب در',
|
||||
'All product in brand %title' => 'تمامی محصولات با برند %title',
|
||||
'All products' => 'تمامی محصولات',
|
||||
'All products for brand %title in %store' => 'تمامی محصولات با برند %title در %store',
|
||||
'All products in' => 'تمامی محصولات در',
|
||||
'Amount' => 'مقدار',
|
||||
'An error occurred' => 'خطایی رخ داده است',
|
||||
'Availability' => 'موجودی',
|
||||
'Available' => 'موجود',
|
||||
'Back' => 'بازگشت',
|
||||
'Billing' => 'صورت حساب',
|
||||
'Billing Mode' => 'نوع صورت حساب',
|
||||
'Billing address' => 'آدرس صورت حساب',
|
||||
'Billing and delivery' => 'صورت حساب و تحویل',
|
||||
'Brand information' => 'اطلاعات برند',
|
||||
'Brands' => 'برندها',
|
||||
'Cancel' => 'لغو',
|
||||
'Cart' => 'سبد خرید',
|
||||
'Categories' => 'دسته بندیها',
|
||||
'Change Password' => 'تغییر رمز عبور',
|
||||
'Change address' => 'تغییر نشانی',
|
||||
'Change my account information' => 'تغییر اطلاعات حساب کاربر',
|
||||
'Change my password' => 'تغییر رمز عبور من',
|
||||
'Check my order' => 'سفارش من را بررسی کن',
|
||||
'Choose your delivery address' => 'به کدام آدرس میخواهید بسته فرستاده شود؟',
|
||||
'Choose your delivery method' => 'از چه طریقی دوست دارید بستهی خود را تحویل بگیرید؟',
|
||||
'Choose your payment method' => 'از چه روشی دوست دارید صورت حساب خود را پرداخت کنید؟',
|
||||
'Code :' => 'کد:',
|
||||
'Connecting to the secure payment server, please wait a few seconds...' => 'اتصال به سرور امن پرداخت با موفقیت انجام شد، از صبر و بردباری شما ممنونیم.',
|
||||
'Contact Us' => 'تماس با ما',
|
||||
'Contact page' => 'صفحه تماس',
|
||||
'Continue Shopping' => 'ادامهی خرید',
|
||||
'Copyright' => 'حق نشر',
|
||||
'Coupon code' => 'کد تخفیف',
|
||||
'Create' => 'ایجاد',
|
||||
'Create New Account' => 'ایجاد حساب جدید',
|
||||
'Create New Address' => 'ایجاد آدرس جدید',
|
||||
'Created' => 'ایجاد شد',
|
||||
'Currency' => 'ارز',
|
||||
'Customer Number' => 'شماره مشتری',
|
||||
'Date' => 'تاریخ',
|
||||
'Delivery' => 'تحویل',
|
||||
'Delivery Information' => 'اطلاعات تحویل',
|
||||
'Delivery Mode' => 'حالت تحویل',
|
||||
'Delivery REF' => 'شماره تحویل',
|
||||
'Delivery address' => 'آدرس تحویل',
|
||||
'Demo product description' => 'توضیحات نسخهی نمایشی محصول',
|
||||
'Demo product title' => 'عنوان نسخهی نمایشی محصول',
|
||||
'Description' => 'توضيحات',
|
||||
'Discount' => 'تخفیف',
|
||||
'Do you have an account?' => 'آیا حساب کاربری دارید؟',
|
||||
'Do you really want to delete this address ?' => 'آیا برای پاک کردن این آدرس اطمینان دارید؟',
|
||||
'Documents' => 'اسناد و مدارک',
|
||||
'Download' => 'دانلود',
|
||||
'Edit' => 'ويرايش',
|
||||
'Edit this address' => 'ویرایش این آدرس',
|
||||
'Estimated shipping ' => 'هزینه برآورد شده ارسال ',
|
||||
'Forgot your Password?' => 'رمز عبور خود را فراموش کرده اید؟',
|
||||
'Free shipping' => 'ارسال رایگان',
|
||||
'From %price' => 'از %price',
|
||||
'Go back to the previous page' => 'بازگشت به صفحه قبل',
|
||||
'Go home' => 'رفتن به صفحه اصلی',
|
||||
'Grid' => 'جدول',
|
||||
'Home' => 'خانه',
|
||||
'I\'ve read and agreed on <a href=\'%link\' class=\'terms-quickview\'>Terms & Conditions</a>' => 'من متن <a href=\'%link\' class=\'terms-quickview\'> قرارداد</a> را خواندهام و با شرایط و قوانین آمده در آن موافقم و آن را میپذیرم',
|
||||
'If nothing happens within 10 seconds, <a id="force-submit-payment-form" href="#">please click here</a>.' => 'اگر در ده ثانیه آتی اتفاقی نیفتاد، لطفا <a id="force-submit-payment-form" href="#">در این قسمت کلیک کنید</a>. ',
|
||||
'If you want to change your email, please contact us.' => 'اگر میخواهید ایمیل خود را تغییر دهید، لطفا با ما تماس بگیرید.',
|
||||
'In Stock' => 'موجودی',
|
||||
'Invoice REF' => 'شماره صورت حساب',
|
||||
'Invoice date' => 'تاریخ فاکتور',
|
||||
'Language' => 'زبان',
|
||||
'Latest' => 'آخرین',
|
||||
'Latest products' => 'آخرین محصولات',
|
||||
'List' => 'فهرست',
|
||||
'List of orders' => 'لیست سفارشها',
|
||||
'Login' => 'ورود',
|
||||
'Login Information' => 'اطلاعات ورود',
|
||||
'Main Address' => 'آدرس اصلی',
|
||||
'More information about this brand' => 'اطلاعات بیشتر در مورد این برند',
|
||||
'Multi-payment platform' => 'پلتفرم چند پرداختی',
|
||||
'My Account' => 'حساب کاربری من',
|
||||
'My Address Books' => 'دفترچه آدرسها',
|
||||
'My Address book' => 'دفترچه آدرس',
|
||||
'My Orders' => 'سفارشهای من',
|
||||
'My order' => 'سفارش من',
|
||||
'Name' => 'نام',
|
||||
'Name ascending' => 'بر اساس نام (الف-ی)',
|
||||
'Name descending' => 'بر اساس نام (ی-الف)',
|
||||
'Need help ?' => 'کمکی نیاز دارید؟',
|
||||
'Newsletter' => 'خبرنامه',
|
||||
'Newsletter Subscription' => 'اشتراک خبرنامه',
|
||||
'Next' => 'بعدی',
|
||||
'Next Step' => 'مرحله بعدی',
|
||||
'Next product' => 'محصول بعدی',
|
||||
'No Contents in this folder.' => 'محتوایی در این پوشه وجود ندارد.',
|
||||
'No deliveries available for this cart and this country' => 'برای این کارت و کشور هیچ گونه امکان ارسالی وجود ندارد',
|
||||
'No products available in this brand' => 'هیچ کالایی تحت این مارک موجود نیست',
|
||||
'No products available in this category' => 'هیچ کالایی تحت این دسته بندی موجود نیست',
|
||||
'No results found' => 'جستجو بینتیجه بود',
|
||||
'No.' => 'خیر.',
|
||||
'Ok' => 'بله',
|
||||
'Options' => 'گزینهها',
|
||||
'Order details' => 'جزییات سفارش',
|
||||
'Order details %ref' => 'جزییات سفارش %ref',
|
||||
'Order number' => 'شماره سفارش',
|
||||
'Orders over $50' => 'سفارشهای بیشتر از ۵۰ دلار',
|
||||
'Out of Stock' => 'موجود نیست',
|
||||
'PDF invoice' => 'فاکتور PDF',
|
||||
'Pagination' => 'صفحه بندی',
|
||||
'Password' => 'رمز عبور',
|
||||
'Password Forgotten' => 'فراموشی رمزعبور',
|
||||
'Pay with %module_title' => 'پرداخت توسط %module_title',
|
||||
'Personal Information' => 'اطلاعات شخصی',
|
||||
'Placeholder address label' => 'خانه، محل کار و...',
|
||||
'Placeholder address1' => 'خیابان استقلال، کوچه آزادی، پلاک 79',
|
||||
'Placeholder address2' => 'نشانی',
|
||||
'Placeholder cellphone' => 'شماره تلفن همراه',
|
||||
'Placeholder city' => 'تالش',
|
||||
'Placeholder company' => 'گوگل',
|
||||
'Placeholder contact email' => 'بنابراین من میتوانم به شما برگردانم.',
|
||||
'Placeholder contact message' => 'و پیام شما...',
|
||||
'Placeholder contact name' => 'اسمتون؟',
|
||||
'Placeholder contact subject' => 'موضوع پیامتون.',
|
||||
'Placeholder email' => 'barayemesal@gmail.com',
|
||||
'Placeholder email confirm' => 'دربرگیرندهی تایید ایمیل',
|
||||
'Placeholder firstname' => 'بهرام',
|
||||
'Placeholder lastname' => 'عشقی',
|
||||
'Placeholder phone' => 'شماره تلفن',
|
||||
'Placeholder zipcode' => '۱۲۳۴۵۶۷۸۹۰',
|
||||
'Please enter your email address below.' => 'لطفا آدرس ایمیل خود را در قسمت زیر وارد کنید.',
|
||||
'Please try again to order' => 'لطفا دوباره سفارش خود را انجام دهید',
|
||||
'Position' => 'موقعیت',
|
||||
'Postage' => 'هزینه پست',
|
||||
'Previous' => 'قبلى',
|
||||
'Previous product' => 'محصول قبلی',
|
||||
'Price' => 'قیمت',
|
||||
'Price ascending' => 'قیمت (کمتر به بیشتر)',
|
||||
'Price descending' => 'قیمت (بیشتر به کمتر)',
|
||||
'Proceed checkout' => 'تصفیه حساب',
|
||||
'Product Empty Button' => 'اولین محصول من اضافه کن',
|
||||
'Product Empty Message' => 'واقعا سریع اضافه کردن یک محصول.
|
||||
<ol>
|
||||
<li>اگر میخواهید که محصول خودتان را در بخش آخرین محصولات مشاهده کنید، در تب جزییات گزینهی <strong>جدید</strong>را تیک بزنید.</li>
|
||||
<li>اگر میخواهید که محصول خودتان را در بخش آخرین محصولات مشاهده کنید، در تب جزییات گزینهی <strong>جدید</strong>را تیک بزنید.</li>
|
||||
</ol>',
|
||||
'Product Empty Title' => 'خوش آمدید',
|
||||
'Product Name' => 'نام محصول',
|
||||
'Product Offers' => 'محصول ارائه شده',
|
||||
'Qty' => 'تعداد',
|
||||
'Quantity' => 'تعداد',
|
||||
'Questions ? See our F.A.Q.' => 'سوالی دارید؟ بخش سوالات متداول ما را مشاهده کنید.',
|
||||
'REF' => 'ارجاع',
|
||||
'Rating' => 'امتیاز',
|
||||
'Redirect to bank service' => 'ارجاع به سرویس بانک',
|
||||
'Ref.' => 'ارجاع.',
|
||||
'Register' => 'عضویت',
|
||||
'Regular Price:' => 'قیمت پایه:',
|
||||
'Related' => 'مرتبط',
|
||||
'Remove' => 'حذف',
|
||||
'Remove this address' => 'حذف این آدرس',
|
||||
'SELECT YOUR CURRENCY' => 'ارز خود را انتخاب کنید',
|
||||
'SELECT YOUR LANGUAGE' => 'انتخاب زبان',
|
||||
'Sale was not found' => 'فروش پیدا نشد',
|
||||
'Save %amount%sign on these products' => 'ذخیره %amount%sign در این محصولات',
|
||||
'Save %amount%sign on this product' => 'ذخیره %amount%sign در این محصول',
|
||||
'Search' => 'جستجو',
|
||||
'Search Result for' => 'نتیجه جستجو برای',
|
||||
'Secondary Navigation' => 'منوی فرعی',
|
||||
'Secure Payment' => 'پرداخت امن',
|
||||
'Secure payment' => 'پرداخت امن',
|
||||
'Select Country' => 'انتخاب کشور',
|
||||
'Select Title' => 'انتخاب عنوان',
|
||||
'Select your country:' => 'کشورتان را انتخاب کنید:',
|
||||
'Send' => 'ارسال',
|
||||
'Send new password again' => 'ارسال مجدد رمزعبور جدید',
|
||||
'Send us a message' => 'ارسال پیام به ما',
|
||||
'Shipping Tax' => 'مالیات حمل و نقل',
|
||||
'Show' => 'نمایش',
|
||||
'Sign in' => 'ورود',
|
||||
'Skip to content' => 'پرش به محتوا',
|
||||
'Sorry but this combination does not exist.' => 'متاسفیم اما این ترکیب موجود نیست.',
|
||||
'Sorry, your cart is empty. There\'s nothing to pay.' => 'متاسفیم، سبدخرید خالی است. چیزی برای پرداخت وجود ندارد.',
|
||||
'Sort By' => 'چینش براساس',
|
||||
'Special Price:' => 'قیمت ویژه:',
|
||||
'Status' => 'وضعیت',
|
||||
'Subscribe' => 'اشتراک',
|
||||
'Taxed Price' => 'قیمت شامل مالیات',
|
||||
'Thank you for the trust you place in us.' => 'ممون از اینکه به ما اعتماد کردید.',
|
||||
'Thanks !' => 'ممنون!',
|
||||
'Thanks for signing up! We\'ll keep you posted whenever we have any new updates.' => ' سپاس از ثبت نام! ما شما را به محض انتشار مطلب جدید، از این طریق در جریان خواهیم گذاشت.',
|
||||
'Thanks for your message, we will contact as soon as possible.' => 'ممنون از پیامتون، در اولین فرصت ممکن با شما تماس خواهیم گرفت.',
|
||||
'The page cannot be found' => 'صفحه پیدا نشد',
|
||||
'The product has been added to your cart' => 'محصول به سبد خرید اضافه شد',
|
||||
'Thelia V2' => 'تیلیا نسخه۲',
|
||||
'This offer is valid until %date' => 'سفارش تا زمان %date معتبر است',
|
||||
'Toggle navigation' => 'تغییر وضعیت منو',
|
||||
'Total' => 'مجموع',
|
||||
'Total excl. taxes' => 'مجموع بدون مالیات',
|
||||
'Total incl. taxes' => 'مجموع شامل مالیات',
|
||||
'Total with tax' => 'مجموع با مالیات',
|
||||
'Total without tax' => 'مجموع (بدون مالیات)',
|
||||
'Transaction REF : %ref' => 'مرجع تراکنش: %ref',
|
||||
'Try again' => 'سپاس از تلاش دوباره.',
|
||||
'Unit Price' => 'قیمت واحد',
|
||||
'Unit Price incl. taxes' => 'قیمت واحد (با احتساب مالیات)',
|
||||
'Unit Taxed Price' => 'قیمت واحد مالیات خورده',
|
||||
'Update' => 'بروزرسانی',
|
||||
'Update Profile' => 'بروزرسانی پروفایل',
|
||||
'Update Quantity' => 'بروزرسانی مقدار',
|
||||
'Upsell Products' => 'محصولات تشویقی',
|
||||
'View' => 'مشاهده',
|
||||
'View Cart' => 'مشاهده سبد خرید',
|
||||
'View all' => 'مشاهده همه',
|
||||
'View as' => 'مشاهده به عنوان',
|
||||
'View order %ref details' => 'مشاهده جزییات سفارش %ref',
|
||||
'View product' => 'مشاهده محصول',
|
||||
'Warning' => 'هشدار',
|
||||
'We apologize but some of the ordered products are not available any more.' => 'عذر میخواییم؛ متاسفانه بعضی از اقلام سفارشی شما دیگه موجود نیستند.',
|
||||
'We\'re sorry but an error occured. Please try to contact the site <a href=\'mailto:%mail\'>administrator</a>' => 'متاسفیم بابت خطایی رخ داده، لطفا سعی کنبد برای اطلاعات بیشتر با <a href=\'mailto:%mail\'>پشتیبانی</a> تماس بگیرید.',
|
||||
'We\'re sorry, a problem occured and your payment was not successful.' => 'متاسفیم، به علت بروز خطای نامعلوم پرداخت شما موفقیت آمیز نبود.',
|
||||
'You are here:' => 'شما اینجا هستید:',
|
||||
'You choose' => 'شما انتخاب کردید',
|
||||
'You choose to pay by' => 'شما انتخاب کردید، پرداخت کنید توسط',
|
||||
'You don\'t have orders yet.' => 'شما هنوز سفارشی ندارید.',
|
||||
'You have no items in your shopping cart.' => 'شما هیچ قلم کالایی در سبد خرید خود ندارید.',
|
||||
'You may have a coupon ?' => 'آیا کوپن خریدی دارید؟',
|
||||
'You want to subscribe to the newsletter? Please enter your email address below.' => 'شما مایلید تا مشترک خبرنامه ما شوید؟ لطفا ایمیل خود را در قسمت زیر وارد کنید.',
|
||||
'You will receive a link to reset your password.' => 'به زودی شما ایمیلی حاوی لینکی برای بازیابی رمز عبور خود دریافت خواهید کرد.',
|
||||
'Your Cart' => 'سبد خرید شما',
|
||||
'Your order will be confirmed by us upon receipt of your payment.' => 'سفارش شما به زودی توسط ما به محض دریافت تاییدیهی پرداخت شما تایید خواهد شد.',
|
||||
'for' => 'برای',
|
||||
'instead of' => 'به جای',
|
||||
'missing or invalid data' => 'دادههای گم شده یا نامعتبر',
|
||||
'per page' => 'در هر صفحه',
|
||||
'update' => 'بروزرسانی',
|
||||
'with:' => 'با:',
|
||||
'404' => '404',
|
||||
];
|
||||
@@ -262,4 +262,7 @@ return array(
|
||||
'per page' => 'par page',
|
||||
'update' => 'mettre à jour',
|
||||
'with:' => 'avec :',
|
||||
|
||||
'Click to apply coupon' => 'Cliquez sur le bouton "Ok" ci-dessous pour appliquer votre code promotion.',
|
||||
'Estimated weight %weight' => '(pour un poids total estimé à %weight kg)',
|
||||
);
|
||||
|
||||
@@ -1,204 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'%nb Item' => '%nb termék',
|
||||
'%nb Items' => '%nb termék',
|
||||
'+' => '+',
|
||||
'<strong>Sorry!</strong> We are not able to give you a delivery method for your order.' => '<strong>Elnézést!</strong> Nincs választható szállítási mód a megrendeléséhez.',
|
||||
'A new password has been sent to your e-mail address. Please check your mailbox.' => 'Az új jelszavát elküldtük az email címére. Ellenőrizze postafiókját.',
|
||||
'A problem occured' => 'Hiba történt',
|
||||
'A summary of your order has been sent to the following address' => 'Megrendelésének részleteit elküldtük a következő címre',
|
||||
'Account' => 'Profil',
|
||||
'Add a new address' => 'Új cím hozzáadása',
|
||||
'Add to cart' => 'Kosárba',
|
||||
'Additional Info' => 'További információ',
|
||||
'Address' => 'Cím',
|
||||
'Address %nb' => 'Cím %nb',
|
||||
'Address Update' => 'Cím frissítése',
|
||||
'All' => 'Mind',
|
||||
'All brands' => 'Minden márka',
|
||||
'All brands in %store' => 'Minden márka a %store boltban',
|
||||
'All contents' => 'Minden tartalom',
|
||||
'All contents in' => 'Minden tartalom',
|
||||
'All product in brand %title' => 'Minden termék a márkában "%title"',
|
||||
'All products' => 'Minden termék',
|
||||
'All products for brand %title in %store' => 'Összes termék a %title márkához a %store boltban',
|
||||
'All products in' => 'Összes termék',
|
||||
'Amount' => 'Összeg',
|
||||
'An error occurred' => 'Hiba történt',
|
||||
'Availability' => 'Elérhetőség',
|
||||
'Available' => 'Elérhető',
|
||||
'Back' => 'Vissza',
|
||||
'Billing' => 'Számlázás',
|
||||
'Billing Mode' => 'Számlázási mód',
|
||||
'Billing address' => 'Számlázási cím',
|
||||
'Billing and delivery' => 'Számlázás és szállítás',
|
||||
'Brand information' => 'Márka-információ',
|
||||
'Brands' => 'Márkák',
|
||||
'Cancel' => 'Mégsem',
|
||||
'Cart' => 'Kosár',
|
||||
'Categories' => 'Kategóriák',
|
||||
'Change Password' => 'Jelszó csere',
|
||||
'Change address' => 'Címmódosítás',
|
||||
'Change my account information' => 'Adataim módosítása',
|
||||
'Change my password' => 'Jelszavam módosítása',
|
||||
'Check my order' => 'Megrendelés ellenőrzése',
|
||||
'Choose your delivery address' => 'Válassz szállítási címet',
|
||||
'Choose your delivery method' => 'Válassz szállítási módot',
|
||||
'Choose your payment method' => 'Válassz fizetési módot',
|
||||
'Code :' => 'Kód :',
|
||||
'Connecting to the secure payment server, please wait a few seconds...' => 'Kapcsolódás a fizetési kiszolgálóhoz, kérem várjon....',
|
||||
'Contact Us' => 'Kapcsolat',
|
||||
'Contact page' => 'Kapcsolat oldal',
|
||||
'Continue Shopping' => 'Vásárlás folytatása',
|
||||
'Copyright' => 'Minden Jog fenntartva',
|
||||
'Coupon code' => 'Kupon kód',
|
||||
'Create' => 'Létrehozás',
|
||||
'Create New Account' => 'Új fiók létrehozása',
|
||||
'Create New Address' => 'Új cím létrehozása',
|
||||
'Created' => 'Létrehozva',
|
||||
'Currency' => 'Pénznem',
|
||||
'Customer Number' => 'Ügyfélszám',
|
||||
'Date' => 'Dátum',
|
||||
'Delivery' => 'Szállítás',
|
||||
'Delivery Information' => 'Szállítási információ',
|
||||
'Delivery Mode' => 'Szállítási mód',
|
||||
'Delivery REF' => 'Szállítási REF',
|
||||
'Delivery address' => 'Szállítáci cím',
|
||||
'Description' => 'Leírás',
|
||||
'Discount' => 'Kedvezmény',
|
||||
'Do you have an account?' => 'Regisztrált már?',
|
||||
'Do you really want to delete this address ?' => 'Valóban törölni akarja ezt a címet?',
|
||||
'Documents' => 'Dokumentumok',
|
||||
'Download' => 'Letöltés',
|
||||
'Edit' => 'Szerkesztés',
|
||||
'Edit this address' => 'Cím szerkesztése',
|
||||
'Estimated shipping ' => 'Várható szállítási költség ',
|
||||
'Forgot your Password?' => 'Jelszóemlékeztető',
|
||||
'Free shipping' => 'Ingyenes szállítás',
|
||||
'From %price' => '%price összegtől',
|
||||
'Go back to the previous page' => 'Vissza az előző oldalra',
|
||||
'Go home' => 'Kezdőlap',
|
||||
'Grid' => 'Táblázat',
|
||||
'Home' => 'Kezdőoldal',
|
||||
'I\'ve read and agreed on <a href=\'%link\' class=\'terms-quickview\'>Terms & Conditions</a>' => 'Olvastam és elfogadom az <a href=\'%link\' class=\'terms-quickview\'>Általános SZerződési Feltételeket</a>',
|
||||
'If you want to change your email, please contact us.' => 'Ha meg akarja változtatni az email címét, kérem lépjen velünk kapcsolatba.',
|
||||
'In Stock' => 'Raktáron',
|
||||
'Invoice date' => 'Számla kelte',
|
||||
'Language' => 'Nyelv',
|
||||
'Latest' => 'Legutolsó',
|
||||
'Latest products' => 'Legújabb termékeink',
|
||||
'List' => 'Lista',
|
||||
'List of orders' => 'Megrendelés lista',
|
||||
'Login' => 'Belépés',
|
||||
'Login Information' => 'Belépési adatok',
|
||||
'Main Address' => 'Elsődleges cím',
|
||||
'More information about this brand' => 'További információk a márkáról',
|
||||
'My Account' => 'Fiókom',
|
||||
'My Address Books' => 'Címjegyzék',
|
||||
'My Address book' => 'Címjegyzék',
|
||||
'My Orders' => 'Megrendeléseim',
|
||||
'My order' => 'Megrendelésem',
|
||||
'Name' => 'Név',
|
||||
'Name ascending' => 'Betűrend - növekvő',
|
||||
'Name descending' => 'Betűrend - csökkenő',
|
||||
'Need help ?' => 'Segítségre van szüksége?',
|
||||
'Newsletter' => 'Hírlevél',
|
||||
'Newsletter Subscription' => 'Hírlevél feliratkozás',
|
||||
'Next' => 'Következő',
|
||||
'Next Step' => 'Következő lépés',
|
||||
'Next product' => 'Következő termék',
|
||||
'No Contents in this folder.' => 'Nincs tartalom a mappában',
|
||||
'No results found' => 'Nincs találat',
|
||||
'No.' => 'Nem.',
|
||||
'Ok' => 'OK',
|
||||
'Options' => 'Beállítások',
|
||||
'Order details' => 'A megrendelés adatai',
|
||||
'Order details %ref' => '%ref azonosítójú megrendelés adatia ',
|
||||
'Order number' => 'Megrendelés azonosító',
|
||||
'Out of Stock' => 'Nincs készleten',
|
||||
'PDF invoice' => 'PDF számla',
|
||||
'Pagination' => 'Lapozó',
|
||||
'Password' => 'Jelszó',
|
||||
'Password Forgotten' => 'Elfelejtett jelszó',
|
||||
'Personal Information' => 'Személyes információk',
|
||||
'Placeholder address2' => 'Cím',
|
||||
'Placeholder cellphone' => 'Mobil telefonszám',
|
||||
'Placeholder city' => 'New York',
|
||||
'Placeholder company' => 'Google',
|
||||
'Placeholder contact message' => 'Adja meg az üzenetét...',
|
||||
'Placeholder contact name' => 'Mi is a neve?',
|
||||
'Placeholder contact subject' => 'Az üzenet tárgya.',
|
||||
'Placeholder email' => 'Email cím',
|
||||
'Placeholder email confirm' => 'Email cím újra',
|
||||
'Placeholder firstname' => 'Vezetéknév',
|
||||
'Placeholder lastname' => 'Keresztnév',
|
||||
'Placeholder phone' => 'Telefonszám',
|
||||
'Placeholder zipcode' => 'Irányítószám',
|
||||
'Please enter your email address below.' => 'Kérem adja meg az email címét',
|
||||
'Please try again to order' => 'Próbálja megrendelni újra',
|
||||
'Position' => 'Pozíció',
|
||||
'Postage' => 'Szállítási költség',
|
||||
'Previous' => 'Előző',
|
||||
'Previous product' => 'Előző termék',
|
||||
'Price' => 'Ár',
|
||||
'Price ascending' => 'Ár növekvő',
|
||||
'Price descending' => 'Ár csökkenő',
|
||||
'Proceed checkout' => 'Megrendelés',
|
||||
'Product Empty Button' => 'Az első termék hozzáadása',
|
||||
'Product Name' => 'Termék neve',
|
||||
'Product Offers' => 'Akciók',
|
||||
'Qty' => 'Menny.',
|
||||
'Quantity' => 'Mennyiség',
|
||||
'Questions ? See our F.A.Q.' => 'Kérédse van? See our F.A.Q.',
|
||||
'REF' => 'REF',
|
||||
'Rating' => 'Értékelés',
|
||||
'Register' => 'Regisztráció',
|
||||
'Regular Price:' => 'Normál ár:',
|
||||
'Related' => 'kapcsolódó termékek',
|
||||
'Remove' => 'Eltávolítás',
|
||||
'Remove this address' => 'Cím törlése',
|
||||
'SELECT YOUR CURRENCY' => 'VÁLASSZON PÉNZNEMET',
|
||||
'SELECT YOUR LANGUAGE' => 'VÁLASSZON NYELVET',
|
||||
'Search' => 'Keresés',
|
||||
'Search Result for' => 'Keresési találat',
|
||||
'Secure Payment' => 'Fizetés',
|
||||
'Secure payment' => 'Fizetés',
|
||||
'Select Country' => 'Ország',
|
||||
'Select your country:' => 'Ország:',
|
||||
'Send' => 'Küldés',
|
||||
'Send us a message' => 'Küldjön üzenetet nekünk',
|
||||
'Show' => 'Oldalanként',
|
||||
'Sign in' => 'Belépés',
|
||||
'Sort By' => 'Rendezés',
|
||||
'Status' => 'Státusz',
|
||||
'Taxed Price' => 'Bruttó',
|
||||
'Thank you for the trust you place in us.' => 'Köszönjük megrendelését.',
|
||||
'Thanks !' => 'Közönjük !',
|
||||
'The page cannot be found' => 'Az oldal nem található',
|
||||
'The product has been added to your cart' => 'A termék a kosarába került.',
|
||||
'Total' => 'Összesen',
|
||||
'Total excl. taxes' => 'Nettó ár',
|
||||
'Total incl. taxes' => 'Bruttó ár',
|
||||
'Total with tax' => 'Bruttó ár',
|
||||
'Try again' => 'Próbálja újra.',
|
||||
'Unit Price' => 'Egységár',
|
||||
'Unit Price incl. taxes' => 'Bruttó egységár',
|
||||
'Unit Taxed Price' => 'Bruttó egységár',
|
||||
'Update' => 'Frissít',
|
||||
'Update Profile' => 'Profil mentése',
|
||||
'Update Quantity' => 'Mennyiség módosítása',
|
||||
'View Cart' => 'Kosár',
|
||||
'View all' => 'Az összes megtekintése',
|
||||
'View as' => 'Nézet',
|
||||
'View product' => 'Termék részletei',
|
||||
'Warning' => 'Figyelem',
|
||||
'You are here:' => 'Ön itt van:',
|
||||
'You choose' => 'Választása',
|
||||
'You have no items in your shopping cart.' => 'Nincs termék a kosarában.',
|
||||
'Your Cart' => 'Kosár',
|
||||
'instead of' => 'helyett',
|
||||
'per page' => 'termék',
|
||||
'update' => 'frissítés',
|
||||
'404' => '404',
|
||||
];
|
||||
@@ -1,50 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'%nb Item' => '%nb Item',
|
||||
'%nb Items' => '%nb Item',
|
||||
'+' => '+',
|
||||
'<strong>Sorry!</strong> We are not able to give you a delivery method for your order.' => '<strong>Maaf!</strong> Kami tidak dapat melayani cara pengiriman untuk order Anda.',
|
||||
'A new password has been sent to your e-mail address. Please check your mailbox.' => 'Kata sandi baru telah dikirim ke alamat email. Silakan periksa kotak pesan.',
|
||||
'A problem occured' => 'Terjadi masalah',
|
||||
'A summary of your order has been sent to the following address' => 'Ringkasan pesanan Anda telah dikirim ke alamat berikut',
|
||||
'Account' => 'Akun',
|
||||
'Add a new address' => 'Tambah alamat baru',
|
||||
'Add to cart' => 'Masukan di keranjang',
|
||||
'Additional Info' => 'Info tambahan',
|
||||
'Address' => 'Alamat',
|
||||
'Address %nb' => 'Alamat %nb',
|
||||
'Address Update' => 'Pembaruan alamat',
|
||||
'All' => 'Semua',
|
||||
'All brands' => 'Semua merek',
|
||||
'All brands in %store' => 'Semua merek di %store',
|
||||
'All contents' => 'Semua konten',
|
||||
'All contents in' => 'Semua konten berada di',
|
||||
'All product in brand %title' => 'Semua produk dalam merek %title',
|
||||
'All products' => 'Semua produk',
|
||||
'All products for brand %title in %store' => 'Semua produk untuk merek %title di %store',
|
||||
'All products in' => 'Semua produk dalam',
|
||||
'Amount' => 'Jumlah',
|
||||
'An error occurred' => 'Terjadi kesalahan',
|
||||
'Availability' => 'Ketersediaan',
|
||||
'Available' => 'Tersedia',
|
||||
'Back' => 'Kembali',
|
||||
'Billing' => 'Penagihan',
|
||||
'Billing Mode' => 'Mode Penagihan',
|
||||
'Billing address' => 'Alamat penagihan',
|
||||
'Billing and delivery' => 'Penagihan dan pengiriman',
|
||||
'Brand information' => 'Informasi merek',
|
||||
'Brands' => 'Merek',
|
||||
'Choose your delivery method' => 'Pilih metode pengiriman',
|
||||
'Choose your payment method' => 'Pilih metode pembayaran Anda',
|
||||
'Code :' => 'Kode:',
|
||||
'Contact page' => 'Halaman kontak',
|
||||
'Delete' => 'Supprimer',
|
||||
'Delivery' => 'Pengiriman',
|
||||
'Expected delivery date: %delivery_date' => 'Perkiraan tanggal pengiriman:',
|
||||
'Invoice REF' => 'REF Faktur',
|
||||
'Placeholder address2' => 'Alamat',
|
||||
'Select State' => 'Pilih Provinsi',
|
||||
'Total without tax' => 'Total tanpa pajak',
|
||||
'404' => '404',
|
||||
];
|
||||
@@ -1,198 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'%nb Item' => '%nb elemento',
|
||||
'%nb Items' => '%nb elementi',
|
||||
'+' => '+',
|
||||
'<strong>Sorry!</strong> We are not able to give you a delivery method for your order.' => '<strong>Siamo dispiacenti!</strong> Non siamo in grado di darvi un metodo di consegna per il vostro ordine.',
|
||||
'A summary of your order has been sent to the following address' => 'Un riassunto del tuo ordine è stato inviato a quest\'indirizzo',
|
||||
'Account' => 'Conto',
|
||||
'Add a new address' => 'Aggiungere un nuovo indirizzo',
|
||||
'Add to cart' => 'Aggiungi al carrello',
|
||||
'Additional Info' => 'Ulteriori Informazione',
|
||||
'Address' => 'Indirizzo',
|
||||
'Address %nb' => 'Indirizzo %nb',
|
||||
'Address Update' => 'Aggiornamento dell\' indirizzo',
|
||||
'All' => 'Tutto',
|
||||
'All brands' => 'Tutte i brands',
|
||||
'All brands in %store' => 'Tutti i brands in %store',
|
||||
'Amount' => 'Importo',
|
||||
'An error occurred' => 'Si è verificato un errore',
|
||||
'Availability' => 'Disponibilità',
|
||||
'Available' => 'Disponibile',
|
||||
'Back' => 'Indietro',
|
||||
'Billing address' => 'Indirizzo di fatturazione',
|
||||
'Billing and delivery' => 'Fatturazione e consegna',
|
||||
'Brands' => 'Brands',
|
||||
'Cancel' => 'Annulla',
|
||||
'Cart' => 'Carrello',
|
||||
'Categories' => 'Categorie',
|
||||
'Change Password' => 'Cambia Password',
|
||||
'Change address' => 'Cambia indirizzo',
|
||||
'Change my account information' => 'Modificare le mie informazioni',
|
||||
'Change my password' => 'Cambiare la mia password',
|
||||
'Check my order' => 'Controllare il mio ordine',
|
||||
'Choose your delivery address' => 'Scegli il tuo indirizzo di consegna',
|
||||
'Choose your delivery method' => 'Scegli il tuo metodo di consegna',
|
||||
'Choose your payment method' => 'Scegli il tuo metodo di pagamento',
|
||||
'Code :' => 'Codice :',
|
||||
'Contact Us' => 'Contattaci',
|
||||
'Contact page' => 'Pagina contatti',
|
||||
'Continue Shopping' => 'Continua lo shopping',
|
||||
'Copyright' => 'Copyright',
|
||||
'Coupon code' => 'Codice promozionale',
|
||||
'Create' => 'Creare',
|
||||
'Create New Account' => 'Creare un nuovo account',
|
||||
'Create New Address' => 'Creare un nuovo indirizzo',
|
||||
'Currency' => 'Valuta',
|
||||
'Date' => 'Data',
|
||||
'Delete' => 'Rimuovere',
|
||||
'Delivery Information' => 'Informazioni sulla consegna',
|
||||
'Delivery address' => 'Indirizzo di consegna',
|
||||
'Demo product description' => 'Descrizione del prodotto di dimostrazione',
|
||||
'Demo product title' => 'Titolo del prodotto di dimostrazione',
|
||||
'Description' => 'Descrizione',
|
||||
'Discount' => 'Sconto',
|
||||
'Do you have an account?' => 'Hai un account?',
|
||||
'Do you really want to delete this address ?' => 'Vuoi davvero cancellare questo indirizzo?',
|
||||
'Documents' => 'Documenti',
|
||||
'Edit' => 'Modifica',
|
||||
'Edit this address' => 'Modificare questo indirizzo',
|
||||
'Estimated shipping ' => 'Spedizione stimata ',
|
||||
'Expected delivery date: %delivery_date' => 'Data di consegna stimata:',
|
||||
'Forgot your Password?' => 'Hai dimenticato la password?',
|
||||
'Free shipping' => 'Spedizione gratuita',
|
||||
'Go home' => 'Go home',
|
||||
'Grid' => 'Griglia',
|
||||
'Home' => 'Home',
|
||||
'In Stock' => 'Disponibile',
|
||||
'Invoice date' => 'Data della fattura',
|
||||
'Language' => 'Lingua',
|
||||
'Latest' => 'Ultimi',
|
||||
'Latest products' => 'Prodotti più recenti',
|
||||
'List' => 'Lista',
|
||||
'List of orders' => 'Lista degli ordini',
|
||||
'Login' => 'Login',
|
||||
'Login Information' => 'Informazioni di login',
|
||||
'Multi-payment platform' => 'Piattaforma multi-pagamento',
|
||||
'My Account' => 'Mio account',
|
||||
'My Address Books' => 'Miei indirizzi',
|
||||
'My Address book' => 'Mia rubrica',
|
||||
'My Orders' => 'Miei ordini',
|
||||
'My order' => 'Il mio ordine',
|
||||
'Name' => 'Nome',
|
||||
'Name ascending' => 'Nome ascendente',
|
||||
'Name descending' => 'Nome decrescente',
|
||||
'Need help ?' => 'Bisogno di aiuto ?',
|
||||
'Newsletter' => 'Newsletter',
|
||||
'Newsletter Subscription' => 'Iscrizione alla newsletter',
|
||||
'Next' => 'Prossimo',
|
||||
'Next Step' => 'Passo successivo',
|
||||
'Next product' => 'Prodotto successivo',
|
||||
'No deliveries available for this cart and this country' => 'Nessuna consegna disponibile per questo carrello e questo paese',
|
||||
'No products available in this category' => 'Nessun prodotti disponibili in questa categoria',
|
||||
'No results found' => 'Nessun risultato trovato',
|
||||
'No.' => 'No.',
|
||||
'Ok' => 'Ok',
|
||||
'Order details' => 'Dettagli dell\'ordine',
|
||||
'Order number' => 'Numero d\'ordine',
|
||||
'Orders over $50' => 'Ordini superiori a €50',
|
||||
'Out of Stock' => 'Esaurito',
|
||||
'Pagination' => 'Paginazione',
|
||||
'Password' => 'Password',
|
||||
'Password Forgotten' => 'Password dimenticata',
|
||||
'Personal Information' => 'Dati personali',
|
||||
'Placeholder address label' => 'Casa, ufficio, altro',
|
||||
'Placeholder address1' => '76 viale Italia',
|
||||
'Placeholder address2' => 'Indirizzo',
|
||||
'Placeholder cellphone' => 'Numero di telefono cellulare',
|
||||
'Placeholder city' => 'Roma',
|
||||
'Placeholder company' => 'Google',
|
||||
'Placeholder contact email' => 'Così posso tornare da voi.',
|
||||
'Placeholder contact message' => 'E il tuo messaggio...',
|
||||
'Placeholder contact name' => 'Come ti chiami?',
|
||||
'Placeholder contact subject' => 'Il soggetto del tuo messaggio.',
|
||||
'Placeholder email' => 'johndoe@domain.it',
|
||||
'Placeholder firstname' => 'Mario',
|
||||
'Placeholder lastname' => 'Doe',
|
||||
'Placeholder phone' => 'Numero di telefono',
|
||||
'Placeholder zipcode' => 'PG 10011',
|
||||
'Please enter your email address below.' => 'Inserisci il tuo indirizzo email qui sotto.',
|
||||
'Position' => 'Posizione',
|
||||
'Postage' => 'Spese di spedizione',
|
||||
'Previous' => 'Indietro',
|
||||
'Previous product' => 'Prodotto precedente',
|
||||
'Price' => 'Prezzo',
|
||||
'Price ascending' => 'Prezzo crescente',
|
||||
'Price descending' => 'Prezzo decrescente',
|
||||
'Proceed checkout' => 'Procedere all\'acquisto',
|
||||
'Product Empty Button' => 'Aggiungere il mio primo prodotto',
|
||||
'Product Empty Message' => 'È davvero veloce per aggiungere un prodotto.
|
||||
<ol>
|
||||
<li>Check <strong>NEW</strong> sotto la scheda dei dettagli, se vuoi vedere il tuo prodotto nella sezione prodotti più recente.</li> <li>Check <strong>in vendita</strong> sotto la scheda dei dettagli, se vuoi vedere il tuo prodotto nella sezione prodotti in offerta.</li> </ol>',
|
||||
'Product Empty Title' => 'Benvenuto',
|
||||
'Product Name' => 'Nome del prodotto',
|
||||
'Product Offers' => 'Offerte',
|
||||
'Qty' => 'Qtà',
|
||||
'Quantity' => 'Quantità',
|
||||
'Questions ? See our F.A.Q.' => 'Domande ? Vai a vedere le nostre F.A.Q.',
|
||||
'Rating' => 'Valutazione',
|
||||
'Ref.' => 'Rif.',
|
||||
'Register' => 'Registrati',
|
||||
'Regular Price:' => 'Prezzo:',
|
||||
'Related' => 'Correlato',
|
||||
'Remove' => 'Rimuovi',
|
||||
'Remove this address' => 'Rimuovere questo indirizzo',
|
||||
'SELECT YOUR CURRENCY' => 'SELEZIONA LA TUA VALUTA',
|
||||
'SELECT YOUR LANGUAGE' => 'SELEZIONA LA LINGUA',
|
||||
'Search' => 'Ricerca',
|
||||
'Search Result for' => 'Risultati della ricerca per',
|
||||
'Secure Payment' => 'Pagamento sicuro',
|
||||
'Secure payment' => 'Pagamento sicuro',
|
||||
'Select Country' => 'Selezionare il paese',
|
||||
'Select State' => 'Selezionare lo Stato',
|
||||
'Select Title' => 'Selezionare il titolo',
|
||||
'Send' => 'Invia',
|
||||
'Send us a message' => 'Inviaci un messaggio',
|
||||
'Shipping Tax' => 'Tassa di spedizione',
|
||||
'Show' => 'Visualizza',
|
||||
'Sign in' => 'Accedi',
|
||||
'Skip to content' => 'Vai al contenuto',
|
||||
'Sort By' => 'Ordina per',
|
||||
'Special Price:' => 'Prezzo speciale:',
|
||||
'Status' => 'Stato',
|
||||
'Subscribe' => 'Abbonati',
|
||||
'Thank you for the trust you place in us.' => 'Grazie per la tua fiducia.',
|
||||
'Thanks !' => 'Grazie !',
|
||||
'Thanks for signing up! We\'ll keep you posted whenever we have any new updates.' => 'Grazie per l\'inscrizione! Ti terremo aggiornato ogni volta che abbiamo eventuali nuovi aggiornamenti.',
|
||||
'Thanks for your message, we will contact as soon as possible.' => 'Grazie per il tuo messaggio, ti contatteremo appena possibile.',
|
||||
'The page cannot be found' => 'Impossibile trovare la pagina',
|
||||
'Thelia V2' => 'Thelia V2',
|
||||
'Toggle navigation' => 'Toggle navigation',
|
||||
'Total' => 'Totale',
|
||||
'Total incl. taxes' => 'Totale IVA compresa',
|
||||
'Unit Price' => 'Prezzo unitario',
|
||||
'Update' => 'Aggiornamento',
|
||||
'Update Profile' => 'Aggiorna il profilo',
|
||||
'Update Quantity' => 'Aggiorna la quantità',
|
||||
'Upsell Products' => 'Prodotti di upsell',
|
||||
'View' => 'Vedere',
|
||||
'View Cart' => 'Visualizza il carrello',
|
||||
'View all' => 'Mostra tutto',
|
||||
'View as' => 'Mostra come',
|
||||
'View product' => 'Visualizza prodotto',
|
||||
'Warning' => 'Attenzione',
|
||||
'You are here:' => 'Tu sei qui:',
|
||||
'You choose to pay by' => 'Hai scelto di pagare tramite',
|
||||
'You don\'t have orders yet.' => 'Non hai ancora ordini.',
|
||||
'You have no items in your shopping cart.' => 'Non hai nessun prodotto nel tuo carrello.',
|
||||
'You may have a coupon ?' => 'Hai un codice promozionale ?',
|
||||
'You want to subscribe to the newsletter? Please enter your email address below.' => 'Vuoi iscriverti alla newsletter? Inserisci il tuo indirizzo email qui sotto.',
|
||||
'You will receive a link to reset your password.' => 'Riceverai un link per reimpostare la password.',
|
||||
'Your Cart' => 'Tuo carrello',
|
||||
'Your order will be confirmed by us upon receipt of your payment.' => 'Il tuo ordine sarà confermato da noi al ricevimento del tuo pagamento.',
|
||||
'instead of' => 'Invece di',
|
||||
'missing or invalid data' => 'dati mancanti o non validi',
|
||||
'per page' => 'per ogni pagina',
|
||||
'404' => '404',
|
||||
];
|
||||
@@ -1,8 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'%nb Item' => '%nb Item',
|
||||
'%nb Items' => '%nb Items',
|
||||
'+' => '+',
|
||||
'404' => '404',
|
||||
];
|
||||
@@ -1,116 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'%nb Item' => '%nb Produkt',
|
||||
'%nb Items' => '%nb Produktów',
|
||||
'+' => '+',
|
||||
'<strong>Sorry!</strong> We are not able to give you a delivery method for your order.' => '<strong>Przepraszamy!</strong> Nie jesteśmy w stanie zaoferować żadnego sposobu dostawy dla Twojego zamówienia.',
|
||||
'A new password has been sent to your e-mail address. Please check your mailbox.' => 'Nowe hasło zostało wysłane na twój adres e-mail. Sprawdź swoją skrzynkę.',
|
||||
'A problem occured' => 'Wystąpił problem',
|
||||
'A summary of your order has been sent to the following address' => 'Podsumowanie Twojego zamówienia zostało wysłane na następujący adres',
|
||||
'Account' => 'Konto',
|
||||
'Add a new address' => 'Dodaj nowy adres',
|
||||
'Add to cart' => 'Dodaj do koszyka',
|
||||
'Additional Info' => 'Dodatkowe informacje',
|
||||
'All products in' => 'Wszystkie produkty w',
|
||||
'Amount' => 'Kwota',
|
||||
'An error occurred' => 'Wystąpił błąd',
|
||||
'Availability' => 'Dostępność',
|
||||
'Available' => 'Dostępny',
|
||||
'Back' => 'Powrót',
|
||||
'Billing' => 'Dane do faktury',
|
||||
'Billing Mode' => 'Sposób fakturowania',
|
||||
'Billing address' => 'Adres do faktury',
|
||||
'Billing and delivery' => 'Fakturowanie i dostawa',
|
||||
'Brand information' => 'Marka',
|
||||
'Brands' => 'Marki',
|
||||
'Cancel' => 'Anuluj',
|
||||
'Cart' => 'Koszyk',
|
||||
'Categories' => 'Kategorie',
|
||||
'Change Password' => 'Zmień hasło',
|
||||
'Change address' => 'Zmień adres',
|
||||
'Contact page' => 'Strona kontaktowa',
|
||||
'Create New Account' => 'Stwórz nowe konto',
|
||||
'Create New Address' => 'Stwórz nowy adres',
|
||||
'Created' => 'Utworzono',
|
||||
'Currency' => 'Waluta',
|
||||
'Customer Number' => 'Numer klienta',
|
||||
'Date' => 'Data',
|
||||
'Delete' => 'Usuń',
|
||||
'Delivery' => 'Dostawa',
|
||||
'Delivery Information' => 'Informacje o dostawie',
|
||||
'Delivery Mode' => 'Sposób dostawy',
|
||||
'Delivery REF' => 'Numer referencyjny dostawy',
|
||||
'Delivery address' => 'Adres dostawy',
|
||||
'Demo product description' => 'Opis produktu demo',
|
||||
'Demo product title' => 'Tytuł produktu Demo',
|
||||
'Description' => 'Opis',
|
||||
'I\'ve read and agreed on <a href=\'%link\' class=\'terms-quickview\'>Terms & Conditions</a>' => 'Przeczytałem i zgadzam się z <a href=\'%link\' class=\'terms-quickview\'>Regulaminem</a>',
|
||||
'If nothing happens within 10 seconds, <a id="force-submit-payment-form" href="#">please click here</a>.' => 'Jeśli nic się nie stanie w przeciągu następnych 10 sekund, <a id="force-submit-payment-form" href="#">kliknij tutaj</a>. ',
|
||||
'If you want to change your email, please contact us.' => 'Jeśli chcesz zmienić swój adres e-mail, skontaktuj się z nami.',
|
||||
'In Stock' => 'Na magazynie',
|
||||
'Invoice REF' => 'Numer faktury',
|
||||
'Language' => 'Język',
|
||||
'Latest' => 'Najnowsze',
|
||||
'Latest products' => 'Najnowsze produkty',
|
||||
'List' => 'Lista',
|
||||
'List of orders' => 'Lista zamówień',
|
||||
'Login' => 'Zaloguj się',
|
||||
'Login Information' => 'Dane logowania',
|
||||
'Main Address' => 'Główny adres',
|
||||
'More information about this brand' => 'Więcej informacji o tej marce',
|
||||
'Multi-payment platform' => 'Platforma wielu sposobów płatności',
|
||||
'My Account' => 'Moje konto',
|
||||
'My Address Books' => 'Moje adresy',
|
||||
'My Address book' => 'Moje adresy',
|
||||
'My Orders' => 'Moje zamówienia',
|
||||
'My order' => 'Moje zamówienie',
|
||||
'Name' => 'Nazwa',
|
||||
'Name ascending' => 'Nazwa - rosnąco',
|
||||
'Order number' => 'Numer zamówienia',
|
||||
'Orders over $50' => 'Zamówienia powyżej $50',
|
||||
'Out of Stock' => 'Brak na stanie',
|
||||
'PDF invoice' => 'Faktura PDF',
|
||||
'Pagination' => 'Paginacja',
|
||||
'Password' => 'Hasło',
|
||||
'Password Forgotten' => 'Zapomniałem hasła',
|
||||
'Pay with %module_title' => 'Zapłać za pomocą %module_title',
|
||||
'Personal Information' => 'Dane osobowe',
|
||||
'Placeholder address label' => 'Dom, biuro, inne...',
|
||||
'Placeholder address1' => 'Adresse',
|
||||
'Placeholder cellphone' => 'Telefon komórkowy',
|
||||
'Placeholder city' => 'New York',
|
||||
'Placeholder company' => 'Google',
|
||||
'Placeholder contact email' => 'Abyśmy mogli się z tobą skontaktować.',
|
||||
'Placeholder contact message' => 'I twoja wiadomość...',
|
||||
'Placeholder contact name' => 'Jak masz na imię?',
|
||||
'Placeholder contact subject' => 'Temat twojej wiadomości.',
|
||||
'Placeholder email' => 'adres e-mail',
|
||||
'Placeholder email confirm' => 'Powtórz adres e-mail',
|
||||
'Placeholder firstname' => 'Imię',
|
||||
'Placeholder lastname' => 'Nazwisko',
|
||||
'Placeholder zipcode' => 'Kod pocztowy',
|
||||
'Please enter your email address below.' => 'Wprowadź swój adres e-mail poniżej.',
|
||||
'Please try again to order' => 'Prosimy spróbować ponownie',
|
||||
'Redirect to bank service' => 'Przenieś mnie na stronę banku',
|
||||
'Ref.' => 'Nr ref.',
|
||||
'Register' => 'Zarejestruj się',
|
||||
'Regular Price:' => 'Normalna cena:',
|
||||
'Related' => 'Powiązane',
|
||||
'Remove' => 'Usuń',
|
||||
'Remove this address' => 'Usuń ten adres',
|
||||
'SELECT YOUR CURRENCY' => 'WYBIERZ SWOJĄ WALUTĘ',
|
||||
'SELECT YOUR LANGUAGE' => 'WYBIERZ SWÓJ JĘZYK',
|
||||
'Sale was not found' => 'Wyprzedaż nie została znaleziona',
|
||||
'Save %amount%sign on these products' => 'Zaoszczędź %amount%sign na tych produktach',
|
||||
'Save %amount%sign on this product' => 'Zaoszczędź %amount%sign na tym produkcie',
|
||||
'Search' => 'Szukaj',
|
||||
'Search Result for' => 'Wyniki wyszukiwania dla',
|
||||
'Secondary Navigation' => 'Dodatkowa nawigacja',
|
||||
'Secure Payment' => 'Bezpieczna płatność',
|
||||
'Secure payment' => 'Bezpieczna płatność',
|
||||
'Select Country' => 'Wybierz kraj',
|
||||
'Subscribe' => 'Subskrybuj',
|
||||
'Total without tax' => 'Suma netto',
|
||||
'404' => '404',
|
||||
];
|
||||
@@ -1,253 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'%nb Item' => '%nb Item',
|
||||
'%nb Items' => '%nb Itens',
|
||||
'+' => '+',
|
||||
'<strong>Sorry!</strong> We are not able to give you a delivery method for your order.' => '<strong>Desculpe!</strong> Nós não conseguimos fornecer um método de entraga para seu pedido.',
|
||||
'A new password has been sent to your e-mail address. Please check your mailbox.' => 'Uma nova senha foi enviada para seu endereço de e-mail. Por favor verifique seu e-mail.',
|
||||
'A problem occured' => 'Ocorreu um problema',
|
||||
'A summary of your order has been sent to the following address' => 'Um sumário do seu pedido foi enviado para para o seguinte endereço',
|
||||
'Account' => 'Conta',
|
||||
'Add a new address' => 'Adicionar um novo endereço',
|
||||
'Add to cart' => 'Adicionar ao carrinho',
|
||||
'Additional Info' => 'Informação adicional',
|
||||
'Address' => 'Endereço',
|
||||
'Address %nb' => 'Endereço %nb',
|
||||
'Address Update' => 'Atualização de endereço',
|
||||
'All' => 'Todos',
|
||||
'All brands' => 'Todas as marcas',
|
||||
'All brands in %store' => 'Todas as marcas em %store',
|
||||
'All contents' => 'Todos os conteúdos',
|
||||
'All contents in' => 'Todo o conteúdo em',
|
||||
'All product in brand %title' => 'Todos os produtos na marca %title',
|
||||
'All products' => 'Todos os produtos',
|
||||
'All products for brand %title in %store' => 'Todos em produtos para marca %title em %store',
|
||||
'All products in' => 'Todos os produtos em',
|
||||
'Amount' => 'Quantidade',
|
||||
'An error occurred' => 'Ocorreu um erro',
|
||||
'Availability' => 'Disponibilidade',
|
||||
'Available' => 'Disponível',
|
||||
'Back' => 'Voltar',
|
||||
'Billing' => 'Cobraça',
|
||||
'Billing Mode' => 'Modo de cobrança',
|
||||
'Billing address' => 'Endereço de cobrança',
|
||||
'Billing and delivery' => 'Cobrança e entrega',
|
||||
'Brand information' => 'Informação da marca',
|
||||
'Brands' => 'Marcas',
|
||||
'Cancel' => 'Cancelar',
|
||||
'Cart' => 'Carrinho',
|
||||
'Categories' => 'Categorias',
|
||||
'Change Password' => 'Alterar senha',
|
||||
'Change address' => 'Mudar endereço',
|
||||
'Change my account information' => 'Alterar as minhas informações',
|
||||
'Change my password' => 'Alterar minha senha',
|
||||
'Check my order' => 'Verificar meu pedido',
|
||||
'Choose your delivery address' => 'Escolha o seu endereço de entrega',
|
||||
'Choose your delivery method' => 'Escolha o seu método de entrega',
|
||||
'Choose your payment method' => 'Escolha o seu método de pagamento',
|
||||
'Code :' => 'Código:',
|
||||
'Connecting to the secure payment server, please wait a few seconds...' => 'Conexão ao servidor para pagamento seguro, obrigado por aguardar.',
|
||||
'Contact Us' => 'Contate-nos',
|
||||
'Contact page' => 'Página de Contato',
|
||||
'Continue Shopping' => 'Continuar a comprar',
|
||||
'Copyright' => 'Direitos autorais',
|
||||
'Coupon code' => 'Código de cupom',
|
||||
'Create' => 'Criar',
|
||||
'Create New Account' => 'Criar nova conta',
|
||||
'Create New Address' => 'Criar novo endereço',
|
||||
'Created' => 'Criado',
|
||||
'Currency' => 'Moeda',
|
||||
'Customer Number' => 'Número do cliente',
|
||||
'Date' => 'Data',
|
||||
'Delivery' => 'Entrega',
|
||||
'Delivery Information' => 'Informações de entrega',
|
||||
'Delivery Mode' => 'Modo de entrega',
|
||||
'Delivery REF' => 'Ref de entrega',
|
||||
'Delivery address' => 'Endereço de entrega',
|
||||
'Demo product description' => 'Descrição do produto de demostração',
|
||||
'Demo product title' => 'Título do produto de demostração',
|
||||
'Description' => 'Descrição',
|
||||
'Do you have an account?' => 'Você possui uma conta?',
|
||||
'Do you really want to delete this address ?' => 'Voce realmente deseja deletar esse endereço?',
|
||||
'Download' => 'Baixar',
|
||||
'Edit' => 'Editar',
|
||||
'Edit this address' => 'Editar este endereço',
|
||||
'Estimated shipping ' => 'Tempo estimado de entrega',
|
||||
'Forgot your Password?' => 'Esqueceu sua senha?',
|
||||
'Free shipping' => 'Entrega grátis',
|
||||
'From %price' => 'De %price',
|
||||
'Go back to the previous page' => 'Voltar para página anterior',
|
||||
'Go home' => 'Ir para página inicial',
|
||||
'Grid' => 'Grade',
|
||||
'Home' => 'Página inicial',
|
||||
'I\'ve read and agreed on <a href=\'%link\' class=\'terms-quickview\'>Terms & Conditions</a>' => 'Eu li e aceitei os <a href=\'%link\' class=\'terms-quickview\'>Termos & Condições</a>',
|
||||
'If nothing happens within 10 seconds, <a id="force-submit-payment-form" href="#">please click here</a>.' => 'Se nada acontecer em 10 segundos, <a id="force-submit-payment-form" href="#">por favor clique aqui</a>.',
|
||||
'If you want to change your email, please contact us.' => 'Se você deseja mudar seu email, por favor entre em contato conosco.',
|
||||
'In Stock' => 'Em estoque',
|
||||
'Invoice REF' => 'Ref de fatura',
|
||||
'Language' => 'Linguagem',
|
||||
'Latest' => 'Recentes',
|
||||
'Latest products' => 'Produtos recentes',
|
||||
'List' => 'Lista',
|
||||
'List of orders' => 'Lista de pedidos',
|
||||
'Login' => 'Iniciar sessão',
|
||||
'Login Information' => 'Informação da sessão',
|
||||
'Main Address' => 'Endereço principal',
|
||||
'More information about this brand' => 'Mais informaçoes sobre esta marca',
|
||||
'Multi-payment platform' => 'Plataforma de multi-pagamento',
|
||||
'My Account' => 'Minha conta',
|
||||
'My Address Books' => 'Meus livros de endereço',
|
||||
'My Address book' => 'Meu livro de endereço',
|
||||
'My Orders' => 'Meus pedidos',
|
||||
'My order' => 'Meu pedido',
|
||||
'Name' => 'Nome',
|
||||
'Name ascending' => 'Nome ascendente',
|
||||
'Name descending' => 'Nome decrescente',
|
||||
'Need help ?' => 'Precisa de ajuda?',
|
||||
'Newsletter' => 'Boletim de notícias',
|
||||
'Newsletter Subscription' => 'Assinar boletim',
|
||||
'Next' => 'Próximo',
|
||||
'Next Step' => 'Próximo passo',
|
||||
'Next product' => 'Próximo produto',
|
||||
'No Contents in this folder.' => 'Sem conteúdo nesta pasta',
|
||||
'No deliveries available for this cart and this country' => 'Não há entregas disponíveis para esta encomenda a este país',
|
||||
'No products available in this brand' => 'Sem produtos disponíveis para essa marca',
|
||||
'No products available in this category' => 'Não há produtos disponíveis nesta categoria',
|
||||
'No results found' => 'Nenhum resultado encontrado',
|
||||
'No.' => 'N. º',
|
||||
'Ok' => 'Ok',
|
||||
'Options' => 'Opções',
|
||||
'Order details' => 'Detalhes do pedido',
|
||||
'Order details %ref' => 'Detalhes do pedido %ref',
|
||||
'Order number' => 'Número do pedido',
|
||||
'Orders over $50' => 'Pedidos acima de R$50',
|
||||
'Out of Stock' => 'Sem estoque',
|
||||
'PDF invoice' => 'Fatura em PDF',
|
||||
'Pagination' => 'Paginação',
|
||||
'Password' => 'Senha',
|
||||
'Password Forgotten' => 'Esqueci a senha',
|
||||
'Pay with %module_title' => 'Para com %module_title',
|
||||
'Personal Information' => 'Informação Pessoal',
|
||||
'Placeholder address label' => 'Casa, trabalho, outros',
|
||||
'Placeholder address1' => 'Endereço',
|
||||
'Placeholder address2' => 'Endereço',
|
||||
'Placeholder cellphone' => 'Número do telefone celular',
|
||||
'Placeholder city' => 'Cidade',
|
||||
'Placeholder company' => 'Empresa',
|
||||
'Placeholder contact email' => 'Email de contato',
|
||||
'Placeholder contact message' => 'Mensagem...',
|
||||
'Placeholder contact name' => 'Nome',
|
||||
'Placeholder contact subject' => 'Assunto da mensagem',
|
||||
'Placeholder email' => 'email',
|
||||
'Placeholder email confirm' => 'confirmar email',
|
||||
'Placeholder firstname' => 'Primeiro nome',
|
||||
'Placeholder lastname' => 'Último nome',
|
||||
'Placeholder zipcode' => 'CEP',
|
||||
'Please enter your email address below.' => 'Por favor digite seu endereço de email abaixo',
|
||||
'Please try again to order' => 'Por favor tente realizar o pedido novamente',
|
||||
'Position' => 'Posição',
|
||||
'Previous' => 'Anterior',
|
||||
'Previous product' => 'Produto anterior',
|
||||
'Price' => 'Preço',
|
||||
'Price ascending' => 'Preço crescente',
|
||||
'Price descending' => 'Preço decrescente',
|
||||
'Proceed checkout' => 'Prosseguir com pagamento',
|
||||
'Product Empty Button' => 'Adicionar meu primeiro produto',
|
||||
'Product Empty Message' => 'É fácil adicionar um produto.
|
||||
<ol>
|
||||
<li>Clique em <strong>Novos</strong> na aba de detalhes para ver os produtos recentes.</li>
|
||||
<li>Clique em <strong>Oferta</strong> na aba de detalhes se você quiser ver nossos produtos em oferta.</li>
|
||||
</ol>',
|
||||
'Product Name' => 'Nome do produto',
|
||||
'Product Offers' => 'Ofertas de produto',
|
||||
'Qty' => 'Qtd',
|
||||
'Quantity' => 'Quantidade',
|
||||
'Questions ? See our F.A.Q.' => 'Dúvidas? Veja nossa sessão de perguntas frequentes',
|
||||
'REF' => 'REF',
|
||||
'Rating' => 'Avaliação',
|
||||
'Redirect to bank service' => 'Redirecionar para o serviço do banco',
|
||||
'Ref.' => 'Ref.',
|
||||
'Register' => 'Registrar',
|
||||
'Regular Price:' => 'Preço normal',
|
||||
'Related' => 'Relacionados',
|
||||
'Remove' => 'Remover',
|
||||
'Remove this address' => 'Remover este endereço',
|
||||
'SELECT YOUR CURRENCY' => 'SELECIONE SUA MOEDA',
|
||||
'SELECT YOUR LANGUAGE' => 'SELECIONA SUA LINGUAGEM',
|
||||
'Sale was not found' => 'Venda não foi encontrada',
|
||||
'Save %amount%sign on these products' => 'Salva %amount%sign nesses produtos',
|
||||
'Save %amount%sign on this product' => 'Salva %amount%sign neste produto',
|
||||
'Search' => 'Procurar',
|
||||
'Search Result for' => 'Resultados da busca por',
|
||||
'Secondary Navigation' => 'Navegação secundária',
|
||||
'Secure Payment' => 'Pagamento seguro',
|
||||
'Secure payment' => 'Pagamento seguro',
|
||||
'Select Country' => 'Selecione o país',
|
||||
'Select Title' => 'Selecione o título',
|
||||
'Select your country:' => 'Selecione seu país',
|
||||
'Send' => 'Enviar',
|
||||
'Send new password again' => 'Enviar uma nova senha novamente',
|
||||
'Send us a message' => 'Nos envie uma mensagem',
|
||||
'Shipping Tax' => 'Taxa de envio',
|
||||
'Show' => 'Mostrar',
|
||||
'Sign in' => 'Entrar',
|
||||
'Skip to content' => 'Ir para conteúdo',
|
||||
'Sorry but this combination does not exist.' => 'Desculpe mas essa combinação não existe',
|
||||
'Sorry, your cart is empty. There\'s nothing to pay.' => 'Desculpe, seu carrinho esta vazio. Não há o que pagar.',
|
||||
'Sort By' => 'Ordenar por',
|
||||
'Special Price:' => 'Preço especial',
|
||||
'Status' => 'Estado',
|
||||
'Subscribe' => 'Subscrever',
|
||||
'Taxed Price' => 'Preço com taxas',
|
||||
'Thank you for the trust you place in us.' => 'Obrigado pela confiança depositada em nós',
|
||||
'Thanks !' => 'Obrigado!',
|
||||
'Thanks for signing up! We\'ll keep you posted whenever we have any new updates.' => 'Obrigado por se cadastrar! Nós vamos te manter informado sobre nossas novidades.',
|
||||
'Thanks for your message, we will contact as soon as possible.' => 'Obrigado por enviar sua mensagem, nós entraremos em contato o mais rápido possível.',
|
||||
'The page cannot be found' => 'A página não foi encontrada',
|
||||
'The product has been added to your cart' => 'O produto foi adicionado no seu carrinho',
|
||||
'Thelia V2' => 'Thelia V2',
|
||||
'This offer is valid until %date' => 'Esta oferta é válida até %date',
|
||||
'Toggle navigation' => 'Mudar modo de navegação',
|
||||
'Total' => 'Total',
|
||||
'Total excl. taxes' => 'Total sem impostos',
|
||||
'Total incl. taxes' => 'Total com impostos',
|
||||
'Total with tax' => 'Total com imposto',
|
||||
'Total without tax' => 'Preço final s/ impostos',
|
||||
'Transaction REF : %ref' => 'Ref transação: %ref',
|
||||
'Try again' => 'Tente novamente',
|
||||
'Unit Price' => 'Preço Unitário',
|
||||
'Unit Price incl. taxes' => 'Preço Unitário com imposto',
|
||||
'Unit Taxed Price' => 'Preço Unitário Taxado',
|
||||
'Update' => 'Atualizar',
|
||||
'Update Profile' => 'Atualizar perfil',
|
||||
'Update Quantity' => 'Atualizar quantidade',
|
||||
'Upsell Products' => 'Produtos relacionados',
|
||||
'View' => 'Ver',
|
||||
'View Cart' => 'Ver carrinho',
|
||||
'View all' => 'Ver tudo',
|
||||
'View as' => 'Ver como',
|
||||
'View order %ref details' => 'Ver detalhes do pedido %ref',
|
||||
'View product' => 'Ver produto',
|
||||
'Warning' => 'Aviso',
|
||||
'We apologize but some of the ordered products are not available any more.' => 'Desculpe mas alguns dos produtos do seu pedido não estão mais disponíveis.',
|
||||
'We\'re sorry but an error occured. Please try to contact the site <a href=\'mailto:%mail\'>administrator</a>' => 'Desculpe ocorreu um erro. Por favor tente entrar em contato com o <a href=\'mailto:%mail\'>administrador</a> do site.',
|
||||
'We\'re sorry, a problem occured and your payment was not successful.' => 'Desculpe, houve um problema e seu pagamento não foi realizado.',
|
||||
'You are here:' => 'Você está aqui:',
|
||||
'You choose' => 'Você escolhe',
|
||||
'You choose to pay by' => 'Você escolhe pagar por',
|
||||
'You don\'t have orders yet.' => 'Você ainda não tem pedidos.',
|
||||
'You have no items in your shopping cart.' => 'Você não tem nenhum item no seu carrinho.',
|
||||
'You may have a coupon ?' => 'Você tem algum cupom?',
|
||||
'You want to subscribe to the newsletter? Please enter your email address below.' => 'Você deseja assinar nosso boletim? Por favor digite seu endereço de email abaixo.',
|
||||
'You will receive a link to reset your password.' => 'Você irá receber um link para resetar sua senha.',
|
||||
'Your Cart' => 'Seu carrinho',
|
||||
'Your order will be confirmed by us upon receipt of your payment.' => 'Seu pedido sera confirmado por nós após o recebimento do seu pagamento.',
|
||||
'for' => 'para',
|
||||
'instead of' => 'ao invés de',
|
||||
'missing or invalid data' => 'dados faltando ou inválidos',
|
||||
'per page' => 'por página',
|
||||
'update' => 'atualizar',
|
||||
'with:' => 'com:',
|
||||
'404' => '404',
|
||||
];
|
||||
@@ -1,67 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'A problem occured' => 'Ocorreu um problema',
|
||||
'Account' => 'Conta',
|
||||
'Add a new address' => 'Adicionar nova morada',
|
||||
'Add to cart' => 'Adicionar ao carrinho',
|
||||
'Additional Info' => 'Informação adicional',
|
||||
'Address' => 'Endereço',
|
||||
'Address Update' => 'Atualização de endereço',
|
||||
'All contents' => 'Todos os conteúdos',
|
||||
'All contents in' => 'Todo o conteúdo em',
|
||||
'All products' => 'Todos os produtos',
|
||||
'All products in' => 'Todos os produtos em',
|
||||
'Amount' => 'Quantidade',
|
||||
'An error occurred' => 'An error occured',
|
||||
'Availability' => 'Disponibilidade',
|
||||
'Available' => 'Disponível',
|
||||
'Back' => 'Voltar',
|
||||
'Billing address' => 'Endereço de facturação',
|
||||
'Billing and delivery' => 'Faturar e enviar',
|
||||
'Cancel' => 'Cancelar',
|
||||
'Cart' => 'Carrinho',
|
||||
'Categories' => 'Categorias',
|
||||
'Change Password' => 'Alterar senha',
|
||||
'Change address' => 'Mudar endereço',
|
||||
'Change my account information' => 'Alterar as minhas informações',
|
||||
'Change my password' => 'Alterar minha senha',
|
||||
'Check my order' => 'Verificar meu pedido',
|
||||
'Choose your delivery address' => 'Escolha o seu endereço de entrega',
|
||||
'Choose your delivery method' => 'Escolha o seu método de entrega',
|
||||
'Choose your payment method' => 'Escolha o seu método de pagamento',
|
||||
'Code :' => 'Código:',
|
||||
'Connecting to the secure payment server, please wait a few seconds...' => 'Conexão ao servidor para pagamento seguro, obrigado por aguardar.',
|
||||
'Contact Us' => 'Contate-nos',
|
||||
'Continue Shopping' => 'Continuar a comprar',
|
||||
'Copyright' => 'Copyright',
|
||||
'Coupon code' => 'Código de cupão',
|
||||
'Create' => 'Criar',
|
||||
'Create New Account' => 'Criar nova conta',
|
||||
'Create New Address' => 'Criar novo endereço',
|
||||
'Currency' => 'Moeda',
|
||||
'Date' => 'Data',
|
||||
'Delivery Information' => 'Informações de entrega',
|
||||
'Grid' => 'Grelha',
|
||||
'Home' => 'Página Inicial',
|
||||
'In Stock' => 'Em stock',
|
||||
'Invoice REF' => 'Referencia da factura',
|
||||
'Language' => 'Idioma',
|
||||
'Latest products' => 'Produtos mais recentes',
|
||||
'List' => 'Lista',
|
||||
'Name' => 'Nome',
|
||||
'Name ascending' => 'Nome ascendente',
|
||||
'Name descending' => 'Nome decrescente',
|
||||
'Need help ?' => 'Precisa de ajuda?',
|
||||
'Next' => 'Próximo',
|
||||
'Next Step' => 'Próximo passo',
|
||||
'Next product' => 'Próximo produto',
|
||||
'No deliveries available for this cart and this country' => 'Não há entregas disponíveis para esta encomenda e este país',
|
||||
'No products available in this category' => 'Não há produtos disponíveis nesta categoria',
|
||||
'No results found' => 'Nenhum resultado encontrado',
|
||||
'No.' => 'N. º',
|
||||
'Ok' => 'Ok',
|
||||
'Order details' => 'Detalhes da encomenda',
|
||||
'Placeholder address2' => 'Endereço',
|
||||
'Total without tax' => 'Total (sem IVA)',
|
||||
];
|
||||
@@ -1,253 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'%nb Item' => '%nb',
|
||||
'%nb Items' => '%nb',
|
||||
'+' => '+',
|
||||
'<strong>Sorry!</strong> We are not able to give you a delivery method for your order.' => '<strong>Сожалеем!</strong> Мы не можем Вам предложить способы доставки для вашего заказа.',
|
||||
'A new password has been sent to your e-mail address. Please check your mailbox.' => 'Новый пароль был отправлен на Ваш e-mail. Пожалуйста, проверьте ваш почтовый ящик.',
|
||||
'A problem occured' => 'Возникла проблема',
|
||||
'A summary of your order has been sent to the following address' => 'Информация о заказе была отправлен на следующий адрес',
|
||||
'Account' => 'Учетная запись',
|
||||
'Add a new address' => 'Добавить новый адрес',
|
||||
'Add to cart' => 'Добавить в корзину',
|
||||
'Additional Info' => 'Дополнительная информация',
|
||||
'Address' => 'Адрес',
|
||||
'Address %nb' => 'Адрес %nb',
|
||||
'Address Update' => 'Обновить адрес',
|
||||
'All' => 'Bсе',
|
||||
'All brands' => 'Все бренды',
|
||||
'All brands in %store' => 'Все бренды в %store',
|
||||
'All contents' => 'Все содержимое',
|
||||
'All contents in' => 'Все содержимое в',
|
||||
'All product in brand %title' => 'Все товары бренда %title',
|
||||
'All products' => 'Все товары',
|
||||
'All products for brand %title in %store' => 'Все товары бренда %title в %store',
|
||||
'All products in' => 'Все товары в',
|
||||
'Amount' => 'Количество',
|
||||
'An error occurred' => 'Произошла ошибка',
|
||||
'Availability' => 'Наличие',
|
||||
'Available' => 'Доступно',
|
||||
'Back' => 'Назад',
|
||||
'Billing' => 'Оплата',
|
||||
'Billing Mode' => 'Способ оплаты',
|
||||
'Billing address' => 'Адрес плательщика',
|
||||
'Billing and delivery' => 'Оплата и доставка',
|
||||
'Brand information' => 'Информация о бренде',
|
||||
'Brands' => 'Бренды',
|
||||
'Cancel' => 'Отмена',
|
||||
'Cart' => 'Корзина',
|
||||
'Categories' => 'Категории',
|
||||
'Change Password' => 'Сменить пароль',
|
||||
'Change address' => 'Изменить адрес',
|
||||
'Change my account information' => 'Изменить персональные данные',
|
||||
'Change my password' => 'Сменить пароль',
|
||||
'Check my order' => 'Проверка заказа',
|
||||
'Choose your delivery address' => 'Выберите адрес доставки',
|
||||
'Choose your delivery method' => 'Выберите способ доставки',
|
||||
'Choose your payment method' => 'Выберите способ оплаты',
|
||||
'Code :' => 'Код:',
|
||||
'Connecting to the secure payment server, please wait a few seconds...' => 'Подключение к безопасному платежному серверу, благодарим за ваше терпение.',
|
||||
'Contact Us' => 'Связаться с нами',
|
||||
'Contact page' => 'Контакты',
|
||||
'Continue Shopping' => 'Продолжить покупки',
|
||||
'Copyright' => 'Авторское право',
|
||||
'Coupon code' => 'Код купона',
|
||||
'Create' => 'Создать',
|
||||
'Create New Account' => 'Создать новую учетную запись',
|
||||
'Create New Address' => 'Создать новый адрес',
|
||||
'Created' => 'Дата создания',
|
||||
'Currency' => 'Валюта',
|
||||
'Customer Number' => 'Номер клиента',
|
||||
'Date' => 'Дата',
|
||||
'Delivery' => 'Доставка',
|
||||
'Delivery Information' => 'Информация о доставке',
|
||||
'Delivery Mode' => 'Способ доставки',
|
||||
'Delivery REF' => 'Трекинговый номер',
|
||||
'Delivery address' => 'Адрес доставки',
|
||||
'Demo product description' => 'Описание демо продукта',
|
||||
'Demo product title' => 'Название демо продукта',
|
||||
'Description' => 'Описание',
|
||||
'Do you have an account?' => 'Есть ли у вас учетная запись?',
|
||||
'Do you really want to delete this address ?' => 'Вы действительно хотите удалить этот адрес?',
|
||||
'Download' => 'Загрузки',
|
||||
'Edit' => 'Редактировать',
|
||||
'Edit this address' => 'Изменить этот адрес',
|
||||
'Estimated shipping ' => 'Расчетное время доставки ',
|
||||
'Forgot your Password?' => 'Забыли пароль?',
|
||||
'Free shipping' => 'Бесплатная доставка',
|
||||
'From %price' => 'От %price',
|
||||
'Go back to the previous page' => 'Вернуться на предыдущую страницу',
|
||||
'Go home' => 'На главную',
|
||||
'Grid' => 'Сетка',
|
||||
'Home' => 'Главная',
|
||||
'I\'ve read and agreed on <a href=\'%link\' class=\'terms-quickview\'>Terms & Conditions</a>' => 'Я прочитал и согласился с <a href=\'%link\' class=\'terms-quickview\'>Условиями</a>',
|
||||
'If nothing happens within 10 seconds, <a id="force-submit-payment-form" href="#">please click here</a>.' => 'Если ничего не произойдет в течение следующих 10 секунд, <a id="force-submit-payment-form" href="#">нажмите сюда</a>. ',
|
||||
'If you want to change your email, please contact us.' => 'Если Вы хотите изменить свой email, пожалуйста свяжитесь с нами.',
|
||||
'In Stock' => 'В наличии',
|
||||
'Invoice REF' => 'Счет-фактура номер',
|
||||
'Language' => 'Язык',
|
||||
'Latest' => 'Последние',
|
||||
'Latest products' => 'Новые продукты',
|
||||
'List' => 'Список',
|
||||
'List of orders' => 'Список заказов',
|
||||
'Login' => 'Вход',
|
||||
'Login Information' => 'Данные для входа',
|
||||
'Main Address' => 'Основной адрес',
|
||||
'More information about this brand' => 'Больше информации об этом бренде',
|
||||
'Multi-payment platform' => 'Мульти платежная платформа',
|
||||
'My Account' => 'Моя учетная запись',
|
||||
'My Address Books' => 'Мои адресные книги',
|
||||
'My Address book' => 'Моя адресная книга',
|
||||
'My Orders' => 'Мои заказы',
|
||||
'My order' => 'Мой заказ',
|
||||
'Name' => 'Имя',
|
||||
'Name ascending' => 'Название по возрастанию',
|
||||
'Name descending' => 'Название по убыванию',
|
||||
'Need help ?' => 'Нужна помощь?',
|
||||
'Newsletter' => 'Рассылка',
|
||||
'Newsletter Subscription' => 'Подписка на рассылку',
|
||||
'Next' => 'Следующая',
|
||||
'Next Step' => 'Следующий шаг',
|
||||
'Next product' => 'Следующий продукт',
|
||||
'No Contents in this folder.' => 'Содержимое в папке отсутствует.',
|
||||
'No deliveries available for this cart and this country' => 'К сожалению мы не можем предложить способ доставки для этой страны',
|
||||
'No products available in this brand' => 'Нет доступных товаров данного бренда',
|
||||
'No products available in this category' => 'Нет продуктов в этой категории',
|
||||
'No results found' => 'Ничего не найдено',
|
||||
'No.' => '№',
|
||||
'Ok' => 'Хорошо',
|
||||
'Options' => 'Параметры',
|
||||
'Order details' => 'Информация о заказе',
|
||||
'Order details %ref' => 'Информация заказа %ref',
|
||||
'Order number' => 'Номер заказа',
|
||||
'Orders over $50' => 'Заказы свыше $50',
|
||||
'Out of Stock' => 'Нет в наличии',
|
||||
'PDF invoice' => 'PDF счет',
|
||||
'Pagination' => 'Нумерация страниц',
|
||||
'Password' => 'Пароль',
|
||||
'Password Forgotten' => 'Забыли пароль',
|
||||
'Pay with %module_title' => 'Оплатить с помощью %module_title',
|
||||
'Personal Information' => 'Персональные данные',
|
||||
'Placeholder address label' => 'Домашний, рабочий, другой',
|
||||
'Placeholder address1' => '76 Ninth Avenue',
|
||||
'Placeholder address2' => 'Адрес',
|
||||
'Placeholder cellphone' => 'Номер сотового телефона',
|
||||
'Placeholder city' => 'New York',
|
||||
'Placeholder company' => 'Google',
|
||||
'Placeholder contact email' => 'So I can get back to you.',
|
||||
'Placeholder contact message' => 'И ваше сообщение...',
|
||||
'Placeholder contact name' => 'Как вас зовут?',
|
||||
'Placeholder contact subject' => 'Тема вашего сообщения.',
|
||||
'Placeholder email' => 'johndoe@domain.com',
|
||||
'Placeholder email confirm' => 'Чтобы мы могли с Вами связаться.',
|
||||
'Placeholder firstname' => 'John',
|
||||
'Placeholder lastname' => 'Doe',
|
||||
'Placeholder zipcode' => 'NY 10011',
|
||||
'Please enter your email address below.' => 'Пожалуйста, задайте ниже Ваш адрес электронной почты.',
|
||||
'Please try again to order' => 'Пожалуйста, попробуйте заказать еще раз',
|
||||
'Position' => 'Позиция',
|
||||
'Previous' => 'Предыдущий',
|
||||
'Previous product' => 'Предыдущий продукт',
|
||||
'Price' => 'Цена',
|
||||
'Price ascending' => 'Цена по возрастанию',
|
||||
'Price descending' => 'Цена по убыванию',
|
||||
'Proceed checkout' => 'Продолжить',
|
||||
'Product Empty Button' => 'Добавить свой первый товар',
|
||||
'Product Empty Message' => 'Это действительно быстро добавить товар.
|
||||
<ol>
|
||||
<li>Выберите <strong>NEW</strong> во вкладке подробнее, если вы хотите видеть товар в разделе новых товаров.</li>
|
||||
<li>Выберите <strong>SALE</strong> во вкладке подробнее, если вы хотите видеть товар в разделе специальное предложение.</li>
|
||||
</ol>',
|
||||
'Product Name' => 'Название продукта',
|
||||
'Product Offers' => 'Специальное предложение',
|
||||
'Qty' => 'Кол-во',
|
||||
'Quantity' => 'Количество',
|
||||
'Questions ? See our F.A.Q.' => 'Остались вопросы? Посмотрите F.A.Q.',
|
||||
'REF' => 'Номер',
|
||||
'Rating' => 'Оценка',
|
||||
'Redirect to bank service' => 'Перенаправление к банковскому сервису',
|
||||
'Ref.' => 'Номер.',
|
||||
'Register' => 'Регистрация',
|
||||
'Regular Price:' => 'Обычная цена:',
|
||||
'Related' => 'Связанные',
|
||||
'Remove' => 'Удалить',
|
||||
'Remove this address' => 'Удалить этот адрес',
|
||||
'SELECT YOUR CURRENCY' => 'ВЫБЕРИТЕ ВАШУ ВАЛЮТУ',
|
||||
'SELECT YOUR LANGUAGE' => 'ВЫБЕРИТЕ ВАШ ЯЗЫК',
|
||||
'Sale was not found' => 'Специальные предложения не найдены',
|
||||
'Save %amount%sign on these products' => 'Сэкономьте %amount%sign приобретя эти продукты',
|
||||
'Save %amount%sign on this product' => 'Сэкономьте %amount%sign приобретя этот товар',
|
||||
'Search' => 'Поиск',
|
||||
'Search Result for' => 'Результат поиска для',
|
||||
'Secondary Navigation' => 'Дополнительная навигация',
|
||||
'Secure Payment' => 'Безопасная оплата',
|
||||
'Secure payment' => 'Безопасная оплата',
|
||||
'Select Country' => 'Выберите страну',
|
||||
'Select Title' => 'Выберите название',
|
||||
'Select your country:' => 'Выберите Вашу страну:',
|
||||
'Send' => 'Отправить',
|
||||
'Send new password again' => 'Отправить новый пароль еще раз',
|
||||
'Send us a message' => 'Отправить нам сообщение',
|
||||
'Shipping Tax' => 'Стоимость доставки',
|
||||
'Show' => 'Показать',
|
||||
'Sign in' => 'Войти',
|
||||
'Skip to content' => 'Перейти к содержанию',
|
||||
'Sorry but this combination does not exist.' => 'К сожалению данная комбинация не существует.',
|
||||
'Sorry, your cart is empty. There\'s nothing to pay.' => 'К сожалению, Ваша корзина пуста. Нет ничего, за что бы было можно заплатить.',
|
||||
'Sort By' => 'Сортировать по',
|
||||
'Special Price:' => 'Специальная цена:',
|
||||
'Status' => 'Статус',
|
||||
'Subscribe' => 'Подписаться',
|
||||
'Taxed Price' => 'Цена с налогом',
|
||||
'Thank you for the trust you place in us.' => 'Благодарим вас за доверие.',
|
||||
'Thanks !' => 'Спасибо!',
|
||||
'Thanks for signing up! We\'ll keep you posted whenever we have any new updates.' => 'Спасибо за регистрацию! Мы будем держать вас в курсе новинок.',
|
||||
'Thanks for your message, we will contact as soon as possible.' => 'Спасибо за ваше сообщение, мы свяжемся с как можно скорее.',
|
||||
'The page cannot be found' => 'Страница не найдена',
|
||||
'The product has been added to your cart' => 'Товар добавлен в корзину',
|
||||
'Thelia V2' => 'Thelia V2',
|
||||
'This offer is valid until %date' => 'Предложение действует до %date',
|
||||
'Toggle navigation' => 'Переключить навигацию',
|
||||
'Total' => 'Итого',
|
||||
'Total excl. taxes' => 'Итого без налога',
|
||||
'Total incl. taxes' => 'Итого вкл. налог',
|
||||
'Total with tax' => 'Итого с налогом',
|
||||
'Total without tax' => 'Итого без налога',
|
||||
'Transaction REF : %ref' => 'Транзакция номер: %ref',
|
||||
'Try again' => 'Попробуйте пожалуйста еще раз.',
|
||||
'Unit Price' => 'Цена за единицу',
|
||||
'Unit Price incl. taxes' => 'Цена единицы вкл. налог',
|
||||
'Unit Taxed Price' => 'Цена единицы с налогом',
|
||||
'Update' => 'Обновить',
|
||||
'Update Profile' => 'Обновить профиль',
|
||||
'Update Quantity' => 'Обновить количество',
|
||||
'Upsell Products' => 'Товары со скидкой',
|
||||
'View' => 'Посмотреть',
|
||||
'View Cart' => 'Просмотреть корзину',
|
||||
'View all' => 'Просмотреть все',
|
||||
'View as' => 'Посмотреть как',
|
||||
'View order %ref details' => 'Просмотреть информацию о заказе %ref',
|
||||
'View product' => 'Просмотр продукта',
|
||||
'Warning' => 'Внимание',
|
||||
'We apologize but some of the ordered products are not available any more.' => 'Мы приносим свои извинения, но некоторые из заказанных товаров не доступны.',
|
||||
'We\'re sorry but an error occured. Please try to contact the site <a href=\'mailto:%mail\'>administrator</a>' => 'Извините, произошла ошибка. Пожалуйста, попробуйте связаться с <a href=\'mailto:%mail\'>администратором</a> сайта',
|
||||
'We\'re sorry, a problem occured and your payment was not successful.' => 'Извините, возникла проблема, и не удалось завершить платеж.',
|
||||
'You are here:' => 'Вы находитесь здесь:',
|
||||
'You choose' => 'Вы выбрали',
|
||||
'You choose to pay by' => 'Вы выбрали оплату',
|
||||
'You don\'t have orders yet.' => 'У вас пока еще нет заказов.',
|
||||
'You have no items in your shopping cart.' => 'У вас нет товаров в корзине.',
|
||||
'You may have a coupon ?' => 'Возможно у вас есть купон?',
|
||||
'You want to subscribe to the newsletter? Please enter your email address below.' => 'Вы хотите подписаться на рассылку новостей? Пожалуйста, введите ниже ваш адрес электронной почты.',
|
||||
'You will receive a link to reset your password.' => 'Вы получите ссылку для сброса пароля.',
|
||||
'Your Cart' => 'Ваша корзина',
|
||||
'Your order will be confirmed by us upon receipt of your payment.' => 'Ваш заказ будет подтвержден после получения платежа.',
|
||||
'for' => 'для',
|
||||
'instead of' => 'вместо',
|
||||
'missing or invalid data' => 'отсутствуют или неневерные данные',
|
||||
'per page' => 'на странице',
|
||||
'update' => 'обновить',
|
||||
'with:' => 'с:',
|
||||
'404' => '404',
|
||||
];
|
||||
@@ -1,254 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'%nb Item' => '%nb Položka',
|
||||
'%nb Items' => '%nb Položiek',
|
||||
'+' => '+',
|
||||
'<strong>Sorry!</strong> We are not able to give you a delivery method for your order.' => '<strong>Prepáčte!</strong> Nie sme vám schopní zadať spôsob dodania vašej objednávky.',
|
||||
'A new password has been sent to your e-mail address. Please check your mailbox.' => 'Nové heslo bol odoslané na vašu e-mailovú adresu. Prosím skontrolujte si vašu mailovú schránku.',
|
||||
'A problem occured' => 'Vyskytol sa problém',
|
||||
'A summary of your order has been sent to the following address' => 'Súhrn vašej objednávky bol odoslaný na nasledovnú adresu',
|
||||
'Account' => 'Konto',
|
||||
'Add a new address' => 'Pridať novú adresu',
|
||||
'Add to cart' => 'Vložiť do košíka',
|
||||
'Additional Info' => 'Ďalšie Info',
|
||||
'Address' => 'Adresa',
|
||||
'Address %nb' => 'Adresa %nb',
|
||||
'Address Update' => 'Aktualizovať adresu',
|
||||
'All' => 'Všetko',
|
||||
'All brands' => 'Všetky značky',
|
||||
'All brands in %store' => 'Všetky značky v %store',
|
||||
'All contents' => 'Všetok obsah',
|
||||
'All contents in' => 'Všetok obsah v',
|
||||
'All product in brand %title' => 'Všetky výrobku značky %title',
|
||||
'All products' => 'Všetky produkty',
|
||||
'All products for brand %title in %store' => 'Všetky produkty značky %title v %store',
|
||||
'All products in' => 'Všetky produkty v',
|
||||
'Amount' => 'Množstvo',
|
||||
'An error occurred' => 'Nastala chyba',
|
||||
'Availability' => 'Dostupnosť',
|
||||
'Available' => 'Dostupné',
|
||||
'Back' => 'Späť',
|
||||
'Billing' => 'Fakturácia',
|
||||
'Billing Mode' => 'Spôsob fakturácie',
|
||||
'Billing address' => 'Fakturačná adresa',
|
||||
'Billing and delivery' => 'Fakturácia a doručenie',
|
||||
'Brand information' => 'Informácie o Značke',
|
||||
'Brands' => 'Značky',
|
||||
'Cancel' => 'Zrušiť',
|
||||
'Cart' => 'Košík',
|
||||
'Categories' => 'Kategórie',
|
||||
'Change Password' => 'Zmena hesla',
|
||||
'Change address' => 'Zmena adresy',
|
||||
'Change my account information' => 'Zmeniť informácie o mojom konte',
|
||||
'Change my password' => 'Zmeniť moje heslo',
|
||||
'Check my order' => 'Skontrolovať objednávku',
|
||||
'Choose your delivery address' => 'Vyberte adresu pre doručenie',
|
||||
'Choose your delivery method' => 'Vyberte spôsob doručenia',
|
||||
'Choose your payment method' => 'Zvoľte spôsob platby',
|
||||
'Code :' => 'Kód:',
|
||||
'Connecting to the secure payment server, please wait a few seconds...' => 'Pripájanie na zabezpečený platobný server, prosím počkajte pár okamihov...',
|
||||
'Contact Us' => 'Kontaktujte nás',
|
||||
'Contact page' => 'Kontaktná stránka',
|
||||
'Continue Shopping' => 'Pokračovať v nákupe',
|
||||
'Copyright' => 'Autorské práva',
|
||||
'Coupon code' => 'Kód kupónu',
|
||||
'Create' => 'Vytvoriť',
|
||||
'Create New Account' => 'Vytvoriť nový účet',
|
||||
'Create New Address' => 'Vytvoriť novú adresu',
|
||||
'Created' => 'Vytvorené',
|
||||
'Currency' => 'Mena',
|
||||
'Customer Number' => 'Zákaznícke číslo',
|
||||
'Date' => 'Dátum',
|
||||
'Delete' => 'Zmazať',
|
||||
'Delivery' => 'Doručenie',
|
||||
'Delivery Information' => 'Informácie o dodaní',
|
||||
'Delivery Mode' => 'Spôsob dodania',
|
||||
'Delivery REF' => 'Kód Dodávky',
|
||||
'Delivery address' => 'Adresa doručenia',
|
||||
'Demo product description' => 'Popis produktu demo',
|
||||
'Demo product title' => 'Demo názov produktu',
|
||||
'Description' => 'Popis',
|
||||
'Do you have an account?' => 'Máte účet?',
|
||||
'Do you really want to delete this address ?' => 'Naozaj chcete vymazať túto adresu?',
|
||||
'Documents' => 'Dokumenty',
|
||||
'Download' => 'Na stiahnutie',
|
||||
'Edit' => 'Upraviť',
|
||||
'Edit this address' => 'Upraviť túto adresu',
|
||||
'Estimated shipping ' => 'Odhadovaná preprava ',
|
||||
'Expected delivery date: %delivery_date' => 'Predpokladaný dátum dodania: %delivery_date',
|
||||
'Forgot your Password?' => 'Zabudli ste heslo?',
|
||||
'Free shipping' => 'Doprava zdarma',
|
||||
'From %price' => 'Z %price',
|
||||
'Go back to the previous page' => 'Späť na predchádzajúcu stránku',
|
||||
'Go home' => 'Choď domov',
|
||||
'Grid' => 'Mriežka',
|
||||
'Home' => 'Úvod',
|
||||
'I\'ve read and agreed on <a href=\'%link\' class=\'terms-quickview\'>Terms & Conditions</a>' => 'Čítal som a súhlasimi <a href=\'%link\' class=\'terms-quickview\'>terms & Conditions</a>',
|
||||
'If nothing happens within 10 seconds, <a id="force-submit-payment-form" href="#">please click here</a>.' => 'Pokiaľ sa nič nestane počas 10 sekúnd, <a id="force-submit-payment-form" href="#">kliknete sem</a>. ',
|
||||
'If you want to change your email, please contact us.' => 'Ak chcete zmeniť e-mail, prosím, kontaktujte nás.',
|
||||
'In Stock' => 'Na sklade',
|
||||
'Invoice REF' => 'Číslo Faktúry',
|
||||
'Language' => 'Jazyk',
|
||||
'Latest' => 'Najnovšie',
|
||||
'Latest products' => 'Najnovšie produkty',
|
||||
'List' => 'Zoznam',
|
||||
'List of orders' => 'Zoznam objednávok',
|
||||
'Login' => 'Prihlásiť',
|
||||
'Login Information' => 'Prihlasovacie údaje',
|
||||
'Main Address' => 'Hlavná adresa',
|
||||
'More information about this brand' => 'Ďalšie informácie o tejto značke',
|
||||
'Multi-payment platform' => 'Multi-platobná platforma',
|
||||
'My Account' => 'Môj účet',
|
||||
'My Address Books' => 'Moje adresáre',
|
||||
'My Address book' => 'Môj adresár',
|
||||
'My Orders' => 'Moje objednávky',
|
||||
'My order' => 'Moja objednávka',
|
||||
'Name' => 'Názov',
|
||||
'Name ascending' => 'Názov vzostupne',
|
||||
'Name descending' => 'Názov zostupne',
|
||||
'Need help ?' => 'Potrebujete pomôcť?',
|
||||
'Newsletter' => 'Novinky',
|
||||
'Newsletter Subscription' => 'Prihlásenie k odberu noviniek',
|
||||
'Next' => 'Ďalšie',
|
||||
'Next Step' => 'Ďalší krok',
|
||||
'Next product' => 'Ďalší produkt',
|
||||
'No Contents in this folder.' => 'Tento priečinok je prázdny.',
|
||||
'No deliveries available for this cart and this country' => 'Nie je možné doručenie pre tento košík a krajinu',
|
||||
'No products available in this brand' => 'Žiadne produkty tejto značky',
|
||||
'No products available in this category' => 'Žiadne produkty v tejto kategórii',
|
||||
'No results found' => 'Neboli nájdené žiadne výsledky',
|
||||
'No.' => 'No.',
|
||||
'Ok' => 'Ok',
|
||||
'Options' => 'Možnosti',
|
||||
'Order details' => 'Detaily objednávky',
|
||||
'Order details %ref' => 'Detaily objednávky % ref',
|
||||
'Order number' => 'Číslo objednávky',
|
||||
'Orders over $50' => 'Objednávky nad 50 dolárov',
|
||||
'Out of Stock' => 'Nie je na sklade',
|
||||
'PDF invoice' => 'PDF faktúra',
|
||||
'Pagination' => 'Stránkovanie',
|
||||
'Password' => 'Heslo',
|
||||
'Password Forgotten' => 'Zabudnuté heslo',
|
||||
'Pay with %module_title' => 'Platiteľ s % module_title',
|
||||
'Personal Information' => 'Osobné informácie',
|
||||
'Placeholder address label' => 'Domov, práca, iné',
|
||||
'Placeholder address1' => '76 deviaty Avenue',
|
||||
'Placeholder address2' => 'Adresa',
|
||||
'Placeholder cellphone' => 'Číslo mobilného telefónu',
|
||||
'Placeholder city' => 'New York',
|
||||
'Placeholder company' => 'Google',
|
||||
'Placeholder contact email' => 'Aby sme Vám mohli odpovedať.',
|
||||
'Placeholder contact message' => 'Zadaj svoj odkaz...',
|
||||
'Placeholder contact name' => 'Aké je Vaše meno?',
|
||||
'Placeholder contact subject' => 'Predmet vašej správy.',
|
||||
'Placeholder email' => 'johndoe@domain.com',
|
||||
'Placeholder email confirm' => 'Potvrdenie e-mailu',
|
||||
'Placeholder firstname' => 'Ján',
|
||||
'Placeholder lastname' => 'Mrkvicka',
|
||||
'Placeholder zipcode' => 'NY 10011',
|
||||
'Please enter your email address below.' => 'Zadajte e-mailovú adresu.',
|
||||
'Please try again to order' => 'Prosím, skúste znova objednať',
|
||||
'Position' => 'Pozícia',
|
||||
'Previous' => 'Predchádzajúce',
|
||||
'Previous product' => 'Predchádzajúci produkt',
|
||||
'Price' => 'Cena',
|
||||
'Price ascending' => 'Podľa ceny vzostupne',
|
||||
'Price descending' => 'Podľa ceny zostupne',
|
||||
'Proceed checkout' => 'Prejsť k pokladni',
|
||||
'Product Empty Button' => 'Pridať môj prvý výrobok',
|
||||
'Product Empty Message' => 'Je to naozaj rýchle pridanie produktu. <ol><li>Kontrola <strong>NEW</strong> v záložke Podrobnosti, ak chcete vidieť svoj produkt v poslednej časti výrobku.</li> <li>Kontrola <strong>predaja</strong> v záložke Podrobnosti, ak chcete vidieť svoj produkt v sekcii ponuka produktov.</li> </ol>',
|
||||
'Product Empty Title' => 'Vitajte',
|
||||
'Product Name' => 'Názov produktu',
|
||||
'Product Offers' => 'Produkt ponuky',
|
||||
'Qty' => 'Množ.',
|
||||
'Quantity' => 'Množstvo',
|
||||
'Questions ? See our F.A.Q.' => 'Máte otázky? Pozrite si naše Faq.',
|
||||
'REF' => 'REF',
|
||||
'Rating' => 'Hodnotenie',
|
||||
'Redirect to bank service' => 'Presmerovanie na bankovú službu',
|
||||
'Ref.' => 'Ref.',
|
||||
'Register' => 'Zaregistrovať sa',
|
||||
'Regular Price:' => 'Bežná cena:',
|
||||
'Related' => 'Súvisiace',
|
||||
'Remove' => 'Odobrať',
|
||||
'Remove this address' => 'Odstrániť túto adresu',
|
||||
'SELECT YOUR CURRENCY' => 'VYBERTE SVOJU MENU',
|
||||
'SELECT YOUR LANGUAGE' => 'VYBERTE SVOJ JAZYK',
|
||||
'Sale was not found' => 'Výpredaj sa nenašiel',
|
||||
'Save %amount%sign on these products' => 'Uložiť %amount%sign na tieto produkty',
|
||||
'Save %amount%sign on this product' => 'Uložiť %amount%sign na tento produkt',
|
||||
'Search' => 'Hľadať',
|
||||
'Search Result for' => 'Výsledok vyhľadávania',
|
||||
'Secondary Navigation' => 'Sekundárna navigácia',
|
||||
'Secure Payment' => 'Bezpečná platba',
|
||||
'Secure payment' => 'Bezpečná platba',
|
||||
'Select Country' => 'Vyberte krajinu',
|
||||
'Select State' => 'Vyberte štát',
|
||||
'Select Title' => 'Vyberte titul',
|
||||
'Select your country:' => 'Vyberte vašu krajinu:',
|
||||
'Send' => 'Odoslať',
|
||||
'Send new password again' => 'Opätovne zaslať nové heslo',
|
||||
'Send us a message' => 'Pošlite nám správu',
|
||||
'Shipping Tax' => 'Dopravné',
|
||||
'Show' => 'Zobraziť',
|
||||
'Sign in' => 'Prihlásiť sa',
|
||||
'Skip to content' => 'Preskočiť na obsah',
|
||||
'Sorry but this combination does not exist.' => 'Ospravedlňujeme sa, ale táto kombinácia neexistuje.',
|
||||
'Sorry, your cart is empty. There\'s nothing to pay.' => 'Je nám ľúto, ale Váš nákupný košík je prázdny. Nemáte za čo zaplatiť.',
|
||||
'Sort By' => 'Zoradiť podľa',
|
||||
'Special Price:' => 'Špeciálna cena:',
|
||||
'Status' => 'Stav',
|
||||
'Subscribe' => 'Prihlásiť sa',
|
||||
'Taxed Price' => 'Zdanené cena',
|
||||
'Thank you for the trust you place in us.' => 'Ďakujeme vám za dôveru, ktorú v nás máte.',
|
||||
'Thanks !' => 'Ďakujeme !',
|
||||
'Thanks for signing up! We\'ll keep you posted whenever we have any new updates.' => 'Ďakujeme za prihlásenie! Budeme Vás informovat vždy, keď budeme mať niečo nové.',
|
||||
'Thanks for your message, we will contact as soon as possible.' => 'Ďakujeme za vašu správu, budeme vás kontaktovať čo najskôr.',
|
||||
'The page cannot be found' => 'Stránka sa nenašla',
|
||||
'The product has been added to your cart' => 'Produkt bol pridaný do košíka',
|
||||
'Thelia V2' => 'Thelia V2',
|
||||
'This offer is valid until %date' => 'Táto ponuka je platná do %date',
|
||||
'Toggle navigation' => 'Prepnúť navigáciu',
|
||||
'Total' => 'Celkom',
|
||||
'Total excl. taxes' => 'Celkom bez dane',
|
||||
'Total incl. taxes' => 'Celkom vrátane dane',
|
||||
'Total with tax' => 'Celkom s Dph',
|
||||
'Total without tax' => 'Celkom bez dane',
|
||||
'Transaction REF : %ref' => 'Transakcia REF: % ref',
|
||||
'Try again' => 'Skúste to znovu.',
|
||||
'Unit Price' => 'Jednotková cena',
|
||||
'Unit Price incl. taxes' => 'Jednotková cena vrátane dane',
|
||||
'Unit Taxed Price' => 'Jednotková cena zdanené',
|
||||
'Update' => 'Aktualizovať',
|
||||
'Update Profile' => 'Aktualizovať profil',
|
||||
'Update Quantity' => 'Aktualizovať množstvo',
|
||||
'Upsell Products' => 'Akciový tovar',
|
||||
'View' => 'Náhľad',
|
||||
'View Cart' => 'Zobraziť košík',
|
||||
'View all' => 'Zobraziť všetky',
|
||||
'View as' => 'Zobraziť ako',
|
||||
'View order %ref details' => 'Zobraziť objednávku % ref',
|
||||
'View product' => 'Zobraziť produkt',
|
||||
'Warning' => 'Upozornenie',
|
||||
'We apologize but some of the ordered products are not available any more.' => 'Ospravedlňujeme sa, ale niektoré objednané produkty nie sú viac k dispozícií.',
|
||||
'We\'re sorry but an error occured. Please try to contact the site <a href=\'mailto:%mail\'>administrator</a>' => 'Ospravedlňujeme sa, ale vyskytla sa chyba. Skúste, prosím, kontaktovať <a href=\'mailto:%mail\'> správcu</a> webu',
|
||||
'We\'re sorry, a problem occured and your payment was not successful.' => 'Ľutujeme. Vyskytol sa problém a vaša platba nebola úspešná.',
|
||||
'You are here:' => 'Nachádzate sa tu:',
|
||||
'You choose' => 'Vyberte',
|
||||
'You choose to pay by' => 'Vyberte si platbu',
|
||||
'You don\'t have orders yet.' => 'Nemáte ešte žiadne skladby.',
|
||||
'You have no items in your shopping cart.' => 'Nemáte žiadne položky vo vašom nákupnom košíku.',
|
||||
'You may have a coupon ?' => 'Máte kupón?',
|
||||
'You want to subscribe to the newsletter? Please enter your email address below.' => 'Chcete odoberať newsletter? Zadajte e-mailovú adresu.',
|
||||
'You will receive a link to reset your password.' => 'Dostanete odkaz na obnovenie hesla.',
|
||||
'Your Cart' => 'Váš košík',
|
||||
'Your order will be confirmed by us upon receipt of your payment.' => 'Vaša objednávka bude vybavená po obdržaní vašej platby.',
|
||||
'for' => 'pre',
|
||||
'instead of' => 'namiesto',
|
||||
'missing or invalid data' => 'chýbajúce alebo neplatné údaje',
|
||||
'per page' => 'na stránku',
|
||||
'update' => 'aktualizovať',
|
||||
'with:' => 's:',
|
||||
'404' => '404',
|
||||
];
|
||||
@@ -1,257 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'%nb Item' => '%nb öğe',
|
||||
'%nb Items' => '%nb öğeler',
|
||||
'+' => '+',
|
||||
'<strong>Sorry!</strong> We are not able to give you a delivery method for your order.' => '<strong>Özür Dileriz!</strong> Siparişinizi teslim edemeyeceğimizden dolayı siparişinizi alamayız.',
|
||||
'A new password has been sent to your e-mail address. Please check your mailbox.' => 'Yeni bir şifre e-posta adresinize gönderilmiştir. Lütfen kontrol et senin e postanı.',
|
||||
'A problem occured' => 'Bir sorun oluştu',
|
||||
'A summary of your order has been sent to the following address' => 'Siparişinizin özetini aşağıdaki adrese gönderildi',
|
||||
'Account' => 'Hesap',
|
||||
'Add a new address' => 'Yeni Adres Ekle',
|
||||
'Add to cart' => 'Sepete ekle',
|
||||
'Additional Info' => 'Ek bilgi',
|
||||
'Address' => 'Adres',
|
||||
'Address %nb' => 'Adres %nb',
|
||||
'Address Update' => 'Adresi güncelle',
|
||||
'All' => 'Hepsi',
|
||||
'All brands' => 'Tüm Markalar',
|
||||
'All brands in %store' => 'Tüm markalar %store',
|
||||
'All contents' => 'Tüm içerik',
|
||||
'All contents in' => 'Tüm içerikler içinde',
|
||||
'All product in brand %title' => 'Tüm ürün marka %title',
|
||||
'All products' => 'Tüm ürünler',
|
||||
'All products for brand %title in %store' => 'Tüm ürünler için marka %title %store içinde',
|
||||
'All products in' => 'Tüm ürünler içinde',
|
||||
'Amount' => 'Tutar',
|
||||
'An error occurred' => 'Bir hata meydana geldi',
|
||||
'Availability' => 'Kullanılabilirlik',
|
||||
'Available' => 'Kullanılabilir',
|
||||
'Back' => 'Geri',
|
||||
'Billing' => 'Fatura',
|
||||
'Billing Mode' => 'Fatura modu',
|
||||
'Billing address' => 'Fatura adresi',
|
||||
'Billing and delivery' => 'Fatura ve teslimat',
|
||||
'Brand information' => 'Marka bilgileri',
|
||||
'Brands' => 'Markalar',
|
||||
'Cancel' => 'Vazgeç',
|
||||
'Cart' => 'Sepet',
|
||||
'Categories' => 'Katogoriler',
|
||||
'Change Password' => 'Şifreyi değiştir',
|
||||
'Change address' => 'Adresi değiştir',
|
||||
'Change my account information' => 'Hesap bilgilerimi değiştir',
|
||||
'Change my password' => 'Parolamı değiştir',
|
||||
'Check my order' => 'Siparişlerime gözat',
|
||||
'Choose your delivery address' => 'Teslimat adresinizi seçin',
|
||||
'Choose your delivery method' => 'Teslimat yönteminizi seçin',
|
||||
'Choose your payment method' => 'Ödeme yönteminizi seçin',
|
||||
'Code :' => 'Kod :',
|
||||
'Connecting to the secure payment server, please wait a few seconds...' => 'Lütfen bekleyiniz. Güvenliği ödeme serverine bağlanılıyor.',
|
||||
'Contact Us' => 'Bize ulaşın',
|
||||
'Contact page' => 'İletişim sayfası',
|
||||
'Continue Shopping' => 'Alışverişe devam et',
|
||||
'Copyright' => 'Telif hakkı',
|
||||
'Coupon code' => 'kupon kodu',
|
||||
'Create' => 'Oluştur',
|
||||
'Create New Account' => 'Yeni Hesap Oluştur',
|
||||
'Create New Address' => 'Yeni adres oluştur',
|
||||
'Created' => 'Oluşturulma tarihi',
|
||||
'Currency' => 'Para birimi',
|
||||
'Customer Number' => 'Müşteri numarası',
|
||||
'Date' => 'Tarih',
|
||||
'Delivery' => 'Teslimat',
|
||||
'Delivery Information' => 'Teslimat bilgileri',
|
||||
'Delivery Mode' => 'Teslimat modu',
|
||||
'Delivery REF' => 'Teslimat REF',
|
||||
'Delivery address' => 'Teslimat adresi',
|
||||
'Demo product description' => 'Demo ürün açıklaması',
|
||||
'Demo product title' => 'Demo ürün başlığı',
|
||||
'Description' => 'Açıklama',
|
||||
'Discount' => 'İndirim',
|
||||
'Do you have an account?' => 'Bir hesabınız var mı?',
|
||||
'Do you really want to delete this address ?' => 'Bu adresi silmek istiyor musunuz ?',
|
||||
'Documents' => 'Dokümanlar',
|
||||
'Download' => 'İndir',
|
||||
'Edit' => 'Düzenle',
|
||||
'Edit this address' => 'Bu adresi Düzenle',
|
||||
'Estimated shipping ' => 'Kargo ücreti ',
|
||||
'Forgot your Password?' => 'Parolanızı mı unuttunuz?',
|
||||
'Free shipping' => 'Ücretsiz kargo',
|
||||
'From %price' => '%price',
|
||||
'Go back to the previous page' => 'Önceki sayfasına dön',
|
||||
'Go home' => 'Ana sayfaya dön',
|
||||
'Grid' => 'Izgara',
|
||||
'Home' => 'Ana sayfa',
|
||||
'I\'ve read and agreed on <a href=\'%link\' class=\'terms-quickview\'>Terms & Conditions</a>' => 'Okudum ve <a href=\'%link\' class=\'terms-quickview\'> şartları ve koşulları</a> üzerinde kabul ediyorum',
|
||||
'If nothing happens within 10 seconds, <a id="force-submit-payment-form" href="#">please click here</a>.' => '10 saniye içinde bir eylem gerçekleşmezse <a id="force-submit-payment-form" href="#"> burayı tıklayın</a>. ',
|
||||
'If you want to change your email, please contact us.' => 'E-posta değiştirmek istiyorsanız lütfen bize ulaşın.',
|
||||
'In Stock' => 'Stokta var',
|
||||
'Invoice REF' => 'Fatura ürün kodu',
|
||||
'Invoice date' => 'Fatura tarihi',
|
||||
'Language' => 'Dil',
|
||||
'Latest' => 'En son',
|
||||
'Latest products' => 'Son Ürünler',
|
||||
'List' => 'Liste',
|
||||
'List of orders' => 'Siparişlerin listesi',
|
||||
'Login' => 'Giriş yap',
|
||||
'Login Information' => 'Giriş bilgileri',
|
||||
'Main Address' => 'Ana Adres',
|
||||
'More information about this brand' => 'Bu marka hakkında daha fazla bilgi',
|
||||
'Multi-payment platform' => 'Çoklu ödeme platformu',
|
||||
'My Account' => 'Hesabım',
|
||||
'My Address Books' => 'Adres defterlerim',
|
||||
'My Address book' => 'Adres Defterim',
|
||||
'My Orders' => 'Siparişlerim',
|
||||
'My order' => 'Siparişim',
|
||||
'Name' => 'Ad',
|
||||
'Name ascending' => 'Artan ad',
|
||||
'Name descending' => 'Azalan ad',
|
||||
'Need help ?' => 'Yardım ister misin?',
|
||||
'Newsletter' => 'E-Bülten',
|
||||
'Newsletter Subscription' => 'Bülten aboneliği',
|
||||
'Next' => 'Sonraki',
|
||||
'Next Step' => 'Sonraki adım',
|
||||
'Next product' => 'Sonraki ürün',
|
||||
'No Contents in this folder.' => 'Bu klasörde içerik yok.',
|
||||
'No deliveries available for this cart and this country' => 'Bu ülke için kullanılabilir teslimat yöntemi yok',
|
||||
'No products available in this brand' => 'Bu marka ürün yok',
|
||||
'No products available in this category' => 'Bu kategoride ürün yok',
|
||||
'No results found' => 'Hiçbir sonuç bulunamadı',
|
||||
'No.' => 'Hayır.',
|
||||
'Ok' => 'Tamam',
|
||||
'Options' => 'Ayarlar',
|
||||
'Order details' => 'Sipariş detayı',
|
||||
'Order details %ref' => 'Sipariş ayrıntıları %ref',
|
||||
'Order number' => 'Sipariş No',
|
||||
'Orders over $50' => '50 $ üzerindeki sipariş',
|
||||
'Out of Stock' => 'Stokta yok',
|
||||
'PDF invoice' => 'PDF fatura',
|
||||
'Pagination' => 'Sayfalandırma',
|
||||
'Password' => 'Parola',
|
||||
'Password Forgotten' => 'Parolamı unuttum',
|
||||
'Pay with %module_title' => 'Mükellef %module_title',
|
||||
'Personal Information' => 'Kişisel bilgiler',
|
||||
'Placeholder address label' => 'Ev, ofis, diğer',
|
||||
'Placeholder address1' => 'Cadde Adını Yazın',
|
||||
'Placeholder address2' => 'Adres',
|
||||
'Placeholder cellphone' => 'Cep telefonu numarası',
|
||||
'Placeholder city' => 'Adresinizi yazınız',
|
||||
'Placeholder company' => 'Google',
|
||||
'Placeholder contact email' => 'Bu yüzden size geri dönebilirsiniz.',
|
||||
'Placeholder contact message' => 'Ve mesajınız...',
|
||||
'Placeholder contact name' => 'İsminiz nedir?',
|
||||
'Placeholder contact subject' => 'İletinizin konusu.',
|
||||
'Placeholder email' => 'Lütfe e posta adresi girin',
|
||||
'Placeholder email confirm' => 'Yer tutucu e-posta Onayla',
|
||||
'Placeholder firstname' => 'Kimliği',
|
||||
'Placeholder lastname' => 'Kimliği Meçhul',
|
||||
'Placeholder phone' => 'Telefon numarası',
|
||||
'Placeholder zipcode' => 'Lütfen Posta Kodu Girin',
|
||||
'Please enter your email address below.' => 'Lütfen e-posta adresinizi girin.',
|
||||
'Please try again to order' => 'Sipariş için lütfen yeniden deneyin.',
|
||||
'Position' => 'Posizyon',
|
||||
'Postage' => 'Posta',
|
||||
'Previous' => 'Önceki',
|
||||
'Previous product' => 'Önceki ürün',
|
||||
'Price' => 'Fiyat',
|
||||
'Price ascending' => 'Artan fiyat',
|
||||
'Price descending' => 'Fiyat Azalan',
|
||||
'Proceed checkout' => 'Ödeme sayfasına git',
|
||||
'Product Empty Button' => 'İlk ürünü ekle',
|
||||
'Product Empty Message' => 'Ürün eklemek gerçekten çok kolay. <ol>
|
||||
<li>Onay <strong>YENİ</strong> ürününüzü en son ürün bölümünde görmek istiyorsanız, Ayrıntılar sekmesini altında.</li>
|
||||
<li>Onay <strong>SATIŞ</strong> ürün teklif ürün bölümünde görmek istiyorsanız, Ayrıntılar sekmesini altında.</li> </ol>',
|
||||
'Product Empty Title' => 'Hoşgeldiniz',
|
||||
'Product Name' => 'Ürün adı',
|
||||
'Product Offers' => 'Ürün teklifleri',
|
||||
'Qty' => 'Adet',
|
||||
'Quantity' => 'Adet',
|
||||
'Questions ? See our F.A.Q.' => 'Sorun mu var mı? S.S.S sayfamıza göz atın.',
|
||||
'REF' => 'ÜRÜN KODU',
|
||||
'Rating' => 'Oylama',
|
||||
'Redirect to bank service' => 'Banka servisine yönlendirme',
|
||||
'Ref.' => 'Referans.',
|
||||
'Register' => 'Kaydol',
|
||||
'Regular Price:' => 'Normal fiyatı:',
|
||||
'Related' => 'İle ilgili',
|
||||
'Remove' => 'Kaldır',
|
||||
'Remove this address' => 'Bu adresi kaldırmak ister misiniz',
|
||||
'SELECT YOUR CURRENCY' => 'PARA BİRİMİNİZİ SEÇİN',
|
||||
'SELECT YOUR LANGUAGE' => 'DİLİNİZİ SEÇİN',
|
||||
'Sale was not found' => 'Satılık bulunamadı',
|
||||
'Save %amount%sign on these products' => '%amount%sign bu ürünlerde kaydetmek',
|
||||
'Save %amount%sign on this product' => '%amount%sign bu ürünlerde kaydetmek',
|
||||
'Search' => 'Arama',
|
||||
'Search Result for' => 'Arama sonuçları',
|
||||
'Secondary Navigation' => 'İkincil gezinti',
|
||||
'Secure Payment' => 'Güvenli ödeme',
|
||||
'Secure payment' => 'Güvenli ödeme',
|
||||
'Select Country' => 'Ülke seçin',
|
||||
'Select Title' => 'Başlık seçin',
|
||||
'Select your country:' => 'Ülkenizi seçin:',
|
||||
'Send' => 'Gönder',
|
||||
'Send new password again' => 'Yeni parolayı yeniden gönderin',
|
||||
'Send us a message' => 'Bize bir mesaj ilet',
|
||||
'Shipping Tax' => 'Nakliye vergisi',
|
||||
'Show' => 'Göster',
|
||||
'Sign in' => 'Oturum aç',
|
||||
'Skip to content' => 'Bu adımı geç',
|
||||
'Sorry but this combination does not exist.' => 'Üzgünüm ama bu kombinasyon mevcut değil.',
|
||||
'Sorry, your cart is empty. There\'s nothing to pay.' => 'Üzgünüz, sepetinizde hiç ürün yok.',
|
||||
'Sort By' => 'Filtrele',
|
||||
'Special Price:' => 'Özel fiyat:',
|
||||
'Status' => 'Durum',
|
||||
'Subscribe' => 'Abone Ol',
|
||||
'Taxed Price' => 'Kdv Tutarı',
|
||||
'Thank you for the trust you place in us.' => 'Bize verdiğiniz güven için teşekkür ederiz.',
|
||||
'Thanks !' => 'Teşekkürler !',
|
||||
'Thanks for signing up! We\'ll keep you posted whenever we have any new updates.' => 'Teşekkürler. Yeni güncelleştirmeler olduğunda sizi haberdar edeceğiz.',
|
||||
'Thanks for your message, we will contact as soon as possible.' => 'Mesaj için teşekkürler, en kısa zamanda sizinle irtibata geçilecektir.',
|
||||
'The page cannot be found' => 'Sayfa bulunamıyor.',
|
||||
'The product has been added to your cart' => 'Ürün sepetinize eklendi',
|
||||
'Thelia V2' => 'Thelia V2',
|
||||
'This offer is valid until %date' => 'Bu teklif %date kadar geçerlidir',
|
||||
'Toggle navigation' => 'Navigasyonu değiştir',
|
||||
'Total' => 'Toplam',
|
||||
'Total excl. taxes' => 'Toplam Kdv Hariç',
|
||||
'Total incl. taxes' => 'Toplam Kdv Dahil',
|
||||
'Total with tax' => 'Kdv ile toplam',
|
||||
'Total without tax' => 'Kdv toplam',
|
||||
'Transaction REF : %ref' => 'İşlem REF: %ref',
|
||||
'Try again' => 'Yeniden deneyin.',
|
||||
'Unit Price' => 'Birim fiyatı',
|
||||
'Unit Price incl. taxes' => 'Birim fiyat kdv dahil',
|
||||
'Unit Taxed Price' => 'Birim Fiyat Kdv si',
|
||||
'Update' => 'Güncelle',
|
||||
'Update Profile' => 'Profili güncelle',
|
||||
'Update Quantity' => 'Miktarı güncelle',
|
||||
'Upsell Products' => 'Üst model satış ürünleri',
|
||||
'View' => 'Görüntüle',
|
||||
'View Cart' => 'Sepeti Görüntüle',
|
||||
'View all' => 'Hepsini görüntüle',
|
||||
'View as' => 'Farklı Görüntüle',
|
||||
'View order %ref details' => 'Sipariş %ref ayrıntılarını görüntüleme',
|
||||
'View product' => 'Ürünleri göster',
|
||||
'Warning' => 'UYARI',
|
||||
'We apologize but some of the ordered products are not available any more.' => 'Özür dileriz ama sipariş edilen ürünlerin bazıları artık kullanılabilir değil.',
|
||||
'We\'re sorry but an error occured. Please try to contact the site <a href=\'mailto:%mail\'>administrator</a>' => 'Özür dileriz ama bir hata oluştu. Lütfen site <a href=\'mailto:%mail\'> yöneticinize</a> başvurun',
|
||||
'We\'re sorry, a problem occured and your payment was not successful.' => 'Üzgünüz, bir hata oluştu ve ödeme başarılı olamadı.',
|
||||
'You are here:' => 'Buradasınız:',
|
||||
'You choose' => 'Seçtiğiniz',
|
||||
'You choose to pay by' => 'Ödeme tercihiniz',
|
||||
'You don\'t have orders yet.' => 'Henüz sipariş yok.',
|
||||
'You have no items in your shopping cart.' => 'Sepetinizde hiç ürün yok.',
|
||||
'You may have a coupon ?' => 'Kuponunuz var mı ?',
|
||||
'You want to subscribe to the newsletter? Please enter your email address below.' => 'Bültene abone olmak ister misiniz? Lütfen aşağıya e-posta adresinizi girin.',
|
||||
'You will receive a link to reset your password.' => 'Şifrenizi sıfırlamak için bir bağlantı alacaksınız.',
|
||||
'Your Cart' => 'Sepetiniz',
|
||||
'Your order will be confirmed by us upon receipt of your payment.' => 'Sipariş, ödeme aldıktan sonra bizim tarafımızdan teyit edilecektir.',
|
||||
'for' => 'için',
|
||||
'instead of' => 'Bunun Yerine',
|
||||
'missing or invalid data' => 'eksik veya geçersiz veri',
|
||||
'per page' => 'Sayfa başı',
|
||||
'update' => 'güncelleştirme',
|
||||
'with:' => 'ile:',
|
||||
'404' => '404',
|
||||
];
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'Brands' => 'Бренди',
|
||||
'Contact page' => 'Сторінка контактів',
|
||||
'Delivery' => 'Доставка',
|
||||
];
|
||||
@@ -85,14 +85,15 @@
|
||||
<h3 class="name"><a href="{$PRODUCT_URL nofilter}">{$TITLE}</a></h3>
|
||||
<div class="product-options">
|
||||
<dl class="dl-horizontal">
|
||||
<dt class="stockView">{intl l="Available"} :</dt>
|
||||
<dt class="stockView">{intl l="Available"}</dt>
|
||||
{if $STOCK > 0}
|
||||
<dd>{intl l="In Stock"}</dd>
|
||||
{else}
|
||||
{$errorStock="TRUE"}
|
||||
<dd>{intl l="Out of Stock"}</dd>
|
||||
{/if}
|
||||
<!-- TheCoreDev : pas besoin <dt class="refView">{intl l="No."}</dt>
|
||||
<!-- TheCoreDev : pas besoin
|
||||
<dt class="refView">{intl l="No."}</dt>
|
||||
<dd>{$REF}</dd>//-->
|
||||
{loop type="attribute_combination" name="product_options" product_sale_elements="$PRODUCT_SALE_ELEMENTS_ID" order="manual"}
|
||||
<dt class="attributeView">{$ATTRIBUTE_TITLE}</dt>
|
||||
@@ -153,15 +154,16 @@
|
||||
<tr>
|
||||
<td class="product" colspan="2">
|
||||
<form action="{url path="/cart/country"}" class="form-inline" method="post">
|
||||
<h3>
|
||||
<h4>
|
||||
{intl l="Estimated shipping "}
|
||||
{if $is_customizable == false}
|
||||
{loop type="country" name="countryLoop" id="$country_id"}
|
||||
{intl l="for"} {$TITLE}
|
||||
{/loop}
|
||||
{/if}
|
||||
(pour un poids total de {cart attr='weight'}kg)
|
||||
</h3>
|
||||
<br>
|
||||
{intl l="Estimated weight %weight" weight={cart attr='weight'}}
|
||||
</h4>
|
||||
{if $is_customizable}
|
||||
<div>
|
||||
<label for="cart-country">{intl l="Select your country:"}</label>
|
||||
@@ -211,6 +213,7 @@
|
||||
|
||||
{form_field field='coupon-code'}
|
||||
<div class="{if $form_error}has-error{/if}">
|
||||
<div>{intl l='Click to apply coupon'}</div>
|
||||
<div class="input-group">
|
||||
<label class="control-label sr-only" for="code">{intl l='Code :'}</label>
|
||||
|
||||
@@ -230,9 +233,6 @@
|
||||
{/if}
|
||||
{/if}
|
||||
|
||||
{$promo_totale}
|
||||
|
||||
{$code_promo="555"}
|
||||
{if $promo_totale = 1.5}
|
||||
{$code_promo="PROMO_1.5"}
|
||||
{elseif $promo_totale = 2}
|
||||
@@ -240,9 +240,7 @@
|
||||
{elseif $promo_totale > 2}
|
||||
{$code_promo="PROMO_4"}
|
||||
{/if}
|
||||
|
||||
|
||||
<input id="coupon" class="form-control" type="text" name="{$name}" value="{$code_promo}" placeholder="{intl l='Coupon code'}" required>
|
||||
<input id="coupon" class="form-control" type="text" name="{$name}" value="{$code_promo}" placeholder="{intl l='Coupon code'}" required readonly>
|
||||
|
||||
<span class="input-group-btn">
|
||||
<button type="submit" class="btn btn-default">{intl l="Ok"}</button>
|
||||
|
||||
@@ -115,8 +115,9 @@
|
||||
{else}
|
||||
<dd>{intl l="Out of Stock"}</dd>
|
||||
{/if}
|
||||
<!-- TheCoreDev : pas besoin
|
||||
<dt class="refView">{intl l="No."}</dt>
|
||||
<dd>{$REF}</dd>
|
||||
<dd>{$REF}</dd> //-->
|
||||
{loop type="attribute_combination" name="product_options" product_sale_elements="$PRODUCT_SALE_ELEMENTS_ID"}
|
||||
<dt class="attributeView">{$ATTRIBUTE_TITLE}</dt>
|
||||
<dd>{$ATTRIBUTE_AVAILABILITY_TITLE}</dd>
|
||||
@@ -173,6 +174,7 @@
|
||||
</td>
|
||||
</tr>
|
||||
{/if}
|
||||
<!--
|
||||
<tr>
|
||||
<th class="coupon"><label for="coupon">{intl l="You may have a coupon ?"}</label></th>
|
||||
<td class="coupon">
|
||||
@@ -191,9 +193,9 @@
|
||||
{if $error}<span class="help-block">{$message}</span>{/if}
|
||||
</div>
|
||||
{/form_field}
|
||||
<!-- /input-group -->
|
||||
</td>
|
||||
</tr>
|
||||
//-->
|
||||
{if {cart attr="is_virtual"} != 1}
|
||||
<tr>
|
||||
<th class="shipping">{intl l="Shipping Tax"}</th>
|
||||
@@ -204,7 +206,7 @@
|
||||
</td>
|
||||
</tr>
|
||||
{/if}
|
||||
<!-- LLE : pas besoin du prix HT
|
||||
<!-- LLE : pas besoin du prix HT
|
||||
<tr>
|
||||
<th>{intl l="Total excl. taxes"}</th>
|
||||
<td>
|
||||
@@ -213,8 +215,8 @@
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
//-->
|
||||
<tr>
|
||||
//-->
|
||||
<tr>
|
||||
<th class="total">{intl l="Total incl. taxes"}</th>
|
||||
<td class="total">
|
||||
<div class="total-price">
|
||||
|
||||
Reference in New Issue
Block a user