11 lines
258 B
PHP
Executable File
11 lines
258 B
PHP
Executable File
<?php
|
|
$lv = !$langBully ? "lang" : "bully";
|
|
${$lv}['session'] = array (
|
|
'welcome_back' => "Bentornato",
|
|
'logout' => "Logout",
|
|
'your_account' => "Il tuo Account",
|
|
'welcome_guest' => "Benvenuto Visitatore",
|
|
'login' => "Login",
|
|
'register' => "Registrati"
|
|
);
|
|
?>
|