1 | <?php |
---|
2 | |
---|
3 | // This is a SPIP language file -- Ceci est un fichier langue de SPIP |
---|
4 | if (!defined("_ECRIRE_INC_VERSION")) return; |
---|
5 | |
---|
6 | $GLOBALS[$GLOBALS['idx_lang']] = array( |
---|
7 | |
---|
8 | // categories |
---|
9 | 'date' => 'Agendas, calendrier, dates', |
---|
10 | 'auteur' => 'Auteurs, authentification, autorisation', |
---|
11 | 'divers' => 'Divers', |
---|
12 | 'configuration' => 'Configuration', |
---|
13 | 'communication' => 'Interactivité, communication, messagerie', |
---|
14 | 'multimedia' => 'Galerie, multimédia, images', |
---|
15 | 'edition' => 'Rédaction, édition, impression', |
---|
16 | 'maintenance' => 'Maintenance, configuration', |
---|
17 | 'navigation' => 'Navigation, recherche, organisation', |
---|
18 | 'outil' => 'Outils de développement', |
---|
19 | 'performance' => 'Sécurité, optimisation, performances', |
---|
20 | 'sans_categorie' => 'Aucune catégorie définie', |
---|
21 | 'squelette' => 'Squelette', |
---|
22 | 'statistique' => 'Statistiques, référencement', |
---|
23 | 'theme' => 'Thème', |
---|
24 | |
---|
25 | ); |
---|
26 | |
---|
27 | ?> |
---|