plugins/coclico/Makefile.debian -text
plugins/coclico/README -text
plugins/coclico/codendi-specific/common/dao/include/DataAccess.class.php -text
-plugins/coclico/codendi-specific/common/dao/include/DataAccess.class.php.orig -text
plugins/coclico/codendi-specific/common/dao/include/DataAccessObject.class.php -text
-plugins/coclico/codendi-specific/common/dao/include/DataAccessObject.class.php.orig -text
plugins/coclico/codendi-specific/common/dao/include/diffDataAccess -text
plugins/coclico/codendi-specific/common/dao/include/diffDataAccessObject -text
plugins/coclico/codendi-specific/env.inc.php -text
src/db/gforge-struct-mysql.sql -text
src/db/timetracking-init.sql -text
src/deb-specific/fckeditor/config.js -text
+src/deb-specific/fusionforge.rsyslog -text
src/deb-specific/gforge.logrotate -text
src/deb-specific/install-cvs.sh -text
src/deb-specific/update-ldap.sh -text
src/debian/dsf-in/web-apache2-vhosts.postinst.dsfh-in -text
src/debian/dsf-in/web-apache2-vhosts.postrm.dsfh-in -text
src/debian/dsf-in/web-apache2.config.dsfh-in -text
+src/debian/dsf-in/web-apache2.links -text
src/debian/dsf-in/web-apache2.postinst.dsfh-in -text
src/debian/dsf-in/web-apache2.prerm -text
src/debian/dsf-in/web-apache2.templates.dsfh-in -text
src/debian/dsf-po/gl.po -text
src/debian/dsf-po/pt.po -text
src/debian/dsf-po/ru.po -text
+src/debian/patches/db-on-localhost.dpatch -text
src/debian/patches/disable-dav.dpatch -text
src/debian/patches/production-environment.dpatch -text
src/debian/patches/use-nusoap-from-distro.dpatch -text
src/debian/patches/use-snoopy-from-distro.dpatch -text
+src/debian/patches/use-yui-from-distro.dpatch -text
src/debian/po/README -text
src/debian/watch -text
src/docs/README.gettext -text
src/image-sources/fusionforge-logo.xcf -text svneol=unset#unset
src/image-sources/pow-fusionforge.xcf -text svneol=unset#unset
src/image-sources/top-logo.xcf -text svneol=unset#unset
+src/install-common.inc -text
src/install.sh -text
src/lib/vendor/prototype/prototype.js -text
src/lib/vendor/scriptaculous/builder.js -text
+++ /dev/null
-<?php
-/**
- * Copyright (c) Xerox Corporation, Codendi Team, 2001-2009. All rights reserved
- *
- * This file is a part of Codendi.
- *
- * Codendi is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * Codendi is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Codendi. If not, see <http://www.gnu.org/licenses/>.
- */
-
-require_once('DataAccessResult.class.php');
-require_once('DataAccessException.class.php');
-
-$GLOBALS['DEBUG_DAO_QUERY_COUNT'] = 0;
-
-if(!defined('CODENDI_DB_NULL')) define('CODENDI_DB_NULL', 0);
-if(!defined('CODENDI_DB_NOT_NULL')) define('CODENDI_DB_NOT_NULL', 1);
-
-/**
- * A simple class for querying MySQL
- */
-class DataAccess {
- /**
- * @access protected
- * $db stores a database resource
- */
- var $db;
-
- /**
- * store the database name used to instantiate the connection
- */
- public $db_name;
-
- /**
- * Constucts a new DataAccess object
- * @param $host string hostname for dbserver
- * @param $user string dbserver user
- * @param $pass string dbserver user password
- * @param $db string database name
- */
- function DataAccess($host,$user,$pass,$db,$opt=0) {
- $this->store = array();
- $this->db = $this->connect($host, $user, $pass, $opt);
- if ($this->db) {
- mysql_query("SET NAMES 'utf8'", $this->db);
- if (!mysql_select_db($db,$this->db)) {
- trigger_error(mysql_error(), E_USER_ERROR);
- }
- $this->db_name = $db;
- } else {
- throw new DataAccessException('Unable to access the database. Please contact your administrator.');
- }
- }
-
- protected function connect($host, $user, $pass, $opt) {
- return mysql_connect($host, $user, $pass, true, $opt);
- }
-
- var $store;
-
- /**
- * Fetches a query resources and stores it in a local member
- * @param $sql string the database query to run
- * @return object DataAccessResult
- */
- function &fetch($sql) {
- $time = microtime(1);
- $res = mysql_query($sql,$this->db);
- if (isset($GLOBALS['DEBUG_MODE']) && $GLOBALS['DEBUG_MODE']) {
- $GLOBALS['DEBUG_DAO_QUERY_COUNT']++;
- $GLOBALS['QUERIES'][]=$sql;
- if (!isset($GLOBALS['DBSTORE'][md5($sql)])) {
- $GLOBALS['DBSTORE'][md5($sql)] = array('sql' => $sql, 'nb' => 0, 'trace' => array());
- }
- $GLOBALS['DBSTORE'][md5($sql)]['trace'][$GLOBALS['DBSTORE'][md5($sql)]['nb']++] = array(debug_backtrace(), $time, microtime(1));
- }
- $dar = new DataAccessResult($this, $res);
- return $dar;
- }
-
- /**
- * Return ID generated from the previous INSERT operation.
- *
- * @return int, or 0 if the previous query does not generate an AUTO_INCREMENT value, or FALSE if no MySQL connection was established
- */
- function lastInsertId() {
- if($this->db) {
- return mysql_insert_id($this->db);
- } else {
- return mysql_insert_id();
- }
- }
-
- /**
- * Return number of rows affected by the last INSERT, UPDATE or DELETE.
- *
- * @return int
- */
- function affectedRows() {
- if($this->db) {
- return mysql_affected_rows($this->db);
- } else {
- return mysql_affected_rows();
- }
- }
-
- /**
- * Returns any MySQL errors
- * @return string a MySQL error
- */
- function isError() {
- if ($this->db) {
- return mysql_error($this->db);
- } else {
- return mysql_error();
- }
- }
-
- /**
- * Quote variable to make safe
- * @see http://php.net/mysql-real-escape-string
- * @static
- */
- function quoteSmart($value, $params = array()) {
- // Quote if not integer
- if ($this->db) {
- $value = mysql_real_escape_string($value, $this->db);
- } else {
- $value = mysql_escape_string($value);
- }
- if (!is_numeric($value) || (isset($params['force_string']) && $params['force_string'])) {
- $value = "'" . $value . "'";
- }
- return $value;
- }
-
- /**
- * Safe implode function to use with SQL queries
- * @static
- */
- function quoteSmartImplode($glue, $pieces, $params = array()) {
- $lem = array_keys($pieces);
- $str='';
- $after_first=false;
- foreach ($pieces as $piece) {
- if ($after_first) {
- $str.=$glue;
- }
- $str.=$this->quoteSmart($piece,$params);
- $after_first=true;
- }
- return $str;
- }
-
-
- function escapeInt($v, $null = CODENDI_DB_NOT_NULL) {
- $m = array();
- if($null === CODENDI_DB_NULL && $v === '') {
- return 'NULL';
- }
- if(preg_match('/^([+-]?[1-9][0-9]*|[+-]?0)$/', $v, $m)) {
- return $m[1];
- }
- return '0';
- }
-
-}
-?>
+++ /dev/null
-<?php
-/**
- * Base class for data access objects
- */
-class DataAccessObject {
- /**
- * Private
- * $da stores data access object
- */
- var $da;
-
- //! A constructor
- /**
- * Constructs the Dao
- * @param $da instance of the DataAccess class
- */
- function DataAccessObject( & $da ) {
- $this->table_name = 'CLASSNAME_MUST_BE_DEFINE_FOR_EACH_CLASS';
- //Dynamic table_name guessing does not work (at least in php4)
- //because classname are lowercase only :(
- /*
- $s = get_class($this);
- $this->table_name = '';
- $len = strlen($s);
- for($i = 1 ; $i <= $len ; ++$i) {
- if ($i < $len && preg_match('`[A-Z]`', $s[$i - 1]) && preg_match('`[a-z]`', $s[$i])) {
- $this->table_name .= '_';
- }
- $this->table_name .= strtolower($s[$i - 1]);
- }
- */
- $this->da=$da;
- }
-
- //! An accessor
- /**
- * For SELECT queries
- * @param $sql the query string
- * @return mixed either false if error or object DataAccessResult
- */
- function &retrieve($sql) {
- $result =& $this->da->fetch($sql);
- if ($error = $result->isError()) {
- $trace = debug_backtrace();
- $i = isset($trace[1]) ? 1 : 0;
- trigger_error($error .' ==> '. $sql ." @@ ". $trace[$i]['file'] .' at line '. $trace[$i]['line']);
- $result = false;
- }
- return $result;
- }
-
- //! An accessor
- /**
- * For INSERT, UPDATE and DELETE queries
- * @param $sql the query string
- * @return boolean true if success
- */
- function update($sql) {
- $result = $this->da->fetch($sql);
- if ($error = $result->isError()) {
- $trace = debug_backtrace();
- $i = isset($trace[1]) ? 1 : 0;
- trigger_error($error .' ==> '. $sql ." @@ ". $trace[$i]['file'] .' at line '. $trace[$i]['line']);
- return false;
- } else {
- return true;
- }
- }
-
- /**
- * Prepare ranking of items.
- *
- * @see https://partners.xrce.xerox.com/plugins/docman/?group_id=120&action=show&id=95
- *
- * @param int $id The id of the item to rank. 0 if the item doesn't exist.
- * @param int $parent_id The id of the element used to group items
- * @param mixed $rank The rank asked for the items. Possible values are :
- * '--' => do not change the rank
- * 'beginning' => to put item before each others
- * 'end' => to put item after each others
- * 'up' => to put item before previous sibling
- * 'down' => to put item after next sibling
- * <int> => to put item at a specific position.
- * Please note that for a new item ($id = 0) you must not use
- * '--', 'up' or 'down' value
- * @param string $primary_key the column name of the primary key. Default 'id'
- * @param string $parent_key the column key used to groups items. Default 'parent_id'
- * @param string $rank_key the column key used to rank items. Default 'rank'
- * @return mixed false if there is no rank to update of the numerical
- * value of the new rank of the item. If return 'null' it means
- * that sth wrong happended.
- */
- function prepareRanking($id, $parent_id, $rank, $primary_key = 'id', $parent_key = 'parent_id', $rank_key = 'rank') {
- $newRank = null;
-
- // First, check if there is already some items
- $sql = sprintf('SELECT NULL'.
- ' FROM '. $this->table_name .
- ' WHERE '. $parent_key .' = %d',
- $parent_id);
- $dar = $this->retrieve($sql);
- if($dar && !$dar->isError() && $dar->rowCount() == 0) {
- // No items: nice, just set the first one to 0.
- $newRank = 0;
- }
- else {
- switch((string)$rank) {
- case '--':
- $sql = sprintf('SELECT '. $rank_key .
- ' FROM '. $this->table_name .
- ' WHERE '. $primary_key .' = %d',
- (int)$id);
- $dar = $this->retrieve($sql);
- if($dar && !$dar->isError() && $dar->rowCount() == 1) {
- $row = $dar->current();
- $newRank = $row[$rank_key];
- }
- break;
- case 'end':
- // Simple case: just pickup the most high rank in the table
- // and add 1 to be laster than the first.
- $sql = sprintf('SELECT MAX('. $rank_key .')+1 as '. $rank_key .
- ' FROM '. $this->table_name .
- ' WHERE '. $parent_key .' = %d',
- $parent_id);
- $dar = $this->retrieve($sql);
- if($dar && !$dar->isError() && $dar->rowCount() == 1) {
- $row = $dar->current();
- $newRank = $row[$rank_key];
- }
- break;
-
- case 'up':
- case 'down':
- // Those 2 cases are quite complex and are only mandatory if
- // you want to 'Move up' or 'Move down' an item. If you can
- // only select in a select box you can remove this part of
- // the code.
-
- // The general idea here is: we want to move up (or down) an
- // item but we only know it's id and the sens (up/down) of the
- // slide. Our goal is to exchange the rank value of the item
- // behind (in case of up) with the current one.
-
- // This is done in 2 steps:
- // * first fetch the item_id and the rank of the item we want
- // to stole the place.
- // * then exchange the 2 rank values.
-
- if ($rank == 'down') {
- $op = '>';
- $order = 'ASC';
- } else {
- $op = '<';
- $order = 'DESC';
- }
-
- // This SQL query aims to get the item_id and the rank of the item
- // Just behind us (for 'up' case).
- // In your implementation, USING(parent_id) should refer to the field
- // that group all the items in one list.
- $sql = sprintf('SELECT i1.'. $primary_key .' as id, i1.'. $rank_key .' as '. $rank_key .
- ' FROM '. $this->table_name .' i1'.
- ' INNER JOIN '. $this->table_name .' i2 USING('. $parent_key .')'.
- ' WHERE i2.'. $primary_key .' = %d'.
- ' AND i1.'. $parent_key .' = %d'.
- ' AND i1.'. $rank_key .' %s i2.'. $rank_key .
- ' ORDER BY i1.'. $rank_key .' %s'.
- ' LIMIT 1',
- $id,
- $parent_id,
- $op,
- $order);
- $dar = $this->retrieve($sql);
- if ($dar && !$dar->isError() && $dar->rowCount() == 1) {
- $row = $dar->current();
- // This query exchange the two values.
- // Warning: the order is very important, please check that
- // your final query work as expected.
- $sql = sprintf('UPDATE '. $this->table_name .' i1, '. $this->table_name .' i2'.
- ' SET i1.'. $rank_key .' = i2.'. $rank_key .', i2.'. $rank_key .' = %d'.
- ' WHERE i1.'. $primary_key .' = %d '.
- ' AND i2.'. $primary_key .' = %d',
- $row[$rank_key],
- $row['id'],
- $id);
- $this->update($sql);
- $newRank = false;
- }
- break;
-
- case 'beginning':
- // This first part is quite simple: just pickup the lower rank
- // in the table
- $sql = sprintf('SELECT MIN('. $rank_key .') as '. $rank_key .
- ' FROM '. $this->table_name .
- ' WHERE '. $parent_key .' = %d',
- $parent_id);
- $dar = $this->retrieve($sql);
- if($dar && !$dar->isError()) {
- $row = $dar->current();
- $rank = $row[$rank_key];
- }
- // Very important: no break here, because we have to update all
- // ranks upper:
- // no break;
-
- default:
- // Here $rank is a numerical value that represent the rank after
- // one item (user selected 'After XXX' in select box).
- // The idea is to move up all the ranks upper to this value and to
- // return the current value as the new rank.
- $sql = sprintf('UPDATE '. $this->table_name .
- ' SET '. $rank_key .' = '. $rank_key .' + 1'.
- ' WHERE '. $parent_key .' = %d'.
- ' AND '. $rank_key .' >= %d',
- $parent_id, $rank);
- $updated = $this->update($sql);
- if($updated) {
- $newRank = $rank;
- }
- }
- }
- return $newRank;
- }
-
- /**
- * Return the result of 'FOUND_ROWS()' SQL method for the last query.
- */
- function foundRows() {
- $sql = "SELECT FOUND_ROWS() as nb";
- $dar = $this->retrieve($sql);
- if($dar && !$dar->isError()) {
- $row = $dar->getRow();
- return $row['nb'];
- } else {
- return false;
- }
- }
-}
-?>
$this->hooks[] = 'scm_generate_snapshots' ;
$this->hooks[] = 'scm_cpold_do_nothing' ;
- require_once $gfconfig.'plugins/scmcpold/config.php' ;
+ require $gfconfig.'plugins/scmcpold/config.php' ;
$this->default_cpold_server = $default_cpold_server ;
if (isset ($cpold_root)) {
/usr/share/gforge/bin/fill-in-the-blanks.pl \
/var/lib/gforge/etc/templates/httpd.vhosts \
/var/lib/gforge/etc/httpd.vhosts \
- /etc/gforge/gforge.conf
+ /etc/fusionforge/fusionforge.conf
case "$1" in
--norestart)
--- /dev/null
+$AddUnixListenSocket /var/lib/gforge/chroot/dev/log
etc/security \
lib \
lib/security \
+ lib64 \
+ lib64/security \
dev \
var \
var/run \
/bin/ls \
/bin/sh \
/bin/bash \
- /bin/chgrp ; do
- if [ -x "$binary" ] ; then
+ /bin/chgrp \
+ /lib/security/pam_pgsql.so \
+ /lib64/security/pam_pgsql.so ; do
+ if [ -e "$binary" ] ; then
echo "$binary"
- ldd $binary | cut -d" " -f3
+ ldd $binary | awk '/=>/ { print $3 }' | grep ^/
+ ldd $binary | awk '{ print $1 }' | grep ^/
fi
done \
| sort -u \
[ -c $CHROOTDIR/dev/urandom ] || mknod $CHROOTDIR/dev/urandom c 1 9 || true
[ -c $CHROOTDIR/dev/console ] || mknod $CHROOTDIR/dev/console c 5 1 || true
# For /dev/log
- if ! grep -q "^SYSLOGD.*/var/lib/gforge/chroot/dev/log.*" /etc/default/syslogd ; then
+ if [ -e /etc/default/syslogd ] \
+ && [ ! -e /etc/rsyslog.conf ] \
+ && ! grep -q "^SYSLOGD.*/var/lib/gforge/chroot/dev/log.*" /etc/default/syslogd ; then
echo '######################################################################################################'
echo 'WARNING: you must have SYSLOGD="-p /dev/log -a /var/lib/gforge/chroot/dev/log" in /etc/default/syslogd'
echo 'To have cvs pserver running correctly'
;;
configure-files)
# Tell PostgreSQL to let us use the database
- db_passwd=$(grep ^db_password= /etc/gforge/gforge.conf | cut -d= -f2-)
- db_name=$(grep ^db_name= /etc/gforge/gforge.conf | cut -d= -f2-)
- db_user=$(grep ^db_user= /etc/gforge/gforge.conf | cut -d= -f2-)
+ db_passwd=$(grep ^db_password= /etc/fusionforge/fusionforge.conf | cut -d= -f2-)
+ db_name=$(grep ^db_name= /etc/fusionforge/fusionforge.conf | cut -d= -f2-)
+ db_user=$(grep ^db_user= /etc/fusionforge/fusionforge.conf | cut -d= -f2-)
pattern=$(basename $0).XXXXXX
# PostgreSQL configuration for versions from 7.3 on
;;
configure)
# Create the appropriate database user
- db_passwd=$(grep ^db_password= /etc/gforge/gforge.conf | cut -d= -f2-)
- db_name=$(grep ^db_name= /etc/gforge/gforge.conf | cut -d= -f2-)
- db_user=$(grep ^db_user= /etc/gforge/gforge.conf | cut -d= -f2-)
+ db_passwd=$(grep ^db_password= /etc/fusionforge/fusionforge.conf | cut -d= -f2-)
+ db_name=$(grep ^db_name= /etc/fusionforge/fusionforge.conf | cut -d= -f2-)
+ db_user=$(grep ^db_user= /etc/fusionforge/fusionforge.conf | cut -d= -f2-)
pattern=$(basename $0).XXXXXX
tmp1=$(mktemp /tmp/$pattern)
tmp2=$(mktemp /tmp/$pattern)
if su -s /bin/sh postgres -c "/usr/bin/psql template1" 1> $tmp1 2> $tmp2 <<EOF \
&& [ "$(tail -n +2 $tmp1 | head -1)" = 'CREATE DATABASE' ] ;
SET LC_MESSAGES = 'C' ;
-CREATE DATABASE $db_name WITH ENCODING 'UNICODE';
+CREATE DATABASE $db_name WITH TEMPLATE template0 ENCODING 'UNICODE';
EOF
then
# Creation OK
perl -pi -e "BEGIN { undef \$/; } s/^### BEGIN GFORGE BLOCK -- DO NOT EDIT.*### END GFORGE BLOCK -- DO NOT EDIT\n//ms;" ${pg_hba_dir}/pg_hba.conf.gforge-new
;;
purge)
- db_name=$(grep ^db_name= /etc/gforge/gforge.conf | cut -d= -f2-)
- db_user=$(grep ^db_user= /etc/gforge/gforge.conf | cut -d= -f2-)
+ db_name=$(grep ^db_name= /etc/fusionforge/fusionforge.conf | cut -d= -f2-)
+ db_user=$(grep ^db_user= /etc/fusionforge/fusionforge.conf | cut -d= -f2-)
su -s /bin/sh postgres -c "dropdb $db_name" > /dev/null 2>&1 || true
su -s /bin/sh postgres -c "dropuser $db_user" > /dev/null 2>&1 || true
;;
dump)
if [ -e /etc/sourceforge/local.pl ] ; then
db_name=$(perl -e'require "/etc/sourceforge/local.pl"; print "$sys_dbname\n";')
- elif [ -e /etc/gforge/gforge.conf ] ; then
- db_name=$(grep ^db_name= /etc/gforge/gforge.conf | cut -d= -f2-)
+ elif [ -e /etc/fusionforge/fusionforge.conf ] ; then
+ db_name=$(grep ^db_name= /etc/fusionforge/fusionforge.conf | cut -d= -f2-)
else
db_name=sourceforge
fi
#
restore)
pg_name=postgresql-$pg_version
- db_name=$(grep ^db_name= /etc/gforge/gforge.conf | cut -d= -f2-)
+ db_name=$(grep ^db_name= /etc/fusionforge/fusionforge.conf | cut -d= -f2-)
pattern=$(basename $0).XXXXXX
newpg=$(mktemp /tmp/$pattern)
localtrust="local all all trust"
PATH=$PATH:/usr/sbin
setup_vars() {
- ldap_host=$(grep ^ldap_host= /etc/gforge/gforge.conf | cut -d= -f2-)
+ ldap_host=$(grep ^ldap_host= /etc/fusionforge/fusionforge.conf | cut -d= -f2-)
- gforge_base_dn=$(grep ^ldap_base_dn= /etc/gforge/gforge.conf | cut -d= -f2-)
+ gforge_base_dn=$(grep ^ldap_base_dn= /etc/fusionforge/fusionforge.conf | cut -d= -f2-)
gforge_admin_dn="cn=admin,$gforge_base_dn"
slapd_base_dn=$(grep ^suffix /etc/ldap/slapd.conf | cut -d\" -f2)
slapd_admin_dn="cn=admin,$slapd_base_dn"
robot_dn="cn=SF_robot,$gforge_base_dn"
- robot_passwd=$(grep ^ldap_web_add_password= /etc/gforge/gforge.conf | cut -d= -f2-)
+ robot_passwd=$(grep ^ldap_web_add_password= /etc/fusionforge/fusionforge.conf | cut -d= -f2-)
robot_cryptedpasswd=`slappasswd -s "$robot_passwd" -h {CRYPT}`
# TODO: ask the user for the main (slapd) password
# Probably only do that when needed (when inserting the robot account)
exec su -c "$0 $1"
fi
-gforge_chroot=$(grep ^gforge_chroot= /etc/gforge/gforge.conf | cut -d= -f2-)
+gforge_chroot=$(grep ^gforge_chroot= /etc/fusionforge/fusionforge.conf | cut -d= -f2-)
case "$1" in
configure)
%hash = () ;
-#open CONF, "/etc/gforge/gforge.conf" ;
-#while ($line = <CONF>) {
-# chomp $line ;
-# next if $line =~ m/^\s*#/ ;
-# ($key, $val) = split ('=', $line, 2) ;
-# $hash{$key} = $val ;
-#}
-#close CONF ;
-
&db_connect ;
$ifile = '/usr/share/gforge/etc/templates/httpd.vhosts' ;
PATH=$PATH:/usr/sbin
setup_vars() {
- ldap_host=$(grep ^ldap_host= /etc/gforge/gforge.conf | cut -d= -f2-)
+ ldap_host=$(grep ^ldap_host= /etc/fusionforge/fusionforge.conf | cut -d= -f2-)
- gforge_base_dn=$(grep ^ldap_base_dn= /etc/gforge/gforge.conf | cut -d= -f2-)
+ gforge_base_dn=$(grep ^ldap_base_dn= /etc/fusionforge/fusionforge.conf | cut -d= -f2-)
gforge_admin_dn="cn=admin,$gforge_base_dn"
slapd_base_dn=$(grep ^suffix /etc/ldap/slapd.conf | cut -d\" -f2)
slapd_admin_dn="cn=admin,$slapd_base_dn"
robot_dn="cn=SF_robot,$gforge_base_dn"
- robot_passwd=$(grep ^ldap_web_add_password= /etc/gforge/gforge.conf | cut -d= -f2-)
- admin_passwd=$(grep ^admin_password= /etc/gforge/gforge.conf | cut -d= -f2-)
+ robot_passwd=$(grep ^ldap_web_add_password= /etc/fusionforge/fusionforge.conf | cut -d= -f2-)
+ admin_passwd=$(grep ^admin_password= /etc/fusionforge/fusionforge.conf | cut -d= -f2-)
robot_cryptedpasswd=`slappasswd -s "$robot_passwd" -h {CRYPT}`
# TODO: ask the user for the main (slapd) password
# Probably only do that when needed (when inserting the robot account)
------
Want to know what the status of this package is? Read
/usr/share/doc/@PACKAGE@/TODO.Debian or (even better)
-<https://fusionforge.org/mediawiki/index.php/Roadmap>. If you miss a
+<https://fusionforge.org/plugins/mediawiki/wiki/fusionforge/index.php/Roadmap>. If you miss a
feature, or find a bug, or want to help, don't hesitate to contact me
(Roland Mas <lolando@debian.org>) . Plenty of features are missing,
I'm working on some, but if you don't tell me which ones you miss the
-- Roland Mas <lolando@debian.org> Tue, 29 Jun 2010 22:53:15 +0200
+fusionforge (5.0.2-2) unstable; urgency=low
+
+ * Ship a /usr/share/gforge/plugins/ directory in gforge-web-apache2
+ (closes: #597714).
+ * Update roadmap URL (closes: #597847).
+ * Fix detection of PostgreSQL's init script (closes: #596929).
+ * Updated Portuguese Debconf translations (closes: #597354).
+ * Support rsyslog as well as syslogd (closes: 535580).
+ * Handle amd64 architectures and add missing files in chroot creation
+ (closes: #396128, #536055).
+ * Make up our mind about which config file to use (fusionforge.conf, not
+ gforge.conf) and migrate from gforge.conf if needed (closes: #597916).
+ * Ditto for fusionforge-config instead of gforge-config (closes: #597931).
+ * Updated Spanish, Italian and French translations from upstream.
+
+ -- Roland Mas <lolando@debian.org> Sun, 03 Oct 2010 18:26:20 +0200
+
+fusionforge (5.0.2-1) unstable; urgency=low
+
+ * New upstream bugfix release.
+ * Switch to Unix sockets for DB access by default.
+ * Cope with postgresql-8.4 on both sides of 8.4.4-2, where the init
+ script can be called either "postgresql-8.4" or "postgresql" (closes:
+ #596929).
+ * Also cope with PostgreSQL having been installed with a non-UTF-8
+ locale, which previously prevented our database from being created due
+ to charset incompatibility (closes: #596931).
+
+ -- Roland Mas <lolando@debian.org> Thu, 16 Sep 2010 09:51:32 +0200
+
+fusionforge (5.0.1+svn10155-1) unstable; urgency=low
+
+ * Fixed embedded copy of viewvc for Python 2.6 (closes: #582012).
+ * Also removed dependency on external viewvc until propely fixed.
+
+ -- Roland Mas <lolando@debian.org> Tue, 29 Jun 2010 14:23:08 +0200
+
+fusionforge (5.0.1+svn10137-1) unstable; urgency=low
+
+ * Adapted URLs to logos and CSS for gitweb >= 1.7. Added versioned
+ dependency accordingly.
+ * Use local YUI library (over HTTPS if needed) rather than possibly
+ leaking informations to Yahoo's servers (closes: #579459).
+
+ -- Roland Mas <lolando@debian.org> Mon, 28 Jun 2010 13:34:14 +0200
+
+fusionforge (5.0.1+svn10088-1) unstable; urgency=low
+
+ * New snapshot from upstream SVN (Branch_5_0).
+
+ -- Roland Mas <lolando@debian.org> Fri, 18 Jun 2010 13:14:11 +0200
+
fusionforge (5.0.1+svn10006-1) unstable; urgency=low
* New snapshot from upstream SVN (Branch_5_0).
Package: gforge-db-postgresql
Architecture: all
-Depends: gforge-common, postgresql-8.3 | postgresql-8.2 | postgresql-8.1 | postgresql (>= 8.1), perl, libdbi-perl, libdbd-pg-perl, libmime-base64-perl, libhtml-parser-perl, libtext-autoformat-perl, libmail-sendmail-perl, libsort-versions-perl, debianutils (>= 1.7), debconf (>= 1.0.32) | debconf-2.0, ucf, php5-cli, ${misc:Depends}
+Depends: gforge-common, postgresql (>= 8.1) | postgresql-8.4 | postgresql-8.3 | postgresql-8.2 | postgresql-8.1, perl, libdbi-perl, libdbd-pg-perl, libmime-base64-perl, libhtml-parser-perl, libtext-autoformat-perl, libmail-sendmail-perl, libsort-versions-perl, debianutils (>= 1.7), debconf (>= 1.0.32) | debconf-2.0, ucf, php5-cli, ${misc:Depends}
Provides: gforge-db
Conflicts: gforge-db
Description: collaborative development tool - database (using PostgreSQL)
mkdir -p $mainconfdir
fi
if [ ! -e $mainconffile ] ; then
- touch $mainconffile
+ if [ -e /etc/gforge/gforge.conf ] ; then
+ cp -a /etc/gforge/gforge.conf $mainconffile
+ else
+ touch $mainconffile
+ fi
chmod 600 $mainconffile
fi
}
-@OLDPACKAGE@-config.1
+@PACKAGE@-config.1
cvssh.1
PATH=$PATH:/usr/share/gforge/bin migrate-to-ini-files.sh
fi
- @OLDPACKAGE@-config
+ @PACKAGE@-config
;;
abort-upgrade|abort-remove|abort-deconfigure)
configuration files found in /etc/@PACKAGE@ with appropriate
files derived from standard fill-in-the-blank templates (found
in /usr/share/@PACKAGE@/templates). The values used to fill in
- the blanks are taken from /etc/@PACKAGE@.conf.
+ the blanks are taken from /etc/@PACKAGE@/@PACKAGE@.conf.
</para>
</refsect1>
configure)
add_onevar_mainconfile default_trove_cat 18
- @OLDPACKAGE@-config
+ @PACKAGE@-config
# Patch DB configuration files
/usr/share/@OLDPACKAGE@/bin/install-db.sh configure-files
case "$1" in
configure)
- @OLDPACKAGE@-config
+ @PACKAGE@-config
# Patch Bind configuration files
/usr/share/@OLDPACKAGE@/bin/install-dns.sh configure-files
case "$1" in
configure)
- @OLDPACKAGE@-config
+ @PACKAGE@-config
# Patch Proftpd configuration files
/usr/share/@OLDPACKAGE@/bin/install-ftp.sh configure-files
case "$1" in
configure)
- @OLDPACKAGE@-config
+ @PACKAGE@-config
echo "Fixing past damage in mailing-lists..."
if [ -z "$2" ] || dpkg --compare-versions $2 le 3rc2-4 ; then
case "$1" in
configure)
- @OLDPACKAGE@-config
+ @PACKAGE@-config
# Patch Exim configuration files
/usr/share/@OLDPACKAGE@/bin/install-exim4.sh configure-files
if [ -f /etc/aliases.@OLDPACKAGE@-new ]
case "$1" in
configure)
- @OLDPACKAGE@-config
+ @PACKAGE@-config
# Patch Postfix configuration files
/usr/share/@OLDPACKAGE@/bin/install-postfix.sh configure-files
case "$1" in
configure)
/usr/share/@OLDPACKAGE@/bin/register-plugin mediawiki "Mediawiki"
- @OLDPACKAGE@-config
+ @PACKAGE@-config
for flavour in apache apache-perl apache-ssl apache2 ; do
if [ -x /usr/sbin/$flavour ]; then
invoke-rc.d $flavour reload || true
case "$1" in
configure)
- @OLDPACKAGE@-config
+ @PACKAGE@-config
# Prepare database
/usr/share/gforge/bin/register-plugin scmarch "Arch"
case "$1" in
configure)
- @OLDPACKAGE@-config
+ @PACKAGE@-config
# Prepare database
/usr/share/gforge/bin/register-plugin scmbzr "Bazaar"
case "$1" in
configure)
- @OLDPACKAGE@-config
+ @PACKAGE@-config
# Prepare database
/usr/share/gforge/bin/register-plugin scmcpold "CPOLD"
case "$1" in
configure)
- @OLDPACKAGE@-config
+ @PACKAGE@-config
# Prepare database
/usr/share/@OLDPACKAGE@/bin/register-plugin scmcvs "CVS"
case "$1" in
configure)
- @OLDPACKAGE@-config
+ @PACKAGE@-config
# Prepare database
/usr/share/gforge/bin/register-plugin scmdarcs "Darcs"
case "$1" in
configure)
- @OLDPACKAGE@-config
+ @PACKAGE@-config
# Prepare database
/usr/share/gforge/bin/register-plugin scmgit "Git"
case "$1" in
configure)
- @OLDPACKAGE@-config
+ @PACKAGE@-config
# Prepare database
/usr/share/gforge/bin/register-plugin scmhg "Mercurial"
case "$1" in
configure)
- @OLDPACKAGE@-config
+ @PACKAGE@-config
# Prepare database
/usr/share/gforge/bin/register-plugin scmsvn "Subversion"
case "$1" in
configure)
- @OLDPACKAGE@-config
+ @PACKAGE@-config
# Patch NSS configuration files
/usr/share/@OLDPACKAGE@/bin/install-nsspgsql.sh configure-files
case "$1" in
configure)
- @OLDPACKAGE@-config
+ @PACKAGE@-config
db_stop
# Setup our Apache
case "$1" in
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
- @OLDPACKAGE@-config
+ @PACKAGE@-config
# Make Apache see these new changes
invoke-rc.d apache2 reload || true
;;
--- /dev/null
+usr/share/javascript/yui usr/share/gforge/www/scripts/yui
ln -s /etc/ssl/private/ssl-cert-snakeoil.key /etc/@OLDPACKAGE@/ssl-cert.key
fi
- @OLDPACKAGE@-config
+ @PACKAGE@-config
for i in secrets.inc vhost-list.inc vhost-main.inc vhost-projects.inc ; do
if [ ! -e /etc/gforge/httpd.conf.d/$i ] ; then
"Project-Id-Version: @PACKAGE@ 4.6.99+svn6387-1\n"
"Report-Msgid-Bugs-To: gforge@packages.debian.org\n"
"POT-Creation-Date: 2009-06-12 23:23+0200\n"
-"PO-Revision-Date: 2008-04-12 21:30+0100\n"
+"PO-Revision-Date: 2010-10-03 21:23+0200\n"
"Last-Translator: Ricardo Silva <ardoric@gmail.com>\n"
"Language-Team: Portuguese <traduz@debianpt.org>\n"
"MIME-Version: 1.0\n"
#. Type: string
#. Description
-#: ../dsf-in/db-postgresql.templates.dsfh-in:12001
+#: ../gforge-db-postgresql.templates.dsfh-in:12001
msgid "Please enter a semicolon-separated list of skill names."
msgstr ""
"Por favor introduza uma lista de nomes de capacidades, separadas pelo "
#. Description
#. Translators: SCM here means "Source Control Management"
#. (cvs, svn, etc.)
-#: ../dsf-in/dns-bind9.templates.dsfh-in:3001
-#, fuzzy
-#| msgid "Do you want a simple DNS setup for @FORGENAME@?"
+#: ../gforge-dns-bind9.templates.dsfh-in:3001
msgid "Do you want a simple DNS setup for @FORGENAME@?"
msgstr "Deseja uma configuração simples de DNS no @FORGENAME@?"
#. Description
#. Translators: SCM here means "Source Control Management"
#. (cvs, svn, etc.)
-#: ../dsf-in/dns-bind9.templates.dsfh-in:3001
+#: ../gforge-dns-bind9.templates.dsfh-in:3001
msgid ""
"You can use a simple DNS setup with wildcards to map all project web-hosts "
"to a single IP address, and direct all the scm-hosts to a single SCM server, "
#. Description
#. Translators: SCM here means "Source Control Management"
#. (cvs, svn, etc.)
-#: ../dsf-in/dns-bind9.templates.dsfh-in:3001
+#: ../gforge-dns-bind9.templates.dsfh-in:3001
msgid ""
"Even if you use a simple DNS setup, you can still use separate machines as "
"project servers; it just assumes that all the project web directories are on "
#. Type: string
#. Description
#: ../dsf-helper/common-variables.templates:2001
-#, fuzzy
-#| msgid "@FORGENAME@ domain or subdomain name:"
msgid "@FORGENAME@ domain or subdomain name:"
msgstr "O nome do domínio ou subdomínio do @FORGENAME@:"
#. Type: string
#. Description
#: ../dsf-helper/common-variables.templates:2001
-#, fuzzy
-#| msgid ""
-#| "Please enter the domain that will host the @FORGENAME@ installation. Some "
-#| "services (scm, lists, etc.) will be given their own subdomain in that "
-#| "domain."
msgid ""
"Please enter the domain that will host the @FORGENAME@ installation. Some "
"services (scm, lists, etc.) will be given their own subdomain in that domain."
#. Type: string
#. Description
#: ../dsf-helper/dbhost-variables.templates:2001
-#, fuzzy
-#| msgid ""
-#| "Please enter the IP address (or hostname) of the server that will host "
-#| "the @FORGENAME@ database."
msgid ""
"Please enter the IP address (or hostname) of the server that will host the "
"@FORGENAME@ database."
#. Type: string
#. Description
#: ../dsf-helper/dbhost-variables.templates:4001
-#, fuzzy
-#| msgid ""
-#| "Please enter the username of the database administrator for the server "
-#| "that will host the @FORGENAME@ database."
msgid ""
"Please enter the username of the database administrator for the server that "
"will host the @FORGENAME@ database."
#. Type: string
#. Description
#: ../dsf-helper/downloadhost-variables.templates:2001
-#, fuzzy
-#| msgid ""
-#| "Please enter the host name of the server that will host the @FORGENAME@ "
-#| "packages."
msgid ""
-"Please enter the host name of the server that will host the @FORGENAME@ "
-"packages."
+"Please enter the host name of the server that will host the @FORGENAME@ packages."
msgstr ""
"Por favor introduza o nome do servidor que irá guardar os pacotes do "
"@FORGENAME@."
#. Type: string
#. Description
#: ../dsf-helper/lists-variables.templates:2001
-#, fuzzy
-#| msgid ""
-#| "Please enter the host name of the server that will host the @FORGENAME@ "
-#| "mailing lists."
msgid ""
-"Please enter the host name of the server that will host the @FORGENAME@ "
-"mailing lists."
+"Please enter the host name of the server that will host the @FORGENAME@ mailing "
+"lists."
msgstr ""
"Por favor introduza o nome do servidor que irá guardar as listas de email do "
"@FORGENAME@."
#. Description
#: ../dsf-helper/users-variables.templates:2001
msgid "User mail redirector server:"
-msgstr "Servidor de redirecção de mail dos utilizadores:"
+msgstr "Servidor de redireccionamento de mail dos utilizadores:"
#. Type: string
#. Description
#. Choices
#: ../dsf-helper/web-variables.templates:2001
msgid "Norwegian"
-msgstr "Noruegês"
+msgstr "Norueguês"
#. Type: select
#. Choices
use-snoopy-from-distro
disable-dav
use-nusoap-from-distro
+use-yui-from-distro
+db-on-localhost
production-environment
--- /dev/null
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 99-unnamed.dpatch by Christian Bayle <bayle@debian.org> and/or Roland Mas <lolando@debian.org>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
+@DPATCH@
+diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' gforge~/setup gforge/setup
+--- gforge~/setup 2010-04-22 20:52:26.000000000 +0200
++++ gforge/setup 2010-06-30 16:08:48.000000000 +0200
+@@ -16,7 +16,7 @@
+ DEFAULTsystem_name=MyForge
+ DEFAULTdomain_name=`hostname -f`
+ DEFAULTserver_admin=webmaster@$DEFAULTdomain_name
+- DEFAULTdb_host=`hostname -i`
++ DEFAULTdb_host=
+ DEFAULTdb_port=5432
+ DEFAULTdb_name=gforge
+ DEFAULTdb_user=gforge
--- /dev/null
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 99-unnamed.dpatch by Christian Bayle <bayle@debian.org> and/or Roland Mas <lolando@debian.org>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
+@DPATCH@
+diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' gforge~/www/themes/gforge/Theme.class.php gforge/www/themes/gforge/Theme.class.php
+--- gforge~/www/themes/gforge/Theme.class.php 2010-06-28 11:26:22.000000000 +0200
++++ gforge/www/themes/gforge/Theme.class.php 2010-06-28 11:32:43.000000000 +0200
+@@ -152,8 +152,8 @@
+
+ function headerCSS() {
+ echo '
+- <link href="http://yui.yahooapis.com/2.6.0/build/reset-fonts-grids/reset-fonts-grids.css" type="text/css" rel="stylesheet" />
+- <link href="http://yui.yahooapis.com/2.6.0/build/base/base-min.css" type="text/css" rel="stylesheet" />
++ <link rel="stylesheet" type="text/css" href="'. util_make_uri ('scripts/yui/reset-fonts-grids/reset-fonts-grids.css') .'" />
++ <link rel="stylesheet" type="text/css" href="'. util_make_uri ('scripts/yui/base/base-min.css') .'" />
+ <link rel="stylesheet" type="text/css" href="'. util_make_uri ('/themes/css/fusionforge.css') .'" />
+ <link rel="stylesheet" type="text/css" href="'. THEME_DIR .'/css/theme.css" />
+ <link rel="stylesheet" type="text/css" href="'. THEME_DIR .'/css/theme-pages.css" />
dh $@
# Build man pages from Docbook sources
- cat debian/dsf-in/config.sgml | $(SED_REPLACE) > debian/$(OLDPACKAGE)-config.sgml
+ cat debian/dsf-in/config.sgml | $(SED_REPLACE) > debian/$(PACKAGE)-config.sgml
cat debian/dsf-in/common.manpages | $(SED_REPLACE) > debian/$(OLDPACKAGE)-common.manpages
/usr/bin/docbook-to-man debian/cvssh.sgml > cvssh.1
- /usr/bin/docbook-to-man debian/$(OLDPACKAGE)-config.sgml > $(OLDPACKAGE)-config.1
+ /usr/bin/docbook-to-man debian/$(PACKAGE)-config.sgml > $(PACKAGE)-config.1
# Build README.Debian from template
cat debian/README.Debian.tmpl | $(SED_REPLACE) > debian/README.Debian
rm -f $(CURDIR)/debian/*.links
rm -f $(CURDIR)/debian/*.install
rm -f $(CURDIR)/debian/*.docs
- rm -f $(CURDIR)/debian/$(OLDPACKAGE)-config.sgml
+ rm -f $(CURDIR)/debian/$(PACKAGE)-config.sgml
rm -f $(CURDIR)/debian/$(OLDPACKAGE)-common.manpages
- rm -f cvssh.1 $(OLDPACKAGE)-config.1
+ rm -f cvssh.1 $(PACKAGE)-config.1
rm -f $(CURDIR)/debian/README.Debian
rm -rf locales
AliasMatch ^/plugins/mediawiki/wiki/[-a-zA-Z0-9_]*/index.php {core/source_path}/www/plugins/mediawiki/index.php
AliasMatch ^/plugins/mediawiki/wiki/([-a-zA-Z0-9_]*)/images/(.*) {core/data_path}/plugins/mediawiki/wikidata/$1/images/$2
AliasMatch ^/plugins/mediawiki/wiki/([-a-zA-Z0-9_]*)/skins/(.*) {mediawiki/src_path}/skins/$2
+AliasMatch ^/plugins/mediawiki/wiki/([-a-zA-Z0-9_]*)/extensions/(.*) {mediawiki/src_path}/extensions/$2
SSLEngine on
SSLCertificateFile {sys_sslcrt}
SSLCertificateKeyFile {sys_sslkey}
+ {sys_ssl_apache_extra_cmd}
<Files ~ "\.(cgi|shtml)$">
SSLOptions +StdEnvVars
</Files>
SSLEngine on
SSLCertificateFile {sys_sslcrt}
SSLCertificateKeyFile {sys_sslkey}
+ {sys_ssl_apache_extra_cmd}
<Files ~ "\.(cgi|shtml)$">
SSLOptions +StdEnvVars
</Files>
foreach ($apacheconffiles as $apacheconffile) {
echo('Setting FusionForge Include For Apache...');
- system("grep \"^Include /etc/gforge/httpd.conf\" $apacheconffile > /dev/null", $ret);
+ system("grep \"^Include $fusionforge_etc_dir/httpd.conf\" $apacheconffile > /dev/null", $ret);
if ($ret == 1) {
- system("echo \"Include /etc/gforge/httpd.conf\" >> $apacheconffile");
+ system("echo \"Include $fusionforge_etc_dir/httpd.conf\" >> $apacheconffile");
}
}
// Create symlink for the wiki plugin.
- if (!is_dir("/opt/gforge/www/wiki"))
+ if (!is_dir("$fusionforge_src_dir/www/wiki"))
{
- symlink ("../plugins/wiki/www/", "/opt/gforge/www/wiki");
+ symlink ("../plugins/wiki/www/", "$fusionforge_src_dir/www/wiki");
}
//#symlink plugin www's
- //cd /opt/gforge/www
- chdir("/opt/gforge/www");
+ chdir("$fusionforge_src_dir/www");
if (!is_dir("plugins"))
{
system("mkdir -p plugins");
// Might fail if it's already running, so we'll ingnore the result
run("$pgservice start", true);
-// Where the PHP code will live
-//$gforge_lib_dir = '/opt/gforge5'; //CAMBIE ESTO
-$gforge_lib_dir = '/opt/gforge';
+require_once 'install-common.inc' ;
-if (!is_dir($gforge_lib_dir))
+if (!is_dir($fusionforge_src_dir))
{
die("Error: GForge folder doesn't exist. Run fusionforge-install-2.php first.");
}
-
-// Where the configuration files will live
-$gforge_etc_dir = getenv('GFORGE_ETC_DIR');
-if (empty($gforge_etc_dir))
-{
- $gforge_etc_dir = '/etc/gforge';
-}
-
// Where the PGHBA config file is
if (is_file("/var/lib/pgsql/data/pg_hba.conf"))
{
function install()
{
- global $PGHBA, $gforge_lib_dir, $gforge_etc_dir, $tsearch2_sql, $pgservice, $STDIN, $STDOUT;
+ global $PGHBA, $fusionforge_src_dir, $fusionforge_etc_dir, $tsearch2_sql, $pgservice, $STDIN, $STDOUT;
show("\n * Enter the Database Name (gforge): ");
}
// } else {
// show(" * Creating FTS default configuation (Full Text Search)");
-// run("su - postgres -c \"psql $gforge_db < $gforge_lib_dir/db/FTS-20081108.sql\" >> /tmp/gforge-import.log");
+// run("su - postgres -c \"psql $gforge_db < $fusionforge_src_dir/db/FTS-20081108.sql\" >> /tmp/gforge-import.log");
}
show(' * Dumping FusionForge DB');
- run("su $susufix $gforge_user -c \"psql $gforge_db < $gforge_lib_dir/db/gforge.sql\" >> /tmp/gforge-import.log");
+ run("su $susufix $gforge_user -c \"psql $gforge_db < $fusionforge_src_dir/db/gforge.sql\" >> /tmp/gforge-import.log");
// show(' * Dumping FusionForge FTI DB');
-// run("su $susufix $gforge_user -c \"psql $gforge_db < $gforge_lib_dir/db/FTI.sql\" >> /tmp/gforge-import.log");
-// run("su $susufix $gforge_user -c \"psql $gforge_db < $gforge_lib_dir/db/FTI-20050315.sql\" >> /tmp/gforge-import.log");
-// run("su $susufix $gforge_user -c \"psql $gforge_db < $gforge_lib_dir/db/FTI-20050401.sql\" >> /tmp/gforge-import.log");
-// run("su $susufix $gforge_user -c \"psql $gforge_db < $gforge_lib_dir/db/FTI-20050530.sql\" >> /tmp/gforge-import.log");
-// run("su $susufix $gforge_user -c \"psql $gforge_db < $gforge_lib_dir/db/FTI-20060130.sql\" >> /tmp/gforge-import.log");
-// run("su $susufix $gforge_user -c \"psql $gforge_db < $gforge_lib_dir/db/FTI-20061025.sql\" >> /tmp/gforge-import.log");
+// run("su $susufix $gforge_user -c \"psql $gforge_db < $fusionforge_src_dir/db/FTI.sql\" >> /tmp/gforge-import.log");
+// run("su $susufix $gforge_user -c \"psql $gforge_db < $fusionforge_src_dir/db/FTI-20050315.sql\" >> /tmp/gforge-import.log");
+// run("su $susufix $gforge_user -c \"psql $gforge_db < $fusionforge_src_dir/db/FTI-20050401.sql\" >> /tmp/gforge-import.log");
+// run("su $susufix $gforge_user -c \"psql $gforge_db < $fusionforge_src_dir/db/FTI-20050530.sql\" >> /tmp/gforge-import.log");
+// run("su $susufix $gforge_user -c \"psql $gforge_db < $fusionforge_src_dir/db/FTI-20060130.sql\" >> /tmp/gforge-import.log");
+// run("su $susufix $gforge_user -c \"psql $gforge_db < $fusionforge_src_dir/db/FTI-20061025.sql\" >> /tmp/gforge-import.log");
show(" * Enter the Admin Username (fforgeadmin): ");
if (getenv('FFORGE_ADMIN_USER')) {
//$t = trim(fgets($STDIN));
}
- if (!is_dir($gforge_etc_dir)) {
- mkdir($gforge_etc_dir);
+ if (!is_dir($fusionforge_etc_dir)) {
+ mkdir($fusionforge_etc_dir);
}
show(' * Saving database configuration in FForge config file');
- $data = file_get_contents("$gforge_etc_dir/local.inc");
+ $data = file_get_contents("$fusionforge_etc_dir/local.inc");
$lines = explode("\n",$data);
$config = '';
foreach ($lines as $l) {
$config .= $l."\n";
}
- if ($fp = fopen("$gforge_etc_dir/local.inc", "w")) {
+ if ($fp = fopen("$fusionforge_etc_dir/local.inc", "w")) {
fwrite ($fp, $config);
fclose($fp);
}
}
/*
function uninstall() {
- global $PGHBA, $gforge_lib_dir, $gforge_var_dir, $gforge_etc_dir, $gforge_db, $gforge_user, $tsearch2_sql;
+ global $PGHBA, $fusionforge_src_dir, $gforge_var_dir, $fusionforge_etc_dir, $gforge_db, $gforge_user, $tsearch2_sql;
show(" * Removing DATABASE \n";
system("su - $gforge_user -c \"dropdb $gforge_db\"", $ret );
--- /dev/null
+#!/usr/bin/php
+<?php
+/**
+ * FusionForge Installation
+ *
+ * Copyright 2010, Roland Mas
+ * http://fusionforge.org/
+ */
+
+$fusionforge_etc_dir = getenv('FUSIONFORGE_ETC_DIR');
+if (empty($fusionforge_etc_dir))
+{
+ $fusionforge_etc_dir = '/etc/gforge';
+}
+$fusionforge_src_dir = getenv('FUSIONFORGE_SRC_DIR');
+if (empty($fusionforge_src_dir))
+{
+ $fusionforge_src_dir = '/opt/gforge';
+}
+$fusionforge_data_dir = getenv('FUSIONFORGE_DATA_DIR');
+if (empty($fusionforge_data_dir))
+{
+ $fusionforge_data_dir = '/var/lib/gforge';
+}
Package: @OLDPACKAGE@-db-postgresql
Architecture: all
-Depends: @OLDPACKAGE@-common, postgresql-8.3 | postgresql-8.2 | postgresql-8.1 | postgresql (>= 8.1), perl, libdbi-perl, libdbd-pg-perl, libmime-base64-perl, libhtml-parser-perl, libtext-autoformat-perl, libmail-sendmail-perl, libsort-versions-perl, debianutils (>= 1.7), debconf (>= 1.0.32) | debconf-2.0, ucf, php5-cli, php5-pgsql, ${misc:Depends}
+Depends: @OLDPACKAGE@-common, postgresql (>= 8.1) | postgresql-9.0 | postgresql-8.4 | postgresql-8.3 | postgresql-8.2 | postgresql-8.1 | postgresql (>= 8.1), perl, libdbi-perl, libdbd-pg-perl, libmime-base64-perl, libhtml-parser-perl, libtext-autoformat-perl, libmail-sendmail-perl, libsort-versions-perl, debianutils (>= 1.7), debconf (>= 1.0.32) | debconf-2.0, ucf, php5-cli, php5-pgsql, ${misc:Depends}
Provides: @OLDPACKAGE@-db
Conflicts: @OLDPACKAGE@-db
Description: collaborative development tool - database (using PostgreSQL)
etc/@OLDPACKAGE@/templates
etc/logrotate.d
usr/share/@OLDPACKAGE@/bin
+usr/share/@OLDPACKAGE@/plugins
usr/share/@OLDPACKAGE@/www
var/lib/@OLDPACKAGE@/scmtarballs
var/lib/@OLDPACKAGE@/scmsnapshots
+deb-specific/fusionforge.rsyslog etc/rsyslog.d/
utils/install-nsspgsql.sh usr/share/@OLDPACKAGE@/bin/
/usr/share/gforge/bin/fill-in-the-blanks.pl \
$(DESTDIR)/etc/gforge/plugins/cvstracker/cvstracker.conf.tmpl \
$(DESTDIR)/etc/gforge/plugins/cvstracker/cvstracker.conf \
- $(DESTDIR)/etc/gforge/gforge.conf
+ $(DESTDIR)/etc/fusionforge/fusionforge.conf
chmod 0644 $(DESTDIR)/etc/gforge/plugins/cvstracker/cvstracker.conf
$(DESTDIR)/usr/share/gforge/plugins/cvstracker/bin/db-upgrade.pl
$(DESTDIR)/usr/share/gforge/bin/register-plugin cvstracker "cvstracker"
s/sys_use_scm=false/sys_use_scm=true/g" %{GFORGE_CONF_DIR}/gforge.conf
# initializing configuration
- %{SBIN_DIR}/gforge-config
+ %{SBIN_DIR}/fusionforge-config
CHROOT=`grep '^gforge_chroot=' %{GFORGE_CONF_DIR}/gforge.conf | sed 's/.*=\s*\(.*\)/\1/'`
if [ ! -d $CHROOT/cvsroot ] ; then
fwrite($config_f, "\$projectroot = '$rootdir';\n");
fwrite($config_f, "\$projects_list = '$config_dir/gitweb.list';\n");
fwrite($config_f, "@git_base_url_list = ('". util_make_url ('/anonscm/git') . "');\n");
- fwrite($config_f, "\$logo = '". util_make_url ('/plugins/scmgit/gitweb/git-logo.png') . "';\n");
- fwrite($config_f, "\$favicon = '". util_make_url ('/plugins/scmgit/gitweb/git-favicon.png')."';\n");
- fwrite($config_f, "\$stylesheet = '". util_make_url ('/plugins/scmgit/gitweb/gitweb.css')."';\n");
+ fwrite($config_f, "\$logo = '". util_make_url ('/plugins/scmgit/git-logo.png') . "';\n");
+ fwrite($config_f, "\$favicon = '". util_make_url ('/plugins/scmgit/git-favicon.png')."';\n");
+ fwrite($config_f, "\$stylesheet = '". util_make_url ('/plugins/scmgit/gitweb.css')."';\n");
fwrite($config_f, "\$prevent_xss = 'true';\n");
fclose($config_f);
chmod ($fname.'.new', 0644) ;
Package: @OLDPACKAGE@-plugin-scmgit
Architecture: all
-Depends: @OLDPACKAGE@-common, @OLDPACKAGE@-db-postgresql | @OLDPACKAGE@-db, @OLDPACKAGE@-web-apache2 | @OLDPACKAGE@-web, @OLDPACKAGE@-shell-postgresql | @OLDPACKAGE@-shell, git (>= 1:1.7) | git-core, gitweb, php5-cli, ${misc:Depends}
+Depends: @OLDPACKAGE@-common, @OLDPACKAGE@-db-postgresql | @OLDPACKAGE@-db, @OLDPACKAGE@-web-apache2 | @OLDPACKAGE@-web, @OLDPACKAGE@-shell-postgresql | @OLDPACKAGE@-shell, git (>= 1:1.7) | git-core, gitweb (>= 1:1.7), php5-cli, ${misc:Depends}
Provides: @OLDPACKAGE@-plugin-scm
Description: collaborative development tool - Git plugin
}
foreach ($svnusers as $user_id => $user) {
- $password_data .= $user->getUnixName ().':'.$user->getMD5Passwd ()."\n" ;
+ $password_data .= $user->getUnixName().':'.$user->getUnixPasswd()."\n" ;
}
$password_data .= forge_get_config('anonsvn_login', 'scmsvn').":".htpasswd_apr1_md5(forge_get_config('anonsvn_pass', 'scmsvn'))."\n";
s/sys_use_scm=false/sys_use_scm=true/g" %{FFORGE_CONF_DIR}/gforge.conf
# initializing configuration
- %{SBIN_DIR}/gforge-config
+ %{SBIN_DIR}/fusionforge-config
CHROOT=`grep '^gforge_chroot=' %{FFORGE_CONF_DIR}/gforge.conf | sed 's/.*=\s*\(.*\)/\1/'`
if [ ! -d $CHROOT/svnroot ] ; then
-# Include gforge httpd.conf generated by gforge-config
+# Include gforge httpd.conf generated by fusionforge-config
Include /etc/gforge/httpd.conf
\ No newline at end of file
SHAREDIR=/usr/share/gforge
LIBDIR=/usr/share/gforge
CONFFILEOUTDIR=/etc/gforge
- CONFFILEIN=/etc/gforge/gforge.conf
- CONFFILEOUT=/etc/gforge/gforge.conf
+ CONFFILEIN=/etc/fusionforge/fusionforge.conf
+ CONFFILEOUT=/etc/fusionforge/fusionforge.conf
LOCALINC=/etc/gforge/local.inc
;;
-simple )
msgstr ""
"Project-Id-Version: Gforge 4.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-01 22:22+0100\n"
+"POT-Creation-Date: 2010-10-03 17:54+0200\n"
"PO-Revision-Date: 2009-02-01 14:38+0100\n"
"Last-Translator: \n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
-#: common/docman/Document.class.php:112 common/docman/Document.class.php:447
-#: common/pm/ProjectGroup.class.php:132 common/pm/ProjectGroup.class.php:346
+#: common/docman/Document.class.php:113 common/docman/Document.class.php:447
+#: common/pm/ProjectGroup.class.php:132 common/pm/ProjectGroup.class.php:364
msgid "Title Must Be At Least 5 Characters"
msgstr ""
-#: common/docman/Document.class.php:116 common/docman/Document.class.php:451
-#: common/pm/ProjectGroup.class.php:136 common/pm/ProjectGroup.class.php:350
+#: common/docman/Document.class.php:117 common/docman/Document.class.php:451
+#: common/pm/ProjectGroup.class.php:136 common/pm/ProjectGroup.class.php:368
msgid "Document Description Must Be At Least 10 Characters"
msgstr ""
msgstr ""
#: common/forum/Forum.class.php:474 common/forum/Forum.class.php:511
-#: common/frs/FRSPackage.class.php:270 common/frs/FRSPackage.class.php:302
+#: common/frs/FRSPackage.class.php:273 common/frs/FRSPackage.class.php:305
#: common/tracker/ArtifactType.class.php:552
msgid "You can only monitor if you are logged in"
msgstr ""
msgid "Forum:: No Valid Group Object"
msgstr ""
-#: common/forum/ForumFactory.class.php:58 common/include/rbac_texts.php:82
-#: common/include/rbac_texts.php:83 www/forum/index.php:60
+#: common/forum/ForumFactory.class.php:58 common/include/rbac_texts.php:84
+#: common/include/rbac_texts.php:85 www/forum/index.php:60
#: www/forum/myforums.php:73
msgid "Forum"
msgstr "Форум"
msgid "File cannot be moved to the permanent location"
msgstr ""
-#: common/frs/FRSPackage.class.php:136 common/frs/FRSPackage.class.php:366
+#: common/frs/FRSPackage.class.php:136 common/frs/FRSPackage.class.php:369
#: common/frs/FRSRelease.class.php:122 common/frs/FRSRelease.class.php:388
msgid "FRSPackage Name Must Be At Least 3 Characters"
msgstr ""
msgid "Error Getting Role Object"
msgstr "Грешка при получаването на %1$s"
-#: common/include/Group.class.php:1755
+#: common/include/Group.class.php:1753
#, fuzzy
msgid "ERROR: User does not exist"
msgstr "Това потребителско име вече е заето."
-#: common/include/Group.class.php:1802
+#: common/include/Group.class.php:1800
#, php-format
msgid "ERROR: User not removed: %s"
msgstr ""
-#: common/include/Group.class.php:1817
+#: common/include/Group.class.php:1815
#, php-format
msgid "ERROR: DB: artifact: %s"
msgstr ""
-#: common/include/Group.class.php:1852 common/include/Group.class.php:1865
+#: common/include/Group.class.php:1850 common/include/Group.class.php:1863
#, php-format
msgid "ERROR: DB: project_assigned_to %d: %s"
msgstr ""
-#: common/include/Group.class.php:1911 www/project/admin/roleedit.php:64
+#: common/include/Group.class.php:1909 www/project/admin/roleedit.php:66
#, fuzzy
msgid "Could Not Get Role"
msgstr "Разрешение не беше получено"
-#: common/include/Group.class.php:1914 common/include/Group.class.php:1919
+#: common/include/Group.class.php:1912 common/include/Group.class.php:1917
#, fuzzy, php-format
msgid "Role: %s"
msgstr "Роля"
-#: common/include/Group.class.php:1973
+#: common/include/Group.class.php:1971
#, fuzzy
msgid "Error getting member object"
msgstr "Грешка при получаването на %1$s"
-#: common/include/Group.class.php:1976
+#: common/include/Group.class.php:1974
#, fuzzy, php-format
msgid "Error getting member object: %s"
msgstr "Грешка при получаването на %1$s"
-#: common/include/Group.class.php:2015
+#: common/include/Group.class.php:2013
msgid "Group already active"
msgstr ""
-#: common/include/Group.class.php:2038
+#: common/include/Group.class.php:2036
#, fuzzy
msgid "Error creating ArtifactTypes object"
msgstr "Грешка при създаването на %1$s"
-#: common/include/Group.class.php:2043 common/include/Group.class.php:2049
+#: common/include/Group.class.php:2041 common/include/Group.class.php:2047
#, php-format
msgid "ATS%d: %s"
msgstr ""
-#: common/include/Group.class.php:2061
+#: common/include/Group.class.php:2059
#, fuzzy
msgid "Open-Discussion"
msgstr "Дискусионни форуми:"
-#: common/include/Group.class.php:2061
+#: common/include/Group.class.php:2059
msgid "General Discussion"
msgstr ""
-#: common/include/Group.class.php:2062 common/include/Group.class.php:2069
-#: common/include/Group.class.php:2076
+#: common/include/Group.class.php:2060 common/include/Group.class.php:2067
+#: common/include/Group.class.php:2074
#, php-format
msgid "F%d: %s"
msgstr ""
-#: common/include/Group.class.php:2068
+#: common/include/Group.class.php:2066
msgid "Help"
msgstr ""
-#: common/include/Group.class.php:2068
+#: common/include/Group.class.php:2066
msgid "Get Public Help"
msgstr ""
-#: common/include/Group.class.php:2075
+#: common/include/Group.class.php:2073
#, fuzzy
msgid "Developers-Discussion"
msgstr "Дискусионни форуми:"
-#: common/include/Group.class.php:2075
+#: common/include/Group.class.php:2073
msgid "Project Developer Discussion"
msgstr ""
-#: common/include/Group.class.php:2088
+#: common/include/Group.class.php:2086
msgid "Uncategorized Submissions"
msgstr ""
-#: common/include/Group.class.php:2089
+#: common/include/Group.class.php:2087
#, php-format
msgid "DG: %s"
msgstr ""
-#: common/include/Group.class.php:2102
+#: common/include/Group.class.php:2100
#, php-format
msgid "FRSP: %s"
msgstr ""
-#: common/include/Group.class.php:2114
+#: common/include/Group.class.php:2112
msgid "To Do"
msgstr ""
-#: common/include/Group.class.php:2114
+#: common/include/Group.class.php:2112
msgid "Things We Have To Do"
msgstr ""
-#: common/include/Group.class.php:2115 common/include/Group.class.php:2122
+#: common/include/Group.class.php:2113 common/include/Group.class.php:2120
#, php-format
msgid "PG%d: %s"
msgstr ""
-#: common/include/Group.class.php:2121
+#: common/include/Group.class.php:2119
#, fuzzy
msgid "Next Release"
msgstr "Следващи Резултати"
-#: common/include/Group.class.php:2121
+#: common/include/Group.class.php:2119
#, fuzzy
msgid "Items For Our Next Release"
msgstr "Последно издадени пакети"
-#: common/include/Group.class.php:2148
+#: common/include/Group.class.php:2150
#, php-format
msgid "R%d: %s"
msgstr ""
-#: common/include/Group.class.php:2167
+#: common/include/Group.class.php:2169
#: plugins/scmcvs/common/CVSPlugin.class.php:149
#: plugins/scmdarcs/common/DarcsPlugin.class.php:129
#: plugins/scmsvn/common/SVNPlugin.class.php:149 www/activity/index.php:94
#: www/stats/site_stats_utils.php:284 www/tracker/detail.php:187
-#: www/tracker/mod-limited.php:185 www/tracker/mod.php:282
+#: www/tracker/mod-limited.php:185 www/tracker/mod.php:281
msgid "Commits"
msgstr ""
-#: common/include/Group.class.php:2168
+#: common/include/Group.class.php:2170
#, php-format
msgid "ML: %s"
msgstr ""
-#: common/include/Group.class.php:2213 common/include/Group.class.php:2286
+#: common/include/Group.class.php:2215 common/include/Group.class.php:2288
msgid "Group does not have any administrators."
msgstr ""
-#: common/include/Group.class.php:2222
+#: common/include/Group.class.php:2224
#, php-format
msgid ""
"Your project registration for %4$s has been approved.\n"
"-- the %4$s crew"
msgstr ""
-#: common/include/Group.class.php:2258
+#: common/include/Group.class.php:2260
#, php-format
msgid "%1$s Project Approved"
msgstr ""
-#: common/include/Group.class.php:2294
+#: common/include/Group.class.php:2296
#, php-format
msgid ""
"Your project registration for %3$s has been denied.\n"
"\n"
msgstr ""
-#: common/include/Group.class.php:2313
+#: common/include/Group.class.php:2315
#, php-format
msgid "%1$s Project Denied"
msgstr ""
-#: common/include/Group.class.php:2336
+#: common/include/Group.class.php:2338
msgid "Could not find user who has submitted the project."
msgstr ""
-#: common/include/Group.class.php:2351
+#: common/include/Group.class.php:2353
msgid "There is no administrator to send the mail."
msgstr ""
-#: common/include/Group.class.php:2360
+#: common/include/Group.class.php:2362
#, php-format
msgid ""
"New %1$s Project Submitted\n"
"%4$s"
msgstr ""
-#: common/include/Group.class.php:2374 common/include/Group.class.php:2389
+#: common/include/Group.class.php:2376 common/include/Group.class.php:2391
#, php-format
msgid "New %1$s Project Submitted"
msgstr ""
-#: common/include/Group.class.php:2382
+#: common/include/Group.class.php:2384
#, php-format
msgid ""
"New %1$s Project Submitted\n"
"notified of their decision."
msgstr ""
-#: common/include/Group.class.php:2407
+#: common/include/Group.class.php:2409
#, fuzzy
msgid "Group name is too short"
msgstr "Въпросът е твърде кратък"
-#: common/include/Group.class.php:2410
+#: common/include/Group.class.php:2412
#, fuzzy
msgid "Group name is too long"
msgstr "История на промените по проекта"
-#: common/include/Group.class.php:2413
+#: common/include/Group.class.php:2415
msgid "Group name already taken"
msgstr ""
-#: common/include/Group.class.php:2471
+#: common/include/Group.class.php:2473
#, php-format
msgid "ERROR - Could Not Update Group Unix Status: %s"
msgstr ""
-#: common/include/Group.class.php:2550
+#: common/include/Group.class.php:2552
#: www/forum/include/ForumHTML.class.php:69 www/my/dashboard.php:79
#: www/my/diary.php:182 www/my/index.php:55 www/my/index.php:97
#: www/my/index.php:148 www/pm/browse_task.php:106
#: 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/gforge-simple-theme/Theme.class.php:481 www/tracker/add.php:74
-#: www/tracker/admin/form-customizelist.php:24 www/tracker/browse.php:160
-#: www/tracker/browse.php:362 www/tracker/detail.php:72
-#: www/tracker/mod-limited.php:115 www/tracker/mod.php:159
+#: www/themes/gforge-simple-theme/Theme.class.php:480 www/tracker/add.php:74
+#: www/tracker/admin/form-customizelist.php:24 www/tracker/browse.php:162
+#: www/tracker/browse.php:364 www/tracker/detail.php:72
+#: www/tracker/mod-limited.php:115 www/tracker/mod.php:158
#: www/tracker/query.php:178 www/tracker/query.php:345
msgid "Summary"
msgstr ""
-#: common/include/Group.class.php:2568 common/include/rbac_texts.php:55
-#: common/include/rbac_texts.php:67 common/include/rbac_texts.php:69
-#: common/include/rbac_texts.php:71 common/include/rbac_texts.php:73
-#: common/include/rbac_texts.php:75 www/docman/include/doc_utils.php:82
+#: common/include/Group.class.php:2570 common/include/rbac_texts.php:57
+#: common/include/rbac_texts.php:69 common/include/rbac_texts.php:71
+#: common/include/rbac_texts.php:73 common/include/rbac_texts.php:75
+#: common/include/rbac_texts.php:77 www/docman/include/doc_utils.php:82
#: www/forum/include/ForumHTML.class.php:116
#: www/forum/include/ForumHTML.class.php:123 www/frs/include/frs_utils.php:91
-#: www/include/Layout.class.php:457 www/include/Layout.class.php:561
+#: www/include/Layout.class.php:449 www/include/Layout.class.php:553
#: www/mail/mail_utils.php:34 www/news/news_utils.php:59
#: www/pm/include/ProjectGroupHTML.class.php:77 www/pm/index.php:53
#: 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/gforge-simple-theme/Theme.class.php:390
-#: www/themes/gforge-simple-theme/Theme.class.php:488
+#: www/themes/gforge-simple-theme/Theme.class.php:389
+#: www/themes/gforge-simple-theme/Theme.class.php:487
#: www/themes/lite/Theme.class.php:288 www/tracker/add.php:65
#: www/tracker/admin/ind.php:78
#: www/tracker/include/ArtifactTypeHtml.class.php:69 www/tracker/ind.php:27
-#: www/tracker/mod.php:131 www/tracker/mod.php:188
+#: www/tracker/mod.php:130 www/tracker/mod.php:187
msgid "Admin"
msgstr "Администриране"
-#: common/include/Group.class.php:2583 www/activity/index.php:70
+#: common/include/Group.class.php:2585 www/activity/index.php:70
#: www/activity/index.php:148 www/activity/index.php:199
#: www/export/rss_project.php:100
-#: www/themes/gforge-simple-theme/Theme.class.php:498
+#: www/themes/gforge-simple-theme/Theme.class.php:497
msgid "Activity"
msgstr ""
-#: common/include/Group.class.php:2592
+#: common/include/Group.class.php:2594
#: common/include/group_section_texts.php:30
#: common/reporting/report_utils.php:161
#: plugins/quota_management/www/quota_project.php:88
-#: www/themes/gforge-simple-theme/Theme.class.php:505
+#: www/themes/gforge-simple-theme/Theme.class.php:504
msgid "Forums"
msgstr "Форуми"
-#: common/include/Group.class.php:2606 common/include/rbac_texts.php:90
-#: common/include/rbac_texts.php:91 common/reporting/report_utils.php:157
+#: common/include/Group.class.php:2608 common/include/rbac_texts.php:93
+#: common/include/rbac_texts.php:95 common/reporting/report_utils.php:157
#: www/include/project_home.php:312
#: www/pm/include/ProjectTaskHTML.class.php:93
-#: www/themes/gforge-simple-theme/Theme.class.php:513
+#: www/themes/gforge-simple-theme/Theme.class.php:512
#: www/tracker/admin/ind.php:97 www/tracker/ind.php:45
msgid "Tracker"
msgstr "Тракер"
-#: common/include/Group.class.php:2624
-#: www/themes/gforge-simple-theme/Theme.class.php:522
+#: common/include/Group.class.php:2626
+#: www/themes/gforge-simple-theme/Theme.class.php:521
msgid "Lists"
msgstr "Пощ.списъци"
-#: common/include/Group.class.php:2639
-#: common/include/group_section_texts.php:32 common/include/rbac_texts.php:86
-#: common/include/rbac_texts.php:87 common/reporting/report_utils.php:169
+#: common/include/Group.class.php:2641
+#: common/include/group_section_texts.php:32 common/include/rbac_texts.php:88
+#: common/include/rbac_texts.php:90 common/reporting/report_utils.php:169
#: common/reporting/report_utils.php:197 www/my/dashboard.php:91
#: www/project/stats/project_stats_utils.php:83
#: www/project/stats/project_stats_utils.php:142
#: www/project/stats/project_stats_utils.php:198
#: www/stats/site_stats_utils.php:240 www/stats/site_stats_utils.php:366
#: www/stats/site_stats_utils.php:421
-#: www/themes/gforge-simple-theme/Theme.class.php:530
+#: www/themes/gforge-simple-theme/Theme.class.php:529
#: www/themes/ultralite/Theme.class.php:104
msgid "Tasks"
msgstr ""
-#: common/include/Group.class.php:2654 common/reporting/report_utils.php:165
-#: www/themes/gforge-simple-theme/Theme.class.php:538
+#: common/include/Group.class.php:2656 common/reporting/report_utils.php:165
+#: www/themes/gforge-simple-theme/Theme.class.php:537
msgid "Docs"
msgstr "Документи"
-#: common/include/Group.class.php:2669 www/include/project_home.php:405
+#: common/include/Group.class.php:2671 www/include/project_home.php:405
#: www/survey/include/SurveyHTML.class.php:53 www/survey/survey_utils.php:52
-#: www/themes/gforge-simple-theme/Theme.class.php:546
+#: www/themes/gforge-simple-theme/Theme.class.php:545
msgid "Surveys"
msgstr "Проучвания"
-#: common/include/Group.class.php:2683
+#: common/include/Group.class.php:2685
#: common/include/group_section_texts.php:35
#: plugins/quota_management/www/quota_project.php:74 www/activity/index.php:89
-#: www/activity/index.php:241 www/admin/index.php:134 www/news/index.php:35
-#: www/news/submit.php:127 www/themes/gforge-simple-theme/Theme.class.php:554
+#: www/activity/index.php:241 www/admin/index.php:134 www/news/index.php:36
+#: www/news/index.php:37 www/news/submit.php:127
+#: www/themes/gforge-simple-theme/Theme.class.php:553
msgid "News"
msgstr "Новини"
-#: common/include/Group.class.php:2697 common/include/rbac_texts.php:98
-#: common/include/rbac_texts.php:99 www/scm/include/scm_utils.php:52
+#: common/include/Group.class.php:2699 common/include/rbac_texts.php:102
+#: common/include/rbac_texts.php:103 www/scm/include/scm_utils.php:52
#: www/stats/site_stats_utils.php:243 www/stats/site_stats_utils.php:367
#: www/stats/site_stats_utils.php:422
-#: www/themes/gforge-simple-theme/Theme.class.php:562
+#: www/themes/gforge-simple-theme/Theme.class.php:561
msgid "SCM"
msgstr ""
-#: common/include/Group.class.php:2729
-#: common/include/group_section_texts.php:34 common/include/rbac_texts.php:95
+#: common/include/Group.class.php:2731
+#: common/include/group_section_texts.php:34 common/include/rbac_texts.php:99
#: www/frs/include/frs_utils.php:90
-#: www/themes/gforge-simple-theme/Theme.class.php:579
+#: www/themes/gforge-simple-theme/Theme.class.php:578
msgid "Files"
msgstr "Пакети"
-#: common/include/GroupJoinRequest.class.php:111
+#: common/include/GroupJoinRequest.class.php:113
msgid "You are already a member of this project."
msgstr ""
-#: common/include/GroupJoinRequest.class.php:120
+#: common/include/GroupJoinRequest.class.php:122
msgid ""
"You have already sent a request to the project administrators. Please wait "
"for their reply."
msgstr ""
-#: common/include/GroupJoinRequest.class.php:225
-#: common/include/GroupJoinRequest.class.php:251
-#: common/include/GroupJoinRequest.class.php:265
+#: common/include/GroupJoinRequest.class.php:227
+#: common/include/GroupJoinRequest.class.php:253
+#: common/include/GroupJoinRequest.class.php:267
#, php-format
msgid "Request to Join Project %1$s"
msgstr ""
-#: common/include/GroupJoinRequest.class.php:227
+#: common/include/GroupJoinRequest.class.php:229
#, php-format
msgid ""
"%1$s has requested to join your project. \n"
"%3$s"
msgstr ""
-#: common/include/GroupJoinRequest.class.php:252
+#: common/include/GroupJoinRequest.class.php:254
#, php-format
msgid "Your request to join the %1$s project was denied by an administrator."
msgstr ""
-#: common/include/GroupJoinRequest.class.php:266
+#: common/include/GroupJoinRequest.class.php:268
#, php-format
msgid "Your request to join the %1$s project was granted by an administrator."
msgstr ""
msgid "Invalid Unix Name."
msgstr "Невалиден UNIX идентификатор."
-#: common/include/User.class.php:284 common/include/User.class.php:528
+#: common/include/User.class.php:284 common/include/User.class.php:530
msgid "Invalid Jabber Address"
msgstr ""
"\n"
"<%2$s>\n"
"\n"
+"You have 1 week to confirm your account. After this time, your account will "
+"be deleted.\n"
+"\n"
"(If you don't see any URL above, it is likely due to a bug in your mail "
"client.\n"
"Use one below, but make sure it is entered as the single line.)\n"
"-- the %3$s staff\n"
msgstr ""
"Благодарим Ви, че се регистрирахте на портала на %4$s. Вашият акаунт е "
-"създаден успешно. За да завършите регистрацията посетете следната страница: \n"
+"създаден успешно. За да завършите регистрацията посетете следната "
+"страница: \n"
"\n"
"<http://%2$s/account/verify.php?confirm_hash=_%3$s>\n"
"\n"
"\n"
"-- Екипът на %4$s\n"
-#: common/include/User.class.php:434
+#: common/include/User.class.php:436
#, php-format
msgid "%1$s Account Registration"
msgstr "%1$s регистрация"
-#: common/include/User.class.php:850 common/include/User.class.php:903
+#: common/include/User.class.php:852 common/include/User.class.php:905
#, fuzzy
msgid "User with this email already exists."
msgstr "Това потребителско име вече е заето."
msgid "Group name cannot contain underscore for DNS reasons."
msgstr ""
-#: common/include/group_section_texts.php:31 www/reporting/toolspie.php:58
+#: common/include/group_section_texts.php:31 www/reporting/toolspie.php:63
msgid "Trackers"
msgstr ""
msgid "Documentations"
msgstr "Преглед на документите"
-#: common/include/rbac_texts.php:30 common/include/rbac_texts.php:33
-#: common/include/rbac_texts.php:35 common/include/rbac_texts.php:37
-#: common/include/rbac_texts.php:41 common/include/rbac_texts.php:43
+#: common/include/rbac_texts.php:32 common/include/rbac_texts.php:35
+#: common/include/rbac_texts.php:37 common/include/rbac_texts.php:39
+#: common/include/rbac_texts.php:43 common/include/rbac_texts.php:45
#: www/frs/admin/index.php:216 www/project/admin/editgroupinfo.php:153
-#: www/project/admin/index.php:174 www/register/projectinfo.php:183
+#: www/project/admin/index.php:176 www/register/projectinfo.php:184
msgid "Private"
msgstr ""
-#: common/include/rbac_texts.php:31 common/include/rbac_texts.php:34
-#: common/include/rbac_texts.php:38 common/include/rbac_texts.php:42
-#: common/include/rbac_texts.php:44 www/frs/admin/index.php:215
-#: www/project/admin/editgroupinfo.php:153 www/project/admin/index.php:174
-#: www/register/projectinfo.php:177
+#: common/include/rbac_texts.php:33 common/include/rbac_texts.php:36
+#: common/include/rbac_texts.php:40 common/include/rbac_texts.php:44
+#: common/include/rbac_texts.php:46 www/frs/admin/index.php:215
+#: www/project/admin/editgroupinfo.php:153 www/project/admin/index.php:176
+#: www/register/projectinfo.php:178
msgid "Public"
msgstr ""
-#: common/include/rbac_texts.php:32 common/include/rbac_texts.php:94
+#: common/include/rbac_texts.php:34 common/include/rbac_texts.php:98
#, fuzzy
msgid "File Release System"
msgstr "Модул \"Пакети\""
-#: common/include/rbac_texts.php:36
+#: common/include/rbac_texts.php:38
#, fuzzy
msgid "Public (PServer)"
msgstr "Общодостъпни места"
-#: common/include/rbac_texts.php:39 common/include/rbac_texts.php:45
+#: common/include/rbac_texts.php:41 common/include/rbac_texts.php:47
#, fuzzy
msgid "No Anonymous Posts"
msgstr "Допускане на анонимни съобщения"
-#: common/include/rbac_texts.php:40 common/include/rbac_texts.php:46
+#: common/include/rbac_texts.php:42 common/include/rbac_texts.php:48
#, fuzzy
msgid "Allow Anonymous Posts"
msgstr "Допускане на анонимни съобщения"
-#: common/include/rbac_texts.php:47 common/include/rbac_texts.php:50
-#: common/include/rbac_texts.php:53 common/include/rbac_texts.php:57
-#: common/include/rbac_texts.php:62
+#: common/include/rbac_texts.php:49 common/include/rbac_texts.php:52
+#: common/include/rbac_texts.php:55 common/include/rbac_texts.php:59
+#: common/include/rbac_texts.php:64
#, fuzzy
msgid "Read"
msgstr "Нишка"
-#: common/include/rbac_texts.php:48 common/include/rbac_texts.php:51
+#: common/include/rbac_texts.php:50 common/include/rbac_texts.php:53
msgid "Write"
msgstr ""
-#: common/include/rbac_texts.php:49 common/include/rbac_texts.php:52
-#: common/include/rbac_texts.php:56 common/include/rbac_texts.php:61
+#: common/include/rbac_texts.php:51 common/include/rbac_texts.php:54
+#: common/include/rbac_texts.php:58 common/include/rbac_texts.php:63
#, fuzzy
msgid "No Access"
msgstr "Няма издания"
-#: common/include/rbac_texts.php:54
+#: common/include/rbac_texts.php:56
#, fuzzy
msgid "Post"
msgstr "Публикуване на обяви"
-#: common/include/rbac_texts.php:58 common/include/rbac_texts.php:63
+#: common/include/rbac_texts.php:60 common/include/rbac_texts.php:65
#, fuzzy
msgid "Tech"
msgstr "Търси"
-#: common/include/rbac_texts.php:59 common/include/rbac_texts.php:64
+#: common/include/rbac_texts.php:61 common/include/rbac_texts.php:66
#, fuzzy
msgid "Tech & Admin"
msgstr "Инструменти за администриране"
-#: common/include/rbac_texts.php:60 common/include/rbac_texts.php:65
+#: common/include/rbac_texts.php:62 common/include/rbac_texts.php:67
#, fuzzy
msgid "Admin Only"
msgstr "Администриране"
-#: common/include/rbac_texts.php:66
+#: common/include/rbac_texts.php:68
msgid "Read/Post"
msgstr ""
-#: common/include/rbac_texts.php:68 common/include/rbac_texts.php:70
-#: common/include/rbac_texts.php:72 common/include/rbac_texts.php:74
+#: common/include/rbac_texts.php:70 common/include/rbac_texts.php:72
+#: common/include/rbac_texts.php:74 common/include/rbac_texts.php:76
#: www/include/html.php:278 www/include/html.php:345 www/include/html.php:412
#: www/include/html.php:429 www/include/html.php:463 www/include/html.php:504
-#: www/pm/ganttpage.php:72 www/tracker/include/ArtifactTypeHtml.class.php:413
-#: www/tracker/include/ArtifactTypeHtml.class.php:452
-#: www/tracker/include/ArtifactTypeHtml.class.php:581
+#: www/pm/ganttpage.php:47 www/tracker/include/ArtifactTypeHtml.class.php:418
+#: www/tracker/include/ArtifactTypeHtml.class.php:457
+#: www/tracker/include/ArtifactTypeHtml.class.php:586
msgid "None"
msgstr ""
-#: common/include/rbac_texts.php:76
+#: common/include/rbac_texts.php:78
msgid "See"
msgstr ""
-#: common/include/rbac_texts.php:77
+#: common/include/rbac_texts.php:79
#: plugins/quota_management/www/quota_admin.php:140
#: www/tracker/mod-limited.php:12
msgid "Modify"
msgstr ""
-#: common/include/rbac_texts.php:78
+#: common/include/rbac_texts.php:80
#, fuzzy
msgid "No access"
msgstr "Няма издания"
-#: common/include/rbac_texts.php:84
+#: common/include/rbac_texts.php:86
#, fuzzy
msgid "Anonymous Forum"
msgstr "Анонимно FTP пространство"
-#: common/include/rbac_texts.php:85
+#: common/include/rbac_texts.php:87
#, fuzzy
msgid "Forum Admin"
msgstr "Име на форума"
-#: common/include/rbac_texts.php:88
+#: common/include/rbac_texts.php:89
+msgid "New Tasks"
+msgstr ""
+
+#: common/include/rbac_texts.php:91
#, fuzzy
msgid "Tasks Admin"
msgstr "Тракер"
-#: common/include/rbac_texts.php:89 www/forum/include/ForumHTML.class.php:72
+#: common/include/rbac_texts.php:92 www/forum/include/ForumHTML.class.php:72
#: www/forum/myforums.php:73 www/news/admin/news_admin_utils.php:58
-#: www/reporting/projectact.php:58 www/reporting/projecttime.php:70
+#: www/reporting/projectact.php:62 www/reporting/projecttime.php:75
#: www/search/include/SearchManager.class.php:131
#: www/search/include/SearchManager.class.php:147
#: www/themes/ultralite/Theme.class.php:108
msgid "Project"
msgstr ""
-#: common/include/rbac_texts.php:92
+#: common/include/rbac_texts.php:94
+#, fuzzy
+msgid "New Trackers"
+msgstr "Модул \"Тракер\""
+
+#: common/include/rbac_texts.php:96
#, fuzzy
msgid "Anonymous Tracker"
msgstr "Анонимно FTP пространство"
-#: common/include/rbac_texts.php:93
+#: common/include/rbac_texts.php:97
#, fuzzy
msgid "Tracker Admin"
msgstr "Тракер"
-#: common/include/rbac_texts.php:96
+#: common/include/rbac_texts.php:100
msgid "Webcal"
msgstr ""
-#: common/include/rbac_texts.php:97 www/admin/approve-pending.php:156
+#: common/include/rbac_texts.php:101 www/admin/approve-pending.php:156
msgid "Project Admin"
msgstr ""
-#: common/include/rbac_texts.php:100
+#: common/include/rbac_texts.php:104
#, fuzzy
msgid "Documentation Manager"
msgstr "Преглед на документите"
msgid "Could Not Get Group"
msgstr "Разрешение не беше получено"
-#: common/include/session.php:418 www/account/lostlogin.php:49
-#: www/account/lostlogin.php:55 www/account/lostlogin.php:70
-#: www/account/lostlogin.php:77 www/account/lostlogin.php:94
-#: www/pm/calendar.php:83 www/pm/calendar.php:87 www/pm/calendar.php:89
-#: www/pm/calendar.php:94 www/pm/calendar.php:96 www/pm/calendar.php:107
-#: www/survey/rating_resp.php:57 www/trove/TroveCategory.class.php:73
-#: www/trove/TroveCategory.class.php:99 www/trove/TroveCategory.class.php:111
-#: www/trove/admin/trove_cat_edit.php:42
+#: common/include/session.php:418 common/include/session.php:421
+#: www/account/lostlogin.php:49 www/account/lostlogin.php:55
+#: www/account/lostlogin.php:70 www/account/lostlogin.php:77
+#: www/account/lostlogin.php:94 www/pm/calendar.php:83 www/pm/calendar.php:87
+#: www/pm/calendar.php:89 www/pm/calendar.php:94 www/pm/calendar.php:96
+#: www/pm/calendar.php:107 www/survey/rating_resp.php:57
+#: www/trove/TroveCategory.class.php:73 www/trove/TroveCategory.class.php:99
+#: www/trove/TroveCategory.class.php:111 www/trove/admin/trove_cat_edit.php:42
msgid "ERROR"
msgstr ""
msgid "Circular Dependency Detected'"
msgstr ""
-#: common/pm/ProjectTask.class.php:1162 common/tracker/Artifact.class.php:1439
-#: common/tracker/Artifact.class.php:1441
-#: common/tracker/Artifact.class.php:1445
-#: common/tracker/Artifact.class.php:1447
-#: common/tracker/Artifact.class.php:1547
+#: common/pm/ProjectTask.class.php:1162 common/tracker/Artifact.class.php:1426
+#: common/tracker/Artifact.class.php:1428
+#: common/tracker/Artifact.class.php:1432
+#: common/tracker/Artifact.class.php:1434
+#: common/tracker/Artifact.class.php:1534
#: cronjobs/send_pending_items_mail.php:99
#: plugins/projects_hierarchy/www/softwaremap.php:318
#: www/account/index.php:118 www/admin/cronman.php:79
-#: www/admin/grouplist.php:118 www/admin/massmail.php:165
-#: www/admin/search.php:110 www/admin/search.php:186 www/admin/userlist.php:99
+#: www/admin/grouplist.php:116 www/admin/massmail.php:165
+#: www/admin/search.php:105 www/admin/search.php:175 www/admin/userlist.php:99
#: www/developer/diary.php:47 www/developer/diary.php:84
#: www/docman/include/doc_utils.php:213 www/docman/include/doc_utils.php:214
#: www/export/tracker.php:112 www/forum/forum.php:271 www/forum/forum.php:345
#: www/forum/include/ForumHTML.class.php:217
#: www/forum/include/ForumHTML.class.php:448 www/forum/index.php:86
#: www/forum/message.php:121 www/forum/message.php:200
-#: www/forum/myforums.php:162 www/frs/index.php:196
+#: www/forum/myforums.php:162 www/frs/index.php:195
#: www/include/project_home.php:85 www/include/stats_function.php:67
#: www/include/stats_function.php:90 www/include/user_home.php:90
#: www/my/diary.php:219 www/news/news_utils.php:150
-#: www/news/news_utils.php:162 www/news/news_utils.php:273
+#: www/news/news_utils.php:162 www/news/news_utils.php:270
#: www/people/people_utils.php:417 www/people/viewjob.php:81
#: www/pm/browse_task.php:198 www/pm/browse_task.php:201
#: www/pm/include/ProjectTaskHTML.class.php:104
#: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:52
#: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:50
#: www/snippet/detail.php:69 www/snippet/detail.php:158
-#: www/soap/tracker/tracker.php:1132 www/softwaremap/full_list.php:148
+#: www/soap/tracker/tracker.php:1128 www/softwaremap/full_list.php:148
#: www/softwaremap/tag_cloud.php:185 www/softwaremap/trove_list.php:319
-#: www/stats/lastlogins.php:51 www/tracker/browse.php:415
-#: www/tracker/browse.php:426 www/tracker/detail.php:45
+#: www/stats/lastlogins.php:51 www/tracker/browse.php:412
+#: www/tracker/browse.php:423 www/tracker/detail.php:45
#: www/tracker/detail.php:127 www/tracker/detail.php:128
#: www/tracker/downloadcsv.php:73 www/tracker/downloadcsv.php:74
#: www/tracker/downloadcsv.php:75
#: www/tracker/include/ArtifactHtml.class.php:130
#: www/tracker/include/ArtifactHtml.class.php:139
#: www/tracker/mod-limited.php:71 www/tracker/mod-limited.php:76
-#: www/tracker/mod.php:76 www/tracker/mod.php:81 www/tracker/mod.php:222
-#: www/tracker/mod.php:223
+#: www/tracker/mod.php:76 www/tracker/mod.php:81 www/tracker/mod.php:221
+#: www/tracker/mod.php:222
msgid "Y-m-d H:i"
msgstr ""
msgstr ""
#: common/reporting/report_utils.php:28 www/frs/include/frs_utils.php:92
-#: www/include/Layout.class.php:461
+#: www/include/Layout.class.php:453
#: www/pm/include/ProjectGroupHTML.class.php:75
#: www/scm/include/scm_utils.php:54
-#: www/themes/gforge-simple-theme/Theme.class.php:399
+#: www/themes/gforge-simple-theme/Theme.class.php:398
#: www/themes/lite/Theme.class.php:292
#: www/tracker/include/ArtifactTypeHtml.class.php:58
msgid "Reporting"
#: 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/search.php:39 www/developer/diary.php:97
-#: www/developer/rate.php:90 www/docman/admin/index.php:75
-#: www/docman/admin/index.php:87 www/docman/admin/index.php:508
-#: www/docman/admin/index.php:513 www/docman/include/doc_utils.php:63
+#: www/developer/rate.php:90 www/docman/admin/index.php:84
+#: www/docman/admin/index.php:96 www/docman/admin/index.php:517
+#: www/docman/admin/index.php:522 www/docman/include/doc_utils.php:63
#: www/docman/index.php:64 www/docman/index.php:69 www/docman/new.php:55
#: www/docman/new.php:64 www/docman/new.php:66 www/docman/new.php:76
#: www/docman/new.php:89 www/docman/new.php:106 www/docman/search.php:36
#: www/tarballs.php:24 www/tarballs.php:27 www/tarballs.php:33
#: www/tarballs.php:36 www/tracker/admin/index.php:34
#: www/tracker/admin/index.php:57 www/tracker/admin/updates.php:150
-#: www/tracker/index.php:68 www/tracker/reporting/index.php:70
+#: www/tracker/index.php:68 www/tracker/reporting/index.php:69
#: www/tracker/reporting/trackeract_graph.php:50
#: www/tracker/reporting/trackerpie_graph.php:64 www/tracker/tracker.php:15
#: www/tracker/tracker.php:30 www/users:33
msgstr ""
#: common/tracker/Artifact.class.php:220 common/tracker/Artifact.class.php:746
-#: www/tracker/tracker.php:67 www/tracker/tracker.php:258
+#: www/tracker/tracker.php:67 www/tracker/tracker.php:260
msgid ""
"Artifact: This ArtifactType Does Not Allow Anonymous Submissions. Please "
"Login."
msgid "Artifact Monitoring Deactivated"
msgstr ""
-#: common/tracker/Artifact.class.php:1112
+#: common/tracker/Artifact.class.php:1099
msgid "Nothing Changed - Update Cancelled"
msgstr ""
#: common/tracker/ArtifactExtraField.class.php:328
#: plugins/globalsearch/common/globalsearch_edit_utils.php:219
-#: www/admin/groupedit.php:101 www/admin/grouplist.php:85
-#: www/admin/pluginman.php:186 www/admin/search.php:99
-#: www/admin/search.php:169 www/frs/admin/editrelease.php:261
+#: www/admin/groupedit.php:101 www/admin/grouplist.php:83
+#: www/admin/pluginman.php:186 www/admin/search.php:94
+#: www/admin/search.php:158 www/frs/admin/editrelease.php:261
#: www/frs/admin/index.php:162 www/my/dashboard.php:83
#: www/news/admin/index.php:131 www/people/editjob.php:168
#: www/people/viewjob.php:75 www/pm/browse_task.php:121
-#: www/pm/detail_task.php:108 www/pm/ganttpage.php:167 www/pm/mod_task.php:142
+#: www/pm/detail_task.php:108 www/pm/ganttpage.php:143 www/pm/mod_task.php:142
#: www/pm/mod_task.php:159 www/reporting/usersummary.php:106
#: www/tracker/admin/form-addextrafield.php:111
#: www/tracker/admin/form-addextrafieldoption.php:80
#: www/developer/diary.php:47 www/developer/diary.php:78
#: www/forum/forum.php:237 www/forum/include/ForumHTML.class.php:68
#: www/forum/message.php:157 www/frs/admin/showreleases.php:102
-#: www/frs/index.php:168 www/include/project_home.php:188
+#: www/frs/index.php:167 www/include/project_home.php:188
#: www/news/admin/news_admin_utils.php:56 www/pm/calendar.php:252
#: www/pm/include/ProjectTaskHTML.class.php:128
#: www/pm/include/ProjectTaskHTML.class.php:165
msgid "URL"
msgstr ""
-#: plugins/contribtracker/www/global_admin.php:226 www/admin/search.php:97
+#: plugins/contribtracker/www/global_admin.php:226 www/admin/search.php:92
#: www/admin/unsubscribe.php:121
msgid "Email"
msgstr ""
#: plugins/contribtracker/www/global_admin.php:227
#: plugins/contribtracker/www/global_admin.php:322
-#: plugins/globalsearch/www/index.php:171 www/docman/admin/index.php:212
+#: plugins/globalsearch/www/index.php:171 www/docman/admin/index.php:221
#: www/docman/new.php:141 www/forum/admin/index.php:96
#: www/forum/admin/index.php:168 www/forum/index.php:60
#: www/forum/myforums.php:74 www/help/trove_cat.php:50 www/mail/index.php:60
#: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:33
#: www/snippet/submit.php:95 www/tracker/admin/form-updatetracker.php:22
#: www/tracker/admin/ind.php:97 www/tracker/admin/ind.php:129
-#: www/tracker/browse.php:364 www/tracker/ind.php:45
+#: www/tracker/browse.php:366 www/tracker/ind.php:45
#: www/tracker/mod-limited.php:162
msgid "Description"
msgstr "Описание"
#: plugins/contribtracker/www/project_admin.php:313
#: www/admin/admin_table.php:306 www/admin/responses_admin.php:46
#: www/admin/responses_admin.php:93 www/admin/trove/trove_cat_list.php:43
-#: www/docman/admin/index.php:448 www/forum/admin/ForumAdmin.class.php:70
+#: www/docman/admin/index.php:457 www/forum/admin/ForumAdmin.class.php:70
#: www/forum/include/AttachManager.class.php:148
#: www/frs/admin/showreleases.php:112 www/people/skills_utils.php:31
#: www/people/skills_utils.php:89 www/project/admin/editimages.php:268
-#: www/project/admin/editimages.php:299 www/project/admin/index.php:161
+#: www/project/admin/editimages.php:299 www/project/admin/index.php:163
#: www/survey/include/SurveyHTML.class.php:304
#: www/survey/include/SurveyHTML.class.php:352
#: www/survey/include/SurveyHTML.class.php:412
#: plugins/projects_hierarchy/common/projects_hierarchyPlugin.class.php:386
#: www/admin/admin_table.php:146 www/admin/admin_table.php:307
#: www/admin/responses_admin.php:47 www/admin/trove/trove_cat_edit.php:159
-#: www/admin/useredit.php:201 www/docman/admin/index.php:473
-#: www/docman/admin/index.php:494 www/forum/admin/ForumAdmin.class.php:71
+#: www/admin/useredit.php:201 www/docman/admin/index.php:482
+#: www/docman/admin/index.php:503 www/forum/admin/ForumAdmin.class.php:71
#: www/forum/admin/index.php:187 www/forum/admin/index.php:198
#: www/forum/include/AttachManager.class.php:149
#: www/frs/admin/deletepackage.php:76 www/frs/admin/deleterelease.php:81
#: www/frs/admin/index.php:188 www/frs/admin/showreleases.php:115
-#: www/my/index.php:407 www/news/admin/index.php:133
+#: www/my/index.php:403 www/news/admin/index.php:133
#: www/people/people_utils.php:174 www/people/people_utils.php:317
#: www/people/skills_utils.php:32 www/people/skills_utils.php:90
#: www/pm/admin/index.php:389 www/pm/admin/index.php:400
#: www/tracker/admin/tracker.php:44 www/tracker/deleteartifact.php:37
#: www/tracker/include/ArtifactTypeHtml.class.php:115
#: www/tracker/mod-limited.php:160 www/tracker/mod-limited.php:170
-#: www/tracker/mod.php:53 www/tracker/mod.php:257 www/tracker/mod.php:267
+#: www/tracker/mod.php:53 www/tracker/mod.php:256 www/tracker/mod.php:266
msgid "Delete"
msgstr ""
#: www/pm/add_task.php:138 www/pm/admin/index.php:221
#: www/pm/admin/index.php:267 www/pm/admin/index.php:306
#: www/pm/deletetask.php:36 www/pm/mod_task.php:37 www/pm/mod_task.php:195
-#: www/project/admin/editimages.php:241 www/project/admin/roleedit.php:275
-#: www/project/request.php:67 www/register/projectinfo.php:190
+#: www/project/admin/editimages.php:241 www/project/admin/roleedit.php:277
+#: www/project/request.php:67 www/register/projectinfo.php:191
#: www/survey/include/SurveyHTML.class.php:537 www/tracker/add.php:26
#: www/tracker/add.php:56 www/tracker/add.php:118
#: www/tracker/admin/form-addcanned.php:51
#: plugins/contribtracker/www/global_admin.php:409
#: plugins/contribtracker/www/global_admin.php:473
#: plugins/contribtracker/www/project_admin.php:209
-#: www/admin/configman.php:248
+#: www/admin/configman.php:250
msgid "Save"
msgstr ""
#: plugins/cvstracker/common/cvstrackerPlugin.class.php:101
#: plugins/svntracker/common/svntrackerPlugin.class.php:93
-#: www/frs/index.php:167
+#: www/frs/index.php:166
msgid "Filename"
msgstr "Име на файла"
#: www/admin/admin_table.php:206 www/forum/admin/index.php:446
#: www/forum/include/ForumHTML.class.php:530 www/my/rmproject.php:90
#: www/people/editprofile.php:144 www/people/editprofile.php:204
-#: www/pm/mod_task.php:228 www/register/projectinfo.php:190
+#: www/pm/mod_task.php:228 www/register/projectinfo.php:191
#: www/reporting/timeadd.php:198
msgid "Cancel"
msgstr ""
msgstr ""
#: plugins/globalsearch/common/globalsearch_stats_boxes.php:49
-#: www/docman/search.php:90 www/include/Layout.class.php:752
-#: www/include/Layout.class.php:773
+#: www/docman/search.php:90 www/include/Layout.class.php:744
+#: www/include/Layout.class.php:765
#: www/search/include/renderers/HtmlGroupSearchRenderer.class.php:53
#: 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/gforge-simple-theme/Theme.class.php:659
-#: www/themes/gforge-simple-theme/Theme.class.php:677
-#: www/themes/gforge/Theme.class.php:404 www/themes/gforge/Theme.class.php:425
+#: www/search/index.php:69 www/themes/gforge-simple-theme/Theme.class.php:658
+#: www/themes/gforge-simple-theme/Theme.class.php:676
+#: www/themes/gforge/Theme.class.php:410 www/themes/gforge/Theme.class.php:431
#: www/themes/ultralite/Theme.class.php:134
msgid "Search"
msgstr "Търси"
msgid "Mantis admin"
msgstr ""
-#: plugins/mediawiki/www/LocalSettings.php:207
+#: plugins/mediawiki/www/LocalSettings.php:222
#: plugins/mediawiki/www/frame.php:38
msgid "Wiki not created yet, please wait for a few minutes."
msgstr ""
msgid "Project label deleted."
msgstr ""
-#: plugins/projectlabels/www/index.php:67
+#: plugins/projectlabels/www/index.php:69
#, php-format
msgid "Cannot add label onto project: %s"
msgstr ""
-#: plugins/projectlabels/www/index.php:70
+#: plugins/projectlabels/www/index.php:72
msgid "The label has been added to the project."
msgstr ""
-#: plugins/projectlabels/www/index.php:81
+#: plugins/projectlabels/www/index.php:75
+#, fuzzy
+msgid "No such project."
+msgstr "Проект %1$s"
+
+#: plugins/projectlabels/www/index.php:86
#, php-format
msgid "Cannot remove label: %s"
msgstr ""
-#: plugins/projectlabels/www/index.php:84
+#: plugins/projectlabels/www/index.php:89
msgid "The label has been removed from the project."
msgstr ""
-#: plugins/projectlabels/www/index.php:98
+#: plugins/projectlabels/www/index.php:103
#, php-format
msgid "Cannot modify label: %s"
msgstr ""
-#: plugins/projectlabels/www/index.php:101
+#: plugins/projectlabels/www/index.php:106
#, fuzzy
msgid "Label has been saved."
msgstr "Съобщението е изпратено"
-#: plugins/projectlabels/www/index.php:115
+#: plugins/projectlabels/www/index.php:120
#, fuzzy
msgid "Label name:"
msgstr "Фамилия:"
-#: plugins/projectlabels/www/index.php:117
-#: plugins/projectlabels/www/index.php:194
+#: plugins/projectlabels/www/index.php:122
+#: plugins/projectlabels/www/index.php:199
msgid "Displayed text (or HTML) for the label:"
msgstr ""
-#: plugins/projectlabels/www/index.php:120
-#: plugins/projectlabels/www/index.php:140
+#: plugins/projectlabels/www/index.php:125
+#: plugins/projectlabels/www/index.php:145
msgid "This label currently looks like this:"
msgstr ""
-#: plugins/projectlabels/www/index.php:121
+#: plugins/projectlabels/www/index.php:126
msgid "Save this label"
msgstr ""
-#: plugins/projectlabels/www/index.php:135
+#: plugins/projectlabels/www/index.php:140
#, fuzzy
msgid "Manage labels"
msgstr "Последно издадени пакети"
-#: plugins/projectlabels/www/index.php:136
+#: plugins/projectlabels/www/index.php:141
msgid "You can edit the labels that you have already created."
msgstr ""
-#: plugins/projectlabels/www/index.php:149
+#: plugins/projectlabels/www/index.php:154
#, fuzzy
msgid "This label is used on the following group:"
msgid_plural "This label is used on the following groups:"
msgstr[0] "Този потребител участвува в следните проекти:"
msgstr[1] "Този потребител участвува в следните проекти:"
-#: plugins/projectlabels/www/index.php:160
+#: plugins/projectlabels/www/index.php:165
#, fuzzy
msgid "[Remove this label]"
msgstr "Премахване"
-#: plugins/projectlabels/www/index.php:163
+#: plugins/projectlabels/www/index.php:168
#, fuzzy
msgid "This label is not used on any group."
msgstr "Този разработчик не е член на никой проект."
-#: plugins/projectlabels/www/index.php:167
+#: plugins/projectlabels/www/index.php:172
msgid "Unix name of the project:"
msgstr ""
-#: plugins/projectlabels/www/index.php:170
+#: plugins/projectlabels/www/index.php:175
#, fuzzy
msgid "Add label to project"
msgstr "Моите Проекти"
-#: plugins/projectlabels/www/index.php:175
+#: plugins/projectlabels/www/index.php:180
msgid "[Edit this label]"
msgstr ""
-#: plugins/projectlabels/www/index.php:177
+#: plugins/projectlabels/www/index.php:182
msgid "[Delete this label]"
msgstr ""
-#: plugins/projectlabels/www/index.php:185
+#: plugins/projectlabels/www/index.php:190
msgid "Add new labels"
msgstr ""
-#: plugins/projectlabels/www/index.php:186
+#: plugins/projectlabels/www/index.php:191
msgid "You can create new labels with the form below."
msgstr ""
-#: plugins/projectlabels/www/index.php:192
+#: plugins/projectlabels/www/index.php:197
msgid "Name of the label:"
msgstr ""
-#: plugins/projectlabels/www/index.php:193
+#: plugins/projectlabels/www/index.php:198
#, fuzzy
msgid "potm"
msgstr "Отчет"
-#: plugins/projectlabels/www/index.php:196
+#: plugins/projectlabels/www/index.php:201
msgid "<p><b>Project of the month!</b></p>"
msgstr ""
-#: plugins/projectlabels/www/index.php:198
+#: plugins/projectlabels/www/index.php:203
#, fuzzy
msgid "Add label"
msgstr "Добавяне на роля"
msgstr ""
#: plugins/projects_hierarchy/www/softwaremap.php:57
-#: www/reporting/projecttime.php:54 www/reporting/sitetime.php:52
+#: www/reporting/projecttime.php:59 www/reporting/sitetime.php:57
#: www/reporting/usertime.php:70
msgid "By Category"
msgstr ""
#: plugins/scmccase/common/CCasePlugin.class.php:97
#, php-format
msgid ""
-"Either mount the VOB with <tt>cleartool mount %1$s</tt> or select the <tt>%1"
-"$s</tt> VOB in your ClearCase Explorer."
+"Either mount the VOB with <tt>cleartool mount %1$s</tt> or select the <tt>"
+"%1$s</tt> VOB in your ClearCase Explorer."
msgstr ""
#: plugins/scmccase/common/CCasePlugin.class.php:114
#: www/project/admin/editimages.php:271 www/reporting/usersummary.php:104
#: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:32
#: www/tracker/detail.php:169 www/tracker/mod-limited.php:161
-#: www/tracker/mod.php:258
+#: www/tracker/mod.php:257
msgid "Name"
msgstr ""
"client machine. Enter your site password when prompted.</p>"
msgstr ""
-#: plugins/scmhg/common/HgPlugin.class.php:67
+#: plugins/scmhg/common/HgPlugin.class.php:68
msgid ""
"<p><b>Developer Mercurial Access via SSH</b></p><p>Only project developers "
"can access the Mercurial tree via this method. SSH must be installed on your "
#: www/people/people_utils.php:173 www/people/people_utils.php:316
#: www/pm/admin/index.php:367 www/pm/calendar.php:277
#: www/project/admin/database.php:236 www/project/admin/editgroupinfo.php:353
-#: www/project/admin/index.php:263 www/project/admin/tools.php:281
+#: www/project/admin/index.php:265 www/project/admin/tools.php:281
#: www/project/admin/users.php:274 www/project/admin/users.php:290
#: www/reporting/timecategory.php:99 www/scm/admin/index.php:113
msgid "Update"
"<p>Your account is currently pending your email confirmation.\t\tVisiting "
"the link sent to you in this email will activate your account.\t\t<p>If you "
"need this email resent, please click below and a confirmation\t\temail will "
-"be sent to the email address you provided in registration.\t\t<p><a href=\"%1"
-"$s\">[Resend Confirmation Email]</a>\t\t<br><hr>\t\t<p>"
+"be sent to the email address you provided in registration.\t\t<p><a href="
+"\"%1$s\">[Resend Confirmation Email]</a>\t\t<br><hr>\t\t<p>"
msgstr ""
#: www/account/login.php:108
"instructions in the email to change your account password."
msgstr ""
-#: www/account/lostpw.php:73 www/include/Layout.class.php:428
-#: www/themes/gforge-simple-theme/Theme.class.php:135
-#: www/themes/gforge-simple-theme/Theme.class.php:347
+#: www/account/lostpw.php:73 www/include/Layout.class.php:420
+#: www/themes/gforge-simple-theme/Theme.class.php:134
+#: www/themes/gforge-simple-theme/Theme.class.php:346
#: www/themes/lite/Theme.class.php:267 www/themes/ultralite/Theme.class.php:40
#, php-format
msgid "Home"
msgstr ""
#: www/activity/index.php:149 www/frs/reporting/downloads.php:100
-#: www/project/stats/index.php:61 www/reporting/groupadded.php:56
-#: www/reporting/groupcum.php:56 www/reporting/projectact.php:61
-#: www/reporting/projecttime.php:72 www/reporting/siteact.php:60
-#: www/reporting/sitetime.php:68 www/reporting/sitetimebar.php:55
-#: www/reporting/toolspie.php:59 www/reporting/useract.php:73
-#: www/reporting/useradded.php:55 www/reporting/usercum.php:56
+#: www/project/stats/index.php:64 www/reporting/groupadded.php:60
+#: www/reporting/groupcum.php:60 www/reporting/projectact.php:65
+#: www/reporting/projecttime.php:77 www/reporting/siteact.php:64
+#: www/reporting/sitetime.php:73 www/reporting/sitetimebar.php:60
+#: www/reporting/toolspie.php:64 www/reporting/useract.php:77
+#: www/reporting/useradded.php:59 www/reporting/usercum.php:60
#: www/reporting/usersummary.php:72 www/reporting/usertime.php:86
msgid "Start"
msgstr ""
#: www/activity/index.php:150 www/frs/reporting/downloads.php:102
-#: www/project/stats/index.php:62 www/reporting/groupadded.php:57
-#: www/reporting/groupcum.php:57 www/reporting/projectact.php:62
-#: www/reporting/projecttime.php:73 www/reporting/siteact.php:61
-#: www/reporting/sitetime.php:69 www/reporting/sitetimebar.php:56
-#: www/reporting/toolspie.php:60 www/reporting/useract.php:74
-#: www/reporting/useradded.php:56 www/reporting/usercum.php:57
+#: www/project/stats/index.php:65 www/reporting/groupadded.php:61
+#: www/reporting/groupcum.php:61 www/reporting/projectact.php:66
+#: www/reporting/projecttime.php:78 www/reporting/siteact.php:65
+#: www/reporting/sitetime.php:74 www/reporting/sitetimebar.php:61
+#: www/reporting/toolspie.php:65 www/reporting/useract.php:78
+#: www/reporting/useradded.php:60 www/reporting/usercum.php:61
#: www/reporting/usersummary.php:73 www/reporting/usertime.php:87
msgid "End"
msgstr ""
msgid "No Activity Found"
msgstr ""
-#: www/activity/index.php:198 www/reporting/projecttime.php:85
-#: www/reporting/sitetime.php:81 www/reporting/sitetimebar.php:85
+#: www/activity/index.php:198 www/reporting/projecttime.php:90
+#: www/reporting/sitetime.php:86 www/reporting/sitetimebar.php:90
msgid "Time"
msgstr ""
#: www/activity/index.php:221 www/activity/index.php:226
#: www/tracker/taskmgr.php:87 www/tracker/taskmgr.php:140
-#: www/tracker/tracker.php:274
+#: www/tracker/tracker.php:276
msgid "Tracker Item"
msgstr ""
#: www/admin/admin_table.php:54 www/admin/database.php:174
#: www/admin/trove/trove_cat_add.php:126 www/admin/trove/trove_cat_list.php:41
-#: www/admin/trove/trove_cat_list.php:44 www/docman/admin/index.php:396
+#: www/admin/trove/trove_cat_list.php:44 www/docman/admin/index.php:405
#: www/forum/include/AttachManager.class.php:161 www/pm/mod_task.php:228
#: www/reporting/timeadd.php:198 www/reporting/timecategory.php:101
#: www/trove/admin/trove_cat_add.php:92 www/trove/admin/trove_cat_list.php:32
msgid "Approve All On This Page"
msgstr ""
-#: www/admin/configman.php:59 www/admin/configman.php:184
+#: www/admin/configman.php:61 www/admin/configman.php:186
#, php-format
msgid ""
"Could not open %s file for read/write. Check the permissions for apache."
msgstr ""
-#: www/admin/configman.php:66 www/admin/configman.php:252
+#: www/admin/configman.php:68 www/admin/configman.php:254
#, php-format
msgid "Could not open %s for read. Check the permissions for apache."
msgstr ""
-#: www/admin/configman.php:95
+#: www/admin/configman.php:97
msgid "Choose"
msgstr ""
-#: www/admin/configman.php:149
+#: www/admin/configman.php:151
#, fuzzy, php-format
msgid "File %s wrote successfully."
msgstr "Създадено успешно"
-#: www/admin/configman.php:152
+#: www/admin/configman.php:154
#, php-format
msgid "File %s wasn't written or is empty."
msgstr ""
-#: www/admin/configman.php:156
+#: www/admin/configman.php:158
#, php-format
msgid "Could not open %s for write. Check the permissions for apache."
msgstr ""
-#: www/admin/configman.php:193 www/admin/configman.php:209
+#: www/admin/configman.php:195 www/admin/configman.php:211
msgid "Attribute"
msgstr ""
-#: www/admin/configman.php:193
+#: www/admin/configman.php:195
msgid "On"
msgstr ""
-#: www/admin/configman.php:193
+#: www/admin/configman.php:195
msgid "Off"
msgstr ""
-#: www/admin/configman.php:209
+#: www/admin/configman.php:211
msgid "Value"
msgstr ""
msgid "Statistics for Project Databases"
msgstr ""
-#: www/admin/database.php:106 www/admin/massmail.php:149 www/frs/index.php:172
+#: www/admin/database.php:106 www/admin/massmail.php:149 www/frs/index.php:171
#: www/people/editprofile.php:272 www/people/skills_utils.php:34
-#: www/people/skills_utils.php:142 www/project/stats/index.php:60
-#: www/reporting/groupadded.php:55 www/reporting/groupcum.php:55
-#: www/reporting/projectact.php:60 www/reporting/projecttime.php:71
-#: www/reporting/projecttime.php:84 www/reporting/siteact.php:59
-#: www/reporting/sitetime.php:67 www/reporting/sitetime.php:81
-#: www/reporting/useract.php:72 www/reporting/useradded.php:54
-#: www/reporting/usercum.php:55 www/reporting/usertime.php:85
+#: www/people/skills_utils.php:142 www/project/stats/index.php:63
+#: www/reporting/groupadded.php:59 www/reporting/groupcum.php:59
+#: www/reporting/projectact.php:64 www/reporting/projecttime.php:76
+#: www/reporting/projecttime.php:89 www/reporting/siteact.php:63
+#: www/reporting/sitetime.php:72 www/reporting/sitetime.php:86
+#: www/reporting/useract.php:76 www/reporting/useradded.php:58
+#: www/reporting/usercum.php:59 www/reporting/usertime.php:85
#: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:33
#: www/tracker/admin/form-addextrafield.php:23
msgid "Type"
msgid "Holding (H)"
msgstr ""
-#: www/admin/groupedit.php:131 www/admin/grouplist.php:86
+#: www/admin/groupedit.php:131 www/admin/grouplist.php:84
msgid "Public?"
msgstr "Флаг за публичност"
msgid "Group List"
msgstr ""
-#: www/admin/grouplist.php:46
+#: www/admin/grouplist.php:52
msgid "Groups that begin with"
msgstr ""
-#: www/admin/grouplist.php:66
+#: www/admin/grouplist.php:73
msgid "Group List for Category:"
msgstr ""
-#: www/admin/grouplist.php:82
+#: www/admin/grouplist.php:80
msgid "Group Name (click to edit)"
msgstr ""
-#: www/admin/grouplist.php:83
+#: www/admin/grouplist.php:81
msgid "Register Time"
msgstr ""
-#: www/admin/grouplist.php:84 www/admin/search.php:166
+#: www/admin/grouplist.php:82 www/admin/search.php:155
#: www/admin/useredit.php:246 www/project/admin/massadd.php:95
#: www/project/admin/massfinish.php:81
#, fuzzy
msgid "Unix name"
msgstr "Име"
-#: www/admin/grouplist.php:87 www/snippet/submit.php:104
+#: www/admin/grouplist.php:85 www/snippet/submit.php:104
msgid "License"
msgstr "Лиценз"
-#: www/admin/grouplist.php:88
+#: www/admin/grouplist.php:86
msgid "Members"
msgstr ""
msgid "Project Database Administration"
msgstr ""
+#: www/admin/index.php:181
+#, fuzzy
+msgid "Job / Categories Administration"
+msgstr "Форуми: Администрация"
+
#: www/admin/massmail.php:45
msgid "Missing parameter, You must select target audience for mailing"
msgstr ""
msgid "Schedule for Mailing"
msgstr ""
-#: www/admin/massmail.php:148 www/admin/search.php:94 www/admin/search.php:165
-#: www/docman/admin/index.php:367 www/my/dashboard.php:77 www/my/index.php:53
+#: www/admin/massmail.php:148 www/admin/search.php:89 www/admin/search.php:154
+#: www/docman/admin/index.php:376 www/my/dashboard.php:77 www/my/index.php:53
#: www/my/index.php:95 www/my/index.php:146
#: www/project/admin/editimages.php:269
-#: www/tracker/admin/form-addcanned.php:23 www/tracker/browse.php:158
-#: www/tracker/browse.php:360 www/tracker/query.php:176
+#: www/tracker/admin/form-addcanned.php:23 www/tracker/browse.php:160
+#: www/tracker/browse.php:362 www/tracker/query.php:176
msgid "ID"
msgstr ""
msgid "Admin Search Results"
msgstr ""
-#: www/admin/search.php:85
+#: www/admin/search.php:80
#, php-format
msgid "User search with criteria <em>%1$s</em>: %2$s match"
msgid_plural "User search with criteria <em>%1$s</em>: %2$s matches"
msgstr[0] ""
msgstr[1] ""
-#: www/admin/search.php:95 www/admin/unsubscribe.php:119
+#: www/admin/search.php:90 www/admin/unsubscribe.php:119
#: www/project/admin/users.php:272
#: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:32
#: www/top/topusers.php:68
msgid "User name"
msgstr "Истинско Име"
-#: www/admin/search.php:96 www/admin/unsubscribe.php:120
+#: www/admin/search.php:91 www/admin/unsubscribe.php:120
#: www/admin/useredit.php:121 www/include/user_home.php:44
#: www/project/admin/massadd.php:94 www/project/admin/massfinish.php:80
#: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:33
msgid "Real name"
msgstr ""
-#: www/admin/search.php:98
+#: www/admin/search.php:93
msgid "Member since"
msgstr ""
-#: www/admin/search.php:158
+#: www/admin/search.php:147
#, php-format
msgid "Group search with criteria <em>%s</em>: %d match"
msgid_plural "Group search with criteria <em>%s</em>: %d matches"
msgstr[0] ""
msgstr[1] ""
-#: www/admin/search.php:167
+#: www/admin/search.php:156
msgid "Full Name"
msgstr ""
-#: www/admin/search.php:168
+#: www/admin/search.php:157
msgid "Registered"
msgstr ""
#: www/admin/trove/trove_cat_add.php:68 www/admin/trove/trove_cat_edit.php:73
#: www/include/trove.php:392 www/include/trove.php:402
#: www/include/trove.php:407 www/include/trove.php:412
+#: www/include/trove.php:417
msgid "Error In Trove Operation"
msgstr ""
#, php-format
msgid ""
"Use field below to find users which match given pattern with the %1$s "
-"username, real name, or email address (substring match is preformed, use '%"
-"%' in the middle of pattern to specify 0 or more arbitrary characters). "
+"username, real name, or email address (substring match is preformed, use "
+"'%%' in the middle of pattern to specify 0 or more arbitrary characters). "
"Click on the username to unsubscribe user from site mailings (new form will "
"appear)."
msgstr ""
msgid "Key"
msgstr ""
-#: www/admin/userlist.php:63 www/docman/admin/index.php:162
+#: www/admin/userlist.php:63 www/docman/admin/index.php:171
#: www/frs/admin/index.php:97 www/frs/admin/showreleases.php:82
#: www/pm/admin/index.php:339
msgid "Deleted"
"submitting the info."
msgstr ""
-#: www/docman/admin/index.php:87
+#: www/docman/admin/index.php:96
#, php-format
msgid "Invalid file attack attempt %1$s"
msgstr ""
-#: www/docman/admin/index.php:109 www/docman/admin/index.php:123
-#: www/pm/admin/index.php:140 www/tracker/tracker.php:393
+#: www/docman/admin/index.php:118 www/docman/admin/index.php:132
+#: www/pm/admin/index.php:140 www/tracker/tracker.php:392
msgid "Updated successfully"
msgstr "Обновено успешно"
-#: www/docman/admin/index.php:135
+#: www/docman/admin/index.php:144
#, fuzzy
msgid "Deleted successfully"
msgstr "Създадено успешно"
-#: www/docman/admin/index.php:150
+#: www/docman/admin/index.php:159
msgid "Created successfully"
msgstr "Създадено успешно"
-#: www/docman/admin/index.php:192 www/docman/admin/index.php:349
-#: www/docman/admin/index.php:430 www/docman/admin/index.php:466
-#: www/docman/admin/index.php:484
+#: www/docman/admin/index.php:201 www/docman/admin/index.php:358
+#: www/docman/admin/index.php:439 www/docman/admin/index.php:475
+#: www/docman/admin/index.php:493
msgid "Document Manager Administration"
msgstr ""
-#: www/docman/admin/index.php:192
+#: www/docman/admin/index.php:201
#, fuzzy
msgid "Edit Docs"
msgstr "Редактиране на обяви"
-#: www/docman/admin/index.php:196 www/docman/new.php:129
+#: www/docman/admin/index.php:205 www/docman/new.php:129
msgid ""
"<strong>Document Title</strong>: Refers to the relatively brief title of "
"the document (e.g. How to use the download server)<br /><strong>Description:"
"</strong> A brief description to be placed just under the title."
msgstr "<strong>Публикуване на нов документ</strong>"
-#: www/docman/admin/index.php:205 www/docman/new.php:134
+#: www/docman/admin/index.php:214 www/docman/new.php:134
msgid "Document Title"
msgstr "Име на документа"
-#: www/docman/admin/index.php:205 www/docman/admin/index.php:212
+#: www/docman/admin/index.php:214 www/docman/admin/index.php:221
#: www/docman/new.php:134 www/docman/new.php:141
#, php-format
msgid "(at least %1$s characters)"
msgstr ""
-#: www/docman/admin/index.php:219
+#: www/docman/admin/index.php:228
msgid "File"
msgstr "Файл"
-#: www/docman/admin/index.php:235
+#: www/docman/admin/index.php:244
msgid ""
"Edit the contents to your desire or leave them as they are to remain "
"unmodified."
msgstr ""
-#: www/docman/admin/index.php:267 www/docman/include/doc_utils.php:114
+#: www/docman/admin/index.php:276 www/docman/include/doc_utils.php:114
#: www/docman/new.php:217 www/snippet/package.php:140
#: www/snippet/submit.php:110 www/stats/i18n.php:20
msgid "Language"
msgstr ""
-#: www/docman/admin/index.php:277 www/docman/new.php:223
+#: www/docman/admin/index.php:286 www/docman/new.php:223
msgid "Group that document belongs in"
msgstr "Папка в която да се постави документа"
-#: www/docman/admin/index.php:288 www/pm/browse_task.php:358
+#: www/docman/admin/index.php:297 www/pm/browse_task.php:358
#: www/project/admin/database.php:210
-#: www/tracker/admin/form-customizelist.php:26 www/tracker/browse.php:308
-#: www/tracker/browse.php:370 www/tracker/browse.php:555
+#: www/tracker/admin/form-customizelist.php:26 www/tracker/browse.php:310
+#: www/tracker/browse.php:372 www/tracker/browse.php:552
#: www/tracker/detail.php:50 www/tracker/mod-limited.php:103
-#: www/tracker/mod.php:147 www/tracker/query.php:324
+#: www/tracker/mod.php:146 www/tracker/query.php:324
msgid "State"
msgstr ""
-#: www/docman/admin/index.php:315
+#: www/docman/admin/index.php:324
msgid "Specify an outside URL where the file will be referenced"
msgstr "ИЛИ външен URL, където се намира документа"
-#: www/docman/admin/index.php:318
+#: www/docman/admin/index.php:327
msgid "OPTIONAL: Upload new file"
msgstr ""
-#: www/docman/admin/index.php:334
+#: www/docman/admin/index.php:343
msgid "Submit Edit"
msgstr ""
-#: www/docman/admin/index.php:335
+#: www/docman/admin/index.php:344
msgid "Permanently delete this document"
msgstr ""
-#: www/docman/admin/index.php:349 www/docman/admin/index.php:351
+#: www/docman/admin/index.php:358 www/docman/admin/index.php:360
#, fuzzy
msgid "Admin Document Groups"
msgstr "Създаване и редактиране на папки"
-#: www/docman/admin/index.php:368 www/docman/admin/index.php:437
+#: www/docman/admin/index.php:377 www/docman/admin/index.php:446
#: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:32
#: www/stats/site_stats_utils.php:228
msgid "Group Name"
msgstr ""
-#: www/docman/admin/index.php:369
+#: www/docman/admin/index.php:378
#, fuzzy
msgid "Delete Group"
msgstr "Файл"
-#: www/docman/admin/index.php:379
+#: www/docman/admin/index.php:388
msgid "No Document Groups defined"
msgstr ""
-#: www/docman/admin/index.php:382
+#: www/docman/admin/index.php:391
msgid "Add a group"
msgstr "Създаване на нова папка"
-#: www/docman/admin/index.php:386
+#: www/docman/admin/index.php:395
msgid "New Group Name"
msgstr "Име"
-#: www/docman/admin/index.php:391 www/docman/admin/index.php:442
+#: www/docman/admin/index.php:400 www/docman/admin/index.php:451
msgid "Belongs to"
msgstr ""
-#: www/docman/admin/index.php:400 www/docman/admin/index.php:452
+#: www/docman/admin/index.php:409 www/docman/admin/index.php:461
msgid ""
"Group name will be used as a title, so it should be formatted "
"correspondingly."
msgstr ""
-#: www/docman/admin/index.php:430 www/docman/admin/index.php:484
+#: www/docman/admin/index.php:439 www/docman/admin/index.php:493
#, fuzzy
msgid "Edit Groups"
msgstr "Редактиране на папка"
-#: www/docman/admin/index.php:432
+#: www/docman/admin/index.php:441
msgid "Edit a group"
msgstr "Редактиране на папка"
-#: www/docman/admin/index.php:466
+#: www/docman/admin/index.php:475
#, fuzzy
msgid "Delete Groups"
msgstr "Редактиране на папка"
-#: www/docman/admin/index.php:472
+#: www/docman/admin/index.php:481
#, fuzzy
msgid ""
"You are about to permanently delete this document group and its content "
"ПРЕДУПРЕЖДЕНИЕ! Вие сте на път да изтриете съобщение и всички свързани с "
"него други съобщения."
-#: www/docman/admin/index.php:489
+#: www/docman/admin/index.php:498
msgid "You are about to permanently delete this document."
msgstr ""
-#: www/docman/admin/index.php:491
+#: www/docman/admin/index.php:500
#: www/tracker/admin/form-deleteextrafield.php:15
#: www/tracker/admin/form-deleteextrafieldelement.php:38
#: www/tracker/admin/form-deletetracker.php:10
msgid "I'm Sure."
msgstr ""
-#: www/docman/admin/index.php:492
+#: www/docman/admin/index.php:501
#: www/tracker/admin/form-deleteextrafield.php:16
#: www/tracker/admin/form-deleteextrafieldelement.php:39
#: www/tracker/admin/form-deletetracker.php:11
msgid "I'm Really Sure."
msgstr ""
-#: www/docman/admin/index.php:521
+#: www/docman/admin/index.php:530
#, fuzzy, php-format
msgid "Project %s"
msgstr "Общо за целия проект"
-#: www/docman/admin/index.php:521 www/docman/admin/index.php:524
+#: www/docman/admin/index.php:530 www/docman/admin/index.php:533
msgid "Document Manager: Administration"
msgstr "Администриране"
-#: www/docman/admin/index.php:526
+#: www/docman/admin/index.php:535
#, fuzzy
msgid "Add/Edit/Delete Document Groups"
msgstr "Добавяне/редактиране на папки"
-#: www/docman/admin/index.php:532 www/docman/index.php:120
+#: www/docman/admin/index.php:541 www/docman/index.php:120
msgid "This project has no visible documents"
msgstr "Няма публикувани документи"
msgstr "Няма статистика"
#: www/export/projnews.php:81 www/forum/include/ForumHTML.class.php:96
-#: www/include/project_home.php:454 www/index_std.php:59
+#: www/include/project_home.php:455 www/index_std.php:59
msgid "Latest News"
msgstr "Последни новини"
#: www/forum/attachment.php:45 www/forum/attachment.php:134
#: www/forum/attachment.php:162 www/tracker/detail.php:145
-#: www/tracker/mod-limited.php:140 www/tracker/mod.php:239
+#: www/tracker/mod-limited.php:140 www/tracker/mod.php:238
msgid "Attachments"
msgstr ""
msgstr ""
#: www/frs/admin/qrs.php:288 www/tracker/mod-limited.php:196
-#: www/tracker/mod.php:293
+#: www/tracker/mod.php:292
msgid "Change Log"
msgstr ""
"Бележките и списъка с промените за конкретно издание можете да видите ако "
"щракнете върху версията му."
-#: www/frs/index.php:87
+#: www/frs/index.php:86
msgid "To create a new release click here."
msgstr "Издаване на нов пакет"
-#: www/frs/index.php:106
+#: www/frs/index.php:105
msgid "Stop monitoring this package"
msgstr ""
-#: www/frs/index.php:110 www/include/project_home.php:263
+#: www/frs/index.php:109 www/include/project_home.php:263
msgid "Monitor this package"
msgstr ""
-#: www/frs/index.php:128 www/frs/index.php:188
+#: www/frs/index.php:127 www/frs/index.php:187
msgid "No releases"
msgstr "Няма издания"
-#: www/frs/index.php:169 www/pm/ganttpage.php:171
+#: www/frs/index.php:168 www/pm/ganttpage.php:147
#: www/project/admin/editimages.php:273
msgid "Size"
msgstr "Размер"
-#: www/frs/index.php:170
+#: www/frs/index.php:169
msgid "D/L"
msgstr "Тегления"
-#: www/frs/index.php:171
+#: www/frs/index.php:170
msgid "Arch"
msgstr "Архитектура"
msgid "Package"
msgstr "Пакет"
-#: www/frs/reporting/downloads.php:104 www/project/stats/index.php:63
-#: www/reporting/groupadded.php:58 www/reporting/groupcum.php:58
-#: www/reporting/projectact.php:63 www/reporting/projecttime.php:74
-#: www/reporting/siteact.php:62 www/reporting/sitetime.php:70
-#: www/reporting/sitetimebar.php:57 www/reporting/toolspie.php:61
-#: www/reporting/useract.php:75 www/reporting/useradded.php:57
-#: www/reporting/usercum.php:58 www/reporting/usersummary.php:75
+#: www/frs/reporting/downloads.php:104 www/project/stats/index.php:66
+#: www/reporting/groupadded.php:62 www/reporting/groupcum.php:62
+#: www/reporting/projectact.php:67 www/reporting/projecttime.php:79
+#: www/reporting/siteact.php:66 www/reporting/sitetime.php:75
+#: www/reporting/sitetimebar.php:62 www/reporting/toolspie.php:66
+#: www/reporting/useract.php:79 www/reporting/useradded.php:61
+#: www/reporting/usercum.php:62 www/reporting/usersummary.php:75
#: www/reporting/usertime.php:88
msgid "Refresh"
msgstr ""
"project."
msgstr ""
-#: www/help/tracker.php:60 www/pm/ganttpage.php:170
+#: www/help/tracker.php:60 www/pm/ganttpage.php:146
msgid "Resolution"
msgstr ""
msgstr ""
#: www/include/Layout.class.php:89 www/include/help.php:35
+#: www/themes/gforge-simple-theme/Theme.class.php:78
#: www/themes/gforge-simple-theme/Theme.class.php:79
-#: www/themes/gforge-simple-theme/Theme.class.php:80
#: www/themes/gforge/Theme.class.php:48 www/themes/lite/Theme.class.php:77
#: www/themes/ultralite/Theme.class.php:31
msgid "en"
msgstr "bg"
-#: www/include/Layout.class.php:164
-#: www/themes/gforge-simple-theme/Theme.class.php:141
+#: www/include/Layout.class.php:156
+#: www/themes/gforge-simple-theme/Theme.class.php:140
#: www/themes/gforge/Theme.class.php:90 www/themes/lite/Theme.class.php:127
#: www/themes/osx/Theme.class.php:81 www/themes/ultralite/Theme.class.php:46
msgid "Log Out"
msgstr "Изход"
-#: www/include/Layout.class.php:165
-#: www/themes/gforge-simple-theme/Theme.class.php:143
+#: www/include/Layout.class.php:157
+#: www/themes/gforge-simple-theme/Theme.class.php:142
#: www/themes/gforge/Theme.class.php:92 www/themes/lite/Theme.class.php:129
#: www/themes/osx/Theme.class.php:83 www/themes/ultralite/Theme.class.php:47
msgid "My Account"
msgstr "Моят акаунт"
-#: www/include/Layout.class.php:167
-#: www/themes/gforge-simple-theme/Theme.class.php:146
+#: www/include/Layout.class.php:159
+#: www/themes/gforge-simple-theme/Theme.class.php:145
#: www/themes/gforge/Theme.class.php:100 www/themes/osx/Theme.class.php:86
#: www/themes/ultralite/Theme.class.php:51
msgid "Log In"
msgstr "Вход"
-#: www/include/Layout.class.php:169
-#: www/themes/gforge-simple-theme/Theme.class.php:149
+#: www/include/Layout.class.php:161
+#: www/themes/gforge-simple-theme/Theme.class.php:148
#: www/themes/gforge/Theme.class.php:103 www/themes/lite/Theme.class.php:132
#: www/themes/osx/Theme.class.php:87 www/themes/ultralite/Theme.class.php:52
msgid "New Account"
msgstr "Регистрация"
-#: www/include/Layout.class.php:290
-#: www/themes/gforge-simple-theme/Theme.class.php:208
-#: www/themes/gforge/Theme.class.php:143
+#: www/include/Layout.class.php:282
+#: www/themes/gforge-simple-theme/Theme.class.php:207
+#: www/themes/gforge/Theme.class.php:144
msgid "Show source"
msgstr ""
-#: www/include/Layout.class.php:429
-#: www/themes/gforge-simple-theme/Theme.class.php:351
+#: www/include/Layout.class.php:421
+#: www/themes/gforge-simple-theme/Theme.class.php:350
#: www/themes/lite/Theme.class.php:268
msgid "My Page"
msgstr "Моята страница"
-#: www/include/Layout.class.php:431 www/my/index.php:369
+#: www/include/Layout.class.php:423 www/my/index.php:365
#: www/reporting/index.php:44 www/stats/site_stats_utils.php:477
#: www/themes/lite/Theme.class.php:270
msgid "Projects"
msgstr ""
-#: www/include/Layout.class.php:434
-#: www/themes/gforge-simple-theme/Theme.class.php:367
+#: www/include/Layout.class.php:426
+#: www/themes/gforge-simple-theme/Theme.class.php:366
#: www/themes/lite/Theme.class.php:273
msgid "Code Snippets"
msgstr "Фрагменти"
-#: www/include/Layout.class.php:437
-#: www/themes/gforge-simple-theme/Theme.class.php:375
+#: www/include/Layout.class.php:429
+#: www/themes/gforge-simple-theme/Theme.class.php:374
#: www/themes/lite/Theme.class.php:276
msgid "Project Openings"
msgstr "Помощ"
-#: www/include/Layout.class.php:532
+#: www/include/Layout.class.php:524
msgid "Quick Jump To..."
msgstr ""
-#: www/include/Layout.class.php:755
+#: www/include/Layout.class.php:747
#: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/gforge-simple-theme/Theme.class.php:663
-#: www/themes/gforge/Theme.class.php:407
+#: www/themes/gforge-simple-theme/Theme.class.php:662
+#: www/themes/gforge/Theme.class.php:413
msgid "Advanced search"
msgstr ""
-#: www/include/Layout.class.php:778
-#: www/themes/gforge-simple-theme/Theme.class.php:678
-#: www/themes/gforge/Theme.class.php:430
+#: www/include/Layout.class.php:770
+#: www/themes/gforge-simple-theme/Theme.class.php:677
+#: www/themes/gforge/Theme.class.php:436
msgid "with all words"
msgstr ""
-#: www/include/Layout.class.php:781
-#: www/themes/gforge-simple-theme/Theme.class.php:679
-#: www/themes/gforge/Theme.class.php:433
+#: www/include/Layout.class.php:773
+#: www/themes/gforge-simple-theme/Theme.class.php:678
+#: www/themes/gforge/Theme.class.php:439
msgid "with one word"
msgstr ""
-#: www/include/Layout.class.php:832 www/themes/gforge/Theme.class.php:479
+#: www/include/Layout.class.php:824 www/themes/gforge/Theme.class.php:485
msgid "Search in"
msgstr ""
-#: www/include/Layout.class.php:833 www/include/Layout.class.php:865
-#: www/themes/gforge-simple-theme/Theme.class.php:681
-#: www/themes/gforge-simple-theme/Theme.class.php:737
-#: www/themes/gforge/Theme.class.php:480 www/themes/gforge/Theme.class.php:513
+#: www/include/Layout.class.php:825 www/include/Layout.class.php:857
+#: www/themes/gforge-simple-theme/Theme.class.php:680
+#: www/themes/gforge-simple-theme/Theme.class.php:736
+#: www/themes/gforge/Theme.class.php:486 www/themes/gforge/Theme.class.php:519
msgid "Select"
msgstr ""
-#: www/include/Layout.class.php:833 www/include/Layout.class.php:865
+#: www/include/Layout.class.php:825 www/include/Layout.class.php:857
#: www/stats/site_stats_utils.php:145
-#: www/themes/gforge-simple-theme/Theme.class.php:681
-#: www/themes/gforge-simple-theme/Theme.class.php:737
-#: www/themes/gforge/Theme.class.php:480 www/themes/gforge/Theme.class.php:513
+#: www/themes/gforge-simple-theme/Theme.class.php:680
+#: www/themes/gforge-simple-theme/Theme.class.php:736
+#: www/themes/gforge/Theme.class.php:486 www/themes/gforge/Theme.class.php:519
msgid "all"
msgstr ""
-#: www/include/Layout.class.php:833 www/include/Layout.class.php:865
-#: www/themes/gforge-simple-theme/Theme.class.php:681
-#: www/themes/gforge-simple-theme/Theme.class.php:737
-#: www/themes/gforge/Theme.class.php:480 www/themes/gforge/Theme.class.php:513
+#: www/include/Layout.class.php:825 www/include/Layout.class.php:857
+#: www/themes/gforge-simple-theme/Theme.class.php:680
+#: www/themes/gforge-simple-theme/Theme.class.php:736
+#: www/themes/gforge/Theme.class.php:486 www/themes/gforge/Theme.class.php:519
#, fuzzy
msgid "none"
msgstr "Готово"
#: www/include/html.php:319 www/include/html.php:392 www/include/html.php:577
#: www/pm/browse_task.php:317 www/pm/browse_task.php:348
-#: www/pm/browse_task.php:359 www/tracker/browse.php:540
-#: www/tracker/browse.php:552 www/tracker/browse.php:556
+#: www/pm/browse_task.php:359 www/tracker/browse.php:537
+#: www/tracker/browse.php:549 www/tracker/browse.php:553
msgid "No Change"
msgstr ""
#: www/include/project_home.php:197 www/include/project_home.php:271
#: www/new/index.php:104 www/tracker/detail.php:170 www/tracker/detail.php:175
#: www/tracker/mod-limited.php:163 www/tracker/mod-limited.php:173
-#: www/tracker/mod.php:259 www/tracker/mod.php:269
+#: www/tracker/mod.php:258 www/tracker/mod.php:268
msgid "Download"
msgstr ""
msgid "Mailing Lists"
msgstr "Пощенски списъци"
-#: www/include/project_home.php:372
+#: www/include/project_home.php:373
#, php-format
msgid "(<strong>%1$s</strong> public mailing list)"
msgid_plural "(<strong>%1$s</strong> public mailing lists)"
msgstr[0] ""
msgstr[1] ""
-#: www/include/project_home.php:380
+#: www/include/project_home.php:381
msgid "Task Manager"
msgstr "Управление на задачи"
-#: www/include/project_home.php:387
+#: www/include/project_home.php:388
msgid "There are no public subprojects available"
msgstr ""
-#: www/include/project_home.php:406
+#: www/include/project_home.php:407
msgid "surveys"
msgstr ""
-#: www/include/project_home.php:415 www/register/projectinfo.php:161
+#: www/include/project_home.php:416 www/register/projectinfo.php:162
#: www/scm/admin/index.php:39 www/scm/admin/index.php:92
#: www/scm/browser.php:33 www/scm/include/scm_utils.php:43
#: www/scm/index.php:32 www/scm/reporting/index.php:32
msgid "SCM Repository"
msgstr ""
-#: www/include/project_home.php:437
+#: www/include/project_home.php:438
msgid "Anonymous FTP Space"
msgstr "Анонимно FTP пространство"
"still be viewed by members of your project, but are not listed on %1$s."
msgstr ""
"Оттук можете да настройвате пощенските списъци към Вашия проект. Списъците, "
-"които не са публични ще бъдат видими само за участниците в проекта. <br "
-"/><br />"
+"които не са публични ще бъдат видими само за участниците в проекта. <br /"
+"><br />"
#: www/mail/admin/index.php:240
msgid "Add Mailing List"
msgid "All trackers for my projects"
msgstr ""
-#: www/my/dashboard.php:64 www/my/index.php:394
+#: www/my/dashboard.php:64
msgid "You're not a member of any active projects"
msgstr "Вие не сте член на никой активен проект"
#: www/my/index.php:147 www/pm/add_task.php:52 www/pm/browse_task.php:91
#: www/pm/browse_task.php:180 www/pm/browse_task.php:349
#: www/pm/detail_task.php:42 www/pm/mod_task.php:59 www/tracker/add.php:67
-#: www/tracker/admin/form-customizelist.php:27 www/tracker/browse.php:159
-#: www/tracker/browse.php:372 www/tracker/browse.php:542
+#: www/tracker/admin/form-customizelist.php:27 www/tracker/browse.php:161
+#: www/tracker/browse.php:374 www/tracker/browse.php:539
#: www/tracker/detail.php:46 www/tracker/mod-limited.php:90
-#: www/tracker/mod.php:134 www/tracker/query.php:177
+#: www/tracker/mod.php:133 www/tracker/query.php:177
msgid "Priority"
msgstr ""
#: www/my/dashboard.php:87 www/pm/add_task.php:108 www/pm/browse_task.php:178
#: www/pm/browse_task.php:356 www/pm/detail_task.php:83
-#: www/pm/mod_task.php:113 www/tracker/add.php:63 www/tracker/browse.php:374
-#: www/tracker/browse.php:551 www/tracker/detail.php:64
-#: www/tracker/mod-limited.php:87 www/tracker/mod.php:128
+#: www/pm/mod_task.php:113 www/tracker/add.php:63 www/tracker/browse.php:376
+#: www/tracker/browse.php:548 www/tracker/detail.php:64
+#: www/tracker/mod-limited.php:87 www/tracker/mod.php:127
msgid "Assigned to"
msgstr ""
#: www/pm/mod_task.php:35
#: www/search/include/renderers/ArtifactHtmlSearchRenderer.class.php:45
#: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:37
-#: www/tracker/browse.php:376 www/tracker/detail.php:55
+#: www/tracker/browse.php:378 www/tracker/detail.php:55
#: www/tracker/mod-limited.php:59 www/tracker/mod.php:65
msgid "Submitted by"
msgstr ""
msgstr ""
#: www/my/index.php:195 www/my/index.php:272 www/my/index.php:303
-#: www/my/index.php:376 www/my/rmproject.php:84
+#: www/my/index.php:372 www/my/rmproject.php:84
#: www/project/admin/users.php:275 www/project/admin/users.php:291
msgid "Remove"
msgstr "Премахване"
msgid "You are not monitoring any files."
msgstr "Не наблюдавате никакви файлове."
-#: www/my/index.php:338 www/my/index.php:343
+#: www/my/index.php:338
#, fuzzy
msgid "My Bookmarks"
msgstr "Отбележи страницата"
-#: www/my/index.php:345
+#: www/my/index.php:343
#, fuzzy
msgid "Add bookmark"
msgstr "Отбележи страницата"
-#: www/my/index.php:352
+#: www/my/index.php:349
msgid "You currently do not have any bookmarks saved."
msgstr ""
-#: www/my/index.php:362
+#: www/my/index.php:359
msgid "[Edit]"
msgstr ""
-#: www/my/index.php:377
+#: www/my/index.php:373
msgid "My Projects"
msgstr "Моите Проекти"
-#: www/my/index.php:378
+#: www/my/index.php:374
#, fuzzy
msgid "My Roles"
msgstr "Роля"
+#: www/my/index.php:390
+#, fuzzy
+msgid "You're not a member of any active projects."
+msgstr "Вие не сте член на никой активен проект"
+
#: www/my/rmproject.php:63
msgid "Operation Not Permitted"
msgstr ""
msgid "These items were approved this past week (total: %1$s)"
msgstr ""
-#: www/news/index.php:37
+#: www/news/index.php:39
msgid ""
"<p>Choose a News item and you can browse, search, and post messages.</p>"
msgstr ""
"<p>Изберете новина, след което ще можете да разглежате, търсите и създавате "
"коментари.<p>"
-#: www/news/index.php:71
+#: www/news/index.php:73
#, fuzzy, php-format
msgid "No News Found For %s"
msgstr "Няма намерени новини"
-#: www/news/index.php:73
+#: www/news/index.php:75
msgid "No News Found"
msgstr "Няма намерени новини"
-#: www/news/index.php:76
+#: www/news/index.php:78
msgid "No items were found"
msgstr "Няма намерени бележки"
-#: www/news/news_utils.php:118 www/news/news_utils.php:252
+#: www/news/news_utils.php:118 www/news/news_utils.php:249
msgid "No News Items Found"
msgstr "Няма намерени новини"
msgid "Read More/Comment"
msgstr ""
-#: www/news/news_utils.php:216
+#: www/news/news_utils.php:213
msgid "News archive"
msgstr "Архив на новини"
-#: www/news/news_utils.php:228
+#: www/news/news_utils.php:225
msgid "Submit News"
msgstr "Изпращане на новини"
-#: www/news/news_utils.php:286
+#: www/news/news_utils.php:283
#, fuzzy
msgid "Not Found"
msgstr "Няма намерени обяви"
#: www/people/people_utils.php:345 www/people/people_utils.php:401
#: www/pm/add_task.php:35 www/pm/browse_task.php:122
#: www/pm/browse_task.php:176 www/pm/browse_task.php:346
-#: www/pm/detail_task.php:30 www/pm/ganttpage.php:168 www/pm/mod_task.php:42
+#: www/pm/detail_task.php:30 www/pm/ganttpage.php:144 www/pm/mod_task.php:42
#: www/pm/mod_task.php:209 www/reporting/timeadd.php:165
#: www/snippet/package.php:146 www/snippet/submit.php:116
msgid "Category"
#: www/people/editprofile.php:273 www/people/skills_utils.php:36
#: www/people/skills_utils.php:143 www/pm/add_task.php:79
#: www/pm/browse_task.php:88 www/pm/browse_task.php:170
-#: www/pm/detail_task.php:49 www/pm/ganttpage.php:80 www/pm/mod_task.php:86
+#: www/pm/detail_task.php:49 www/pm/ganttpage.php:55 www/pm/mod_task.php:86
#: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:37
-#: www/tracker/detail.php:118 www/tracker/mod.php:213
+#: www/tracker/detail.php:118 www/tracker/mod.php:212
msgid "Start Date"
msgstr ""
#: www/people/editprofile.php:274 www/people/skills_utils.php:37
#: www/people/skills_utils.php:144 www/pm/add_task.php:94
#: www/pm/browse_task.php:89 www/pm/browse_task.php:172
-#: www/pm/detail_task.php:53 www/pm/ganttpage.php:81 www/pm/mod_task.php:100
+#: www/pm/detail_task.php:53 www/pm/ganttpage.php:56 www/pm/mod_task.php:100
#: www/reporting/usersummary.php:109
#: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:38
-#: www/tracker/detail.php:119 www/tracker/mod.php:214
+#: www/tracker/detail.php:119 www/tracker/mod.php:213
msgid "End Date"
msgstr ""
#: www/people/viewjob.php:80 www/pm/include/ProjectTaskHTML.class.php:94
#: www/project/report/index.php:137
-#: www/tracker/admin/form-customizelist.php:25 www/tracker/browse.php:161
-#: www/tracker/browse.php:366 www/tracker/query.php:179
+#: www/tracker/admin/form-customizelist.php:25 www/tracker/browse.php:163
+#: www/tracker/browse.php:368 www/tracker/query.php:179
msgid "Open Date"
msgstr ""
msgstr ""
#: www/pm/add_task.php:48 www/pm/browse_task.php:90 www/pm/browse_task.php:174
-#: www/pm/detail_task.php:37 www/pm/ganttpage.php:82 www/pm/mod_task.php:54
+#: www/pm/detail_task.php:37 www/pm/ganttpage.php:57 www/pm/mod_task.php:54
msgid "Percent Complete"
msgstr ""
#: www/pm/add_task.php:59 www/pm/browse_task.php:87 www/pm/browse_task.php:168
-#: www/pm/detail_task.php:60 www/pm/ganttpage.php:79
+#: www/pm/detail_task.php:60 www/pm/ganttpage.php:54
#: www/pm/include/ProjectTaskHTML.class.php:56
#: www/pm/include/ProjectTaskHTML.class.php:92 www/pm/mod_task.php:66
-#: www/tracker/detail.php:117 www/tracker/mod.php:212
+#: www/tracker/detail.php:117 www/tracker/mod.php:211
msgid "Task Summary"
msgstr ""
msgstr ""
#: www/pm/browse_task.php:67 www/pm/browse_task.php:78
-#: www/pm/browse_task.php:121 www/pm/ganttpage.php:46 www/pm/ganttpage.php:63
-#: www/reporting/usersummary.php:54 www/tracker/browse.php:146
-#: www/tracker/browse.php:225 www/tracker/browse.php:230
+#: www/pm/browse_task.php:121 www/pm/ganttpage.php:43 www/pm/ganttpage.php:45
+#: www/pm/ganttpage.php:47 www/reporting/usersummary.php:54
+#: www/tracker/browse.php:148 www/tracker/browse.php:227
+#: www/tracker/browse.php:232 www/tracker/query.php:324
msgid "Any"
msgstr ""
#: www/pm/browse_task.php:69 www/pm/browse_task.php:314
-#: www/pm/ganttpage.php:51 www/tracker/browse.php:151
+#: www/pm/ganttpage.php:43 www/tracker/browse.php:153
msgid "Unassigned"
msgstr ""
#: www/pm/browse_task.php:86 www/pm/browse_task.php:166
-#: www/pm/ganttpage.php:78 www/pm/include/ProjectTaskHTML.class.php:55
-#: www/tracker/detail.php:116 www/tracker/mod.php:211
+#: www/pm/ganttpage.php:53 www/pm/include/ProjectTaskHTML.class.php:55
+#: www/tracker/detail.php:116 www/tracker/mod.php:210
msgid "Task Id"
msgstr ""
msgid "Detailed"
msgstr ""
-#: www/pm/browse_task.php:120 www/pm/ganttpage.php:166
-#: www/tracker/browse.php:164 www/tracker/browse.php:305
+#: www/pm/browse_task.php:120 www/pm/ganttpage.php:142
+#: www/tracker/browse.php:166 www/tracker/browse.php:307
#: www/tracker/query.php:182 www/tracker/query.php:321
msgid "Assignee"
msgstr ""
-#: www/pm/browse_task.php:123 www/pm/ganttpage.php:169
+#: www/pm/browse_task.php:123 www/pm/ganttpage.php:145
msgid "Sort On"
msgstr ""
msgid "Detail View"
msgstr ""
-#: www/pm/browse_task.php:125 www/pm/ganttpage.php:172
+#: www/pm/browse_task.php:125 www/pm/ganttpage.php:148
#: www/snippet/snippet_utils.php:109
#: www/tracker/include/ArtifactTypeHtml.class.php:48
msgid "Browse"
msgid "next 50"
msgstr ""
-#: www/pm/browse_task.php:337 www/tracker/browse.php:517
+#: www/pm/browse_task.php:337 www/tracker/browse.php:514
msgid "Check all"
msgstr ""
-#: www/pm/browse_task.php:339 www/tracker/browse.php:519
+#: www/pm/browse_task.php:339 www/tracker/browse.php:516
msgid "Clear all"
msgstr ""
-#: www/pm/browse_task.php:342 www/tracker/browse.php:522
+#: www/pm/browse_task.php:342 www/tracker/browse.php:519
msgid ""
"<strong>Admin:</strong> If you wish to apply changes to all items selected "
"above, use these controls to change their properties and click once on "
msgid "Subproject"
msgstr ""
-#: www/pm/browse_task.php:365 www/tracker/browse.php:565
+#: www/pm/browse_task.php:365 www/tracker/browse.php:562
msgid "Mass update"
msgstr ""
msgid "Hours"
msgstr ""
-#: www/pm/ganttpage.php:32 www/pm/ganttpage.php:184
+#: www/pm/ganttpage.php:30 www/pm/ganttpage.php:160
#: www/pm/include/ProjectGroupHTML.class.php:58
msgid "Gantt Chart"
msgstr ""
-#: www/pm/ganttpage.php:93 www/pm/ganttpage.php:97
+#: www/pm/ganttpage.php:74
+msgid "Years"
+msgstr ""
+
+#: www/pm/ganttpage.php:75 www/pm/ganttpage.php:79
msgid "Months"
msgstr ""
-#: www/pm/ganttpage.php:94
+#: www/pm/ganttpage.php:76
msgid "Weeks"
msgstr ""
-#: www/pm/ganttpage.php:95 www/project/stats/project_stats_utils.php:203
+#: www/pm/ganttpage.php:77 www/project/stats/project_stats_utils.php:203
msgid "Days"
msgstr ""
msgstr ""
#: www/pm/include/ProjectTaskHTML.class.php:124 www/tracker/detail.php:82
-#: www/tracker/mod-limited.php:127 www/tracker/mod.php:182
+#: www/tracker/mod-limited.php:127 www/tracker/mod.php:181
#: www/tracker/query.php:349
msgid "Followups"
msgstr ""
msgid "Time tracking"
msgstr ""
-#: www/pm/mod_task.php:206 www/reporting/sitetimebar.php:84
+#: www/pm/mod_task.php:206 www/reporting/sitetimebar.php:89
msgid "Week"
msgstr ""
msgid "Day"
msgstr ""
-#: www/pm/mod_task.php:210 www/reporting/useract.php:70
+#: www/pm/mod_task.php:210 www/reporting/useract.php:74
#: www/reporting/usertime.php:84
msgid "User"
msgstr ""
"description)"
msgstr "Кратко описание (максимум 255 символа чист текст)"
-#: www/project/admin/editgroupinfo.php:143 www/project/admin/index.php:164
+#: www/project/admin/editgroupinfo.php:143 www/project/admin/index.php:166
msgid "Homepage Link"
msgstr "Сайт на проекта"
-#: www/project/admin/editgroupinfo.php:150 www/project/admin/index.php:171
+#: www/project/admin/editgroupinfo.php:150 www/project/admin/index.php:173
msgid "Visibility: "
msgstr ""
msgid "Use Statistics"
msgstr "Модул \"Статистики\""
-#: www/project/admin/editgroupinfo.php:341 www/project/admin/index.php:255
+#: www/project/admin/editgroupinfo.php:341 www/project/admin/index.php:257
msgid ""
"If you wish, you can provide default email addresses to which new "
"submissions will be sent"
msgstr ""
-#: www/project/admin/editgroupinfo.php:342 www/project/admin/index.php:256
+#: www/project/admin/editgroupinfo.php:342 www/project/admin/index.php:258
msgid "New Document Submissions"
msgstr ""
-#: www/project/admin/editgroupinfo.php:344 www/project/admin/index.php:258
+#: www/project/admin/editgroupinfo.php:344 www/project/admin/index.php:260
msgid "(send on all updates)"
msgstr ""
msgid "Descriptive Project Name"
msgstr "Име на проекта"
-#: www/project/admin/index.php:157
+#: www/project/admin/index.php:158
msgid "Tags (use comma as separator)"
msgstr ""
-#: www/project/admin/index.php:161
+#: www/project/admin/index.php:163
msgid "Trove Categorization: "
msgstr ""
#: www/project/admin/massadd.php:69 www/project/admin/massfinish.php:67
-#: www/project/admin/roleedit.php:96 www/project/admin/roleedit.php:110
+#: www/project/admin/roleedit.php:98 www/project/admin/roleedit.php:110
#: www/project/admin/users.php:246
msgid "Edit Role"
msgstr "Редактиране"
"remove documentation from the project.</dd></dl>"
msgstr ""
-#: www/project/admin/roleedit.php:58 www/project/admin/roleedit.php:85
+#: www/project/admin/roleedit.php:60 www/project/admin/roleedit.php:87
#, fuzzy
msgid "Successfully Updated Role"
msgstr "Паролата сменена успешно"
-#: www/project/admin/roleedit.php:79
+#: www/project/admin/roleedit.php:81
#, fuzzy
msgid "Successfully Created New Role"
msgstr "Паролата сменена успешно"
msgstr[0] ""
msgstr[1] ""
-#: www/project/stats/index.php:42 www/project/stats/index.php:54
-#: www/reporting/projectact.php:50 www/reporting/projectact.php:53
+#: www/project/stats/index.php:45 www/project/stats/index.php:57
+#: www/reporting/projectact.php:54 www/reporting/projectact.php:57
msgid "Project Activity"
msgstr ""
-#: www/project/stats/index.php:59 www/reporting/projectact.php:59
-#: www/reporting/siteact.php:58 www/reporting/useract.php:71
+#: www/project/stats/index.php:62 www/reporting/projectact.php:63
+#: www/reporting/siteact.php:62 www/reporting/useract.php:75
msgid "Areas"
msgstr ""
"new projects."
msgstr ""
-#: www/register/projectinfo.php:103
+#: www/register/projectinfo.php:104
msgid "Registration complete"
msgstr ""
-#: www/register/projectinfo.php:107
+#: www/register/projectinfo.php:108
#, php-format
msgid ""
"Your project has been submitted to the %1$s administrators. Within 72 hours, "
">Thank you for choosing %1$s"
msgstr ""
-#: www/register/projectinfo.php:127
+#: www/register/projectinfo.php:128
msgid "Project Information"
msgstr ""
-#: www/register/projectinfo.php:130
+#: www/register/projectinfo.php:131
msgid ""
"To apply for project registration, you should fill in basic information "
"about it. Please read descriptions below carefully and provide complete and "
"<h4>Регистриране на проект</h4>За да регистрирате проект е нужно да "
"предоставите следната информация за него (всички полета са задължителни):"
-#: www/register/projectinfo.php:135
+#: www/register/projectinfo.php:136
msgid ""
"<h3>1. Project full name</h3>You should start with specifying the name of "
"your project. The \"Full Name\" is descriptive, and has no arbitrary "
"restrictions (except a 40 character limit).<p/>Full Name:<br/>"
msgstr ""
-#: www/register/projectinfo.php:139
+#: www/register/projectinfo.php:140
#, php-format
msgid ""
"<h3>2. Project Purpose And Summarization</h3><strong> Please provide "
"предоставено на администраторите на %1$s и няма да е достъпно за други "
"потребители."
-#: www/register/projectinfo.php:145
+#: www/register/projectinfo.php:146
#, fuzzy
msgid ""
"<h3>3. Project Public Description</h3><p>This is the description of your "
"проект, което ще се визуализира на страницата \"Резюме\", в резултатите от "
"търсене и т.н. Максималната допустима дължина е 255 символа."
-#: www/register/projectinfo.php:152
+#: www/register/projectinfo.php:153
#, php-format
msgid ""
"<h3>4. Project Unix Name</h3>In addition to full project name, you will need "
"li><li>Search engines throughout the site</li></ul><p/>Unix Name:<br/>"
msgstr ""
-#: www/register/projectinfo.php:160
+#: www/register/projectinfo.php:161
msgid ""
"<h3>5. SCM</h3><p>You can choose among different SCM for your project, but "
"just one (or none at all). Please select the SCM system you want to use.</p>"
msgstr ""
-#: www/register/projectinfo.php:162
+#: www/register/projectinfo.php:163
msgid "No SCM"
msgstr ""
-#: www/reporting/groupadded.php:48 www/reporting/groupadded.php:51
+#: www/reporting/groupadded.php:52 www/reporting/groupadded.php:55
msgid "Projects Added"
msgstr ""
-#: www/reporting/groupcum.php:48 www/reporting/groupcum.php:51
+#: www/reporting/groupcum.php:52 www/reporting/groupcum.php:55
msgid "Cumulative Projects"
msgstr ""
msgid "Tracker Items Closed"
msgstr ""
-#: www/reporting/projecttime.php:51 www/reporting/projecttime.php:64
+#: www/reporting/projecttime.php:56 www/reporting/projecttime.php:69
msgid "Time Tracking By Project"
msgstr ""
-#: www/reporting/projecttime.php:53 www/reporting/sitetime.php:51
+#: www/reporting/projecttime.php:58 www/reporting/sitetime.php:56
#: www/reporting/usertime.php:69
msgid "By Task"
msgstr ""
-#: www/reporting/projecttime.php:55 www/reporting/sitetime.php:53
+#: www/reporting/projecttime.php:60 www/reporting/sitetime.php:58
#: www/reporting/usertime.php:71
msgid "By Subproject"
msgstr ""
-#: www/reporting/projecttime.php:56 www/reporting/sitetime.php:54
+#: www/reporting/projecttime.php:61 www/reporting/sitetime.php:59
msgid "By User"
msgstr ""
msgid "Press ONLY ONCE"
msgstr ""
-#: www/reporting/siteact.php:51 www/reporting/siteact.php:54
+#: www/reporting/siteact.php:55 www/reporting/siteact.php:58
msgid "Site-Wide Activity"
msgstr ""
-#: www/reporting/sitetime.php:49 www/reporting/sitetime.php:62
-#: www/reporting/sitetimebar.php:48 www/reporting/sitetimebar.php:51
+#: www/reporting/sitetime.php:54 www/reporting/sitetime.php:67
+#: www/reporting/sitetimebar.php:53 www/reporting/sitetimebar.php:56
msgid "Site-Wide Time Tracking"
msgstr ""
"\"Testing\"."
msgstr ""
-#: www/reporting/toolspie.php:48 www/reporting/toolspie.php:55
+#: www/reporting/toolspie.php:53 www/reporting/toolspie.php:60
msgid "Tool Pie Graphs"
msgstr ""
-#: www/reporting/useract.php:51 www/reporting/useract.php:65
+#: www/reporting/useract.php:55 www/reporting/useract.php:69
msgid "User Activity"
msgstr ""
-#: www/reporting/useract.php:54
+#: www/reporting/useract.php:58
msgid ""
"Choose the <strong>First Letter</strong> of the name of the person you wish "
"to report on.<p>"
msgstr ""
-#: www/reporting/useradded.php:48 www/reporting/useradded.php:51
+#: www/reporting/useradded.php:52 www/reporting/useradded.php:55
msgid "Users Added"
msgstr ""
-#: www/reporting/usercum.php:48 www/reporting/usercum.php:51
+#: www/reporting/usercum.php:52 www/reporting/usercum.php:55
msgid "Cumulative Users"
msgstr ""
msgid "Error - This project has turned off SCM."
msgstr ""
-#: www/scm/include/viewvc_utils.php:81
+#: www/scm/include/viewvc_utils.php:83
msgid ""
"The repository for this project isn't created yet. It will be created in the "
"next few minutes."
msgid "Paste the Code Here"
msgstr "Програмен код"
-#: www/soap/index.php:162
+#: www/soap/index.php:163
msgid "en_US"
msgstr ""
#: www/survey/admin/index.php:46
#, php-format
msgid ""
-"You can now activate/deactivate surveys on the %1$s Edit Existing Surveys %2"
-"$s page"
+"You can now activate/deactivate surveys on the %1$s Edit Existing Surveys "
+"%2$s page"
msgstr ""
#: www/survey/admin/question.php:59
#: www/terms.php:41
#, php-format
msgid ""
-"These are the terms and conditions under which you are allowed to use the %1"
-"$s service. They are empty by default, but the administrator(s) of the "
+"These are the terms and conditions under which you are allowed to use the "
+"%1$s service. They are empty by default, but the administrator(s) of the "
"service can use this page to publish their local requirements if needed."
msgstr ""
-#: www/themes/gforge-simple-theme/Theme.class.php:359
+#: www/themes/gforge-simple-theme/Theme.class.php:358
msgid "Project Tree"
msgstr "Каталог"
#: www/tracker/add.php:81 www/tracker/admin/form-customizelist.php:31
#: www/tracker/include/ArtifactHtml.class.php:43
-#: www/tracker/include/ArtifactHtml.class.php:52 www/tracker/mod.php:169
+#: www/tracker/include/ArtifactHtml.class.php:52 www/tracker/mod.php:168
#: www/tracker/query.php:347
msgid "Detailed description"
msgstr ""
msgstr ""
#: www/tracker/add.php:107 www/tracker/detail.php:149
-#: www/tracker/mod-limited.php:143 www/tracker/mod.php:243
+#: www/tracker/mod-limited.php:143 www/tracker/mod.php:242
msgid "Attach Files"
msgstr ""
msgid "Submitted By"
msgstr "Изпращане на новини"
-#: www/tracker/admin/form-customizelist.php:30 www/tracker/browse.php:162
-#: www/tracker/browse.php:368 www/tracker/query.php:180
+#: www/tracker/admin/form-customizelist.php:30 www/tracker/browse.php:164
+#: www/tracker/browse.php:370 www/tracker/query.php:180
msgid "Close Date"
msgstr ""
msgid "Element deleted"
msgstr "Няма намерени."
-#: www/tracker/browse.php:163 www/tracker/query.php:181
+#: www/tracker/browse.php:165 www/tracker/query.php:181
msgid "Submitter"
msgstr ""
-#: www/tracker/browse.php:180 www/tracker/query.php:198
+#: www/tracker/browse.php:182 www/tracker/query.php:198
msgid "Ascending"
msgstr ""
-#: www/tracker/browse.php:181 www/tracker/query.php:199
+#: www/tracker/browse.php:183 www/tracker/query.php:199
msgid "Descending"
msgstr ""
-#: www/tracker/browse.php:191 www/tracker/query.php:210
+#: www/tracker/browse.php:193 www/tracker/query.php:210
msgid "Any changes"
msgstr ""
-#: www/tracker/browse.php:192 www/tracker/query.php:211
+#: www/tracker/browse.php:194 www/tracker/query.php:211
msgid "Last 24H"
msgstr ""
-#: www/tracker/browse.php:193 www/tracker/query.php:212
+#: www/tracker/browse.php:195 www/tracker/query.php:212
msgid "Last 7days"
msgstr ""
-#: www/tracker/browse.php:194 www/tracker/query.php:213
+#: www/tracker/browse.php:196 www/tracker/query.php:213
msgid "Last 2weeks"
msgstr ""
-#: www/tracker/browse.php:195 www/tracker/query.php:214
+#: www/tracker/browse.php:197 www/tracker/query.php:214
msgid "Last 1month"
msgstr ""
-#: www/tracker/browse.php:235
+#: www/tracker/browse.php:237
msgid "Advanced queries"
msgstr ""
-#: www/tracker/browse.php:287
+#: www/tracker/browse.php:289
msgid "Power Query"
msgstr ""
-#: www/tracker/browse.php:289 www/tracker/browse.php:294
+#: www/tracker/browse.php:291 www/tracker/browse.php:296
#: www/tracker/query.php:237
msgid "Build Query"
msgstr ""
-#: www/tracker/browse.php:298
+#: www/tracker/browse.php:300
msgid "Simple Filtering and Sorting"
msgstr ""
-#: www/tracker/browse.php:312 www/tracker/query.php:354
+#: www/tracker/browse.php:314 www/tracker/query.php:354
msgid "Order by"
msgstr ""
-#: www/tracker/browse.php:317
+#: www/tracker/browse.php:319
msgid "Quick Browse"
msgstr ""
-#: www/tracker/browse.php:326
+#: www/tracker/browse.php:328
msgid "Default"
msgstr ""
-#: www/tracker/browse.php:327
+#: www/tracker/browse.php:329
msgid ""
"Viewing only opened records by default, use 'Advanced queries' or 'Simple "
"Filtering and Sorting' to change."
msgstr ""
-#: www/tracker/browse.php:552
-#: www/tracker/include/ArtifactTypeHtml.class.php:547
+#: www/tracker/browse.php:549
+#: www/tracker/include/ArtifactTypeHtml.class.php:552
msgid "Nobody"
msgstr ""
-#: www/tracker/browse.php:561
+#: www/tracker/browse.php:558
msgid "Canned Response"
msgstr ""
-#: www/tracker/browse.php:570
+#: www/tracker/browse.php:567
#, php-format
msgid "* Denotes requests > %1$s Days Old"
msgstr ""
-#: www/tracker/browse.php:579
+#: www/tracker/browse.php:576
msgid "No items found"
msgstr ""
msgstr ""
#: www/tracker/detail.php:98 www/tracker/mod-limited.php:133
-#: www/tracker/mod.php:193
+#: www/tracker/mod.php:192
msgid "Followup"
msgstr ""
#: www/tracker/detail.php:108 www/tracker/detail.php:111
-#: www/tracker/mod.php:203 www/tracker/mod.php:204
+#: www/tracker/mod.php:202 www/tracker/mod.php:203
msgid "Related Tasks"
msgstr ""
-#: www/tracker/detail.php:138 www/tracker/mod.php:233
+#: www/tracker/detail.php:138 www/tracker/mod.php:232
msgid "No Related Tasks"
msgstr ""
msgstr ""
#: www/tracker/detail.php:181 www/tracker/mod-limited.php:178
-#: www/tracker/mod.php:274
+#: www/tracker/mod.php:273
msgid "No Files Currently Attached"
msgstr ""
#: www/tracker/detail.php:195 www/tracker/detail.php:199
#: www/tracker/include/ArtifactHtml.class.php:176
-#: www/tracker/mod-limited.php:193 www/tracker/mod.php:290
+#: www/tracker/mod-limited.php:193 www/tracker/mod.php:289
msgid "Changes"
msgstr ""
msgid "Stop Monitor"
msgstr ""
-#: www/tracker/include/ArtifactTypeHtml.class.php:221
-#: www/tracker/include/ArtifactTypeHtml.class.php:228
+#: www/tracker/include/ArtifactTypeHtml.class.php:226
+#: www/tracker/include/ArtifactTypeHtml.class.php:233
#: www/tracker/query.php:330
#, php-format
msgid "(% for wildcards)"
msgstr ""
-#: www/tracker/include/ArtifactTypeHtml.class.php:527
+#: www/tracker/include/ArtifactTypeHtml.class.php:532
msgid ""
"Tip: Enter a space-separated list of artifact ids ([#NNN] also accepted)"
msgstr ""
msgid "Date Closed"
msgstr ""
-#: www/tracker/mod-limited.php:130 www/tracker/mod.php:191
+#: www/tracker/mod-limited.php:130 www/tracker/mod.php:190
msgid "OR Attach A Comment"
msgstr ""
msgid "Data Type"
msgstr ""
-#: www/tracker/mod.php:185
+#: www/tracker/mod.php:184
msgid "Use Canned Response"
msgstr ""
-#: www/tracker/mod.php:240
+#: www/tracker/mod.php:239
msgid "Existing Files"
msgstr ""
msgid "Create New Task"
msgstr ""
-#: www/tracker/tracker.php:130
+#: www/tracker/tracker.php:131
msgid "Item Successfully Created"
msgstr ""
-#: www/tracker/tracker.php:221
+#: www/tracker/tracker.php:222
#, fuzzy
msgid "Updated Successfully"
msgstr "Обновено успешно"
-#: www/tracker/tracker.php:284 www/tracker/tracker.php:303
+#: www/tracker/tracker.php:286 www/tracker/tracker.php:305
msgid "Comment added"
msgstr ""
-#: www/tracker/tracker.php:337 www/tracker/tracker.php:356
+#: www/tracker/tracker.php:354
msgid "File Upload: Error"
msgstr ""
-#: www/tracker/tracker.php:340 www/tracker/tracker.php:359
+#: www/tracker/tracker.php:357
msgid "File Upload: Successful"
msgstr ""
-#: www/tracker/tracker.php:381
+#: www/tracker/tracker.php:378
msgid "File Delete:"
msgstr ""
-#: www/tracker/tracker.php:384
+#: www/tracker/tracker.php:381
msgid "File Delete: Successful"
msgstr ""
-#: www/tracker/tracker.php:421 www/tracker/tracker.php:438
+#: www/tracker/tracker.php:419 www/tracker/tracker.php:436
#, fuzzy
msgid "Monitoring Started"
msgstr "Наблюдавани Форуми"
-#: www/tracker/tracker.php:423 www/tracker/tracker.php:440
+#: www/tracker/tracker.php:421 www/tracker/tracker.php:438
#, fuzzy
msgid "Monitoring Deactivated"
msgstr "Наблюдавани Форуми"
-#: www/tracker/tracker.php:489
+#: www/tracker/tracker.php:487
msgid "Confirmation failed. Artifact not deleted"
msgstr ""
-#: www/tracker/tracker.php:493
+#: www/tracker/tracker.php:491
msgid "Artifact Delete Failed"
msgstr ""
-#: www/tracker/tracker.php:495
+#: www/tracker/tracker.php:493
msgid "Artifact Deleted Successfully"
msgstr ""
msgstr ""
"Project-Id-Version: Gforge 4.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-01 22:22+0100\n"
+"POT-Creation-Date: 2010-10-03 17:54+0200\n"
"PO-Revision-Date: 2009-02-01 14:38+0100\n"
"Last-Translator: \n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
-#: common/docman/Document.class.php:112 common/docman/Document.class.php:447
-#: common/pm/ProjectGroup.class.php:132 common/pm/ProjectGroup.class.php:346
+#: common/docman/Document.class.php:113 common/docman/Document.class.php:447
+#: common/pm/ProjectGroup.class.php:132 common/pm/ProjectGroup.class.php:364
msgid "Title Must Be At Least 5 Characters"
msgstr "El títol ha de tenir 5 caràcters com a mínim"
-#: common/docman/Document.class.php:116 common/docman/Document.class.php:451
-#: common/pm/ProjectGroup.class.php:136 common/pm/ProjectGroup.class.php:350
+#: common/docman/Document.class.php:117 common/docman/Document.class.php:451
+#: common/pm/ProjectGroup.class.php:136 common/pm/ProjectGroup.class.php:368
msgid "Document Description Must Be At Least 10 Characters"
msgstr "La descripció del document ha de ser de 10 caràcters com a mínim"
msgstr ""
#: common/forum/Forum.class.php:474 common/forum/Forum.class.php:511
-#: common/frs/FRSPackage.class.php:270 common/frs/FRSPackage.class.php:302
+#: common/frs/FRSPackage.class.php:273 common/frs/FRSPackage.class.php:305
#: common/tracker/ArtifactType.class.php:552
#, fuzzy
msgid "You can only monitor if you are logged in"
msgid "Forum:: No Valid Group Object"
msgstr "Forum:: Objecte de grup no vàid"
-#: common/forum/ForumFactory.class.php:58 common/include/rbac_texts.php:82
-#: common/include/rbac_texts.php:83 www/forum/index.php:60
+#: common/forum/ForumFactory.class.php:58 common/include/rbac_texts.php:84
+#: common/include/rbac_texts.php:85 www/forum/index.php:60
#: www/forum/myforums.php:73
msgid "Forum"
msgstr "Fòrum"
msgid "File cannot be moved to the permanent location"
msgstr "El fitxer no es pot moure a l'ubicació permanent"
-#: common/frs/FRSPackage.class.php:136 common/frs/FRSPackage.class.php:366
+#: common/frs/FRSPackage.class.php:136 common/frs/FRSPackage.class.php:369
#: common/frs/FRSRelease.class.php:122 common/frs/FRSRelease.class.php:388
msgid "FRSPackage Name Must Be At Least 3 Characters"
msgstr "El nom de FRSPackage ha de tenir 3 caràcters com a mínim"
msgid "Error Getting Role Object"
msgstr "Error al crear un objecte de grup"
-#: common/include/Group.class.php:1755
+#: common/include/Group.class.php:1753
#, fuzzy
msgid "ERROR: User does not exist"
msgstr "Aquesta categoria no existeix"
-#: common/include/Group.class.php:1802
+#: common/include/Group.class.php:1800
#, php-format
msgid "ERROR: User not removed: %s"
msgstr ""
-#: common/include/Group.class.php:1817
+#: common/include/Group.class.php:1815
#, php-format
msgid "ERROR: DB: artifact: %s"
msgstr ""
-#: common/include/Group.class.php:1852 common/include/Group.class.php:1865
+#: common/include/Group.class.php:1850 common/include/Group.class.php:1863
#, php-format
msgid "ERROR: DB: project_assigned_to %d: %s"
msgstr ""
-#: common/include/Group.class.php:1911 www/project/admin/roleedit.php:64
+#: common/include/Group.class.php:1909 www/project/admin/roleedit.php:66
#, fuzzy
msgid "Could Not Get Role"
msgstr "No s'ha pogut completar l'operació"
-#: common/include/Group.class.php:1914 common/include/Group.class.php:1919
+#: common/include/Group.class.php:1912 common/include/Group.class.php:1917
#, fuzzy, php-format
msgid "Role: %s"
msgstr "Rol"
-#: common/include/Group.class.php:1973
+#: common/include/Group.class.php:1971
#, fuzzy
msgid "Error getting member object"
msgstr "Error al crear un objecte de grup"
-#: common/include/Group.class.php:1976
+#: common/include/Group.class.php:1974
#, fuzzy, php-format
msgid "Error getting member object: %s"
msgstr "Error al crear un objecte de grup"
-#: common/include/Group.class.php:2015
+#: common/include/Group.class.php:2013
#, fuzzy
msgid "Group already active"
msgstr "El compte ja està actiu."
-#: common/include/Group.class.php:2038
+#: common/include/Group.class.php:2036
#, fuzzy
msgid "Error creating ArtifactTypes object"
msgstr "Error al crear un objecte de grup"
-#: common/include/Group.class.php:2043 common/include/Group.class.php:2049
+#: common/include/Group.class.php:2041 common/include/Group.class.php:2047
#, php-format
msgid "ATS%d: %s"
msgstr ""
-#: common/include/Group.class.php:2061
+#: common/include/Group.class.php:2059
#, fuzzy
msgid "Open-Discussion"
msgstr "Fòrum de discussió:"
-#: common/include/Group.class.php:2061
+#: common/include/Group.class.php:2059
msgid "General Discussion"
msgstr ""
-#: common/include/Group.class.php:2062 common/include/Group.class.php:2069
-#: common/include/Group.class.php:2076
+#: common/include/Group.class.php:2060 common/include/Group.class.php:2067
+#: common/include/Group.class.php:2074
#, php-format
msgid "F%d: %s"
msgstr ""
-#: common/include/Group.class.php:2068
+#: common/include/Group.class.php:2066
msgid "Help"
msgstr ""
-#: common/include/Group.class.php:2068
+#: common/include/Group.class.php:2066
msgid "Get Public Help"
msgstr ""
-#: common/include/Group.class.php:2075
+#: common/include/Group.class.php:2073
#, fuzzy
msgid "Developers-Discussion"
msgstr "Desenvolupadors"
-#: common/include/Group.class.php:2075
+#: common/include/Group.class.php:2073
#, fuzzy
msgid "Project Developer Discussion"
msgstr "Tots els desenvolupadors de projecte"
-#: common/include/Group.class.php:2088
+#: common/include/Group.class.php:2086
#, fuzzy
msgid "Uncategorized Submissions"
msgstr "Nous enviaments de documents"
-#: common/include/Group.class.php:2089
+#: common/include/Group.class.php:2087
#, php-format
msgid "DG: %s"
msgstr ""
-#: common/include/Group.class.php:2102
+#: common/include/Group.class.php:2100
#, php-format
msgid "FRSP: %s"
msgstr ""
-#: common/include/Group.class.php:2114
+#: common/include/Group.class.php:2112
msgid "To Do"
msgstr ""
-#: common/include/Group.class.php:2114
+#: common/include/Group.class.php:2112
msgid "Things We Have To Do"
msgstr ""
-#: common/include/Group.class.php:2115 common/include/Group.class.php:2122
+#: common/include/Group.class.php:2113 common/include/Group.class.php:2120
#, php-format
msgid "PG%d: %s"
msgstr ""
-#: common/include/Group.class.php:2121
+#: common/include/Group.class.php:2119
#, fuzzy
msgid "Next Release"
msgstr "Noves publicacions"
-#: common/include/Group.class.php:2121
+#: common/include/Group.class.php:2119
#, fuzzy
msgid "Items For Our Next Release"
msgstr "Últimes publicacions de fitxers"
-#: common/include/Group.class.php:2148
+#: common/include/Group.class.php:2150
#, php-format
msgid "R%d: %s"
msgstr ""
-#: common/include/Group.class.php:2167
+#: common/include/Group.class.php:2169
#: plugins/scmcvs/common/CVSPlugin.class.php:149
#: plugins/scmdarcs/common/DarcsPlugin.class.php:129
#: plugins/scmsvn/common/SVNPlugin.class.php:149 www/activity/index.php:94
#: www/stats/site_stats_utils.php:284 www/tracker/detail.php:187
-#: www/tracker/mod-limited.php:185 www/tracker/mod.php:282
+#: www/tracker/mod-limited.php:185 www/tracker/mod.php:281
msgid "Commits"
msgstr ""
-#: common/include/Group.class.php:2168
+#: common/include/Group.class.php:2170
#, php-format
msgid "ML: %s"
msgstr ""
-#: common/include/Group.class.php:2213 common/include/Group.class.php:2286
+#: common/include/Group.class.php:2215 common/include/Group.class.php:2288
msgid "Group does not have any administrators."
msgstr ""
-#: common/include/Group.class.php:2222
+#: common/include/Group.class.php:2224
#, fuzzy, php-format
msgid ""
"Your project registration for %4$s has been approved.\n"
"\n"
"-- la tripulació %7$s"
-#: common/include/Group.class.php:2258
+#: common/include/Group.class.php:2260
#, php-format
msgid "%1$s Project Approved"
msgstr "Projecte %1$s aprovat"
-#: common/include/Group.class.php:2294
+#: common/include/Group.class.php:2296
#, php-format
msgid ""
"Your project registration for %3$s has been denied.\n"
"Raons de la decisió negativa:\n"
"\n"
-#: common/include/Group.class.php:2313
+#: common/include/Group.class.php:2315
#, php-format
msgid "%1$s Project Denied"
msgstr "Projecte %1$s denegat"
-#: common/include/Group.class.php:2336
+#: common/include/Group.class.php:2338
msgid "Could not find user who has submitted the project."
msgstr ""
-#: common/include/Group.class.php:2351
+#: common/include/Group.class.php:2353
msgid "There is no administrator to send the mail."
msgstr ""
-#: common/include/Group.class.php:2360
+#: common/include/Group.class.php:2362
#, fuzzy, php-format
msgid ""
"New %1$s Project Submitted\n"
"Si us plau visiteu la següent URL per a aprovar o rebutjar aquest projecte:\n"
"%5$s"
-#: common/include/Group.class.php:2374 common/include/Group.class.php:2389
+#: common/include/Group.class.php:2376 common/include/Group.class.php:2391
#, php-format
msgid "New %1$s Project Submitted"
msgstr "Tramès nou projecte %1$s"
-#: common/include/Group.class.php:2382
+#: common/include/Group.class.php:2384
#, fuzzy, php-format
msgid ""
"New %1$s Project Submitted\n"
"L'equip d'admistració %1$s examinarà ara el vostre enviament de projecte. "
"Se us notificarà la seva decisió."
-#: common/include/Group.class.php:2407
+#: common/include/Group.class.php:2409
#, fuzzy
msgid "Group name is too short"
msgstr "La pregunta és massa curta"
-#: common/include/Group.class.php:2410
+#: common/include/Group.class.php:2412
#, fuzzy
msgid "Group name is too long"
msgstr "Nom de Grup (feu clic per a editar)"
-#: common/include/Group.class.php:2413
+#: common/include/Group.class.php:2415
#, fuzzy
msgid "Group name already taken"
msgstr "El nom Unix ja està agafat"
-#: common/include/Group.class.php:2471
+#: common/include/Group.class.php:2473
#, php-format
msgid "ERROR - Could Not Update Group Unix Status: %s"
msgstr ""
-#: common/include/Group.class.php:2550
+#: common/include/Group.class.php:2552
#: www/forum/include/ForumHTML.class.php:69 www/my/dashboard.php:79
#: www/my/diary.php:182 www/my/index.php:55 www/my/index.php:97
#: www/my/index.php:148 www/pm/browse_task.php:106
#: 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/gforge-simple-theme/Theme.class.php:481 www/tracker/add.php:74
-#: www/tracker/admin/form-customizelist.php:24 www/tracker/browse.php:160
-#: www/tracker/browse.php:362 www/tracker/detail.php:72
-#: www/tracker/mod-limited.php:115 www/tracker/mod.php:159
+#: www/themes/gforge-simple-theme/Theme.class.php:480 www/tracker/add.php:74
+#: www/tracker/admin/form-customizelist.php:24 www/tracker/browse.php:162
+#: www/tracker/browse.php:364 www/tracker/detail.php:72
+#: www/tracker/mod-limited.php:115 www/tracker/mod.php:158
#: www/tracker/query.php:178 www/tracker/query.php:345
msgid "Summary"
msgstr "Resum"
-#: common/include/Group.class.php:2568 common/include/rbac_texts.php:55
-#: common/include/rbac_texts.php:67 common/include/rbac_texts.php:69
-#: common/include/rbac_texts.php:71 common/include/rbac_texts.php:73
-#: common/include/rbac_texts.php:75 www/docman/include/doc_utils.php:82
+#: common/include/Group.class.php:2570 common/include/rbac_texts.php:57
+#: common/include/rbac_texts.php:69 common/include/rbac_texts.php:71
+#: common/include/rbac_texts.php:73 common/include/rbac_texts.php:75
+#: common/include/rbac_texts.php:77 www/docman/include/doc_utils.php:82
#: www/forum/include/ForumHTML.class.php:116
#: www/forum/include/ForumHTML.class.php:123 www/frs/include/frs_utils.php:91
-#: www/include/Layout.class.php:457 www/include/Layout.class.php:561
+#: www/include/Layout.class.php:449 www/include/Layout.class.php:553
#: www/mail/mail_utils.php:34 www/news/news_utils.php:59
#: www/pm/include/ProjectGroupHTML.class.php:77 www/pm/index.php:53
#: 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/gforge-simple-theme/Theme.class.php:390
-#: www/themes/gforge-simple-theme/Theme.class.php:488
+#: www/themes/gforge-simple-theme/Theme.class.php:389
+#: www/themes/gforge-simple-theme/Theme.class.php:487
#: www/themes/lite/Theme.class.php:288 www/tracker/add.php:65
#: www/tracker/admin/ind.php:78
#: www/tracker/include/ArtifactTypeHtml.class.php:69 www/tracker/ind.php:27
-#: www/tracker/mod.php:131 www/tracker/mod.php:188
+#: www/tracker/mod.php:130 www/tracker/mod.php:187
msgid "Admin"
msgstr "Administració"
-#: common/include/Group.class.php:2583 www/activity/index.php:70
+#: common/include/Group.class.php:2585 www/activity/index.php:70
#: www/activity/index.php:148 www/activity/index.php:199
#: www/export/rss_project.php:100
-#: www/themes/gforge-simple-theme/Theme.class.php:498
+#: www/themes/gforge-simple-theme/Theme.class.php:497
msgid "Activity"
msgstr ""
-#: common/include/Group.class.php:2592
+#: common/include/Group.class.php:2594
#: common/include/group_section_texts.php:30
#: common/reporting/report_utils.php:161
#: plugins/quota_management/www/quota_project.php:88
-#: www/themes/gforge-simple-theme/Theme.class.php:505
+#: www/themes/gforge-simple-theme/Theme.class.php:504
msgid "Forums"
msgstr "Fòrums"
-#: common/include/Group.class.php:2606 common/include/rbac_texts.php:90
-#: common/include/rbac_texts.php:91 common/reporting/report_utils.php:157
+#: common/include/Group.class.php:2608 common/include/rbac_texts.php:93
+#: common/include/rbac_texts.php:95 common/reporting/report_utils.php:157
#: www/include/project_home.php:312
#: www/pm/include/ProjectTaskHTML.class.php:93
-#: www/themes/gforge-simple-theme/Theme.class.php:513
+#: www/themes/gforge-simple-theme/Theme.class.php:512
#: www/tracker/admin/ind.php:97 www/tracker/ind.php:45
msgid "Tracker"
msgstr "Rastrejador"
-#: common/include/Group.class.php:2624
-#: www/themes/gforge-simple-theme/Theme.class.php:522
+#: common/include/Group.class.php:2626
+#: www/themes/gforge-simple-theme/Theme.class.php:521
msgid "Lists"
msgstr "Llistes"
-#: common/include/Group.class.php:2639
-#: common/include/group_section_texts.php:32 common/include/rbac_texts.php:86
-#: common/include/rbac_texts.php:87 common/reporting/report_utils.php:169
+#: common/include/Group.class.php:2641
+#: common/include/group_section_texts.php:32 common/include/rbac_texts.php:88
+#: common/include/rbac_texts.php:90 common/reporting/report_utils.php:169
#: common/reporting/report_utils.php:197 www/my/dashboard.php:91
#: www/project/stats/project_stats_utils.php:83
#: www/project/stats/project_stats_utils.php:142
#: www/project/stats/project_stats_utils.php:198
#: www/stats/site_stats_utils.php:240 www/stats/site_stats_utils.php:366
#: www/stats/site_stats_utils.php:421
-#: www/themes/gforge-simple-theme/Theme.class.php:530
+#: www/themes/gforge-simple-theme/Theme.class.php:529
#: www/themes/ultralite/Theme.class.php:104
msgid "Tasks"
msgstr "Tasques"
-#: common/include/Group.class.php:2654 common/reporting/report_utils.php:165
-#: www/themes/gforge-simple-theme/Theme.class.php:538
+#: common/include/Group.class.php:2656 common/reporting/report_utils.php:165
+#: www/themes/gforge-simple-theme/Theme.class.php:537
msgid "Docs"
msgstr "Documents"
-#: common/include/Group.class.php:2669 www/include/project_home.php:405
+#: common/include/Group.class.php:2671 www/include/project_home.php:405
#: www/survey/include/SurveyHTML.class.php:53 www/survey/survey_utils.php:52
-#: www/themes/gforge-simple-theme/Theme.class.php:546
+#: www/themes/gforge-simple-theme/Theme.class.php:545
msgid "Surveys"
msgstr "Enquestes"
-#: common/include/Group.class.php:2683
+#: common/include/Group.class.php:2685
#: common/include/group_section_texts.php:35
#: plugins/quota_management/www/quota_project.php:74 www/activity/index.php:89
-#: www/activity/index.php:241 www/admin/index.php:134 www/news/index.php:35
-#: www/news/submit.php:127 www/themes/gforge-simple-theme/Theme.class.php:554
+#: www/activity/index.php:241 www/admin/index.php:134 www/news/index.php:36
+#: www/news/index.php:37 www/news/submit.php:127
+#: www/themes/gforge-simple-theme/Theme.class.php:553
msgid "News"
msgstr "Notícies"
-#: common/include/Group.class.php:2697 common/include/rbac_texts.php:98
-#: common/include/rbac_texts.php:99 www/scm/include/scm_utils.php:52
+#: common/include/Group.class.php:2699 common/include/rbac_texts.php:102
+#: common/include/rbac_texts.php:103 www/scm/include/scm_utils.php:52
#: www/stats/site_stats_utils.php:243 www/stats/site_stats_utils.php:367
#: www/stats/site_stats_utils.php:422
-#: www/themes/gforge-simple-theme/Theme.class.php:562
+#: www/themes/gforge-simple-theme/Theme.class.php:561
msgid "SCM"
msgstr "SCM"
-#: common/include/Group.class.php:2729
-#: common/include/group_section_texts.php:34 common/include/rbac_texts.php:95
+#: common/include/Group.class.php:2731
+#: common/include/group_section_texts.php:34 common/include/rbac_texts.php:99
#: www/frs/include/frs_utils.php:90
-#: www/themes/gforge-simple-theme/Theme.class.php:579
+#: www/themes/gforge-simple-theme/Theme.class.php:578
msgid "Files"
msgstr "Fitxers"
-#: common/include/GroupJoinRequest.class.php:111
+#: common/include/GroupJoinRequest.class.php:113
msgid "You are already a member of this project."
msgstr ""
-#: common/include/GroupJoinRequest.class.php:120
+#: common/include/GroupJoinRequest.class.php:122
msgid ""
"You have already sent a request to the project administrators. Please wait "
"for their reply."
msgstr ""
-#: common/include/GroupJoinRequest.class.php:225
-#: common/include/GroupJoinRequest.class.php:251
-#: common/include/GroupJoinRequest.class.php:265
+#: common/include/GroupJoinRequest.class.php:227
+#: common/include/GroupJoinRequest.class.php:253
+#: common/include/GroupJoinRequest.class.php:267
#, php-format
msgid "Request to Join Project %1$s"
msgstr ""
-#: common/include/GroupJoinRequest.class.php:227
+#: common/include/GroupJoinRequest.class.php:229
#, php-format
msgid ""
"%1$s has requested to join your project. \n"
"%3$s"
msgstr ""
-#: common/include/GroupJoinRequest.class.php:252
+#: common/include/GroupJoinRequest.class.php:254
#, php-format
msgid "Your request to join the %1$s project was denied by an administrator."
msgstr ""
-#: common/include/GroupJoinRequest.class.php:266
+#: common/include/GroupJoinRequest.class.php:268
#, php-format
msgid "Your request to join the %1$s project was granted by an administrator."
msgstr ""
msgid "Invalid Unix Name."
msgstr "Nom Unix no vàlid."
-#: common/include/User.class.php:284 common/include/User.class.php:528
+#: common/include/User.class.php:284 common/include/User.class.php:530
msgid "Invalid Jabber Address"
msgstr "Adreça Jabber no vàlida"
"\n"
"<%2$s>\n"
"\n"
+"You have 1 week to confirm your account. After this time, your account will "
+"be deleted.\n"
+"\n"
"(If you don't see any URL above, it is likely due to a bug in your mail "
"client.\n"
"Use one below, but make sure it is entered as the single line.)\n"
"\n"
"-- l'equip %4$s\n"
-#: common/include/User.class.php:434
+#: common/include/User.class.php:436
#, php-format
msgid "%1$s Account Registration"
msgstr "Registre del compte %1$s"
-#: common/include/User.class.php:850 common/include/User.class.php:903
+#: common/include/User.class.php:852 common/include/User.class.php:905
#, fuzzy
msgid "User with this email already exists."
msgstr "Aquest nom d'usuari ja existeix."
msgid "Group name cannot contain underscore for DNS reasons."
msgstr "El nom del grup no pot contenir el guió baix per raons de DNS."
-#: common/include/group_section_texts.php:31 www/reporting/toolspie.php:58
+#: common/include/group_section_texts.php:31 www/reporting/toolspie.php:63
msgid "Trackers"
msgstr "Rastrejadors"
msgid "Documentations"
msgstr "Visualitza la documentació"
-#: common/include/rbac_texts.php:30 common/include/rbac_texts.php:33
-#: common/include/rbac_texts.php:35 common/include/rbac_texts.php:37
-#: common/include/rbac_texts.php:41 common/include/rbac_texts.php:43
+#: common/include/rbac_texts.php:32 common/include/rbac_texts.php:35
+#: common/include/rbac_texts.php:37 common/include/rbac_texts.php:39
+#: common/include/rbac_texts.php:43 common/include/rbac_texts.php:45
#: www/frs/admin/index.php:216 www/project/admin/editgroupinfo.php:153
-#: www/project/admin/index.php:174 www/register/projectinfo.php:183
+#: www/project/admin/index.php:176 www/register/projectinfo.php:184
msgid "Private"
msgstr "Privat"
-#: common/include/rbac_texts.php:31 common/include/rbac_texts.php:34
-#: common/include/rbac_texts.php:38 common/include/rbac_texts.php:42
-#: common/include/rbac_texts.php:44 www/frs/admin/index.php:215
-#: www/project/admin/editgroupinfo.php:153 www/project/admin/index.php:174
-#: www/register/projectinfo.php:177
+#: common/include/rbac_texts.php:33 common/include/rbac_texts.php:36
+#: common/include/rbac_texts.php:40 common/include/rbac_texts.php:44
+#: common/include/rbac_texts.php:46 www/frs/admin/index.php:215
+#: www/project/admin/editgroupinfo.php:153 www/project/admin/index.php:176
+#: www/register/projectinfo.php:178
msgid "Public"
msgstr "Públic"
-#: common/include/rbac_texts.php:32 common/include/rbac_texts.php:94
+#: common/include/rbac_texts.php:34 common/include/rbac_texts.php:98
#, fuzzy
msgid "File Release System"
msgstr "Usa el sistema de publicació de fitxers"
-#: common/include/rbac_texts.php:36
+#: common/include/rbac_texts.php:38
#, fuzzy
msgid "Public (PServer)"
msgstr "Àrees públiques"
-#: common/include/rbac_texts.php:39 common/include/rbac_texts.php:45
+#: common/include/rbac_texts.php:41 common/include/rbac_texts.php:47
#, fuzzy
msgid "No Anonymous Posts"
msgstr "Voleu permete missatges anònims?"
-#: common/include/rbac_texts.php:40 common/include/rbac_texts.php:46
+#: common/include/rbac_texts.php:42 common/include/rbac_texts.php:48
#, fuzzy
msgid "Allow Anonymous Posts"
msgstr "Voleu permete missatges anònims?"
-#: common/include/rbac_texts.php:47 common/include/rbac_texts.php:50
-#: common/include/rbac_texts.php:53 common/include/rbac_texts.php:57
-#: common/include/rbac_texts.php:62
+#: common/include/rbac_texts.php:49 common/include/rbac_texts.php:52
+#: common/include/rbac_texts.php:55 common/include/rbac_texts.php:59
+#: common/include/rbac_texts.php:64
#, fuzzy
msgid "Read"
msgstr "Records"
-#: common/include/rbac_texts.php:48 common/include/rbac_texts.php:51
+#: common/include/rbac_texts.php:50 common/include/rbac_texts.php:53
#, fuzzy
msgid "Write"
msgstr "Privat"
-#: common/include/rbac_texts.php:49 common/include/rbac_texts.php:52
-#: common/include/rbac_texts.php:56 common/include/rbac_texts.php:61
+#: common/include/rbac_texts.php:51 common/include/rbac_texts.php:54
+#: common/include/rbac_texts.php:58 common/include/rbac_texts.php:63
#, fuzzy
msgid "No Access"
msgstr "No hi ha canvis"
-#: common/include/rbac_texts.php:54
+#: common/include/rbac_texts.php:56
#, fuzzy
msgid "Post"
msgstr "Missatges"
-#: common/include/rbac_texts.php:58 common/include/rbac_texts.php:63
+#: common/include/rbac_texts.php:60 common/include/rbac_texts.php:65
#, fuzzy
msgid "Tech"
msgstr "Cerca"
-#: common/include/rbac_texts.php:59 common/include/rbac_texts.php:64
+#: common/include/rbac_texts.php:61 common/include/rbac_texts.php:66
#, fuzzy
msgid "Tech & Admin"
msgstr "Administració del projecte"
-#: common/include/rbac_texts.php:60 common/include/rbac_texts.php:65
+#: common/include/rbac_texts.php:62 common/include/rbac_texts.php:67
#, fuzzy
msgid "Admin Only"
msgstr "Administració"
-#: common/include/rbac_texts.php:66
+#: common/include/rbac_texts.php:68
#, fuzzy
msgid "Read/Post"
msgstr "Rol/Posició"
-#: common/include/rbac_texts.php:68 common/include/rbac_texts.php:70
-#: common/include/rbac_texts.php:72 common/include/rbac_texts.php:74
+#: common/include/rbac_texts.php:70 common/include/rbac_texts.php:72
+#: common/include/rbac_texts.php:74 common/include/rbac_texts.php:76
#: www/include/html.php:278 www/include/html.php:345 www/include/html.php:412
#: www/include/html.php:429 www/include/html.php:463 www/include/html.php:504
-#: www/pm/ganttpage.php:72 www/tracker/include/ArtifactTypeHtml.class.php:413
-#: www/tracker/include/ArtifactTypeHtml.class.php:452
-#: www/tracker/include/ArtifactTypeHtml.class.php:581
+#: www/pm/ganttpage.php:47 www/tracker/include/ArtifactTypeHtml.class.php:418
+#: www/tracker/include/ArtifactTypeHtml.class.php:457
+#: www/tracker/include/ArtifactTypeHtml.class.php:586
msgid "None"
msgstr "Cap"
-#: common/include/rbac_texts.php:76
+#: common/include/rbac_texts.php:78
#, fuzzy
msgid "See"
msgstr "Selecciona"
-#: common/include/rbac_texts.php:77
+#: common/include/rbac_texts.php:79
#: plugins/quota_management/www/quota_admin.php:140
#: www/tracker/mod-limited.php:12
msgid "Modify"
msgstr "Modifica"
-#: common/include/rbac_texts.php:78
+#: common/include/rbac_texts.php:80
#, fuzzy
msgid "No access"
msgstr "No hi ha canvis"
-#: common/include/rbac_texts.php:84
+#: common/include/rbac_texts.php:86
#, fuzzy
msgid "Anonymous Forum"
msgstr "Espai FTP anònim"
-#: common/include/rbac_texts.php:85
+#: common/include/rbac_texts.php:87
#, fuzzy
msgid "Forum Admin"
msgstr "Administració del fòrum"
-#: common/include/rbac_texts.php:88
+#: common/include/rbac_texts.php:89
+#, fuzzy
+msgid "New Tasks"
+msgstr "Tasques"
+
+#: common/include/rbac_texts.php:91
#, fuzzy
msgid "Tasks Admin"
msgstr "Administració del rastrejador"
-#: common/include/rbac_texts.php:89 www/forum/include/ForumHTML.class.php:72
+#: common/include/rbac_texts.php:92 www/forum/include/ForumHTML.class.php:72
#: www/forum/myforums.php:73 www/news/admin/news_admin_utils.php:58
-#: www/reporting/projectact.php:58 www/reporting/projecttime.php:70
+#: www/reporting/projectact.php:62 www/reporting/projecttime.php:75
#: www/search/include/SearchManager.class.php:131
#: www/search/include/SearchManager.class.php:147
#: www/themes/ultralite/Theme.class.php:108
msgid "Project"
msgstr "Projecte"
-#: common/include/rbac_texts.php:92
+#: common/include/rbac_texts.php:94
+#, fuzzy
+msgid "New Trackers"
+msgstr "Usa el rastrejador"
+
+#: common/include/rbac_texts.php:96
#, fuzzy
msgid "Anonymous Tracker"
msgstr "Espai FTP anònim"
-#: common/include/rbac_texts.php:93
+#: common/include/rbac_texts.php:97
#, fuzzy
msgid "Tracker Admin"
msgstr "Administració del rastrejador"
-#: common/include/rbac_texts.php:96
+#: common/include/rbac_texts.php:100
msgid "Webcal"
msgstr ""
-#: common/include/rbac_texts.php:97 www/admin/approve-pending.php:156
+#: common/include/rbac_texts.php:101 www/admin/approve-pending.php:156
msgid "Project Admin"
msgstr "Administració del projecte"
-#: common/include/rbac_texts.php:100
+#: common/include/rbac_texts.php:104
#, fuzzy
msgid "Documentation Manager"
msgstr "Visualitza la documentació"
msgid "Could Not Get Group"
msgstr "No s'ha pogut actualitzar elpare"
-#: common/include/session.php:418 www/account/lostlogin.php:49
-#: www/account/lostlogin.php:55 www/account/lostlogin.php:70
-#: www/account/lostlogin.php:77 www/account/lostlogin.php:94
-#: www/pm/calendar.php:83 www/pm/calendar.php:87 www/pm/calendar.php:89
-#: www/pm/calendar.php:94 www/pm/calendar.php:96 www/pm/calendar.php:107
-#: www/survey/rating_resp.php:57 www/trove/TroveCategory.class.php:73
-#: www/trove/TroveCategory.class.php:99 www/trove/TroveCategory.class.php:111
-#: www/trove/admin/trove_cat_edit.php:42
+#: common/include/session.php:418 common/include/session.php:421
+#: www/account/lostlogin.php:49 www/account/lostlogin.php:55
+#: www/account/lostlogin.php:70 www/account/lostlogin.php:77
+#: www/account/lostlogin.php:94 www/pm/calendar.php:83 www/pm/calendar.php:87
+#: www/pm/calendar.php:89 www/pm/calendar.php:94 www/pm/calendar.php:96
+#: www/pm/calendar.php:107 www/survey/rating_resp.php:57
+#: www/trove/TroveCategory.class.php:73 www/trove/TroveCategory.class.php:99
+#: www/trove/TroveCategory.class.php:111 www/trove/admin/trove_cat_edit.php:42
msgid "ERROR"
msgstr "ERROR"
msgid "Circular Dependency Detected'"
msgstr "S'ha detectat una dependència circular"
-#: common/pm/ProjectTask.class.php:1162 common/tracker/Artifact.class.php:1439
-#: common/tracker/Artifact.class.php:1441
-#: common/tracker/Artifact.class.php:1445
-#: common/tracker/Artifact.class.php:1447
-#: common/tracker/Artifact.class.php:1547
+#: common/pm/ProjectTask.class.php:1162 common/tracker/Artifact.class.php:1426
+#: common/tracker/Artifact.class.php:1428
+#: common/tracker/Artifact.class.php:1432
+#: common/tracker/Artifact.class.php:1434
+#: common/tracker/Artifact.class.php:1534
#: cronjobs/send_pending_items_mail.php:99
#: plugins/projects_hierarchy/www/softwaremap.php:318
#: www/account/index.php:118 www/admin/cronman.php:79
-#: www/admin/grouplist.php:118 www/admin/massmail.php:165
-#: www/admin/search.php:110 www/admin/search.php:186 www/admin/userlist.php:99
+#: www/admin/grouplist.php:116 www/admin/massmail.php:165
+#: www/admin/search.php:105 www/admin/search.php:175 www/admin/userlist.php:99
#: www/developer/diary.php:47 www/developer/diary.php:84
#: www/docman/include/doc_utils.php:213 www/docman/include/doc_utils.php:214
#: www/export/tracker.php:112 www/forum/forum.php:271 www/forum/forum.php:345
#: www/forum/include/ForumHTML.class.php:217
#: www/forum/include/ForumHTML.class.php:448 www/forum/index.php:86
#: www/forum/message.php:121 www/forum/message.php:200
-#: www/forum/myforums.php:162 www/frs/index.php:196
+#: www/forum/myforums.php:162 www/frs/index.php:195
#: www/include/project_home.php:85 www/include/stats_function.php:67
#: www/include/stats_function.php:90 www/include/user_home.php:90
#: www/my/diary.php:219 www/news/news_utils.php:150
-#: www/news/news_utils.php:162 www/news/news_utils.php:273
+#: www/news/news_utils.php:162 www/news/news_utils.php:270
#: www/people/people_utils.php:417 www/people/viewjob.php:81
#: www/pm/browse_task.php:198 www/pm/browse_task.php:201
#: www/pm/include/ProjectTaskHTML.class.php:104
#: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:52
#: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:50
#: www/snippet/detail.php:69 www/snippet/detail.php:158
-#: www/soap/tracker/tracker.php:1132 www/softwaremap/full_list.php:148
+#: www/soap/tracker/tracker.php:1128 www/softwaremap/full_list.php:148
#: www/softwaremap/tag_cloud.php:185 www/softwaremap/trove_list.php:319
-#: www/stats/lastlogins.php:51 www/tracker/browse.php:415
-#: www/tracker/browse.php:426 www/tracker/detail.php:45
+#: www/stats/lastlogins.php:51 www/tracker/browse.php:412
+#: www/tracker/browse.php:423 www/tracker/detail.php:45
#: www/tracker/detail.php:127 www/tracker/detail.php:128
#: www/tracker/downloadcsv.php:73 www/tracker/downloadcsv.php:74
#: www/tracker/downloadcsv.php:75
#: www/tracker/include/ArtifactHtml.class.php:130
#: www/tracker/include/ArtifactHtml.class.php:139
#: www/tracker/mod-limited.php:71 www/tracker/mod-limited.php:76
-#: www/tracker/mod.php:76 www/tracker/mod.php:81 www/tracker/mod.php:222
-#: www/tracker/mod.php:223
+#: www/tracker/mod.php:76 www/tracker/mod.php:81 www/tracker/mod.php:221
+#: www/tracker/mod.php:222
msgid "Y-m-d H:i"
msgstr "Y-m-d H:i"
msgstr "Afegits amb èxit"
#: common/reporting/report_utils.php:28 www/frs/include/frs_utils.php:92
-#: www/include/Layout.class.php:461
+#: www/include/Layout.class.php:453
#: www/pm/include/ProjectGroupHTML.class.php:75
#: www/scm/include/scm_utils.php:54
-#: www/themes/gforge-simple-theme/Theme.class.php:399
+#: www/themes/gforge-simple-theme/Theme.class.php:398
#: www/themes/lite/Theme.class.php:292
#: www/tracker/include/ArtifactTypeHtml.class.php:58
msgid "Reporting"
#: 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/search.php:39 www/developer/diary.php:97
-#: www/developer/rate.php:90 www/docman/admin/index.php:75
-#: www/docman/admin/index.php:87 www/docman/admin/index.php:508
-#: www/docman/admin/index.php:513 www/docman/include/doc_utils.php:63
+#: www/developer/rate.php:90 www/docman/admin/index.php:84
+#: www/docman/admin/index.php:96 www/docman/admin/index.php:517
+#: www/docman/admin/index.php:522 www/docman/include/doc_utils.php:63
#: www/docman/index.php:64 www/docman/index.php:69 www/docman/new.php:55
#: www/docman/new.php:64 www/docman/new.php:66 www/docman/new.php:76
#: www/docman/new.php:89 www/docman/new.php:106 www/docman/search.php:36
#: www/tarballs.php:24 www/tarballs.php:27 www/tarballs.php:33
#: www/tarballs.php:36 www/tracker/admin/index.php:34
#: www/tracker/admin/index.php:57 www/tracker/admin/updates.php:150
-#: www/tracker/index.php:68 www/tracker/reporting/index.php:70
+#: www/tracker/index.php:68 www/tracker/reporting/index.php:69
#: www/tracker/reporting/trackeract_graph.php:50
#: www/tracker/reporting/trackerpie_graph.php:64 www/tracker/tracker.php:15
#: www/tracker/tracker.php:30 www/users:33
"Artefacte: Només els membres del grup poden veure tipus d'artefacte privats"
#: common/tracker/Artifact.class.php:220 common/tracker/Artifact.class.php:746
-#: www/tracker/tracker.php:67 www/tracker/tracker.php:258
+#: www/tracker/tracker.php:67 www/tracker/tracker.php:260
msgid ""
"Artifact: This ArtifactType Does Not Allow Anonymous Submissions. Please "
"Login."
msgid "Artifact Monitoring Deactivated"
msgstr "Monitorització desactivada"
-#: common/tracker/Artifact.class.php:1112
+#: common/tracker/Artifact.class.php:1099
msgid "Nothing Changed - Update Cancelled"
msgstr "No s'ha canviat res - Actualització cancel·lada"
#: common/tracker/ArtifactExtraField.class.php:328
#: plugins/globalsearch/common/globalsearch_edit_utils.php:219
-#: www/admin/groupedit.php:101 www/admin/grouplist.php:85
-#: www/admin/pluginman.php:186 www/admin/search.php:99
-#: www/admin/search.php:169 www/frs/admin/editrelease.php:261
+#: www/admin/groupedit.php:101 www/admin/grouplist.php:83
+#: www/admin/pluginman.php:186 www/admin/search.php:94
+#: www/admin/search.php:158 www/frs/admin/editrelease.php:261
#: www/frs/admin/index.php:162 www/my/dashboard.php:83
#: www/news/admin/index.php:131 www/people/editjob.php:168
#: www/people/viewjob.php:75 www/pm/browse_task.php:121
-#: www/pm/detail_task.php:108 www/pm/ganttpage.php:167 www/pm/mod_task.php:142
+#: www/pm/detail_task.php:108 www/pm/ganttpage.php:143 www/pm/mod_task.php:142
#: www/pm/mod_task.php:159 www/reporting/usersummary.php:106
#: www/tracker/admin/form-addextrafield.php:111
#: www/tracker/admin/form-addextrafieldoption.php:80
"\n"
"Click here to visit the item %3$s"
msgstr ""
-"Aquest correu se us envia per a recordar-vos que teniu tasques "
-"pendents/vençudes. \n"
+"Aquest correu se us envia per a recordar-vos que teniu tasques pendents/"
+"vençudes. \n"
"L'element #%1$s del gestor de tasques està pendent: \n"
"Resum de la tasca: %2$s\n"
"Enviada per: %4$s\n"
#: www/developer/diary.php:47 www/developer/diary.php:78
#: www/forum/forum.php:237 www/forum/include/ForumHTML.class.php:68
#: www/forum/message.php:157 www/frs/admin/showreleases.php:102
-#: www/frs/index.php:168 www/include/project_home.php:188
+#: www/frs/index.php:167 www/include/project_home.php:188
#: www/news/admin/news_admin_utils.php:56 www/pm/calendar.php:252
#: www/pm/include/ProjectTaskHTML.class.php:128
#: www/pm/include/ProjectTaskHTML.class.php:165
msgid "URL"
msgstr ""
-#: plugins/contribtracker/www/global_admin.php:226 www/admin/search.php:97
+#: plugins/contribtracker/www/global_admin.php:226 www/admin/search.php:92
#: www/admin/unsubscribe.php:121
msgid "Email"
msgstr "Correu electrònic"
#: plugins/contribtracker/www/global_admin.php:227
#: plugins/contribtracker/www/global_admin.php:322
-#: plugins/globalsearch/www/index.php:171 www/docman/admin/index.php:212
+#: plugins/globalsearch/www/index.php:171 www/docman/admin/index.php:221
#: www/docman/new.php:141 www/forum/admin/index.php:96
#: www/forum/admin/index.php:168 www/forum/index.php:60
#: www/forum/myforums.php:74 www/help/trove_cat.php:50 www/mail/index.php:60
#: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:33
#: www/snippet/submit.php:95 www/tracker/admin/form-updatetracker.php:22
#: www/tracker/admin/ind.php:97 www/tracker/admin/ind.php:129
-#: www/tracker/browse.php:364 www/tracker/ind.php:45
+#: www/tracker/browse.php:366 www/tracker/ind.php:45
#: www/tracker/mod-limited.php:162
msgid "Description"
msgstr "Descripció"
#: plugins/contribtracker/www/project_admin.php:313
#: www/admin/admin_table.php:306 www/admin/responses_admin.php:46
#: www/admin/responses_admin.php:93 www/admin/trove/trove_cat_list.php:43
-#: www/docman/admin/index.php:448 www/forum/admin/ForumAdmin.class.php:70
+#: www/docman/admin/index.php:457 www/forum/admin/ForumAdmin.class.php:70
#: www/forum/include/AttachManager.class.php:148
#: www/frs/admin/showreleases.php:112 www/people/skills_utils.php:31
#: www/people/skills_utils.php:89 www/project/admin/editimages.php:268
-#: www/project/admin/editimages.php:299 www/project/admin/index.php:161
+#: www/project/admin/editimages.php:299 www/project/admin/index.php:163
#: www/survey/include/SurveyHTML.class.php:304
#: www/survey/include/SurveyHTML.class.php:352
#: www/survey/include/SurveyHTML.class.php:412
#: plugins/projects_hierarchy/common/projects_hierarchyPlugin.class.php:386
#: www/admin/admin_table.php:146 www/admin/admin_table.php:307
#: www/admin/responses_admin.php:47 www/admin/trove/trove_cat_edit.php:159
-#: www/admin/useredit.php:201 www/docman/admin/index.php:473
-#: www/docman/admin/index.php:494 www/forum/admin/ForumAdmin.class.php:71
+#: www/admin/useredit.php:201 www/docman/admin/index.php:482
+#: www/docman/admin/index.php:503 www/forum/admin/ForumAdmin.class.php:71
#: www/forum/admin/index.php:187 www/forum/admin/index.php:198
#: www/forum/include/AttachManager.class.php:149
#: www/frs/admin/deletepackage.php:76 www/frs/admin/deleterelease.php:81
#: www/frs/admin/index.php:188 www/frs/admin/showreleases.php:115
-#: www/my/index.php:407 www/news/admin/index.php:133
+#: www/my/index.php:403 www/news/admin/index.php:133
#: www/people/people_utils.php:174 www/people/people_utils.php:317
#: www/people/skills_utils.php:32 www/people/skills_utils.php:90
#: www/pm/admin/index.php:389 www/pm/admin/index.php:400
#: www/tracker/admin/tracker.php:44 www/tracker/deleteartifact.php:37
#: www/tracker/include/ArtifactTypeHtml.class.php:115
#: www/tracker/mod-limited.php:160 www/tracker/mod-limited.php:170
-#: www/tracker/mod.php:53 www/tracker/mod.php:257 www/tracker/mod.php:267
+#: www/tracker/mod.php:53 www/tracker/mod.php:256 www/tracker/mod.php:266
msgid "Delete"
msgstr "Suprimeix"
#: www/pm/add_task.php:138 www/pm/admin/index.php:221
#: www/pm/admin/index.php:267 www/pm/admin/index.php:306
#: www/pm/deletetask.php:36 www/pm/mod_task.php:37 www/pm/mod_task.php:195
-#: www/project/admin/editimages.php:241 www/project/admin/roleedit.php:275
-#: www/project/request.php:67 www/register/projectinfo.php:190
+#: www/project/admin/editimages.php:241 www/project/admin/roleedit.php:277
+#: www/project/request.php:67 www/register/projectinfo.php:191
#: www/survey/include/SurveyHTML.class.php:537 www/tracker/add.php:26
#: www/tracker/add.php:56 www/tracker/add.php:118
#: www/tracker/admin/form-addcanned.php:51
#: plugins/contribtracker/www/global_admin.php:409
#: plugins/contribtracker/www/global_admin.php:473
#: plugins/contribtracker/www/project_admin.php:209
-#: www/admin/configman.php:248
+#: www/admin/configman.php:250
msgid "Save"
msgstr ""
#: plugins/cvstracker/common/cvstrackerPlugin.class.php:101
#: plugins/svntracker/common/svntrackerPlugin.class.php:93
-#: www/frs/index.php:167
+#: www/frs/index.php:166
msgid "Filename"
msgstr "Nom de fitxer"
#: www/admin/admin_table.php:206 www/forum/admin/index.php:446
#: www/forum/include/ForumHTML.class.php:530 www/my/rmproject.php:90
#: www/people/editprofile.php:144 www/people/editprofile.php:204
-#: www/pm/mod_task.php:228 www/register/projectinfo.php:190
+#: www/pm/mod_task.php:228 www/register/projectinfo.php:191
#: www/reporting/timeadd.php:198
msgid "Cancel"
msgstr "Cancel·la"
msgstr ""
#: plugins/globalsearch/common/globalsearch_stats_boxes.php:49
-#: www/docman/search.php:90 www/include/Layout.class.php:752
-#: www/include/Layout.class.php:773
+#: www/docman/search.php:90 www/include/Layout.class.php:744
+#: www/include/Layout.class.php:765
#: www/search/include/renderers/HtmlGroupSearchRenderer.class.php:53
#: 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/gforge-simple-theme/Theme.class.php:659
-#: www/themes/gforge-simple-theme/Theme.class.php:677
-#: www/themes/gforge/Theme.class.php:404 www/themes/gforge/Theme.class.php:425
+#: www/search/index.php:69 www/themes/gforge-simple-theme/Theme.class.php:658
+#: www/themes/gforge-simple-theme/Theme.class.php:676
+#: www/themes/gforge/Theme.class.php:410 www/themes/gforge/Theme.class.php:431
#: www/themes/ultralite/Theme.class.php:134
msgid "Search"
msgstr "Cerca"
msgid "Mantis admin"
msgstr "Administració de les llistes de correu"
-#: plugins/mediawiki/www/LocalSettings.php:207
+#: plugins/mediawiki/www/LocalSettings.php:222
#: plugins/mediawiki/www/frame.php:38
msgid "Wiki not created yet, please wait for a few minutes."
msgstr ""
msgid "Project label deleted."
msgstr "Llista de fitxers del projecte"
-#: plugins/projectlabels/www/index.php:67
+#: plugins/projectlabels/www/index.php:69
#, fuzzy, php-format
msgid "Cannot add label onto project: %s"
msgstr "No es pot afegir una entrada de la base de dades"
-#: plugins/projectlabels/www/index.php:70
+#: plugins/projectlabels/www/index.php:72
msgid "The label has been added to the project."
msgstr ""
-#: plugins/projectlabels/www/index.php:81
+#: plugins/projectlabels/www/index.php:75
+#, fuzzy
+msgid "No such project."
+msgstr "Top %1$s project"
+
+#: plugins/projectlabels/www/index.php:86
#, php-format
msgid "Cannot remove label: %s"
msgstr ""
-#: plugins/projectlabels/www/index.php:84
+#: plugins/projectlabels/www/index.php:89
msgid "The label has been removed from the project."
msgstr ""
-#: plugins/projectlabels/www/index.php:98
+#: plugins/projectlabels/www/index.php:103
#, php-format
msgid "Cannot modify label: %s"
msgstr ""
-#: plugins/projectlabels/www/index.php:101
+#: plugins/projectlabels/www/index.php:106
#, fuzzy
msgid "Label has been saved."
msgstr "S'ha enviat el missatge"
-#: plugins/projectlabels/www/index.php:115
+#: plugins/projectlabels/www/index.php:120
#, fuzzy
msgid "Label name:"
msgstr "Nom real"
-#: plugins/projectlabels/www/index.php:117
-#: plugins/projectlabels/www/index.php:194
+#: plugins/projectlabels/www/index.php:122
+#: plugins/projectlabels/www/index.php:199
msgid "Displayed text (or HTML) for the label:"
msgstr ""
-#: plugins/projectlabels/www/index.php:120
-#: plugins/projectlabels/www/index.php:140
+#: plugins/projectlabels/www/index.php:125
+#: plugins/projectlabels/www/index.php:145
msgid "This label currently looks like this:"
msgstr ""
-#: plugins/projectlabels/www/index.php:121
+#: plugins/projectlabels/www/index.php:126
#, fuzzy
msgid "Save this label"
msgstr "Desa espai"
-#: plugins/projectlabels/www/index.php:135
+#: plugins/projectlabels/www/index.php:140
#, fuzzy
msgid "Manage labels"
msgstr "Noves publicacions de fitxers"
-#: plugins/projectlabels/www/index.php:136
+#: plugins/projectlabels/www/index.php:141
msgid "You can edit the labels that you have already created."
msgstr ""
-#: plugins/projectlabels/www/index.php:149
+#: plugins/projectlabels/www/index.php:154
#, fuzzy
msgid "This label is used on the following group:"
msgid_plural "This label is used on the following groups:"
msgstr[0] "Aquest desenvolupador és membre dels següents grups:"
msgstr[1] "Aquest desenvolupador és membre dels següents grups:"
-#: plugins/projectlabels/www/index.php:160
+#: plugins/projectlabels/www/index.php:165
#, fuzzy
msgid "[Remove this label]"
msgstr "Suprimeix aquest filtre"
-#: plugins/projectlabels/www/index.php:163
+#: plugins/projectlabels/www/index.php:168
#, fuzzy
msgid "This label is not used on any group."
msgstr "Aquest desenvolupador no és membre de cap projecte."
-#: plugins/projectlabels/www/index.php:167
+#: plugins/projectlabels/www/index.php:172
msgid "Unix name of the project:"
msgstr ""
-#: plugins/projectlabels/www/index.php:170
+#: plugins/projectlabels/www/index.php:175
#, fuzzy
msgid "Add label to project"
msgstr "Afegeix un projecte"
-#: plugins/projectlabels/www/index.php:175
+#: plugins/projectlabels/www/index.php:180
#, fuzzy
msgid "[Edit this label]"
msgstr "Edita la taula de %1$ss"
-#: plugins/projectlabels/www/index.php:177
+#: plugins/projectlabels/www/index.php:182
#, fuzzy
msgid "[Delete this label]"
msgstr "Suprimeix el fitxer"
-#: plugins/projectlabels/www/index.php:185
+#: plugins/projectlabels/www/index.php:190
#, fuzzy
msgid "Add new labels"
msgstr "Afegeix una nova tasca"
-#: plugins/projectlabels/www/index.php:186
+#: plugins/projectlabels/www/index.php:191
msgid "You can create new labels with the form below."
msgstr ""
-#: plugins/projectlabels/www/index.php:192
+#: plugins/projectlabels/www/index.php:197
msgid "Name of the label:"
msgstr ""
-#: plugins/projectlabels/www/index.php:193
+#: plugins/projectlabels/www/index.php:198
#, fuzzy
msgid "potm"
msgstr "Informe"
-#: plugins/projectlabels/www/index.php:196
+#: plugins/projectlabels/www/index.php:201
msgid "<p><b>Project of the month!</b></p>"
msgstr ""
-#: plugins/projectlabels/www/index.php:198
+#: plugins/projectlabels/www/index.php:203
#, fuzzy
msgid "Add label"
msgstr "Afegeix data"
msgstr "Arbre de projectes"
#: plugins/projects_hierarchy/www/softwaremap.php:57
-#: www/reporting/projecttime.php:54 www/reporting/sitetime.php:52
+#: www/reporting/projecttime.php:59 www/reporting/sitetime.php:57
#: www/reporting/usertime.php:70
msgid "By Category"
msgstr "Per categoria"
#: plugins/scmccase/common/CCasePlugin.class.php:97
#, php-format
msgid ""
-"Either mount the VOB with <tt>cleartool mount %1$s</tt> or select the <tt>%1"
-"$s</tt> VOB in your ClearCase Explorer."
+"Either mount the VOB with <tt>cleartool mount %1$s</tt> or select the <tt>"
+"%1$s</tt> VOB in your ClearCase Explorer."
msgstr ""
#: plugins/scmccase/common/CCasePlugin.class.php:114
#: www/project/admin/editimages.php:271 www/reporting/usersummary.php:104
#: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:32
#: www/tracker/detail.php:169 www/tracker/mod-limited.php:161
-#: www/tracker/mod.php:258
+#: www/tracker/mod.php:257
msgid "Name"
msgstr "Nom"
"client machine. Enter your site password when prompted.</p>"
msgstr ""
-#: plugins/scmhg/common/HgPlugin.class.php:67
+#: plugins/scmhg/common/HgPlugin.class.php:68
msgid ""
"<p><b>Developer Mercurial Access via SSH</b></p><p>Only project developers "
"can access the Mercurial tree via this method. SSH must be installed on your "
msgstr ""
"<p>Per evitar que hagueu de teclejar cada cop la vostra contrasenya per al "
"vostre compte CVS/SSH de desenvolupador, podeu pujar aquí les vostres claus "
-"públiques i es posaran al servidor CVS al vostre fitxer "
-"~/.ssh/authorized_keys. Això es realitza mitjançant una tasca cron, o sigui "
-"que pot ser que no succeeixi immediatament. Permeteu una hora de "
-"retard.</p><p>Per a generar una clau pública, executeu el programa 'ssh-"
-"keygen' (podeu usar el protocol 1 ó 2). La clau pública es situarà a "
-"'~/.ssh/identity.pub' (protocol 1) i '~/.ssh/id_dsa.pub' o "
-"'~/.ssh/id_rsa.pub' (protocol 2). Per a més informació sobre compartir "
-"claus, llegiu la documentació ssh.</p>"
+"públiques i es posaran al servidor CVS al vostre fitxer ~/.ssh/"
+"authorized_keys. Això es realitza mitjançant una tasca cron, o sigui que pot "
+"ser que no succeeixi immediatament. Permeteu una hora de retard.</p><p>Per "
+"a generar una clau pública, executeu el programa 'ssh-keygen' (podeu usar el "
+"protocol 1 ó 2). La clau pública es situarà a '~/.ssh/identity."
+"pub' (protocol 1) i '~/.ssh/id_dsa.pub' o '~/.ssh/id_rsa.pub' (protocol 2). "
+"Per a més informació sobre compartir claus, llegiu la documentació ssh.</p>"
#: www/account/editsshkeys.php:81
msgid ""
#: www/people/people_utils.php:173 www/people/people_utils.php:316
#: www/pm/admin/index.php:367 www/pm/calendar.php:277
#: www/project/admin/database.php:236 www/project/admin/editgroupinfo.php:353
-#: www/project/admin/index.php:263 www/project/admin/tools.php:281
+#: www/project/admin/index.php:265 www/project/admin/tools.php:281
#: www/project/admin/users.php:274 www/project/admin/users.php:290
#: www/reporting/timecategory.php:99 www/scm/admin/index.php:113
msgid "Update"
"<p>Your account is currently pending your email confirmation.\t\tVisiting "
"the link sent to you in this email will activate your account.\t\t<p>If you "
"need this email resent, please click below and a confirmation\t\temail will "
-"be sent to the email address you provided in registration.\t\t<p><a href=\"%1"
-"$s\">[Resend Confirmation Email]</a>\t\t<br><hr>\t\t<p>"
+"be sent to the email address you provided in registration.\t\t<p><a href="
+"\"%1$s\">[Resend Confirmation Email]</a>\t\t<br><hr>\t\t<p>"
msgstr ""
#: www/account/login.php:108
"instructions in the email to change your account password."
msgstr ""
-#: www/account/lostpw.php:73 www/include/Layout.class.php:428
-#: www/themes/gforge-simple-theme/Theme.class.php:135
-#: www/themes/gforge-simple-theme/Theme.class.php:347
+#: www/account/lostpw.php:73 www/include/Layout.class.php:420
+#: www/themes/gforge-simple-theme/Theme.class.php:134
+#: www/themes/gforge-simple-theme/Theme.class.php:346
#: www/themes/lite/Theme.class.php:267 www/themes/ultralite/Theme.class.php:40
#, php-format
msgid "Home"
msgstr ""
#: www/activity/index.php:149 www/frs/reporting/downloads.php:100
-#: www/project/stats/index.php:61 www/reporting/groupadded.php:56
-#: www/reporting/groupcum.php:56 www/reporting/projectact.php:61
-#: www/reporting/projecttime.php:72 www/reporting/siteact.php:60
-#: www/reporting/sitetime.php:68 www/reporting/sitetimebar.php:55
-#: www/reporting/toolspie.php:59 www/reporting/useract.php:73
-#: www/reporting/useradded.php:55 www/reporting/usercum.php:56
+#: www/project/stats/index.php:64 www/reporting/groupadded.php:60
+#: www/reporting/groupcum.php:60 www/reporting/projectact.php:65
+#: www/reporting/projecttime.php:77 www/reporting/siteact.php:64
+#: www/reporting/sitetime.php:73 www/reporting/sitetimebar.php:60
+#: www/reporting/toolspie.php:64 www/reporting/useract.php:77
+#: www/reporting/useradded.php:59 www/reporting/usercum.php:60
#: www/reporting/usersummary.php:72 www/reporting/usertime.php:86
msgid "Start"
msgstr "Inici"
#: www/activity/index.php:150 www/frs/reporting/downloads.php:102
-#: www/project/stats/index.php:62 www/reporting/groupadded.php:57
-#: www/reporting/groupcum.php:57 www/reporting/projectact.php:62
-#: www/reporting/projecttime.php:73 www/reporting/siteact.php:61
-#: www/reporting/sitetime.php:69 www/reporting/sitetimebar.php:56
-#: www/reporting/toolspie.php:60 www/reporting/useract.php:74
-#: www/reporting/useradded.php:56 www/reporting/usercum.php:57
+#: www/project/stats/index.php:65 www/reporting/groupadded.php:61
+#: www/reporting/groupcum.php:61 www/reporting/projectact.php:66
+#: www/reporting/projecttime.php:78 www/reporting/siteact.php:65
+#: www/reporting/sitetime.php:74 www/reporting/sitetimebar.php:61
+#: www/reporting/toolspie.php:65 www/reporting/useract.php:78
+#: www/reporting/useradded.php:60 www/reporting/usercum.php:61
#: www/reporting/usersummary.php:73 www/reporting/usertime.php:87
msgid "End"
msgstr "Final"
msgid "No Activity Found"
msgstr ""
-#: www/activity/index.php:198 www/reporting/projecttime.php:85
-#: www/reporting/sitetime.php:81 www/reporting/sitetimebar.php:85
+#: www/activity/index.php:198 www/reporting/projecttime.php:90
+#: www/reporting/sitetime.php:86 www/reporting/sitetimebar.php:90
msgid "Time"
msgstr "Temps"
#: www/activity/index.php:221 www/activity/index.php:226
#: www/tracker/taskmgr.php:87 www/tracker/taskmgr.php:140
-#: www/tracker/tracker.php:274
+#: www/tracker/tracker.php:276
msgid "Tracker Item"
msgstr "Element del rastrejador"
#: www/admin/admin_table.php:54 www/admin/database.php:174
#: www/admin/trove/trove_cat_add.php:126 www/admin/trove/trove_cat_list.php:41
-#: www/admin/trove/trove_cat_list.php:44 www/docman/admin/index.php:396
+#: www/admin/trove/trove_cat_list.php:44 www/docman/admin/index.php:405
#: www/forum/include/AttachManager.class.php:161 www/pm/mod_task.php:228
#: www/reporting/timeadd.php:198 www/reporting/timecategory.php:101
#: www/trove/admin/trove_cat_add.php:92 www/trove/admin/trove_cat_list.php:32
msgid "Approve All On This Page"
msgstr "Aprova-ho tot en aquesta pàgina"
-#: www/admin/configman.php:59 www/admin/configman.php:184
+#: www/admin/configman.php:61 www/admin/configman.php:186
#, php-format
msgid ""
"Could not open %s file for read/write. Check the permissions for apache."
msgstr ""
-#: www/admin/configman.php:66 www/admin/configman.php:252
+#: www/admin/configman.php:68 www/admin/configman.php:254
#, php-format
msgid "Could not open %s for read. Check the permissions for apache."
msgstr ""
-#: www/admin/configman.php:95
+#: www/admin/configman.php:97
msgid "Choose"
msgstr ""
-#: www/admin/configman.php:149
+#: www/admin/configman.php:151
#, fuzzy, php-format
msgid "File %s wrote successfully."
msgstr "FEINA inserida amb èxit"
-#: www/admin/configman.php:152
+#: www/admin/configman.php:154
#, php-format
msgid "File %s wasn't written or is empty."
msgstr ""
-#: www/admin/configman.php:156
+#: www/admin/configman.php:158
#, php-format
msgid "Could not open %s for write. Check the permissions for apache."
msgstr ""
-#: www/admin/configman.php:193 www/admin/configman.php:209
+#: www/admin/configman.php:195 www/admin/configman.php:211
msgid "Attribute"
msgstr ""
-#: www/admin/configman.php:193
+#: www/admin/configman.php:195
#, fuzzy
msgid "On"
msgstr "Opn"
-#: www/admin/configman.php:193
+#: www/admin/configman.php:195
msgid "Off"
msgstr ""
-#: www/admin/configman.php:209
+#: www/admin/configman.php:211
#, fuzzy
msgid "Value"
msgstr "Valor antic"
msgid "Statistics for Project Databases"
msgstr "Estadístiques per bases de dades de projecte"
-#: www/admin/database.php:106 www/admin/massmail.php:149 www/frs/index.php:172
+#: www/admin/database.php:106 www/admin/massmail.php:149 www/frs/index.php:171
#: www/people/editprofile.php:272 www/people/skills_utils.php:34
-#: www/people/skills_utils.php:142 www/project/stats/index.php:60
-#: www/reporting/groupadded.php:55 www/reporting/groupcum.php:55
-#: www/reporting/projectact.php:60 www/reporting/projecttime.php:71
-#: www/reporting/projecttime.php:84 www/reporting/siteact.php:59
-#: www/reporting/sitetime.php:67 www/reporting/sitetime.php:81
-#: www/reporting/useract.php:72 www/reporting/useradded.php:54
-#: www/reporting/usercum.php:55 www/reporting/usertime.php:85
+#: www/people/skills_utils.php:142 www/project/stats/index.php:63
+#: www/reporting/groupadded.php:59 www/reporting/groupcum.php:59
+#: www/reporting/projectact.php:64 www/reporting/projecttime.php:76
+#: www/reporting/projecttime.php:89 www/reporting/siteact.php:63
+#: www/reporting/sitetime.php:72 www/reporting/sitetime.php:86
+#: www/reporting/useract.php:76 www/reporting/useradded.php:58
+#: www/reporting/usercum.php:59 www/reporting/usertime.php:85
#: www/search/include/renderers/SkillHtmlSearchRenderer.class.php:33
#: www/tracker/admin/form-addextrafield.php:23
msgid "Type"
msgid "Holding (H)"
msgstr "Retinguda (R)"
-#: www/admin/groupedit.php:131 www/admin/grouplist.php:86
+#: www/admin/groupedit.php:131 www/admin/grouplist.php:84
msgid "Public?"
msgstr "Public?"
msgid "Group List"
msgstr "Llista de grup"
-#: www/admin/grouplist.php:46
+#: www/admin/grouplist.php:52
msgid "Groups that begin with"
msgstr "Grups que comencen per"
-#: www/admin/grouplist.php:66
+#: www/admin/grouplist.php:73
msgid "Group List for Category:"
msgstr "Llista de grup per categoria:"
-#: www/admin/grouplist.php:82
+#: www/admin/grouplist.php:80
msgid "Group Name (click to edit)"
msgstr "Nom de Grup (feu clic per a editar)"
-#: www/admin/grouplist.php:83
+#: www/admin/grouplist.php:81
msgid "Register Time"
msgstr "Temps de registre"
-#: www/admin/grouplist.php:84 www/admin/search.php:166
+#: www/admin/grouplist.php:82 www/admin/search.php:155
#: www/admin/useredit.php:246 www/project/admin/massadd.php:95
#: www/project/admin/massfinish.php:81
#, fuzzy
msgid "Unix name"
msgstr "Nom Unix"
-#: www/admin/grouplist.php:87 www/snippet/submit.php:104
+#: www/admin/grouplist.php:85 www/snippet/submit.php:104
msgid "License"
msgstr "Llicència"
-#: www/admin/grouplist.php:88
+#: www/admin/grouplist.php:86
msgid "Members"
msgstr "Membres"
msgid "Project Database Administration"
msgstr "Administració de la base dedades de projectes"
+#: www/admin/index.php:181
+#, fuzzy
+msgid "Job / Categories Administration"
+msgstr "Forums: Administració"
+
#: www/admin/massmail.php:45
msgid "Missing parameter, You must select target audience for mailing"
msgstr ""
msgid "Schedule for Mailing"
msgstr "Preparació per a l'enviament de correu"
-#: www/admin/massmail.php:148 www/admin/search.php:94 www/admin/search.php:165
-#: www/docman/admin/index.php:367 www/my/dashboard.php:77 www/my/index.php:53
+#: www/admin/massmail.php:148 www/admin/search.php:89 www/admin/search.php:154
+#: www/docman/admin/index.php:376 www/my/dashboard.php:77 www/my/index.php:53
#: www/my/index.php:95 www/my/index.php:146
#: www/project/admin/editimages.php:269
-#: www/tracker/admin/form-addcanned.php:23 www/tracker/browse.php:158
-#: www/tracker/browse.php:360 www/tracker/query.php:176
+#: www/tracker/admin/form-addcanned.php:23 www/tracker/browse.php:160
+#: www/tracker/browse.php:362 www/tracker/query.php:176
msgid "ID"
msgstr "ID"
msgid "Admin Search Results"
msgstr "Resultats de cerca Admin"
-#: www/admin/search.php:85
+#: www/admin/search.php:80
#, fuzzy, php-format
msgid "User search with criteria <em>%1$s</em>: %2$s match"
msgid_plural "User search with criteria <em>%1$s</em>: %2$s matches"
msgstr[0] "Cerca d'usuari amb criteris"
msgstr[1] "Cerca d'usuari amb criteris"
-#: www/admin/search.php:95 www/admin/unsubscribe.php:119
+#: www/admin/search.php:90 www/admin/unsubscribe.php:119
#: www/project/admin/users.php:272
#: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:32
#: www/top/topusers.php:68
msgid "User name"
msgstr "Nom d'usuari:"
-#: www/admin/search.php:96 www/admin/unsubscribe.php:120
+#: www/admin/search.php:91 www/admin/unsubscribe.php:120
#: www/admin/useredit.php:121 www/include/user_home.php:44
#: www/project/admin/massadd.php:94 www/project/admin/massfinish.php:80
#: www/search/include/renderers/PeopleHtmlSearchRenderer.class.php:33
msgid "Real name"
msgstr "Nom real"
-#: www/admin/search.php:98
+#: www/admin/search.php:93
msgid "Member since"
msgstr "Membre des de"
-#: www/admin/search.php:158
+#: www/admin/search.php:147
#, fuzzy, php-format
msgid "Group search with criteria <em>%s</em>: %d match"
msgid_plural "Group search with criteria <em>%s</em>: %d matches"
msgstr[0] "Cerca d'usuari amb criteris"
msgstr[1] "Cerca d'usuari amb criteris"
-#: www/admin/search.php:167
+#: www/admin/search.php:156
msgid "Full Name"
msgstr "Nom complet"
-#: www/admin/search.php:168
+#: www/admin/search.php:157
msgid "Registered"
msgstr "Registrat"
#: www/admin/trove/trove_cat_add.php:68 www/admin/trove/trove_cat_edit.php:73
#: www/include/trove.php:392 www/include/trove.php:402
#: www/include/trove.php:407 www/include/trove.php:412
+#: www/include/trove.php:417
msgid "Error In Trove Operation"
msgstr "Error en l'operació"
#, php-format
msgid ""
"Use field below to find users which match given pattern with the %1$s "
-"username, real name, or email address (substring match is preformed, use '%"
-"%' in the middle of pattern to specify 0 or more arbitrary characters). "
+"username, real name, or email address (substring match is preformed, use "
+"'%%' in the middle of pattern to specify 0 or more arbitrary characters). "
"Click on the username to unsubscribe user from site mailings (new form will "
"appear)."
msgstr ""
msgid "Key"
msgstr "Clau"
-#: www/admin/userlist.php:63 www/docman/admin/index.php:162
+#: www/admin/userlist.php:63 www/docman/admin/index.php:171
#: www/frs/admin/index.php:97 www/frs/admin/showreleases.php:82
#: www/pm/admin/index.php:339
msgid "Deleted"
"Podeu tornar a puntuar aquesta persona simplement tornant a la seva pàgina "
"de puntuacions i reenviant la informació."
-#: www/docman/admin/index.php:87
+#: www/docman/admin/index.php:96
#, php-format
msgid "Invalid file attack attempt %1$s"
msgstr ""
-#: www/docman/admin/index.php:109 www/docman/admin/index.php:123
-#: www/pm/admin/index.php:140 www/tracker/tracker.php:393
+#: www/docman/admin/index.php:118 www/docman/admin/index.php:132
+#: www/pm/admin/index.php:140 www/tracker/tracker.php:392
msgid "Updated successfully"
msgstr "Actualitzat amb èxit"
-#: www/docman/admin/index.php:135
+#: www/docman/admin/index.php:144
#, fuzzy
msgid "Deleted successfully"
msgstr "Fitxer suprimit amb èxit"
-#: www/docman/admin/index.php:150
+#: www/docman/admin/index.php:159
msgid "Created successfully"
msgstr "Creat amb èxit"
-#: www/docman/admin/index.php:192 www/docman/admin/index.php:349
-#: www/docman/admin/index.php:430 www/docman/admin/index.php:466
-#: www/docman/admin/index.php:484
+#: www/docman/admin/index.php:201 www/docman/admin/index.php:358
+#: www/docman/admin/index.php:439 www/docman/admin/index.php:475
+#: www/docman/admin/index.php:493
msgid "Document Manager Administration"
msgstr "Administració del Gestor de Documents"
-#: www/docman/admin/index.php:192
+#: www/docman/admin/index.php:201
#, fuzzy
msgid "Edit Docs"
msgstr "Edita les feines"
-#: www/docman/admin/index.php:196 www/docman/new.php:129
+#: www/docman/admin/index.php:205 www/docman/new.php:129
msgid ""
"<strong>Document Title</strong>: Refers to the relatively brief title of "
"the document (e.g. How to use the download server)<br /><strong>Description:"
"><strong>Descripció:</strong> Una breu descripció situada justament sota el "
"títol."
-#: www/docman/admin/index.php:205 www/docman/new.php:134
+#: www/docman/admin/index.php:214 www/docman/new.php:134
msgid "Document Title"
msgstr "Títol del document"
-#: www/docman/admin/index.php:205 www/docman/admin/index.php:212
+#: www/docman/admin/index.php:214 www/docman/admin/index.php:221
#: www/docman/new.php:134 www/docman/new.php:141
#, fuzzy, php-format
msgid "(at least %1$s characters)"
msgstr "La contrasenya ha de tenir com a mínim 6 caràcters."
-#: www/docman/admin/index.php:219
+#: www/docman/admin/index.php:228
msgid "File"
msgstr "Fitxer"
-#: www/docman/admin/index.php:235
+#: www/docman/admin/index.php:244
msgid ""
"Edit the contents to your desire or leave them as they are to remain "
"unmodified."
msgstr ""
-#: www/docman/admin/index.php:267 www/docman/include/doc_utils.php:114
+#: www/docman/admin/index.php:276 www/docman/include/doc_utils.php:114
#: www/docman/new.php:217 www/snippet/package.php:140
#: www/snippet/submit.php:110 www/stats/i18n.php:20
msgid "Language"
msgstr "Idioma"
-#: www/docman/admin/index.php:277 www/docman/new.php:223
+#: www/docman/admin/index.php:286 www/docman/new.php:223
msgid "Group that document belongs in"
msgstr "Grup al que pertany aquest document:"
-#: www/docman/admin/index.php:288 www/pm/browse_task.php:358
+#: www/docman/admin/index.php:297 www/pm/browse_task.php:358
#: www/project/admin/database.php:210
-#: www/tracker/admin/form-customizelist.php:26 www/tracker/browse.php:308
-#: www/tracker/browse.php:370 www/tracker/browse.php:555
+#: www/tracker/admin/form-customizelist.php:26 www/tracker/browse.php:310
+#: www/tracker/browse.php:372 www/tracker/browse.php:552
#: www/tracker/detail.php:50 www/tracker/mod-limited.php:103
-#: www/tracker/mod.php:147 www/tracker/query.php:324
+#: www/tracker/mod.php:146 www/tracker/query.php:324
msgid "State"
msgstr "Estat"
-#: www/docman/admin/index.php:315
+#: www/docman/admin/index.php:324
msgid "Specify an outside URL where the file will be referenced"
msgstr "O especifiqueu una URL externa on es referenciarà el fitxer"
-#: www/docman/admin/index.php:318
+#: www/docman/admin/index.php:327
msgid "OPTIONAL: Upload new file"
msgstr "OPCIONAL: Puja un nou fitxer"
-#: www/docman/admin/index.php:334
+#: www/docman/admin/index.php:343
msgid "Submit Edit"
msgstr "Tramet edita"
-#: www/docman/admin/index.php:335
+#: www/docman/admin/index.php:344
msgid "Permanently delete this document"
msgstr ""
-#: www/docman/admin/index.php:349 www/docman/admin/index.php:351
+#: www/docman/admin/index.php:358 www/docman/admin/index.php:360
#, fuzzy
msgid "Admin Document Groups"
msgstr "Afegeix grups de documents"
-#: www/docman/admin/index.php:368 www/docman/admin/index.php:437
+#: www/docman/admin/index.php:377 www/docman/admin/index.php:446
#: www/search/include/renderers/ProjectHtmlSearchRenderer.class.php:32
#: www/stats/site_stats_utils.php:228
msgid "Group Name"
msgstr "Nom del grup"
-#: www/docman/admin/index.php:369
+#: www/docman/admin/index.php:378
#, fuzzy
msgid "Delete Group"
msgstr "Suprimeix"
-#: www/docman/admin/index.php:379
+#: www/docman/admin/index.php:388
msgid "No Document Groups defined"
msgstr "No hi ha definits grups de documents"
-#: www/docman/admin/index.php:382
+#: www/docman/admin/index.php:391
msgid "Add a group"
msgstr "Afegeix un grup"
-#: www/docman/admin/index.php:386
+#: www/docman/admin/index.php:395
msgid "New Group Name"
msgstr "Nou nom de grup"
-#: www/docman/admin/index.php:391 www/docman/admin/index.php:442
+#: www/docman/admin/index.php:400 www/docman/admin/index.php:451
msgid "Belongs to"
msgstr ""
-#: www/docman/admin/index.php:400 www/docman/admin/index.php:452
+#: www/docman/admin/index.php:409 www/docman/admin/index.php:461
msgid ""
"Group name will be used as a title, so it should be formatted "
"correspondingly."
msgstr ""
"El nom de grup s'usarà com a títol, per tant s'ha de formatar com correspon."
-#: www/docman/admin/index.php:430 www/docman/admin/index.php:484
+#: www/docman/admin/index.php:439 www/docman/admin/index.php:493
#, fuzzy
msgid "Edit Groups"
msgstr "Edita un grup"
-#: www/docman/admin/index.php:432
+#: www/docman/admin/index.php:441
msgid "Edit a group"
msgstr "Edita un grup"
-#: www/docman/admin/index.php:466
+#: www/docman/admin/index.php:475
#, fuzzy
msgid "Delete Groups"
msgstr "Tots els grups"
-#: www/docman/admin/index.php:472
+#: www/docman/admin/index.php:481
#, fuzzy
msgid ""
"You are about to permanently delete this document group and its content "
"Esteu a punt de suprimir de forma permanent, irreversible i completa aquest "
"fòrum i tot el seu contingut!"
-#: www/docman/admin/index.php:489
+#: www/docman/admin/index.php:498
msgid "You are about to permanently delete this document."
msgstr ""
-#: www/docman/admin/index.php:491
+#: www/docman/admin/index.php:500
#: www/tracker/admin/form-deleteextrafield.php:15
#: www/tracker/admin/form-deleteextrafieldelement.php:38
#: www/tracker/admin/form-deletetracker.php:10
msgid "I'm Sure."
msgstr "N'estic segur."
-#: www/docman/admin/index.php:492
+#: www/docman/admin/index.php:501
#: www/tracker/admin/form-deleteextrafield.php:16
#: www/tracker/admin/form-deleteextrafieldelement.php:39
#: www/tracker/admin/form-deletetracker.php:11
msgid "I'm Really Sure."
msgstr "N'estic ben segur."
-#: www/docman/admin/index.php:521
+#: www/docman/admin/index.php:530
#, fuzzy, php-format
msgid "Project %s"
msgstr "Projectes"
-#: www/docman/admin/index.php:521 www/docman/admin/index.php:524
+#: www/docman/admin/index.php:530 www/docman/admin/index.php:533
msgid "Document Manager: Administration"
msgstr "Gestor de documents: Administració"
-#: www/docman/admin/index.php:526
+#: www/docman/admin/index.php:535
#, fuzzy
msgid "Add/Edit/Delete Document Groups"
msgstr "Afegeix/Edita els grups de documents"
-#: www/docman/admin/index.php:532 www/docman/index.php:120
+#: www/docman/admin/index.php:541 www/docman/index.php:120
msgid "This project has no visible documents"
msgstr "Aquest projecte no té documents visibles"
msgstr "No hi ha estadístiques disponibles"
#: www/export/projnews.php:81 www/forum/include/ForumHTML.class.php:96
-#: www/include/project_home.php:454 www/index_std.php:59
+#: www/include/project_home.php:455 www/index_std.php:59
msgid "Latest News"
msgstr "Últimes notícies"
#: www/forum/attachment.php:45 www/forum/attachment.php:134
#: www/forum/attachment.php:162 www/tracker/detail.php:145
-#: www/tracker/mod-limited.php:140 www/tracker/mod.php:239
+#: www/tracker/mod-limited.php:140 www/tracker/mod.php:238
msgid "Attachments"
msgstr ""
msgstr "Notes de publicació"
#: www/frs/admin/qrs.php:288 www/tracker/mod-limited.php:196
-#: www/tracker/mod.php:293
+#: www/tracker/mod.php:292
msgid "Change Log"
msgstr "Registre de canvis"
"Abans de la baixada, podeu voler llegir les notes de publicació i el "
"registre de canvis (accessible fent clic sobre la versió de publicació)."
-#: www/frs/index.php:87
+#: www/frs/index.php:86
msgid "To create a new release click here."
msgstr "Per a crear una nova publicació, feu clic aquí."
-#: www/frs/index.php:106
+#: www/frs/index.php:105
#, fuzzy
msgid "Stop monitoring this package"
msgstr "Monitoritza aquest paquet"
-#: www/frs/index.php:110 www/include/project_home.php:263
+#: www/frs/index.php:109 www/include/project_home.php:263
msgid "Monitor this package"
msgstr "Monitoritza aquest paquet"
-#: www/frs/index.php:128 www/frs/index.php:188
+#: www/frs/index.php:127 www/frs/index.php:187
msgid "No releases"
msgstr "No hi ha publicacions"
-#: www/frs/index.php:169 www/pm/ganttpage.php:171
+#: www/frs/index.php:168 www/pm/ganttpage.php:147
#: www/project/admin/editimages.php:273
msgid "Size"
msgstr "Mida"
-#: www/frs/index.php:170
+#: www/frs/index.php:169
msgid "D/L"
msgstr "Baix."
-#: www/frs/index.php:171
+#: www/frs/index.php:170
msgid "Arch"
msgstr "Arq."
msgid "Package"
msgstr "Paquet"
-#: www/frs/reporting/downloads.php:104 www/project/stats/index.php:63
-#: www/reporting/groupadded.php:58 www/reporting/groupcum.php:58
-#: www/reporting/projectact.php:63 www/reporting/projecttime.php:74
-#: www/reporting/siteact.php:62 www/reporting/sitetime.php:70
-#: www/reporting/sitetimebar.php:57 www/reporting/toolspie.php:61
-#: www/reporting/useract.php:75 www/reporting/useradded.php:57
-#: www/reporting/usercum.php:58 www/reporting/usersummary.php:75
+#: www/frs/reporting/downloads.php:104 www/project/stats/index.php:66
+#: www/reporting/groupadded.php:62 www/reporting/groupcum.php:62
+#: www/reporting/projectact.php:67 www/reporting/projecttime.php:79
+#: www/reporting/siteact.php:66 www/reporting/sitetime.php:75
+#: www/reporting/sitetimebar.php:62 www/reporting/toolspie.php:66
+#: www/reporting/useract.php:79 www/reporting/useradded.php:61
+#: www/reporting/usercum.php:62 www/reporting/usersummary.php:75
#: www/reporting/usertime.php:88
msgid "Refresh"
msgstr "Refresca"
"útil per errors i peticions de suport en les quals un usuari pot trobar un "
"problema crític amb un projecte."
-#: www/help/tracker.php:60 www/pm/ganttpage.php:170
+#: www/help/tracker.php:60 www/pm/ganttpage.php:146
msgid "Resolution"
msgstr "Resolució"
msgstr "Nom curt"
#: www/include/Layout.class.php:89 www/include/help.php:35
+#: www/themes/gforge-simple-theme/Theme.class.php:78
#: www/themes/gforge-simple-theme/Theme.class.php:79
-#: www/themes/gforge-simple-theme/Theme.class.php:80
#: www/themes/gforge/Theme.class.php:48 www/themes/lite/Theme.class.php:77
#: www/themes/ultralite/Theme.class.php:31
msgid "en"
msgstr "ca"
-#: www/include/Layout.class.php:164
-#: www/themes/gforge-simple-theme/Theme.class.php:141
+#: www/include/Layout.class.php:156
+#: www/themes/gforge-simple-theme/Theme.class.php:140
#: www/themes/gforge/Theme.class.php:90 www/themes/lite/Theme.class.php:127
#: www/themes/osx/Theme.class.php:81 www/themes/ultralite/Theme.class.php:46
msgid "Log Out"
msgstr "Final de sessió"
-#: www/include/Layout.class.php:165
-#: www/themes/gforge-simple-theme/Theme.class.php:143
+#: www/include/Layout.class.php:157
+#: www/themes/gforge-simple-theme/Theme.class.php:142
#: www/themes/gforge/Theme.class.php:92 www/themes/lite/Theme.class.php:129
#: www/themes/osx/Theme.class.php:83 www/themes/ultralite/Theme.class.php:47
msgid "My Account"
msgstr "El meu compte"
-#: www/include/Layout.class.php:167
-#: www/themes/gforge-simple-theme/Theme.class.php:146
+#: www/include/Layout.class.php:159
+#: www/themes/gforge-simple-theme/Theme.class.php:145
#: www/themes/gforge/Theme.class.php:100 www/themes/osx/Theme.class.php:86
#: www/themes/ultralite/Theme.class.php:51
msgid "Log In"
msgstr "Inici de sessió"
-#: www/include/Layout.class.php:169
-#: www/themes/gforge-simple-theme/Theme.class.php:149
+#: www/include/Layout.class.php:161
+#: www/themes/gforge-simple-theme/Theme.class.php:148
#: www/themes/gforge/Theme.class.php:103 www/themes/lite/Theme.class.php:132
#: www/themes/osx/Theme.class.php:87 www/themes/ultralite/Theme.class.php:52
msgid "New Account"
msgstr "Nou compte"
-#: www/include/Layout.class.php:290
-#: www/themes/gforge-simple-theme/Theme.class.php:208
-#: www/themes/gforge/Theme.class.php:143
+#: www/include/Layout.class.php:282
+#: www/themes/gforge-simple-theme/Theme.class.php:207
+#: www/themes/gforge/Theme.class.php:144
msgid "Show source"
msgstr "Mostra el codi font"
-#: www/include/Layout.class.php:429
-#: www/themes/gforge-simple-theme/Theme.class.php:351
+#: www/include/Layout.class.php:421
+#: www/themes/gforge-simple-theme/Theme.class.php:350
#: www/themes/lite/Theme.class.php:268
msgid "My Page"
msgstr "La meva pàgina"
-#: www/include/Layout.class.php:431 www/my/index.php:369
+#: www/include/Layout.class.php:423 www/my/index.php:365
#: www/reporting/index.php:44 www/stats/site_stats_utils.php:477
#: www/themes/lite/Theme.class.php:270
msgid "Projects"
msgstr "Projectes"
-#: www/include/Layout.class.php:434
-#: www/themes/gforge-simple-theme/Theme.class.php:367
+#: www/include/Layout.class.php:426
+#: www/themes/gforge-simple-theme/Theme.class.php:366
#: www/themes/lite/Theme.class.php:273
msgid "Code Snippets"
msgstr "Fragments de Codi"
-#: www/include/Layout.class.php:437
-#: www/themes/gforge-simple-theme/Theme.class.php:375
+#: www/include/Layout.class.php:429
+#: www/themes/gforge-simple-theme/Theme.class.php:374
#: www/themes/lite/Theme.class.php:276
msgid "Project Openings"
msgstr "Ofertes de feina"
-#: www/include/Layout.class.php:532
+#: www/include/Layout.class.php:524
msgid "Quick Jump To..."
msgstr ""
-#: www/include/Layout.class.php:755
+#: www/include/Layout.class.php:747
#: www/search/include/renderers/AdvancedSearchHtmlSearchRenderer.class.php:76
-#: www/themes/gforge-simple-theme/Theme.class.php:663
-#: www/themes/gforge/Theme.class.php:407
+#: www/themes/gforge-simple-theme/Theme.class.php:662
+#: www/themes/gforge/Theme.class.php:413
msgid "Advanced search"
msgstr "Cerca avançada"
-#: www/include/Layout.class.php:778
-#: www/themes/gforge-simple-theme/Theme.class.php:678
-#: www/themes/gforge/Theme.class.php:430
+#: www/include/Layout.class.php:770
+#: www/themes/gforge-simple-theme/Theme.class.php:677
+#: www/themes/gforge/Theme.class.php:436
msgid "with all words"
msgstr "amb totes les paraules"
-#: www/include/Layout.class.php:781
-#: www/themes/gforge-simple-theme/Theme.class.php:679
-#: www/themes/gforge/Theme.class.php:433
+#: www/include/Layout.class.php:773
+#: www/themes/gforge-simple-theme/Theme.class.php:678
+#: www/themes/gforge/Theme.class.php:439
msgid "with one word"
msgstr "amb una paraula"
-#: www/include/Layout.class.php:832 www/themes/gforge/Theme.class.php:479
+#: www/include/Layout.class.php:824 www/themes/gforge/Theme.class.php:485
msgid "Search in"
msgstr "Cerca a"
-#: www/include/Layout.class.php:833 www/include/Layout.class.php:865
-#: www/themes/gforge-simple-theme/Theme.class.php:681
-#: www/themes/gforge-simple-theme/Theme.class.php:737
-#: www/themes/gforge/Theme.class.php:480 www/themes/gforge/Theme.class.php:513
+#: www/include/Layout.class.php:825 www/include/Layout.class.php:857
+#: www/themes/gforge-simple-theme/Theme.class.php:680
+#: www/themes/gforge-simple-theme/Theme.class.php:736
+#: www/themes/gforge/Theme.class.php:486 www/themes/gforge/Theme.class.php:519
msgid "Select"
msgstr "Selecciona"
-#: www/include/Layout.class.php:833 www/include/Layout.class.php:865
+#: www/include/Layout.class.php:825 www/include/Layout.class.php:857
#: www/stats/site_stats_utils.php:145
-#: www/themes/gforge-simple-theme/Theme.class.php:681
-#: www/themes/gforge-simple-theme/Theme.class.php:737
-#: www/themes/gforge/Theme.class.php:480 www/themes/gforge/Theme.class.php:513
+#: www/themes/gforge-simple-theme/Theme.class.php:680
+#: www/themes/gforge-simple-theme/Theme.class.php:736
+#: www/themes/gforge/Theme.class.php:486 www/themes/gforge/Theme.class.php:519
msgid "all"
msgstr "tots"
-#: www/include/Layout.class.php:833 www/include/Layout.class.php:865
-#: www/themes/gforge-simple-theme/Theme.class.php:681
-#: www/themes/gforge-simple-theme/Theme.class.php:737
-#: www/themes/gforge/Theme.class.php:480 www/themes/gforge/Theme.class.php:513
+#: www/include/Layout.class.php:825 www/include/Layout.class.php:857
+#: www/themes/gforge-simple-theme/Theme.class.php:680
+#: www/themes/gforge-simple-theme/Theme.class.php:736
+#: www/themes/gforge/Theme.class.php:486 www/themes/gforge/Theme.class.php:519
#, fuzzy
msgid "none"
msgstr "Fet"
#: www/include/html.php:319 www/include/html.php:392 www/include/html.php:577
#: www/pm/browse_task.php:317 www/pm/browse_task.php:348
-#: www/pm/browse_task.php:359 www/tracker/browse.php:540
-#: www/tracker/browse.php:552 www/tracker/browse.php:556
+#: www/pm/browse_task.php:359 www/tracker/browse.php:537
+#: www/tracker/browse.php:549 www/tracker/browse.php:553
msgid "No Change"
msgstr "No hi ha canvis"
#: www/include/project_home.php:197 www/include/project_home.php:271
#: www/new/index.php:104 www/tracker/detail.php:170 www/tracker/detail.php:175
#: www/tracker/mod-limited.php:163 www/tracker/mod-limited.php:173
-#: www/tracker/mod.php:259 www/tracker/mod.php:269
+#: www/tracker/mod.php:258 www/tracker/mod.php:268
msgid "Download"
msgstr "Baixada"
msgid "Mailing Lists"
msgstr "Llistes d'enviament de correus"
-#: www/include/project_home.php:372
+#: www/include/project_home.php:373
#, fuzzy, php-format
msgid "(<strong>%1$s</strong> public mailing list)"
msgid_plural "(<strong>%1$s</strong> public mailing lists)"
msgstr[0] "<strong>%1$s</strong> projectes al conjunt de resultats."
msgstr[1] "<strong>%1$s</strong> projectes al conjunt de resultats."
-#: www/include/project_home.php:380
+#: www/include/project_home.php:381
msgid "Task Manager"
msgstr "Gestor de tasques"
-#: www/include/project_home.php:387
+#: www/include/project_home.php:388
msgid "There are no public subprojects available"
msgstr "No hi ha subprojectes públics disponibles"
-#: www/include/project_home.php:406
+#: www/include/project_home.php:407
msgid "surveys"
msgstr "enquestes"
-#: www/include/project_home.php:415 www/register/projectinfo.php:161
+#: www/include/project_home.php:416 www/register/projectinfo.php:162
#: www/scm/admin/index.php:39 www/scm/admin/index.php:92
#: www/scm/browser.php:33 www/scm/include/scm_utils.php:43
#: www/scm/index.php:32 www/scm/reporting/index.php:32
msgid "SCM Repository"
msgstr "Repositori SCM"
-#: www/include/project_home.php:437
+#: www/include/project_home.php:438
msgid "Anonymous FTP Space"
msgstr "Espai FTP anònim"
msgid "All trackers for my projects"
msgstr ""
-#: www/my/dashboard.php:64 www/my/index.php:394
+#: www/my/dashboard.php:64
msgid "You're not a member of any active projects"
msgstr "No sou membre de cap projecte actiu"
#: www/my/index.php:147 www/pm/add_task.php:52 www/pm/browse_task.php:91
#: www/pm/browse_task.php:180 www/pm/browse_task.php:349
#: www/pm/detail_task.php:42 www/pm/mod_task.php:59 www/tracker/add.php:67
-#: www/tracker/admin/form-customizelist.php:27 www/tracker/browse.php:159
-#: www/tracker/browse.php:372 www/tracker/browse.php:542
+#: www/tracker/admin/form-customizelist.php:27 www/tracker/browse.php:161
+#: www/tracker/browse.php:374 www/tracker/browse.php:539
#: www/tracker/detail.php:46 www/tracker/mod-limited.php:90
-#: www/tracker/mod.php:134 www/tracker/query.php:177
+#: www/tracker/mod.php:133 www/tracker/query.php:177
msgid "Priority"
msgstr "Prioritat"
#: www/my/dashboard.php:87 www/pm/add_task.php:108 www/pm/browse_task.php:178
#: www/pm/browse_task.php:356 www/pm/detail_task.php:83
-#: www/pm/mod_task.php:113 www/tracker/add.php:63 www/tracker/browse.php:374
-#: www/tracker/browse.php:551 www/tracker/detail.php:64
-#: www/tracker/mod-limited.php:87 www/tracker/mod.php:128
+#: www/pm/mod_task.php:113 www/tracker/add.php:63 www/tracker/browse.php:376
+#: www/tracker/browse.php:548 www/tracker/detail.php:64
+#: www/tracker/mod-limited.php:87 www/tracker/mod.php:127
#, fuzzy
msgid "Assigned to"
msgstr "Assignat a"
#: www/pm/mod_task.php:35
#: www/search/include/renderers/ArtifactHtmlSearchRenderer.class.php:45
#: www/search/include/renderers/TrackersHtmlSearchRenderer.class.php:37
-#: www/tracker/browse.php:376 www/tracker/detail.php:55
+#: www/tracker/browse.php:378 www/tracker/detail.php:55
#: www/tracker/mod-limited.php:59 www/tracker/mod.php:65
msgid "Submitted by"
msgstr "Tramès per"
msgstr ""
#: www/my/index.php:195 www/my/index.php:272 www/my/index.php:303
-#: www/my/index.php:376 www/my/rmproject.php:84
+#: www/my/index.php:372 www/my/rmproject.php:84
#: www/project/admin/users.php:275 www/project/admin/users.php:291
msgid "Remove"
msgstr "Suprimeix"
msgid "You are not monitoring any files."
msgstr "No esteu monitoritzant cap fitxer."
-#: www/my/index.php:338 www/my/index.php:343
+#: www/my/index.php:338
#, fuzzy
msgid "My Bookmarks"
msgstr "Edita enllaç d'interès"
-#: www/my/index.php:345
+#: www/my/index.php:343
#, fuzzy
msgid "Add bookmark"
msgstr "Edita enllaç d'interès"
-#: www/my/index.php:352
+#: www/my/index.php:349
msgid "You currently do not have any bookmarks saved."
msgstr ""
-#: www/my/index.php:362
+#: www/my/index.php:359
#, fuzzy
msgid "[Edit]"
msgstr "Edita"
-#: www/my/index.php:377
+#: www/my/index.php:373
msgid "My Projects"
msgstr "Els meus projectes"
-#: www/my/index.php:378
+#: www/my/index.php:374
#, fuzzy
msgid "My Roles"
msgstr "Rol"
+#: www/my/index.php:390
+#, fuzzy
+msgid "You're not a member of any active projects."
+msgstr "No sou membre de cap projecte actiu"
+
#: www/my/rmproject.php:63
msgid "Operation Not Permitted"
msgstr "Operació no permesa"
msgid "These items were approved this past week (total: %1$s)"
msgstr "Aquests elements es varen aprovar la setmana passada (total: %1$s)"
-#: www/news/index.php:37
+#: www/news/index.php:39
msgid ""
"<p>Choose a News item and you can browse, search, and post messages.</p>"
msgstr ""
"<p>Escolliu un element de les notícies i podreu navegar, cercar, i enviar "
"missatges.</p>"
-#: www/news/index.php:71
+#: www/news/index.php:73
#, fuzzy, php-format
msgid "No News Found For %s"
msgstr "No s'han trobat notícies"
-#: www/news/index.php:73
+#: www/news/index.php:75
msgid "No News Found"
msgstr "No s'han trobat notícies"
-#: www/news/index.php:76
+#: www/news/index.php:78
msgid "No items were found"
msgstr "No s'han trobat elements"
-#: www/news/news_utils.php:118 www/news/news_utils.php:252
+#: www/news/news_utils.php:118 www/news/news_utils.php:249
msgid "No News Items Found"
msgstr "No s'han trobat elements de notícies"
msgid "Read More/Comment"
msgstr "Llegeix-ne més/Comenta"
-#: www/news/news_utils.php:216
+#: www/news/news_utils.php:213
msgid "News archive"
msgstr "Arxiu de notícies"
-#: www/news/news_utils.php:228
+#: www/news/news_utils.php:225
msgid "Submit News"
msgstr "Tramet notícies"
-#: www/news/news_utils.php:286
+#: www/news/news_utils.php:283
#, fuzzy
msgid "Not Found"
msgstr "No se n'ha trobat cap"
#: www/people/people_utils.php:345 www/people/people_utils.php:401
#: www/pm/add_task.php:35 www/pm/browse_task.php:122
#: www/pm/browse_task.php:176 www/pm/browse_task.php:346
-#: www/pm/detail_task.php:30 www/pm/ganttpage.php:168 www/pm/mod_task.php:42
+#: www/pm/detail_task.php:30 www/pm/ganttpage.php:144 www/pm/mod_task.php:42
#: www/pm/mod_task.php:209 www/reporting/timeadd.php:165
#: www/snippet/package.php:146 www/snippet/submit.php:116
msgid "Category"
#: www/people/editprofile.php:273 www/people/skills_utils.php:36
#: www/people/skills_utils.php:143 www/pm/add_task.php:79
#: www/pm/browse_task.php:88 www/pm/browse_task.php:170
-#: www/pm/detail_task.php:49 www/pm/ganttpage.php:80 www/pm/mod_task.php:86
+#: www/pm/detail_task.php:49 www/pm/ganttpage.php:55 www/pm/mod_task.php:86
#: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:37
-#: www/tracker/detail.php:118 www/tracker/mod.php:213
+#: www/tracker/detail.php:118 www/tracker/mod.php:212
msgid "Start Date"
msgstr "Data d'inici"
#: www/people/editprofile.php:274 www/people/skills_utils.php:37
#: www/people/skills_utils.php:144 www/pm/add_task.php:94
#: www/pm/browse_task.php:89 www/pm/browse_task.php:172
-#: www/pm/detail_task.php:53 www/pm/ganttpage.php:81 www/pm/mod_task.php:100
+#: www/pm/detail_task.php:53 www/pm/ganttpage.php:56 www/pm/mod_task.php:100
#: www/reporting/usersummary.php:109
#: www/search/include/renderers/TasksHtmlSearchRenderer.class.php:38
-#: www/tracker/detail.php:119 www/tracker/mod.php:214
+#: www/tracker/detail.php:119 www/tracker/mod.php:213
msgid "End Date"
msgstr "Data final"
#: www/people/viewjob.php:80 www/pm/include/ProjectTaskHTML.class.php:94
#: www/project/report/index.php:137
-#: www/tracker/admin/form-customizelist.php:25 www/tracker/browse.php:161
-#: www/tracker/browse.php:366 www/tracker/query.php:179
+#: www/tracker/admin/form-customizelist.php:25 www/tracker/browse.php:163
+#: www/tracker/browse.php:368 www/tracker/query.php:179
msgid "Open Date"
msgstr "Data oberta"
msgstr "administració"
#: www/pm/add_task.php:48 www/pm/browse_task.php:90 www/pm/browse_task.php:174
-#: www/pm/detail_task.php:37 www/pm/ganttpage.php:82 www/pm/mod_task.php:54
+#: www/pm/detail_task.php:37 www/pm/ganttpage.php:57 www/pm/mod_task.php:54
msgid "Percent Complete"
msgstr "Tant per cent de compleció"
#: www/pm/add_task.php:59 www/pm/browse_task.php:87 www/pm/browse_task.php:168
-#: www/pm/detail_task.php:60 www/pm/ganttpage.php:79
+#: www/pm/detail_task.php:60 www/pm/ganttpage.php:54
#: www/pm/include/ProjectTaskHTML.class.php:56
#: www/pm/include/ProjectTaskHTML.class.php:92 www/pm/mod_task.php:66
-#: www/tracker/detail.php:117 www/tracker/mod.php:212
+#: www/tracker/detail.php:117 www/tracker/mod.php:211
msgid "Task Summary"
msgstr "Resum de la tasca"
msgstr "navega les tasques"
#: www/pm/browse_task.php:67 www/pm/browse_task.php:78
-#: www/pm/browse_task.php:121 www/pm/ganttpage.php:46 www/pm/ganttpage.php:63
-#: www/reporting/usersummary.php:54 www/tracker/browse.php:146
-#: www/tracker/browse.php:225 www/tracker/browse.php:230
+#: www/pm/browse_task.php:121 www/pm/ganttpage.php:43 www/pm/ganttpage.php:45
+#: www/pm/ganttpage.php:47 www/reporting/usersummary.php:54
+#: www/tracker/browse.php:148 www/tracker/browse.php:227
+#: www/tracker/browse.php:232 www/tracker/query.php:324
msgid "Any"
msgstr "Qualsevol"
#: www/pm/browse_task.php:69 www/pm/browse_task.php:314
-#: www/pm/ganttpage.php:51 www/tracker/browse.php:151
+#: www/pm/ganttpage.php:43 www/tracker/browse.php:153
msgid "Unassigned"
msgstr "No assignat"
#: www/pm/browse_task.php:86 www/pm/browse_task.php:166
-#: www/pm/ganttpage.php:78 www/pm/include/ProjectTaskHTML.class.php:55
-#: www/tracker/detail.php:116 www/tracker/mod.php:211
+#: www/pm/ganttpage.php:53 www/pm/include/ProjectTaskHTML.class.php:55
+#: www/tracker/detail.php:116 www/tracker/mod.php:210
msgid "Task Id"
msgstr "Id de la tasca"
msgid "Detailed"
msgstr ""
-#: www/pm/browse_task.php:120 www/pm/ganttpage.php:166
-#: www/tracker/browse.php:164 www/tracker/browse.php:305
+#: www/pm/browse_task.php:120 www/pm/ganttpage.php:142
+#: www/tracker/browse.php:166 www/tracker/browse.php:307
#: www/tracker/query.php:182 www/tracker/query.php:321
msgid "Assignee"
msgstr "Cessionari"
-#: www/pm/browse_task.php:123 www/pm/ganttpage.php:169
+#: www/pm/browse_task.php:123 www/pm/ganttpage.php:145
msgid "Sort On"
msgstr "Ordena a"
msgid "Detail View"
msgstr ""
-#: www/pm/browse_task.php:125 www/pm/ganttpage.php:172
+#: www/pm/browse_task.php:125 www/pm/ganttpage.php:148
#: www/snippet/snippet_utils.php:109
#: www/tracker/include/ArtifactTypeHtml.class.php:48
msgid "Browse"
msgid "next 50"
msgstr "les 50 següents"
-#: www/pm/browse_task.php:337 www/tracker/browse.php:517
+#: www/pm/browse_task.php:337 www/tracker/browse.php:514
msgid "Check all"
msgstr "Marca-ho tot"
-#: www/pm/browse_task.php:339 www/tracker/browse.php:519
+#: www/pm/browse_task.php:339 www/tracker/browse.php:516
msgid "Clear all"
msgstr "Suprimeix-ho tot"
-#: www/pm/browse_task.php:342 www/tracker/browse.php:522
+#: www/pm/browse_task.php:342 www/tracker/browse.php:519
msgid ""
"<strong>Admin:</strong> If you wish to apply changes to all items selected "
"above, use these controls to change their properties and click once on "
msgid "Subproject"
msgstr "Subprojecte"
-#: www/pm/browse_task.php:365 www/tracker/browse.php:565
+#: www/pm/browse_task.php:365 www/tracker/browse.php:562
msgid "Mass update"
msgstr "Actualització en massa"
msgid "Hours"
msgstr "Hores"
-#: www/pm/ganttpage.php:32 www/pm/ganttpage.php:184
+#: www/pm/ganttpage.php:30 www/pm/ganttpage.php:160
#: www/pm/include/ProjectGroupHTML.class.php:58
msgid "Gantt Chart"
msgstr "Gràfica de Gantt"
-#: www/pm/ganttpage.php:93 www/pm/ganttpage.php:97
+#: www/pm/ganttpage.php:74
+msgid "Years"
+msgstr ""
+
+#: www/pm/ganttpage.php:75 www/pm/ganttpage.php:79
msgid "Months"
msgstr "Mesos"
-#: www/pm/ganttpage.php:94
+#: www/pm/ganttpage.php:76
msgid "Weeks"
msgstr "Setmanes"
-#: www/pm/ganttpage.php:95 www/project/stats/project_stats_utils.php:203
+#: www/pm/ganttpage.php:77 www/project/stats/project_stats_utils.php:203
msgid "Days"
msgstr "Dies"
msgstr "No s'han afegit elements de rastreig relacionats"
#: www/pm/include/ProjectTaskHTML.class.php:124 www/tracker/detail.php:82
-#: www/tracker/mod-limited.php:127 www/tracker/mod.php:182
+#: www/tracker/mod-limited.php:127 www/tracker/mod.php:181
#: www/tracker/query.php:349
msgid "Followups"
msgstr ""
msgid "Time tracking"
msgstr ""
-#: www/pm/mod_task.php:206 www/reporting/sitetimebar.php:84
+#: www/pm/mod_task.php:206 www/reporting/sitetimebar.php:89
msgid "Week"
msgstr "Setmana"
msgid "Day"
msgstr "Dia"
-#: www/pm/mod_task.php:210 www/reporting/useract.php:70
+#: www/pm/mod_task.php:210 www/reporting/useract.php:74
#: www/reporting/usertime.php:84
msgid "User"
msgstr "Usuari"
"Descripció breu (màx. 255 caràcters, en aquesta definició s'hauria de deixar "
"de banda l'HTML)"
-#: www/project/admin/editgroupinfo.php:143 www/project/admin/index.php:164
+#: www/project/admin/editgroupinfo.php:143 www/project/admin/index.php:166
msgid "Homepage Link"
msgstr "Enllaç de la pàgina d'inici"
-#: www/project/admin/editgroupinfo.php:150 www/project/admin/index.php:171
+#: www/project/admin/editgroupinfo.php:150 www/project/admin/index.php:173
msgid "Visibility: "
msgstr ""
msgid "Use Statistics"
msgstr "Usa les estadístiques"
-#: www/project/admin/editgroupinfo.php:341 www/project/admin/index.php:255
+#: www/project/admin/editgroupinfo.php:341 www/project/admin/index.php:257
msgid ""
"If you wish, you can provide default email addresses to which new "
"submissions will be sent"
"Si ho desitgeu, podeu proporcionar adreces de correu per defecte a on "
"dirigir els nous enviaments"
-#: www/project/admin/editgroupinfo.php:342 www/project/admin/index.php:256
+#: www/project/admin/editgroupinfo.php:342 www/project/admin/index.php:258
msgid "New Document Submissions"
msgstr "Nous enviaments de documents"
-#: www/project/admin/editgroupinfo.php:344 www/project/admin/index.php:258
+#: www/project/admin/editgroupinfo.php:344 www/project/admin/index.php:260
msgid "(send on all updates)"
msgstr "(envia en totes les actualitzacions)"
msgid "Descriptive Project Name"
msgstr "Nom de grup descriptiu"
-#: www/project/admin/index.php:157
+#: www/project/admin/index.php:158
msgid "Tags (use comma as separator)"
msgstr ""
-#: www/project/admin/index.php:161
+#: www/project/admin/index.php:163
msgid "Trove Categorization: "
msgstr "Categorització en l'arbre de projectes: "
#: www/project/admin/massadd.php:69 www/project/admin/massfinish.php:67
-#: www/project/admin/roleedit.php:96 www/project/admin/roleedit.php:110
+#: www/project/admin/roleedit.php:98 www/project/admin/roleedit.php:110
#: www/project/admin/users.php:246
msgid "Edit Role"
msgstr "Edita Rol"
"de documents)</dt><dd>poden actualitzar/editar/eliminar documentació del "
"projecte.</dd></dl>"
-#: www/project/admin/roleedit.php:58 www/project/admin/roleedit.php:85
+#: www/project/admin/roleedit.php:60 www/project/admin/roleedit.php:87
#, fuzzy
msgid "Successfully Updated Role"
msgstr "Afegits amb èxit"
-#: www/project/admin/roleedit.php:79
+#: www/project/admin/roleedit.php:81
#, fuzzy
msgid "Successfully Created New Role"
msgstr "Element creat amb èxit"
msgstr[0] ""
msgstr[1] ""
-#: www/project/stats/index.php:42 www/project/stats/index.php:54
-#: www/reporting/projectact.php:50 www/reporting/projectact.php:53
+#: www/project/stats/index.php:45 www/project/stats/index.php:57
+#: www/reporting/projectact.php:54 www/reporting/projectact.php:57
msgid "Project Activity"
msgstr "Activitat de projecte"
-#: www/project/stats/index.php:59 www/reporting/projectact.php:59
-#: www/reporting/siteact.php:58 www/reporting/useract.php:71
+#: www/project/stats/index.php:62 www/reporting/projectact.php:63
+#: www/reporting/siteact.php:62 www/reporting/useract.php:75
msgid "Areas"
msgstr "Àrees"
"new projects."
msgstr ""
-#: www/register/projectinfo.php:103
+#: www/register/projectinfo.php:104
msgid "Registration complete"
msgstr "Registre complet"
-#: www/register/projectinfo.php:107
+#: www/register/projectinfo.php:108
#, php-format
msgid ""
"Your project has been submitted to the %1$s administrators. Within 72 hours, "
"termini de 72 hores, rebreu una notificació de la seva decisió i més "
"instruccions.</p><p>Gràcies per escollir %1$s"
-#: www/register/projectinfo.php:127
+#: www/register/projectinfo.php:128
msgid "Project Information"
msgstr "Informació del projecte"
-#: www/register/projectinfo.php:130
+#: www/register/projectinfo.php:131
msgid ""
"To apply for project registration, you should fill in basic information "
"about it. Please read descriptions below carefully and provide complete and "
"informació bàsica. Llegiu amb cura les descripcions més avall i proporcioneu "
"dades completes i comprensibles. Tots els camps de sota són obligatoris."
-#: www/register/projectinfo.php:135
+#: www/register/projectinfo.php:136
msgid ""
"<h3>1. Project full name</h3>You should start with specifying the name of "
"your project. The \"Full Name\" is descriptive, and has no arbitrary "
"restrictions (except a 40 character limit).<p/>Full Name:<br/>"
msgstr ""
-#: www/register/projectinfo.php:139
+#: www/register/projectinfo.php:140
#, php-format
msgid ""
"<h3>2. Project Purpose And Summarization</h3><strong> Please provide "
"prevista. Aquesta descripció no serà utilitzada com una descripció pública "
"del vostre projecte.</strong>"
-#: www/register/projectinfo.php:145
+#: www/register/projectinfo.php:146
#, fuzzy
msgid ""
"<h3>3. Project Public Description</h3><p>This is the description of your "
"descripció d'objectius del projecte (pas 2), sentiu-vos lliures per "
"utilitzar vocabulari concís i enganxós. La longitud màxima és de 255 cars."
-#: www/register/projectinfo.php:152
+#: www/register/projectinfo.php:153
#, php-format
msgid ""
"<h3>4. Project Unix Name</h3>In addition to full project name, you will need "
"li><li>Search engines throughout the site</li></ul><p/>Unix Name:<br/>"
msgstr ""
-#: www/register/projectinfo.php:160
+#: www/register/projectinfo.php:161
#, fuzzy
msgid ""
"<h3>5. SCM</h3><p>You can choose among different SCM for your project, but "
"però només un. Seleccioneu el sistema SCM que voleu usar.</p> <p><strong>Un "
"cop el projecte està registrat no podreu canviar-lo!</strong></p>"
-#: www/register/projectinfo.php:162
+#: www/register/projectinfo.php:163
#, fuzzy
msgid "No SCM"
msgstr "SCM"
-#: www/reporting/groupadded.php:48 www/reporting/groupadded.php:51
+#: www/reporting/groupadded.php:52 www/reporting/groupadded.php:55
msgid "Projects Added"
msgstr "Projectes afegits"
-#: www/reporting/groupcum.php:48 www/reporting/groupcum.php:51
+#: www/reporting/groupcum.php:52 www/reporting/groupcum.php:55
msgid "Cumulative Projects"
msgstr "Projectes acumulats"
msgid "Tracker Items Closed"
msgstr ""
-#: www/reporting/projecttime.php:51 www/reporting/projecttime.php:64
+#: www/reporting/projecttime.php:56 www/reporting/projecttime.php:69
msgid "Time Tracking By Project"
msgstr "Control de temps per projecte"
-#: www/reporting/projecttime.php:53 www/reporting/sitetime.php:51
+#: www/reporting/projecttime.php:58 www/reporting/sitetime.php:56
#: www/reporting/usertime.php:69
msgid "By Task"
msgstr "Per tasca"
-#: www/reporting/projecttime.php:55 www/reporting/sitetime.php:53
+#: www/reporting/projecttime.php:60 www/reporting/sitetime.php:58
#: www/reporting/usertime.php:71
msgid "By Subproject"
msgstr "Per subprojecte"
-#: www/reporting/projecttime.php:56 www/reporting/sitetime.php:54
+#: www/reporting/projecttime.php:61 www/reporting/sitetime.php:59
msgid "By User"
msgstr "Per usuari"
msgid "Press ONLY ONCE"
msgstr "Premeu-lo NOMÉS UN COP"
-#: www/reporting/siteact.php:51 www/reporting/siteact.php:54
+#: www/reporting/siteact.php:55 www/reporting/siteact.php:58
msgid "Site-Wide Activity"
msgstr "Activitat a tot el lloc"
-#: www/reporting/sitetime.php:49 www/reporting/sitetime.php:62
-#: www/reporting/sitetimebar.php:48 www/reporting/sitetimebar.php:51
+#: www/reporting/sitetime.php:54 www/reporting/sitetime.php:67
+#: www/reporting/sitetimebar.php:53 www/reporting/sitetimebar.php:56
msgid "Site-Wide Time Tracking"
msgstr "Rastreig de temps a tot el lloc"
"\"Testing\"."
msgstr ""
-#: www/reporting/toolspie.php:48 www/reporting/toolspie.php:55
+#: www/reporting/toolspie.php:53 www/reporting/toolspie.php:60
msgid "Tool Pie Graphs"
msgstr "Eina de gràfics de pastís"
-#: www/reporting/useract.php:51 www/reporting/useract.php:65
+#: www/reporting/useract.php:55 www/reporting/useract.php:69
msgid "User Activity"
msgstr "Activitat de l'usuari"
-#: www/reporting/useract.php:54
+#: www/reporting/useract.php:58
msgid ""
"Choose the <strong>First Letter</strong> of the name of the person you wish "
"to report on.<p>"
"Escolliu la <strong>Primera lletra</strong> del nom de la persona sobre la "
"qual voleu informar.<p>"
-#: www/reporting/useradded.php:48 www/reporting/useradded.php:51
+#: www/reporting/useradded.php:52 www/reporting/useradded.php:55
msgid "Users Added"
msgstr "Usuaris afegits"
-#: www/reporting/usercum.php:48 www/reporting/usercum.php:51
+#: www/reporting/usercum.php:52 www/reporting/usercum.php:55
msgid "Cumulative Users"
msgstr "Usuaris acumulats"
msgid "Error - This project has turned off SCM."
msgstr "Error aquest projecte ha desconnectat el CVS"
-#: www/scm/include/viewvc_utils.php:81
+#: www/scm/include/viewvc_utils.php:83
msgid ""
"The repository for this project isn't created yet. It will be created in the "
"next few minutes."
msgid "Paste the Code Here"
msgstr "Enganxeu el codi aquí"
-#: www/soap/index.php:162
+#: www/soap/index.php:163
msgid "en_US"
msgstr "en_US"
#: www/survey/admin/index.php:46
#, php-format
msgid ""
-"You can now activate/deactivate surveys on the %1$s Edit Existing Surveys %2"
-"$s page"
+"You can now activate/deactivate surveys on the %1$s Edit Existing Surveys "
+"%2$s page"
msgstr ""
#: www/survey/admin/question.php:59
#: www/terms.php:41
#, php-format
msgid ""
-"These are the terms and conditions under which you are allowed to use the %1"
-"$s service. They are empty by default, but the administrator(s) of the "
+"These are the terms and conditions under which you are allowed to use the "
+"%1$s service. They are empty by default, but the administrator(s) of the "
"service can use this page to publish their local requirements if needed."
msgstr ""
-#: www/themes/gforge-simple-theme/Theme.class.php:359
+#: www/themes/gforge-simple-theme/Theme.class.php:358
msgid "Project Tree"
msgstr "Arbre de projectes"
#: www/tracker/add.php:81 www/tracker/admin/form-customizelist.php:31
#: www/tracker/include/ArtifactHtml.class.php:43
-#: www/tracker/include/ArtifactHtml.class.php:52 www/tracker/mod.php:169
+#: www/tracker/include/ArtifactHtml.class.php:52 www/tracker/mod.php:168
#: www/tracker/query.php:347
msgid "Detailed description"
msgstr "Descripció detallada"
msgstr "NO entreu contrasenyes o informació confidencial al vostre missatge!"
#: www/tracker/add.php:107 www/tracker/detail.php:149
-#: www/tracker/mod-limited.php:143 www/tracker/mod.php:243
+#: www/tracker/mod-limited.php:143 www/tracker/mod.php:242
msgid "Attach Files"
msgstr ""
msgid "Submitted By"
msgstr "Tramès per"
-#: www/tracker/admin/form-customizelist.php:30 www/tracker/browse.php:162
-#: www/tracker/browse.php:368 www/tracker/query.php:180
+#: www/tracker/admin/form-customizelist.php:30 www/tracker/browse.php:164
+#: www/tracker/browse.php:370 www/tracker/query.php:180
msgid "Close Date"
msgstr "Data de tancament"
msgid "Element deleted"
msgstr "S'ha actualitzat un element"
-#: www/tracker/browse.php:163 www/tracker/query.php:181
+#: www/tracker/browse.php:165 www/tracker/query.php:181
msgid "Submitter"
msgstr "Remitent"
-#: www/tracker/browse.php:180 www/tracker/query.php:198
+#: www/tracker/browse.php:182 www/tracker/query.php:198
msgid "Ascending"
msgstr "Ascendent"
-#: www/tracker/browse.php:181 www/tracker/query.php:199
+#: www/tracker/browse.php:183 www/tracker/query.php:199
msgid "Descending"
msgstr "Descendent"
-#: www/tracker/browse.php:191 www/tracker/query.php:210
+#: www/tracker/browse.php:193 www/tracker/query.php:210
#, fuzzy
msgid "Any changes"
msgstr "Canvis"
-#: www/tracker/browse.php:192 www/tracker/query.php:211
+#: www/tracker/browse.php:194 www/tracker/query.php:211
msgid "Last 24H"
msgstr "Les últimes 24H"
-#: www/tracker/browse.php:193 www/tracker/query.php:212
+#: www/tracker/browse.php:195 www/tracker/query.php:212
msgid "Last 7days"
msgstr "Els últims 7dies"
-#: www/tracker/browse.php:194 www/tracker/query.php:213
+#: www/tracker/browse.php:196 www/tracker/query.php:213
msgid "Last 2weeks"
msgstr "Les últimes 2setmanes"
-#: www/tracker/browse.php:195 www/tracker/query.php:214
+#: www/tracker/browse.php:197 www/tracker/query.php:214
msgid "Last 1month"
msgstr "L'últim 1mes"
-#: www/tracker/browse.php:235
+#: www/tracker/browse.php:237
#, fuzzy
msgid "Advanced queries"
msgstr "Cerca avançada"
-#: www/tracker/browse.php:287
+#: www/tracker/browse.php:289
msgid "Power Query"
msgstr ""
-#: www/tracker/browse.php:289 www/tracker/browse.php:294
+#: www/tracker/browse.php:291 www/tracker/browse.php:296
#: www/tracker/query.php:237
msgid "Build Query"
msgstr ""
-#: www/tracker/browse.php:298
+#: www/tracker/browse.php:300
msgid "Simple Filtering and Sorting"
msgstr ""
-#: www/tracker/browse.php:312 www/tracker/query.php:354
+#: www/tracker/browse.php:314 www/tracker/query.php:354
msgid "Order by"
msgstr "Ordenats per"
-#: www/tracker/browse.php:317
+#: www/tracker/browse.php:319
msgid "Quick Browse"
msgstr ""
-#: www/tracker/browse.php:326
+#: www/tracker/browse.php:328
msgid "Default"
msgstr ""
-#: www/tracker/browse.php:327
+#: www/tracker/browse.php:329
msgid ""
"Viewing only opened records by default, use 'Advanced queries' or 'Simple "
"Filtering and Sorting' to change."
msgstr ""
-#: www/tracker/browse.php:552
-#: www/tracker/include/ArtifactTypeHtml.class.php:547
+#: www/tracker/browse.php:549
+#: www/tracker/include/ArtifactTypeHtml.class.php:552
msgid "Nobody"
msgstr "Ningú"
-#: www/tracker/browse.php:561
+#: www/tracker/browse.php:558
msgid "Canned Response"
msgstr "Resposta 'enllaunada'"
-#: www/tracker/browse.php:570
+#: www/tracker/browse.php:567
#, php-format
msgid "* Denotes requests > %1$s Days Old"
msgstr "* Denota requeriments de fa > %1$s dia"
-#: www/tracker/browse.php:579
+#: www/tracker/browse.php:576
msgid "No items found"
msgstr "No s'han trobat elements"
msgstr ""
#: www/tracker/detail.php:98 www/tracker/mod-limited.php:133
-#: www/tracker/mod.php:193
+#: www/tracker/mod.php:192
msgid "Followup"
msgstr "Followup"
#: www/tracker/detail.php:108 www/tracker/detail.php:111
-#: www/tracker/mod.php:203 www/tracker/mod.php:204
+#: www/tracker/mod.php:202 www/tracker/mod.php:203
msgid "Related Tasks"
msgstr ""
-#: www/tracker/detail.php:138 www/tracker/mod.php:233
+#: www/tracker/detail.php:138 www/tracker/mod.php:232
msgid "No Related Tasks"
msgstr ""
msgstr "Fitxers adjuntats"
#: www/tracker/detail.php:181 www/tracker/mod-limited.php:178
-#: www/tracker/mod.php:274
+#: www/tracker/mod.php:273
msgid "No Files Currently Attached"
msgstr "Actualment no hi ha fitxers adjuntats"
#: www/tracker/detail.php:195 www/tracker/detail.php:199
#: www/tracker/include/ArtifactHtml.class.php:176
-#: www/tracker/mod-limited.php:193 www/tracker/mod.php:290
+#: www/tracker/mod-limited.php:193 www/tracker/mod.php:289
msgid "Changes"
msgstr "Canvis"
msgid "Stop Monitor"
msgstr ""
-#: www/tracker/include/ArtifactTypeHtml.class.php:221
-#: www/tracker/include/ArtifactTypeHtml.class.php:228
+#: www/tracker/include/ArtifactTypeHtml.class.php:226
+#: www/tracker/include/ArtifactTypeHtml.class.php:233
#: www/tracker/query.php:330
#, php-format
msgid "(% for wildcards)"
msgstr ""
-#: www/tracker/include/ArtifactTypeHtml.class.php:527
+#: www/tracker/include/ArtifactTypeHtml.class.php:532
msgid ""
"Tip: Enter a space-separated list of artifact ids ([#NNN] also accepted)"
msgstr ""
msgid "Date Closed"
msgstr "Data tancada"
-#: www/tracker/mod-limited.php:130 www/tracker/mod.php:191
+#: www/tracker/mod-limited.php:130 www/tracker/mod.php:190
msgid "OR Attach A Comment"
msgstr "O Afegeix un comentari"
msgid "Data Type"
msgstr "Tipus de dades"
-#: www/tracker/mod.php:185
+#: www/tracker/mod.php:184
msgid "Use Canned Response"
msgstr "Usa una resposta 'enllaunada'"
-#: www/tracker/mod.php:240
+#: www/tracker/mod.php:239
msgid "Existing Files"
msgstr "Fitxers existents"
msgid "Create New Task"
msgstr "Crea una nova tasca"
-#: www/tracker/tracker.php:130
+#: www/tracker/tracker.php:131
msgid "Item Successfully Created"
msgstr "Element creat amb èxit"
-#: www/tracker/tracker.php:221
+#: www/tracker/tracker.php:222
#, fuzzy
msgid "Updated Successfully"
msgstr "Actualitzat amb èxit"
-#: www/tracker/tracker.php:284 www/tracker/tracker.php:303
+#: www/tracker/tracker.php:286 www/tracker/tracker.php:305
#, fuzzy
msgid "Comment added"
msgstr "Comentari"
-#: www/tracker/tracker.php:337 www/tracker/tracker.php:356
+#: www/tracker/tracker.php:354
#, fuzzy
msgid "File Upload: Error"
msgstr "Error de pujada de fitxer desconegut."
-#: www/tracker/tracker.php:340 www/tracker/tracker.php:359
+#: www/tracker/tracker.php:357
msgid "File Upload: Successful"
msgstr "Fitxer pujat: amb èxit"
-#: www/tracker/tracker.php:381
+#: www/tracker/tracker.php:378
msgid "File Delete:"
msgstr "Suprimeix el fitxer:"
-#: www/tracker/tracker.php:384
+#: www/tracker/tracker.php:381
msgid "File Delete: Successful"
msgstr "Fitxer suprimit amb èxit"
-#: www/tracker/tracker.php:421 www/tracker/tracker.php:438
+#: www/tracker/tracker.php:419 www/tracker/tracker.php:436
#, fuzzy
msgid "Monitoring Started"
msgstr "Monitorització iniciada"
-#: www/tracker/tracker.php:423 www/tracker/tracker.php:440
+#: www/tracker/tracker.php:421 www/tracker/tracker.php:438
#, fuzzy
msgid "Monitoring Deactivated"
msgstr "Monitorització desactivada"
-#: www/tracker/tracker.php:489
+#: www/tracker/tracker.php:487
msgid "Confirmation failed. Artifact not deleted"
msgstr ""
-#: www/tracker/tracker.php:493
+#: www/tracker/tracker.php:491
msgid "Artifact Delete Failed"
msgstr ""
-#: www/tracker/tracker.php:495
+#: www/tracker/tracker.php:493
msgid "Artifact Deleted Successfully"
msgstr ""
msgstr "Dokumenten-Gruppe: Der Name wird benötigt"
#: common/docman/DocumentGroup.class.php:107
-#: common/docman/DocumentGroup.class.php:219
+#: common/docman/DocumentGroup.class.php:267
msgid "DocumentGroup: Invalid DocumentGroup parent ID"
msgstr "Dokumenten-Gruppe: ungültige parent-ID für die Gruppe"
msgid "Group name already exists"
msgstr "Gruppenname bereits verwendet"
-#: common/docman/DocumentGroup.class.php:152
+#: common/docman/DocumentGroup.class.php:200
msgid "DocumentGroup: Invalid DocumentGroup ID"
msgstr "Dokumenten-Gruppe: Ungültige Dokumenten-Gruppen-ID (DocumentGroup ID)"
msgid "Group_id in db result does not match Group Object"
msgstr "Group_id Datenbank-Ergebnis stimmt nicht mit Gruppen-Objekt überein"
-#: common/forum/Forum.class.php:121 common/forum/Forum.class.php:594
+#: common/forum/Forum.class.php:121 common/forum/Forum.class.php:593
msgid "Forum Name Must Be At Least 3 Characters"
msgstr "Der Forenname muss mindestens 3 Buchstaben lang sein"
-#: common/forum/Forum.class.php:125 common/forum/Forum.class.php:598
+#: common/forum/Forum.class.php:125 common/forum/Forum.class.php:597
msgid "Forum Description Must Be At Least 10 Characters"
msgstr "Die Foren-Beschreibung muss mindestens 10 Buchstaben lang sein"
-#: common/forum/Forum.class.php:130 common/forum/Forum.class.php:603
+#: common/forum/Forum.class.php:129 common/forum/Forum.class.php:601
msgid "Illegal Characters in Forum Name"
msgstr "Illegale Zeichen im Forenname"
-#: common/forum/Forum.class.php:148
+#: common/forum/Forum.class.php:147
msgid "Mailing List Exists with same name"
msgstr "Mailingliste mit gleichem Namen existiert bereits"
-#: common/forum/Forum.class.php:182
+#: common/forum/Forum.class.php:181
msgid "Error Adding Forum"
msgstr "Fehler beim Anlegen eines Forums"
-#: common/forum/Forum.class.php:207 www/account/first.php:29
+#: common/forum/Forum.class.php:206 www/account/first.php:29