xref: /plugin/searchindex/lang/fr/lang.php (revision 574ac1d69add385cf215b893706d67f63cab9e9d)
1*574ac1d6SChristophe Martin<?php
2*574ac1d6SChristophe Martin/**
3*574ac1d6SChristophe Martin * French language file
4*574ac1d6SChristophe Martin */
5*574ac1d6SChristophe Martin
6*574ac1d6SChristophe Martin// settings must be present and set appropriately for the language
7*574ac1d6SChristophe Martin$lang['encoding']   = 'utf-8';
8*574ac1d6SChristophe Martin$lang['direction']  = 'ltr';
9*574ac1d6SChristophe Martin
10*574ac1d6SChristophe Martin// for admin plugins, the menu prompt to be displayed in the admin menu
11*574ac1d6SChristophe Martin// if set here, the plugin doesn't need to override the getMenuText() method
12*574ac1d6SChristophe Martin$lang['menu'] = 'Gestionnaire d\'index de recherche';
13*574ac1d6SChristophe Martin
14*574ac1d6SChristophe Martin// custom language strings for the plugin
15*574ac1d6SChristophe Martin$lang['rebuild_index'] = 'Reconstruire l\'index';
16*574ac1d6SChristophe Martin
17*574ac1d6SChristophe Martin//Setup VIM: ex: et ts=4 enc=utf-8 :
18