01f5e32658b904dcc39fcebc01d3a247c2fd06da

Author: AD7six

Date: 2009-02-25 19:52:41 +0100

adding Greek and Turkish

diff --git a/.gitignore b/.gitignore index c338d12..3552762 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ errors.err *~ config/core.php config/database.php -tmp/* \ No newline at end of file +tmp/* +.svn \ No newline at end of file diff --git a/config/bootstrap.php b/config/bootstrap.php index 0fe1b30..466b1ff 100644 --- a/config/bootstrap.php +++ b/config/bootstrap.php @@ -41,8 +41,6 @@ //EOF // Which node to use for the home page Configure::write('Site.homeNode', 3); -// Which node to use in "Why does this app act like it does?" links -Configure::write('Site.methodologyNode', 3); Configure::write('Site.name', 'CakePHP Cookbook'); @@ -51,7 +49,8 @@ Configure::write('Site.email', 'team@cakefoundation.org'); Configure::write('Site.database', 'bakery'); Configure::write('Languages.default', 'en'); -$langs = array('ar', 'en', 'fa', 'fr', 'de', 'es', 'pt', 'nl', 'id', 'it', 'ja', 'bg', 'hu', 'pl', 'cz', 'cn', 'ko', 'ro', 'ms', 'tw', 'ru'); +$langs = array('ar', 'en', 'fa', 'fr', 'de', 'es', 'pt', 'nl', 'id', 'it', 'ja', 'bg', 'hu', 'pl', 'cz', 'cn', 'ko', + 'ro', 'ms', 'tw', 'ru', 'el', 'tr'); sort($langs); Configure::write('Languages.all', $langs);