Revision 1259
Added by Luisehahne almost 16 years ago
| branches/2.8.x/CHANGELOG | ||
|---|---|---|
| 13 | 13 |
------------------------------------- 2.8.1 ------------------------------------- |
| 14 | 14 |
21-Jan-2010 Dietmar Woellbrink (Luisehahne) |
| 15 | 15 |
! update header info |
| 16 |
! change unknown user to guest in all languages |
|
| 16 | 17 |
21-Jan-2010 Dietmar Woellbrink (Luisehahne) |
| 17 | 18 |
! update info.php fckeditor |
| 18 | 19 |
21-Jan-2010 Dietmar Woellbrink (Luisehahne) |
| branches/2.8.x/wb/admin/interface/version.php | ||
|---|---|---|
| 55 | 55 |
|
| 56 | 56 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
| 57 | 57 |
if(!defined('VERSION')) define('VERSION', '2.8.1');
|
| 58 |
if(!defined('REVISION')) define('REVISION', '1258');
|
|
| 58 |
if(!defined('REVISION')) define('REVISION', '1259');
|
|
| 59 | 59 |
|
| 60 | 60 |
?> |
| branches/2.8.x/wb/modules/news/languages/NL.php | ||
|---|---|---|
| 1 | 1 |
<?php |
| 2 |
|
|
| 3 |
// $Id$ |
|
| 4 |
|
|
| 5 | 2 |
/* |
| 3 |
* |
|
| 4 |
* About WebsiteBaker |
|
| 5 |
* |
|
| 6 |
* Website Baker is a PHP-based Content Management System (CMS) |
|
| 7 |
* designed with one goal in mind: to enable its users to produce websites |
|
| 8 |
* with ease. |
|
| 9 |
* |
|
| 10 |
* LICENSE INFORMATION |
|
| 11 |
* |
|
| 12 |
* WebsiteBaker is free software; you can redistribute it and/or |
|
| 13 |
* modify it under the terms of the GNU General Public License |
|
| 14 |
* as published by the Free Software Foundation; either version 2 |
|
| 15 |
* of the License, or (at your option) any later version. |
|
| 16 |
* |
|
| 17 |
* WebsiteBaker is distributed in the hope that it will be useful, |
|
| 18 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 19 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
| 20 |
* See the GNU General Public License for more details. |
|
| 21 |
* |
|
| 22 |
* You should have received a copy of the GNU General Public License |
|
| 23 |
* along with this program; if not, write to the Free Software |
|
| 24 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
| 25 |
* |
|
| 26 |
* WebsiteBaker Extra Information |
|
| 27 |
* |
|
| 28 |
* |
|
| 29 |
*/ |
|
| 30 |
/** |
|
| 31 |
* |
|
| 32 |
* @category modules |
|
| 33 |
* @package news |
|
| 34 |
* @author Ryan Djurovich |
|
| 35 |
* @copyright 2004-2009, Ryan Djurovich |
|
| 36 |
* @copyright 2009-2010, Website Baker Org. e.V. |
|
| 37 |
* @filesource $HeadURL$ |
|
| 38 |
* @author Ryan Djurovich |
|
| 39 |
* @copyright 2004-2009, Ryan Djurovich |
|
| 40 |
* |
|
| 41 |
* @author WebsiteBaker Project |
|
| 42 |
* @link http://www.websitebaker2.org/ |
|
| 43 |
* @copyright 2009-2010, Website Baker Org. e.V. |
|
| 44 |
* @link http://start.websitebaker2.org/impressum-datenschutz.php |
|
| 45 |
* @license http://www.gnu.org/licenses/gpl.html |
|
| 46 |
* @version $Id$ |
|
| 47 |
* @platform WebsiteBaker 2.8.x |
|
| 48 |
* @requirements PHP 4.3.4 and higher |
|
| 49 |
* @lastmodified $Date$ |
|
| 50 |
* |
|
| 51 |
*/ |
|
| 6 | 52 |
|
| 7 |
Website Baker Project <http://www.websitebaker.org/> |
|
| 8 |
Copyright (C) 2004-2009, Ryan Djurovich |
|
| 9 | 53 |
|
| 10 |
Website Baker is free software; you can redistribute it and/or modify |
|
| 11 |
it under the terms of the GNU General Public License as published by |
|
| 12 |
the Free Software Foundation; either version 2 of the License, or |
|
| 13 |
(at your option) any later version. |
|
| 14 |
|
|
| 15 |
Website Baker is distributed in the hope that it will be useful, |
|
| 16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 18 |
GNU General Public License for more details. |
|
| 19 |
|
|
| 20 |
You should have received a copy of the GNU General Public License |
|
| 21 |
along with Website Baker; if not, write to the Free Software |
|
| 22 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
| 23 |
|
|
| 24 |
*/ |
|
| 25 |
|
|
| 26 | 54 |
//Modul Description |
| 27 | 55 |
$module_description = 'Met deze module maak je een nieuwspagina.'; |
| 28 | 56 |
|
| ... | ... | |
| 41 | 69 |
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Toevoegen commentaar'; |
| 42 | 70 |
$MOD_NEWS['TEXT_BY'] = 'door'; |
| 43 | 71 |
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page not found'; |
| 72 |
$TEXT['UNKNOWN'] = 'Guest'; |
|
| 44 | 73 |
|
| 45 | 74 |
?> |
| 46 | 75 | |
| branches/2.8.x/wb/modules/news/languages/NO.php | ||
|---|---|---|
| 1 | 1 |
<?php |
| 2 |
|
|
| 3 |
// $Id$ |
|
| 4 |
|
|
| 5 | 2 |
/* |
| 6 |
|
|
| 7 |
Website Baker Project <http://www.websitebaker.org/> |
|
| 8 |
Copyright (C) 2004-2009, Ryan Djurovich |
|
| 9 |
|
|
| 10 |
Website Baker is free software; you can redistribute it and/or modify |
|
| 11 |
it under the terms of the GNU General Public License as published by |
|
| 12 |
the Free Software Foundation; either version 2 of the License, or |
|
| 13 |
(at your option) any later version. |
|
| 14 |
|
|
| 15 |
Website Baker is distributed in the hope that it will be useful, |
|
| 16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 18 |
GNU General Public License for more details. |
|
| 19 |
|
|
| 20 |
You should have received a copy of the GNU General Public License |
|
| 21 |
along with Website Baker; if not, write to the Free Software |
|
| 22 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
| 23 |
|
|
| 3 |
* |
|
| 4 |
* About WebsiteBaker |
|
| 5 |
* |
|
| 6 |
* Website Baker is a PHP-based Content Management System (CMS) |
|
| 7 |
* designed with one goal in mind: to enable its users to produce websites |
|
| 8 |
* with ease. |
|
| 9 |
* |
|
| 10 |
* LICENSE INFORMATION |
|
| 11 |
* |
|
| 12 |
* WebsiteBaker is free software; you can redistribute it and/or |
|
| 13 |
* modify it under the terms of the GNU General Public License |
|
| 14 |
* as published by the Free Software Foundation; either version 2 |
|
| 15 |
* of the License, or (at your option) any later version. |
|
| 16 |
* |
|
| 17 |
* WebsiteBaker is distributed in the hope that it will be useful, |
|
| 18 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 19 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
| 20 |
* See the GNU General Public License for more details. |
|
| 21 |
* |
|
| 22 |
* You should have received a copy of the GNU General Public License |
|
| 23 |
* along with this program; if not, write to the Free Software |
|
| 24 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
| 25 |
* |
|
| 26 |
* WebsiteBaker Extra Information |
|
| 27 |
* |
|
| 28 |
* |
|
| 24 | 29 |
*/ |
| 30 |
/** |
|
| 31 |
* |
|
| 32 |
* @category modules |
|
| 33 |
* @package news |
|
| 34 |
* @author Ryan Djurovich |
|
| 35 |
* @copyright 2004-2009, Ryan Djurovich |
|
| 36 |
* @copyright 2009-2010, Website Baker Org. e.V. |
|
| 37 |
* @filesource $HeadURL$ |
|
| 38 |
* @author Ryan Djurovich |
|
| 39 |
* @copyright 2004-2009, Ryan Djurovich |
|
| 40 |
* |
|
| 41 |
* @author WebsiteBaker Project |
|
| 42 |
* @link http://www.websitebaker2.org/ |
|
| 43 |
* @copyright 2009-2010, Website Baker Org. e.V. |
|
| 44 |
* @link http://start.websitebaker2.org/impressum-datenschutz.php |
|
| 45 |
* @license http://www.gnu.org/licenses/gpl.html |
|
| 46 |
* @version $Id$ |
|
| 47 |
* @platform WebsiteBaker 2.8.x |
|
| 48 |
* @requirements PHP 4.3.4 and higher |
|
| 49 |
* @lastmodified $Date$ |
|
| 50 |
* |
|
| 51 |
*/ |
|
| 25 | 52 |
|
| 26 | 53 |
//Modul Description |
| 27 | 54 |
$module_description = 'Med denne modulen kan du lage Nyhets sider.'; |
| ... | ... | |
| 41 | 68 |
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Legg Til Kommentar'; |
| 42 | 69 |
$MOD_NEWS['TEXT_BY'] = 'Av'; |
| 43 | 70 |
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page not found'; |
| 44 |
|
|
| 71 |
$TEXT['UNKNOWN'] = 'Guest'; |
|
| 72 |
|
|
| 45 | 73 |
?> |
| 46 | 74 | |
| branches/2.8.x/wb/modules/news/languages/EN.php | ||
|---|---|---|
| 1 | 1 |
<?php |
| 2 |
|
|
| 3 |
// $Id$ |
|
| 4 |
|
|
| 5 | 2 |
/* |
| 6 |
|
|
| 7 |
Website Baker Project <http://www.websitebaker.org/> |
|
| 8 |
Copyright (C) 2004-2009, Ryan Djurovich |
|
| 9 |
|
|
| 10 |
Website Baker is free software; you can redistribute it and/or modify |
|
| 11 |
it under the terms of the GNU General Public License as published by |
|
| 12 |
the Free Software Foundation; either version 2 of the License, or |
|
| 13 |
(at your option) any later version. |
|
| 14 |
|
|
| 15 |
Website Baker is distributed in the hope that it will be useful, |
|
| 16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 18 |
GNU General Public License for more details. |
|
| 19 |
|
|
| 20 |
You should have received a copy of the GNU General Public License |
|
| 21 |
along with Website Baker; if not, write to the Free Software |
|
| 22 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
| 23 |
|
|
| 3 |
* |
|
| 4 |
* About WebsiteBaker |
|
| 5 |
* |
|
| 6 |
* Website Baker is a PHP-based Content Management System (CMS) |
|
| 7 |
* designed with one goal in mind: to enable its users to produce websites |
|
| 8 |
* with ease. |
|
| 9 |
* |
|
| 10 |
* LICENSE INFORMATION |
|
| 11 |
* |
|
| 12 |
* WebsiteBaker is free software; you can redistribute it and/or |
|
| 13 |
* modify it under the terms of the GNU General Public License |
|
| 14 |
* as published by the Free Software Foundation; either version 2 |
|
| 15 |
* of the License, or (at your option) any later version. |
|
| 16 |
* |
|
| 17 |
* WebsiteBaker is distributed in the hope that it will be useful, |
|
| 18 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 19 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
| 20 |
* See the GNU General Public License for more details. |
|
| 21 |
* |
|
| 22 |
* You should have received a copy of the GNU General Public License |
|
| 23 |
* along with this program; if not, write to the Free Software |
|
| 24 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
| 25 |
* |
|
| 26 |
* WebsiteBaker Extra Information |
|
| 27 |
* |
|
| 28 |
* |
|
| 24 | 29 |
*/ |
| 30 |
/** |
|
| 31 |
* |
|
| 32 |
* @category modules |
|
| 33 |
* @package news |
|
| 34 |
* @author Ryan Djurovich |
|
| 35 |
* @copyright 2004-2009, Ryan Djurovich |
|
| 36 |
* @copyright 2009-2010, Website Baker Org. e.V. |
|
| 37 |
* @filesource $HeadURL$ |
|
| 38 |
* @author Ryan Djurovich |
|
| 39 |
* @copyright 2004-2009, Ryan Djurovich |
|
| 40 |
* |
|
| 41 |
* @author WebsiteBaker Project |
|
| 42 |
* @link http://www.websitebaker2.org/ |
|
| 43 |
* @copyright 2009-2010, Website Baker Org. e.V. |
|
| 44 |
* @link http://start.websitebaker2.org/impressum-datenschutz.php |
|
| 45 |
* @license http://www.gnu.org/licenses/gpl.html |
|
| 46 |
* @version $Id$ |
|
| 47 |
* @platform WebsiteBaker 2.8.x |
|
| 48 |
* @requirements PHP 4.3.4 and higher |
|
| 49 |
* @lastmodified $Date$ |
|
| 50 |
* |
|
| 51 |
*/ |
|
| 25 | 52 |
|
| 26 | 53 |
//Modul Description |
| 27 | 54 |
$module_description = 'This page type is designed for making a news page.'; |
| ... | ... | |
| 41 | 68 |
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Add Comment'; |
| 42 | 69 |
$MOD_NEWS['TEXT_BY'] = 'By'; |
| 43 | 70 |
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page not found'; |
| 71 |
$TEXT['UNKNOWN'] = 'Guest'; |
|
| 44 | 72 |
|
| 45 | 73 |
?> |
| 46 | 74 | |
| branches/2.8.x/wb/modules/news/languages/DA.php | ||
|---|---|---|
| 1 | 1 |
<?php |
| 2 |
|
|
| 3 |
// $Id$ |
|
| 4 |
|
|
| 5 | 2 |
/* |
| 6 |
|
|
| 7 |
Website Baker Project <http://www.websitebaker.org/> |
|
| 8 |
Copyright (C) 2004-2009, Ryan Djurovich |
|
| 9 |
|
|
| 10 |
Website Baker is free software; you can redistribute it and/or modify |
|
| 11 |
it under the terms of the GNU General Public License as published by |
|
| 12 |
the Free Software Foundation; either version 2 of the License, or |
|
| 13 |
(at your option) any later version. |
|
| 14 |
|
|
| 15 |
Website Baker is distributed in the hope that it will be useful, |
|
| 16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 18 |
GNU General Public License for more details. |
|
| 19 |
|
|
| 20 |
You should have received a copy of the GNU General Public License |
|
| 21 |
along with Website Baker; if not, write to the Free Software |
|
| 22 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
| 23 |
|
|
| 3 |
* |
|
| 4 |
* About WebsiteBaker |
|
| 5 |
* |
|
| 6 |
* Website Baker is a PHP-based Content Management System (CMS) |
|
| 7 |
* designed with one goal in mind: to enable its users to produce websites |
|
| 8 |
* with ease. |
|
| 9 |
* |
|
| 10 |
* LICENSE INFORMATION |
|
| 11 |
* |
|
| 12 |
* WebsiteBaker is free software; you can redistribute it and/or |
|
| 13 |
* modify it under the terms of the GNU General Public License |
|
| 14 |
* as published by the Free Software Foundation; either version 2 |
|
| 15 |
* of the License, or (at your option) any later version. |
|
| 16 |
* |
|
| 17 |
* WebsiteBaker is distributed in the hope that it will be useful, |
|
| 18 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 19 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
| 20 |
* See the GNU General Public License for more details. |
|
| 21 |
* |
|
| 22 |
* You should have received a copy of the GNU General Public License |
|
| 23 |
* along with this program; if not, write to the Free Software |
|
| 24 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
| 25 |
* |
|
| 26 |
* WebsiteBaker Extra Information |
|
| 27 |
* |
|
| 28 |
* |
|
| 24 | 29 |
*/ |
| 30 |
/** |
|
| 31 |
* |
|
| 32 |
* @category modules |
|
| 33 |
* @package news |
|
| 34 |
* @author Ryan Djurovich |
|
| 35 |
* @copyright 2004-2009, Ryan Djurovich |
|
| 36 |
* @copyright 2009-2010, Website Baker Org. e.V. |
|
| 37 |
* @filesource $HeadURL$ |
|
| 38 |
* @author Ryan Djurovich |
|
| 39 |
* @copyright 2004-2009, Ryan Djurovich |
|
| 40 |
* |
|
| 41 |
* @author WebsiteBaker Project |
|
| 42 |
* @link http://www.websitebaker2.org/ |
|
| 43 |
* @copyright 2009-2010, Website Baker Org. e.V. |
|
| 44 |
* @link http://start.websitebaker2.org/impressum-datenschutz.php |
|
| 45 |
* @license http://www.gnu.org/licenses/gpl.html |
|
| 46 |
* @version $Id$ |
|
| 47 |
* @platform WebsiteBaker 2.8.x |
|
| 48 |
* @requirements PHP 4.3.4 and higher |
|
| 49 |
* @lastmodified $Date$ |
|
| 50 |
* |
|
| 51 |
*/ |
|
| 25 | 52 |
|
| 26 | 53 |
//Modul Description |
| 27 | 54 |
$module_description = 'Denne side er beregnet til at lave en nyhedsside.'; |
| ... | ... | |
| 41 | 68 |
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Tilføj kommentar'; |
| 42 | 69 |
$MOD_NEWS['TEXT_BY'] = 'Af'; |
| 43 | 70 |
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page not found'; |
| 71 |
$TEXT['UNKNOWN'] = 'Guest'; |
|
| 44 | 72 |
|
| 45 | 73 |
?> |
| 46 | 74 | |
| branches/2.8.x/wb/modules/news/languages/RU.php | ||
|---|---|---|
| 1 | 1 |
<?php |
| 2 |
|
|
| 3 |
// $Id$ |
|
| 4 |
|
|
| 5 | 2 |
/* |
| 6 |
|
|
| 7 |
Website Baker Project http://www.websitebaker.org/ |
|
| 8 |
Copyright (C) 2004-2009, Ryan Djurovich |
|
| 9 |
|
|
| 10 |
Website Baker is free software; you can redistribute it and/or modify |
|
| 11 |
it under the terms of the GNU General Public License as published by |
|
| 12 |
the Free Software Foundation; either version 2 of the License, or |
|
| 13 |
(at your option) any later version. |
|
| 14 |
|
|
| 15 |
Website Baker is distributed in the hope that it will be useful, |
|
| 16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 18 |
GNU General Public License for more details. |
|
| 19 |
|
|
| 20 |
You should have received a copy of the GNU General Public License |
|
| 21 |
along with Website Baker; if not, write to the Free Software |
|
| 22 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
| 23 |
|
|
| 3 |
* |
|
| 4 |
* About WebsiteBaker |
|
| 5 |
* |
|
| 6 |
* Website Baker is a PHP-based Content Management System (CMS) |
|
| 7 |
* designed with one goal in mind: to enable its users to produce websites |
|
| 8 |
* with ease. |
|
| 9 |
* |
|
| 10 |
* LICENSE INFORMATION |
|
| 11 |
* |
|
| 12 |
* WebsiteBaker is free software; you can redistribute it and/or |
|
| 13 |
* modify it under the terms of the GNU General Public License |
|
| 14 |
* as published by the Free Software Foundation; either version 2 |
|
| 15 |
* of the License, or (at your option) any later version. |
|
| 16 |
* |
|
| 17 |
* WebsiteBaker is distributed in the hope that it will be useful, |
|
| 18 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 19 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
| 20 |
* See the GNU General Public License for more details. |
|
| 21 |
* |
|
| 22 |
* You should have received a copy of the GNU General Public License |
|
| 23 |
* along with this program; if not, write to the Free Software |
|
| 24 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
| 25 |
* |
|
| 26 |
* WebsiteBaker Extra Information |
|
| 27 |
* |
|
| 28 |
* |
|
| 24 | 29 |
*/ |
| 30 |
/** |
|
| 31 |
* |
|
| 32 |
* @category modules |
|
| 33 |
* @package news |
|
| 34 |
* @author Ryan Djurovich |
|
| 35 |
* @copyright 2004-2009, Ryan Djurovich |
|
| 36 |
* @copyright 2009-2010, Website Baker Org. e.V. |
|
| 37 |
* @filesource $HeadURL$ |
|
| 38 |
* @author Ryan Djurovich |
|
| 39 |
* @copyright 2004-2009, Ryan Djurovich |
|
| 40 |
* |
|
| 41 |
* @author WebsiteBaker Project |
|
| 42 |
* @link http://www.websitebaker2.org/ |
|
| 43 |
* @copyright 2009-2010, Website Baker Org. e.V. |
|
| 44 |
* @link http://start.websitebaker2.org/impressum-datenschutz.php |
|
| 45 |
* @license http://www.gnu.org/licenses/gpl.html |
|
| 46 |
* @version $Id$ |
|
| 47 |
* @platform WebsiteBaker 2.8.x |
|
| 48 |
* @requirements PHP 4.3.4 and higher |
|
| 49 |
* @lastmodified $Date$ |
|
| 50 |
* |
|
| 51 |
*/ |
|
| 25 | 52 |
|
| 26 | 53 |
//Modul Description |
| 27 | 54 |
$module_description = 'Модуль предназначен для создания ленты новостей'; |
| ... | ... | |
| 41 | 68 |
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Добавить Комментировать'; |
| 42 | 69 |
$MOD_NEWS['TEXT_BY'] = 'By'; |
| 43 | 70 |
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page not found'; |
| 71 |
$TEXT['UNKNOWN'] = 'Guest'; |
|
| 44 | 72 |
|
| 45 | 73 |
?> |
| 46 | 74 | |
| branches/2.8.x/wb/modules/news/languages/FR.php | ||
|---|---|---|
| 1 | 1 |
<?php |
| 2 |
|
|
| 3 |
// $Id$ |
|
| 4 |
|
|
| 5 | 2 |
/* |
| 3 |
* |
|
| 4 |
* About WebsiteBaker |
|
| 5 |
* |
|
| 6 |
* Website Baker is a PHP-based Content Management System (CMS) |
|
| 7 |
* designed with one goal in mind: to enable its users to produce websites |
|
| 8 |
* with ease. |
|
| 9 |
* |
|
| 10 |
* LICENSE INFORMATION |
|
| 11 |
* |
|
| 12 |
* WebsiteBaker is free software; you can redistribute it and/or |
|
| 13 |
* modify it under the terms of the GNU General Public License |
|
| 14 |
* as published by the Free Software Foundation; either version 2 |
|
| 15 |
* of the License, or (at your option) any later version. |
|
| 16 |
* |
|
| 17 |
* WebsiteBaker is distributed in the hope that it will be useful, |
|
| 18 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 19 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
| 20 |
* See the GNU General Public License for more details. |
|
| 21 |
* |
|
| 22 |
* You should have received a copy of the GNU General Public License |
|
| 23 |
* along with this program; if not, write to the Free Software |
|
| 24 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
| 25 |
* |
|
| 26 |
* WebsiteBaker Extra Information |
|
| 27 |
* |
|
| 28 |
* |
|
| 29 |
*/ |
|
| 30 |
/** |
|
| 31 |
* |
|
| 32 |
* @category modules |
|
| 33 |
* @package news |
|
| 34 |
* @author Ryan Djurovich |
|
| 35 |
* @copyright 2004-2009, Ryan Djurovich |
|
| 36 |
* @copyright 2009-2010, Website Baker Org. e.V. |
|
| 37 |
* @filesource $HeadURL$ |
|
| 38 |
* @author Ryan Djurovich |
|
| 39 |
* @copyright 2004-2009, Ryan Djurovich |
|
| 40 |
* |
|
| 41 |
* @author WebsiteBaker Project |
|
| 42 |
* @link http://www.websitebaker2.org/ |
|
| 43 |
* @copyright 2009-2010, Website Baker Org. e.V. |
|
| 44 |
* @link http://start.websitebaker2.org/impressum-datenschutz.php |
|
| 45 |
* @license http://www.gnu.org/licenses/gpl.html |
|
| 46 |
* @version $Id$ |
|
| 47 |
* @platform WebsiteBaker 2.8.x |
|
| 48 |
* @requirements PHP 4.3.4 and higher |
|
| 49 |
* @lastmodified $Date$ |
|
| 50 |
* |
|
| 51 |
*/ |
|
| 6 | 52 |
|
| 7 |
Website Baker Project <http://www.websitebaker.org/> |
|
| 8 |
Copyright (C) 2004-2009, Ryan Djurovich |
|
| 9 |
|
|
| 10 |
Website Baker is free software; you can redistribute it and/or modify |
|
| 11 |
it under the terms of the GNU General Public License as published by |
|
| 12 |
the Free Software Foundation; either version 2 of the License, or |
|
| 13 |
(at your option) any later version. |
|
| 14 |
|
|
| 15 |
Website Baker is distributed in the hope that it will be useful, |
|
| 16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 18 |
GNU General Public License for more details. |
|
| 19 |
|
|
| 20 |
You should have received a copy of the GNU General Public License |
|
| 21 |
along with Website Baker; if not, write to the Free Software |
|
| 22 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
| 23 |
|
|
| 24 |
|
|
| 25 |
----------------------------------------------------------------------------------------- |
|
| 26 |
FRENCH LANGUAGE FILE FOR THE ADDON: NEWS |
|
| 27 |
----------------------------------------------------------------------------------------- |
|
| 28 |
*/ |
|
| 29 | 53 |
//Module Description |
| 30 | 54 |
$module_description = 'This page type is designed for making a news page.'; |
| 31 | 55 |
|
| ... | ... | |
| 44 | 68 |
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Ajouter un commentaire'; |
| 45 | 69 |
$MOD_NEWS['TEXT_BY'] = 'Par'; |
| 46 | 70 |
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page not found'; |
| 71 |
$TEXT['UNKNOWN'] = 'Guest'; |
|
| 47 | 72 |
|
| 48 | 73 |
?> |
| 49 | 74 | |
| branches/2.8.x/wb/modules/news/languages/index.php | ||
|---|---|---|
| 1 |
<?php |
|
| 2 |
|
|
| 3 |
// $Id$ |
|
| 4 |
|
|
| 5 |
/* |
|
| 6 |
|
|
| 7 |
Website Baker Project <http://www.websitebaker.org/> |
|
| 8 |
Copyright (C) 2004-2009, Ryan Djurovich |
|
| 9 |
|
|
| 10 |
Website Baker is free software; you can redistribute it and/or modify |
|
| 11 |
it under the terms of the GNU General Public License as published by |
|
| 12 |
the Free Software Foundation; either version 2 of the License, or |
|
| 13 |
(at your option) any later version. |
|
| 14 |
|
|
| 15 |
Website Baker is distributed in the hope that it will be useful, |
|
| 16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 18 |
GNU General Public License for more details. |
|
| 19 |
|
|
| 20 |
You should have received a copy of the GNU General Public License |
|
| 21 |
along with Website Baker; if not, write to the Free Software |
|
| 22 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
| 23 |
|
|
| 24 |
*/ |
|
| 25 |
|
|
| 26 |
header("Location: ../../../index.php");
|
|
| 27 |
|
|
| 1 |
<?php |
|
| 2 |
/* |
|
| 3 |
* |
|
| 4 |
* About WebsiteBaker |
|
| 5 |
* |
|
| 6 |
* Website Baker is a PHP-based Content Management System (CMS) |
|
| 7 |
* designed with one goal in mind: to enable its users to produce websites |
|
| 8 |
* with ease. |
|
| 9 |
* |
|
| 10 |
* LICENSE INFORMATION |
|
| 11 |
* |
|
| 12 |
* WebsiteBaker is free software; you can redistribute it and/or |
|
| 13 |
* modify it under the terms of the GNU General Public License |
|
| 14 |
* as published by the Free Software Foundation; either version 2 |
|
| 15 |
* of the License, or (at your option) any later version. |
|
| 16 |
* |
|
| 17 |
* WebsiteBaker is distributed in the hope that it will be useful, |
|
| 18 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 19 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
| 20 |
* See the GNU General Public License for more details. |
|
| 21 |
* |
|
| 22 |
* You should have received a copy of the GNU General Public License |
|
| 23 |
* along with this program; if not, write to the Free Software |
|
| 24 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
| 25 |
* |
|
| 26 |
* WebsiteBaker Extra Information |
|
| 27 |
* |
|
| 28 |
* |
|
| 29 |
*/ |
|
| 30 |
/** |
|
| 31 |
* |
|
| 32 |
* @category modules |
|
| 33 |
* @package news |
|
| 34 |
* @author Ryan Djurovich |
|
| 35 |
* @copyright 2004-2009, Ryan Djurovich |
|
| 36 |
* @copyright 2009-2010, Website Baker Org. e.V. |
|
| 37 |
* @filesource $HeadURL$ |
|
| 38 |
* @author Ryan Djurovich |
|
| 39 |
* @copyright 2004-2009, Ryan Djurovich |
|
| 40 |
* |
|
| 41 |
* @author WebsiteBaker Project |
|
| 42 |
* @link http://www.websitebaker2.org/ |
|
| 43 |
* @copyright 2009-2010, Website Baker Org. e.V. |
|
| 44 |
* @link http://start.websitebaker2.org/impressum-datenschutz.php |
|
| 45 |
* @license http://www.gnu.org/licenses/gpl.html |
|
| 46 |
* @version $Id$ |
|
| 47 |
* @platform WebsiteBaker 2.8.x |
|
| 48 |
* @requirements PHP 4.3.4 and higher |
|
| 49 |
* @lastmodified $Date$ |
|
| 50 |
* |
|
| 51 |
*/ |
|
| 52 |
|
|
| 53 |
header("Location: ../../../index.php");
|
|
| 54 |
|
|
| 28 | 55 |
?> |
| 29 | 56 | |
| branches/2.8.x/wb/modules/news/languages/DE.php | ||
|---|---|---|
| 1 | 1 |
<?php |
| 2 |
|
|
| 3 |
// $Id$ |
|
| 4 |
|
|
| 5 | 2 |
/* |
| 6 |
|
|
| 7 |
Website Baker Project <http://www.websitebaker.org/> |
|
| 8 |
Copyright (C) 2004-2009, Ryan Djurovich |
|
| 9 |
|
|
| 10 |
Website Baker is free software; you can redistribute it and/or modify |
|
| 11 |
it under the terms of the GNU General Public License as published by |
|
| 12 |
the Free Software Foundation; either version 2 of the License, or |
|
| 13 |
(at your option) any later version. |
|
| 14 |
|
|
| 15 |
Website Baker is distributed in the hope that it will be useful, |
|
| 16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 18 |
GNU General Public License for more details. |
|
| 19 |
|
|
| 20 |
You should have received a copy of the GNU General Public License |
|
| 21 |
along with Website Baker; if not, write to the Free Software |
|
| 22 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
| 23 |
|
|
| 3 |
* |
|
| 4 |
* About WebsiteBaker |
|
| 5 |
* |
|
| 6 |
* Website Baker is a PHP-based Content Management System (CMS) |
|
| 7 |
* designed with one goal in mind: to enable its users to produce websites |
|
| 8 |
* with ease. |
|
| 9 |
* |
|
| 10 |
* LICENSE INFORMATION |
|
| 11 |
* |
|
| 12 |
* WebsiteBaker is free software; you can redistribute it and/or |
|
| 13 |
* modify it under the terms of the GNU General Public License |
|
| 14 |
* as published by the Free Software Foundation; either version 2 |
|
| 15 |
* of the License, or (at your option) any later version. |
|
| 16 |
* |
|
| 17 |
* WebsiteBaker is distributed in the hope that it will be useful, |
|
| 18 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 19 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
| 20 |
* See the GNU General Public License for more details. |
|
| 21 |
* |
|
| 22 |
* You should have received a copy of the GNU General Public License |
|
| 23 |
* along with this program; if not, write to the Free Software |
|
| 24 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
| 25 |
* |
|
| 26 |
* WebsiteBaker Extra Information |
|
| 27 |
* |
|
| 28 |
* |
|
| 24 | 29 |
*/ |
| 30 |
/** |
|
| 31 |
* |
|
| 32 |
* @category modules |
|
| 33 |
* @package news |
|
| 34 |
* @author Ryan Djurovich |
|
| 35 |
* @copyright 2004-2009, Ryan Djurovich |
|
| 36 |
* @copyright 2009-2010, Website Baker Org. e.V. |
|
| 37 |
* @filesource $HeadURL$ |
|
| 38 |
* @author Ryan Djurovich |
|
| 39 |
* @copyright 2004-2009, Ryan Djurovich |
|
| 40 |
* |
|
| 41 |
* @author WebsiteBaker Project |
|
| 42 |
* @link http://www.websitebaker2.org/ |
|
| 43 |
* @copyright 2009-2010, Website Baker Org. e.V. |
|
| 44 |
* @link http://start.websitebaker2.org/impressum-datenschutz.php |
|
| 45 |
* @license http://www.gnu.org/licenses/gpl.html |
|
| 46 |
* @version $Id$ |
|
| 47 |
* @platform WebsiteBaker 2.8.x |
|
| 48 |
* @requirements PHP 4.3.4 and higher |
|
| 49 |
* @lastmodified $Date$ |
|
| 50 |
* |
|
| 51 |
*/ |
|
| 25 | 52 |
|
| 26 | 53 |
//Modul Description |
| 27 | 54 |
$module_description = 'Mit diesem Modul können sie eine News Seite ihrer Seite hinzufügen.'; |
| ... | ... | |
| 41 | 68 |
$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Kommentar hinzufügen'; |
| 42 | 69 |
$MOD_NEWS['TEXT_BY'] = 'von'; |
| 43 | 70 |
$MOD_NEWS['PAGE_NOT_FOUND'] = 'Seite nicht gefunden'; |
| 71 |
$TEXT['UNKNOWN'] = 'Gast'; |
|
| 44 | 72 |
|
| 45 | 73 |
?> |
| 46 | 74 | |
Also available in: Unified diff
update header info, change unknown user to guest in all languages