[evolvis-commits] r6651: locales are tricky things↵ ↵ • we need LC_* = C except LC_CTYPE for the commit eMails, ↵ otherwise the RFC822 header produced is invalid↵ XXX commit eMails are currently NOT generated‽↵ • try harder to get the correct locale in other cases↵

Thorsten Glaser t.glaser at tarent.de
Fri May 21 14:32:57 CEST 2010


Author: Thorsten Glaser <t.glaser at tarent.de>
Date: 2010-05-21 14:32:57 +0200 (Fri, 21 May 2010)
New Revision: 6651

Modified:
   trunk/gforge_base/evolvisforge/gforge/common/include/gettext.php
   trunk/gforge_base/evolvisforge/gforge/debian/changelog
   trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/bin/svn-create.php
   trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/cronjobs/create_svn.php
   trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/cronjobs/snapshots.sh
   trunk/gforge_base/evolvisforge/gforge/translations/bg.po
   trunk/gforge_base/evolvisforge/gforge/translations/ca.po
   trunk/gforge_base/evolvisforge/gforge/translations/de.po
   trunk/gforge_base/evolvisforge/gforge/translations/el.po
   trunk/gforge_base/evolvisforge/gforge/translations/en.po
   trunk/gforge_base/evolvisforge/gforge/translations/eo.po
   trunk/gforge_base/evolvisforge/gforge/translations/es.po
   trunk/gforge_base/evolvisforge/gforge/translations/eu.po
   trunk/gforge_base/evolvisforge/gforge/translations/fr.po
   trunk/gforge_base/evolvisforge/gforge/translations/gforge.pot
   trunk/gforge_base/evolvisforge/gforge/translations/he.po
   trunk/gforge_base/evolvisforge/gforge/translations/id.po
   trunk/gforge_base/evolvisforge/gforge/translations/it.po
   trunk/gforge_base/evolvisforge/gforge/translations/ja.po
   trunk/gforge_base/evolvisforge/gforge/translations/ko.po
   trunk/gforge_base/evolvisforge/gforge/translations/la.po
   trunk/gforge_base/evolvisforge/gforge/translations/nb.po
   trunk/gforge_base/evolvisforge/gforge/translations/nl.po
   trunk/gforge_base/evolvisforge/gforge/translations/pl.po
   trunk/gforge_base/evolvisforge/gforge/translations/pt.po
   trunk/gforge_base/evolvisforge/gforge/translations/pt_BR.po
   trunk/gforge_base/evolvisforge/gforge/translations/ru.po
   trunk/gforge_base/evolvisforge/gforge/translations/sv.po
   trunk/gforge_base/evolvisforge/gforge/translations/th.po
   trunk/gforge_base/evolvisforge/gforge/translations/zh_CN.po
   trunk/gforge_base/evolvisforge/gforge/translations/zh_TW.po
   trunk/gforge_base/evolvisforge/gforge/www/soap/index.php
Log:
locales are tricky things

• we need LC_* = C except LC_CTYPE for the commit eMails,
  otherwise the RFC822 header produced is invalid
  XXX commit eMails are currently NOT generated‽
• try harder to get the correct locale in other cases


Modified: trunk/gforge_base/evolvisforge/gforge/common/include/gettext.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/common/include/gettext.php	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/common/include/gettext.php	2010-05-21 12:32:57 UTC (rev 6651)
@@ -202,9 +202,13 @@
 }
 
 function setup_gettext_from_locale ($locale) {
+	$lc_time = _("en_US");
+
 	setlocale(LC_ALL, $locale);
-	setlocale (LC_TIME, _('en_US'));
-	
+	if (!setlocale(LC_TIME, $lc_time . ".UTF-8"))
+		if (!setlocale(LC_TIME, $lc_time))
+			setlocale(LC_TIME, "C");
+
 	if (isset($GLOBALS['sys_gettext_path'])) {
 		bindtextdomain('gforge', $GLOBALS['sys_gettext_path']);
 	} else {

Modified: trunk/gforge_base/evolvisforge/gforge/debian/changelog
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/debian/changelog	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/debian/changelog	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,8 +7,9 @@
   * debian/control: evolvis now Depends on gf-p-mw, not Recommends
   * Softwaremap: display long description only if ≠ short description
   * Univention Listener: unbreak user deletion replication
+  * Fix some locale problems
 
- -- Thorsten Glaser <t.glaser at tarent.de>  Fri, 21 May 2010 13:55:37 +0200
+ -- Thorsten Glaser <t.glaser at tarent.de>  Fri, 21 May 2010 14:29:39 +0200
 
 gforge (4.8.3+evolvis15) unstable; urgency=low
 

Modified: trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/bin/svn-create.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/bin/svn-create.php	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/bin/svn-create.php	2010-05-21 12:32:57 UTC (rev 6651)
@@ -128,7 +128,7 @@
 		fwrite($file, '#!/bin/mksh'."\n");
 		fwrite($file, 'REPOS="$1"'."\n");
 		fwrite($file, 'REV="$2"'."\n");
-		fwrite($file, 'export LC_ALL=en_US.UTF-8; unset LANGUAGE'."\n");
+		fwrite($file, "unset LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_IDENTIFICATION LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER LC_TELEPHONE LC_TIME; export LANG=C LC_CTYPE=en_US.UTF-8\n");
 		fwrite($file, $content);
 	}
 	flock($file, LOCK_UN);

Modified: trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/cronjobs/create_svn.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/cronjobs/create_svn.php	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/cronjobs/create_svn.php	2010-05-21 12:32:57 UTC (rev 6651)
@@ -248,7 +248,7 @@
 		$FOut = fopen($repos.'/hooks/post-commit', "a+");
 	} else {
 		$FOut = fopen($repos.'/hooks/post-commit', "w");
-		$Line = '#!/bin/sh'."\n"; // add this line to first line or else the script fails
+		$Line = '#!/bin/mksh'."\n"; // add this line to first line or else the script fails
 	}
 	if($FOut) {
 		$Line .= '
@@ -279,7 +279,7 @@
 	} else {
 		$FOut = fopen($repos.'/hooks/post-commit', "w");
 		$Line = '#!/bin/mksh'."\n"; // add this line to first line or else the script fails
-		$Line .= 'export LC_ALL=en_US.UTF-8; unset LANGUAGE'."\n";
+		$Line .= "unset LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_IDENTIFICATION LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER LC_TELEPHONE LC_TIME; export LANG=C LC_CTYPE=en_US.UTF-8\n";
 	}
 	
 	if($FOut) {

Modified: trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/cronjobs/snapshots.sh
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/cronjobs/snapshots.sh	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/plugins/scmsvn/cronjobs/snapshots.sh	2010-05-21 12:32:57 UTC (rev 6651)
@@ -1,8 +1,10 @@
 #!/bin/mksh
 # Generate SVN trunk repositories snapshots.
 
-export LC_ALL=en_US.UTF-8
-unset LANGUAGE
+unset LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_IDENTIFICATION \
+    LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC \
+    LC_PAPER LC_TELEPHONE LC_TIME
+export LANG=C LC_CTYPE=en_US.UTF-8
 
 #set -e
 #set -x

Modified: trunk/gforge_base/evolvisforge/gforge/translations/bg.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/bg.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/bg.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-02-01 14:38+0100\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -944,23 +944,23 @@
 msgid "Could not call TOIlet"
 msgstr "Разрешение не беше получено"
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
-msgstr ""
+msgstr "bg_BG"
 
 #: common/include/group_section_texts.php:30
 #: common/reporting/report_utils.php:160
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr "Форуми"
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr ""
 
@@ -973,7 +973,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -987,7 +987,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -997,7 +997,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1075,7 +1075,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1204,7 +1204,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1470,7 +1470,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1600,8 +1600,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -4007,10 +4007,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -4027,25 +4027,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-#, fuzzy
-msgid "Error removing"
-msgstr "Грешка при създаването на %1$s"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
+msgstr ""
 
-#: www/admin/fixusergroup.php:82
-#, fuzzy
-msgid "Error adding"
-msgstr "Грешка при добавянето на бележка"
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5416,8 +5411,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -5880,7 +5875,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -6851,7 +6846,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -6867,8 +6862,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12309,11 +12304,6 @@
 msgid "Canned Response Inserted"
 msgstr ""
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr ""
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr ""
@@ -12722,6 +12712,14 @@
 msgstr ""
 
 #, fuzzy
+#~ msgid "Error removing"
+#~ msgstr "Грешка при създаването на %1$s"
+
+#, fuzzy
+#~ msgid "Error adding"
+#~ msgstr "Грешка при добавянето на бележка"
+
+#, fuzzy
 #~ msgid "View the MediaWiki Administration"
 #~ msgstr "Администриране"
 

Modified: trunk/gforge_base/evolvisforge/gforge/translations/ca.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/ca.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/ca.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-02-01 14:38+0100\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1034,23 +1034,23 @@
 msgid "Could not call TOIlet"
 msgstr "No s'ha pogut completar l'operació"
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
-msgstr "en_US"
+msgstr "ca_ES"
 
 #: common/include/group_section_texts.php:30
 #: common/reporting/report_utils.php:160
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr "Fòrums"
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr "Rastrejadors"
 
@@ -1063,7 +1063,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -1077,7 +1077,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -1087,7 +1087,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1166,7 +1166,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1297,7 +1297,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1580,7 +1580,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1711,8 +1711,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -4199,10 +4199,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -4219,25 +4219,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-#, fuzzy
-msgid "Error removing"
-msgstr "Error a l'inserir"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
+msgstr "Error a l'actualitzar"
 
-#: www/admin/fixusergroup.php:82
-#, fuzzy
-msgid "Error adding"
-msgstr "Error afegint VHOST:"
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5643,8 +5638,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -6112,7 +6107,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -7145,7 +7140,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -7161,8 +7156,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12832,11 +12827,6 @@
 msgid "Canned Response Inserted"
 msgstr "S'ha inserit una resposta 'enllaunada'"
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr "Error a l'actualitzar"
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr "Resposta 'enllaunada' actualitzada"
@@ -13257,6 +13247,14 @@
 msgstr "Nom d'usuari"
 
 #, fuzzy
+#~ msgid "Error removing"
+#~ msgstr "Error a l'inserir"
+
+#, fuzzy
+#~ msgid "Error adding"
+#~ msgstr "Error afegint VHOST:"
+
+#, fuzzy
 #~ msgid "View the MediaWiki Administration"
 #~ msgstr "Administració de l'ordinador central virtual"
 

Modified: trunk/gforge_base/evolvisforge/gforge/translations/de.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/de.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/de.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-01-15 15:23+0100\n"
-"Last-Translator: Roland Mas <lolando at debian.org>\n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1020,7 +1020,7 @@
 msgid "Could not call TOIlet"
 msgstr "Konnte Operation nicht vervollständigen"
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
 msgstr "de_DE"
 
@@ -1029,14 +1029,14 @@
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr "Foren"
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr "Tracker"
 
@@ -1049,7 +1049,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -1063,7 +1063,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -1073,7 +1073,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1152,7 +1152,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1282,7 +1282,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1565,7 +1565,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1696,8 +1696,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -4184,10 +4184,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -4204,25 +4204,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-#, fuzzy
-msgid "Error removing"
-msgstr "Fehler beim Einfügen"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
+msgstr "Fehler beim Aktualisieren"
 
-#: www/admin/fixusergroup.php:82
-#, fuzzy
-msgid "Error adding"
-msgstr "Fehler beim Hinzufügen des VHOST:"
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5625,8 +5620,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -6093,7 +6088,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -7131,7 +7126,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -7147,8 +7142,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12824,11 +12819,6 @@
 msgid "Canned Response Inserted"
 msgstr "Vorgespeicherte Antwort eingefügt"
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr "Fehler beim Aktualisieren"
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr "Vorgespeicherte Antwort aktualisiert"
@@ -13248,6 +13238,14 @@
 msgstr "Benutzername"
 
 #, fuzzy
+#~ msgid "Error removing"
+#~ msgstr "Fehler beim Einfügen"
+
+#, fuzzy
+#~ msgid "Error adding"
+#~ msgstr "Fehler beim Hinzufügen des VHOST:"
+
+#, fuzzy
 #~ msgid "View the MediaWiki Administration"
 #~ msgstr "Administration virtueller Hosts"
 

Modified: trunk/gforge_base/evolvisforge/gforge/translations/el.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/el.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/el.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-02-01 14:37+0100\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -911,23 +911,23 @@
 msgid "Could not call TOIlet"
 msgstr ""
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
-msgstr ""
+msgstr "el_GR"
 
 #: common/include/group_section_texts.php:30
 #: common/reporting/report_utils.php:160
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr ""
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr ""
 
@@ -940,7 +940,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -953,7 +953,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -963,7 +963,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1034,7 +1034,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1153,7 +1153,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1417,7 +1417,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1547,8 +1547,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -3900,10 +3900,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -3920,23 +3920,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-msgid "Error removing"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
 msgstr ""
 
-#: www/admin/fixusergroup.php:82
-msgid "Error adding"
-msgstr ""
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5284,8 +5281,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -5720,7 +5717,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -6677,7 +6674,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -6693,8 +6690,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12027,11 +12024,6 @@
 msgid "Canned Response Inserted"
 msgstr ""
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr ""
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr ""

Modified: trunk/gforge_base/evolvisforge/gforge/translations/en.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/en.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/en.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-01-13 16:27+0100\n"
-"Last-Translator: Roland Mas <lolando at debian.org>\n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -911,23 +911,23 @@
 msgid "Could not call TOIlet"
 msgstr ""
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
-msgstr ""
+msgstr "en_GB"
 
 #: common/include/group_section_texts.php:30
 #: common/reporting/report_utils.php:160
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr ""
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr ""
 
@@ -940,7 +940,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -953,7 +953,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -963,7 +963,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1034,7 +1034,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1153,7 +1153,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1417,7 +1417,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1547,8 +1547,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -3900,10 +3900,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -3920,23 +3920,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-msgid "Error removing"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
 msgstr ""
 
-#: www/admin/fixusergroup.php:82
-msgid "Error adding"
-msgstr ""
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5284,8 +5281,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -5720,7 +5717,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -6677,7 +6674,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -6693,8 +6690,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12027,11 +12024,6 @@
 msgid "Canned Response Inserted"
 msgstr ""
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr ""
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr ""

Modified: trunk/gforge_base/evolvisforge/gforge/translations/eo.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/eo.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/eo.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-02-01 14:37+0100\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -911,23 +911,23 @@
 msgid "Could not call TOIlet"
 msgstr ""
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
-msgstr ""
+msgstr "eo"
 
 #: common/include/group_section_texts.php:30
 #: common/reporting/report_utils.php:160
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr ""
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr ""
 
@@ -940,7 +940,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -953,7 +953,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -963,7 +963,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1034,7 +1034,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1153,7 +1153,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1417,7 +1417,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1547,8 +1547,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -3900,10 +3900,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -3920,23 +3920,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-msgid "Error removing"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
 msgstr ""
 
-#: www/admin/fixusergroup.php:82
-msgid "Error adding"
-msgstr ""
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5284,8 +5281,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -5720,7 +5717,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -6677,7 +6674,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -6693,8 +6690,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12027,11 +12024,6 @@
 msgid "Canned Response Inserted"
 msgstr ""
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr ""
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr ""

Modified: trunk/gforge_base/evolvisforge/gforge/translations/es.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/es.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/es.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-01-15 15:24+0100\n"
-"Last-Translator: Roland Mas <lolando at debian.org>\n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1021,7 +1021,7 @@
 msgid "Could not call TOIlet"
 msgstr "No se pudo completar la operación"
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
 msgstr "es_ES"
 
@@ -1030,14 +1030,14 @@
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr "Foros"
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr "Registros"
 
@@ -1050,7 +1050,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -1064,7 +1064,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -1074,7 +1074,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1152,7 +1152,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1282,7 +1282,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1566,7 +1566,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1697,8 +1697,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -4184,10 +4184,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -4204,25 +4204,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-#, fuzzy
-msgid "Error removing"
-msgstr "Error al insertar"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
+msgstr "Error al actualizar"
 
-#: www/admin/fixusergroup.php:82
-#, fuzzy
-msgid "Error adding"
-msgstr "Error añadiendo VHOST"
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5618,8 +5613,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -6079,7 +6074,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -7108,7 +7103,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -7124,8 +7119,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12768,11 +12763,6 @@
 msgid "Canned Response Inserted"
 msgstr "Insertada Respuesta Prefijada"
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr "Error al actualizar"
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr "Actualizada la Respuesta Prefijada"
@@ -13190,6 +13180,14 @@
 msgstr "Nombre de Usuario"
 
 #, fuzzy
+#~ msgid "Error removing"
+#~ msgstr "Error al insertar"
+
+#, fuzzy
+#~ msgid "Error adding"
+#~ msgstr "Error añadiendo VHOST"
+
+#, fuzzy
 #~ msgid "View the MediaWiki Administration"
 #~ msgstr "Administración de Virtual Host"
 

Modified: trunk/gforge_base/evolvisforge/gforge/translations/eu.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/eu.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/eu.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-02-19 23:28+0200\n"
-"Last-Translator: Piarres Beobide <pi at beobide.net>\n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1027,23 +1027,23 @@
 msgid "Could not call TOIlet"
 msgstr "Ezin izan da rola eskuratu"
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
-msgstr "es_ES"
+msgstr "eu_ES"
 
 #: common/include/group_section_texts.php:30
 #: common/reporting/report_utils.php:160
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr "Foroak"
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr ""
 
@@ -1056,7 +1056,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -1070,7 +1070,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -1080,7 +1080,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1159,7 +1159,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1290,7 +1290,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1573,7 +1573,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1703,8 +1703,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -4150,10 +4150,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -4170,26 +4170,21 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-#, fuzzy
-msgid "Error removing"
-msgstr "Akatsa txertatzean"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
+msgstr "Akatsa eguneratzean"
 
-#: www/admin/fixusergroup.php:82
-#, fuzzy
-msgid "Error adding"
-msgstr "Akatsa VHOST gehitzen"
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 #, fuzzy
 msgid "Could not add user maven to all forge groups:"
 msgstr "ERROREA: Ezin da administratzailea gehitu talde sortu berrira: %s"
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 #, fuzzy
 msgid "Could not add user maven to all SCM groups:"
 msgstr "ERROREA: Ezin da administratzailea gehitu talde sortu berrira: %s"
@@ -5592,8 +5587,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -6057,7 +6052,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -7082,7 +7077,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -7098,8 +7093,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12719,11 +12714,6 @@
 msgid "Canned Response Inserted"
 msgstr "Aurretik jarritako erantzuna sartua izan da."
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr "Akatsa eguneratzean"
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr "Aurretik jarritako erantzuna eguneratua"
@@ -13138,6 +13128,14 @@
 msgstr "Ez da erabiltzaile-izenik eman"
 
 #, fuzzy
+#~ msgid "Error removing"
+#~ msgstr "Akatsa txertatzean"
+
+#, fuzzy
+#~ msgid "Error adding"
+#~ msgstr "Akatsa VHOST gehitzen"
+
+#, fuzzy
 #~ msgid "View the MediaWiki Administration"
 #~ msgstr "Host birtualaren administrazioa"
 

Modified: trunk/gforge_base/evolvisforge/gforge/translations/fr.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/fr.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/fr.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-06-12 15:35+0200\n"
-"Last-Translator: Julien HEYMAN <julien.heyman at atosorigin.com>\n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <aljeux at free.fr>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1055,7 +1055,7 @@
 msgid "Could not call TOIlet"
 msgstr "Erreur lors de la création de l'objet Role"
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
 msgstr "fr_FR"
 
@@ -1064,14 +1064,14 @@
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr "Forums"
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr "Outil de suivi"
 
@@ -1084,7 +1084,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -1097,7 +1097,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -1107,7 +1107,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1178,7 +1178,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1299,7 +1299,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1581,7 +1581,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1711,8 +1711,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -4314,10 +4314,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -4334,26 +4334,21 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-#, fuzzy
-msgid "Error removing"
-msgstr "Erreur d'insertion"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
+msgstr "Erreur de mise à jour"
 
-#: www/admin/fixusergroup.php:82
-#, fuzzy
-msgid "Error adding"
-msgstr "Erreur lors de l'ajout de l'hôte virtuel :"
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 #, fuzzy
 msgid "Could not add user maven to all forge groups:"
 msgstr "Erreur lors de l'ajout de l'administrateur au nouveau groupe : %s"
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 #, fuzzy
 msgid "Could not add user maven to all SCM groups:"
 msgstr "Erreur lors de l'ajout de l'administrateur au nouveau groupe : %s"
@@ -5775,8 +5770,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -6231,7 +6226,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -7274,7 +7269,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -7290,8 +7285,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -13096,11 +13091,6 @@
 msgid "Canned Response Inserted"
 msgstr "Réponse type ajoutée"
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr "Erreur de mise à jour"
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr "Réponse type mise à jour"
@@ -13509,6 +13499,14 @@
 msgstr "Aucun nom d'utilisateur n'a été fourni"
 
 #, fuzzy
+#~ msgid "Error removing"
+#~ msgstr "Erreur d'insertion"
+
+#, fuzzy
+#~ msgid "Error adding"
+#~ msgstr "Erreur lors de l'ajout de l'hôte virtuel :"
+
+#, fuzzy
 #~ msgid "View Personal MediaWiki"
 #~ msgstr "Voir le calendrier personnel"
 

Modified: trunk/gforge_base/evolvisforge/gforge/translations/gforge.pot
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/gforge.pot	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/gforge.pot	2010-05-21 12:32:57 UTC (rev 6651)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
+"POT-Creation-Date: 2010-05-21 14:28+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -913,7 +913,7 @@
 msgid "Could not call TOIlet"
 msgstr ""
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
 msgstr ""
 
@@ -922,14 +922,14 @@
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr ""
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr ""
 
@@ -942,7 +942,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -955,7 +955,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -965,7 +965,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1036,7 +1036,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1155,7 +1155,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1419,7 +1419,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1549,8 +1549,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -3902,10 +3902,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -3922,23 +3922,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-msgid "Error removing"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
 msgstr ""
 
-#: www/admin/fixusergroup.php:82
-msgid "Error adding"
-msgstr ""
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5286,8 +5283,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -5722,7 +5719,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -6679,7 +6676,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -6695,8 +6692,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12029,11 +12026,6 @@
 msgid "Canned Response Inserted"
 msgstr ""
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr ""
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr ""

Modified: trunk/gforge_base/evolvisforge/gforge/translations/he.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/he.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/he.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-02-01 14:36+0100\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -911,23 +911,23 @@
 msgid "Could not call TOIlet"
 msgstr ""
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
-msgstr ""
+msgstr "he_IL"
 
 #: common/include/group_section_texts.php:30
 #: common/reporting/report_utils.php:160
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr ""
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr ""
 
@@ -940,7 +940,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -953,7 +953,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -963,7 +963,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1034,7 +1034,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1153,7 +1153,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1417,7 +1417,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1547,8 +1547,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -3900,10 +3900,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -3920,23 +3920,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-msgid "Error removing"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
 msgstr ""
 
-#: www/admin/fixusergroup.php:82
-msgid "Error adding"
-msgstr ""
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5284,8 +5281,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -5720,7 +5717,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -6677,7 +6674,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -6693,8 +6690,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12027,11 +12024,6 @@
 msgid "Canned Response Inserted"
 msgstr ""
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr ""
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr ""

Modified: trunk/gforge_base/evolvisforge/gforge/translations/id.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/id.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/id.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-02-01 14:36+0100\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -911,23 +911,23 @@
 msgid "Could not call TOIlet"
 msgstr ""
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
-msgstr ""
+msgstr "id_ID"
 
 #: common/include/group_section_texts.php:30
 #: common/reporting/report_utils.php:160
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr ""
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr ""
 
@@ -940,7 +940,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -953,7 +953,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -963,7 +963,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1034,7 +1034,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1153,7 +1153,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1417,7 +1417,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1547,8 +1547,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -3900,10 +3900,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -3920,23 +3920,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-msgid "Error removing"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
 msgstr ""
 
-#: www/admin/fixusergroup.php:82
-msgid "Error adding"
-msgstr ""
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5284,8 +5281,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -5720,7 +5717,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -6677,7 +6674,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -6693,8 +6690,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12027,11 +12024,6 @@
 msgid "Canned Response Inserted"
 msgstr ""
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr ""
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr ""

Modified: trunk/gforge_base/evolvisforge/gforge/translations/it.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/it.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/it.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-02-01 14:36+0100\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1024,7 +1024,7 @@
 msgid "Could not call TOIlet"
 msgstr "Impossibile completare l'operazione"
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
 msgstr "it_IT"
 
@@ -1033,14 +1033,14 @@
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr "Forum"
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr "Tracker"
 
@@ -1053,7 +1053,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -1067,7 +1067,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -1077,7 +1077,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1156,7 +1156,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1288,7 +1288,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1559,7 +1559,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1690,8 +1690,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -4193,10 +4193,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -4213,25 +4213,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-#, fuzzy
-msgid "Error removing"
-msgstr "Errore nell'inserimento"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
+msgstr "Errore nell'aggiornamento"
 
-#: www/admin/fixusergroup.php:82
-#, fuzzy
-msgid "Error adding"
-msgstr "Errore nell'aggiunta del VHOST:"
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5645,8 +5640,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -6117,7 +6112,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -7152,7 +7147,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -7168,8 +7163,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12842,11 +12837,6 @@
 msgid "Canned Response Inserted"
 msgstr "Risposta predefinita inserita"
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr "Errore nell'aggiornamento"
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr "Risposta predefinita aggiornata"
@@ -13268,6 +13258,14 @@
 msgstr "Non è stato inserito alcun file"
 
 #, fuzzy
+#~ msgid "Error removing"
+#~ msgstr "Errore nell'inserimento"
+
+#, fuzzy
+#~ msgid "Error adding"
+#~ msgstr "Errore nell'aggiunta del VHOST:"
+
+#, fuzzy
 #~ msgid "View the MediaWiki Administration"
 #~ msgstr "Amministrazione host virtuale"
 

Modified: trunk/gforge_base/evolvisforge/gforge/translations/ja.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/ja.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/ja.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-01-15 14:05+0100\n"
-"Last-Translator: Roland Mas <lolando at debian.org>\n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -981,23 +981,23 @@
 msgid "Could not call TOIlet"
 msgstr "パーミッションが取得できません。"
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
-msgstr "ja"
+msgstr "ja_JP"
 
 #: common/include/group_section_texts.php:30
 #: common/reporting/report_utils.php:160
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr "フォーラム"
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr ""
 
@@ -1010,7 +1010,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -1024,7 +1024,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -1034,7 +1034,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1110,7 +1110,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1237,7 +1237,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1503,7 +1503,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1633,8 +1633,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -4043,10 +4043,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -4063,25 +4063,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-#, fuzzy
-msgid "Error removing"
-msgstr "アカウントをアクティブにするときにエラーが発生しました"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
+msgstr ""
 
-#: www/admin/fixusergroup.php:82
-#, fuzzy
-msgid "Error adding"
-msgstr "アカウントをアクティブにするときにエラーが発生しました"
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5447,8 +5442,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -5895,7 +5890,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -6856,7 +6851,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -6872,8 +6867,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12249,11 +12244,6 @@
 msgid "Canned Response Inserted"
 msgstr ""
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr ""
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr ""
@@ -12656,6 +12646,14 @@
 msgstr ""
 
 #, fuzzy
+#~ msgid "Error removing"
+#~ msgstr "アカウントをアクティブにするときにエラーが発生しました"
+
+#, fuzzy
+#~ msgid "Error adding"
+#~ msgstr "アカウントをアクティブにするときにエラーが発生しました"
+
+#, fuzzy
 #~ msgid "View the MediaWiki Administration"
 #~ msgstr "ドキュメントマネージャ管理"
 

Modified: trunk/gforge_base/evolvisforge/gforge/translations/ko.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/ko.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/ko.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-02-01 14:36+0100\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1020,23 +1020,23 @@
 msgid "Could not call TOIlet"
 msgstr "Could Not Complete Operation"
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
-msgstr "en_US"
+msgstr "ko_KR"
 
 #: common/include/group_section_texts.php:30
 #: common/reporting/report_utils.php:160
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr "게시판"
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr ""
 
@@ -1049,7 +1049,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -1063,7 +1063,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -1073,7 +1073,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1152,7 +1152,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1283,7 +1283,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1549,7 +1549,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1679,8 +1679,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -4113,10 +4113,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -4133,25 +4133,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-#, fuzzy
-msgid "Error removing"
-msgstr "추가 에러"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
+msgstr "갱신 에러"
 
-#: www/admin/fixusergroup.php:82
-#, fuzzy
-msgid "Error adding"
-msgstr "Error adding VHOST:"
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5543,8 +5538,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -6006,7 +6001,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -7024,7 +7019,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -7040,8 +7035,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12585,11 +12580,6 @@
 msgid "Canned Response Inserted"
 msgstr "미리 준비한 의견이 추가되었습니다."
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr "갱신 에러"
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr "미리 준비한 의견이 갱신되었습니다."
@@ -13011,6 +13001,14 @@
 msgstr "사용자ID"
 
 #, fuzzy
+#~ msgid "Error removing"
+#~ msgstr "추가 에러"
+
+#, fuzzy
+#~ msgid "Error adding"
+#~ msgstr "Error adding VHOST:"
+
+#, fuzzy
 #~ msgid "View the MediaWiki Administration"
 #~ msgstr "Virtual Host Administration"
 

Modified: trunk/gforge_base/evolvisforge/gforge/translations/la.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/la.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/la.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-02-01 14:36+0100\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -911,23 +911,23 @@
 msgid "Could not call TOIlet"
 msgstr ""
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
-msgstr ""
+msgstr "C"
 
 #: common/include/group_section_texts.php:30
 #: common/reporting/report_utils.php:160
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr ""
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr ""
 
@@ -940,7 +940,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -953,7 +953,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -963,7 +963,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1034,7 +1034,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1153,7 +1153,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1417,7 +1417,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1547,8 +1547,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -3900,10 +3900,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -3920,23 +3920,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-msgid "Error removing"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
 msgstr ""
 
-#: www/admin/fixusergroup.php:82
-msgid "Error adding"
-msgstr ""
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5284,8 +5281,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -5720,7 +5717,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -6677,7 +6674,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -6693,8 +6690,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12027,11 +12024,6 @@
 msgid "Canned Response Inserted"
 msgstr ""
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr ""
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr ""

Modified: trunk/gforge_base/evolvisforge/gforge/translations/nb.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/nb.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/nb.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-02-01 14:36+0100\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -911,23 +911,23 @@
 msgid "Could not call TOIlet"
 msgstr ""
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
-msgstr ""
+msgstr "nb_NO"
 
 #: common/include/group_section_texts.php:30
 #: common/reporting/report_utils.php:160
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr ""
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr ""
 
@@ -940,7 +940,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -953,7 +953,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -963,7 +963,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1034,7 +1034,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1153,7 +1153,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1417,7 +1417,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1547,8 +1547,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -3900,10 +3900,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -3920,23 +3920,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-msgid "Error removing"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
 msgstr ""
 
-#: www/admin/fixusergroup.php:82
-msgid "Error adding"
-msgstr ""
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5284,8 +5281,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -5720,7 +5717,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -6677,7 +6674,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -6693,8 +6690,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12027,11 +12024,6 @@
 msgid "Canned Response Inserted"
 msgstr ""
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr ""
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr ""

Modified: trunk/gforge_base/evolvisforge/gforge/translations/nl.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/nl.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/nl.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-02-01 14:36+0100\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1030,23 +1030,23 @@
 msgid "Could not call TOIlet"
 msgstr "Kon de gevraagde bewerking niet uitvoeren"
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
-msgstr "en_US"
+msgstr "nl_NL"
 
 #: common/include/group_section_texts.php:30
 #: common/reporting/report_utils.php:160
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr "Forums"
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr "Trackers"
 
@@ -1059,7 +1059,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -1073,7 +1073,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -1083,7 +1083,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1162,7 +1162,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1293,7 +1293,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1576,7 +1576,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1707,8 +1707,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -4203,10 +4203,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -4223,25 +4223,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-#, fuzzy
-msgid "Error removing"
-msgstr "Fout bij het invoegen"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
+msgstr "Fout bij het wijzigen"
 
-#: www/admin/fixusergroup.php:82
-#, fuzzy
-msgid "Error adding"
-msgstr "Fout bij toevoegen Virtuele Host:"
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5649,8 +5644,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -6117,7 +6112,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -7152,7 +7147,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -7168,8 +7163,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12848,11 +12843,6 @@
 msgid "Canned Response Inserted"
 msgstr "Standaard antwoord invoegen"
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr "Fout bij het wijzigen"
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr "Standaard antwoord aangepast"
@@ -13274,6 +13264,14 @@
 msgstr "Gebruikersnaam"
 
 #, fuzzy
+#~ msgid "Error removing"
+#~ msgstr "Fout bij het invoegen"
+
+#, fuzzy
+#~ msgid "Error adding"
+#~ msgstr "Fout bij toevoegen Virtuele Host:"
+
+#, fuzzy
 #~ msgid "View the MediaWiki Administration"
 #~ msgstr "Virtuele Host - beheer"
 

Modified: trunk/gforge_base/evolvisforge/gforge/translations/pl.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/pl.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/pl.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-02-01 14:35+0100\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -911,23 +911,23 @@
 msgid "Could not call TOIlet"
 msgstr ""
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
-msgstr ""
+msgstr "pl_PL"
 
 #: common/include/group_section_texts.php:30
 #: common/reporting/report_utils.php:160
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr ""
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr ""
 
@@ -940,7 +940,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -953,7 +953,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -963,7 +963,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1034,7 +1034,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1153,7 +1153,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1417,7 +1417,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1547,8 +1547,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -3900,10 +3900,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -3920,23 +3920,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-msgid "Error removing"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
 msgstr ""
 
-#: www/admin/fixusergroup.php:82
-msgid "Error adding"
-msgstr ""
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5284,8 +5281,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -5720,7 +5717,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -6677,7 +6674,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -6693,8 +6690,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12027,11 +12024,6 @@
 msgid "Canned Response Inserted"
 msgstr ""
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr ""
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr ""

Modified: trunk/gforge_base/evolvisforge/gforge/translations/pt.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/pt.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/pt.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-02-01 14:35+0100\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -911,23 +911,23 @@
 msgid "Could not call TOIlet"
 msgstr ""
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
-msgstr ""
+msgstr "pt_PT"
 
 #: common/include/group_section_texts.php:30
 #: common/reporting/report_utils.php:160
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr ""
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr ""
 
@@ -940,7 +940,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -953,7 +953,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -963,7 +963,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1034,7 +1034,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1153,7 +1153,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1417,7 +1417,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1547,8 +1547,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -3900,10 +3900,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -3920,23 +3920,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-msgid "Error removing"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
 msgstr ""
 
-#: www/admin/fixusergroup.php:82
-msgid "Error adding"
-msgstr ""
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5284,8 +5281,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -5720,7 +5717,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -6677,7 +6674,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -6693,8 +6690,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12027,11 +12024,6 @@
 msgid "Canned Response Inserted"
 msgstr ""
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr ""
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr ""

Modified: trunk/gforge_base/evolvisforge/gforge/translations/pt_BR.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/pt_BR.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/pt_BR.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-02-01 14:35+0100\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1034,7 +1034,7 @@
 msgid "Could not call TOIlet"
 msgstr "Não Posso Completar a Operação"
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
 msgstr "pt_BR"
 
@@ -1043,14 +1043,14 @@
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr "Fóruns"
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr ""
 
@@ -1063,7 +1063,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -1077,7 +1077,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -1087,7 +1087,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1166,7 +1166,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1297,7 +1297,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1563,7 +1563,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1693,8 +1693,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -4137,10 +4137,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -4157,25 +4157,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-#, fuzzy
-msgid "Error removing"
-msgstr "Erro inserindo"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
+msgstr "Erro atualizando"
 
-#: www/admin/fixusergroup.php:82
-#, fuzzy
-msgid "Error adding"
-msgstr "Erro adicionando VHOST:"
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5578,8 +5573,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -6045,7 +6040,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -7074,7 +7069,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -7090,8 +7085,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12694,11 +12689,6 @@
 msgid "Canned Response Inserted"
 msgstr "Resposta Pré-definida Inserida"
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr "Erro atualizando"
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr "Resposta Pré-definida Atualizada"
@@ -13121,6 +13111,14 @@
 msgstr "Nome do Usuário"
 
 #, fuzzy
+#~ msgid "Error removing"
+#~ msgstr "Erro inserindo"
+
+#, fuzzy
+#~ msgid "Error adding"
+#~ msgstr "Erro adicionando VHOST:"
+
+#, fuzzy
 #~ msgid "View the MediaWiki Administration"
 #~ msgstr "Administração de Host Virtual"
 

Modified: trunk/gforge_base/evolvisforge/gforge/translations/ru.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/ru.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/ru.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: FusionForge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-02-18 16:52+0100\n"
-"Last-Translator: Aleksey Bragin <aleksey at reactos.org>\n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1015,23 +1015,23 @@
 msgid "Could not call TOIlet"
 msgstr "Ошибка, не указана роль"
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
-msgstr "Английский"
+msgstr "ru_RU"
 
 #: common/include/group_section_texts.php:30
 #: common/reporting/report_utils.php:160
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr "Форумы"
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr "Трекеры"
 
@@ -1044,7 +1044,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -1057,7 +1057,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -1067,7 +1067,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1138,7 +1138,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1260,7 +1260,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1542,7 +1542,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1672,8 +1672,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -4267,10 +4267,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -4287,26 +4287,21 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-#, fuzzy
-msgid "Error removing"
-msgstr "Ошибка вставки"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
+msgstr "Ошибка обновления"
 
-#: www/admin/fixusergroup.php:82
-#, fuzzy
-msgid "Error adding"
-msgstr "Ошибка добавления VHOST:"
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 #, fuzzy
 msgid "Could not add user maven to all forge groups:"
 msgstr "В новую группу админ %s не добавлен"
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 #, fuzzy
 msgid "Could not add user maven to all SCM groups:"
 msgstr "В новую группу админ %s не добавлен"
@@ -5725,8 +5720,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -6178,7 +6173,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -7214,7 +7209,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -7230,8 +7225,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12993,11 +12988,6 @@
 msgid "Canned Response Inserted"
 msgstr "Полученый ответ вставлен"
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr "Ошибка обновления"
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr "Шаблон ответа обновлен"
@@ -13412,6 +13402,14 @@
 msgid "No User Name Provided"
 msgstr "Имя участника обязательно"
 
+#, fuzzy
+#~ msgid "Error removing"
+#~ msgstr "Ошибка вставки"
+
+#, fuzzy
+#~ msgid "Error adding"
+#~ msgstr "Ошибка добавления VHOST:"
+
 #~ msgid "View Personal MediaWiki"
 #~ msgstr "Персональная энциклопедия"
 

Modified: trunk/gforge_base/evolvisforge/gforge/translations/sv.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/sv.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/sv.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-03-26 16:15+0200\n"
-"Last-Translator: Martin Bagge <brother at bsnet.se>\n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1030,23 +1030,23 @@
 msgid "Could not call TOIlet"
 msgstr "Kan inte slutföra operationen"
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
-msgstr "Sv_SE"
+msgstr "sv_SE"
 
 #: common/include/group_section_texts.php:30
 #: common/reporting/report_utils.php:160
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr "Forum"
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr ""
 
@@ -1059,7 +1059,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -1073,7 +1073,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -1083,7 +1083,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1162,7 +1162,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1293,7 +1293,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1559,7 +1559,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1689,8 +1689,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -4129,10 +4129,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -4149,25 +4149,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-#, fuzzy
-msgid "Error removing"
-msgstr "Fel vid infogning"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
+msgstr "Fel vid uppdatering"
 
-#: www/admin/fixusergroup.php:82
-#, fuzzy
-msgid "Error adding"
-msgstr "Fel vid tillägg av virtuel värd:"
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5565,8 +5560,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -6030,7 +6025,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -7049,7 +7044,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -7065,8 +7060,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12661,11 +12656,6 @@
 msgid "Canned Response Inserted"
 msgstr "Förinställt svar infogat"
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr "Fel vid uppdatering"
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr "Förinställda svar uppdaterade"
@@ -13087,6 +13077,14 @@
 msgstr "Användarenamn"
 
 #, fuzzy
+#~ msgid "Error removing"
+#~ msgstr "Fel vid infogning"
+
+#, fuzzy
+#~ msgid "Error adding"
+#~ msgstr "Fel vid tillägg av virtuel värd:"
+
+#, fuzzy
 #~ msgid "View the MediaWiki Administration"
 #~ msgstr "Administration av virtuel värd"
 

Modified: trunk/gforge_base/evolvisforge/gforge/translations/th.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/th.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/th.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-02-01 14:35+0100\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -911,23 +911,23 @@
 msgid "Could not call TOIlet"
 msgstr ""
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
-msgstr ""
+msgstr "th_TH"
 
 #: common/include/group_section_texts.php:30
 #: common/reporting/report_utils.php:160
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr ""
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr ""
 
@@ -940,7 +940,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -953,7 +953,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -963,7 +963,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1034,7 +1034,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1153,7 +1153,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1417,7 +1417,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1547,8 +1547,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -3900,10 +3900,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -3920,23 +3920,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-msgid "Error removing"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
 msgstr ""
 
-#: www/admin/fixusergroup.php:82
-msgid "Error adding"
-msgstr ""
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5284,8 +5281,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -5720,7 +5717,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -6677,7 +6674,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -6693,8 +6690,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12027,11 +12024,6 @@
 msgid "Canned Response Inserted"
 msgstr ""
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr ""
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr ""

Modified: trunk/gforge_base/evolvisforge/gforge/translations/zh_CN.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/zh_CN.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/zh_CN.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-02-01 14:35+0100\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1010,7 +1010,7 @@
 msgid "Could not call TOIlet"
 msgstr "无法完成执行"
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
 msgstr "zh_CN"
 
@@ -1019,14 +1019,14 @@
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr "讨论区"
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr "跟踪者"
 
@@ -1039,7 +1039,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -1053,7 +1053,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -1063,7 +1063,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1142,7 +1142,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1273,7 +1273,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1556,7 +1556,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1687,8 +1687,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -4144,10 +4144,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -4164,25 +4164,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-#, fuzzy
-msgid "Error removing"
-msgstr "插入错误"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
+msgstr "更新错误"
 
-#: www/admin/fixusergroup.php:82
-#, fuzzy
-msgid "Error adding"
-msgstr "添加虚拟主机时发生错误:"
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5573,8 +5568,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -6037,7 +6032,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -7044,7 +7039,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -7060,8 +7055,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12602,11 +12597,6 @@
 msgid "Canned Response Inserted"
 msgstr "预设回应已插入"
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr "更新错误"
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr "预设回应已更新"
@@ -13028,6 +13018,14 @@
 msgstr "帐号"
 
 #, fuzzy
+#~ msgid "Error removing"
+#~ msgstr "插入错误"
+
+#, fuzzy
+#~ msgid "Error adding"
+#~ msgstr "添加虚拟主机时发生错误:"
+
+#, fuzzy
 #~ msgid "View the MediaWiki Administration"
 #~ msgstr "虚拟主机管理"
 

Modified: trunk/gforge_base/evolvisforge/gforge/translations/zh_TW.po
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/translations/zh_TW.po	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/translations/zh_TW.po	2010-05-21 12:32:57 UTC (rev 6651)
@@ -7,9 +7,9 @@
 msgstr ""
 "Project-Id-Version: Gforge 4.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-14 16:41+0200\n"
-"PO-Revision-Date: 2009-02-01 14:34+0100\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2010-05-21 14:10+0200\n"
+"PO-Revision-Date: 2010-05-21 14:26+0200\n"
+"Last-Translator: Thorsten Glaser <t.glaser at tarent.de>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1010,7 +1010,7 @@
 msgid "Could not call TOIlet"
 msgstr "無法完成執行"
 
-#: common/include/gettext.php:206 www/soap/index.php:162
+#: common/include/gettext.php:205 www/soap/index.php:162
 msgid "en_US"
 msgstr "zh_TW"
 
@@ -1019,14 +1019,14 @@
 #: plugins/quota_management/www/quota_project.php:91
 #: www/include/Layout.class.php:555 www/include/project_home.php:351
 #: www/themes/evolvis/Theme.class.php:298
-#: www/themes/evolvis/Theme.class.php:615
+#: www/themes/evolvis/Theme.class.php:617
 #: www/themes/gforge-simple-theme/Theme.class.php:511
 #: www/themes/gforge/Theme.class.php:505
 msgid "Forums"
 msgstr "討論區"
 
 #: common/include/group_section_texts.php:31 www/reporting/toolspie.php:59
-#: www/themes/evolvis/Theme.class.php:622
+#: www/themes/evolvis/Theme.class.php:624
 msgid "Trackers"
 msgstr "追蹤者"
 
@@ -1039,7 +1039,7 @@
 #: www/project/stats/project_stats_utils.php:198
 #: www/stats/site_stats_utils.php:274 www/stats/site_stats_utils.php:408
 #: www/stats/site_stats_utils.php:463 www/themes/evolvis/Theme.class.php:332
-#: www/themes/evolvis/Theme.class.php:637
+#: www/themes/evolvis/Theme.class.php:639
 #: www/themes/gforge-simple-theme/Theme.class.php:536
 #: www/themes/gforge/Theme.class.php:527
 #: www/themes/ultralite/Theme.class.php:104
@@ -1053,7 +1053,7 @@
 
 #: common/include/group_section_texts.php:34 common/include/rbac_texts.php:118
 #: www/frs/include/frs_utils.php:90 www/include/Layout.class.php:621
-#: www/themes/evolvis/Theme.class.php:674
+#: www/themes/evolvis/Theme.class.php:676
 #: www/themes/gforge-simple-theme/Theme.class.php:585
 #: www/themes/gforge/Theme.class.php:571
 msgid "Files"
@@ -1063,7 +1063,7 @@
 #: plugins/quota_management/www/quota_project.php:76 www/activity/index.php:89
 #: www/activity/index.php:235 www/admin/index.php:125
 #: www/include/Layout.class.php:598 www/news/index.php:35
-#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:651
+#: www/news/submit.php:101 www/themes/evolvis/Theme.class.php:653
 #: www/themes/gforge-simple-theme/Theme.class.php:560
 #: www/themes/gforge/Theme.class.php:548
 msgid "News"
@@ -1142,7 +1142,7 @@
 #: www/scm/include/scm_utils.php:53 www/survey/include/SurveyHTML.class.php:54
 #: www/survey/include/SurveyHTML.class.php:74 www/survey/survey_utils.php:53
 #: www/survey/survey_utils.php:77 www/themes/evolvis/Theme.class.php:528
-#: www/themes/evolvis/Theme.class.php:608
+#: www/themes/evolvis/Theme.class.php:610
 #: www/themes/gforge-simple-theme/Theme.class.php:395
 #: www/themes/gforge-simple-theme/Theme.class.php:494
 #: www/themes/gforge/Theme.class.php:400 www/themes/gforge/Theme.class.php:489
@@ -1273,7 +1273,7 @@
 #: www/scm/include/scm_utils.php:52 www/stats/site_stats_utils.php:277
 #: www/stats/site_stats_utils.php:409 www/stats/site_stats_utils.php:464
 #: www/themes/evolvis/Theme.class.php:351
-#: www/themes/evolvis/Theme.class.php:658
+#: www/themes/evolvis/Theme.class.php:660
 #: www/themes/gforge-simple-theme/Theme.class.php:568
 #: www/themes/gforge/Theme.class.php:555
 msgid "SCM"
@@ -1556,7 +1556,7 @@
 
 #: common/reporting/report_utils.php:164 www/include/Layout.class.php:584
 #: www/include/project_home.php:367 www/themes/evolvis/Theme.class.php:314
-#: www/themes/evolvis/Theme.class.php:644
+#: www/themes/evolvis/Theme.class.php:646
 #: www/themes/gforge-simple-theme/Theme.class.php:544
 #: www/themes/gforge/Theme.class.php:534
 msgid "Docs"
@@ -1687,8 +1687,8 @@
 #: common/survey/SurveyResponse.class.php:91 www/account/change_email.php:39
 #: www/account/change_pw.php:49 www/account/change_pw.php:57
 #: www/account/change_pw.php:65 www/account/change_pw.php:73
-#: www/admin/fixusergroup.php:92 www/admin/fixusergroup.php:102
-#: www/admin/fixusergroup.php:112 www/admin/passedit.php:53
+#: www/admin/fixusergroup.php:87 www/admin/fixusergroup.php:97
+#: www/admin/fixusergroup.php:107 www/admin/passedit.php:53
 #: www/admin/passedit.php:61 www/admin/passedit.php:69 www/admin/search.php:39
 #: www/developer/diary.php:97 www/developer/rate.php:77
 #: www/docman/admin/index.php:75 www/docman/admin/index.php:87
@@ -4139,10 +4139,10 @@
 
 #: www/admin/fixusergroup.php:35
 msgid ""
-"This re-inserts all users into their respective groups and is incredibly "
-"dangerous. It also ensures the user “maven” is member in all groups, and "
-"will <strong>drop</strong> inactive users from all groups they were a member "
-"of. Continue at your own rish. Do a database dump (backup) before."
+"This re-inserts all users into their respective groups (in case they lose e."
+"g. SCM group membership by accident) and is incredibly dangerous. It also "
+"ensures the user “maven” is member in all groups.. Continue at your own "
+"rish. Do a database dump (backup) before."
 msgstr ""
 
 #: www/admin/fixusergroup.php:38
@@ -4159,25 +4159,20 @@
 "different issues…"
 msgstr ""
 
-#: www/admin/fixusergroup.php:77
-#, fuzzy
-msgid "Error removing"
-msgstr "新增時發生錯誤"
+#: www/admin/fixusergroup.php:77 www/tracker/admin/updates.php:113
+#: www/tracker/admin/updates.php:269 www/tracker/admin/updates.php:283
+msgid "Error updating"
+msgstr "更新時發生錯誤"
 
-#: www/admin/fixusergroup.php:82
-#, fuzzy
-msgid "Error adding"
-msgstr "新增虛擬主機時發生錯誤:"
-
-#: www/admin/fixusergroup.php:93
+#: www/admin/fixusergroup.php:88
 msgid "Could not remove user maven from all old groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:103
+#: www/admin/fixusergroup.php:98
 msgid "Could not add user maven to all forge groups:"
 msgstr ""
 
-#: www/admin/fixusergroup.php:113
+#: www/admin/fixusergroup.php:108
 msgid "Could not add user maven to all SCM groups:"
 msgstr ""
 
@@ -5563,8 +5558,8 @@
 #: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:41
 #: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:45
-#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:784
-#: www/themes/evolvis/Theme.class.php:826
+#: www/search/index.php:69 www/themes/evolvis/Theme.class.php:786
+#: www/themes/evolvis/Theme.class.php:828
 #: www/themes/gforge-simple-theme/Theme.class.php:665
 #: www/themes/gforge-simple-theme/Theme.class.php:683
 #: www/themes/gforge/Theme.class.php:754 www/themes/gforge/Theme.class.php:778
@@ -6027,7 +6022,7 @@
 #: www/search/include/renderers/NewsHtmlSearchRenderer.class.php:35
 #: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:36
 #: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:36
-#: www/themes/evolvis/Theme.class.php:589
+#: www/themes/evolvis/Theme.class.php:591
 #: www/themes/gforge-simple-theme/Theme.class.php:487
 #: www/themes/gforge/Theme.class.php:482 www/tracker/add.php:73
 #: www/tracker/browse.php:146 www/tracker/browse.php:299
@@ -7033,7 +7028,7 @@
 
 #: www/include/Layout.class.php:570 www/include/project_home.php:375
 #: www/themes/evolvis/Theme.class.php:322
-#: www/themes/evolvis/Theme.class.php:630
+#: www/themes/evolvis/Theme.class.php:632
 #: www/themes/gforge-simple-theme/Theme.class.php:528
 #: www/themes/gforge/Theme.class.php:520
 msgid "Lists"
@@ -7049,8 +7044,8 @@
 
 #: www/include/Layout.class.php:803
 #: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/evolvis/Theme.class.php:791
-#: www/themes/evolvis/Theme.class.php:833
+#: www/themes/evolvis/Theme.class.php:793
+#: www/themes/evolvis/Theme.class.php:835
 #: www/themes/gforge-simple-theme/Theme.class.php:669
 #: www/themes/gforge/Theme.class.php:760
 msgid "Advanced search"
@@ -12590,11 +12585,6 @@
 msgid "Canned Response Inserted"
 msgstr "預設回應已插入"
 
-#: www/tracker/admin/updates.php:113 www/tracker/admin/updates.php:269
-#: www/tracker/admin/updates.php:283
-msgid "Error updating"
-msgstr "更新時發生錯誤"
-
 #: www/tracker/admin/updates.php:116
 msgid "Canned Response Updated"
 msgstr "預設回應已更新"
@@ -13016,6 +13006,14 @@
 msgstr "帳號"
 
 #, fuzzy
+#~ msgid "Error removing"
+#~ msgstr "新增時發生錯誤"
+
+#, fuzzy
+#~ msgid "Error adding"
+#~ msgstr "新增虛擬主機時發生錯誤:"
+
+#, fuzzy
 #~ msgid "View the MediaWiki Administration"
 #~ msgstr "虛擬主機管理"
 

Modified: trunk/gforge_base/evolvisforge/gforge/www/soap/index.php
===================================================================
--- trunk/gforge_base/evolvisforge/gforge/www/soap/index.php	2010-05-21 11:57:20 UTC (rev 6650)
+++ trunk/gforge_base/evolvisforge/gforge/www/soap/index.php	2010-05-21 12:32:57 UTC (rev 6651)
@@ -159,7 +159,10 @@
 function login($userid, $passwd) {
 	global $feedback, $session_ser;
 		
-	setlocale (LC_TIME, _('en_US'));
+	$lc_time = _("en_US");
+	if (!setlocale(LC_TIME, $lc_time . ".UTF-8"))
+		if (!setlocale(LC_TIME, $lc_time))
+			setlocale(LC_TIME, "C");
 
 	$res = session_login_valid($userid, $passwd);
 	




More information about the evolvis-commits mailing list