2021-01-22 20:58:46 +00:00
|
|
|
<?php
|
|
|
|
|
2022-06-12 01:28:43 +00:00
|
|
|
define('TITLES', [
|
|
|
|
'index' => 'niver',
|
|
|
|
'auth' => [
|
|
|
|
'index' => 'Authentification',
|
|
|
|
'login' => 'Se connecter',
|
|
|
|
'register' => 'Créer un compte',
|
|
|
|
'password' => 'Changer la clé de passe',
|
|
|
|
'logout' => 'Déconnexion',
|
|
|
|
],
|
|
|
|
'reg' => [
|
|
|
|
'index' => 'Registre',
|
|
|
|
'register' => 'Enregistrer un nouveau domaine',
|
|
|
|
'unregister' => 'Effacer un domaine',
|
|
|
|
'ns' => 'Ajouter un enregistrement NS',
|
|
|
|
'ds' => 'Ajouter un enregistrement DS',
|
|
|
|
'glue' => 'Créer un Glue Record',
|
|
|
|
],
|
|
|
|
'ns' => [
|
|
|
|
'index' => 'Serveurs de noms',
|
|
|
|
'zone-add' => 'Ajouter une zone',
|
|
|
|
'zone-del' => 'Effacer une zone',
|
|
|
|
'dnssec' => 'Afficher les enregistrements DS',
|
|
|
|
'ip' => 'Enregistrements A et AAAA',
|
|
|
|
'ns' => 'Enregistrement NS',
|
|
|
|
'txt' => 'Enregistrement TXT',
|
|
|
|
'caa' => 'Enregistrement CAA',
|
|
|
|
'srv' => 'Enregistrement SRV',
|
|
|
|
'mx' => 'Enregistrement MX',
|
|
|
|
'sshfp' => 'Enregistrement SSHFP',
|
|
|
|
'tlsa' => 'Enregistrement TLSA',
|
|
|
|
],
|
|
|
|
'ht' => [
|
|
|
|
'index' => 'Hypertexte',
|
|
|
|
'add-http-onion' => 'Ajouter un accès HTTP par Onion',
|
|
|
|
'add-http-dns' => 'Ajouter un accès HTTP par DNS+TLS',
|
|
|
|
'del-http-onion' => 'Retirer un accès HTTP par Onion',
|
|
|
|
'del-http-dns' => 'Retirer un accès HTTP par DNS+TLS',
|
|
|
|
'le' => 'Installer un certificat Let\'s Encrypt',
|
|
|
|
],
|
|
|
|
]
|
|
|
|
);
|
2021-01-22 20:58:46 +00:00
|
|
|
|
2022-06-12 01:28:43 +00:00
|
|
|
if (SERVICE !== '') {
|
|
|
|
$page['service'] = TITLES[SERVICE]['index'];
|
|
|
|
if (PAGE !== 'index')
|
|
|
|
$page['title'] = TITLES[SERVICE][PAGE];
|
2021-01-22 20:58:46 +00:00
|
|
|
}
|