localization problems not fixed
This commit is contained in:
parent
c6a26f08d5
commit
ef3a76500d
|
|
@ -84,6 +84,6 @@ if(!function_exists('zanitlananlar')){
|
||||||
->transform(function ($item,$key){
|
->transform(function ($item,$key){
|
||||||
return [$item =>'booked'];
|
return [$item =>'booked'];
|
||||||
});
|
});
|
||||||
return $booked->union($reserved)->toJson();
|
return $booked->merge($reserved)->toJson();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -18,11 +18,11 @@ use App\Models\Category;
|
||||||
use App\Models\Event;
|
use App\Models\Event;
|
||||||
use App\Models\Slider;
|
use App\Models\Slider;
|
||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
|
use App;
|
||||||
|
|
||||||
class PublicController extends Controller
|
class PublicController extends Controller
|
||||||
{
|
{
|
||||||
public function showHomePage(){
|
public function showHomePage(){
|
||||||
|
|
||||||
$cinema = Category::where('view_type','cinema')
|
$cinema = Category::where('view_type','cinema')
|
||||||
->categoryLiveEvents(21)
|
->categoryLiveEvents(21)
|
||||||
->first();
|
->first();
|
||||||
|
|
@ -140,4 +140,11 @@ class PublicController extends Controller
|
||||||
'message' => 'Subscription successfully',
|
'message' => 'Subscription successfully',
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//locale
|
||||||
|
public function setLocale($locale){
|
||||||
|
App::setLocale($locale);
|
||||||
|
|
||||||
|
return redirect()->back();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Route::group(
|
Route::group(
|
||||||
[
|
[
|
||||||
'prefix' => LaravelLocalization::setLocale(),
|
'prefix' => LaravelLocalization::setLocale(),
|
||||||
|
|
@ -20,6 +22,11 @@ Route::group(
|
||||||
'uses' => 'InstallerController@showInstaller',
|
'uses' => 'InstallerController@showInstaller',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
Route::get('/setLocale/{locale}',[
|
||||||
|
'as' => 'setLocale',
|
||||||
|
'uses' => 'PublicController@setLocale',
|
||||||
|
]);
|
||||||
|
|
||||||
Route::post('install', [
|
Route::post('install', [
|
||||||
'as' => 'postInstaller',
|
'as' => 'postInstaller',
|
||||||
'uses' => 'InstallerController@postInstaller',
|
'uses' => 'InstallerController@postInstaller',
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,8 @@ return [
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'locale' => 'tk',
|
'locale' => 'ru',
|
||||||
|
'locales' => ['tk', 'en', 'ru'],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@ return [
|
||||||
//'en-AU' => ['name' => 'Australian English', 'script' => 'Latn', 'native' => 'Australian English', 'regional' => 'en_AU'],
|
//'en-AU' => ['name' => 'Australian English', 'script' => 'Latn', 'native' => 'Australian English', 'regional' => 'en_AU'],
|
||||||
//'en-GB' => ['name' => 'British English', 'script' => 'Latn', 'native' => 'British English', 'regional' => 'en_GB'],
|
//'en-GB' => ['name' => 'British English', 'script' => 'Latn', 'native' => 'British English', 'regional' => 'en_GB'],
|
||||||
//'en-US' => ['name' => 'U.S. English', 'script' => 'Latn', 'native' => 'U.S. English', 'regional' => 'en_US'],
|
//'en-US' => ['name' => 'U.S. English', 'script' => 'Latn', 'native' => 'U.S. English', 'regional' => 'en_US'],
|
||||||
'es' => ['name' => 'Spanish', 'script' => 'Latn', 'native' => 'español', 'regional' => 'es_ES'],
|
//'es' => ['name' => 'Spanish', 'script' => 'Latn', 'native' => 'español', 'regional' => 'es_ES'],
|
||||||
//'eo' => ['name' => 'Esperanto', 'script' => 'Latn', 'native' => 'esperanto', 'regional' => ''],
|
//'eo' => ['name' => 'Esperanto', 'script' => 'Latn', 'native' => 'esperanto', 'regional' => ''],
|
||||||
//'eu' => ['name' => 'Basque', 'script' => 'Latn', 'native' => 'euskara', 'regional' => 'eu_ES'],
|
//'eu' => ['name' => 'Basque', 'script' => 'Latn', 'native' => 'euskara', 'regional' => 'eu_ES'],
|
||||||
//'ewo' => ['name' => 'Ewondo', 'script' => 'Latn', 'native' => 'ewondo', 'regional' => ''],
|
//'ewo' => ['name' => 'Ewondo', 'script' => 'Latn', 'native' => 'ewondo', 'regional' => ''],
|
||||||
|
|
@ -307,11 +307,11 @@ return [
|
||||||
// IMPORTANT - When hideDefaultLocaleInURL is set to true, the unlocalized root is treated as the applications default locale "app.locale".
|
// IMPORTANT - When hideDefaultLocaleInURL is set to true, the unlocalized root is treated as the applications default locale "app.locale".
|
||||||
// Because of this language negotiation using the Accept-Language header will NEVER occur when hideDefaultLocaleInURL is true.
|
// Because of this language negotiation using the Accept-Language header will NEVER occur when hideDefaultLocaleInURL is true.
|
||||||
//
|
//
|
||||||
'hideDefaultLocaleInURL' => true,
|
'hideDefaultLocaleInURL' => false,
|
||||||
|
|
||||||
// If you want to display the locales in particular order in the language selector you should write the order here.
|
// If you want to display the locales in particular order in the language selector you should write the order here.
|
||||||
//CAUTION: Please consider using the appropriate locale code otherwise it will not work
|
//CAUTION: Please consider using the appropriate locale code otherwise it will not work
|
||||||
//Example: 'localesOrder' => ['es','en'],
|
//Example: 'localesOrder' => ['es','en'],
|
||||||
'localesOrder' => [ "ru", "tk","en","es"],
|
'localesOrder' => [ "ru", "tk","en"],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,45 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
//cinema.blade.php + concert.blade.php + CinemaItem.blade.php + EventItem.blade.php
|
||||||
|
'share' => 'Share',
|
||||||
|
'buy_ticket' => 'Buy a ticket',
|
||||||
|
'views' => 'Views',
|
||||||
|
'prices_from' => 'Prices from',
|
||||||
|
'starting' => 'In cinema starting from',
|
||||||
|
|
||||||
|
//subCategoryList.blade.php
|
||||||
|
'date' => 'Date',
|
||||||
|
|
||||||
|
//FilterMenu.blade.php
|
||||||
|
'select' => 'Select date',
|
||||||
|
'popular' => 'Popular',
|
||||||
|
'new' => 'New',
|
||||||
|
'filter' => 'Filter',
|
||||||
|
'today' => 'Today',
|
||||||
|
'tomorrow' => 'Tomorrow',
|
||||||
|
'week' => 'This week',
|
||||||
|
'month' => 'This month',
|
||||||
|
|
||||||
|
//HomeCinema.blade.php
|
||||||
|
'view' => 'View all',
|
||||||
|
|
||||||
|
//ItemList.blade.php
|
||||||
|
'home' => 'Home',
|
||||||
|
'for_cinema' => 'Tickets for cinema',
|
||||||
|
'composers' => 'Performers',
|
||||||
|
'events' => 'Events',
|
||||||
|
'concerts' => 'Concerts',
|
||||||
|
'alternatives' => 'Alternatives',
|
||||||
|
'bards' => 'Bards',
|
||||||
|
'jazz' => 'Jazz & Blues',
|
||||||
|
'others' => 'Others',
|
||||||
|
'movies' => 'Movies',
|
||||||
|
'classic' => 'Classical music',
|
||||||
|
'music' => 'Musical performance',
|
||||||
|
'musical' => 'Musical',
|
||||||
|
'ballet' => 'Opera & Ballet',
|
||||||
|
'operetta' => 'Operetta',
|
||||||
|
|
||||||
|
];
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
'title' => 'Коды доступа',
|
||||||
|
'success_message' => 'Успешно создан код доступа',
|
||||||
|
'delete_message' => 'Успешно удален код доступа',
|
||||||
|
'cannot_delete_used_code' => 'Невозможно удалить использованный код',
|
||||||
|
'access_codes_code' => 'Код скидки',
|
||||||
|
'access_codes_created_at' => 'Создано в',
|
||||||
|
'no_access_codes_yet' => 'Коды доступа еще нет!',
|
||||||
|
'create_access_code' => 'Создать код доступа',
|
||||||
|
'access_code_title' => 'Код доступа',
|
||||||
|
'access_code_title_placeholder' => 'ex: КОНФЕРЕНЦИЯ2019',
|
||||||
|
'valid_code_required' => 'Требуется действительный код доступа',
|
||||||
|
'no_tickets_matched' => 'Нет билетов, соответствующих вашему коду доступа',
|
||||||
|
'select_access_code' => 'Выберите коды доступа',
|
||||||
|
'access_codes_usage_count' => 'Счетчик использования',
|
||||||
|
'unique_error' => 'Код, уже использованный для этого события',
|
||||||
|
];
|
||||||
|
|
@ -0,0 +1,16 @@
|
||||||
|
<?php
|
||||||
|
/*************************************************************************
|
||||||
|
Generated via "php artisan localization:missing" at 2018/04/19 17:14:11
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
return array (
|
||||||
|
//============================== New strings to translate ==============================//
|
||||||
|
'affiliate_name' => 'Имя партнера',
|
||||||
|
'affiliate_tracking' => 'Отслеживание Партнеров',
|
||||||
|
'affiliate_tracking_text' => 'Отслеживать, кто генерирует продажи для вашего мероприятия, очень легко. Просто создайте реферальную ссылку, используя поле ниже, и поделитесь ссылкой с вашими партнерами / организаторами мероприятий.',
|
||||||
|
'last_referral' => 'Последнее направление',
|
||||||
|
'no_affiliate_referrals_yet' => 'Партнерских рефералов пока нет',
|
||||||
|
'sales_volume_generated' => 'Объем продаж',
|
||||||
|
'ticket_sales_generated' => 'Продажи билетов сгенерированы',
|
||||||
|
'visits_generated' => 'Посещения созданы',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,23 @@
|
||||||
|
<?php
|
||||||
|
/*************************************************************************
|
||||||
|
Generated via "php artisan localization:missing" at 2018/04/19 17:07:35
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
return array (
|
||||||
|
//============================== New strings to translate ==============================//
|
||||||
|
'scan_another_ticket' => 'Сканировать другой билет',
|
||||||
|
'scanning' => 'Cканирование',
|
||||||
|
//==================================== Translations ====================================//
|
||||||
|
'attendees' => 'Присутствующие',
|
||||||
|
'check_in' => 'Прибытие:: событие',
|
||||||
|
'email' => 'Электронное письмо',
|
||||||
|
'email_address' => 'Адрес электронной почты',
|
||||||
|
'event_attendees' => 'Участники мероприятия',
|
||||||
|
'first_name' => 'Имя',
|
||||||
|
'last_name' => 'Фамилия',
|
||||||
|
'name' => 'Название',
|
||||||
|
'ticket' => 'Билет',
|
||||||
|
'reference' => 'Ссылка',
|
||||||
|
'search_attendees' => 'Поиск участников ...',
|
||||||
|
'send_invitation_n_ticket_to_attendee' => 'Отправить приглашение и билет посетителю.',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Created by PhpStorm.
|
||||||
|
* User: merdan
|
||||||
|
* Date: 12/9/2018
|
||||||
|
* Time: 11:09 PM
|
||||||
|
*/
|
||||||
|
return array (
|
||||||
|
'category_title' => 'title_ru',
|
||||||
|
'event_category' => 'Категория события'
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,45 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
//cinema.blade.php + concert.blade.php + CinemaItem.blade.php + EventItem.blade.php
|
||||||
|
'share' => 'Поделиться',
|
||||||
|
'buy_ticket' => 'Купить билет',
|
||||||
|
'views' => 'Виды',
|
||||||
|
'prices_from' => 'Цена от',
|
||||||
|
'starting' => 'В кино с',
|
||||||
|
|
||||||
|
//subCategoryList.blade.php
|
||||||
|
'date' => 'Дата',
|
||||||
|
|
||||||
|
//FilterMenu.blade.php
|
||||||
|
'select' => 'Выберите дату',
|
||||||
|
'popular' => 'Популярное',
|
||||||
|
'new' => 'Новые',
|
||||||
|
'filter' => 'Фильтры',
|
||||||
|
'today' => 'Сегодня',
|
||||||
|
'tomorrow' => 'Завтра',
|
||||||
|
'week' => 'На этой неделе',
|
||||||
|
'month' => 'В этом месяце',
|
||||||
|
|
||||||
|
//HomeCinema.blade.php
|
||||||
|
'view' => 'Посмотреть все',
|
||||||
|
|
||||||
|
//ItemList.blade.php
|
||||||
|
'home' => 'Главная',
|
||||||
|
'for_cinema' => 'Билеты на кинотеатры',
|
||||||
|
'composers' => 'Исполнители',
|
||||||
|
'events' => 'Мероприятие',
|
||||||
|
'concerts' => 'Концерты',
|
||||||
|
'alternatives' => 'Альтернатива',
|
||||||
|
'bards' => 'Барды',
|
||||||
|
'jazz' => 'Джаз & блюз',
|
||||||
|
'others' => 'Другие',
|
||||||
|
'movies' => 'Кино',
|
||||||
|
'classic' => 'Классическая музыка',
|
||||||
|
'music' => 'Музыкальный спектакль',
|
||||||
|
'musical' => 'Мюзикл',
|
||||||
|
'ballet' => 'Опера и Балет',
|
||||||
|
'operetta' => 'Оперетта',
|
||||||
|
|
||||||
|
];
|
||||||
|
|
@ -0,0 +1,117 @@
|
||||||
|
<?php
|
||||||
|
/*************************************************************************
|
||||||
|
Generated via "php artisan localization:missing" at 2018/04/26 10:21:11
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
return array (
|
||||||
|
//============================== New strings to translate ==============================//
|
||||||
|
// Defined in file C:\\wamp\\www\\attendize\\resources\\views\\ManageOrganiser\\Events.blade.php
|
||||||
|
'sort' =>
|
||||||
|
array (
|
||||||
|
'event_title' => 'Название мероприятия',
|
||||||
|
'start_date' => 'Дата начала',
|
||||||
|
'created_at' => 'Дата создания',
|
||||||
|
'quantity_sold' => 'Количество продано',
|
||||||
|
'sales_volume' => 'Объем продаж',
|
||||||
|
'sort_order' => 'Пользовательский порядок сортировки',
|
||||||
|
'title' => 'Название билета',
|
||||||
|
),
|
||||||
|
// Defined in file C:\\wamp\\www\\attendize\\resources\\views\\ManageOrganiser\\Events.blade.php
|
||||||
|
//==================================== Translations ====================================//
|
||||||
|
'account_successfully_updated' => 'Аккаунт успешно обновлен',
|
||||||
|
'addInviteError' => 'Вам нужно создать тикет, прежде чем вы сможете пригласить участника.',
|
||||||
|
'attendee_already_cancelled' => 'Участник уже отменен',
|
||||||
|
'attendee_already_checked_in' => 'Участник уже зарегистрировался в: время ',
|
||||||
|
'attendee_exception' => 'Произошла ошибка при приглашении этого участника. Пожалуйста, попробуйте еще раз.',
|
||||||
|
'attendee_successfully_checked_in' => 'Участник успешно зарегистрировался',
|
||||||
|
'attendee_successfully_checked_out' => 'Участник успешно выехал',
|
||||||
|
'attendee_successfully_invited' => 'Участник успешно приглашен!',
|
||||||
|
'cant_delete_ticket_when_sold' => 'Извините, вы не можете удалить этот билет, так как некоторые уже проданы',
|
||||||
|
'check_in_all_tickets' => 'Проверьте все билеты, связанные с этим заказом',
|
||||||
|
'confirmation_malformed' => 'Код подтверждения отсутствует или поврежден.',
|
||||||
|
'confirmation_successful' => 'Успех! Ваш адрес электронной почты подтвержден. Теперь вы можете войти.',
|
||||||
|
'error' =>
|
||||||
|
array (
|
||||||
|
'email' =>
|
||||||
|
array (
|
||||||
|
'email' => 'Пожалуйста, введите действительный адрес электронной почты.',
|
||||||
|
'required' => 'Адрес электронной почты обязателен.',
|
||||||
|
'unique' => 'Электронная почта уже используется для этой учетной записи.',
|
||||||
|
),
|
||||||
|
'first_name' =>
|
||||||
|
array (
|
||||||
|
'required' => 'Пожалуйста, введите ваше имя.',
|
||||||
|
),
|
||||||
|
'last_name' =>
|
||||||
|
array (
|
||||||
|
'required' => 'Пожалуйста, введите свою фамилию.',
|
||||||
|
),
|
||||||
|
'page_bg_color' =>
|
||||||
|
array (
|
||||||
|
'required' => 'Пожалуйста, введите цвет фона.',
|
||||||
|
),
|
||||||
|
'page_header_bg_color' =>
|
||||||
|
array (
|
||||||
|
'required' => 'Пожалуйста, введите цвет фона заголовка.',
|
||||||
|
),
|
||||||
|
'password' =>
|
||||||
|
array (
|
||||||
|
'passcheck' => 'Этот пароль неверный.',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
'event_create_exception' => 'Упс! При создании вашего мероприятия возникла проблема. Пожалуйста, попробуйте еще раз.',
|
||||||
|
'event_page_successfully_updated' => 'Страница события успешно обновлена.',
|
||||||
|
'event_successfully_updated' => 'Событие успешно обновлено!',
|
||||||
|
'fill_email_and_password' => 'Пожалуйста, введите свой адрес электронной почты и пароль',
|
||||||
|
'image_upload_error' => 'При загрузке вашего изображения произошла ошибка.',
|
||||||
|
'invalid_ticket_error' => 'Неверный билет! Пожалуйста, попробуйте еще раз.',
|
||||||
|
'login_password_incorrect' => 'Ваше имя пользователя и пароль были неверны',
|
||||||
|
'maximum_refund_amount' => 'Максимальная сумма возврата: деньги',
|
||||||
|
'message_successfully_sent' => 'Сообщение успешно отправлено!',
|
||||||
|
'no_organiser_name_error' => 'Вы должны дать имя организаторa мероприятия.',
|
||||||
|
'nothing_to_do' => 'Пусто',
|
||||||
|
'nothing_to_refund' => 'Нечего возмещать.',
|
||||||
|
'num_attendees_checked_in' => ': num Участник (ы) Зарегистрирован.',
|
||||||
|
'order_already_refunded' => 'Заказ уже был возвращен!',
|
||||||
|
'order_cant_be_refunded' => 'Заказ не может быть возвращен!',
|
||||||
|
'order_page_successfully_updated' => 'Страница заказа успешно обновлена.',
|
||||||
|
'order_payment_status_successfully_updated' => 'Статус оплаты заказа успешно обновлен',
|
||||||
|
'organiser_design_successfully_updated' => 'Дизайн органайзера успешно обновлен!',
|
||||||
|
'organiser_other_error' => 'Возникла проблема с поиском организатора.',
|
||||||
|
'password_successfully_reset' => 'Пароль успешно сброшен!',
|
||||||
|
'payment_information_successfully_updated' => 'Информация об оплате успешно обновлена',
|
||||||
|
'please_enter_a_background_color' => 'Пожалуйста, введите цвет фона.',
|
||||||
|
'quantity_min_error' => 'Доступное количество не может быть меньше проданного или зарезервированного количества.',
|
||||||
|
'refreshing' => 'Обновление ...',
|
||||||
|
'refund_exception' => 'При обработке возврата возникла проблема. Пожалуйста, проверьте вашу информацию и попробуйте снова.',
|
||||||
|
'refund_only_numbers_error' => 'В этом поле разрешены только цифры.',
|
||||||
|
'social_settings_successfully_updated' => 'Социальные настройки были успешно обновлены!',
|
||||||
|
'stripe_error' => 'Произошла ошибка при подключении вашего аккаунта Stripe. Пожалуйста, попробуйте еще раз.',
|
||||||
|
'stripe_success' => 'Вы успешно подключили свой аккаунт Stripe.',
|
||||||
|
'success_name_has_received_instruction' => 'Успех! <b>: name </b> было отправлено дальнейшие инструкции.',
|
||||||
|
'successfully_cancelled_attendee' => 'Участник Успешно отменен!',
|
||||||
|
'successfully_cancelled_attendees' => 'Успешно отмененные участники!',
|
||||||
|
'successfully_created_organiser' => 'Успешно создан Организатор!',
|
||||||
|
'successfully_created_question' => 'Успешно созданный вопрос',
|
||||||
|
'successfully_deleted_question' => 'Успешно удаленный вопрос',
|
||||||
|
'successfully_edited_question' => 'Успешно отредактированный вопрос',
|
||||||
|
'successfully_refunded_and_cancelled' => 'Успешно возвращенный заказ и отмененные участники!',
|
||||||
|
'successfully_refunded_order' => 'Успешно возвращенный заказ!',
|
||||||
|
'successfully_saved_details' => 'Успешно сохраненные детали!',
|
||||||
|
'successfully_updated_attendee' => 'Успешно обновленный участник!',
|
||||||
|
'successfully_updated_organiser' => 'Успешно обновленный органайзер!',
|
||||||
|
'successfully_updated_question' => 'Вопрос успешно обновлен',
|
||||||
|
'successfully_updated_question_order' => 'Вопрос Заказ успешно обновлен',
|
||||||
|
'survey_answers' => 'Ответы на опрос',
|
||||||
|
'the_order_has_been_updated' => 'Заказ обновлен',
|
||||||
|
'this_question_cant_be_deleted' => 'Этот вопрос не может быть удален',
|
||||||
|
'ticket_field_required_error' => 'Поле для заполнения обязательно.',
|
||||||
|
'ticket_not_exists_error' => 'Выбранный вами билет не существует',
|
||||||
|
'ticket_order_successfully_updated' => 'Заказ билета успешно обновлен',
|
||||||
|
'ticket_successfully_deleted' => 'Билет успешно удален',
|
||||||
|
'ticket_successfully_resent' => 'Билет успешно отправлен!',
|
||||||
|
'ticket_successfully_updated' => 'Билет успешно обновлен!',
|
||||||
|
'tickets_for_event' => 'Ваши билеты на событие: событие.',
|
||||||
|
'whoops' => 'Упс! Похоже, что-то пошло не так. Пожалуйста, попробуйте еще раз.',
|
||||||
|
'your_password_reset_link' => 'Ссылка для сброса вашего пароля',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,26 @@
|
||||||
|
<?php
|
||||||
|
/*************************************************************************
|
||||||
|
Generated via "php artisan localization:missing" at 2018/04/19 18:57:21
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
return array (
|
||||||
|
//============================== New strings to translate ==============================//
|
||||||
|
'this_event_has_started' => 'Это событие началось.',
|
||||||
|
//==================================== Translations ====================================//
|
||||||
|
'create_tickets' => 'Создать билеты',
|
||||||
|
'edit_event_page_design' => 'Изменить дизайн страницы события',
|
||||||
|
'edit_organiser_fees' => 'Редактировать сборы организатора',
|
||||||
|
'event_page_visits' => 'Просмотр страницы события',
|
||||||
|
'event_url' => 'URL события',
|
||||||
|
'event_views' => 'Просмотр событий',
|
||||||
|
'generate_affiliate_link' => 'Создать партнерскую ссылку',
|
||||||
|
'orders' => 'заказы',
|
||||||
|
'quick_links' => 'Быстрые ссылки',
|
||||||
|
'registrations_by_ticket' => 'Регистрация по билетам',
|
||||||
|
'sales_volume' => 'Объем продаж',
|
||||||
|
'share_event' => 'Поделиться мероприятием',
|
||||||
|
'this_event_is_on_now' => 'Это событие сейчас',
|
||||||
|
'ticket_sales_volume' => 'Объем продаж билетов',
|
||||||
|
'tickets_sold' => 'Билеты проданы',
|
||||||
|
'website_embed_code' => 'Код для встраивания сайта',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
/*************************************************************************
|
||||||
|
Generated via "php artisan localization:missing" at 2018/04/19 17:21:50
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
return array (
|
||||||
|
//============================== New strings to translate ==============================//
|
||||||
|
'event_page_preview' => 'Предварительный просмотр страницы события',
|
||||||
|
//==================================== Translations ====================================//
|
||||||
|
'background_options' => 'Параметры фона',
|
||||||
|
'images_provided_by_pixabay' => 'Изображения предоставлены <b> PixaBay.com </ b>',
|
||||||
|
'select_from_available_images' => 'Выбрать из доступных изображений',
|
||||||
|
'use_a_colour_for_the_background' => 'Используйте цвет для фона',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,20 @@
|
||||||
|
<?php
|
||||||
|
/*************************************************************************
|
||||||
|
Generated via "php artisan localization:missing" at 2018/04/26 11:05:24
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
return array (
|
||||||
|
//==================================== Translations ====================================//
|
||||||
|
'attendize_register' => 'Спасибо за регистрацию в Attendize',
|
||||||
|
'invite_user' => ':name добавило вас в учетную запись: приложения.',
|
||||||
|
'message_regarding_event' => 'Сообщение относительно: :event',
|
||||||
|
'organiser_copy' => '[Органайзер Копия]',
|
||||||
|
'refund_from_name' => 'Вы получили возврат от :name',
|
||||||
|
'your_ticket_cancelled' => 'Ваш билет был отменен',
|
||||||
|
'your_ticket_for_event' => 'Ваш билет на мероприятие :event',
|
||||||
|
//================================== Obsolete strings ==================================//
|
||||||
|
'LLH:obsolete' =>
|
||||||
|
array (
|
||||||
|
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,47 @@
|
||||||
|
<?php
|
||||||
|
/*************************************************************************
|
||||||
|
Generated via "php artisan localization:missing" at 2018/04/26 10:54:45
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
return array (
|
||||||
|
'address_details' => 'подробности адреса',
|
||||||
|
'address_line_1' => 'Адресная строка 1',
|
||||||
|
'address_line_1_placeholder' => 'Например: 45 Графтон-стрит',
|
||||||
|
'address_line_2' => 'Адресная строка 2',
|
||||||
|
'address_line_2_placeholder' => 'Например: Дублин',
|
||||||
|
'city' => 'город',
|
||||||
|
'city_placeholder' => 'Например: Дублин',
|
||||||
|
'create_event' => 'Создать событие',
|
||||||
|
'current_event_flyer' => 'Флаер текущего события',
|
||||||
|
'customize_event' => 'Настроить событие',
|
||||||
|
'delete?' => 'Удалять?',
|
||||||
|
'enter_existing' => 'Выбрать из существующих мест',
|
||||||
|
'enter_manual' => 'Введите адрес вручную',
|
||||||
|
'event_description' => 'Описание события',
|
||||||
|
'event_end_date' => 'Дата окончания мероприятия',
|
||||||
|
'event_flyer' => 'Флаер событий',
|
||||||
|
'event_image' => 'Изображение события (флаер или графика и т. Д.)',
|
||||||
|
'event_orders' => 'Заказы на мероприятия',
|
||||||
|
'event_start_date' => 'Дата начала мероприятия',
|
||||||
|
'event_title' => 'Название мероприятия',
|
||||||
|
'event_title_placeholder' => 'Например: Международная конференция имени :name\'s',
|
||||||
|
'event_visibility' => 'Видимость события',
|
||||||
|
'go_live' => 'Событие прошло успешно! Вы можете отменить это действие на странице настроек событий.',
|
||||||
|
'n_attendees_for_event' => ':num Участники для мероприятия: :name (:date)',
|
||||||
|
'no_events_yet' => 'Пока нет событий!',
|
||||||
|
'no_events_yet_text' => 'Похоже, вам еще предстоит создать событие. Вы можете создать его, нажав кнопку ниже.',
|
||||||
|
'num_events' => ':num Мероприятия',
|
||||||
|
'or(manual/existing_venue)' => 'или же',
|
||||||
|
'post_code' => 'Почтовый индекс',
|
||||||
|
'post_code_placeholder' => 'Например: 94568.',
|
||||||
|
'promote' => 'Продвижение',
|
||||||
|
'promote_event' => 'Продвижение мероприятия',
|
||||||
|
'revenue' => 'доход',
|
||||||
|
'save_changes' => 'Сохранить изменения',
|
||||||
|
'showing_num_of_orders' => 'Показано: 0 заказов из:1 Всего',
|
||||||
|
'tickets_sold' => 'Билеты проданы',
|
||||||
|
'venue_name' => 'Название места',
|
||||||
|
'venue_name_placeholder' => 'Например: крабовая лачуга',
|
||||||
|
'vis_hide' => 'Скрыть событие от общественности.',
|
||||||
|
'vis_public' => 'Сделайте событие видимым для публики.',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
<?php
|
||||||
|
/*************************************************************************
|
||||||
|
Generated via "php artisan localization:missing" at 2018/04/19 17:24:53
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
return array (
|
||||||
|
'service_fee_fixed_price' => 'Плата за обслуживание фиксированная цена',
|
||||||
|
'service_fee_fixed_price_help' => 'например: введите <b> 1,25 </ b> для <b>: cur1.25 </ b>',
|
||||||
|
'service_fee_fixed_price_placeholder' => '0.00',
|
||||||
|
'organiser_fees' => 'Тарифы Организатора',
|
||||||
|
'organiser_fees_text' => 'Это дополнительные сборы, которые вы можете включить в стоимость каждого билета. Эта сумма будет указана в счетах покупателя как <b> БРОНИРОВАНИЕ </b>.',
|
||||||
|
'service_fee_percentage' => 'Процент платы за обслуживание',
|
||||||
|
'service_fee_percentage_help' => 'например, введите <b> 3,5 </b> для <b> 3,5% </b>',
|
||||||
|
'service_fee_percentage_placeholder' => '0',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,16 @@
|
||||||
|
<?php
|
||||||
|
/*************************************************************************
|
||||||
|
Generated via "php artisan localization:missing" at 2018/04/19 08:29:24
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
return array (
|
||||||
|
//============================== New strings to translate ==============================//
|
||||||
|
// Defined in file C:\\wamp\\www\\attendize\\resources\\views\\ManageEvent\\Attendees.blade.php
|
||||||
|
'Excel_xls' => 'Excel (XLS)',
|
||||||
|
// Defined in file C:\\wamp\\www\\attendize\\resources\\views\\ManageEvent\\Attendees.blade.php
|
||||||
|
'Excel_xlsx' => 'Excel (XLSX)',
|
||||||
|
// Defined in file C:\\wamp\\www\\attendize\\resources\\views\\ManageEvent\\Attendees.blade.php
|
||||||
|
'csv' => 'CSV',
|
||||||
|
// Defined in file C:\\wamp\\www\\attendize\\resources\\views\\ManageEvent\\Attendees.blade.php
|
||||||
|
'html' => 'HTML',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,50 @@
|
||||||
|
<?php
|
||||||
|
/*************************************************************************
|
||||||
|
* Generated via "php artisan localization:missing" at 2018/04/17 16:35:44
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
return array(
|
||||||
|
'connection_success' => 'Успех! Ваше соединение работает!',
|
||||||
|
'connection_failure' => 'Невозможно подключиться! Пожалуйста, проверьте ваши настройки',
|
||||||
|
'app_settings' => 'Настройки приложения',
|
||||||
|
'application_url' => 'URL приложения',
|
||||||
|
'database_host' => 'Хост базы данных',
|
||||||
|
'database_name' => 'Имя базы данных',
|
||||||
|
'database_password' => 'Пароль базы данных',
|
||||||
|
'database_settings' => 'Настройки базы данных',
|
||||||
|
'database_message' => 'Если вы используете докерскую среду для разработки, вы можете просто использовать предварительно заполненные значения. Если вы используете свою собственную среду, вам необходимо обновить настройки базы данных. Используйте тестовое соединение с базой данных, чтобы убедиться, что ваши данные верны. Неправильные данные базы данных приведут к проблемам установки.',
|
||||||
|
'database_test_connect_failure' => 'Невозможно подключиться. Пожалуйста, проверьте ваши настройки.',
|
||||||
|
'database_test_connect_failure_error_message' => 'Сообщение об ошибке',
|
||||||
|
'database_test_connect_failure_error_type' => 'Тип ошибки',
|
||||||
|
'database_test_connect_failure_message' => 'Невозможно подключиться. Пожалуйста, проверьте ваши настройки.',
|
||||||
|
'database_test_connect_success' => 'Успех! Настройки базы данных работают!',
|
||||||
|
'database_type' => 'Database Type',
|
||||||
|
'database_username' => 'Database Username',
|
||||||
|
'email_settings' => 'Email Settings',
|
||||||
|
'files_n_folders_check' => 'Files & Folders Check',
|
||||||
|
'install' => 'Install Attendize',
|
||||||
|
'mail_encryption' => 'Mail Encryption',
|
||||||
|
'mail_from_address' => 'Mail From Address',
|
||||||
|
'mail_from_help' => 'To use PHP\'s <a target="_blank" href="http://php.net/manual/en/function.mail.php">mail</a> feature enter <b>mail</b> in this box and leave the below fields empty.',
|
||||||
|
'mail_from_name' => 'Mail From Name',
|
||||||
|
'mail_host' => 'Mail Host',
|
||||||
|
'mail_password' => 'Mail Password',
|
||||||
|
'mail_port' => 'Mail Port',
|
||||||
|
'mail_username' => 'Mail Username',
|
||||||
|
'optional_requirement_not_met' => 'Warning: <b>:requirement</b> extension is not loaded',
|
||||||
|
'path_not_writable' => 'Warning: <b>:path</b> is not writable',
|
||||||
|
'path_writable' => 'Success: <b>:path</b> is writable',
|
||||||
|
'php_enough' => 'Success: The application requires PHP >= <b>:requires</b> and yours is <b>:has</b>',
|
||||||
|
'php_optional_requirements_check' => 'PHP Optional Requirements Check',
|
||||||
|
'php_requirements_check' => 'PHP Requirements Check',
|
||||||
|
'php_too_low' => 'Warning: The application requires PHP >= <b>:requires.</b> Your version is <b>:has</b>.',
|
||||||
|
'php_version_check' => 'PHP Version Check',
|
||||||
|
'requirement_met' => 'Success: <b>:requirement</b> extension is loaded',
|
||||||
|
'requirement_not_met' => 'Error: <b>:requirement</b> extension is not loaded',
|
||||||
|
'setup' => 'Attendize Setup',
|
||||||
|
'setup_completed' => 'Attendize Setup Already',
|
||||||
|
'setup_completed_already_message' => "An install file has been detected which means Attendize setup process has already completed. <br /> If you haven't setup a default user you can " .
|
||||||
|
"<a href='/signup'>Signup Default User</a><br />If you have already created a default user you can <a href='/login'>Login Here </a>",
|
||||||
|
'test_database_connection' => 'Test Database Connection',
|
||||||
|
'title' => 'Attendize Web Installer',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
"processing" => "Секундочку ...",
|
||||||
|
"time_run_out" => "Вам не хватило времени! Вам придется перезапустить процесс заказа.",
|
||||||
|
"just_2_minutes" => "У вас есть только 2 минуты, чтобы выполнить этот заказ!",
|
||||||
|
"whoops" => 'Ой! Похоже, сервер вернул ошибку.
|
||||||
|
Пожалуйста, попробуйте еще раз или свяжитесь с веб-мастером, если проблема не устранена.',
|
||||||
|
"whoops2" => 'Что-то пошло не так! Обновите страницу и попробуйте снова',
|
||||||
|
"whoops_and_error" => "К сожалению, что-то пошло не так.<br><br>:code :error",
|
||||||
|
"at_least_one_option" => 'У вас должен быть хотя бы один вариант.',
|
||||||
|
"credit_card_error" => 'Номер кредитной карты является недействительным.',
|
||||||
|
"expiry_error" => 'Дата истечения срока действия представляется недействительной.',
|
||||||
|
"cvc_error" => 'Номер CVC представляется неверным.',
|
||||||
|
"card_validation_error" => 'Пожалуйста, проверьте данные своей карты и попробуйте снова.',
|
||||||
|
"checkin_init_error" => 'Произошла ошибка при инициализации сканера. Проверьте, подключаетесь ли вы через защищенную страницу (https) и поддерживает ли ваш браузер сканер.',
|
||||||
|
];
|
||||||
|
|
@ -0,0 +1,52 @@
|
||||||
|
<?php
|
||||||
|
/*************************************************************************
|
||||||
|
Generated via "php artisan localization:missing" at 2018/04/13 13:27:24
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
return array (
|
||||||
|
'about' => 'относительно',
|
||||||
|
'account' => 'учетная запись',
|
||||||
|
'account_id' => 'Идентификатор аккаунта',
|
||||||
|
'accout_owner' => 'Владелец учетная записи',
|
||||||
|
'add_user_help_block' => 'Добавленные пользователи получат дальнейшие инструкции по электронной почте.',
|
||||||
|
'add_user_submit' => 'Добавить пользователя',
|
||||||
|
'api_key' => 'ключ API',
|
||||||
|
'bitpay_api_key' => 'BitPay API ключ',
|
||||||
|
'bitpay_settings' => 'Bitpay настройки',
|
||||||
|
'branding_name' => 'Название бренда',
|
||||||
|
'branding_name_help' => 'Это имя покупатели увидят при выезде. Оставьте это поле пустым, если хотите, чтобы имя организатора мероприятия использовалось.',
|
||||||
|
'coinbase_settings' => 'Настройки Coinbase',
|
||||||
|
'default_currency' => 'Валюта по умолчанию',
|
||||||
|
'default_payment_gateway' => 'Платежный шлюз по умолчанию',
|
||||||
|
'email' => 'Email',
|
||||||
|
'email_address_placeholder' => 'Email address',
|
||||||
|
'first_name' => 'Имя',
|
||||||
|
'general' => 'Общая информация',
|
||||||
|
'last_name' => 'Фамилия',
|
||||||
|
'licence_info' => 'Информация о лицензии',
|
||||||
|
'licence_info_description' => 'Attendize лицензируется в соответствии с <b><a target="_blank" href="https://tldrlegal.com/license/attribution-assurance-license-(aal)#summary">Attribution Assurance Licence (AAL)</a></b>. This licence requires the <b>\'Powered By Attendize\'</b> notice to be kept in place on any Attendize installation. If you wish to remove references to Attendize you must purchase one of the white-label licences <b><a target="_blank" href="https://attendize.com/license.html">listed here</a></b>.',
|
||||||
|
'mastercard_internet_gateway_service_settings' => 'Настройки службы интернет-шлюза Mastercard',
|
||||||
|
'merchant_access_code' => 'Код доступа продавца',
|
||||||
|
'merchant_id' => 'идентификатор продавца',
|
||||||
|
'open_source_soft' => 'Программное обеспечение с открытым исходным кодом',
|
||||||
|
'open_source_soft_description' => 'Attendize is built using many fantastic open-source libraries. You can see an overview of these on <b><a href="https://libraries.io/github/Attendize/Attendize?ref=Attendize_About_Page" target="_blank">libraries.io</a></b>.',
|
||||||
|
'payment' => 'Оплата',
|
||||||
|
'paypal_password' => 'PayPal пароль',
|
||||||
|
'paypal_settings' => 'PayPal настройки',
|
||||||
|
'paypal_signature' => 'PayPal подпись',
|
||||||
|
'paypal_username' => 'PayPal username',
|
||||||
|
'save_account_details_submit' => 'Сохранить данные аккаунта',
|
||||||
|
'save_payment_details_submit' => 'Сохранить данные платежа',
|
||||||
|
'secret_code' => 'Секретный код',
|
||||||
|
'secure_hash_code' => 'Безопасный хэш-код',
|
||||||
|
'stripe_publishable_key' => 'Полосатый публикуемый ключ',
|
||||||
|
'stripe_secret_key' => 'Полосатый секретный ключ',
|
||||||
|
'stripe_settings' => 'Настройки полосы',
|
||||||
|
'timezone' => 'Часовой пояс',
|
||||||
|
'users' => 'пользователи',
|
||||||
|
'version_info' => 'Информация о версии',
|
||||||
|
'version_out_of_date' => 'Your version (<b>:installed</b>) of Attendize is out of date. The latest version (<b>:latest</b>) can be <a href=":url" target="_blank">downloaded here</a>',
|
||||||
|
'version_up_to_date' => 'Your Attendize version (<b>:installed</b>) is up to date!',
|
||||||
|
'account_payment' => 'Account / Payment',
|
||||||
|
'event_attendees' => 'Участники мероприятия',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,100 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return array (
|
||||||
|
'all_attendees' => 'Все участники',
|
||||||
|
'all_attendees_cancelled' => 'Все участники в этом порядке были отменены.',
|
||||||
|
'all_order_refunded' => 'Все :money этого заказа были возвращены.',
|
||||||
|
'amount' => 'Количество',
|
||||||
|
'attendee_cancelled' => 'отменен',
|
||||||
|
'attendee_cancelled_help' => 'Этот участник был отменен',
|
||||||
|
'attendees_file_requirements' => 'Файл должен быть .csv, а первая строка должна содержать first_name, last_name, email',
|
||||||
|
'attendize_qrcode_check_in' => 'Примите участие в регистрации QRCode',
|
||||||
|
'cancel_attendee_title' => 'Отмена :cancel',
|
||||||
|
'cancel_description' => 'Отмена участников удалит их из списка участников.',
|
||||||
|
'cancel_notify' => 'Уведомить :name их билет был отменен.',
|
||||||
|
'cancel_order_:ref' => 'Отмена заказа: :ref',
|
||||||
|
'cancel_refund' => 'Если вы хотите вернуть заказ, принадлежащий данному участнику, вы можете сделать это <strong><a href=":url">here</a></strong>.',
|
||||||
|
'cancel_refund_user' => 'Возврат :name для их билета.',
|
||||||
|
'cant_refund_here' => 'Извините, вы не можете вернуть деньги: платежи через шлюз здесь. Вам придется сделать это на их сайте.',
|
||||||
|
'check-in' => 'Регистрироваться',
|
||||||
|
'checkin_search_placeholder' => 'Поиск по имени посетителя, справочнику заказа, справочнику посетителя ...',
|
||||||
|
'close' => 'закрыть',
|
||||||
|
'confirm_cancel' => 'Подтвердите отмену участника',
|
||||||
|
'confirm_order_cancel' => 'Подтвердите заказ Отмена',
|
||||||
|
'create_attendees' => 'Создать участников',
|
||||||
|
'create_ticket' => 'Создать тикет',
|
||||||
|
'download_pdf_ticket' => 'Скачать PDF билет',
|
||||||
|
'edit_attendee' => 'Изменить участника',
|
||||||
|
'edit_attendee_title' => 'Изменить :attendee',
|
||||||
|
'edit_order_title' => 'Order: :order_ref',
|
||||||
|
'edit_question' => 'Изменить вопрос',
|
||||||
|
'edit_ticket' => 'Изменить билет',
|
||||||
|
'end_sale_on' => 'Завершить продажу на',
|
||||||
|
'event_not_live' => 'Это событие не видно публике.',
|
||||||
|
'event_page' => 'Страница события',
|
||||||
|
'event_tools' => 'Инструменты для проведения мероприятий',
|
||||||
|
'export' => 'экспорт',
|
||||||
|
'go_to_attendee_name' => 'Перейти к участнику :name',
|
||||||
|
'hide_this_ticket' => 'Скрыть этот билет',
|
||||||
|
'import_file' => 'Импортировать файл',
|
||||||
|
'invite_attendee' => 'Пригласить участника',
|
||||||
|
'invite_attendees' => 'Пригласить участников',
|
||||||
|
'issue_full_refund' => 'Выдать полный возврат',
|
||||||
|
'issue_partial_refund' => 'Выдача частичного возврата',
|
||||||
|
'manage_order_title' => 'Order: :order_ref',
|
||||||
|
'mark_payment_received' => 'Пометить платеж как полученный',
|
||||||
|
'maximum_tickets_per_order' => 'Максимальное количество билетов на заказ',
|
||||||
|
'message_attendee_title' => 'Сообщение :attendee',
|
||||||
|
'message_attendees' => 'Сообщение',
|
||||||
|
'message_attendees_title' => 'Сообщение Присутствующие',
|
||||||
|
'message_order' => 'Сообщение :order',
|
||||||
|
'minimum_tickets_per_order' => 'Минимальное количество билетов на заказ',
|
||||||
|
'more_options' => 'Больше опций',
|
||||||
|
'no_attendees_matching' => 'Нет подходящих посетителей',
|
||||||
|
'no_attendees_yet' => 'Пока нет участников',
|
||||||
|
'no_attendees_yet_text' => 'Участники появятся здесь, как только они успешно зарегистрировались для вашего мероприятия, или вы можете вручную пригласить участников самостоятельно.',
|
||||||
|
'no_orders_yet' => 'Пока нет заказов',
|
||||||
|
'no_orders_yet_text' => 'Новые заказы будут появляться здесь по мере их создания.',
|
||||||
|
'order_contact_will_receive_instructions' => 'Заказчику будет дано указание отправить любой ответ :email',
|
||||||
|
'order_details' => 'Информация для заказа',
|
||||||
|
'order_overview' => 'Обзор заказа',
|
||||||
|
'order_ref' => 'Order: #:order_ref',
|
||||||
|
'order_refunded' => ':money этого заказа был возвращен.',
|
||||||
|
'price_placeholder' => 'Например: 25,99',
|
||||||
|
'print_attendee_list' => 'Распечатать список участников',
|
||||||
|
'print_tickets' => 'Печать билетов',
|
||||||
|
'publish_it' => 'Опубликуйте это',
|
||||||
|
'qr_instructions' => 'Поместите QR-код перед вашей камерой (не слишком близко)',
|
||||||
|
'quantity_available' => 'Кол-во в наличии',
|
||||||
|
'quantity_available_placeholder' => 'Например: 100 (оставьте пустым для неограниченного количества)',
|
||||||
|
'refund_amount' => 'Сумма возврата',
|
||||||
|
'refund_this_order?' => 'Вернуть этот заказ?',
|
||||||
|
'resend_ticket' => 'Переслать билет',
|
||||||
|
'resend_ticket_help' => 'Участнику будет отправлена еще одна копия билета :email',
|
||||||
|
'resend_ticket_to_attendee' => 'Отправить билет на :attendee',
|
||||||
|
'resend_tickets' => 'Отправить билеты',
|
||||||
|
'result_for' => 'результат(ы) для',
|
||||||
|
'save_question' => 'Сохранить вопрос',
|
||||||
|
'save_ticket' => 'Сохранить билет',
|
||||||
|
'scan_another_ticket' => 'Сканировать другой билет',
|
||||||
|
'select_all' => 'Выбрать все',
|
||||||
|
'select_attendee_to_cancel' => 'Выберите любые билеты участника, которые вы хотите отменить.',
|
||||||
|
'send_invitation_n_ticket_to_attendees' => 'Отправить приглашение и билет участникам',
|
||||||
|
'send_message' => 'Отправить сообщение',
|
||||||
|
'send_ticket' => 'Отправить билет',
|
||||||
|
'start_sale_on' => 'Начать продажу с',
|
||||||
|
'surveys' => 'Обзоры',
|
||||||
|
'this_order_is_awaiting_payment' => 'Этот заказ ожидает оплаты.',
|
||||||
|
'ticket' => 'билет',
|
||||||
|
'ticket_description' => 'Описание билета',
|
||||||
|
'ticket_price' => 'Цена билета',
|
||||||
|
'ticket_title' => 'Название билета',
|
||||||
|
'ticket_title_placeholder' => 'Например: общий прием',
|
||||||
|
'ticket_date' => 'Дата билета',
|
||||||
|
'update_order' => 'Обновить заказ',
|
||||||
|
'widgets' => 'Виджеты',
|
||||||
|
'LLH:obsolete' =>
|
||||||
|
array (
|
||||||
|
'create_question' => 'Создать вопрос',
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return array (
|
||||||
|
'new_message' => 'Новое сообщение',
|
||||||
|
'sent_messages' => 'Отправленные сообщения',
|
||||||
|
'all_event_attendees' => 'Все участники мероприятия',
|
||||||
|
'attendees_with_ticket_type' => 'Участники с типом билета',
|
||||||
|
'before_send_message' => 'Участнику будет предложено отправить любой ответ :organiser',
|
||||||
|
'content' => 'Содержание сообщения',
|
||||||
|
'date' => 'Дата',
|
||||||
|
'leave_blank_to_send_immediately' => 'Оставьте пустым, чтобы отправить немедленно',
|
||||||
|
'message' => 'Сообщение',
|
||||||
|
'no_messages_for_event' => 'Нет сообщений для события.',
|
||||||
|
'schedule_send_time' => 'Расписание отправьте время',
|
||||||
|
'send_a_copy_to' => 'Отправить копию на :organiser',
|
||||||
|
'send_message' => 'Отправить сообщение',
|
||||||
|
'send_to' => 'Отправить',
|
||||||
|
'subject' => 'Тема сообщения',
|
||||||
|
'to' => 'к',
|
||||||
|
'unsent' => 'неотправленные',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,50 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return array (
|
||||||
|
'amount_refunded' => 'сумма возврата',
|
||||||
|
'fully_refunded' => 'полностью возмещен',
|
||||||
|
'partially_refunded' => 'частично возмещен',
|
||||||
|
'after_order' => 'Сообщение для отображения посетителям после того, как они завершили свой заказ.',
|
||||||
|
'after_order_help' => 'Это сообщение будет отображаться посетителям после того, как они успешно завершили процесс оформления заказа.',
|
||||||
|
'amount' => 'Количество',
|
||||||
|
'arrived' => 'Прибывшиe',
|
||||||
|
'attendee_cancelled' => 'отмененныe',
|
||||||
|
'attendee_refunded' => 'Возвращено',
|
||||||
|
'awaiting_payment' => 'Ожидание оплаты',
|
||||||
|
'before_order' => 'Сообщение для отображения посетителям, прежде чем они завершат свой заказ.',
|
||||||
|
'before_order_help' => 'Это сообщение будет отображаться для участников непосредственно перед тем, как они завершат свой заказ.',
|
||||||
|
'booking_fee' => 'Плата за бронирование',
|
||||||
|
'cancel_order' => 'Отменить заказ',
|
||||||
|
'date' => 'Даты',
|
||||||
|
'details' => 'подробности',
|
||||||
|
'edit' => 'редактировать',
|
||||||
|
'email' => 'Email',
|
||||||
|
'enable_offline_payments' => 'Включить автономные платежи',
|
||||||
|
'free' => 'бесплатно',
|
||||||
|
'no_recent_orders' => 'Похоже, что нет недавних заказов.',
|
||||||
|
'offline_payment_instructions' => 'Введите инструкции о том, как участники могут сделать платеж в автономном режиме.',
|
||||||
|
'offline_payment_settings' => 'Настройки автономного платежа',
|
||||||
|
'order_attendees' => 'Заказать участников',
|
||||||
|
'order_date' => 'Дата заказа',
|
||||||
|
'order_page_settings' => 'Настройки страницы заказа',
|
||||||
|
'order_ref' => 'Ссылка',
|
||||||
|
'organiser_booking_fees' => 'Организатор бронирования сборов',
|
||||||
|
'payment_gateway' => 'Платежный шлюз',
|
||||||
|
'payment_intent' => 'Способ оплаты',
|
||||||
|
'payment_failed' => 'Платеж не прошел, попробуйте ввести свои платежные данные снова.',
|
||||||
|
'price' => 'Цена',
|
||||||
|
'purchase_date' => 'Дата покупки',
|
||||||
|
'quantity' => 'Количество',
|
||||||
|
'recent_orders' => 'Недавние заказы',
|
||||||
|
'reference' => 'Ссылка',
|
||||||
|
'refund/cancel' => 'Возврат / Отмена',
|
||||||
|
'registered' => 'зарегистрированный',
|
||||||
|
'status' => 'Статус',
|
||||||
|
'sub_total' => 'Промежуточный итог',
|
||||||
|
'ticket' => 'Проездной билет',
|
||||||
|
'tickets' => 'Билет (ы)',
|
||||||
|
'total' => 'Общее количество',
|
||||||
|
'transaction_id' => 'ID транзакции',
|
||||||
|
'view_order' => 'Посмотреть заказ',
|
||||||
|
'view_order_num' => 'Посмотреть заказ #:num',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,72 @@
|
||||||
|
<?php
|
||||||
|
/*************************************************************************
|
||||||
|
Generated via "php artisan localization:missing" at 2018/04/26 10:16:27
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
return array (
|
||||||
|
//============================== New strings to translate ==============================//
|
||||||
|
// Defined in file C:\\wamp\\www\\attendize\\resources\\views\\ManageOrganiser\\Customize.blade.php
|
||||||
|
'save_organiser' => 'Save Organiser',
|
||||||
|
//==================================== Translations ====================================//
|
||||||
|
'additional_organiser_options' => 'Дополнительные параметры органайзера',
|
||||||
|
'background_color' => 'Фоновый цвет',
|
||||||
|
'continue_to' => 'Продолжать',
|
||||||
|
'create_an_organiser' => 'Создать органайзер',
|
||||||
|
'create_new_organiser' => 'Создать новый органайзер',
|
||||||
|
'create_organiser' => 'Создать органайзер',
|
||||||
|
'create_organiser_text' => 'Прежде чем создавать события, вам нужно создать органайзер. Организатор - это просто тот, кто организует мероприятие. Это может быть кто угодно, от человека до организации.',
|
||||||
|
'current_logo' => 'Текущий логотип',
|
||||||
|
'customize' => 'Настроить',
|
||||||
|
'dashboard' => 'Панель',
|
||||||
|
'delete_logo?' => 'Удалить логотип?',
|
||||||
|
'enable_public_organiser_page' => 'Включить публичную страницу организатора',
|
||||||
|
'event' => 'Мероприятие',
|
||||||
|
'event_calendar' => 'Календарь событий',
|
||||||
|
'events' => 'Мероприятия',
|
||||||
|
'google_analytics_code' => 'Код Google Analytics',
|
||||||
|
'google_analytics_code_placeholder' => 'UA-XXXXX-X',
|
||||||
|
'header_background_color' => 'Цвет фона заголовка',
|
||||||
|
'hide_additional_organiser_options' => 'Скрыть дополнительные параметры органайзера',
|
||||||
|
'make_organiser_hidden' => 'Скрыть страницу организатора от общественности.',
|
||||||
|
'make_organiser_public' => 'Сделайте страницу организатора видимой для общественности.',
|
||||||
|
'no_upcoming_events' => 'У вас нет событий, подходящих.',
|
||||||
|
'no_upcoming_events_click' => 'Вы можете нажать здесь, чтобы создать событие.',
|
||||||
|
'or' => 'или',
|
||||||
|
'or_caps' => 'ИЛИ',
|
||||||
|
'organiser_description' => 'Описание организатора',
|
||||||
|
'organiser_description_placeholder' => '',
|
||||||
|
'organiser_design' => 'Организатор Дизайн',
|
||||||
|
'organiser_details' => 'Подробности организатора',
|
||||||
|
'organiser_email' => 'Организатор Email',
|
||||||
|
'organiser_email_placeholder' => '',
|
||||||
|
'organiser_events' => 'Организатор мероприятия',
|
||||||
|
'organiser_facebook' => 'Организатор Facebook',
|
||||||
|
'organiser_facebook_placeholder' => 'E.g http://www.facebook.com/MyFaceBookPage',
|
||||||
|
'organiser_logo' => 'Логотип Организатора',
|
||||||
|
'organiser_logo_help' => 'Мы рекомендуем квадратное изображение, так как оно будет лучше всего смотреться на распечатанных билетах и страницах мероприятия.',
|
||||||
|
'organiser_menu' => 'Меню Организатора',
|
||||||
|
'organiser_name' => 'Имя организатора',
|
||||||
|
'organiser_name_dashboard' => ':name панель',
|
||||||
|
'organiser_name_events' => ':name Мероприятия',
|
||||||
|
'organiser_name_placeholder' => 'Кто организует мероприятие?',
|
||||||
|
'organiser_page' => 'Страница организатора',
|
||||||
|
'organiser_page_design' => 'Дизайн страницы организатора',
|
||||||
|
'organiser_page_preview' => 'Предварительный просмотр страницы организатора',
|
||||||
|
'organiser_page_visibility_text' => 'Страницы организатора содержат общедоступный список прошедших и предстоящих событий.',
|
||||||
|
'organiser_settings' => 'Настройки организатора',
|
||||||
|
'organiser_twitter' => 'Организатор Твиттера',
|
||||||
|
'organiser_twitter_placeholder' => 'E.g http://www.twitter.com/MyTwitterPage',
|
||||||
|
'organiser_username_facebook_placeholder' => 'MyFacebookPage',
|
||||||
|
'organiser_username_twitter_placeholder' => 'MyTwitterPage',
|
||||||
|
'organiser_tax_prompt' => 'Вы хотите взимать налог как ваши события?',
|
||||||
|
'organiser_tax_id' => 'Налоговый идентификатор',
|
||||||
|
'organiser_tax_name' => 'Название налога',
|
||||||
|
'organiser_tax_value' => 'Налоговая стоимость',
|
||||||
|
'yes' => 'Да',
|
||||||
|
'no' => 'Нет',
|
||||||
|
'sales_volume' => 'Объем продаж',
|
||||||
|
'select_an_organiser' => 'Выберите организатора',
|
||||||
|
'select_organiser' => 'Выберите организатора',
|
||||||
|
'text_color' => 'Цвет текста',
|
||||||
|
'tickets_sold' => 'Билеты проданы',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,79 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
'Contact' => 'контакт',
|
||||||
|
'DETAILS' => 'ПОДРОБНОСТИ',
|
||||||
|
'Facebook' => 'Facebook',
|
||||||
|
'LOCATION' => 'МЕСТО НАХОЖДЕНИЯ',
|
||||||
|
'TICKETS' => 'БИЛЕТЫ',
|
||||||
|
'Twitter' => 'Twitter',
|
||||||
|
'Whatsapp' => 'Whatsapp',
|
||||||
|
'amount' => 'Количество',
|
||||||
|
'at' => '@',
|
||||||
|
'attendee_cancelled' => 'отменен',
|
||||||
|
'below_order_details_header' => '',
|
||||||
|
'below_payment_information_header' => '',
|
||||||
|
'below_tickets' => 'Выберите количество билетов и нажмите «зарегистрироваться». На следующем экране вы будете платить за них.',
|
||||||
|
'booking_fee' => 'Плата за бронирование',
|
||||||
|
'booking_fees' => 'Стоимость бронирования',
|
||||||
|
'card_number' => 'Номер карты',
|
||||||
|
'checkout_submit' => 'Проверять, выписываться',
|
||||||
|
'checkout_order' => 'Продолжить к оплате',
|
||||||
|
'confirmation_email' => 'и подтверждение по электронной почте было отправлено вам.',
|
||||||
|
'copy_buyer' => 'Копировать данные покупателя всем держателям билетов',
|
||||||
|
'currently_not_on_sale' => 'В настоящее время не продается',
|
||||||
|
'cvc_number' => 'Номер CVC',
|
||||||
|
'date' => 'Дата',
|
||||||
|
'download_tickets' => 'Скачать билеты',
|
||||||
|
'email' => 'Email',
|
||||||
|
'email_address' => 'Email адрес',
|
||||||
|
'event_already' => 'Это событие имеет :started.',
|
||||||
|
'event_already_ended' => 'закончилось',
|
||||||
|
'event_already_started' => 'уже началось',
|
||||||
|
'event_dashboard' => 'Панель инструментов событий',
|
||||||
|
'event_details' => 'Детали мероприятия',
|
||||||
|
'event_not_live' => 'Эта страница события не доступна для общественности.',
|
||||||
|
'expiry_month' => 'Месяц истечения',
|
||||||
|
'expiry_year' => 'Год истечения',
|
||||||
|
'first_name' => 'Имя',
|
||||||
|
'free' => 'СВОБОДНО',
|
||||||
|
'inc_fees' => 'Стоимость бронирования',
|
||||||
|
'last_name' => 'Фамилия',
|
||||||
|
'offline_payment_instructions' => 'Оффлайн платежные инструкции',
|
||||||
|
'offline_payment_methods_available' => 'Доступные способы оплаты в автономном режиме',
|
||||||
|
'order_attendees' => 'Заказать участников',
|
||||||
|
'order_awaiting_payment' => 'Этот заказ ожидает оплаты. Пожалуйста, прочитайте ниже инструкции о том, как сделать платеж.',
|
||||||
|
'order_details' => 'Информация для заказа',
|
||||||
|
'order_items' => 'Элементы заказа',
|
||||||
|
'order_summary' => 'итог заказа',
|
||||||
|
'organiser_dashboard' => 'Панель управления организатора',
|
||||||
|
'pay_using_offline_methods' => 'Оплата с использованием оффлайн методов',
|
||||||
|
'payment_information' => 'Платежная информация',
|
||||||
|
'payment_instructions' => 'Инструкция по оплате',
|
||||||
|
'presents' => 'представляет',
|
||||||
|
'price' => 'Цена',
|
||||||
|
'quantity_full' => 'Количество',
|
||||||
|
'reference' => 'Ссылка',
|
||||||
|
'refunded_amount' => 'Сумма возврата',
|
||||||
|
'register' => 'регистр',
|
||||||
|
'sales_have_ended' => 'Продажи закончились',
|
||||||
|
'sales_have_not_started' => 'Продажи еще не начались',
|
||||||
|
'send_message_submit' => 'Отправить сообщение',
|
||||||
|
'share_event' => 'Поделиться мероприятием',
|
||||||
|
'sold_out' => 'Продано',
|
||||||
|
'sub_total' => 'Промежуточный итог',
|
||||||
|
'thank_you_for_your_order' => 'Спасибо за ваш заказ!',
|
||||||
|
'ticket' => 'билет',
|
||||||
|
'ticket_holder_information' => 'Информация о владельце билета',
|
||||||
|
'ticket_holder_n' => 'Держатель билета :n Подробности',
|
||||||
|
'ticket_price' => 'Цена билета',
|
||||||
|
'tickets' => 'Билет (ы)',
|
||||||
|
'tickets_are_currently_unavailable' => 'Билеты в настоящее время недоступны',
|
||||||
|
'time' => 'Обратите внимание, у вас есть только :time для завершения этой транзакции, прежде чем ваши билеты будут переизданы.',
|
||||||
|
'total' => 'Общее количество',
|
||||||
|
'your_email_address' => 'Ваш электронный адрес',
|
||||||
|
'your_information' => 'Ваша информация',
|
||||||
|
'your_message' => 'Твое сообщение',
|
||||||
|
'your_name' => 'Ваше имя',
|
||||||
|
'your' => 'Ваше'
|
||||||
|
];
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?php
|
||||||
|
/*************************************************************************
|
||||||
|
Generated via "php artisan localization:missing" at 2018/04/16 08:41:39
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
return array (
|
||||||
|
//============================== New strings to translate ==============================//
|
||||||
|
// Defined in file C:\\wamp\\www\\attendize\\resources\\views\\Public\\ViewOrganiser\\Partials\\EventListingPanel.blade.php
|
||||||
|
'information' => 'Информация',
|
||||||
|
// Defined in file C:\\wamp\\www\\attendize\\resources\\views\\Public\\ViewOrganiser\\Partials\\EventListingPanel.blade.php
|
||||||
|
'tickets' => 'Билеты',
|
||||||
|
//==================================== Translations ====================================//
|
||||||
|
'no_events' => 'Нет: panel_title для отображения.',
|
||||||
|
'organiser_dashboard' => 'Панель управления организатора',
|
||||||
|
'past_events' => 'Прошлые события',
|
||||||
|
'upcoming_events' => 'Предстоящие События',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,24 @@
|
||||||
|
<?php
|
||||||
|
/*************************************************************************
|
||||||
|
Generated via "php artisan localization:missing" at 2018/04/18 16:23:42
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
return array (
|
||||||
|
//============================== New strings to translate ==============================//
|
||||||
|
// Defined in file C:\\wamp\\www\\attendize\\resources\\views\\ManageEvent\\Partials\\SurveyBlankSlate.blade.php
|
||||||
|
'create_question' => 'Создать вопрос',
|
||||||
|
//==================================== Translations ====================================//
|
||||||
|
'Q' => 'Q',
|
||||||
|
'add_another_option' => 'Добавить еще один вариант',
|
||||||
|
'answer' => 'Ответ',
|
||||||
|
'attendee_details' => 'Детали участника',
|
||||||
|
'make_this_a_required_question' => 'Сделайте это обязательным параметром',
|
||||||
|
'no_answers' => 'Извините, на этот вопрос пока нет ответов.',
|
||||||
|
'no_questions_yet' => 'Еще нет вопросов',
|
||||||
|
'no_questions_yet_text' => 'Здесь вы можете добавить вопросы, на которые участникам будет предложено ответить в процессе проверки.',
|
||||||
|
'question' => 'Вопрос',
|
||||||
|
'question_options' => 'Варианты вопросов',
|
||||||
|
'question_placeholder' => 'e.g. Пожалуйста, введите свой полный адрес?',
|
||||||
|
'question_type' => 'тип вопроса',
|
||||||
|
'require_this_question_for_ticket(s)' => 'Требовать этот вопрос для билета (ов)',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
/*************************************************************************
|
||||||
|
Generated via "php artisan localization:missing" at 2018/04/23 14:17:14
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
return array (
|
||||||
|
//============================== New strings to translate ==============================//
|
||||||
|
// Defined in file C:\\wamp\\www\\attendize\\resources\\views\\Public\\ViewOrganiser\\Partials\\OrganiserSocialSection.blade.php
|
||||||
|
'pinterest' => 'Pinterest',
|
||||||
|
//==================================== Translations ====================================//
|
||||||
|
'email' => 'Email',
|
||||||
|
'facebook' => 'Facebook',
|
||||||
|
'g+' => 'Google+',
|
||||||
|
'linkedin' => 'LinkedIn',
|
||||||
|
'share_buttons_to_show' => 'Поделиться кнопками, чтобы показать',
|
||||||
|
'social_settings' => 'Социальные настройки',
|
||||||
|
'social_share_text' => 'Социальный Поделиться Текст',
|
||||||
|
'social_share_text_help' => 'Это текст, который будет доступен по умолчанию, когда пользователь поделится вашим событием в социальных сетях.',
|
||||||
|
'twitter' => 'Twitter',
|
||||||
|
'whatsapp' => 'WhatsApp',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,18 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return array (
|
||||||
|
//============================== New strings to translate ==============================//
|
||||||
|
// Defined in file C:\\wamp\\www\\attendize\\resources\\views\\ManageEvent\\Surveys.blade.php
|
||||||
|
'question_delete' => 'Вопрос Удалить',
|
||||||
|
//==================================== Translations ====================================//
|
||||||
|
'add_question' => 'Добавить вопрос',
|
||||||
|
'answers' => 'ответы',
|
||||||
|
'event_surveys' => 'Обзоры событий',
|
||||||
|
'export_answers' => 'Экспорт ответов',
|
||||||
|
'num_responses' => '# Ответы',
|
||||||
|
'question_delete_title' => 'Все ответы также будут удалены. Если вы хотите сохранить ответы участников, вы должны вместо этого деактивировать вопрос.',
|
||||||
|
'question_title' => 'Название вопроса',
|
||||||
|
'required' => 'необходимые',
|
||||||
|
'status' => 'Статус',
|
||||||
|
'tickets_list' => 'Tickets: :list',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,52 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return array (
|
||||||
|
//============================== New strings to translate ==============================//
|
||||||
|
// Defined in file C:\\wamp\\www\\attendize\\resources\\views\\ManageEvent\\Tickets.blade.php
|
||||||
|
'on_sale' => 'В продаже',
|
||||||
|
//==================================== Translations ====================================//
|
||||||
|
'attendee_ref' => 'Участник Ref.',
|
||||||
|
'coupon_codes' => 'Коды купонов',
|
||||||
|
'create_ticket' => 'Создать тикет',
|
||||||
|
'demo_attendee_ref' => '#YLY9U73-1',
|
||||||
|
'demo_end_date_time' => 'Mar 18th 5:08PM',
|
||||||
|
'demo_event' => 'Демо Событие',
|
||||||
|
'demo_name' => 'Bill Blogs',
|
||||||
|
'demo_order_ref' => '#YLY9U73',
|
||||||
|
'demo_organiser' => 'Организатор демонстрации',
|
||||||
|
'demo_price' => '€XX.XX',
|
||||||
|
'demo_start_date_time' => 'Mar 18th 4:08PM',
|
||||||
|
'demo_ticket_type' => 'Общий доступ',
|
||||||
|
'demo_venue' => 'Демо Расположение',
|
||||||
|
'doesnt_account_for_refunds' => 'Не учитывает возврат.',
|
||||||
|
'end_date_time' => 'Дата / Время окончания',
|
||||||
|
'event' => 'Мероприятие',
|
||||||
|
'event_tickets' => 'Билеты на мероприятия',
|
||||||
|
'footer' => 'Входной билет теряет свою силу в тот момент, когда место проведения оставлено, и повторный вход во время мероприятия не допускается.',
|
||||||
|
'n_tickets' => ':num Билеты',
|
||||||
|
'name' => 'имя',
|
||||||
|
'no_tickets_yet' => 'Билетов пока нет',
|
||||||
|
'no_tickets_yet_text' => 'Создайте свой первый билет, нажав кнопку ниже.',
|
||||||
|
'order_ref' => 'Заказ Реф.',
|
||||||
|
'organiser' => 'организатор',
|
||||||
|
'pause' => 'Пауза',
|
||||||
|
'price' => 'Цена',
|
||||||
|
'questions' => 'Вопросов',
|
||||||
|
'remaining' => 'осталось',
|
||||||
|
'resume' => 'Вернуть',
|
||||||
|
'revenue' => 'доходы',
|
||||||
|
'search_tickets' => 'Поиск билетов ...',
|
||||||
|
'show_1d_barcode' => 'Показать 1D штрих-код на билетах',
|
||||||
|
'sold' => 'Продан',
|
||||||
|
'start_date_time' => 'Дата / Время начала',
|
||||||
|
'this_ticket_is_hidden' => 'Этот билет скрыт',
|
||||||
|
'ticket_background_color' => 'Цвет фона билета',
|
||||||
|
'ticket_border_color' => 'Цвет границы билета',
|
||||||
|
'ticket_design' => 'Дизайн билетов',
|
||||||
|
'ticket_preview' => 'Предварительный просмотр билетов',
|
||||||
|
'ticket_sales_paused' => 'Продажи приостановлены',
|
||||||
|
'ticket_sub_text_color' => 'Цвет текста в субтитрах',
|
||||||
|
'ticket_text_color' => 'Цвет текста билета',
|
||||||
|
'ticket_type' => 'Тип билета',
|
||||||
|
'venue' => 'место встречи',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,18 @@
|
||||||
|
<?php
|
||||||
|
/*************************************************************************
|
||||||
|
Generated via "php artisan localization:missing" at 2018/04/25 10:00:32
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
return array (
|
||||||
|
//============================== New strings to translate ==============================//
|
||||||
|
// Defined in file C:\\wamp\\www\\attendize\\resources\\views\\Shared\\Layouts\\Master.blade.php
|
||||||
|
'account_settings' => 'Настройки аккаунта',
|
||||||
|
// Defined in file C:\\wamp\\www\\attendize\\resources\\views\\Shared\\Layouts\\Master.blade.php
|
||||||
|
'create_organiser' => 'Создать органайзер',
|
||||||
|
// Defined in file C:\\wamp\\www\\attendize\\resources\\views\\Shared\\Layouts\\Master.blade.php
|
||||||
|
'feedback_bug_report' => 'Feedback / Bug Report',
|
||||||
|
// Defined in file C:\\wamp\\www\\attendize\\resources\\views\\Shared\\Layouts\\Master.blade.php
|
||||||
|
'my_profile' => 'Мой профайл',
|
||||||
|
// Defined in file C:\\wamp\\www\\attendize\\resources\\views\\Shared\\Layouts\\Master.blade.php
|
||||||
|
'sign_out' => 'Выход',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,30 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return array (
|
||||||
|
'already_have_account' => 'Уже есть аккаунт? <a class="semibold" href=":url">Войти в систему</a>',
|
||||||
|
'after_welcome' => 'Прежде чем продолжить, обновите свой аккаунт, указав свое имя и новый пароль.',
|
||||||
|
'change_password' => 'Измени пароль',
|
||||||
|
'confirm_new_password' => 'Подтвердите новый пароль',
|
||||||
|
'dont_have_account_button' => 'У вас нет аккаунта?<a class="semibold" href=":url">зарегистрироваться</a>',
|
||||||
|
'email' => 'Email',
|
||||||
|
'first_name' => 'Имя',
|
||||||
|
'forgot_password' => 'Забыл пароль',
|
||||||
|
'forgot_password?' => 'Забыл пароль?',
|
||||||
|
'hide_change_password' => 'Скрыть изменение пароля',
|
||||||
|
'last_name' => 'Фамилия',
|
||||||
|
'login' => 'Авторизоваться',
|
||||||
|
'login_fail_msg' => 'Пожалуйста, проверьте свои данные и попробуйте снова.',
|
||||||
|
'my_profile' => 'Мой профайл',
|
||||||
|
'new_password' => 'новый пароль',
|
||||||
|
'old_password' => 'Прежний пароль',
|
||||||
|
'password' => 'пароль',
|
||||||
|
'password_already_sent' => 'На ваш электронный адрес было отправлено письмо со сбросом пароля.',
|
||||||
|
'reset_input_errors' => 'Были некоторые проблемы с вашим вкладом.',
|
||||||
|
'reset_password' => 'Сброс пароля',
|
||||||
|
'reset_password_success' => 'На ваш электронный адрес было отправлено письмо со сбросом пароля.',
|
||||||
|
'sign_up' => 'Зарегистрироваться',
|
||||||
|
'sign_up_first_run' => 'Ты почти там. Просто создайте учетную запись пользователя, и вы готовы к работе.',
|
||||||
|
'terms_and_conditions' => ' я согласен с <a target="_blank" href=":url"> условиями использования </a>',
|
||||||
|
'welcome_to_app' => 'Добро пожаловать в :app!',
|
||||||
|
'your_email' => 'Ваш адрес электронной почты',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return array (
|
||||||
|
//============================== New strings to translate ==============================//
|
||||||
|
// Defined in file C:\\wamp\\www\\attendize\\resources\\views\\ManageEvent\\Widgets.blade.php
|
||||||
|
'embed_preview' => 'Вставить предварительный просмотр',
|
||||||
|
//==================================== Translations ====================================//
|
||||||
|
'event_widgets' => 'Виджеты событий',
|
||||||
|
'html_embed_code' => 'HTML-код для вставки',
|
||||||
|
'instructions' => 'инструкции',
|
||||||
|
'instructions_text' => 'Просто скопируйте и вставьте HTML-код на свой веб-сайт везде, где вы хотите, чтобы виджет появлялся.',
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,62 @@
|
||||||
|
<?php
|
||||||
|
/*************************************************************************
|
||||||
|
Generated via "php artisan localization:missing" at 2018/04/26 11:05:24
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
return array (
|
||||||
|
//==================================== Translations ====================================//
|
||||||
|
'action' => 'Действие',
|
||||||
|
'affiliates' => 'Филиалы',
|
||||||
|
'attendees' => 'Присутствующие',
|
||||||
|
'back_to_login' => 'Вернуться на страницу входа',
|
||||||
|
'back_to_page' => 'Вернуться на страницу',
|
||||||
|
'cancel' => 'Отмена',
|
||||||
|
'customize' => 'Настроить',
|
||||||
|
'dashboard' => 'Приборная доска',
|
||||||
|
'days' => 'дни',
|
||||||
|
'disable' => 'Отключить',
|
||||||
|
'disabled' => 'Отключен',
|
||||||
|
'drag_to_reorder' => 'Перетащите, чтобы изменить порядок',
|
||||||
|
'edit' => 'Редактировать',
|
||||||
|
'enable' => 'Включить',
|
||||||
|
'enabled' => 'Включено',
|
||||||
|
'error_404' => 'Похоже, что страница, которую вы ищете, больше не существует или переехала.',
|
||||||
|
'event_dashboard' => 'Панель инструментов событий',
|
||||||
|
'event_page_design' => 'Дизайн страницы события',
|
||||||
|
'export' => 'Экспортировать',
|
||||||
|
'general' => 'Генеральная',
|
||||||
|
'hours' => 'часов',
|
||||||
|
'main_menu' => 'Главное меню',
|
||||||
|
'manage' => 'Управлять',
|
||||||
|
'message' => 'Сообщение',
|
||||||
|
'minutes' => 'минут',
|
||||||
|
'months_short' => '|Январь|Февраль|Март|Апрель|Май|Июнь|Июль|Август|Сентябрь|Октябрь|Ноябрь|Декабрь|',
|
||||||
|
'no' => 'Нет',
|
||||||
|
'order_form' => 'Форма заказа',
|
||||||
|
'orders' => 'Заказы',
|
||||||
|
'promote' => 'Содействовать',
|
||||||
|
'save_changes' => 'Сохранить изменения',
|
||||||
|
'save_details' => 'Сохранить детали',
|
||||||
|
'service_fees' => 'Плата за сервис',
|
||||||
|
'social' => 'Социальное',
|
||||||
|
'submit' => 'Представить',
|
||||||
|
'success' => 'Успех',
|
||||||
|
'ticket_design' => 'Дизайн билетов',
|
||||||
|
'tickets' => 'Билеты',
|
||||||
|
'TOP' => 'TOP',
|
||||||
|
'total' => 'общее количество',
|
||||||
|
'whoops' => 'Whoops!',
|
||||||
|
'yes' => 'Да',
|
||||||
|
'no' => 'Нет',
|
||||||
|
/*
|
||||||
|
* Lines below will turn obsolete in localization helper, it is declared in app/Helpers/macros.
|
||||||
|
* If you run it, it will break file input fields.
|
||||||
|
*/
|
||||||
|
'upload' => 'Загрузить',
|
||||||
|
'browse' => 'Просматривать',
|
||||||
|
//================================== Obsolete strings ==================================//
|
||||||
|
'LLH:obsolete' =>
|
||||||
|
array (
|
||||||
|
'months_long' => 'Январь|Февраль|Март|Апрель|Май|Июнь|Июль|Август|Сентябрь|Октябрь|Ноябрь|Декабрь',
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
'back_soon' => 'Мы скоро вернемся',
|
||||||
|
'back_soon_description' => 'В настоящее время мы улучшаем наш сайт.',
|
||||||
|
|
||||||
|
];
|
||||||
|
|
@ -0,0 +1,107 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Validation Language Lines
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| The following language lines contain the default error messages used by
|
||||||
|
| the validator class. Some of these rules have multiple versions such
|
||||||
|
| as the size rules. Feel free to tweak each of these messages here.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'accepted' => 'The :attribute must be accepted.',
|
||||||
|
'active_url' => 'The :attribute is not a valid URL.',
|
||||||
|
'after' => 'The :attribute must be a date after :date.',
|
||||||
|
'alpha' => 'The :attribute may only contain letters.',
|
||||||
|
'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.',
|
||||||
|
'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.',
|
||||||
|
'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_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.',
|
||||||
|
'email' => 'The :attribute must be a valid email address.',
|
||||||
|
'filled' => 'The :attribute field is required.',
|
||||||
|
'exists' => 'The selected :attribute is invalid.',
|
||||||
|
'image' => 'The :attribute must be an image.',
|
||||||
|
'in' => 'The selected :attribute is invalid.',
|
||||||
|
'integer' => 'The :attribute must be an integer.',
|
||||||
|
'ip' => 'The :attribute must be a valid IP address.',
|
||||||
|
'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.',
|
||||||
|
'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.',
|
||||||
|
'numeric' => 'The :attribute must be a number.',
|
||||||
|
'regex' => 'The :attribute format is invalid.',
|
||||||
|
'required' => 'The :attribute field is required.',
|
||||||
|
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||||
|
'required_with' => 'The :attribute field is required when :values is present.',
|
||||||
|
'required_with_all' => 'The :attribute field is required when :values is 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.',
|
||||||
|
],
|
||||||
|
'unique' => 'The :attribute has already been taken.',
|
||||||
|
'url' => 'The :attribute format is invalid.',
|
||||||
|
'timezone' => 'The :attribute must be a valid zone.',
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Custom Validation Language Lines
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may specify custom validation messages for attributes using the
|
||||||
|
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||||
|
| specify a specific custom language line for a given attribute rule.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'custom' => [
|
||||||
|
'terms_agreed' => [
|
||||||
|
'required' => 'Please agree to our Terms of Service.'
|
||||||
|
]
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Custom Validation Attributes
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| The following language lines are used to swap attribute place-holders
|
||||||
|
| with something more reader friendly such as E-Mail Address instead
|
||||||
|
| of "email". This simply helps us make messages a little cleaner.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'attributes' => [],
|
||||||
|
|
||||||
|
];
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Pagination Language Lines
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| The following language lines are used by the paginator library to build
|
||||||
|
| the simple pagination links. You are free to change them to anything
|
||||||
|
| you want to customize your views to better match your application.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'previous' => '« предыдущий',
|
||||||
|
'next' => 'следующий »',
|
||||||
|
|
||||||
|
];
|
||||||
|
|
@ -0,0 +1,22 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Password Reminder Language Lines
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| The following language lines are the default lines which match reasons
|
||||||
|
| that are given by the password broker for a password update attempt
|
||||||
|
| has failed, such as for an invalid token or invalid new password.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'password' => 'Пароли должны содержать не менее шести символов и соответствовать подтверждению.',
|
||||||
|
'user' => "Мы не можем найти пользователя с таким адресом электронной почты.",
|
||||||
|
'token' => 'Этот токен сброса пароля недействителен.',
|
||||||
|
'sent' => 'Мы отправили вам ссылку для сброса пароля по электронной почте!',
|
||||||
|
'reset' => 'Ваш пароль был сброшен!',
|
||||||
|
|
||||||
|
];
|
||||||
|
|
@ -0,0 +1,107 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Validation Language Lines
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| The following language lines contain the default error messages used by
|
||||||
|
| the validator class. Some of these rules have multiple versions such
|
||||||
|
| as the size rules. Feel free to tweak each of these messages here.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'accepted' => 'The :attribute must be accepted.',
|
||||||
|
'active_url' => 'The :attribute is not a valid URL.',
|
||||||
|
'after' => 'The :attribute must be a date after :date.',
|
||||||
|
'alpha' => 'The :attribute may only contain letters.',
|
||||||
|
'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.',
|
||||||
|
'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.',
|
||||||
|
'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_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.',
|
||||||
|
'email' => 'The :attribute must be a valid email address.',
|
||||||
|
'filled' => 'The :attribute field is required.',
|
||||||
|
'exists' => 'The selected :attribute is invalid.',
|
||||||
|
'image' => 'The :attribute must be an image.',
|
||||||
|
'in' => 'The selected :attribute is invalid.',
|
||||||
|
'integer' => 'The :attribute must be an integer.',
|
||||||
|
'ip' => 'The :attribute must be a valid IP address.',
|
||||||
|
'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.',
|
||||||
|
'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.',
|
||||||
|
'numeric' => 'The :attribute must be a number.',
|
||||||
|
'regex' => 'The :attribute format is invalid.',
|
||||||
|
'required' => 'The :attribute field is required.',
|
||||||
|
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||||
|
'required_with' => 'The :attribute field is required when :values is present.',
|
||||||
|
'required_with_all' => 'The :attribute field is required when :values is 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.',
|
||||||
|
],
|
||||||
|
'unique' => 'The :attribute has already been taken.',
|
||||||
|
'url' => 'The :attribute format is invalid.',
|
||||||
|
'timezone' => 'The :attribute must be a valid zone.',
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Custom Validation Language Lines
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may specify custom validation messages for attributes using the
|
||||||
|
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||||
|
| specify a specific custom language line for a given attribute rule.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'custom' => [
|
||||||
|
'terms_agreed' => [
|
||||||
|
'required' => 'Please agree to our Terms of Service.'
|
||||||
|
]
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Custom Validation Attributes
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| The following language lines are used to swap attribute place-holders
|
||||||
|
| with something more reader friendly such as E-Mail Address instead
|
||||||
|
| of "email". This simply helps us make messages a little cleaner.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'attributes' => [],
|
||||||
|
|
||||||
|
];
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
'title' => 'Elýeterlik kodlary',
|
||||||
|
'success_message' => 'Elýeterlik kody üstünlikli generirlenen!',
|
||||||
|
'delete_message' => 'Elýeterlik kody üstünlikli aýyryldy',
|
||||||
|
'cannot_delete_used_code' => 'Ullanylan kody aýyryp bolanok',
|
||||||
|
'access_codes_code' => 'Arzanladyş kody',
|
||||||
|
'access_codes_created_at' => 'Döredildi',
|
||||||
|
'no_access_codes_yet' => 'Hiç hili elýeterlik kody entek ýok!',
|
||||||
|
'create_access_code' => 'Elýeterlik kody döretmek',
|
||||||
|
'access_code_title' => 'Elýeterlik kody',
|
||||||
|
'access_code_title_placeholder' => 'ex: CONFERENCE2019',
|
||||||
|
'valid_code_required' => 'Hakyky elýeterlik kody hökmany',
|
||||||
|
'no_tickets_matched' => 'Siziň kodyňyza deň gelýan petek ýok',
|
||||||
|
'select_access_code' => 'Elýeterlik kodlary saýlaň',
|
||||||
|
'access_codes_usage_count' => 'Ullanyş sanawy',
|
||||||
|
'unique_error' => 'Bu kod eýýäm bir çäre üçin ullanylýar',
|
||||||
|
];
|
||||||
|
|
@ -5,12 +5,12 @@
|
||||||
|
|
||||||
return array (
|
return array (
|
||||||
//============================== New strings to translate ==============================//
|
//============================== New strings to translate ==============================//
|
||||||
'affiliate_name' => 'Affiliate Name',
|
'affiliate_name' => 'Hyzmatdaşyň ady',
|
||||||
'affiliate_tracking' => 'Affiliate Tracking',
|
'affiliate_tracking' => 'Hyzmatdaşlary Yzarlamak',
|
||||||
'affiliate_tracking_text' => 'Keeping track of who is generating sales for your event is extremely easy. Simply create a referral link using the box below and share the link with your affiliates / event promoters.',
|
'affiliate_tracking_text' => 'Siziň çäräňize petek generirleýän adamlary yzarlamak has-da aňsat. Ýönekey ssylka generirläp ony hyzmatdaşyňyz bilen paýlaşyň',
|
||||||
'last_referral' => 'Last Referral',
|
'last_referral' => 'Soňky referal',
|
||||||
'no_affiliate_referrals_yet' => 'No Affiliate Referrals Yet',
|
'no_affiliate_referrals_yet' => 'Hiç hili hyzmatdaş ýok',
|
||||||
'sales_volume_generated' => 'Sales Volume Generated',
|
'sales_volume_generated' => 'Satuwyň göwrümi',
|
||||||
'ticket_sales_generated' => 'Ticket Sales Generated',
|
'ticket_sales_generated' => 'Generirlenen satuw petekleri',
|
||||||
'visits_generated' => 'Visits Generated',
|
'visits_generated' => 'Generirlenen petekler',
|
||||||
);
|
);
|
||||||
|
|
@ -5,19 +5,19 @@
|
||||||
|
|
||||||
return array (
|
return array (
|
||||||
//============================== New strings to translate ==============================//
|
//============================== New strings to translate ==============================//
|
||||||
'scan_another_ticket' => 'Scan Another Ticket',
|
'scan_another_ticket' => 'Başga petegi skanlamak',
|
||||||
'scanning' => 'Scanning',
|
'scanning' => 'Skanlamak',
|
||||||
//==================================== Translations ====================================//
|
//==================================== Translations ====================================//
|
||||||
'attendees' => 'Attendees',
|
'attendees' => 'Gatnaşyjylar',
|
||||||
'check_in' => 'Check in: :event',
|
'check_in' => 'Girmek: :event',
|
||||||
'email' => 'Email',
|
'email' => 'Email',
|
||||||
'email_address' => 'Email Address',
|
'email_address' => 'Email belgisi',
|
||||||
'event_attendees' => 'Event Attendees',
|
'event_attendees' => 'Çärä gatnaşyjylar',
|
||||||
'first_name' => 'First Name',
|
'first_name' => 'Ady',
|
||||||
'last_name' => 'Last Name',
|
'last_name' => 'Familiýasy',
|
||||||
'name' => 'Name',
|
'name' => 'Ady',
|
||||||
'ticket' => 'Ticket',
|
'ticket' => 'Petek',
|
||||||
'reference' => 'Reference',
|
'reference' => 'Bellikler',
|
||||||
'search_attendees' => 'Search Attendees...',
|
'search_attendees' => 'Gatnaşyjylary gözlemek...',
|
||||||
'send_invitation_n_ticket_to_attendee' => 'Send invitation & ticket to attendee.',
|
'send_invitation_n_ticket_to_attendee' => 'Gatnaşyja çakylyk we petek ibermek.',
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Created by PhpStorm.
|
||||||
|
* User: merdan
|
||||||
|
* Date: 12/9/2018
|
||||||
|
* Time: 11:09 PM
|
||||||
|
*/
|
||||||
|
return array (
|
||||||
|
'category_title' => 'title_ru',
|
||||||
|
'event_category' => 'Event Category'
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,45 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
//cinema.blade.php + concert.blade.php + CinemaItem.blade.php + EventItem.blade.php
|
||||||
|
'share' => 'Paýlaşmak',
|
||||||
|
'buy_ticket' => 'Petek satyn almak',
|
||||||
|
'views' => 'Görnüşleri',
|
||||||
|
'prices_from' => 'Bahasy',
|
||||||
|
'starting' => 'Kinoteatrlarda başlaýar',
|
||||||
|
|
||||||
|
//subCategoryList.blade.php
|
||||||
|
'date' => 'Sene',
|
||||||
|
|
||||||
|
//FilterMenu.blade.php
|
||||||
|
'select' => 'Sene saýlamak',
|
||||||
|
'popular' => 'Meşhur',
|
||||||
|
'new' => 'Täze',
|
||||||
|
'filter' => 'Filtr',
|
||||||
|
'today' => 'Şu gün',
|
||||||
|
'tomorrow' => 'Ertir',
|
||||||
|
'week' => 'Şu hepdede',
|
||||||
|
'month' => 'Şu aýda',
|
||||||
|
|
||||||
|
//HomeCinema.blade.php
|
||||||
|
'view' => 'Hemmisini görmek',
|
||||||
|
|
||||||
|
//ItemList.blade.php
|
||||||
|
'home' => 'Baş sahypa',
|
||||||
|
'for_cinema' => 'Kinoteatra petek',
|
||||||
|
'composers' => 'Çykyş edijiler',
|
||||||
|
'events' => 'Çäreler',
|
||||||
|
'concerts' => 'Konsertler',
|
||||||
|
'alternatives' => 'Alternatiwalar',
|
||||||
|
'bards' => 'Bardlar',
|
||||||
|
'jazz' => 'Jazz we blýuz',
|
||||||
|
'others' => 'Başgalar',
|
||||||
|
'movies' => 'Kinolar',
|
||||||
|
'classic' => 'Klassik saz',
|
||||||
|
'music' => 'Saz spektakly',
|
||||||
|
'musical' => 'Mýuzikl',
|
||||||
|
'ballet' => 'Opera we Balet',
|
||||||
|
'operetta' => 'Operetta',
|
||||||
|
|
||||||
|
];
|
||||||
|
|
@ -1,46 +1,47 @@
|
||||||
<?php
|
<?php
|
||||||
/*************************************************************************
|
/*************************************************************************
|
||||||
Generated via "php artisan localization:missing" at 2018/04/26 10:54:45
|
Generated via "php artisan localization:missing" at 2018/04/26 10:54:45
|
||||||
*************************************************************************/
|
*************************************************************************/
|
||||||
|
|
||||||
return array (
|
return array (
|
||||||
'address_details' => 'Address Details',
|
'address_details' => 'Salgy maglumatlary',
|
||||||
'address_line_1' => 'Address Line 1',
|
'address_line_1' => 'Salgy belgisi 1',
|
||||||
'address_line_1_placeholder' => 'E.g: 45 Grafton St.',
|
'address_line_1_placeholder' => '45 Grafton St.',
|
||||||
'address_line_2' => 'Address Line 2',
|
'address_line_2' => 'Salgy belgisi 2',
|
||||||
'address_line_2_placeholder' => 'E.g: Dublin',
|
'address_line_2_placeholder' => 'Dublin',
|
||||||
'city' => 'City',
|
'city' => '',
|
||||||
'city_placeholder' => 'E.g: Dublin',
|
'city_placeholder' => 'E.g: Dublin',
|
||||||
'create_event' => 'Create Event',
|
'create_event' => 'Çäre döretmek',
|
||||||
'current_event_flyer' => 'Current Event Flyer',
|
'current_event_flyer' => 'Häzirki çäräniň mahabat kagyzy',
|
||||||
'customize_event' => 'Customize Event',
|
'customize_event' => 'Çäräni üýtgetmek',
|
||||||
'delete?' => 'Delete?',
|
'delete?' => 'Aýyrmalymy?',
|
||||||
'enter_existing' => 'Select From Existing Venues',
|
'enter_existing' => 'Eýýäm bar bolan ýerlerden saýlamak',
|
||||||
'enter_manual' => 'Enter Address Manually',
|
'enter_manual' => 'Salgyny goşmak',
|
||||||
'event_description' => 'Event Description',
|
'event_description' => 'Çäräniň düşündirilişi',
|
||||||
'event_end_date' => 'Event End Date',
|
'event_end_date' => 'Çäräniň gutarýan wagty',
|
||||||
'event_flyer' => 'Event Flyer',
|
'event_flyer' => 'Çäräniň mahabat kagysy',
|
||||||
'event_image' => 'Event Image (Flyer or Graphic etc.)',
|
'event_image' => 'Çäräniň suraty (Flyer or Graphic etc.)',
|
||||||
'event_orders' => 'Event Orders',
|
'event_orders' => 'Event Orders',
|
||||||
'event_start_date' => 'Event Start Date',
|
'event_start_date' => 'Event Start Date',
|
||||||
'event_title' => 'Event Title',
|
'event_title' => 'Event Title',
|
||||||
'event_title_placeholder' => 'E.g: :name\'s Interational Conference',
|
'event_title_placeholder' => 'E.g: :name\'s Interational Conference',
|
||||||
'event_visibility' => 'Event Visibility',
|
'event_visibility' => 'Event Visibility',
|
||||||
'n_attendees_for_event' => ':num Attendee(s) for event: :name (:date)',
|
'go_live' => 'Event Successfully Made Live! You can undo this action in event settings page.',
|
||||||
'no_events_yet' => 'No Event Yet!',
|
'n_attendees_for_event' => ':num Attendee(s) for event: :name (:date)',
|
||||||
'no_events_yet_text' => 'Looks like you have yet to create an event. You can create one by clicking the button below.',
|
'no_events_yet' => 'No Event Yet!',
|
||||||
'num_events' => ':num Events',
|
'no_events_yet_text' => 'Looks like you have yet to create an event. You can create one by clicking the button below.',
|
||||||
'or(manual/existing_venue)' => 'or',
|
'num_events' => ':num Events',
|
||||||
'post_code' => 'Post Code',
|
'or(manual/existing_venue)' => 'or',
|
||||||
'post_code_placeholder' => 'E.g: 94568.',
|
'post_code' => 'Post Code',
|
||||||
'promote' => 'Promote',
|
'post_code_placeholder' => 'E.g: 94568.',
|
||||||
'promote_event' => 'Promote Event',
|
'promote' => 'Promote',
|
||||||
'revenue' => 'Revenue',
|
'promote_event' => 'Promote Event',
|
||||||
'save_changes' => 'Save Changes',
|
'revenue' => 'Revenue',
|
||||||
'showing_num_of_orders' => 'Showing :0 orders out of :1 Total',
|
'save_changes' => 'Save Changes',
|
||||||
'tickets_sold' => 'Tickets Sold',
|
'showing_num_of_orders' => 'Showing :0 orders out of :1 Total',
|
||||||
'venue_name' => 'Venue Name',
|
'tickets_sold' => 'Tickets Sold',
|
||||||
'venue_name_placeholder' => 'E.g: The Crab Shack',
|
'venue_name' => 'Venue Name',
|
||||||
'vis_hide' => 'Hide event from the public.',
|
'venue_name_placeholder' => 'E.g: The Crab Shack',
|
||||||
'vis_public' => 'Make event visible to the public.',
|
'vis_hide' => 'Hide event from the public.',
|
||||||
|
'vis_public' => 'Make event visible to the public.',
|
||||||
);
|
);
|
||||||
|
|
@ -1,99 +1,100 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
return array (
|
return array (
|
||||||
'all_attendees' => 'All Attendees',
|
'all_attendees' => 'All Attendees',
|
||||||
'all_attendees_cancelled' => 'All attendees in this order have been cancelled.',
|
'all_attendees_cancelled' => 'All attendees in this order have been cancelled.',
|
||||||
'all_order_refunded' => 'All :money of this order has been refunded.',
|
'all_order_refunded' => 'All :money of this order has been refunded.',
|
||||||
'amount' => 'Amount',
|
'amount' => 'Amount',
|
||||||
'attendee_cancelled' => 'Cancelled',
|
'attendee_cancelled' => 'Cancelled',
|
||||||
'attendee_cancelled_help' => 'This attendee has been cancelled',
|
'attendee_cancelled_help' => 'This attendee has been cancelled',
|
||||||
'attendees_file_requirements' => 'File must be .csv and the first line must contain first_name,last_name,email',
|
'attendees_file_requirements' => 'File must be .csv and the first line must contain first_name,last_name,email',
|
||||||
'attendize_qrcode_check_in' => 'Attendize QRCode Check-in',
|
'attendize_qrcode_check_in' => 'Attendize QRCode Check-in',
|
||||||
'cancel_attendee_title' => 'Cancel :cancel',
|
'cancel_attendee_title' => 'Cancel :cancel',
|
||||||
'cancel_description' => 'Cancelling Attendees will remove them from the attendee list.',
|
'cancel_description' => 'Cancelling Attendees will remove them from the attendee list.',
|
||||||
'cancel_notify' => 'Notify :name their ticket has been cancelled.',
|
'cancel_notify' => 'Notify :name their ticket has been cancelled.',
|
||||||
'cancel_order_:ref' => 'Cancel Order: :ref',
|
'cancel_order_:ref' => 'Cancel Order: :ref',
|
||||||
'cancel_refund' => 'If you would like to refund the order which this attendee belongs to you can do so <strong><a href=":url">here</a></strong>.',
|
'cancel_refund' => 'If you would like to refund the order which this attendee belongs to you can do so <strong><a href=":url">here</a></strong>.',
|
||||||
'cancel_refund_user' => 'Refund :name for their ticket.',
|
'cancel_refund_user' => 'Refund :name for their ticket.',
|
||||||
'cant_refund_here' => 'Sorry, you can\'t refund :gateway payments here. You will have to do it on their website.',
|
'cant_refund_here' => 'Sorry, you can\'t refund :gateway payments here. You will have to do it on their website.',
|
||||||
'check-in' => 'Check-In',
|
'check-in' => 'Check-In',
|
||||||
'checkin_search_placeholder' => 'Search by Attendee Name, Order Reference, Attendee Reference...',
|
'checkin_search_placeholder' => 'Search by Attendee Name, Order Reference, Attendee Reference...',
|
||||||
'close' => 'close',
|
'close' => 'close',
|
||||||
'confirm_cancel' => 'Confirm cancel attendee',
|
'confirm_cancel' => 'Confirm cancel attendee',
|
||||||
'confirm_order_cancel' => 'Confirm Order Cancel',
|
'confirm_order_cancel' => 'Confirm Order Cancel',
|
||||||
'create_attendees' => 'Create Attendees',
|
'create_attendees' => 'Create Attendees',
|
||||||
'create_ticket' => 'Create Ticket',
|
'create_ticket' => 'Create Ticket',
|
||||||
'download_pdf_ticket' => 'Download PDF Ticket',
|
'download_pdf_ticket' => 'Download PDF Ticket',
|
||||||
'edit_attendee' => 'Edit Attendee',
|
'edit_attendee' => 'Edit Attendee',
|
||||||
'edit_attendee_title' => 'Edit :attendee',
|
'edit_attendee_title' => 'Edit :attendee',
|
||||||
'edit_order_title' => 'Order: :order_ref',
|
'edit_order_title' => 'Order: :order_ref',
|
||||||
'edit_question' => 'Edit Question',
|
'edit_question' => 'Edit Question',
|
||||||
'edit_ticket' => 'Edit Ticket',
|
'edit_ticket' => 'Edit Ticket',
|
||||||
'end_sale_on' => 'End Sale On',
|
'end_sale_on' => 'End Sale On',
|
||||||
'event_not_live' => 'This event is not visible to the public.',
|
'event_not_live' => 'This event is not visible to the public.',
|
||||||
'event_page' => 'Event Page',
|
'event_page' => 'Event Page',
|
||||||
'event_tools' => 'Event Tools',
|
'event_tools' => 'Event Tools',
|
||||||
'export' => 'Export',
|
'export' => 'Export',
|
||||||
'go_to_attendee_name' => 'Go to attendee :name',
|
'go_to_attendee_name' => 'Go to attendee :name',
|
||||||
'hide_this_ticket' => 'Hide This Ticket',
|
'hide_this_ticket' => 'Hide This Ticket',
|
||||||
'import_file' => 'Import File',
|
'import_file' => 'Import File',
|
||||||
'invite_attendee' => 'Invite Attendee',
|
'invite_attendee' => 'Invite Attendee',
|
||||||
'invite_attendees' => 'Invite Attendees',
|
'invite_attendees' => 'Invite Attendees',
|
||||||
'issue_full_refund' => 'Issue full refund',
|
'issue_full_refund' => 'Issue full refund',
|
||||||
'issue_partial_refund' => 'Issue partial refund',
|
'issue_partial_refund' => 'Issue partial refund',
|
||||||
'manage_order_title' => 'Order: :order_ref',
|
'manage_order_title' => 'Order: :order_ref',
|
||||||
'mark_payment_received' => 'Mark Payment Received',
|
'mark_payment_received' => 'Mark Payment Received',
|
||||||
'maximum_tickets_per_order' => 'Maximum Tickets Per Order',
|
'maximum_tickets_per_order' => 'Maximum Tickets Per Order',
|
||||||
'message_attendee_title' => 'Message :attendee',
|
'message_attendee_title' => 'Message :attendee',
|
||||||
'message_attendees' => 'Message',
|
'message_attendees' => 'Message',
|
||||||
'message_attendees_title' => 'Message Attendees',
|
'message_attendees_title' => 'Message Attendees',
|
||||||
'message_order' => 'Message :order',
|
'message_order' => 'Message :order',
|
||||||
'minimum_tickets_per_order' => 'Minimum Tickets Per Order',
|
'minimum_tickets_per_order' => 'Minimum Tickets Per Order',
|
||||||
'more_options' => 'More options',
|
'more_options' => 'More options',
|
||||||
'no_attendees_matching' => 'No attendees matching',
|
'no_attendees_matching' => 'No attendees matching',
|
||||||
'no_attendees_yet' => 'No Attendees yet',
|
'no_attendees_yet' => 'No Attendees yet',
|
||||||
'no_attendees_yet_text' => 'Attendees will appear here once they successfully registered for your event, or, you can manually invite attendees yourself.',
|
'no_attendees_yet_text' => 'Attendees will appear here once they successfully registered for your event, or, you can manually invite attendees yourself.',
|
||||||
'no_orders_yet' => 'No orders yet',
|
'no_orders_yet' => 'No orders yet',
|
||||||
'no_orders_yet_text' => 'New orders will appear here as they are created.',
|
'no_orders_yet_text' => 'New orders will appear here as they are created.',
|
||||||
'order_contact_will_receive_instructions' => 'The order contact will be instructed to send any reply to :email',
|
'order_contact_will_receive_instructions' => 'The order contact will be instructed to send any reply to :email',
|
||||||
'order_details' => 'Order Details',
|
'order_details' => 'Order Details',
|
||||||
'order_overview' => 'Order Overview',
|
'order_overview' => 'Order Overview',
|
||||||
'order_ref' => 'Order: #:order_ref',
|
'order_ref' => 'Order: #:order_ref',
|
||||||
'order_refunded' => ':money of this order has been refunded.',
|
'order_refunded' => ':money of this order has been refunded.',
|
||||||
'price_placeholder' => 'E.g: 25.99',
|
'price_placeholder' => 'E.g: 25.99',
|
||||||
'print_attendee_list' => 'Print Attendee List',
|
'print_attendee_list' => 'Print Attendee List',
|
||||||
'print_tickets' => 'Print Tickets',
|
'print_tickets' => 'Print Tickets',
|
||||||
'publish_it' => 'Publish it',
|
'publish_it' => 'Publish it',
|
||||||
'qr_instructions' => 'Put the QR code in front of your Camera (Not too close)',
|
'qr_instructions' => 'Put the QR code in front of your Camera (Not too close)',
|
||||||
'quantity_available' => 'Quantity Available',
|
'quantity_available' => 'Quantity Available',
|
||||||
'quantity_available_placeholder' => 'E.g: 100 (Leave blank for unlimited)',
|
'quantity_available_placeholder' => 'E.g: 100 (Leave blank for unlimited)',
|
||||||
'refund_amount' => 'Refund amount',
|
'refund_amount' => 'Refund amount',
|
||||||
'refund_this_order?' => 'Refund this order?',
|
'refund_this_order?' => 'Refund this order?',
|
||||||
'resend_ticket' => 'Resend Ticket',
|
'resend_ticket' => 'Resend Ticket',
|
||||||
'resend_ticket_help' => 'The attendee will be sent another copy of their ticket to :email',
|
'resend_ticket_help' => 'The attendee will be sent another copy of their ticket to :email',
|
||||||
'resend_ticket_to_attendee' => 'Resend Ticket to :attendee',
|
'resend_ticket_to_attendee' => 'Resend Ticket to :attendee',
|
||||||
'resend_tickets' => 'Resend Tickets',
|
'resend_tickets' => 'Resend Tickets',
|
||||||
'result_for' => 'result(s) for',
|
'result_for' => 'result(s) for',
|
||||||
'save_question' => 'Save Question',
|
'save_question' => 'Save Question',
|
||||||
'save_ticket' => 'Save ticket',
|
'save_ticket' => 'Save ticket',
|
||||||
'scan_another_ticket' => 'Scan Another Ticket',
|
'scan_another_ticket' => 'Scan Another Ticket',
|
||||||
'select_all' => 'Select All',
|
'select_all' => 'Select All',
|
||||||
'select_attendee_to_cancel' => 'Select any attendee tickets you wish to cancel.',
|
'select_attendee_to_cancel' => 'Select any attendee tickets you wish to cancel.',
|
||||||
'send_invitation_n_ticket_to_attendees' => 'Send invitation & ticket to attendees',
|
'send_invitation_n_ticket_to_attendees' => 'Send invitation & ticket to attendees',
|
||||||
'send_message' => 'Send Message',
|
'send_message' => 'Send Message',
|
||||||
'send_ticket' => 'Send ticket',
|
'send_ticket' => 'Send ticket',
|
||||||
'start_sale_on' => 'Start Sale On',
|
'start_sale_on' => 'Start Sale On',
|
||||||
'surveys' => 'Surveys',
|
'surveys' => 'Surveys',
|
||||||
'this_order_is_awaiting_payment' => 'This order is awaiting payment.',
|
'this_order_is_awaiting_payment' => 'This order is awaiting payment.',
|
||||||
'ticket' => 'Ticket',
|
'ticket' => 'Ticket',
|
||||||
'ticket_description' => 'Ticket Description',
|
'ticket_description' => 'Ticket Description',
|
||||||
'ticket_price' => 'Ticket Price',
|
'ticket_price' => 'Ticket Price',
|
||||||
'ticket_title' => 'Ticket Title',
|
'ticket_title' => 'Ticket Title',
|
||||||
'ticket_title_placeholder' => 'E.g: General Admission',
|
'ticket_title_placeholder' => 'E.g: General Admission',
|
||||||
'update_order' => 'Update Order',
|
'ticket_date' => 'Ticket Date',
|
||||||
'widgets' => 'Widgets',
|
'update_order' => 'Update Order',
|
||||||
'LLH:obsolete' =>
|
'widgets' => 'Widgets',
|
||||||
array (
|
'LLH:obsolete' =>
|
||||||
'create_question' => 'Create Question',
|
array (
|
||||||
),
|
'create_question' => 'Create Question',
|
||||||
|
),
|
||||||
);
|
);
|
||||||
|
|
@ -1,48 +1,50 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
return array (
|
return array (
|
||||||
'amount_refunded' => 'amount refunded',
|
'amount_refunded' => 'amount refunded',
|
||||||
'fully_refunded' => 'fully refunded',
|
'fully_refunded' => 'fully refunded',
|
||||||
'partially_refunded' => 'partially refunded',
|
'partially_refunded' => 'partially refunded',
|
||||||
'after_order' => 'Message to display to attendees after they have completed their order.',
|
'after_order' => 'Message to display to attendees after they have completed their order.',
|
||||||
'after_order_help' => 'This message will be displayed to attendees once they have successfully completed the checkout process.',
|
'after_order_help' => 'This message will be displayed to attendees once they have successfully completed the checkout process.',
|
||||||
'amount' => 'Amount',
|
'amount' => 'Amount',
|
||||||
'arrived' => 'Arrived',
|
'arrived' => 'Arrived',
|
||||||
'attendee_cancelled' => 'Cancelled',
|
'attendee_cancelled' => 'Cancelled',
|
||||||
'attendee_refunded' => 'Refunded',
|
'attendee_refunded' => 'Refunded',
|
||||||
'awaiting_payment' => 'Awaiting Payment',
|
'awaiting_payment' => 'Awaiting Payment',
|
||||||
'before_order' => 'Message to display to attendees before they complete their order.',
|
'before_order' => 'Message to display to attendees before they complete their order.',
|
||||||
'before_order_help' => 'This message will be displayed to attendees immediately before they finalize their order.',
|
'before_order_help' => 'This message will be displayed to attendees immediately before they finalize their order.',
|
||||||
'booking_fee' => 'Booking Fee',
|
'booking_fee' => 'Booking Fee',
|
||||||
'cancel_order' => 'Cancel Order',
|
'cancel_order' => 'Cancel Order',
|
||||||
'date' => 'Date',
|
'date' => 'Date',
|
||||||
'details' => 'Details',
|
'details' => 'Details',
|
||||||
'edit' => 'Edit',
|
'edit' => 'Edit',
|
||||||
'email' => 'Email',
|
'email' => 'Email',
|
||||||
'enable_offline_payments' => 'Enable Offline Payments',
|
'enable_offline_payments' => 'Enable Offline Payments',
|
||||||
'free' => 'FREE',
|
'free' => 'FREE',
|
||||||
'no_recent_orders' => 'Looks like there are no recent orders.',
|
'no_recent_orders' => 'Looks like there are no recent orders.',
|
||||||
'offline_payment_instructions' => 'Enter instructions on how attendees can make payment offline.',
|
'offline_payment_instructions' => 'Enter instructions on how attendees can make payment offline.',
|
||||||
'offline_payment_settings' => 'Offline Payment Settings',
|
'offline_payment_settings' => 'Offline Payment Settings',
|
||||||
'order_attendees' => 'Order Attendees',
|
'order_attendees' => 'Order Attendees',
|
||||||
'order_date' => 'Order Date',
|
'order_date' => 'Order Date',
|
||||||
'order_page_settings' => 'Order Page Settings',
|
'order_page_settings' => 'Order Page Settings',
|
||||||
'order_ref' => 'Reference',
|
'order_ref' => 'Reference',
|
||||||
'organiser_booking_fees' => 'Organiser Booking Fees',
|
'organiser_booking_fees' => 'Organiser Booking Fees',
|
||||||
'payment_gateway' => 'Payment Gateway',
|
'payment_gateway' => 'Payment Gateway',
|
||||||
'price' => 'Price',
|
'payment_intent' => 'Payment Intent',
|
||||||
'purchase_date' => 'Purchase Date',
|
'payment_failed' => 'Payment failed please try enter your payment details again.',
|
||||||
'quantity' => 'Quantity',
|
'price' => 'Price',
|
||||||
'recent_orders' => 'Recent Orders',
|
'purchase_date' => 'Purchase Date',
|
||||||
'reference' => 'Reference',
|
'quantity' => 'Quantity',
|
||||||
'refund/cancel' => 'Refund / Cancel',
|
'recent_orders' => 'Recent Orders',
|
||||||
'registered' => 'registered',
|
'reference' => 'Reference',
|
||||||
'status' => 'Status',
|
'refund/cancel' => 'Refund / Cancel',
|
||||||
'sub_total' => 'Sub Total',
|
'registered' => 'registered',
|
||||||
'ticket' => 'Ticket',
|
'status' => 'Status',
|
||||||
'tickets' => 'tickets(s)',
|
'sub_total' => 'Sub Total',
|
||||||
'total' => 'Total',
|
'ticket' => 'Ticket',
|
||||||
'transaction_id' => 'Transaction ID',
|
'tickets' => 'tickets(s)',
|
||||||
'view_order' => 'View Order',
|
'total' => 'Total',
|
||||||
'view_order_num' => 'View Order #:num',
|
'transaction_id' => 'Transaction ID',
|
||||||
|
'view_order' => 'View Order',
|
||||||
|
'view_order_num' => 'View Order #:num',
|
||||||
);
|
);
|
||||||
|
|
@ -1,78 +1,79 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'Contact' => 'Contact',
|
'Contact' => 'Contact',
|
||||||
'DETAILS' => 'DETAILS',
|
'DETAILS' => 'DETAILS',
|
||||||
'Facebook' => 'Facebook',
|
'Facebook' => 'Facebook',
|
||||||
'LOCATION' => 'LOCATION',
|
'LOCATION' => 'LOCATION',
|
||||||
'TICKETS' => 'TICKETS',
|
'TICKETS' => 'TICKETS',
|
||||||
'Twitter' => 'Twitter',
|
'Twitter' => 'Twitter',
|
||||||
'Whatsapp' => 'Whatsapp',
|
'Whatsapp' => 'Whatsapp',
|
||||||
'amount' => 'Amount',
|
'amount' => 'Amount',
|
||||||
'at' => '@',
|
'at' => '@',
|
||||||
'attendee_cancelled' => 'Cancelled',
|
'attendee_cancelled' => 'Cancelled',
|
||||||
'below_order_details_header' => '',
|
'below_order_details_header' => '',
|
||||||
'below_payment_information_header' => '',
|
'below_payment_information_header' => '',
|
||||||
'below_tickets' => 'Choose the number of tickets and click "register". On the next screen you\'ll pay for them.',
|
'below_tickets' => 'Choose the number of tickets and click "register". On the next screen you\'ll pay for them.',
|
||||||
'booking_fee' => 'Booking Fee',
|
'booking_fee' => 'Booking Fee',
|
||||||
'booking_fees' => 'Booking Fees',
|
'booking_fees' => 'Booking Fees',
|
||||||
'card_number' => 'Card number',
|
'card_number' => 'Card number',
|
||||||
'checkout_submit' => 'Checkout',
|
'checkout_submit' => 'Checkout',
|
||||||
'confirmation_email' => 'and a confirmation email have been sent to you.',
|
'checkout_order' => 'Contine to Payment',
|
||||||
'copy_buyer' => 'Copy buyer details to all ticket holders',
|
'confirmation_email' => 'and a confirmation email have been sent to you.',
|
||||||
'currently_not_on_sale' => 'Currently Not On Sale',
|
'copy_buyer' => 'Copy buyer details to all ticket holders',
|
||||||
'cvc_number' => 'CVC number',
|
'currently_not_on_sale' => 'Currently Not On Sale',
|
||||||
'date' => 'Date',
|
'cvc_number' => 'CVC number',
|
||||||
'download_tickets' => 'Download Tickets',
|
'date' => 'Date',
|
||||||
'email' => 'Email',
|
'download_tickets' => 'Download Tickets',
|
||||||
'email_address' => 'Email address',
|
'email' => 'Email',
|
||||||
'event_already' => 'This event has :started.',
|
'email_address' => 'Email address',
|
||||||
'event_already_ended' => 'ended',
|
'event_already' => 'This event has :started.',
|
||||||
'event_already_started' => 'already started',
|
'event_already_ended' => 'ended',
|
||||||
'event_dashboard' => 'Event Dashboard',
|
'event_already_started' => 'already started',
|
||||||
'event_details' => 'Event Details',
|
'event_dashboard' => 'Event Dashboard',
|
||||||
'event_not_live' => 'This event page is not available to the public.',
|
'event_details' => 'Event Details',
|
||||||
'expiry_month' => 'Expiry month',
|
'event_not_live' => 'This event page is not available to the public.',
|
||||||
'expiry_year' => 'Expiry year',
|
'expiry_month' => 'Expiry month',
|
||||||
'first_name' => 'First name',
|
'expiry_year' => 'Expiry year',
|
||||||
'free' => 'FREE',
|
'first_name' => 'First name',
|
||||||
'inc_fees' => 'Booking Fees',
|
'free' => 'FREE',
|
||||||
'last_name' => 'Last name',
|
'inc_fees' => 'Booking Fees',
|
||||||
'offline_payment_instructions' => 'Offline payment instructions',
|
'last_name' => 'Last name',
|
||||||
'offline_payment_methods_available' => 'Offline Payment Methods Available',
|
'offline_payment_instructions' => 'Offline payment instructions',
|
||||||
'order_attendees' => 'Order attendees',
|
'offline_payment_methods_available' => 'Offline Payment Methods Available',
|
||||||
'order_awaiting_payment' => 'This order is awaiting payment. Please read the below instructions on how to make payment.',
|
'order_attendees' => 'Order attendees',
|
||||||
'order_details' => 'Order Details',
|
'order_awaiting_payment' => 'This order is awaiting payment. Please read the below instructions on how to make payment.',
|
||||||
'order_items' => 'Order items',
|
'order_details' => 'Order Details',
|
||||||
'order_summary' => 'Order Summary',
|
'order_items' => 'Order items',
|
||||||
'organiser_dashboard' => 'Organiser Dashboard',
|
'order_summary' => 'Order Summary',
|
||||||
'pay_using_offline_methods' => 'Pay using offline methods',
|
'organiser_dashboard' => 'Organiser Dashboard',
|
||||||
'payment_information' => 'Payment Information',
|
'pay_using_offline_methods' => 'Pay using offline methods',
|
||||||
'payment_instructions' => 'Payment instructions',
|
'payment_information' => 'Payment Information',
|
||||||
'presents' => 'presents',
|
'payment_instructions' => 'Payment instructions',
|
||||||
'price' => 'Price',
|
'presents' => 'presents',
|
||||||
'quantity_full' => 'Quantity',
|
'price' => 'Price',
|
||||||
'reference' => 'Reference',
|
'quantity_full' => 'Quantity',
|
||||||
'refunded_amount' => 'Refunded amount',
|
'reference' => 'Reference',
|
||||||
'register' => 'Register',
|
'refunded_amount' => 'Refunded amount',
|
||||||
'sales_have_ended' => 'Sales Have Ended',
|
'register' => 'Register',
|
||||||
'sales_have_not_started' => 'Sales Have Not Started',
|
'sales_have_ended' => 'Sales Have Ended',
|
||||||
'send_message_submit' => 'Send message',
|
'sales_have_not_started' => 'Sales Have Not Started',
|
||||||
'share_event' => 'Share Event',
|
'send_message_submit' => 'Send message',
|
||||||
'sold_out' => 'Sold Out',
|
'share_event' => 'Share Event',
|
||||||
'sub_total' => 'Sub total',
|
'sold_out' => 'Sold Out',
|
||||||
'thank_you_for_your_order' => 'Thank you for your order!',
|
'sub_total' => 'Sub total',
|
||||||
'ticket' => 'Ticket',
|
'thank_you_for_your_order' => 'Thank you for your order!',
|
||||||
'ticket_holder_information' => 'Ticket Holder Information',
|
'ticket' => 'Ticket',
|
||||||
'ticket_holder_n' => 'Ticket Holder :n Details',
|
'ticket_holder_information' => 'Ticket Holder Information',
|
||||||
'ticket_price' => 'Ticket Price',
|
'ticket_holder_n' => 'Ticket Holder :n Details',
|
||||||
'tickets' => 'Ticket(s)',
|
'ticket_price' => 'Ticket Price',
|
||||||
'tickets_are_currently_unavailable' => 'Tickets are currently unavailable',
|
'tickets' => 'Ticket(s)',
|
||||||
'time' => 'Please note you only have :time to complete this transaction before your tickets are re-released.',
|
'tickets_are_currently_unavailable' => 'Tickets are currently unavailable',
|
||||||
'total' => 'Total',
|
'time' => 'Please note you only have :time to complete this transaction before your tickets are re-released.',
|
||||||
'your_email_address' => 'Your e-mail address',
|
'total' => 'Total',
|
||||||
'your_information' => 'Your information',
|
'your_email_address' => 'Your e-mail address',
|
||||||
'your_message' => 'Your message',
|
'your_information' => 'Your information',
|
||||||
'your_name' => 'Your name',
|
'your_message' => 'Your message',
|
||||||
'your' => 'Your'
|
'your_name' => 'Your name',
|
||||||
|
'your' => 'Your'
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -1,62 +1,62 @@
|
||||||
<?php
|
<?php
|
||||||
/*************************************************************************
|
/*************************************************************************
|
||||||
Generated via "php artisan localization:missing" at 2018/04/26 11:05:24
|
Generated via "php artisan localization:missing" at 2018/04/26 11:05:24
|
||||||
*************************************************************************/
|
*************************************************************************/
|
||||||
|
|
||||||
return array (
|
return array (
|
||||||
//==================================== Translations ====================================//
|
//==================================== Translations ====================================//
|
||||||
'action' => 'Action',
|
'action' => 'Hereket',
|
||||||
'affiliates' => 'Affiliates',
|
'affiliates' => 'Hyzmatdaşlar',
|
||||||
'attendees' => 'Attendees',
|
'attendees' => 'Gatnaşyjylar',
|
||||||
'back_to_login' => 'Back to login',
|
'back_to_login' => 'Yza girmek',
|
||||||
'back_to_page' => 'Back To :page',
|
'back_to_page' => 'Yza :page',
|
||||||
'cancel' => 'Cancel',
|
'cancel' => 'Yza',
|
||||||
'customize' => 'Customize',
|
'customize' => 'Üýtgetmek',
|
||||||
'dashboard' => 'Dashboard',
|
'dashboard' => 'Panel',
|
||||||
'days' => 'days',
|
'days' => 'günler',
|
||||||
'disable' => 'Disable',
|
'disable' => 'Öçürmek',
|
||||||
'disabled' => 'Disabled',
|
'disabled' => 'Öçük',
|
||||||
'drag_to_reorder' => 'Drag to re-order',
|
'drag_to_reorder' => 'Ýerleri üýtgetmek üçin çekiň',
|
||||||
'edit' => 'Edit',
|
'edit' => 'Üýtgetmek',
|
||||||
'enable' => 'Enable',
|
'enable' => 'Açmak',
|
||||||
'enabled' => 'Enabled',
|
'enabled' => 'Açyk',
|
||||||
'error_404' => 'Looks like the page you are looking for no longer exists or has moved.',
|
'error_404' => 'Siziň gözleýän sahypaňyz indi ýok ýa-da başga ýere ýerleşdirildi.',
|
||||||
'event_dashboard' => 'Event Dashboard',
|
'event_dashboard' => 'Çäräniň paneli',
|
||||||
'event_page_design' => 'Event Page Design',
|
'event_page_design' => 'Çäräniň sahypasynyň dizaýny',
|
||||||
'export' => 'Export',
|
'export' => 'Eksport',
|
||||||
'general' => 'General',
|
'general' => 'Adaty',
|
||||||
'hours' => 'hours',
|
'hours' => 'sagatlar',
|
||||||
'main_menu' => 'Main Menu',
|
'main_menu' => 'Esasy Menu',
|
||||||
'manage' => 'Manage',
|
'manage' => 'Manage',
|
||||||
'message' => 'Message',
|
'message' => 'Message',
|
||||||
'minutes' => 'minutes',
|
'minutes' => 'minutes',
|
||||||
'months_short' => '|Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec|',
|
'months_short' => '|Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec|',
|
||||||
'no' => 'No',
|
'no' => 'No',
|
||||||
'order_form' => 'Order Form',
|
'order_form' => 'Order Form',
|
||||||
'orders' => 'Orders',
|
'orders' => 'Orders',
|
||||||
'promote' => 'Promote',
|
'promote' => 'Promote',
|
||||||
'save_changes' => 'Save Changes',
|
'save_changes' => 'Save Changes',
|
||||||
'save_details' => 'Save Details',
|
'save_details' => 'Save Details',
|
||||||
'service_fees' => 'Service Fees',
|
'service_fees' => 'Service Fees',
|
||||||
'social' => 'Social',
|
'social' => 'Social',
|
||||||
'submit' => 'Submit',
|
'submit' => 'Submit',
|
||||||
'success' => 'Success',
|
'success' => 'Success',
|
||||||
'ticket_design' => 'Ticket Design',
|
'ticket_design' => 'Ticket Design',
|
||||||
'tickets' => 'Tickets',
|
'tickets' => 'Tickets',
|
||||||
'TOP' => 'TOP',
|
'TOP' => 'TOP',
|
||||||
'total' => 'total',
|
'total' => 'total',
|
||||||
'whoops' => 'Whoops!',
|
'whoops' => 'Whoops!',
|
||||||
'yes' => 'Yes',
|
'yes' => 'Yes',
|
||||||
'no' => 'No',
|
'no' => 'No',
|
||||||
/*
|
/*
|
||||||
* Lines below will turn obsolete in localization helper, it is declared in app/Helpers/macros.
|
* Lines below will turn obsolete in localization helper, it is declared in app/Helpers/macros.
|
||||||
* If you run it, it will break file input fields.
|
* If you run it, it will break file input fields.
|
||||||
*/
|
*/
|
||||||
'upload' => 'Upload',
|
'upload' => 'Upload',
|
||||||
'browse' => 'Browse',
|
'browse' => 'Browse',
|
||||||
//================================== Obsolete strings ==================================//
|
//================================== Obsolete strings ==================================//
|
||||||
'LLH:obsolete' =>
|
'LLH:obsolete' =>
|
||||||
array (
|
array (
|
||||||
'months_long' => 'Ýanwar|Fewral|Mart|Aprel|Maý|Iýun|Iýul|Awgust|Sentýabr|Oktýabr|Noýabr|Dekabr',
|
'months_long' => 'January|February|March|April|May|June|July|August|September|October|November|December',
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
@ -6,25 +6,25 @@
|
||||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url({{asset('assets/images/overlay/1.svg')}})">
|
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url({{asset('assets/images/overlay/1.svg')}})">
|
||||||
<div class="overlay-details smalll">
|
<div class="overlay-details smalll">
|
||||||
<h2 class="title">{{$event->title}}</h2>
|
<h2 class="title">{{$event->title}}</h2>
|
||||||
<h4 class="date">В кино с {{$event->start_date->formatLocalized('%d %B')}} </h4>
|
<h4 class="date">{{__('ClientSide.starting')}} {{$event->start_date->formatLocalized('%d %B')}} </h4>
|
||||||
<div class="overlay-details-bottom-part">
|
<div class="overlay-details-bottom-part">
|
||||||
<a href="" class="share">
|
<a href="" class="share">
|
||||||
<svg class="Shape" viewBox="0 0 30.504 33.893" fill="#ffffff" width="35px">
|
<svg class="Shape" viewBox="0 0 30.504 33.893" fill="#ffffff" width="35px">
|
||||||
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
||||||
</path>
|
</path>
|
||||||
</svg>
|
</svg>
|
||||||
Share</a>
|
{{__('ClientSide.share')}}</a>
|
||||||
<a href="" class="like">
|
<a href="" class="like">
|
||||||
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="35px">
|
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="35px">
|
||||||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||||
</path>
|
</path>
|
||||||
</svg>
|
</svg>
|
||||||
{{$event->views}} Views</a>
|
{{$event->views}} {{__('ClientSide.views')}}</a>
|
||||||
<div class="buy-btn-wrap">
|
<div class="buy-btn-wrap">
|
||||||
<a href="{{$event->event_url}}" class="buy-btn">Купить билет</a>
|
<a href="{{$event->event_url}}" class="buy-btn">{{__('ClientSide.buy_ticket')}}</a>
|
||||||
</div>
|
</div>
|
||||||
@if(!empty($event->starting_ticket))
|
@if(!empty($event->starting_ticket))
|
||||||
<span class="cost">Цена ot: {{$event->starting_ticket->first()->price ?? 'n/a'}} TMT</span>
|
<span class="cost">{{__('ClientSide.prices_from')}}: {{$event->starting_ticket->first()->price ?? 'n/a'}} TMT</span>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -13,18 +13,18 @@
|
||||||
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
||||||
</path>
|
</path>
|
||||||
</svg>
|
</svg>
|
||||||
Share</a>
|
{{__('ClientSide.share')}}</a>
|
||||||
<a href="" class="like">
|
<a href="" class="like">
|
||||||
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="20px">
|
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="20px">
|
||||||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||||
</path>
|
</path>
|
||||||
</svg>
|
</svg>
|
||||||
{{$event->views}} Views</a>
|
{{$event->views}} {{__('ClientSide.views')}}</a>
|
||||||
<div class="buy-btn-wrap">
|
<div class="buy-btn-wrap">
|
||||||
<a href="{{$event->event_url}}" class="buy-btn">Купить билет</a>
|
<a href="{{$event->event_url}}" class="buy-btn">{{__('ClientSide.buy_ticket')}}</a>
|
||||||
</div>
|
</div>
|
||||||
@if(!empty($event->starting_ticket))
|
@if(!empty($event->starting_ticket))
|
||||||
<span class="cost">Цена ot: {{$event->starting_ticket->first()->price ?? 'n/a'}} TMT</span>
|
<span class="cost">{{__('ClientSide.buy_ticket')}}: {{$event->starting_ticket->first()->price ?? 'n/a'}} TMT</span>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -57,7 +57,7 @@
|
||||||
$('#datepicker').datepicker({
|
$('#datepicker').datepicker({
|
||||||
uiLibrary: 'bootstrap4',
|
uiLibrary: 'bootstrap4',
|
||||||
icons: {
|
icons: {
|
||||||
rightIcon: 'Дата <i class="fa fa-caret-down"></i>'
|
rightIcon: '{{__("ClientSide.date")}} <i class="fa fa-caret-down"></i>'
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,7 @@
|
||||||
$('#datepicker').datepicker({
|
$('#datepicker').datepicker({
|
||||||
uiLibrary: 'bootstrap4',
|
uiLibrary: 'bootstrap4',
|
||||||
icons: {
|
icons: {
|
||||||
rightIcon: 'Дата <i class="fa fa-caret-down"></i>'
|
rightIcon: '{{__("ClientSide.date")}} <i class="fa fa-caret-down"></i>'
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url({{asset('assets/images/overlay/1.svg')}})">
|
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url({{asset('assets/images/overlay/1.svg')}})">
|
||||||
<div class="overlay-details">
|
<div class="overlay-details">
|
||||||
<h2 class="title">{{$event->title}}</h2>
|
<h2 class="title">{{$event->title}}</h2>
|
||||||
<h4 class="date">В кино с {{$event->start_date->formatLocalized('%d %B')}} </h4>
|
<h4 class="date">{{__("ClientSide.starting")}} {{$event->start_date->formatLocalized('%d %B')}} </h4>
|
||||||
@if(isset($size))
|
@if(isset($size))
|
||||||
<p class="description">{!! Markdown::parse($event->description) !!}</p>
|
<p class="description">{!! Markdown::parse($event->description) !!}</p>
|
||||||
@endif
|
@endif
|
||||||
|
|
@ -21,12 +21,12 @@
|
||||||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||||
</path>
|
</path>
|
||||||
</svg>
|
</svg>
|
||||||
{{$event->views}} Views</a>
|
{{$event->views}} {{__("ClientSide.views")}}</a>
|
||||||
<div class="buy-btn-wrap">
|
<div class="buy-btn-wrap">
|
||||||
<a href="{{$event->event_url}}" class="buy-btn">Купить билет</a>
|
<a href="{{$event->event_url}}" class="buy-btn">{{__("ClientSide.buy_ticket")}}</a>
|
||||||
</div>
|
</div>
|
||||||
@if(!empty($event->starting_ticket))
|
@if(!empty($event->starting_ticket))
|
||||||
<span class="cost">Цена ot: {{$event->starting_ticket->first()->price ?? 'n/a'}} TMT</span>
|
<span class="cost">{{__("ClientSide.prices_from")}}: {{$event->starting_ticket->first()->price ?? 'n/a'}} TMT</span>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -17,8 +17,8 @@
|
||||||
</div>
|
</div>
|
||||||
@if($event->starting_ticket_price)
|
@if($event->starting_ticket_price)
|
||||||
<div class="buy_and_salary">
|
<div class="buy_and_salary">
|
||||||
<span class="cost">Цена ot: {{$event->starting_ticket_price}} TMT</span>
|
<span class="cost">{{__("ClientSide.prices_from")}}: {{$event->starting_ticket_price}} TMT</span>
|
||||||
<a class="btn btn-danger buy_button" href="{{$event->event_url}}">Купить</a>
|
<a class="btn btn-danger buy_button" href="{{$event->event_url}}">{{__("ClientSide.buy_ticket")}}</a>
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -3,29 +3,29 @@
|
||||||
<ul class="nav u-nav-v1-1 g-mb-20 category-filter" data-btn-classes="btn btn-md btn-block rounded-0 u-btn-outline-lightgray g-mb-20">
|
<ul class="nav u-nav-v1-1 g-mb-20 category-filter" data-btn-classes="btn btn-md btn-block rounded-0 u-btn-outline-lightgray g-mb-20">
|
||||||
|
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link active" href="{{$category->customUrl(['sort'=>'popular','start'=>$start,'end'=>$end])}}">Популярное</a>
|
<a class="nav-link active" href="{{$category->customUrl(['sort'=>'popular','start'=>$start,'end'=>$end])}}">{{__("ClientSide.popular")}}</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link" href="{{$category->customUrl(['sort'=>'new','start'=>$start,'end'=>$end])}}">Новые</a>
|
<a class="nav-link" href="{{$category->customUrl(['sort'=>'new','start'=>$start,'end'=>$end])}}">{{__('ClientSide.new')}}</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item dropdown">
|
<li class="nav-item dropdown">
|
||||||
<a class="nav-link dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" role="tab">Filter <i class="fa fa-caret-down"></i></a>
|
<a class="nav-link dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" role="tab">{{__('ClientSide.filter')}} <i class="fa fa-caret-down"></i></a>
|
||||||
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
|
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
|
||||||
<a class="dropdown-item nav-link"
|
<a class="dropdown-item nav-link"
|
||||||
href="{{$category->customUrl(['sort'=>$sort,'start'=>Carbon::now(),'end'=>Carbon::today()->endOfDay()])}}" >Today</a>
|
href="{{$category->customUrl(['sort'=>$sort,'start'=>Carbon::now(),'end'=>Carbon::today()->endOfDay()])}}" >{{__('ClientSide.today')}}</a>
|
||||||
<a class="dropdown-item nav-link"
|
<a class="dropdown-item nav-link"
|
||||||
href="{{$category->customUrl(['sort'=>$sort,'start'=>Carbon::tomorrow(),'end'=>Carbon::tomorrow()->endOfDay()])}}" >Tomorrow</a>
|
href="{{$category->customUrl(['sort'=>$sort,'start'=>Carbon::tomorrow(),'end'=>Carbon::tomorrow()->endOfDay()])}}" >{{__('ClientSide.tomorrow')}}</a>
|
||||||
<a class="dropdown-item nav-link"
|
<a class="dropdown-item nav-link"
|
||||||
href="{{$category->customUrl(['sort'=>$sort,'start'=>Carbon::now(),'end'=>Carbon::today()->endOfWeek()])}}" >This week</a>
|
href="{{$category->customUrl(['sort'=>$sort,'start'=>Carbon::now(),'end'=>Carbon::today()->endOfWeek()])}}" >{{__('ClientSide.week')}}</a>
|
||||||
<a class="dropdown-item nav-link"
|
<a class="dropdown-item nav-link"
|
||||||
href="{{$category->customUrl(['sort'=>$sort,'start'=>Carbon::now(),'end'=>Carbon::today()->endOfMonth()])}}" >This month</a>
|
href="{{$category->customUrl(['sort'=>$sort,'start'=>Carbon::now(),'end'=>Carbon::today()->endOfMonth()])}}" >{{__('ClientSide.month')}}</a>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item dropdown" style="position: relative; margin-left: -20px;">
|
<li class="nav-item dropdown" style="position: relative; margin-left: -20px;">
|
||||||
<form action="{{$category->url}}" method="post" class="calendar-form">
|
<form action="{{$category->url}}" method="post" class="calendar-form">
|
||||||
@csrf
|
@csrf
|
||||||
{{--<a class="nav-link dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" role="tab">Дата <i class="fa fa-caret-down"></i></a>--}}
|
{{--<a class="nav-link dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" role="tab">Дата <i class="fa fa-caret-down"></i></a>--}}
|
||||||
<input id="datepicker" placeholder="Select date" name="date"/>
|
<input id="datepicker" placeholder="{{__('ClientSide.select')}}" name="date"/>
|
||||||
</form>
|
</form>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
<div class="tab-header d-flex justify-content-between col-12 px-0">
|
<div class="tab-header d-flex justify-content-between col-12 px-0">
|
||||||
<h2 class="">{{$cinema->title}}</h2>
|
<h2 class="">{{$cinema->title}}</h2>
|
||||||
<div style="height: 5px; position: absolute; bottom: 0; width: 100px; background-color: rgba(211,61,51,1)"></div>
|
<div style="height: 5px; position: absolute; bottom: 0; width: 100px; background-color: rgba(211,61,51,1)"></div>
|
||||||
<a class="" href="{{$cinema->url}}">Посмотреть все</a>
|
<a class="" href="{{$cinema->url}}">{{__('ClientSide.view')}}</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="tab-ozi col-12 px-0">
|
<div class="tab-ozi col-12 px-0">
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
<div class="tab-header d-flex justify-content-between col-12">
|
<div class="tab-header d-flex justify-content-between col-12">
|
||||||
<h2 class="">{{$musical->title}}</h2>
|
<h2 class="">{{$musical->title}}</h2>
|
||||||
<div style="height: 5px; margin-left: 5px; position: absolute; bottom: 0px; width: 100px; background-color: #ffffff"></div>
|
<div style="height: 5px; margin-left: 5px; position: absolute; bottom: 0px; width: 100px; background-color: #ffffff"></div>
|
||||||
<a class="" href="{{$musical->url}}">Посмотреть все</a>
|
<a class="" href="{{$musical->url}}">{{__('ClientSide.view')}}</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="tab-ozi col-12">
|
<div class="tab-ozi col-12">
|
||||||
<!-- End Nav tabs -->
|
<!-- End Nav tabs -->
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
<div class="tab-header d-flex justify-content-between col-12">
|
<div class="tab-header d-flex justify-content-between col-12">
|
||||||
<h2 class="font-weight-bold">{{$theatre->title}}</h2>
|
<h2 class="font-weight-bold">{{$theatre->title}}</h2>
|
||||||
<div style="height: 5px; position: absolute; bottom: 10px; width: 100px; background-color: rgba(211,61,51,1)"></div>
|
<div style="height: 5px; position: absolute; bottom: 10px; width: 100px; background-color: rgba(211,61,51,1)"></div>
|
||||||
<a class="teatr-show-more m-0" href="{{$theatre->url}}">Посмотреть все</a>
|
<a class="teatr-show-more m-0" href="{{$theatre->url}}">{{__('ClientSide.view')}}</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="tab-ozi col-12 pt-4">
|
<div class="tab-ozi col-12 pt-4">
|
||||||
<div class="kinoteator-tab1-wrapper">
|
<div class="kinoteator-tab1-wrapper">
|
||||||
|
|
|
||||||
|
|
@ -7,13 +7,13 @@
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<ul style="padding-left: 30px">
|
<ul style="padding-left: 30px">
|
||||||
<li>
|
<li>
|
||||||
<a href="">Главная</a>
|
<a href="">{{__('ClientSide.home')}}</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<i class="fa fa-caret-right"></i>
|
<i class="fa fa-caret-right"></i>
|
||||||
</li>
|
</li>
|
||||||
<li class="page-name">
|
<li class="page-name">
|
||||||
<a href="">Билеты на кинотеатры</a>
|
<a href="">{{__("ClientSide.for_cinema")}}</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -27,24 +27,24 @@
|
||||||
<div class="col-md-4 col-lg-4 col-4">
|
<div class="col-md-4 col-lg-4 col-4">
|
||||||
|
|
||||||
<select id='vybor_select' >
|
<select id='vybor_select' >
|
||||||
<option class="cat_op" >На этой недели</option>
|
<option class="cat_op" >{{__('ClientSide.week')}}</option>
|
||||||
<option class="cat_op">Исполнители</option>
|
<option class="cat_op">{{__('ClientSide.composers')}}</option>
|
||||||
<option class="cat_op">Мероприятие</option>
|
<option class="cat_op">{{__('ClientSide.events')}}</option>
|
||||||
<option class="cat_op">Концерты</option>
|
<option class="cat_op">{{__('ClientSide.concerts')}}</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-8 col-lg-8 col-8">
|
<div class="col-md-8 col-lg-8 col-8">
|
||||||
<div id='cat_buts'>
|
<div id='cat_buts'>
|
||||||
<button class="active_cat_but cat_but">Альтернатива</button>
|
<button class="active_cat_but cat_but">{{__('ClientSide.alternatives')}}</button>
|
||||||
<button class="cat_but">Барды</button>
|
<button class="cat_but">{{__('ClientSide.bards')}}</button>
|
||||||
<button class="cat_but">Джаз & блюз</button>
|
<button class="cat_but">{{__('ClientSide.jazz')}}</button>
|
||||||
<button class="cat_but">Другие</button>
|
<button class="cat_but">{{__('ClientSide.others')}}</button>
|
||||||
<button class="cat_but">Кино</button>
|
<button class="cat_but">{{__('ClientSide.movies')}}</button>
|
||||||
<button class="cat_but">Классическая музыка</button>
|
<button class="cat_but">{{__('ClientSide.classic')}}</button>
|
||||||
<button class="cat_but">Музыкальный спектакль</button>
|
<button class="cat_but">{{__('ClientSide.music')}}</button>
|
||||||
<button class="cat_but">Мюзикл</button>
|
<button class="cat_but">{{__('ClientSide.musical')}}</button>
|
||||||
<button class="cat_but">Опера и Балет</button>
|
<button class="cat_but">{{__('ClientSide.ballet')}}</button>
|
||||||
<button class="cat_but">Оперетта</button>
|
<button class="cat_but">{{__('ClientSide.operetta')}}</button>
|
||||||
<button class="cat_but">Поп и Эстрада</button>
|
<button class="cat_but">Поп и Эстрада</button>
|
||||||
<button class="cat_but">РЕЙВ</button>
|
<button class="cat_but">РЕЙВ</button>
|
||||||
<button class="cat_but">Рок</button>
|
<button class="cat_but">Рок</button>
|
||||||
|
|
|
||||||
|
|
@ -69,9 +69,9 @@
|
||||||
<li class="dropdown pull-right">
|
<li class="dropdown pull-right">
|
||||||
<a href="" class="dropdown-toggle" data-toggle="dropdown"><img src="{{asset('assets/images/icons/globe.svg')}}"> Русский <i class="fa fa-caret-down"></i></a>
|
<a href="" class="dropdown-toggle" data-toggle="dropdown"><img src="{{asset('assets/images/icons/globe.svg')}}"> Русский <i class="fa fa-caret-down"></i></a>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
<li><a href="">Русский</a></li>
|
<li><a href="/setLocale/ru">Русский</a></li>
|
||||||
<li><a href="">Туркменский</a></li>
|
<li><a href="/setLocale/tk">Туркменский</a></li>
|
||||||
<li><a href="">English</a></li>
|
<li><a href="/setLocale/en">English</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<div class="clearfix"></div>
|
<div class="clearfix"></div>
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,7 @@
|
||||||
<meta property="price"
|
<meta property="price"
|
||||||
content="{{ number_format($ticket->price, 2, '.', '') }}">
|
content="{{ number_format($ticket->price, 2, '.', '') }}">
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<img class="img-responsive" alt="{{$event->venue->venue_name}} - {{$ticket->section->section_no}}"
|
<img style="max-width: 60%;" class="img-responsive" alt="{{$event->venue->venue_name}} - {{$ticket->section->section_no}}"
|
||||||
src="{{asset('user_content/'.$ticket->section->section_image)}}" >
|
src="{{asset('user_content/'.$ticket->section->section_image)}}" >
|
||||||
</div>
|
</div>
|
||||||
@if($ticket->is_paused)
|
@if($ticket->is_paused)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue