aboutsummaryrefslogtreecommitdiffstats
path: root/install.php
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2010-05-09 20:51:01 +0000
committerplegall <plg@piwigo.org>2010-05-09 20:51:01 +0000
commit84691404710b8553eaae0937454ef684293d2684 (patch)
tree3f14c6e1c929b960a8729ebe0a69a1e8b019dd4d /install.php
parent59f985e91604b2fbb6dc10fe99150adc6b3ad5e8 (diff)
add nl.piwigo.org as domain name if current language is nl_NL
fix typos on language names in install.php correct list of available newsletters git-svn-id: http://piwigo.org/svn/trunk@6152 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install.php')
-rw-r--r--install.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/install.php b/install.php
index 00f1dd04e..56f0654a1 100644
--- a/install.php
+++ b/install.php
@@ -200,12 +200,15 @@ else if ('pl_PL' == $language) {
else if ('zh_CN' == $language) {
define('PHPWG_DOMAIN', 'cn.piwigo.org');
}
-else if ('hu_HU_CN' == $language) {
+else if ('hu_HU' == $language) {
define('PHPWG_DOMAIN', 'hu.piwigo.org');
}
-else if ('ru_RU_CN' == $language) {
+else if ('ru_RU' == $language) {
define('PHPWG_DOMAIN', 'ru.piwigo.org');
}
+else if ('nl_NL' == $language) {
+ define('PHPWG_DOMAIN', 'nl.piwigo.org');
+}
else {
define('PHPWG_DOMAIN', 'piwigo.org');
}