Files
vij/lang.php
2025-09-03 00:00:47 +03:00

77 lines
3.4 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
function vij_lang($name, $lan){
//vij_logo.svg
static $lang_ru = [
'link_version' => '/',
'path_logo' => '/pub/logo/vij_logo.svg',
'mainmenu' => 'topmenu',
'mob_rub_menu' => 'mob_rubrics',
'mob_main_menu' => 'topmobmenu',
'gamburger' => 5089,
'btn_lan' => 'EN',
'btn_lan_link' => '/en/',
'back_btn_rubric_menu' => 'назад',
'alt_logo' => 'Ветеринария и жизнь. Информационный портал и газета',
'conf_politic' => 'Политика конфиденциальности',
'copyright' => 'Ветеринария и жизнь',
'subscript_btn' => 'Газета ВиЖ. Купить',
'svid_smi' => 'Свидетельство о регистрации СМИ',
'copyright_text' => 'При перепечатке и использовании информации с сайта «Ветеринария и жизнь» активная ссылка на использованный материал обязательна. При использовании материалов в печатных СМИ указывать источник — «Ветеринария и жизнь»',
'email_btn' => 'Подписаться',
'email_title' => 'Подпишитесь на нашу рассылку и будьте в курсе всех новостей',
'your_mail' => 'Введите эл. почту',
'gazeta' => 'Читать газету<br>«Ветеринария и Жизнь»',
'up_bth' => 'наверх',
'qrtitle' => 'Важно',
'archives' => 'Архив номеров',
'more' => 'Еще по теме',
'next' => 'Далее',
'prev' => 'Обратно'
];
static $lang_en = [
'link_version' => '/en/',
'path_logo' => '/pub/logo/vl_logo.svg',
'mainmenu' => 'topenmenu',
'mob_rub_menu' => 'mob_rubrics_en',
'mob_main_menu' => 'topenmenu',
'gamburger' => 4838,
'btn_lan' => 'РУС',
'btn_lan_link' => '/',
'back_btn_rubric_menu' => 'back',
'alt_logo' => 'Veterinary Medicine and Life. Online news outlet and newspaper',
'conf_politic' => 'Privacy Policy',
'copyright' => 'Veterinary Medicine and Life',
'subscript_btn' => 'Subscription to the Veterinary Medicine and Life newspaper',
'svid_smi' => 'Media Registration Certificate',
'copyright_text' => 'It is required to provide a valid URL when reprinting and using information from the Veterinary Medicine and Life website. When using materials in print media, indicate the source - Veterinary Medicine and Life',
'email_btn' => 'Sign up',
'email_title' => 'Sign up to our newsletter to get the latest updates on your favourite topics from the Veterinary Medicine and Life',
'your_mail' => 'Your email',
'gazeta' => 'Veterinary Medicine and Life newspaper',
'up_bth' => 'UP',
'qrtitle' => 'important',
'archives' => 'Archives',
'more' => 'Read more about',
'next' => 'Next',
'prev' => 'Prev'
];
if ($lan == 'ru' and isset($lang_ru[$name])){
return $lang_ru[$name];
}
elseif ($lan == 'en' and isset($lang_ru[$name])){
return $lang_en[$name];
}
}