1366 lines
65 KiB
JavaScript
Executable File
1366 lines
65 KiB
JavaScript
Executable File
export default {
|
||
"en": {
|
||
"passwords": {
|
||
"reset": "Your password has been reset!",
|
||
"sent": "We have e-mailed your password reset link!",
|
||
"token": "This password reset token is invalid.",
|
||
"user": "We can't find a user with that e-mail address."
|
||
},
|
||
"auth": {
|
||
"failed": "These credentials do not match our records.",
|
||
"throttle": "Too many login attempts. Please try again in {seconds} seconds."
|
||
},
|
||
"pagination": {
|
||
"previous": "« Previous",
|
||
"next": "Next »"
|
||
},
|
||
"validation": {
|
||
"accepted": "The {attribute} must be accepted.",
|
||
"active_url": "The {attribute} is not a valid URL.",
|
||
"after": "The {attribute} must be a date after {date}.",
|
||
"after_or_equal": "The {attribute} must be a date after or equal to {date}.",
|
||
"alpha": "The {attribute} may only contain letters.",
|
||
"alpha_dash": "The {attribute} may only contain letters, numbers, dashes and underscores.",
|
||
"alpha_num": "The {attribute} may only contain letters and numbers.",
|
||
"array": "The {attribute} must be an array.",
|
||
"before": "The {attribute} must be a date before {date}.",
|
||
"before_or_equal": "The {attribute} must be a date before or equal to {date}.",
|
||
"between": {
|
||
"numeric": "The {attribute} must be between {min} and {max}.",
|
||
"file": "The {attribute} must be between {min} and {max} kilobytes.",
|
||
"string": "The {attribute} must be between {min} and {max} characters.",
|
||
"array": "The {attribute} must have between {min} and {max} items."
|
||
},
|
||
"boolean": "The {attribute} field must be true or false.",
|
||
"confirmed": "The {attribute} confirmation does not match.",
|
||
"date": "The {attribute} is not a valid date.",
|
||
"date_equals": "The {attribute} must be a date equal to {date}.",
|
||
"date_format": "The {attribute} does not match the format {format}.",
|
||
"different": "The {attribute} and {other} must be different.",
|
||
"digits": "The {attribute} must be {digits} digits.",
|
||
"digits_between": "The {attribute} must be between {min} and {max} digits.",
|
||
"dimensions": "The {attribute} has invalid image dimensions.",
|
||
"distinct": "The {attribute} field has a duplicate value.",
|
||
"email": "The {attribute} must be a valid email address.",
|
||
"ends_with": "The {attribute} must end with one of the following: {values}",
|
||
"exists": "The selected {attribute} is invalid.",
|
||
"file": "The {attribute} must be a file.",
|
||
"filled": "The {attribute} field must have a value.",
|
||
"gt": {
|
||
"numeric": "The {attribute} must be greater than {value}.",
|
||
"file": "The {attribute} must be greater than {value} kilobytes.",
|
||
"string": "The {attribute} must be greater than {value} characters.",
|
||
"array": "The {attribute} must have more than {value} items."
|
||
},
|
||
"gte": {
|
||
"numeric": "The {attribute} must be greater than or equal {value}.",
|
||
"file": "The {attribute} must be greater than or equal {value} kilobytes.",
|
||
"string": "The {attribute} must be greater than or equal {value} characters.",
|
||
"array": "The {attribute} must have {value} items or more."
|
||
},
|
||
"image": "The {attribute} must be an image.",
|
||
"in": "The selected {attribute} is invalid.",
|
||
"in_array": "The {attribute} field does not exist in {other}.",
|
||
"integer": "The {attribute} must be an integer.",
|
||
"ip": "The {attribute} must be a valid IP address.",
|
||
"ipv4": "The {attribute} must be a valid IPv4 address.",
|
||
"ipv6": "The {attribute} must be a valid IPv6 address.",
|
||
"json": "The {attribute} must be a valid JSON string.",
|
||
"lt": {
|
||
"numeric": "The {attribute} must be less than {value}.",
|
||
"file": "The {attribute} must be less than {value} kilobytes.",
|
||
"string": "The {attribute} must be less than {value} characters.",
|
||
"array": "The {attribute} must have less than {value} items."
|
||
},
|
||
"lte": {
|
||
"numeric": "The {attribute} must be less than or equal {value}.",
|
||
"file": "The {attribute} must be less than or equal {value} kilobytes.",
|
||
"string": "The {attribute} must be less than or equal {value} characters.",
|
||
"array": "The {attribute} must not have more than {value} items."
|
||
},
|
||
"max": {
|
||
"numeric": "The {attribute} may not be greater than {max}.",
|
||
"file": "The {attribute} may not be greater than {max} kilobytes.",
|
||
"string": "The {attribute} may not be greater than {max} characters.",
|
||
"array": "The {attribute} may not have more than {max} items."
|
||
},
|
||
"mimes": "The {attribute} must be a file of type: {values}.",
|
||
"mimetypes": "The {attribute} must be a file of type: {values}.",
|
||
"min": {
|
||
"numeric": "The {attribute} must be at least {min}.",
|
||
"file": "The {attribute} must be at least {min} kilobytes.",
|
||
"string": "The {attribute} must be at least {min} characters.",
|
||
"array": "The {attribute} must have at least {min} items."
|
||
},
|
||
"not_in": "The selected {attribute} is invalid.",
|
||
"not_regex": "The {attribute} format is invalid.",
|
||
"numeric": "The {attribute} must be a number.",
|
||
"present": "The {attribute} field must be present.",
|
||
"regex": "The {attribute} format is invalid.",
|
||
"required": "The {attribute} field is required.",
|
||
"required_if": "The {attribute} field is required when {other} is {value}.",
|
||
"required_unless": "The {attribute} field is required unless {other} is in {values}.",
|
||
"required_with": "The {attribute} field is required when {values} is present.",
|
||
"required_with_all": "The {attribute} field is required when {values} are present.",
|
||
"required_without": "The {attribute} field is required when {values} is not present.",
|
||
"required_without_all": "The {attribute} field is required when none of {values} are present.",
|
||
"same": "The {attribute} and {other} must match.",
|
||
"size": {
|
||
"numeric": "The {attribute} must be {size}.",
|
||
"file": "The {attribute} must be {size} kilobytes.",
|
||
"string": "The {attribute} must be {size} characters.",
|
||
"array": "The {attribute} must contain {size} items."
|
||
},
|
||
"starts_with": "The {attribute} must start with one of the following: {values}",
|
||
"string": "The {attribute} must be a string.",
|
||
"timezone": "The {attribute} must be a valid zone.",
|
||
"unique": "The {attribute} has already been taken.",
|
||
"uploaded": "The {attribute} failed to upload.",
|
||
"url": "The {attribute} format is invalid.",
|
||
"uuid": "The {attribute} must be a valid UUID.",
|
||
"custom": {
|
||
"attribute-name": {
|
||
"rule-name": "custom-message"
|
||
}
|
||
},
|
||
"attributes": []
|
||
},
|
||
"admin": {
|
||
"home": "Главная",
|
||
"edit": "Редактировать",
|
||
"delete": "Удалить",
|
||
"actions": "Действия",
|
||
"are_you_sure": "Вы действително хотите удалить",
|
||
"add": "Добавить",
|
||
"more": "Подробнее",
|
||
"save": "Сохранить",
|
||
"see": "Посмотреть",
|
||
"ye": "сум",
|
||
"info": "Информация",
|
||
"no_data": "Нет данных",
|
||
"no_publish": "Не опубликовано",
|
||
"back": "Назад",
|
||
"all_fields_with": "Все поля обозначенные * обязательные",
|
||
"settings": {
|
||
"title": "Настройки",
|
||
"name": "Названия сайта",
|
||
"phone": "Телефон",
|
||
"phone_other": "Телефон другой",
|
||
"email": "Эмаил",
|
||
"address": "Адрес",
|
||
"telegram": "Телеграм",
|
||
"facebook": "Facebook",
|
||
"instagram": "Instagram",
|
||
"keywords": "Ключевое словы",
|
||
"description": "Описание сайта",
|
||
"landmark": "Ориентер",
|
||
"day_delivery": "Время доставки",
|
||
"price_delivery": "Стоимость доставки"
|
||
},
|
||
"categories": {
|
||
"title": "Категории",
|
||
"name": "Название",
|
||
"image": "Только файлы типа: jpg, jpeg, png",
|
||
"position": "Позиция",
|
||
"choose_brand": "Выберите бренд(ы)",
|
||
"add_cat": "Прикрепить к категории",
|
||
"remove_cat": "Открепить от категории",
|
||
"sub_category": "Главная категория",
|
||
"choose_cat": "Выберите категорию",
|
||
"char": {
|
||
"name": "Название поля",
|
||
"type": "Тип поля"
|
||
}
|
||
},
|
||
"colors": {
|
||
"title": "Цвета",
|
||
"name": "Название",
|
||
"color": "Цвет"
|
||
},
|
||
"users": {
|
||
"title": "Пользователи",
|
||
"fio": "Ф.И.О",
|
||
"phone": "Телефон",
|
||
"ip": "IP",
|
||
"first_name": "Имя",
|
||
"last_name": "Фамилия",
|
||
"role": "Роль"
|
||
},
|
||
"staffs": {
|
||
"title": "Стаф",
|
||
"password": "Пароль"
|
||
},
|
||
"products": {
|
||
"title": "Продукты",
|
||
"name": "Названия",
|
||
"body": "Описания",
|
||
"image": "Изобрежения",
|
||
"category": "Категории",
|
||
"price": "Цена",
|
||
"price_discount": "Цена со скидкой",
|
||
"screens": "Скриншоты",
|
||
"publish": "Опубликовать",
|
||
"search": "ID или Названия",
|
||
"brands": "Бренды",
|
||
"characteristics": "Характеристики"
|
||
},
|
||
"compilations": {
|
||
"title": "Подборки"
|
||
},
|
||
"orders": {
|
||
"title": "Заказы",
|
||
"user": "Пользователь",
|
||
"city": "Город",
|
||
"address": "Адрес",
|
||
"status": "Статус",
|
||
"delivery_type": "Тип доставки",
|
||
"payment_system": "Тип оплаты",
|
||
"date": "Дата",
|
||
"order": "Заказ",
|
||
"order_number": "Номер заказа №{number}",
|
||
"client": "Клиент",
|
||
"floor": "Этаж",
|
||
"entrance": "Подъезд",
|
||
"house": "Дом",
|
||
"first_name": "Имя",
|
||
"last_name": "Фамилия",
|
||
"phone": "Телефон",
|
||
"product": "Товары",
|
||
"count": "Кол-во",
|
||
"size": "Размер",
|
||
"price": "Цена",
|
||
"total": "Итого",
|
||
"color": "Цвет",
|
||
"delivery": "Доставка",
|
||
"branch": "Филиал",
|
||
"shipment_date": "Дата самовывоза",
|
||
"comment": "Комментария"
|
||
},
|
||
"billing": {
|
||
"title": "История оплаты",
|
||
"user": "Пользователь",
|
||
"amount": "Сумма",
|
||
"order_id": "Заказ",
|
||
"status": "Статус",
|
||
"payed": "Оплачено",
|
||
"waiting": "В ожидании",
|
||
"refused": "Отказано",
|
||
"date": "Дата"
|
||
},
|
||
"posts": {
|
||
"title": "Посты",
|
||
"image": "Картинка",
|
||
"name": "Название",
|
||
"views": "Просмотры",
|
||
"language": "Язык",
|
||
"top": "Закрепить",
|
||
"content": "Текст",
|
||
"type": {
|
||
"title": "Тип поста",
|
||
"news": "Раздел \"Новости\"",
|
||
"article": "Раздел \"Статьи\"",
|
||
"sales": "Раздел \"Акции\"",
|
||
"media": "Раздел \"СМИ о нас\""
|
||
}
|
||
},
|
||
"brands": {
|
||
"title": "Бренды",
|
||
"image": "Изображения",
|
||
"name": "Названия"
|
||
},
|
||
"partners": {
|
||
"title": "Партнёры",
|
||
"image": "Изображения",
|
||
"name": "Название"
|
||
},
|
||
"files": {
|
||
"title": "Файлы",
|
||
"size": "Размер",
|
||
"path": "Путь к файлу"
|
||
},
|
||
"branches": {
|
||
"title": "Филиалы",
|
||
"name": "Название",
|
||
"phone": "Номер",
|
||
"address": "Адрес",
|
||
"schedule": "Рабочии часы филиалов",
|
||
"map": "Ссылка на карту",
|
||
"orientation": "Ориентер"
|
||
},
|
||
"slider": {
|
||
"title": "Баннеры",
|
||
"name": "Название",
|
||
"discount": "Скидка",
|
||
"link": "Ссылка",
|
||
"image": "Изображения",
|
||
"position": "Позиция",
|
||
"placement": {
|
||
"title": "Местоположение",
|
||
"choose": "Выберите местоположение",
|
||
"top": "Верхний баннер",
|
||
"middle": "Нижний баннер"
|
||
}
|
||
},
|
||
"specialOffers": {
|
||
"title": "Спецпредложения",
|
||
"name": "Название",
|
||
"link": "Ссылка",
|
||
"image": "Изображения",
|
||
"description": "Описание"
|
||
},
|
||
"address": {
|
||
"title": "Адресы"
|
||
},
|
||
"roles": {
|
||
"1": "Администратор",
|
||
"2": "Пользователь",
|
||
"3": "Редактор"
|
||
},
|
||
"messages": {
|
||
"updated": "Успешно отредактировано",
|
||
"created": "Успешно создано",
|
||
"deleted": "Успешно удалено",
|
||
"uploaded": "Файл успешно загружено"
|
||
},
|
||
"pages": {
|
||
"title": "Страницы",
|
||
"name": "Название",
|
||
"description": "Описание"
|
||
},
|
||
"feedback": {
|
||
"title": "Обратная связь",
|
||
"name": "Имя",
|
||
"phone": "Номер",
|
||
"created_at": "Дата заявки",
|
||
"status": "Статус",
|
||
"viewed": "Просмотрено",
|
||
"not_viewed": "Не просмотрено",
|
||
"message": "Сообщение"
|
||
},
|
||
"comments": {
|
||
"title": "Комментарии",
|
||
"full_name": "Полное имя",
|
||
"star": "Оценки",
|
||
"star0": "Плохо",
|
||
"star1": "Неплохо",
|
||
"star2": "Нормально",
|
||
"star3": "Хорошо",
|
||
"status": "Статус",
|
||
"published": "Опубликовано",
|
||
"not_published": "Не опубликовано"
|
||
},
|
||
"regions": {
|
||
"title": "Регионы",
|
||
"name": "Регион"
|
||
},
|
||
"cities": {
|
||
"title": "Города",
|
||
"name": "Город",
|
||
"choose_region": "Выберите регион"
|
||
}
|
||
}
|
||
},
|
||
"ru": {
|
||
"app": {
|
||
"main": "Главная",
|
||
"in_bag": "В корзине",
|
||
"more": "Подробнее",
|
||
"share": "Поделиться",
|
||
"no_product": "Товаров нет",
|
||
"sum_sht": "сум/шт",
|
||
"sum": "сум",
|
||
"to_cart": "В корзине",
|
||
"compare": "Сравнить",
|
||
"delete": "Удалить",
|
||
"price": "Цена",
|
||
"discount": "Скидка",
|
||
"buy": "Купить ",
|
||
"all": "Все",
|
||
"go_home": "Ha главная",
|
||
"404": "Не нашли страницу",
|
||
"close": "Закрыть",
|
||
"exist": "Есть",
|
||
"no": "Нет",
|
||
"back": "Назад",
|
||
"no_category_product": "Нет товаров в данной категории",
|
||
"search_result": "По вашему запросу {text} ничего не найдено. Попробуйте ввести другие ключевые слова для поиска",
|
||
"pay_in": "Оплачивайте с помощью",
|
||
"errors": {
|
||
"1": "Hеправильный СМС код",
|
||
"2": "Пользователь уже зарегирован",
|
||
"3": "Продукт не существует",
|
||
"100": "Никакие данные",
|
||
"401": "Аутентифицируемый.",
|
||
"count": "Не осталость в наличии"
|
||
},
|
||
"product": {
|
||
"article_number": "Артикул",
|
||
"in_cart": "В корзине",
|
||
"delivery_home": "Доставить на дом",
|
||
"delivery_home_text": "завтра и позже, бесплатно",
|
||
"pickup": "Забрать в магазине",
|
||
"pickup_text": "сегодня, бесплатно"
|
||
},
|
||
"navbar-categories": {
|
||
"sales": "Акции и <br> скидки"
|
||
},
|
||
"favorites": {
|
||
"title": "Избранные товары",
|
||
"in_favorite": "В избранное"
|
||
},
|
||
"search": {
|
||
"title": "Поиск",
|
||
"search": "Поиск по сайту",
|
||
"search_by": "Поиск по сайту"
|
||
},
|
||
"cart": {
|
||
"title": "Корзина"
|
||
},
|
||
"layout": {
|
||
"compare": "Сравнение",
|
||
"register": "Регистрация",
|
||
"login": "Войти",
|
||
"information": "Информация",
|
||
"terms_of_use": "Пользовательское соглашение",
|
||
"rules_of_delivery": "Правила доставки",
|
||
"rights": "Все права защищены",
|
||
"developed": "Разработка и дизайн"
|
||
},
|
||
"auth": {
|
||
"title": "Авторизация",
|
||
"phone": "Номер телефона",
|
||
"enter_phone": "+998 Введите номер телефона",
|
||
"enter_password": "Введите ваш пароль",
|
||
"password": "Пароль",
|
||
"forgot_password": "Забыли пароль?",
|
||
"cancel": "Отмена",
|
||
"password_recovery": "Восстановление пароля",
|
||
"recover": "Восстановить",
|
||
"name": "Ваше Имя",
|
||
"enter_name": "Введите Ваше Имя",
|
||
"confirmation": "Подтверждение",
|
||
"to_your_phone": "На ваш номер",
|
||
"sms_send": "отправлено СМС с кодом подтверждения. Оно придёт в течение\n нескольких минут.",
|
||
"enter_sms": "Введите код из СМС",
|
||
"send_to_sms": "Получить код",
|
||
"sms": "Код из СМС",
|
||
"resend_sms": "Выслать код повторно",
|
||
"confirm": "Подтвердить",
|
||
"profile": "Профиль",
|
||
"logout": "Выйти"
|
||
},
|
||
"about": {
|
||
"title": "О нас"
|
||
},
|
||
"callback": {
|
||
"title": "Обратная связь"
|
||
},
|
||
"index": {
|
||
"slogans": {
|
||
"installment": "Рассрочка онлайн за 1 минуту",
|
||
"takeout": "Самовывоз через 15 минут",
|
||
"guarantee": "Гарантия низкой цены",
|
||
"bonus": "Бонусная программа Alistore",
|
||
"fast_and_soft": "Быстрая и бережная доставка"
|
||
},
|
||
"special_offer": "Спецпредложения",
|
||
"leader_of_sales": "Лидеры продаж",
|
||
"popular_prods": "Популярные товары",
|
||
"leader": "ХИТ",
|
||
"popular_categories": "Популярные категории",
|
||
"new_income": "Новинки",
|
||
"our_partners": "Бренды"
|
||
},
|
||
"categories": {
|
||
"title": "Разделы"
|
||
},
|
||
"news": {
|
||
"title": "Акции и новости",
|
||
"other_news": "Другие Новости"
|
||
},
|
||
"article": {
|
||
"title": "Статьи"
|
||
},
|
||
"sales": {
|
||
"title": "Акции"
|
||
},
|
||
"media": {
|
||
"title": "СМИ о нас"
|
||
},
|
||
"feedback": {
|
||
"title": "Форма обратной связи",
|
||
"message": "Ваш вопрос или сообщение",
|
||
"send": "Отправить"
|
||
},
|
||
"order": {
|
||
"success": {
|
||
"title": "Ваш заказ успешно зарегистрирован",
|
||
"text": "В ближайшее время с вами свяжется наш менеджер по работе с клиентом"
|
||
}
|
||
},
|
||
"profile": {
|
||
"title": "Личный кабинет",
|
||
"personal_data": "Персональные данные",
|
||
"first": "Имя*",
|
||
"last": "Фамилия",
|
||
"index": "Почтовый адрес",
|
||
"phone": "Телефон номер*",
|
||
"save": "Сохранить",
|
||
"change": "Сменить пароль",
|
||
"history": "История заказов",
|
||
"product_name": "Название товара",
|
||
"count": "Количество",
|
||
"price": "Цена за шт.",
|
||
"total": "Итого",
|
||
"delivery": "Доставка",
|
||
"totall": "Общая сумма",
|
||
"not_history": "Вы еще не совершали покупок!",
|
||
"comment": "Комментарий",
|
||
"payment_system": "Способ оплаты",
|
||
"price_delivery": "Сумма доставки",
|
||
"address": "Адрес доставки",
|
||
"date": "Дата заказа",
|
||
"status": "Статус",
|
||
"status_payed": "Статус оплаты",
|
||
"cash": "Наличними",
|
||
"processing": "В обработке",
|
||
"collected": "Собран",
|
||
"waiting_buyer": "Ожидает покупателя",
|
||
"in_way": "В пути",
|
||
"closed": "Закрыт",
|
||
"cancelled": "Отменен",
|
||
"replacement": "Замена",
|
||
"waiting": "Не оплачено",
|
||
"payed": "Оплачено",
|
||
"pay": "Оплатить",
|
||
"pay_help": "Оплатите следующей способами",
|
||
"number": "Заказ №"
|
||
},
|
||
"credit": {
|
||
"title": "Рассрочка",
|
||
"apelsin_text": "Оформление рассрочки доступно авторизированным пользователям платежной системы Apelsin или при наличии пластиковой карты KapitalBank.",
|
||
"btn": "Оформить рассрочку",
|
||
"month": "месяц",
|
||
"alif": {
|
||
"first_pay": "Первоначальная плата",
|
||
"min_pay": "Минимальная первоначальная оплата:",
|
||
"per_month": "Ежемесячный платеж",
|
||
"months": "Выберите количество месяцев",
|
||
"price": "Итоговая стоимость товара",
|
||
"phone": "Телефон",
|
||
"verify_code": "Код подтверждения"
|
||
},
|
||
"success": "«Ваша заявка принята. Для завершения оформления заявки необходимо перейти по ссылке <a href='https://online.alifshop.uz/'>https://online.alifshop.uz/</a>»"
|
||
},
|
||
"delivery": {
|
||
"title": "Доставка"
|
||
},
|
||
"payment": {
|
||
"title": "Оплата"
|
||
},
|
||
"val": []
|
||
},
|
||
"vue": {
|
||
"not_available": "Нет в наличии",
|
||
"xit": "ХИТ",
|
||
"notification": "Уведомить",
|
||
"cat_sales": "Акции и <br> скидки",
|
||
"sale": "скидка",
|
||
"stocks": {
|
||
"sales": "Акции",
|
||
"discount": "Скидки"
|
||
},
|
||
"login": {
|
||
"sms_empty": "СМС код не правильный попробуйте заново",
|
||
"auth_title": "Авторизация",
|
||
"next": "Продолжить",
|
||
"password": "Пароль",
|
||
"enter_password": "Введите пароль",
|
||
"re_password": "Повторите пароль",
|
||
"reg": "Зарегистрироваться",
|
||
"regg": "Регистрация",
|
||
"code": "Код",
|
||
"enter_code": "Введите код активации",
|
||
"confirm": "Подтвердить",
|
||
"pass_err": "Пароль неправильный",
|
||
"remember": "Запомнить пароль",
|
||
"restore": "Забыли пароль?",
|
||
"restore_pass": "Восстановить пароль",
|
||
"new_password": "Новый пароль",
|
||
"enter_new_password": "Введите новый пароль",
|
||
"new_re_password": "Повторите новый пароль",
|
||
"enter_new_re_password": "Введите повторите новый пароль",
|
||
"restore_confirm": "Восстановить",
|
||
"policy": "Я даю согласие на обработку моих персональных данных. <a href=\"/pages/polzovatelskoe-soglasenie\" target=\"_blank\" class=\"text-primary\">Соглашение</a>",
|
||
"confirmed": "Подтверждение пароля не совпадает.",
|
||
"min": "Пароль должен быть не менее 6 символов."
|
||
},
|
||
"change_password": {
|
||
"current": "Текущий пароль",
|
||
"enter_current": "Введите текущий пароль",
|
||
"save": "Сохранить",
|
||
"title": "Изменить пароль",
|
||
"validate": "Текущий пароля не совпадает."
|
||
},
|
||
"special": {
|
||
"more": "Узнать больше"
|
||
},
|
||
"buy_one": {
|
||
"title": "Купить в один клик",
|
||
"first_name": "Ваше имя*",
|
||
"phone": "Номер телефона*",
|
||
"phone_place": "+998 Введите номер телефона",
|
||
"email": "E-mail",
|
||
"comment": "Ваш вопрос или сообщение",
|
||
"send": "Отправить",
|
||
"thx": "Спасибо за заказ!",
|
||
"thx_text": "В самое ближайшее время наш менеджер свяжется с вами"
|
||
},
|
||
"noti": {
|
||
"title": "Форма оповещения о поступлении товара",
|
||
"text": "Данная форма предназначена для отправки СМС оповещения о поступлении данного товара в наличие.",
|
||
"alert": "Вам поступит оповещение, как только товар появится в наличии",
|
||
"ok": "OK"
|
||
},
|
||
"cart": {
|
||
"step_1": "1 этап",
|
||
"step_2": "2 этап",
|
||
"step_3": "3 этап",
|
||
"count_by": "Количество шт.",
|
||
"get_discount": "Получить скидку",
|
||
"get_promocode": "Как получить промокод?",
|
||
"another_promocode": "Ввести другой промокод",
|
||
"total_amount": "Общая сумма",
|
||
"saving": "Экономия",
|
||
"total_cost": "Итоговая стоимость",
|
||
"continue_shopping": "Продолжить покупки",
|
||
"reset_cart": "Сбросить корзину",
|
||
"checkout_product": "Оформить заказ",
|
||
"product_color_title": "Цвет",
|
||
"product_to_basket_title": "В корзине",
|
||
"buy_in_credit": "Купить в рассрочку",
|
||
"buy_in_click": "Купить в 1 клик",
|
||
"payment_title": "Оплата",
|
||
"characteristic": "Характеристики",
|
||
"reviews": "Отзывы",
|
||
"all_characteristic": "Общие характеристики гарнитур.",
|
||
"description": "Описание",
|
||
"no_reviews": "Нет отзывов о данном товаре.",
|
||
"only_comment_after_auth": "Оставлять комментарии могут только авторизованные пользователи",
|
||
"success_comment": "Комментария успешно отправлено на модерацию",
|
||
"write_review": "Написать отзыв",
|
||
"your_name": "Ваше имя",
|
||
"your_review": "Ваш отзыв",
|
||
"only_text": "Примечание:</span> HTML разметка не\n поддерживается! Используйте обычный текст.",
|
||
"product_rating": "Оценка",
|
||
"bad": "Плохо",
|
||
"good": "Хорошо",
|
||
"sending": "Отправить",
|
||
"credit": "Купить в рассрочку"
|
||
},
|
||
"cart_preview": {
|
||
"basket_title": "Корзина",
|
||
"basket_checkout": "Оформить"
|
||
},
|
||
"catalog": {
|
||
"catalog_title": "Категории",
|
||
"catalog_filter": "Фильтры",
|
||
"catalog_accept": "Принять",
|
||
"catalog_reset": "Сбросить",
|
||
"view_by": "Показать",
|
||
"view_byy": "Отопражать по",
|
||
"view_by_all": "Все",
|
||
"new": "По новизне",
|
||
"view_by_cheap": "Сначала дешевые",
|
||
"view_by_expensive": "Сначала дорогие"
|
||
},
|
||
"checkout": {
|
||
"first_name": "Имя",
|
||
"checkout_title": "Для того чтобы завершить покупку, пройдите процесс авторизации.",
|
||
"checkout_title2": "Авторизация",
|
||
"get_code": "Получить код",
|
||
"sign_in": "Войти",
|
||
"input_phone": "Введите номер телефона",
|
||
"input_sms_code": "Введите СМС код",
|
||
"delivery_title": "Доставка",
|
||
"delivery_pickup": "Самовывоз",
|
||
"delivery_courier": "Доставка курьером",
|
||
"delivery_about": "Информация о доставке",
|
||
"delivery_region": "Выберите регион доставки",
|
||
"delivery_city": "Выберите город или район",
|
||
"delivery_address": "Укажите адрес",
|
||
"delivery_additional_info": "Укажите дополнительный контакт",
|
||
"delivery_cemments": "Оставьте комментарий к заказу",
|
||
"delivery_total_cost": "Общая стоимость:",
|
||
"delivery_price": "Стоимость доставки",
|
||
"delivery_total_amount": "Итоговая стоимость заказа",
|
||
"delivery_about_price": "Информация о оплате",
|
||
"delivery_in_cash": "Наличными",
|
||
"delivery_type2_title": "Для того чтобы самомтоятельно забрать товар Вам надо явиться в пункт выдачи заказов.<br>\n Пукт выдачи заказа находится в городе Ташкент, улица Махтумкули 12.<br><br>\n Контактные телефоны пункта выдачи +998909657634<br>\n * Пункт выдачи заказов работает с 8.00 до 21.00 ужедневно.",
|
||
"no_ordered": "Невозможно заказать"
|
||
},
|
||
"favorite": {
|
||
"added_to_basket": "Добавлено в <b>корзину</b>"
|
||
},
|
||
"news": {
|
||
"news_read_more": "Подробнее",
|
||
"news_title": "Акции и новости",
|
||
"news_share": "Поделиться"
|
||
},
|
||
"feature": {
|
||
"feature_title_1": "Рассрочка онлайн за 1 минуту",
|
||
"feature_title_2": "Самовывоз через 15 минут",
|
||
"feature_title_3": "Гарантия низкой цены",
|
||
"feature_title_4": "Бонусная программа Alistore",
|
||
"feature_title_5": "Быстрая и бережная доставка"
|
||
},
|
||
"product": {
|
||
"in_credit": "Или купить в рассрочку",
|
||
"sum_m": "сум/месяц",
|
||
"ot_credit": "от"
|
||
}
|
||
},
|
||
"admin": {
|
||
"home": "Главная",
|
||
"edit": "Редактировать",
|
||
"delete": "Удалить",
|
||
"actions": "Действия",
|
||
"cancel": "Отменить",
|
||
"are_you_sure": "Вы действително хотите удалить",
|
||
"are_you_sure_block": "Вы действително хотите блокировать",
|
||
"are_you_sure_block_raz": "Вы действително хотите разблокировать",
|
||
"add": "Добавить",
|
||
"more": "Подробнее",
|
||
"save": "Сохранить",
|
||
"see": "Посмотреть",
|
||
"ye": "сум",
|
||
"info": "Информация",
|
||
"no_data": "Нет данных",
|
||
"no_publish": "Не опубликовано",
|
||
"back": "Назад",
|
||
"all_fields_with": "Все поля обозначенные * обязательные",
|
||
"preview": "Посмотреть",
|
||
"permissions": {
|
||
"view": "Может просматривать",
|
||
"print": "Может печатать",
|
||
"create": "Может добавлять",
|
||
"update": "Может редактировать",
|
||
"delete": "Может удалять",
|
||
"delivery": "Может редактировать доставку",
|
||
"status": "Может редактировать статус {status}",
|
||
"filter": "Дать доступ фильтру "
|
||
},
|
||
"settings": {
|
||
"title": "Настройки",
|
||
"name": "Названия сайта",
|
||
"phone": "Телефон",
|
||
"phone_other": "Телефон другой",
|
||
"email": "Эмаил",
|
||
"address": "Адрес",
|
||
"telegram": "Телеграм",
|
||
"facebook": "Facebook",
|
||
"instagram": "Instagram",
|
||
"keywords": "Ключевое словы",
|
||
"description": "Описание сайта",
|
||
"landmark": "Ориентер",
|
||
"day_delivery": "Время доставки",
|
||
"price_delivery": "Стоимость доставки"
|
||
},
|
||
"delivery": {
|
||
"title": "Доставка"
|
||
},
|
||
"categories": {
|
||
"title": "Категории",
|
||
"name": "Название",
|
||
"image": "Только файлы типа: jpg, jpeg, png",
|
||
"position": "Позиция",
|
||
"choose_brand": "Выберите бренд(ы)",
|
||
"add_cat": "Прикрепить к категории",
|
||
"remove_cat": "Открепить от категории",
|
||
"sub_category": "Главная категория",
|
||
"choose_cat": "Выберите категорию",
|
||
"char": {
|
||
"name": "Название поля",
|
||
"type": "Тип поля"
|
||
}
|
||
},
|
||
"colors": {
|
||
"title": "Цвета",
|
||
"name": "Название",
|
||
"color": "Цвет"
|
||
},
|
||
"users": {
|
||
"title": "Пользователи",
|
||
"fio": "Ф.И.О",
|
||
"username": "Логин",
|
||
"phone": "Телефон",
|
||
"ip": "IP",
|
||
"first_name": "Имя",
|
||
"last_name": "Фамилия",
|
||
"role": "Роль",
|
||
"date_reg": "Дата регистрации",
|
||
"date_online": "Дата последнего посещения"
|
||
},
|
||
"staffs": {
|
||
"title": "Стаф",
|
||
"password": "Пароль"
|
||
},
|
||
"products": {
|
||
"title": "Продукты",
|
||
"name": "Названия",
|
||
"body": "Описания",
|
||
"image": "Изобрежения",
|
||
"category": "Категории",
|
||
"price": "Цена",
|
||
"price_discount": "Цена со скидкой",
|
||
"screens": "Скриншоты",
|
||
"publish": "Опубликовать",
|
||
"search": "ID или Названия",
|
||
"brands": "Бренды",
|
||
"brand": "Бренд",
|
||
"characteristics": "Характеристики",
|
||
"delete_mass": "Удалить массово",
|
||
"status-active": "Активировать",
|
||
"deactivate": "Деактивировать"
|
||
},
|
||
"compilations": {
|
||
"title": "Подборки"
|
||
},
|
||
"orders": {
|
||
"title": "Заказы",
|
||
"user": "Пользователь",
|
||
"city": "Город",
|
||
"address": "Адрес",
|
||
"status": "Статус",
|
||
"delivery_type": "Тип доставки",
|
||
"payment_system": "Тип оплаты",
|
||
"transaction": "Трансакция",
|
||
"date": "Дата",
|
||
"order": "Заказ",
|
||
"order_number": "Номер заказа №{number}",
|
||
"client": "Клиент",
|
||
"floor": "Этаж",
|
||
"entrance": "Подъезд",
|
||
"house": "Дом",
|
||
"first_name": "Имя",
|
||
"last_name": "Фамилия",
|
||
"phone": "Телефон",
|
||
"product": "Товары",
|
||
"count": "Кол-во",
|
||
"size": "Размер",
|
||
"price": "Цена",
|
||
"total": "Итого",
|
||
"color": "Цвет",
|
||
"article_number": "Артикул",
|
||
"delivery": "Доставка",
|
||
"branch": "Филиал",
|
||
"shipment_date": "Дата самовывоза",
|
||
"comment": "Комментария"
|
||
},
|
||
"billing": {
|
||
"title": "История оплаты",
|
||
"user": "Пользователь",
|
||
"amount": "Сумма",
|
||
"order_id": "Заказ",
|
||
"status": "Статус",
|
||
"payed": "Оплачено",
|
||
"waiting": "В ожидании",
|
||
"refused": "Отказано",
|
||
"date": "Дата"
|
||
},
|
||
"logs": {
|
||
"title": "Логи",
|
||
"user": "Пользователь",
|
||
"action": "Действия",
|
||
"section": "Раздел"
|
||
},
|
||
"posts": {
|
||
"title": "Посты",
|
||
"image": "Картинка",
|
||
"name": "Название",
|
||
"views": "Просмотры",
|
||
"language": "Язык",
|
||
"top": "Закрепить",
|
||
"content": "Текст",
|
||
"type": {
|
||
"title": "Тип поста",
|
||
"news": "Раздел \"Новости\"",
|
||
"article": "Раздел \"Статьи\"",
|
||
"sales": "Раздел \"Акции\"",
|
||
"media": "Раздел \"СМИ о нас\""
|
||
}
|
||
},
|
||
"brands": {
|
||
"title": "Бренды",
|
||
"image": "Изображения",
|
||
"name": "Названия"
|
||
},
|
||
"partners": {
|
||
"title": "Партнёры",
|
||
"image": "Изображения",
|
||
"name": "Название"
|
||
},
|
||
"files": {
|
||
"title": "Файлы",
|
||
"size": "Размер",
|
||
"path": "Путь к файлу"
|
||
},
|
||
"branches": {
|
||
"title": "Филиалы",
|
||
"name": "Название",
|
||
"phone": "Номер",
|
||
"address": "Адрес",
|
||
"schedule": "Рабочии часы филиалов",
|
||
"map": "Ссылка на карту",
|
||
"orientation": "Ориентер"
|
||
},
|
||
"slider": {
|
||
"title": "Баннеры",
|
||
"name": "Название",
|
||
"discount": "Скидка",
|
||
"link": "Ссылка",
|
||
"image": "Изображения",
|
||
"position": "Позиция",
|
||
"type": "Тип",
|
||
"lang": "Язык",
|
||
"placement": {
|
||
"title": "Местоположение",
|
||
"choose": "Выберите местоположение",
|
||
"top": "Верхний баннер",
|
||
"middle": "Нижний баннер"
|
||
}
|
||
},
|
||
"specialOffers": {
|
||
"title": "Спецпредложения",
|
||
"name": "Название",
|
||
"link": "Ссылка",
|
||
"image": "Изображения",
|
||
"description": "Описание"
|
||
},
|
||
"address": {
|
||
"title": "Адресы"
|
||
},
|
||
"roles": {
|
||
"title": "Роли",
|
||
"name": "Название",
|
||
"1": "Администратор",
|
||
"2": "Пользователь",
|
||
"3": "Редактор"
|
||
},
|
||
"messages": {
|
||
"updated": "Успешно отредактировано",
|
||
"created": "Успешно создано",
|
||
"deleted": "Успешно удалено",
|
||
"uploaded": "Файл успешно загружено",
|
||
"published": "Опубликовано",
|
||
"success": "Действие успешно выполнено"
|
||
},
|
||
"pages": {
|
||
"title": "Страницы",
|
||
"name": "Название",
|
||
"description": "Описание"
|
||
},
|
||
"feedback": {
|
||
"title": "Обратная связь",
|
||
"name": "Имя",
|
||
"phone": "Номер",
|
||
"created_at": "Дата заявки",
|
||
"status": "Статус",
|
||
"viewed": "Просмотрено",
|
||
"not_viewed": "Не просмотрено",
|
||
"message": "Сообщение"
|
||
},
|
||
"comments": {
|
||
"title": "Комментарии",
|
||
"full_name": "Полное имя",
|
||
"star": "Оценки",
|
||
"star0": "Плохо",
|
||
"star1": "Неплохо",
|
||
"star2": "Нормально",
|
||
"star3": "Хорошо",
|
||
"status": "Статус",
|
||
"published": "Опубликовано",
|
||
"not_published": "Не опубликовано",
|
||
"publish": "Опубликовать"
|
||
},
|
||
"regions": {
|
||
"title": "Регионы",
|
||
"name": "Регион"
|
||
},
|
||
"cities": {
|
||
"title": "Города",
|
||
"name": "Город",
|
||
"choose_region": "Выберите регион"
|
||
},
|
||
"currency": {
|
||
"title": "Курс валют",
|
||
"dollar": "Доллар",
|
||
"euro": "Евро",
|
||
"created_at": "Создано"
|
||
},
|
||
"notification_available": {
|
||
"title": "Оповещения о наличии"
|
||
}
|
||
}
|
||
},
|
||
"uz": {
|
||
"app": {
|
||
"main": "Bosh sahifa",
|
||
"in_bag": "Savatda",
|
||
"more": "Batafsil",
|
||
"share": "Bo'lishish",
|
||
"no_product": "Tovarlar yo'q",
|
||
"sum_sht": "so'm/dona",
|
||
"sum": "so'm",
|
||
"to_cart": "Savatda",
|
||
"compare": "Taqqoslash",
|
||
"delete": "O'chirish",
|
||
"price": "Narxi",
|
||
"discount": "Chegirma",
|
||
"buy": "Xarid qilish ",
|
||
"all": "Barchasi",
|
||
"go_home": "Bosh sahifaga qayish",
|
||
"404": "Sahifa topilmadi",
|
||
"close": "Yopish",
|
||
"exist": "Bor",
|
||
"no": "Yo'q",
|
||
"back": "Ortga",
|
||
"no_category_product": "Ushbu toifada tovarlar yo'q",
|
||
"search_result": "Sizning {text} so'rovingiz bo'yich hech narsa topilmadi. Qidiruv uchun boshqa kalit so'zlarni kiritishga urinib ko'ring",
|
||
"pay_in": "yordamida to'lang",
|
||
"errors": {
|
||
"1": "Noto'g'ri SMS kod",
|
||
"2": "Foydalanuvchi ro'yxatdan o'tgan",
|
||
"3": "Mahsulot mavjud emas",
|
||
"100": "Hech qanday ma'lumotlar",
|
||
"401": "Autentifikatsiyalanuvchi.",
|
||
"count": "Omborda qolmadi"
|
||
},
|
||
"product": {
|
||
"article_number": "Artikul",
|
||
"in_cart": "Savatda",
|
||
"delivery_home": "Uygacha yetkazib berish",
|
||
"delivery_home_text": "ertaga va keyinroq, bepul",
|
||
"pickup": "Do'kondan olish",
|
||
"pickup_text": "bugun, bepul"
|
||
},
|
||
"navbar-categories": {
|
||
"sales": "Aksiya va <br> chegirmalar"
|
||
},
|
||
"favorites": {
|
||
"title": "Tanlangan tovarlar",
|
||
"in_favorite": "Tanlanganlar"
|
||
},
|
||
"search": {
|
||
"title": "Qidiruv",
|
||
"search": "Sayt bo'yicha qidirish",
|
||
"search_by": "Sayt bo'yicha qidirish"
|
||
},
|
||
"cart": {
|
||
"title": "Savat"
|
||
},
|
||
"layout": {
|
||
"compare": "Taqqoslash",
|
||
"register": "Ro'yxatdan o'tish",
|
||
"login": "Kirish",
|
||
"information": "Ma'lumot",
|
||
"terms_of_use": "Foydalanuvchi kelishuvi",
|
||
"rules_of_delivery": "Yetkazib berish qoidalari",
|
||
"rights": "Barcha huquqlar himoyalangan",
|
||
"developed": "Ishlab chiqilgan va dizayn"
|
||
},
|
||
"auth": {
|
||
"title": "Avtorizatsiya",
|
||
"phone": "Telefon raqami",
|
||
"enter_phone": "+998 telefon raqamingizni kiriting",
|
||
"enter_password": "Parolingizni kiriting",
|
||
"password": "Parol",
|
||
"forgot_password": "Parolni unutdingizmi?",
|
||
"cancel": "Bekor qilish",
|
||
"password_recovery": "Parolni qayta tiklash",
|
||
"recover": "Qayta tiklash",
|
||
"name": "Ismingiz",
|
||
"enter_name": "Ismingizni kiriting",
|
||
"confirmation": "Tasdiqlash",
|
||
"to_your_phone": "Telefon raqamingizga",
|
||
"sms_send": "tasdiqlash kodi bilan SMS yuborildi. U bir necha daqiqa ichida keladi.",
|
||
"enter_sms": "SMS da kelgan kodni kiriting",
|
||
"send_to_sms": "Kod olish",
|
||
"sms": "SMS da kelgan kod",
|
||
"resend_sms": "Kodni takroran yuborish",
|
||
"confirm": "Tasdiqlash",
|
||
"profile": "Profil",
|
||
"logout": "Chiqish"
|
||
},
|
||
"about": {
|
||
"title": "Biz haqimizda"
|
||
},
|
||
"callback": {
|
||
"title": "Qayta aloqa"
|
||
},
|
||
"index": {
|
||
"slogans": {
|
||
"installment": "1 daqiqada online muddatli to'lov",
|
||
"takeout": "15 daqiqadan so'ng olib ketish",
|
||
"guarantee": "Arzon narx kafolati",
|
||
"bonus": "Alistore bonus dasturi",
|
||
"fast_and_soft": "Tez va ehtiyotkorlik bilan yetkazib berish"
|
||
},
|
||
"special_offer": "Maxsus taklif",
|
||
"leader_of_sales": "Savdo yetakchilari",
|
||
"popular_prods": "Ommabop mahsulotlar",
|
||
"leader": "XIT",
|
||
"popular_categories": "Ommabop toifalar",
|
||
"new_income": "Yangi mahsulotlar",
|
||
"our_partners": "Brendlar"
|
||
},
|
||
"categories": {
|
||
"title": "Bo'limlar"
|
||
},
|
||
"news": {
|
||
"title": "Aksiya va yangiliklar",
|
||
"other_news": "Boshqa Yangiliklar"
|
||
},
|
||
"article": {
|
||
"title": "Maqolalar"
|
||
},
|
||
"sales": {
|
||
"title": "Aksiyalar"
|
||
},
|
||
"media": {
|
||
"title": "OAV biz haqimizda"
|
||
},
|
||
"feedback": {
|
||
"title": "Qayta aloqa shakli",
|
||
"message": "Sizning savolingiz yoki xabaringiz",
|
||
"send": "Yuborish"
|
||
},
|
||
"order": {
|
||
"success": {
|
||
"title": "Sizning buyurtmangiz muvaffaqiyatli ro'yxatdan o'tkazildi",
|
||
"text": "Yaqin vaqt ichida mijozlar bilan ishlovchi menedjerimiz siz bilan aloqaga chiqadi"
|
||
}
|
||
},
|
||
"profile": {
|
||
"title": "Shaxsiy kabinet",
|
||
"personal_data": "Shaxsiy ma'lumotlar",
|
||
"first": "Ism*",
|
||
"last": "Familiya",
|
||
"index": "Pochta manzili",
|
||
"phone": "Telefon raqami*",
|
||
"save": "Saqlash",
|
||
"change": "Parolni o'zgartirish",
|
||
"history": "Buyurtmalar tarixi",
|
||
"product_name": "Tovarning nomi",
|
||
"count": "Soni",
|
||
"price": "Narxi (dona)",
|
||
"total": "Jami",
|
||
"delivery": "Yetkazib berish",
|
||
"totall": "Umumiy summa",
|
||
"not_history": "Siz hali xaridlarni amalga oshirmadingiz!",
|
||
"comment": "Izoh",
|
||
"payment_system": "To'lov usuli",
|
||
"price_delivery": "Yetkazib berish narxi",
|
||
"address": "Yetkazib berish manzili",
|
||
"date": "Buyurtma sanasi",
|
||
"status": "Holati",
|
||
"status_payed": "To'lov holati",
|
||
"cash": "Naqd",
|
||
"processing": "Ishlanmoqda",
|
||
"collected": "To'plandi",
|
||
"waiting_buyer": "Xaridorni kutmoqda",
|
||
"in_way": "Yo'lda",
|
||
"closed": "Yopilgan",
|
||
"cancelled": "Bekor qilingan",
|
||
"replacement": "Almashtirilgan",
|
||
"waiting": "To'lanmagan",
|
||
"payed": "To'langan",
|
||
"pay": "To'lash",
|
||
"pay_help": "Quyidagi usullarda to'lang",
|
||
"number": "Buyurtma raqami"
|
||
},
|
||
"credit": {
|
||
"title": "Bo`lib to`lash",
|
||
"apelsin_text": "To'lovni to'lash Apelsin to'lov tizimining vakolatli foydalanuvchilari yoki sizda KapitalBank plastik kartasi mavjud bo'lganda amalga oshiriladi.",
|
||
"btn": "Muddatil tolovga olish",
|
||
"month": "oy",
|
||
"alif": {
|
||
"first_pay": "Boshlangich tolov",
|
||
"min_pay": "Minimal boshlangich tolov:",
|
||
"per_month": "Oylik tolov",
|
||
"months": "Bo‘lib to‘lash muddati",
|
||
"price": "Umumiy summa",
|
||
"phone": "Telefon",
|
||
"verify_code": "Tasdiqlash kodi"
|
||
},
|
||
"success": "«Sizning arizangiz qabul qilindi. Arizani to'ldirish uchun siz havolani bosib o'tishingiz kerak <a href='https://online.alifshop.uz/'>https://online.alifshop.uz/</a>»"
|
||
},
|
||
"delivery": {
|
||
"title": "Yetkazib berish"
|
||
},
|
||
"payment": {
|
||
"title": "To'lov"
|
||
}
|
||
},
|
||
"vue": {
|
||
"not_available": "Omborda mavjud emas",
|
||
"xit": "XIT",
|
||
"notification": "Xabar berish",
|
||
"cat_sales": "Aksiya va <br> chegirmalar",
|
||
"sale": "chegirma",
|
||
"stocks": {
|
||
"sales": "Aksiyalar",
|
||
"discount": "Chegirmalar"
|
||
},
|
||
"login": {
|
||
"sms_empty": "SMS kod noto'g'ri, qaytadan urinib ko'ring",
|
||
"auth_title": "Avtorizatsiya",
|
||
"next": "Davom etish",
|
||
"password": "Parol",
|
||
"re_password": "Parolni qayta kiriting",
|
||
"reg": "Ro'yxatdan o'tish",
|
||
"regg": "Ro'yxatdan o'tish",
|
||
"code": "Kod",
|
||
"enter_code": "Faollashtirish kodini kiriting",
|
||
"confirm": "Tasdiqlash",
|
||
"pass_err": "Parol noto'g'ri",
|
||
"remember": "Parolni eslab qolish",
|
||
"restore": "Parol yodingizdan chiqdimi?",
|
||
"restore_pass": "Parolni qayta tiklash",
|
||
"new_password": "Yangi parol",
|
||
"enter_new_password": "Yangi parolni kiriting",
|
||
"new_re_password": "Yangi parolni qayta kiriting",
|
||
"enter_new_re_password": "Yangi parolni qayta kiriting",
|
||
"restore_confirm": "Qayta tiklash",
|
||
"policy": "Shaxsiy ma'lumotlarim qayta ishlanishiga rozilik beraman. <a href=\"/pages/polzovatelskoe-soglasenie\" target=\"_blank\" class=\"text-primary\">Kelishuv</a>",
|
||
"confirmed": "Qayta kiritilgan parol mos emas.",
|
||
"min": "Parol kamida 6 ta belgidan iborat bo'lishi lozim."
|
||
},
|
||
"change_password": {
|
||
"current": "Hozirgi parol",
|
||
"enter_current": "Hozirgi parolni kiriting",
|
||
"save": "Saqlash",
|
||
"title": "Parolni o`zgartirish",
|
||
"validate": "Hozirgi parol kiritganizngiz bilan to`g`ri kelmaydi"
|
||
},
|
||
"special": {
|
||
"more": "Ko'proq bilib olish"
|
||
},
|
||
"buy_one": {
|
||
"title": "Bir harakat bilan xarid qilish",
|
||
"first_name": "Ismingiz*",
|
||
"phone": "Telefon raqamingiz*",
|
||
"phone_place": "+998 telefon raqamingizni kiriting",
|
||
"email": "E-mail",
|
||
"comment": "Sizning savolingiz yoki xabaringiz",
|
||
"send": "Yuborish",
|
||
"thx": "Buyurtma uchun rahmat!",
|
||
"thx_text": "Yaqin orada menedjerimiz siz bilan aloqaga chiqadi"
|
||
},
|
||
"noti": {
|
||
"title": "Tovar kelganligi haqida xabar shakli",
|
||
"text": "Ushbu shakl tovarning kelganligi haqida SMS xabar yuborish uchun mo'ljallangan.",
|
||
"alert": "Tovar kelishi bilan sizga xabar yuboriladi",
|
||
"ok": "OK"
|
||
},
|
||
"cart": {
|
||
"step_1": "1-bosqich",
|
||
"step_2": "2 bosqich",
|
||
"step_3": "3 bosqich",
|
||
"count_by": "Soni (dona)",
|
||
"get_discount": "Chegirmaga ega bo'ling",
|
||
"get_promocode": "Promokodni qanday olish mumkin?",
|
||
"another_promocode": "Boshqa promokod kiritish",
|
||
"total_amount": "Umumiy summa",
|
||
"saving": "Tejamkorlik",
|
||
"total_cost": "Yakuniy narxi",
|
||
"continue_shopping": "Xaridni davom ettirish",
|
||
"reset_cart": "Savatni tozalash",
|
||
"checkout_product": "Buyurtmani rasmiylashtirish",
|
||
"product_color_title": "Rangi",
|
||
"product_to_basket_title": "Savatda",
|
||
"buy_in_credit": "Muddatli to‘lovga olish",
|
||
"buy_in_click": "Bir harakat bilan xarid qilish",
|
||
"payment_title": "To'lov",
|
||
"characteristic": "Xususiyatlari",
|
||
"reviews": "Izohlar",
|
||
"all_characteristic": "Garnituraning umumiy xususiyatlari.",
|
||
"description": "Ta'rifi",
|
||
"no_reviews": "Ushbu tovar haqida izohlar yo'q.",
|
||
"only_comment_after_auth": "Faqat avtorizatsiyadan o'tgan foydalanuvchilar izoh qoldira oladi",
|
||
"success_comment": "Izoh muvaffaqiyatli tarzda moderatsiyaga yuborildi",
|
||
"write_review": "Izoh yozish",
|
||
"your_name": "Ismingiz",
|
||
"your_review": "Izohingiz",
|
||
"only_text": "Eslatma:</span> HTML kod qo'llab-quvvatlanmaydi! Oddiy matndan foydalaning.",
|
||
"product_rating": "Baho berish",
|
||
"bad": "Yomon",
|
||
"good": "Yaxshi",
|
||
"sending": "Yuborish",
|
||
"credit": "Muddatli to‘lovga olish"
|
||
},
|
||
"cart_preview": {
|
||
"basket_title": "Savat",
|
||
"basket_checkout": "Rasmiylashtirish"
|
||
},
|
||
"catalog": {
|
||
"catalog_title": "Toifalar",
|
||
"catalog_filter": "Filtrlar",
|
||
"catalog_accept": "Qabul qilish",
|
||
"catalog_reset": "Tozalash",
|
||
"view_by": "Ko'rsatish",
|
||
"view_byy": "Bo'yicha ko'rsatish",
|
||
"view_by_all": "Barchasi",
|
||
"new": "Yangiligi bo'yicha",
|
||
"view_by_cheap": "Oldin arzonlari",
|
||
"view_by_expensive": "Oldin qimmatlari"
|
||
},
|
||
"checkout": {
|
||
"first_name": "Ism",
|
||
"checkout_title": "Xaridni yakunlash uchun avtorizatsiya jarayonidan o'ting.",
|
||
"checkout_title2": "Avtorizatsiya",
|
||
"get_code": "Kod olish",
|
||
"sign_in": "Kirish",
|
||
"input_phone": "Telefon raqamini kiriting",
|
||
"input_sms_code": "SMS da kelgan kodni kiriting",
|
||
"delivery_title": "Yetkazib berish",
|
||
"delivery_pickup": "Olib ketish",
|
||
"delivery_courier": "Kuryer orqali yetkazib berish",
|
||
"delivery_about": "Yetkazib berish to'g'risida ma'lumot",
|
||
"delivery_region": "Yetkazib beriladigan tumanni tanlang",
|
||
"delivery_city": "Shahar yoki tumanni tanlang",
|
||
"delivery_address": "Manzilni ko'rsating",
|
||
"delivery_additional_info": "Qo'shimcha raqam ko'rsating",
|
||
"delivery_cemments": "Buyurtmaga izoh qoldiring",
|
||
"delivery_total_cost": "Umumiy narxi:",
|
||
"delivery_price": "Yetkazib berish narxi",
|
||
"delivery_total_amount": "Buyurtmaning umumiy qiymati",
|
||
"delivery_about_price": "To'lov haqida ma'lumot",
|
||
"delivery_in_cash": "Naqd",
|
||
"delivery_type2_title": "Tovarni o'zingi olib ketishingiz uchun buyurtmalarni tarqatish punktiga kelishingiz lozim.<br>\n Buyurtmani tarqatish punkti Toshkent shahri, Maxtumquli ko'chasi 12 da joylashgan.<br><br>\n Tarqatish punktining telefon raqami +998909657634<br>\n * Buyurtmalarni tarqatish punkti har kuni 8.00 dan 21.00 gacha ishlaydi.",
|
||
"no_ordered": "Buyurtma qilishning iloji yo'q"
|
||
},
|
||
"favorite": {
|
||
"added_to_basket": "<b>Savatga</b> qo'shildi"
|
||
},
|
||
"news": {
|
||
"news_read_more": "Batafsil",
|
||
"news_title": "Aksiya va yangiliklar",
|
||
"news_share": "Bo'lishish"
|
||
},
|
||
"feature": {
|
||
"feature_title_1": "1 daqiqa ichida online muddatli to'lov",
|
||
"feature_title_2": "15 daqiqadan keyin olib ketish",
|
||
"feature_title_3": "Arzon narx kafolati",
|
||
"feature_title_4": "Alistore bonus dasturi",
|
||
"feature_title_5": "Tez va ehtiyotkorlik bilan yetkazib berish"
|
||
},
|
||
"product": {
|
||
"in_credit": "Yoki muddatli to‘lovga olish ",
|
||
"sum_m": "dan so'm/oy",
|
||
"ot_credit": ""
|
||
}
|
||
}
|
||
}
|
||
}
|