[2235] | 1 | <?php |
---|
| 2 | // +-----------------------------------------------------------------------+ |
---|
| 3 | // | PhpWebGallery - a PHP based picture gallery | |
---|
| 4 | // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | |
---|
| 5 | // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | |
---|
| 6 | // +-----------------------------------------------------------------------+ |
---|
| 7 | // | file : $Id: plugin.lang.php 2291 2008-03-25 23:30:23Z patdenice $ |
---|
| 8 | // | last update : $Date: 2008-03-25 23:30:23 +0000 (Tue, 25 Mar 2008) $ |
---|
| 9 | // | last modifier : $Author: patdenice $ |
---|
| 10 | // | revision : $Revision: 2291 $ |
---|
| 11 | // +-----------------------------------------------------------------------+ |
---|
| 12 | // | This program is free software; you can redistribute it and/or modify | |
---|
| 13 | // | it under the terms of the GNU General Public License as published by | |
---|
| 14 | // | the Free Software Foundation | |
---|
| 15 | // | | |
---|
| 16 | // | This program is distributed in the hope that it will be useful, but | |
---|
| 17 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
| 18 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
| 19 | // | General Public License for more details. | |
---|
| 20 | // | | |
---|
| 21 | // | You should have received a copy of the GNU General Public License | |
---|
| 22 | // | along with this program; if not, write to the Free Software | |
---|
| 23 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
| 24 | // | USA. | |
---|
| 25 | // +-----------------------------------------------------------------------+ |
---|
| 26 | |
---|
| 27 | $lang['locfiledit_onglet_localconf'] = 'Local config'; |
---|
| 28 | $lang['locfiledit_onglet_css'] = 'CSS'; |
---|
| 29 | $lang['locfiledit_onglet_tpl'] = 'Templates'; |
---|
| 30 | $lang['locfiledit_onglet_lang'] = 'Languages'; |
---|
| 31 | $lang['locfiledit_onglet_plug'] = 'Personal Plugin'; |
---|
| 32 | $lang['locfiledit_cant_save'] = 'Current file isn\'t writeable. Check if a directory "include/" is writeable (chmod).'; |
---|
| 33 | $lang['locfiledit_newfile'] = "/* File is not existing and will be created by LocalFiles Editor. */"; |
---|
| 34 | $lang['locfiledit_save_config'] = 'File written successfully.'; |
---|
| 35 | $lang['locfiledit_show_default'] = 'Display reference file: '; |
---|
| 36 | $lang['locfiledit_save_bak'] = 'Backup copy will be created on save.'; |
---|
| 37 | $lang['locfiledit_saved_bak'] = 'Backup file created (%s)'; |
---|
| 38 | $lang['locfiledit_save_file'] = 'Save file'; |
---|
| 39 | $lang['locfiledit_choose_file'] = 'Choose the file to be edited'; |
---|
| 40 | $lang['locfiledit_edit'] = 'Edit'; |
---|
| 41 | $lang['locfiledit_restore'] = 'Restore the backup file'; |
---|
[2291] | 42 | $lang['locfiledit_restore_confirm'] = 'Please confirm? |
---|
| 43 | Restore won\'t be effective till next save.'; |
---|
[2235] | 44 | $lang['locfiledit_bak_loaded1'] = 'Backup file loaded.'; |
---|
| 45 | $lang['locfiledit_bak_loaded2'] = 'You must save file to restore it.'; |
---|
| 46 | $lang['locfiledit_syntax_error'] = 'Syntax error! File can\'t be saved.'; |
---|
| 47 | |
---|
| 48 | ?> |
---|