+{/if}
+
+{if $closed and (!$isOwner and !$isMember)}
+
{blocktrans}This issue is marked as closed, add a comment only if you think this issue is still valid and more work is needed to fully fix it.{/blocktrans}
'.sprintf(__('Change of %2$s, by %3$s'), $url, Pluf_esc($page->title), $user).'
';
+ return Pluf_Template::markSafe($out);
+ }
+
+ public function feedFragment($request)
+ {
+ $page = $this->get_wikipage();
+ $url = Pluf::f('url_base')
+ .Pluf_HTTP_URL_urlForView('IDF_Views_Wiki::viewPage',
+ array($request->project->shortname,
+ $page->title),
+ array('rev' => $this->id));
+
+ $title = sprintf(__('%1$s: Documentation page %2$s updated - %3$s'),
+ $request->project->name,
+ $page->title, $page->summary);
+ $date = Pluf_Date::gmDateToGmString($this->creation_dtime);
+ $context = new Pluf_Template_Context_Request(
+ $request,
+ array('url' => $url,
+ 'title' => $title,
+ 'page' => $page,
+ 'rev' => $this,
+ 'create' => false,
+ 'date' => $date)
+ );
+ $tmpl = new Pluf_Template('idf/wiki/feedfragment-page.xml');
+ return $tmpl->render($context);
+ }
+
+
+
+ /**
+ * Notification of change of a Wiki Page.
+ *
+ * The content of a WikiPage is in the IDF_WikiRevision object,
+ * this is why we send the notificatin from there. This means that
+ * when the create flag is set, this is for the creation of a
+ * wikipage and not, for the addition of a new revision.
+ *
+ * Usage:
+ *
+ * $this->notify($conf); // Notify the creation of a wiki page
+ * $this->notify($conf, false); // Notify the update of the page
+ *
+ *
+ * @param IDF_Conf Current configuration
+ * @param bool Creation (true)
+ */
+ public function notify($conf, $create=true)
+ {
+ $wikipage = $this->get_wikipage();
+ $project = $wikipage->get_project();
+ $current_locale = Pluf_Translation::getLocale();
+
+ $from_email = Pluf::f('from_email');
+ $messageId = '<'.md5('wiki'.$wikipage->id.md5(Pluf::f('secret_key'))).'@'.Pluf::f('mail_host', 'localhost').'>';
+ $recipients = $project->getNotificationRecipientsForTab('wiki');
+
+ foreach ($recipients as $address => $language) {
+
+ if ($this->get_submitter()->email === $address) {
+ continue;
+ }
+
+ Pluf_Translation::loadSetLocale($language);
+
+ $context = new Pluf_Template_Context(array(
+ 'page' => $wikipage,
+ 'rev' => $this,
+ 'project' => $project,
+ 'url_base' => Pluf::f('url_base'),
+ ));
+
+ $tplfile = 'idf/wiki/wiki-created-email.txt';
+ $subject = __('New Documentation Page %1$s - %2$s (%3$s)');
+ $headers = array('Message-ID' => $messageId);
+ if (!$create) {
+ $tplfile = 'idf/wiki/wiki-updated-email.txt';
+ $subject = __('Documentation Page Changed %1$s - %2$s (%3$s)');
+ $headers = array('References' => $messageId);
+ }
+
+ $tmpl = new Pluf_Template($tplfile);
+ $text_email = $tmpl->render($context);
+
+ $email = new Pluf_Mail($from_email,
+ $address,
+ sprintf($subject,
+ $wikipage->title,
+ $wikipage->summary,
+ $project->shortname));
+ $email->addTextMessage($text_email);
+ $email->addHeaders($headers);
+ $email->sendMail();
+ }
+
+ Pluf_Translation::loadSetLocale($current_locale);
+ }
+}
diff --git a/indefero/src/IDF/Wiki/Resource.php b/indefero/src/IDF/Wiki/Resource.php
new file mode 100644
index 0000000..487cf1a
--- /dev/null
+++ b/indefero/src/IDF/Wiki/Resource.php
@@ -0,0 +1,204 @@
+_a['table'] = 'idf_wikiresources';
+ $this->_a['model'] = __CLASS__;
+ $this->_a['cols'] = array(
+ // It is mandatory to have an "id" column.
+ 'id' =>
+ array(
+ 'type' => 'Pluf_DB_Field_Sequence',
+ 'blank' => true,
+ ),
+ 'project' =>
+ array(
+ 'type' => 'Pluf_DB_Field_Foreignkey',
+ 'model' => 'IDF_Project',
+ 'blank' => false,
+ 'verbose' => __('project'),
+ 'relate_name' => 'wikipages',
+ ),
+ 'title' =>
+ array(
+ 'type' => 'Pluf_DB_Field_Varchar',
+ 'blank' => false,
+ 'size' => 250,
+ 'verbose' => __('title'),
+ 'help_text' => __('The title of the resource must only contain letters, digits, dots or the dash character. For example: my-resource.png.'),
+ ),
+ 'mime_type' =>
+ array(
+ 'type' => 'Pluf_DB_Field_Varchar',
+ 'blank' => false,
+ 'size' => 100,
+ 'verbose' => __('MIME media type'),
+ 'help_text' => __('The MIME media type of the resource.'),
+ ),
+ 'summary' =>
+ array(
+ 'type' => 'Pluf_DB_Field_Varchar',
+ 'blank' => false,
+ 'size' => 250,
+ 'verbose' => __('summary'),
+ 'help_text' => __('A one line description of the resource.'),
+ ),
+ 'submitter' =>
+ array(
+ 'type' => 'Pluf_DB_Field_Foreignkey',
+ 'model' => 'Pluf_User',
+ 'blank' => false,
+ 'verbose' => __('submitter'),
+ 'relate_name' => 'submitted_wikipages',
+ ),
+ 'creation_dtime' =>
+ array(
+ 'type' => 'Pluf_DB_Field_Datetime',
+ 'blank' => true,
+ 'verbose' => __('creation date'),
+ ),
+ 'modif_dtime' =>
+ array(
+ 'type' => 'Pluf_DB_Field_Datetime',
+ 'blank' => true,
+ 'verbose' => __('modification date'),
+ ),
+ );
+ $this->_a['idx'] = array(
+ 'modif_dtime_idx' =>
+ array(
+ 'col' => 'modif_dtime',
+ 'type' => 'normal',
+ ),
+ );
+ }
+
+ function __toString()
+ {
+ return $this->title.' - '.$this->summary;
+ }
+
+ /**
+ * We drop the information from the timeline.
+ */
+ function preDelete()
+ {
+ IDF_Timeline::remove($this);
+ IDF_Search::remove($this);
+ }
+
+ function get_current_revision()
+ {
+ $true = Pluf_DB_BooleanToDb(true, $this->getDbConnection());
+ $rev = $this->get_revisions_list(array('filter' => 'is_head='.$true,
+ 'nb' => 1));
+ return ($rev->count() == 1) ? $rev[0] : null;
+ }
+
+ function preSave($create=false)
+ {
+ if ($this->id == '') {
+ $this->creation_dtime = gmdate('Y-m-d H:i:s');
+ }
+ $this->modif_dtime = gmdate('Y-m-d H:i:s');
+ }
+
+ function postSave($create=false)
+ {
+ // Note: No indexing is performed here. The indexing is
+ // triggered in the postSave step of the revision to ensure
+ // that the page as a given revision in the database when
+ // doing the indexing.
+ if ($create) {
+ IDF_Timeline::insert($this, $this->get_project(),
+ $this->get_submitter());
+ }
+ }
+
+ /**
+ * Returns an HTML fragment used to display this resource in the
+ * timeline.
+ *
+ * The request object is given to be able to check the rights and
+ * as such create links to other items etc. You can consider that
+ * if displayed, you can create a link to it.
+ *
+ * @param Pluf_HTTP_Request
+ * @return Pluf_Template_SafeString
+ */
+ public function timelineFragment($request)
+ {
+ $url = Pluf_HTTP_URL_urlForView('IDF_Views_Wiki::viewResource',
+ array($request->project->shortname,
+ $this->title));
+ $out = '
'.sprintf(__('Change of %2$s, by %3$s'), $url, Pluf_esc($resource->title), $user).'
';
+ return Pluf_Template::markSafe($out);
+ }
+
+ public function feedFragment($request)
+ {
+ $resource = $this->get_wikiresource();
+ $url = Pluf::f('url_base')
+ .Pluf_HTTP_URL_urlForView('IDF_Views_Wiki::viewResource',
+ array($request->project->shortname,
+ $resource->title),
+ array('rev' => $this->id));
+
+ $title = sprintf(__('%1$s: Documentation resource %2$s updated - %3$s'),
+ $request->project->name,
+ $resource->title, $resource->summary);
+ $date = Pluf_Date::gmDateToGmString($this->creation_dtime);
+ $context = new Pluf_Template_Context_Request(
+ $request,
+ array('url' => $url,
+ 'title' => $title,
+ 'resource' => $resource,
+ 'rev' => $this,
+ 'create' => false,
+ 'date' => $date)
+ );
+ $tmpl = new Pluf_Template('idf/wiki/feedfragment-resource.xml');
+ return $tmpl->render($context);
+ }
+}
diff --git a/indefero/src/IDF/conf/idf.php b/indefero/src/IDF/conf/idf.php
new file mode 100644
index 0000000..43a0e89
--- /dev/null
+++ b/indefero/src/IDF/conf/idf.php
@@ -0,0 +1,561 @@
+/dev/null | base64 -w 0
+$cfg['secret_key'] = '';
+
+# ---------------------------------------------------------------------------- #
+# Debug section #
+# ---------------------------------------------------------------------------- #
+
+# In debug mode Indefero renders stack traces in case of an error that include
+# more information about a specific problem. Since these stack traces often
+# contain sensible data, this option MUST BE DEACTIVATED in production mode.
+# (see $cfg['admins'] below to learn how you can still be notified about
+# problems without 'debug' being enabled).
+$cfg['debug'] = true;
+
+
+# This is used to help generate the stats at the bottom of the page
+# This can also be used to help debug DB issues as it will get passed
+# to Pluf_DB_Stats_getConnection as the debug parameter
+# If you set this to false then the query stats will not be shown
+$cfg['db_debug'] = true;
+
+
+# ---------------------------------------------------------------------------- #
+# Path section #
+# ---------------------------------------------------------------------------- #
+
+# Temporary folder where the application is writing compiled templates,
+# cached data and other temporary resources to.
+# It must be writeable by your webserver instance.
+$cfg['tmp_folder'] = '/tmp';
+
+# Path to the PEAR folder
+$cfg['pear_path'] = '/usr/share/php';
+
+# Path to the upload folder
+$cfg['upload_path'] = '/home/www/indefero/www/media/upload';
+
+# The following path MUST NOT be accessible through a web browser,
+# as user will otherwise be able to upload executable files (*.php) and
+# this can create TERRIBLE security issues. In this folder, the attachments
+# to the issues will be uploaded and we do not restrict the content type.
+$cfg['upload_issue_path'] = '/home/www/indefero/attachments';
+
+# If your SCM binary is not accessible for the web user (for example, because
+# it is not in the system PATH), you can enter the full path to it here.
+$cfg['svn_path'] = 'svn';
+$cfg['svnlook_path'] = 'svnlook';
+$cfg['svnadmin_path'] = 'svnadmin';
+$cfg['hg_path'] = 'hg';
+$cfg['git_path'] = 'git';
+$cfg['mtn_path'] = 'mtn';
+
+# The monotone backend allow you to add extra options for the started monotone
+# process; please keep the default if unsure.
+$cfg['mtn_opts'] = array('--no-workspace', '--no-standard-rcfiles');
+
+
+# ---------------------------------------------------------------------------- #
+# URL section #
+# ---------------------------------------------------------------------------- #
+
+# Examples:
+# You have:
+# http://www.mydomain.com/myfolder/index.php
+# Put:
+# $cfg['idf_base'] = '/myfolder/index.php';
+# $cfg['url_base'] = 'http://www.mydomain.com';
+#
+# You have mod_rewrite:
+# http://www.mydomain.com/
+# Put:
+# $cfg['idf_base'] = '/index.php';
+# $cfg['url_base'] = 'http://www.mydomain.com';
+#
+$cfg['idf_base'] = '';
+$cfg['url_base'] = 'http://www.mydomain.com';
+
+# URL to access the media folder which is in the www folder
+# of the distribution archive
+$cfg['url_media'] = 'https://www.mydomain.com/media';
+
+# URL to access a folder in which the files you upload through
+# the downloads tab will be stored.
+$cfg['url_upload'] = 'https://mydomain.com/media/upload';
+
+
+# ---------------------------------------------------------------------------- #
+# Internationalization section #
+# ---------------------------------------------------------------------------- #
+
+# Enter a valid time zone here to ensure that external timestamps, coming from
+# the SCM for example, are translated into this time zone.
+# A list of available time zones can be found at
+#
+$cfg['time_zone'] = 'America/Chicago';
+
+# Configure which languages should be available in your forge.
+# If you want to enable an additional language, ensure that the
+# language file in question resides in 'src/IDF/locale'.
+$cfg['languages'] = array('en', 'fr', 'de', 'es_ES', 'ru');
+
+
+# ---------------------------------------------------------------------------- #
+# Email section #
+# ---------------------------------------------------------------------------- #
+#
+# Indefero uses the PEAR Mail class to send mails. Available mail backend are:
+#
+# - The PHP Mail built-in function (mail)
+# - Sendmail (sendmail)
+# - Simple Mail Transfer Protocol (smtp)
+#
+# Sendmail and SMTP need extra configuration, see the examples below.
+#
+
+# This is a general lock to enable or disable the mail sending process.
+# True enables mail sending, false disables it.
+$cfg['send_emails'] = true;
+
+# The mail backend to use: mail, sendmail, or smtp
+$cfg['mail_backend'] = 'mail';
+
+# Mails sent by indefero will have thoses headers:
+$cfg['from_email'] = 'email@mydomain.com';
+
+$cfg['bounce_email'] = ' ';
+
+# The following persons will get an email in case of errors, i.e. when the
+# system is in not in debug mode (see $cfg['debug'] above).
+$cfg['admins'] = array(
+ array('Bob', 'bob@example.com'),
+);
+
+##
+## Example SMTP configuration
+##
+## The server to connect. Default is localhost
+#$cfg['mail_host'] = 'localhost';
+## The port to connect. Default is 25
+#$cfg['mail_port'] = 25;
+## The username to use for SMTP authentication.
+#$cfg['mail_username'] = '';
+## The password to use for SMTP authentication.
+#$cfg['mail_password'] = '';
+## The value to give when sending EHLO or HELO. Default is localhost
+#$cfg['mail_localhost'] = 'localhost';
+## The SMTP connection timeout. Default is NULL (no timeout)
+#$cfg['mail_timeout'] = NULL;
+## Whether to use VERP or not. Default is FALSE
+#$cfg['mail_verp'] = FALSE;
+
+##
+## Example sendmail configuration
+##
+## The location of the sendmail program on the filesystem.
+## Default is /usr/bin/sendmail
+#$cfg['mail_sendmail_path'] = '/usr/bin/sendmail';
+## Additional parameters to pass to the sendmail. Default is -i
+#$cfg['sendmail_args'] = '-i';
+
+
+# ---------------------------------------------------------------------------- #
+# Database section #
+# ---------------------------------------------------------------------------- #
+#
+# WARNING: DO NOT USE SQLITE IN PRODUCTION
+#
+# This is not because of problems with the quality of the SQLite
+# driver or with SQLite itself, but due to the lack of migration
+# support in Pluf for SQLite. This means we cannot modify the DB
+# easily once it is loaded with data.
+#
+
+# Enter one of the supported database engines: SQLite, MySQL, or PostgreSQL
+$cfg['db_engine'] = 'MySQL';
+
+# The database name for MySQL and PostgreSQL, and the absolute path
+# to the database file if you are using SQLite.
+$cfg['db_database'] = 'indefero';
+
+# The database server to connect.
+$cfg['db_server'] = '';
+
+# Information about the database user.
+$cfg['db_login'] = 'indefero';
+$cfg['db_password'] = '';
+
+# The version of your database server, only needed for MySQL
+$cfg['db_version'] = '5.1';
+
+# A prefix for your table name; this can be useful if you plan to run
+# multiple indefero installations on the same database instance.
+$cfg['db_table_prefix'] = 'indefero_';
+
+
+# ---------------------------------------------------------------------------- #
+# Cache section #
+# ---------------------------------------------------------------------------- #
+
+# The cache is used to speed up the operations of most of the SCM commands.
+#
+# Indefero supports three methods to handle the cache, and you need to
+# configure it with one of them:
+#
+# - Files (Pluf_Cache_File)
+# - Alternative PHP Cache (Pluf_Cache_Apc)
+# - Memcached (Pluf_Cache_Memcached)
+#
+# Both, APC and Memcached, need additional extensions to be compiled into
+# your PHP installation, so the easiest is to use the file-based cache
+# for an initial setup.
+#
+# For more information on APC, see .
+# Memcached is documented at .
+#
+$cfg['cache_engine'] = 'Pluf_Cache_File';
+$cfg['cache_timeout'] = 300;
+$cfg['cache_file_folder'] = $cfg['tmp_folder'].'/cache';
+
+#$cfg['cache_engine'] = 'Pluf_Cache_Apc';
+#$cfg['cache_timeout'] = 300;
+#$cfg['cache_apc_keyprefix'] = 'uniqueforapp';
+#$cfg['cache_apc_compress'] = true;
+
+#$cfg['cache_engine'] = 'Pluf_Cache_Memcached';
+#$cfg['cache_timeout'] = 300;
+#$cfg['cache_memcached_keyprefix'] = 'uniqueforapp';
+#$cfg['cache_memcached_server'] = 'localhost';
+#$cfg['cache_memcached_port'] = 11211;
+#$cfg['cache_memcached_compress'] = MEMCACHE_COMPRESSED;
+
+
+# ---------------------------------------------------------------------------- #
+# Git SCM section #
+# ---------------------------------------------------------------------------- #
+#
+# Read the file 'doc/syncgit.mdtext' for more information
+#
+
+# Uncomment this line to enable git support.
+$cfg['allowed_scm']['git'] = 'IDF_Scm_Git';
+
+# The path to the git repositories. '%s' is replaced with the project name.
+# Do not forget to give read access to these folders to your www user,
+# for example by adding the www user to the git group.
+$cfg['git_repositories'] = '/home/git/repositories/%s.git';
+
+# Git URL for public access to a repository. '%s' is again replaced with
+# the project name. See 'doc/syncgit.mdtext' for the git-daemon configuration.
+$cfg['git_remote_url'] = 'git://mydomain.com/%s.git';
+
+# Git URL for private / write access to a repository. Again, '%s' is replaced
+# with the name of the project. See 'doc/syncgit.mdtext' for more information
+# about SSH authentification
+['git_write_remote_url'] = 'ssh://git@mydomain.com/%s.git';
+
+# The 'core.quotepath' option is configured on all new repositories created by
+# indefero. This option disable characters to be escaped, when git commands run
+# on an UTF-8 shell.
+#
+# - true: All characters above 0x80 will be escaped (default)
+# - false: Characters are printed directly, which for example enables
+# accented characters in an UTF-8 shell
+#
+# If you see malformed filenames in the source view, try to set this to false.
+# $cfg['git_core_quotepath'] = false;
+
+# Path to the gitserve.py script
+$cfg['idf_plugin_syncgit_path_gitserve'] = '/home/www/indefero/scripts/gitserve.py';
+
+# Path to the 'authorized_keys' file of your git user
+$cfg['idf_plugin_syncgit_path_authorized_keys'] = '/home/git/.ssh/authorized_keys';
+
+# Path to the temporary file for key synchronization
+$cfg['idf_plugin_syncgit_sync_file'] = '/tmp/SYNC-GIT';
+
+# Path to the git home
+$cfg['idf_plugin_syncgit_git_home_dir'] = '/home/git';
+
+# Path to the folder which contains all git repositories
+$cfg['idf_plugin_syncgit_base_repositories'] = '/home/git/repositories';
+
+# Set a custom git-post-update script. Use this only, if you know you are doing!
+# $cfg['idf_plugin_syncgit_post_update'] = '/my/script';
+
+# Automatically delete git repositories of deleted projects
+# $cfg['idf_plugin_syncgit_remove_orphans'] = true;
+
+
+# ---------------------------------------------------------------------------- #
+# SVN SCM section #
+# ---------------------------------------------------------------------------- #
+#
+# Read the file doc/syncsvn.mdtext for more information
+#
+
+# Uncomment this line to enable the SVN support.
+$cfg['allowed_scm']['svn'] = 'IDF_Scm_Svn';
+
+# In case of subversion, you can either use a local or a remote repository.
+# The forge admin can configure a remote repository directly from the
+# web interface. Local repositories cannot be configured from there,
+# for security reasons, but have to be defined here.
+# '%s' is replaced with the project name.
+$cfg['svn_repositories'] = 'file:///home/svn/repositories/%s';
+
+# The HTTP URL to the local SVN repository.
+# We add 'trunk' to invite people to checkout the trunk of the project.
+# Again, '%s' is replaced with the project name.
+$cfg['svn_remote_url'] = 'https://mydomain.com/svn/%s/trunk';
+
+# Path to the authentification files for dav_svn
+$cfg['idf_plugin_syncsvn_authz_file'] = '/home/svn/dav_svn.authz';
+$cfg['idf_plugin_syncsvn_passwd_file'] = '/home/svn/dav_svn.passwd';
+
+# Path to the folder which contains all SVN repositories
+$cfg['idf_plugin_syncsvn_svn_path'] = '/home/svn/repositories';
+
+# You can customize permissions for each user group.
+# $cfg['idf_plugin_syncsvn_access_owners'] = 'rw';
+# $cfg['idf_plugin_syncsvn_access_members'] = 'rw';
+# $cfg['idf_plugin_syncsvn_access_extra'] = 'r';
+# $cfg['idf_plugin_syncsvn_access_public'] = 'r';
+# $cfg['idf_plugin_syncsvn_access_private'] = '';
+
+# Automatically delete local SVN repositories of deleted projects
+# $cfg['idf_plugin_syncsvn_remove_orphans'] = true;
+
+
+# ---------------------------------------------------------------------------- #
+# Mercurial SCM section #
+# ---------------------------------------------------------------------------- #
+#
+# Read the file doc/syncmercurial.mdtext for more information
+#
+
+# Uncomment this line to enable the Mercurial support.
+$cfg['allowed_scm']['mercurial'] = 'IDF_Scm_Mercurial';
+
+# The path to mercurial repositories. '%s' is replaced with the project name.
+$cfg['mercurial_repositories'] = '/home/mercurial/repositories/%s';
+
+$cfg['mercurial_remote_url'] = 'https://mydomain.com/hg/%s';
+
+$cfg['idf_plugin_syncmercurial_hgrc'] = array(
+ 'web' => array('push_ssl' => 'true',
+ 'allow_push' => '',
+ 'description' => '',
+ 'allow_archive' => 'bz2, zip, gz',
+ 'style' => 'gitweb',
+ 'contact' => ''),
+ 'hooks' => array(),
+ 'extensions' => array(),
+);
+
+# Based on the paths provided in the Apache configuration,
+# you need to setup the following lines.
+$cfg['idf_plugin_syncmercurial_passwd_file'] = '/home/mercurial/.htpasswd';
+$cfg['idf_plugin_syncmercurial_path'] = '/home/mercurial/repositories';
+$cfg['idf_plugin_syncmercurial_private_notify'] = '/home/mercurial/tmp/notify.tmp';
+$cfg['idf_plugin_syncmercurial_private_url'] = '/hg/%s';
+
+# Authentification file for private repositories
+// $cfg['idf_plugin_syncmercurial_private_include'] = '/home/mercurial/scripts/private_indefero.conf';
+$cfg['idf_plugin_syncmercurial_private_include'] = '/home/www/indefero/scripts/private_indefero.conf';
+
+# Password storage type (see 'doc/syncmercurial.mdtext')
+# $cfg['idf_plugin_syncmercurial_passwd_mode'] = 'sha';
+
+
+# ---------------------------------------------------------------------------- #
+# Monotone SCM section #
+# ---------------------------------------------------------------------------- #
+#
+# Read the file doc/syncmonotone.mdtext for more information
+#
+
+# Uncomment this line to enable the monotone support.
+# $cfg['allowed_scm']['mtn'] = 'IDF_Scm_Monotone';
+
+# The path to a specific database (local use) or a writable project
+# directory (remote / usher use). '%s' is replaced with the project name.
+$cfg['mtn_repositories'] = '/home/mtn/repositories/%s.mtn';
+
+# The URL which is displayed as sync URL to the user and which is also
+# used to connect to a remote usher.
+$cfg['mtn_remote_url'] = 'mtn://example.com/%s';
+
+# Whether the particular database(s) are accessed locally (via automate stdio)
+# or remotely (via automate remote_stdio). 'remote' is the default for
+# use with usher and the SyncMonotone plugin, while 'local' access should be
+# choosed for manual setups and / or ssh access.
+$cfg['mtn_db_access'] = 'local';
+
+# Needs to be configured for remote / usher usage.
+# This allows basic control of a running usher process via the forge
+# administration. The variable must point to the full (writable)
+# path of the usher configuration file which gets updated when new projects
+# are added.
+# $cfg['mtn_usher_conf'] = '/var/lib/usher/usher.conf';
+
+# Full path to the directory tree which contains default configuration files
+# that are automatically created for new projects. This is only needed
+# if $cfg['mtn_db_access'] is set to remote, i.e. in case the SyncMonotone
+# plugin should be used. If unset, it defaults to the tree underknees
+# src/IDF/Plugin/SyncMonotone/. Don't forget the trailing slash!
+# $cfg['mtn_confdir'] = '/path/to/dir/tree/';
+
+# Additional configuration files you want to create / copy for new setups.
+# All these file paths have to be relative to $cfg['mtn_confdir'].
+# $cfg['mtn_confdir_extra'] = array('hooks.d/something.lua')
+
+
+# ---------------------------------------------------------------------------- #
+# Hacker section (for advanced users) #
+# ---------------------------------------------------------------------------- #
+
+$cfg['installed_apps'] = array('Pluf', 'IDF');
+
+$cfg['pluf_use_rowpermission'] = true;
+
+$cfg['middleware_classes'] = array(
+ 'Pluf_Middleware_Csrf',
+ 'Pluf_Middleware_Session',
+ //'Pluf_Middleware_Debug',
+ 'Pluf_Middleware_Stats',
+ 'IDF_Middleware',
+ 'Pluf_Middleware_Translation',
+ );
+
+$cfg['template_context_processors'] = array('IDF_Middleware_ContextPreProcessor');
+
+$cfg['idf_views'] = dirname(__FILE__).'/urls.php';
+
+# If you want to customize some of the template files, you must tell the
+# template system where it can find your updated files by adding the particular
+# folder to the following array.
+$cfg['template_folders'] = array(
+ dirname(__FILE__).'/../templates',
+);
+
+# You can customize the URL redirection after a login or logout action.
+$cfg['login_success_url'] = $cfg['url_base'].$cfg['idf_base'];
+$cfg['after_logout_page'] = $cfg['url_base'].$cfg['idf_base'];
+
+# Set to true if uploaded public keys should not only be validated
+# syntactically, but also by a specific backend. For SSH public
+# keys, ssh-keygen(3) must be available and usable in the system PATH,
+# for monotone public keys, the monotone binary (as configured above)
+# is used.
+$cfg['idf_strong_key_check'] = false;
+
+# If you want to use another mime types database, enter its path here.
+# $cfg['idf_mimetypes_db'] = '/etc/mime.types';
+
+# Extentions of additional text files that should be displayed inline.
+# $cfg['idf_extra_text_ext'] = 'ext1 ext2 ext3';
+
+# If you can execute the needed shell commands to query information from your
+# SCM, but the same shell commands do not work from within the indefero
+# instance, this can be due to the environment variables not being set
+# correctly. ATTENTION: Do not forget the trailing space!
+# $cfg['idf_exec_cmd_prefix'] = '/usr/bin/env -i ';
+
+# If you do not want to let indefero calculate the sizes of repositories,
+# attachments, or downloads, set this to true. (You can temporarily set this
+# to false in case you want to quickly check some size, of course.)
+# $cfg['idf_no_size_check'] = false;
+
+# The file extensions for file uploads (issues and downloads view) are limited.
+# You can allow additional extensions here.
+# $cfg['idf_extra_upload_ext'] = 'ext1 ext2';
+
+# By default, the size of a single file upload is limited to 2MB.
+# The php.ini upload_max_filesize and post_max_size configuration setting will
+# always have precedence.
+# $cfg['max_upload_size'] = 2097152; // Size in bytes
+
+# If a download archive is uploaded, the size of the archive is limited to 20MB.
+# The php.ini upload_max_filesize and post_max_size configuration setting will
+# always have precedence.
+# $cfg['max_upload_archive_size'] = 20971520; // Size in bytes
+
+# Older versions of Indefero submitted a POST request to a configured
+# post-commit web hook when new revisions arrived, whereas a PUT request
+# would have been more appropriate. Also, the payload's HMAC digest was
+# submitted as value of the HTTP header 'Post-Commit-Hook-Hmac' during
+# such a request. Since newer versions of Indefero use the same authentication
+# mechanism (based on the same secret key) for other web hooks of the same
+# project as well, the name of this HTTP header was no longer appropriate
+# and as such changed to simply 'Web-Hook-Hmac'.
+#
+# Setting the following configuration option to 'compat' now restores the
+# old behaviour in both cases. Please notice however that this compatibility
+# option is likely to go away in the next major version of Indefero, so you
+# should really change the other end of your web hooks!
+$cfg['webhook_processing'] = 'compat';
+
+# If IDF recalculates the activity index of the forge's projects, it does so
+# by looking at the created and updated items in a particular tab / section
+# for each project.
+#
+# You can now edit the weights that are applied to the calculation for each
+# section in order to give other things more precendence. For example, if you
+# do not use the documentation part to a great extent in most of your projects,
+# you can weight this section lower and get an overall better activity value.
+#
+# If a section is removed, then activity in this section is neglected during
+# the calculation. The same is true in case a section is disabled in the
+# project administration.
+$cfg['activity_section_weights'] = array(
+ 'source' => 4,
+ 'issues' => 2,
+ 'wiki' => 2,
+ 'downloads' => 2,
+ 'review' => 1,
+);
+
+# Here you can define the timespan in days how long the activity calculation
+# process should look into the history to get meaningful activity values for
+# each project.
+#
+# If you have many low-profile projects in your forge, i.e. projects that only
+# record very little activity, then it might be a good idea to bump this value
+# high enough to show a proper activity index for those projects as well.
+$cfg['activity_lookback'] = 7;
+//$cfg["log_level"] = Pluf_Log::ALL;
+//$cfg["log_handler"] = 'Pluf_Log_File';
+//$cfg["log_delayed"] = true;
+//$cfg["pluf_log_file"] = '/home/www/pluf.log';
+//Pluf_Log::$level = Pluf_Log::ALL;
+return $cfg;
diff --git a/indefero/src/IDF/conf/path.php b/indefero/src/IDF/conf/path.php
new file mode 100644
index 0000000..d8c90ca
--- /dev/null
+++ b/indefero/src/IDF/conf/path.php
@@ -0,0 +1,38 @@
+ '#^/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views',
+ 'method' => 'index');
+
+$ctl[] = array('regex' => '#^/projects/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views',
+ 'method' => 'listProjects');
+
+$ctl[] = array('regex' => '#^/projects/label/(\w+)/(\w+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views',
+ 'method' => 'listProjectsByLabel');
+
+$ctl[] = array('regex' => '#^/login/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views',
+ 'method' => 'login',
+ 'name' => 'login_view');
+
+$ctl[] = array('regex' => '#^/preferences/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_User',
+ 'method' => 'myAccount');
+
+$ctl[] = array('regex' => '#^/dashboard/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_User',
+ 'method' => 'dashboard',
+ 'name' => 'idf_dashboard');
+
+$ctl[] = array('regex' => '#^/dashboard/submitted/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_User',
+ 'method' => 'dashboard',
+ 'params' => false,
+ 'name' => 'idf_dashboard_submit');
+
+$ctl[] = array('regex' => '#^/u/(.*)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_User',
+ 'method' => 'view');
+
+$ctl[] = array('regex' => '#^/logout/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views',
+ 'method' => 'logout');
+
+$ctl[] = array('regex' => '#^/help/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views',
+ 'method' => 'faq',
+ 'name' => 'idf_faq');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Project',
+ 'method' => 'home');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/logo/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Project',
+ 'method' => 'logo');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/timeline/(\w+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Project',
+ 'method' => 'timeline');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/feed/timeline/(\w+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Project',
+ 'method' => 'timelineFeed',
+ 'name' => 'idf_project_timeline_feed');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/feed/timeline/(\w+)/token/(.*)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Project',
+ 'method' => 'timelineFeed',
+ 'name' => 'idf_project_timeline_feed_auth');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/timeline/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Project',
+ 'method' => 'timelineCompat');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/feed/timeline/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Project',
+ 'method' => 'timelineFeedCompat',
+ 'name' => 'idf_project_timeline_feed');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/feed/timeline/token/(.*)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Project',
+ 'method' => 'timelineFeedCompat',
+ 'name' => 'idf_project_timeline_feed_auth');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Issue',
+ 'method' => 'index');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/summary/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Issue',
+ 'method' => 'summary');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/search/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Issue',
+ 'method' => 'search');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/search/status/(\w+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Issue',
+ 'method' => 'searchStatus');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/search/label/(\d+)/(\w+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Issue',
+ 'method' => 'searchLabel');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/(\d+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Issue',
+ 'method' => 'view');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/(\d+)/star/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Issue',
+ 'method' => 'star');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/status/(\w+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Issue',
+ 'method' => 'listStatus');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/label/(\d+)/(\w+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Issue',
+ 'method' => 'listLabel');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/create/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Issue',
+ 'method' => 'create');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/(.*)/(\w+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Issue',
+ 'method' => 'userIssues');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/attachment/(\d+)/(.*)$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Issue',
+ 'method' => 'getAttachment');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/view/attachment/(\d+)/(.*)$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Issue',
+ 'method' => 'viewAttachment');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/watchlist/(\w+)$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Issue',
+ 'method' => 'watchList');
+
+$ctl[] = array('regex' => '#^/watchlist/(\w+)$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Issue',
+ 'method' => 'forgeWatchList');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/autocomplete/(\d*)$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Issue',
+ 'method' => 'autoCompleteIssueList');
+
+// ---------- SCM ----------------------------------------
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/help/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Source',
+ 'method' => 'help');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/invalid/([^/]+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Source',
+ 'method' => 'invalidRevision');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/disambiguate/([^/]+)/from/([^/]+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Source',
+ 'method' => 'disambiguateRevision');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/tree/([^/]+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Source',
+ 'method' => 'treeBase');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/tree/([^/]+)/(.*)$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Source',
+ 'method' => 'tree');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/changes/([^/]+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Source',
+ 'method' => 'changeLog');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/commit/([^/]+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Source',
+ 'method' => 'commit');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/ddiff/([^/]+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Source',
+ 'method' => 'downloadDiff');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/download/([^/]+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Source',
+ 'method' => 'download');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/file/([^/]+)/(.*)$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Source',
+ 'method' => 'getFile');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/treerev/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Source_Svn',
+ 'method' => 'treeRev');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/changesrev/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Source_Svn',
+ 'method' => 'changelogRev');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/source/repo/(.*)$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Source',
+ 'method' => 'repository');
+
+// ---------- WIKI -----------------------------------------
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/doc/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Wiki',
+ 'method' => 'listPages');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/res/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Wiki',
+ 'method' => 'listResources');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/doc/create/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Wiki',
+ 'method' => 'createPage');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/res/create/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Wiki',
+ 'method' => 'createResource');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/doc/search/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Wiki',
+ 'method' => 'search');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/doc/label/(\d+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Wiki',
+ 'method' => 'listPagesWithLabel');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/doc/update/(.*)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Wiki',
+ 'method' => 'updatePage');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/res/update/(.*)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Wiki',
+ 'method' => 'updateResource');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/doc/delrev/(\d+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Wiki',
+ 'method' => 'deletePageRev');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/res/delrev/(\d+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Wiki',
+ 'method' => 'deleteResourceRev');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/doc/delete/(\d+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Wiki',
+ 'method' => 'deletePage');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/res/delete/(\d+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Wiki',
+ 'method' => 'deleteResource');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/res/raw/(.*)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Wiki',
+ 'method' => 'rawResource');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/page/(.*)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Wiki',
+ 'method' => 'viewPage');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/resource/(.*)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Wiki',
+ 'method' => 'viewResource');
+
+// ---------- Downloads ------------------------------------
+
+$ctl[] = array('regex' => '#^/help/archive-format/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views',
+ 'method' => 'faqArchiveFormat');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Download',
+ 'method' => 'index');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/label/(\d+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Download',
+ 'method' => 'listLabel');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/(\d+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Download',
+ 'method' => 'view');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/get/(.+)$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Download',
+ 'method' => 'download');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/(\d+)/get/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Download',
+ 'method' => 'downloadById');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/create/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Download',
+ 'method' => 'create');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/create/archive/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Download',
+ 'method' => 'createFromArchive');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/downloads/(\d+)/delete/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Download',
+ 'method' => 'delete');
+
+// ---------- CODE REVIEW --------------------------------
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/review/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Review',
+ 'method' => 'index');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/review/(\d+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Review',
+ 'method' => 'view');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/review/create/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Review',
+ 'method' => 'create');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/review/getpatch/(\d+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Review',
+ 'method' => 'getPatch');
+
+
+// ---------- ADMIN --------------------------------------
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Project',
+ 'method' => 'admin');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/issues/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Project',
+ 'method' => 'adminIssues');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/downloads/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Project',
+ 'method' => 'adminDownloads');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/wiki/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Project',
+ 'method' => 'adminWiki');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/source/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Project',
+ 'method' => 'adminSource');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/members/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Project',
+ 'method' => 'adminMembers');
+
+$ctl[] = array('regex' => '#^/p/([\-\w]+)/admin/tabs/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Project',
+ 'method' => 'adminTabs');
+
+// ---------- API ----------------------------------------
+
+$ctl[] = array('regex' => '#^/help/api/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views',
+ 'method' => 'faqApi');
+
+$ctl[] = array('regex' => '#^/api/p/([\-\w]+)/issues/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Api',
+ 'method' => 'issuesIndex');
+
+$ctl[] = array('regex' => '#^/api/p/([\-\w]+)/issues/create/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Api',
+ 'method' => 'issueCreate');
+
+$ctl[] = array('regex' => '#^/api/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Api',
+ 'method' => 'projectIndex');
+
+// ---------- FORGE ADMIN --------------------------------
+
+$ctl[] = array('regex' => '#^/admin/forge/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Admin',
+ 'method' => 'forge');
+
+$ctl[] = array('regex' => '#^/admin/projects/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Admin',
+ 'method' => 'projects');
+
+$ctl[] = array('regex' => '#^/admin/projects/(\d+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Admin',
+ 'method' => 'projectUpdate');
+
+$ctl[] = array('regex' => '#^/admin/projects/labels/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Admin',
+ 'method' => 'projectLabels');
+
+$ctl[] = array('regex' => '#^/admin/projects/create/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Admin',
+ 'method' => 'projectCreate');
+
+$ctl[] = array('regex' => '#^/admin/projects/(\d+)/delete/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Admin',
+ 'method' => 'projectDelete');
+
+$ctl[] = array('regex' => '#^/admin/users/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Admin',
+ 'method' => 'users');
+
+$ctl[] = array('regex' => '#^/admin/users/create/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Admin',
+ 'method' => 'userCreate');
+
+$ctl[] = array('regex' => '#^/admin/users/notvalid/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Admin',
+ 'method' => 'usersNotValidated');
+
+$ctl[] = array('regex' => '#^/admin/users/(\d+)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Admin',
+ 'method' => 'userUpdate');
+
+if (Pluf::f("mtn_usher_conf", null) !== null)
+{
+ $ctl[] = array('regex' => '#^/admin/usher/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Admin',
+ 'method' => 'usher');
+
+ $ctl[] = array('regex' => '#^/admin/usher/control/(.*)$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Admin',
+ 'method' => 'usherControl');
+
+ $ctl[] = array('regex' => '#^/admin/usher/server/(.+)/control/(.+)$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Admin',
+ 'method' => 'usherServerControl');
+
+ $ctl[] = array('regex' => '#^/admin/usher/server/(.+)/connections/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_Admin',
+ 'method' => 'usherServerConnections');
+}
+
+// ---------- UTILITY VIEWS -------------------------------
+
+$ctl[] = array('regex' => '#^/register/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views',
+ 'method' => 'register');
+
+$ctl[] = array('regex' => '#^/register/k/(.*)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views',
+ 'method' => 'registerConfirmation');
+
+$ctl[] = array('regex' => '#^/register/ik/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views',
+ 'method' => 'registerInputKey');
+
+$ctl[] = array('regex' => '#^/password/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views',
+ 'method' => 'passwordRecoveryAsk');
+
+$ctl[] = array('regex' => '#^/password/ik/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views',
+ 'method' => 'passwordRecoveryInputCode');
+
+$ctl[] = array('regex' => '#^/password/k/(.*)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views',
+ 'method' => 'passwordRecovery');
+
+$ctl[] = array('regex' => '#^/preferences/email/ik/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_User',
+ 'method' => 'changeEmailInputKey');
+
+$ctl[] = array('regex' => '#^/preferences/email/ak/(.*)/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_User',
+ 'method' => 'changeEmailDo');
+
+$ctl[] = array('regex' => '#^/preferences/email/(\d+)/delete/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_User',
+ 'method' => 'deleteMail');
+
+$ctl[] = array('regex' => '#^/preferences/key/(\d+)/delete/$#',
+ 'base' => $base,
+ 'model' => 'IDF_Views_User',
+ 'method' => 'deleteKey');
+
+
+return $ctl;
diff --git a/indefero/src/IDF/locale/cs/idf.po b/indefero/src/IDF/locale/cs/idf.po
new file mode 100644
index 0000000..c0f3a26
--- /dev/null
+++ b/indefero/src/IDF/locale/cs/idf.po
@@ -0,0 +1,5469 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+# William MARTIN , 2011.
+msgid ""
+msgstr ""
+"Project-Id-Version: Indefero\n"
+"Report-Msgid-Bugs-To: http://projects.ceondo.com/p/indefero/issues/\n"
+"POT-Creation-Date: 2012-03-22 01:16+0100\n"
+"PO-Revision-Date: 2011-10-31 00:19+0000\n"
+"Last-Translator: tommyd \n"
+"Language-Team: Czech (http://www.transifex.net/projects/p/indefero/team/"
+"cs/)\n"
+"Language: cs\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"
+
+#: IDF/Commit.php:55 IDF/Conf.php:54 IDF/Issue.php:52
+#: IDF/ProjectActivity.php:49 IDF/Review.php:65 IDF/Search/Occ.php:69
+#: IDF/Tag.php:52 IDF/Upload.php:49 IDF/Wiki/Page.php:54
+#: IDF/Wiki/Resource.php:56
+msgid "project"
+msgstr "projekt"
+
+#: IDF/Commit.php:63 IDF/Issue.php:67 IDF/IssueComment.php:65
+#: IDF/IssueFile.php:57 IDF/IssueRelation.php:69 IDF/Review/Comment.php:69
+#: IDF/Review.php:80 IDF/Upload.php:91 IDF/Wiki/Page.php:78
+#: IDF/Wiki/PageRevision.php:79 IDF/Wiki/Resource.php:88
+#: IDF/Wiki/ResourceRevision.php:86
+msgid "submitter"
+msgstr "odesílatel"
+
+#: IDF/Commit.php:87 IDF/Issue.php:60 IDF/Review/Patch.php:60
+#: IDF/Review.php:73 IDF/Upload.php:57 IDF/Wiki/Page.php:70
+#: IDF/Wiki/PageRevision.php:65 IDF/Wiki/Resource.php:80
+#: IDF/Wiki/ResourceRevision.php:63
+msgid "summary"
+msgstr "souhrn"
+
+#: IDF/Commit.php:93
+msgid "changelog"
+msgstr "seznam změn"
+
+#: IDF/Commit.php:100 IDF/Issue.php:105 IDF/IssueComment.php:79
+#: IDF/IssueFile.php:96 IDF/IssueRelation.php:75 IDF/Review/Comment.php:90
+#: IDF/Review/FileComment.php:75 IDF/Review/Patch.php:87 IDF/Review.php:108
+#: IDF/Upload.php:112 IDF/Wiki/Page.php:100 IDF/Wiki/PageRevision.php:92
+#: IDF/Wiki/Resource.php:95 IDF/Wiki/ResourceRevision.php:101
+msgid "creation date"
+msgstr "datum vytvoření"
+
+#: IDF/Commit.php:238
+#, fuzzy, php-format
+msgid "Commit %1$s, by %2$s"
+msgstr "Commit %s, %s"
+
+#: IDF/Commit.php:337
+#, fuzzy, php-format
+msgid "New Commit %1$s - %2$s (%3$s)"
+msgstr "Nový commit %s - %s (%s)"
+
+#: IDF/Conf.php:61 IDF/Gconf.php:73
+msgid "key"
+msgstr "klíč"
+
+#: IDF/Conf.php:67 IDF/Gconf.php:79 IDF/ProjectActivity.php:62
+msgid "value"
+msgstr "hodnota"
+
+#: IDF/Diff.php:460
+msgid "Old"
+msgstr ""
+
+#: IDF/Diff.php:460
+msgid "New"
+msgstr ""
+
+#: IDF/EmailAddress.php:49 IDF/Key.php:49
+msgid "user"
+msgstr "uživatel"
+
+#: IDF/EmailAddress.php:55
+msgid "email"
+msgstr ""
+
+#: IDF/Form/Admin/ForgeConf.php:34
+msgid "Custom forge page enabled"
+msgstr ""
+
+#: IDF/Form/Admin/ForgeConf.php:39 IDF/Form/WikiPageCreate.php:80
+#: IDF/Form/WikiPageUpdate.php:72
+msgid "Content"
+msgstr ""
+
+#: IDF/Form/Admin/LabelConf.php:40
+msgid "Predefined project labels"
+msgstr ""
+
+#: IDF/Form/Admin/LabelConf.php:55
+#, php-format
+msgid ""
+"The label \"%s\" is invalid: A label must only consist of alphanumeric "
+"characters and dashes, and can optionally contain a \":\" with a group "
+"prefix."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:600
+msgid "git"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:601
+msgid "Subversion"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:602
+msgid "mercurial"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:603
+msgid "monotone"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44
+#: IDF/Form/ProjectConf.php:39 IDF/Views/Admin.php:86 IDF/Views/Admin.php:273
+msgid "Name"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:101
+#: IDF/gettexttemplates/idf/base-full.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html~.php:5
+#: IDF/gettexttemplates/idf/base.html.php:5
+#: IDF/gettexttemplates/idf/base.html~.php:5
+#: IDF/gettexttemplates/idf/main-menu.html.php:9
+#: IDF/gettexttemplates/idf/project-list.html.php:5
+#: IDF/gettexttemplates/idf/project-list.html.php:7
+msgid "Private project"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:62
+msgid "Shortname"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:64
+msgid ""
+"It must be unique for each project and composed only of letters, digits and "
+"dash (-) like \"my-project\"."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50
+msgid "Short description"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:70 IDF/Form/Admin/ProjectUpdate.php:51
+#: IDF/Project.php:79
+msgid "A one line description of the project."
+msgstr "Jednořádkový popis projektu."
+
+#: IDF/Form/Admin/ProjectCreate.php:77 IDF/Form/Admin/ProjectUpdate.php:58
+#: IDF/Form/ProjectConf.php:56
+msgid "External URL"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:84
+msgid "Repository type"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:92
+msgid "Remote Subversion repository"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:99 IDF/Form/SourceConf.php:40
+msgid "Repository username"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:106 IDF/Form/SourceConf.php:47
+msgid "Repository password"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:113 IDF/Form/Admin/ProjectUpdate.php:66
+msgid "Master branch"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:116 IDF/Form/Admin/ProjectUpdate.php:69
+msgid ""
+"This should be a world-wide unique identifier for your project. A reverse "
+"DNS notation like \"com.my-domain.my-project\" is a good idea."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:121 IDF/Form/Admin/ProjectUpdate.php:95
+#: IDF/Form/MembersConf.php:46 IDF/Form/TabsConf.php:53
+#: IDF/Form/TabsConf.php:72
+msgid "Project owners"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:130 IDF/Form/Admin/ProjectUpdate.php:103
+#: IDF/Form/MembersConf.php:54 IDF/Form/TabsConf.php:52
+#: IDF/Form/TabsConf.php:78
+msgid "Project members"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:140 IDF/Form/Admin/ProjectUpdate.php:85
+#: IDF/Form/IssueCreate.php:168 IDF/Form/IssueUpdate.php:164
+#: IDF/Form/ProjectConf.php:73 IDF/Form/UpdateUpload.php:71
+#: IDF/Form/Upload.php:70 IDF/Form/WikiPageCreate.php:93
+#: IDF/Form/WikiPageUpdate.php:104
+msgid "Labels"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:155
+msgid "Project template"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:157
+msgid ""
+"Use the given project to initialize the new project. Access rights and "
+"general configuration will be taken from the template project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:204
+msgid ""
+"Only a remote repository available through HTTP or HTTPS is allowed. For "
+"example \"http://somewhere.com/svn/trunk\"."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:220 IDF/Form/Admin/ProjectUpdate.php:117
+msgid ""
+"The master branch is empty or contains illegal characters, please use only "
+"letters, digits, dashes and dots as separators."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:230 IDF/Form/Admin/ProjectUpdate.php:128
+msgid "This master branch is already used. Please select another one."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:241
+msgid ""
+"This shortname contains illegal characters, please use only letters, digits "
+"and dash (-)."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:244
+msgid "The shortname cannot start with the dash (-) character."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:247
+msgid "The shortname cannot end with the dash (-) character."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:252
+msgid "This shortname is already used. Please select another one."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:303 IDF/Form/Admin/ProjectDelete.php:78
+#: IDF/Form/Admin/ProjectUpdate.php:153 IDF/Form/Admin/UserCreate.php:106
+#: IDF/Form/Admin/UserUpdate.php:191 IDF/Form/IssueCreate.php:338
+#: IDF/Form/IssueUpdate.php:329 IDF/Form/MembersConf.php:64
+#: IDF/Form/Password.php:76 IDF/Form/Register.php:112
+#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:143
+#: IDF/Form/TabsConf.php:122 IDF/Form/UpdateUpload.php:126
+#: IDF/Form/Upload.php:149 IDF/Form/UploadArchive.php:137
+#: IDF/Form/UserAccount.php:216 IDF/Form/UserChangeEmail.php:80
+#: IDF/Form/WikiPageCreate.php:167 IDF/Form/WikiPageDelete.php:59
+#: IDF/Form/WikiPageUpdate.php:178 IDF/Form/WikiResourceCreate.php:123
+#: IDF/Form/WikiResourceDelete.php:59 IDF/Form/WikiResourceUpdate.php:124
+msgid "Cannot save the model from an invalid form."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:341
+msgid ""
+"Click on the Project Management tab to set the description of your project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:426
+msgid "This project is not available."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:41
+msgid "Confirmation code"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:46
+msgid "I have made a backup of all the important data of this project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:55
+msgid ""
+"The confirmation code does not match. Please provide a valid confirmation "
+"code to delete the project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:63
+msgid "Sorry, you really need to backup your data before deletion."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38
+#: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40
+msgid "First name"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47
+#: IDF/Form/RegisterConfirmation.php:59 IDF/Form/UserAccount.php:49
+msgid "Last name"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:56
+msgid "Login"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:60
+msgid ""
+"The login must be between 3 and 15 characters long and contains only letters "
+"and digits."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57
+msgid "Email"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:71
+msgid ""
+"Double check the email address as the password is sent directly to the user."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67
+#: IDF/Form/UserAccount.php:66
+msgid "Language"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161
+msgid "Add a public key"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:92
+msgid ""
+"Paste a SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:157
+msgid "Your details to access your forge."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:429
+#: IDF/Form/UserAccount.php:438
+#, php-format
+msgid "The email \"%s\" is already used."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72
+#, php-format
+msgid "The login \"%s\" can only contain letters and digits."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77
+#, php-format
+msgid "The login \"%s\" is already used, please find another one."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:78
+msgid "Password"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid "Leave blank if you do not want to change the password."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid ""
+"The password must be hard for other people to guess, but easy for the user "
+"to remember."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:89
+msgid "Confirm password"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/IssueCreate.php:66
+#: IDF/Form/ProjectConf.php:48 IDF/Form/ReviewCreate.php:54
+#: IDF/Form/UpdateUpload.php:51 IDF/Form/Upload.php:49
+#: IDF/Form/UserAccount.php:101 IDF/Form/WikiPageCreate.php:70
+#: IDF/Form/WikiPageUpdate.php:60 IDF/Form/WikiResourceCreate.php:54
+#: IDF/Form/WikiResourceUpdate.php:46 IDF/Views/Wiki.php:102
+msgid "Description"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:110
+msgid "Twitter username"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:120
+msgid "Public email address"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:130
+msgid "Website URL"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:140
+msgid "Upload custom avatar"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:147
+msgid ""
+"An image file with a width and height not larger than 60 pixels (bigger "
+"images are scaled down)."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:151 IDF/Form/UserAccount.php:152
+msgid "Remove custom avatar"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:156
+msgid "Tick this to delete the custom avatar."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:161 IDF/Views/Admin.php:274
+msgid "Staff"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:164
+msgid "If you give staff rights to a user, you really need to trust him."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:276
+msgid "Active"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:176
+msgid ""
+"If the user is not getting the confirmation email or is abusing the system, "
+"you can directly enable or disable their account here."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:274
+msgid "--- is not a valid first name."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:290
+msgid ""
+"A user with this email already exists, please provide another email address."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/UserAccount.php:398
+msgid "For security reason, you cannot upload a file with this extension."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:461
+msgid "The passwords do not match. Please give them again."
+msgstr ""
+
+#: IDF/Form/Field/EmailList.php:45
+msgid "Please enter one or more valid email addresses."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:57 IDF/Form/IssueUpdate.php:46
+#: IDF/Form/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:73
+#: IDF/Form/UpdateUpload.php:42 IDF/Form/Upload.php:40
+#: IDF/gettexttemplates/idf/issues/base.html.php:3 IDF/Views/Download.php:65
+#: IDF/Views/Download.php:347 IDF/Views/Issue.php:62 IDF/Views/Issue.php:221
+#: IDF/Views/Issue.php:302 IDF/Views/Issue.php:391 IDF/Views/Issue.php:543
+#: IDF/Views/Issue.php:766 IDF/Views/Issue.php:825 IDF/Views/Review.php:58
+#: IDF/Views/User.php:83 IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:145
+#: IDF/Views/Wiki.php:186
+msgid "Summary"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:76 IDF/Form/IssueUpdate.php:66
+#: IDF/Form/ReviewCreate.php:83
+msgid "The \"upload_issue_path\" configuration variable was not set."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:86 IDF/Form/IssueUpdate.php:76
+msgid "Attach a file"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:99 IDF/Form/IssueUpdate.php:89
+#: IDF/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:83
+#: IDF/Views/Issue.php:63 IDF/Views/Issue.php:222 IDF/Views/Issue.php:304
+#: IDF/Views/Issue.php:392 IDF/Views/Issue.php:544 IDF/Views/Issue.php:767
+#: IDF/Views/Issue.php:826 IDF/Views/Review.php:59 IDF/Views/User.php:84
+msgid "Status"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:108 IDF/Form/IssueUpdate.php:99
+msgid "Owner"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:118 IDF/Form/IssueUpdate.php:112
+#: IDF/Form/IssueUpdate.php:129
+msgid "This issue"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:210
+msgid "You cannot add a label with the \"Status\" prefix to an issue."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:211 IDF/Form/IssueCreate.php:218
+#: IDF/Form/UpdateUpload.php:110 IDF/Form/Upload.php:121
+#: IDF/Form/WikiPageCreate.php:151 IDF/Form/WikiPageUpdate.php:162
+msgid "You provided an invalid label."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:217 IDF/Form/UpdateUpload.php:109
+#, php-format
+msgid "You cannot provide more than one label from the %s class to an issue."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:228 IDF/Form/IssueUpdate.php:194
+msgid "You need to provide a description of the issue."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:251 IDF/Form/ReviewCreate.php:159
+msgid "You provided an invalid status."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:272
+msgid "You provided an invalid relation type."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:294
+#, php-format
+msgid "The value \"%s\" is not a valid issue id."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:300
+#, php-format
+msgid "The issue \"%s\" does not exist."
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:86
+msgid "is related to"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:87
+msgid "blocks"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:88
+msgid "is blocked by"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:89
+msgid "duplicates"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:90
+msgid "is duplicated by"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:97
+msgid ""
+"Define an issue template to hint the reporter to provide certain information"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:106
+msgid "Open issue status values"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:114
+msgid "Closed issue status values"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:123
+msgid "Predefined issue labels"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:125
+msgid ""
+"The first \"Type:\" and \"Priority:\" entries found in this list are "
+"automatically chosen as defaults for new issues."
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:133
+msgid "Each issue may have at most one label with each of these classes."
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:140
+msgid "Issue relations"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:142
+msgid ""
+"You can define bidirectional relations like \"is related to\" or \"blocks, "
+"is blocked by\". For standard relations pre-configured translations exist, "
+"new relations should however be defined in a language that is understood by "
+"all project members."
+msgstr ""
+
+#: IDF/Form/IssueUpdate.php:56 IDF/Form/ReviewFileComment.php:45
+#: IDF/Form/WikiPageUpdate.php:82 IDF/Form/WikiResourceUpdate.php:66
+msgid "Comment"
+msgstr ""
+
+#: IDF/Form/IssueUpdate.php:316
+msgid "No changes were entered."
+msgstr ""
+
+#: IDF/Form/MembersConf.php:104
+#, php-format
+msgid "The following login is invalid: %s."
+msgid_plural "The following logins are invalid: %s."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: IDF/Form/Password.php:34
+msgid "Your login or email"
+msgstr ""
+
+#: IDF/Form/Password.php:35
+msgid "Provide either your login or your email to recover your password."
+msgstr ""
+
+#: IDF/Form/Password.php:49 IDF/Form/Password.php:64
+msgid ""
+"Sorry, we cannot find a user with this email address or login. Feel free to "
+"try again."
+msgstr ""
+
+#: IDF/Form/Password.php:100
+msgid "Password Recovery - InDefero"
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:36 IDF/Form/PasswordReset.php:39
+#: IDF/Form/UserChangeEmail.php:36
+msgid "Your verification key"
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:50 IDF/Form/PasswordReset.php:89
+msgid ""
+"We are sorry but this validation key is not valid. Maybe you should directly "
+"copy/paste it from your validation email."
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:61 IDF/Form/PasswordReset.php:100
+msgid ""
+"Sorry, but this verification key has expired, please restart the password "
+"recovery sequence. For security reasons, the verification key is only valid "
+"24h."
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:76 IDF/Form/PasswordReset.php:108
+#: IDF/Form/RegisterConfirmation.php:137 IDF/Form/RegisterInputKey.php:72
+msgid "Cannot save an invalid form."
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:45 IDF/Form/RegisterConfirmation.php:69
+#: IDF/Form/UserAccount.php:77
+msgid "Your password"
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80
+msgid ""
+"Your password must be hard for other people to find it, but easy for you to "
+"remember."
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:56 IDF/Form/RegisterConfirmation.php:80
+#: IDF/Form/UserAccount.php:89
+msgid "Confirm your password"
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:74 IDF/Form/RegisterConfirmation.php:122
+msgid "The two passwords must be the same."
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:77
+msgid ""
+"This account is not active. Please contact the forge administrator to "
+"activate it."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:43
+msgid "Short Description"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:85
+msgid "The \"upload_path\" configuration variable was not set."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:90
+msgid "Update the logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:92
+msgid "The logo must be a picture with a size of 32 by 32."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:103
+msgid "Remove the current logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:139
+msgid "Could not determine the size of the uploaded picture."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:143
+msgid "The picture must have a size of 32 by 32."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:164
+msgid "The entered URL is invalid. Only http and https URLs are allowed."
+msgstr ""
+
+#: IDF/Form/Register.php:41
+msgid "Your login"
+msgstr ""
+
+#: IDF/Form/Register.php:45
+msgid ""
+"The login must be between 3 and 15 characters long and contain only letters "
+"and digits."
+msgstr ""
+
+#: IDF/Form/Register.php:53 IDF/Form/UserAccount.php:59
+msgid "Your email"
+msgstr ""
+
+#: IDF/Form/Register.php:55
+msgid "We will never send you any unsolicited emails. We hate spam too!"
+msgstr ""
+
+#: IDF/Form/Register.php:60
+msgid "I agree to the terms and conditions."
+msgstr ""
+
+#: IDF/Form/Register.php:88
+msgid ""
+"We know, this is boring, but you need to agree with the terms and conditions."
+msgstr ""
+
+#: IDF/Form/Register.php:97
+#, php-format
+msgid ""
+"The email \"%1$s\" is already used. If you need to, you can recover your password."
+msgstr ""
+
+#: IDF/Form/Register.php:148
+msgid "Confirm the creation of your account."
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:40 IDF/Form/RegisterInputKey.php:36
+msgid "Your confirmation key"
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:72
+msgid ""
+"Your password must be hard for other people to guess, but easy for you to "
+"remember."
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:99 IDF/Form/RegisterInputKey.php:50
+msgid ""
+"We are sorry but this confirmation key is not valid. Maybe you should "
+"directly copy/paste it from your confirmation email."
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:110
+#, php-format
+msgid ""
+"This account has already been confirmed. Maybe should you try to recover your password."
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:74
+#: IDF/gettexttemplates/idf/source/base.html.php:5
+#: IDF/gettexttemplates/idf/source/changelog.html.php:7
+msgid "Commit"
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:92
+msgid "Patch"
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:119
+msgid "We were not able to parse your patch. Please provide a valid patch."
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:128
+msgid "You provided an invalid commit."
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:202
+msgid "Initial patch to be reviewed."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:56
+msgid "General comment"
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:113
+msgid ""
+"You need to provide your general comment about the proposal, or comments on "
+"at least one file."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:124
+msgid "The status have been updated."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:130
+msgid "This field is required."
+msgstr ""
+
+#: IDF/Form/SourceConf.php:54 IDF/Form/UploadConf.php:70
+msgid "Webhook URL"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:38 IDF/gettexttemplates/idf/admin/base.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html.php:8
+#: IDF/gettexttemplates/idf/base-full.html~.php:7
+#: IDF/gettexttemplates/idf/base.html.php:8
+#: IDF/gettexttemplates/idf/base.html~.php:7
+#: IDF/gettexttemplates/idf/downloads/base.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:14
+#: IDF/Views/Project.php:97
+msgid "Downloads"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.php:12
+#: IDF/gettexttemplates/idf/base-full.html~.php:11
+#: IDF/gettexttemplates/idf/base.html.php:12
+#: IDF/gettexttemplates/idf/base.html~.php:11
+msgid "Code Review"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:40 IDF/gettexttemplates/idf/admin/base.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html~.php:8
+#: IDF/gettexttemplates/idf/base.html.php:9
+#: IDF/gettexttemplates/idf/base.html~.php:8
+msgid "Documentation"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:41 IDF/gettexttemplates/idf/admin/base.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html.php:11
+#: IDF/gettexttemplates/idf/base-full.html~.php:10
+#: IDF/gettexttemplates/idf/base.html.php:11
+#: IDF/gettexttemplates/idf/base.html~.php:10
+msgid "Source"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.php:10
+#: IDF/gettexttemplates/idf/base-full.html~.php:9
+#: IDF/gettexttemplates/idf/base.html.php:10
+#: IDF/gettexttemplates/idf/base.html~.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:17
+msgid "Issues"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:50
+msgid "Open to all"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:51
+msgid "Signed in users"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:54
+msgid "Closed"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:84
+#, fuzzy
+msgid "Others"
+msgstr "Ostatní"
+
+#: IDF/Form/TabsConf.php:107
+msgid "Extra authorized users"
+msgstr ""
+
+#: IDF/Form/Upload.php:59 IDF/Form/WikiResourceCreate.php:65
+#: IDF/Form/WikiResourceUpdate.php:56
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7
+#: IDF/Views/Download.php:64 IDF/Views/Download.php:346
+msgid "File"
+msgstr ""
+
+#: IDF/Form/Upload.php:87 IDF/Form/WikiResourceCreate.php:96
+#: IDF/Form/WikiResourceUpdate.php:83
+msgid "For security reasons, you cannot upload a file with this extension."
+msgstr ""
+
+#: IDF/Form/Upload.php:120
+#, php-format
+msgid "You cannot provide more than one label from the %s class to a download."
+msgstr ""
+
+#: IDF/Form/UploadArchive.php:41
+#, fuzzy
+msgid "Archive file"
+msgstr "Archív"
+
+#: IDF/Form/UploadArchive.php:67
+#, php-format
+msgid ""
+"For security reasons, you cannot upload a file (%s) with this extension."
+msgstr ""
+
+#: IDF/Form/UploadArchive.php:98
+#, php-format
+msgid ""
+"You cannot provide more than label from the %1$s class to a download (%2$s)."
+msgstr ""
+
+#: IDF/Form/UploadArchive.php:109
+#, php-format
+msgid ""
+"A file with the name \"%s\" has already been uploaded and is not marked to "
+"be replaced."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:41
+msgid "The archive does not exist."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:48
+#, php-format
+msgid "The archive could not be read (code %d)."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:53
+msgid "The archive does not contain a manifest.xml."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:61
+#, php-format
+msgid "The archive's manifest is invalid: %s"
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:77
+#, php-format
+msgid "The entry %d in the manifest is missing a file name."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:82
+#, php-format
+msgid "The entry %d in the manifest is missing a summary."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:86
+msgid "The manifest must not reference itself."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:91
+#, php-format
+msgid "The entry %s in the manifest does not exist in the archive."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:96
+#, php-format
+msgid "The entry %s in the manifest is referenced more than once."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:108
+#, php-format
+msgid "The entry %s in the manifest has more than the six allowed labels set."
+msgstr ""
+
+#: IDF/Form/UploadConf.php:53
+msgid "Predefined download labels"
+msgstr ""
+
+#: IDF/Form/UploadConf.php:62
+msgid "Each download may have at most one label with each of these classes"
+msgstr ""
+
+#: IDF/Form/UserAccount.php:61
+msgid ""
+"If you change your email address, an email will be sent to the new address "
+"to confirm it."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:80
+msgid "Leave blank if you do not want to change your password."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:166
+msgid ""
+"Paste an SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+
+#: IDF/Form/UserAccount.php:171
+msgid "Add a secondary email address"
+msgstr ""
+
+#: IDF/Form/UserAccount.php:173
+msgid "You will get an email to confirm that you own the address you specify."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:200
+msgid "Confirm your new email address."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:203
+#, php-format
+msgid ""
+"A validation email has been sent to \"%s\" to validate the email address "
+"change."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:341
+msgid ""
+"Please check the key as it does not appear to be a valid SSH public key."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:363
+msgid ""
+"Please check the key as it does not appear to be a valid monotone public key."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:371
+msgid "Public key looks like neither an SSH nor monotone public key."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:383
+msgid "You already have uploaded this key."
+msgstr ""
+
+#: IDF/Form/UserChangeEmail.php:63
+msgid ""
+"The validation key is not valid. Please copy/paste it from your confirmation "
+"email."
+msgstr ""
+
+#: IDF/Form/WikiConf.php:49
+msgid "Predefined documentation page labels"
+msgstr ""
+
+#: IDF/Form/WikiConf.php:58
+msgid ""
+"Each documentation page may have at most one label with each of these classes"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:38
+msgid ""
+"# Introduction\n"
+"\n"
+"Add your content here.\n"
+"\n"
+"\n"
+"# Details\n"
+"\n"
+"Add your content here. Format your content with:\n"
+"\n"
+"* Text in **bold** or *italic*.\n"
+"* Headings, paragraphs, and lists.\n"
+"* Links to other [[WikiPage]].\n"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:57
+msgid "PageName"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:60 IDF/Form/WikiPageUpdate.php:50
+msgid "Page title"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:66 IDF/Form/WikiPageUpdate.php:56
+msgid ""
+"The page name must contains only letters, digits and the dash (-) character."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:71 IDF/Form/WikiPageUpdate.php:61
+msgid "This one line description is displayed in the list of pages."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:108 IDF/Form/WikiPageUpdate.php:119
+#: IDF/Form/WikiResourceCreate.php:78
+msgid "The title contains invalid characters."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:114 IDF/Form/WikiPageUpdate.php:125
+msgid "A page with this title already exists."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:150 IDF/Form/WikiPageUpdate.php:161
+#, php-format
+msgid "You cannot provide more than one label from the %s class to a page."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:200
+msgid "Initial page creation"
+msgstr ""
+
+#: IDF/Form/WikiPageDelete.php:39
+msgid "Yes, I understand that the page and all its revisions will be deleted."
+msgstr ""
+
+#: IDF/Form/WikiPageDelete.php:50 IDF/Form/WikiResourceDelete.php:50
+msgid "You need to confirm the deletion."
+msgstr ""
+
+#: IDF/Form/WikiPageUpdate.php:83 IDF/Form/WikiResourceUpdate.php:67
+msgid "One line to describe the changes you made."
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:40
+msgid "ResourceName"
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:44
+msgid "Resource title"
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:50
+#, fuzzy
+msgid ""
+"The resource name must contains only letters, digits and the dash (-) "
+"character."
+msgstr ""
+"Nadpis musí obsahovat pouze písmena, čísla nebo pomlčku. Např. Moje-nova-"
+"WiKi-Stranka."
+
+#: IDF/Form/WikiResourceCreate.php:55 IDF/Form/WikiResourceUpdate.php:47
+#, fuzzy
+msgid "This one line description is displayed in the list of resources."
+msgstr "Jednořádkový popis projektu."
+
+#: IDF/Form/WikiResourceCreate.php:84
+msgid "A resource with this title already exists."
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:142
+msgid "Initial resource creation"
+msgstr ""
+
+#: IDF/Form/WikiResourceDelete.php:39
+msgid ""
+"Yes, I understand that the resource and all its revisions will be deleted."
+msgstr ""
+
+#: IDF/Form/WikiResourceUpdate.php:89
+#, php-format
+msgid ""
+"The mime type of the uploaded file \"%1$s\" does not match the mime type of "
+"this resource \"%2$s\""
+msgstr ""
+
+#: IDF/Form/WikiResourceUpdate.php:97
+msgid "The current version of the resource and the uploaded file are equal."
+msgstr ""
+
+#: IDF/Gconf.php:60 IDF/Search/Occ.php:56
+msgid "model class"
+msgstr "třída modelu"
+
+#: IDF/Gconf.php:66 IDF/Search/Occ.php:62
+msgid "model id"
+msgstr "id modelu"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:3
+msgid "Project Summary"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:6
+msgid "Issue Tracking"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:8
+msgid "Project Members"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:9
+msgid "Tabs Access and Notifications"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/downloads.html.php:3
+#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3
+#: IDF/gettexttemplates/idf/admin/wiki.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/labels.html.php:3
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
List one status value per line in desired sort-order.
\n"
+"
Optionally, use an equals-sign to document the meaning of each status "
+"value.
The webhook URL setting specifies an URL to which a HTTP PUT"
+"strong>\n"
+"request is sent after a new download has been added or to which a HTTP "
+"POST\n"
+"request is sent after an existing download has been updated.\n"
+"If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/upload
\n"
+"
http://domain.com/upload?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each download:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%d - download id
\n"
+"
\n"
+"\n"
+"
For example, updating download 123 of project 'my-project' with\n"
+"web hook URL http://mydomain.com/%p/%d would send a POST "
+"request to\n"
+"http://mydomain.com/my-project/123.
A project owner may make any change to this project, including removing "
+"other project owners. You need to be carefull when you give owner rights."
+"p>\n"
+"
A project member will not have access to the administration area but will "
+"have more options available in the use of the project.
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:3
+msgid "You can find here the current repository configuration of your project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:4
+msgid ""
+"
The webhook URL setting specifies an URL to which a HTTP \n"
+"%%hook_request_method%% request is sent after each "
+"repository\n"
+"commit. If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/commit
\n"
+"
http://domain.com/commit?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each commit:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%r - revision number
\n"
+"
\n"
+"\n"
+"
For example, committing revision 123 to project 'my-project' with\n"
+"post-commit URL http://mydomain.com/%p/%r would send a request "
+"to\n"
+"http://mydomain.com/my-project/123.
The description of the project can be improved using the Markdown syntax.
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:7
+msgid ""
+"The form contains some errors. Please correct them to update the summary."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:8
+msgid "Current logo"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html~.php:4
+#: IDF/gettexttemplates/idf/base.html.php:4
+#: IDF/gettexttemplates/idf/base.html~.php:4
+#: IDF/gettexttemplates/idf/main-menu.html.php:8
+#: IDF/gettexttemplates/idf/project-list.html.php:4
+msgid "Project logo"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:10
+msgid "Your project does not have a logo configured yet."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:3
+msgid ""
+"This section allows you to configure project tabs access rights and "
+"notifications."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:4
+msgid ""
+"Tab access controls whether a single user can navigate into a particular "
+"section of your project via the main menu or automatically generated object "
+"links."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:5
+msgid ""
+"If you mark a project as private, only the project members and "
+"administrators, together with the extra authorized users you provide will "
+"have access to the project as a whole. You will still be able to define "
+"further access rights for the different tabs but the \"Open to all\" and "
+"\"Signed in users\" will default to authorized users only."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:6
+msgid ""
+"For the extra authorized user list, specify each person by its login. Each "
+"person must have already registered with the given login. Separate the "
+"logins with commas and/or new lines."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:7
+msgid ""
+"Only project members and admins have write access to the source. If you "
+"restrict the access to the source, anonymous access is not provided and the "
+"users must authenticate themselves with their password or SSH key."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
+#, php-format
+msgid ""
+"Here you can configure who should be notified about changes in a particular "
+"section. You can also configure additional addresses, like the one of a "
+"mailing list, that should be notified. (Keep in mind that you might have to "
+"register the sender address %%from_email%% to let the "
+"mailing list actually accept notification emails.) Multiple email addresses "
+"must be separated through commas (',')."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:9
+msgid ""
+"The form contains some errors. Please correct them to update the access "
+"rights."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
+msgid "Access Rights"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:11
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
+#, fuzzy
+msgid "Notifications"
+msgstr "datum změny"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:3
+#: IDF/gettexttemplates/idf/base-full.html~.php:3
+#: IDF/gettexttemplates/idf/base.html.php:3
+#: IDF/gettexttemplates/idf/base.html~.php:3
+#, php-format
+msgid ""
+"Sign in or create your account to create issues or "
+"add comments"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:6
+#: IDF/gettexttemplates/idf/base.html.php:6
+#: IDF/gettexttemplates/idf/project-list.html.php:6
+msgid "External link to project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html~.php:6
+#: IDF/gettexttemplates/idf/base.html.php:7
+#: IDF/gettexttemplates/idf/base.html~.php:6
+msgid "Project Home"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:13
+#: IDF/gettexttemplates/idf/base-full.html~.php:12
+#: IDF/gettexttemplates/idf/base.html.php:13
+#: IDF/gettexttemplates/idf/base.html~.php:12
+msgid "Project Management"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:4
+#: IDF/gettexttemplates/idf/downloads/index.html.php:4
+#: IDF/Views/Download.php:235
+msgid "New Download"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:5
+#, fuzzy
+msgid "Upload Archive"
+msgstr "Archív"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:3
+msgid ""
+"Each file must have a distinct name and file contents\n"
+"cannot be changed, so be sure to include release numbers in each file\n"
+"name."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:6
+#, php-format
+msgid ""
+"You can use the Markdown syntax for the description."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:7
+msgid "The form contains some errors. Please correct them to submit the file."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:8
+msgid "Submit File"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:9
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:8
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:21
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:14
+#: IDF/gettexttemplates/idf/issues/create.html.php:14
+#: IDF/gettexttemplates/idf/issues/view.html.php:27
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:7
+#: IDF/gettexttemplates/idf/register/index.html.php:8
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:5
+#: IDF/gettexttemplates/idf/review/create.html.php:12
+#: IDF/gettexttemplates/idf/review/view.html.php:41
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:5
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:13
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:5
+msgid "Cancel"
+msgstr "Storno"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:10
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:9
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:6
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:6
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:6
+msgid "Instructions"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:3
+msgid ""
+"The archive must include a manifest.xml file with meta "
+"information about the\n"
+"files to process inside the archive. All processed files must be unique or "
+"replace existing files explicitely."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:5
+#, php-format
+msgid ""
+"You can learn more about the archive format here."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:6
+#, fuzzy
+msgid ""
+"The form contains some errors. Please correct them to submit the archive."
+msgstr ""
+"Formulář obsahuje nějaké chyby. Prosím opravte je a poté odešlete předmět k "
+"řešení."
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:7
+#, fuzzy
+msgid "Submit Archive"
+msgstr "Archív"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:3
+msgid ""
+"Attention! If you want to delete a specific version of your "
+"software, maybe, someone is depending on this specific version to run his "
+"systems. Are you sure, you will not affect anybody when removing this file?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:4
+#, php-format
+msgid ""
+"Instead of deleting the file, you could mark it as "
+"deprecated."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:5
+#: IDF/gettexttemplates/idf/downloads/view.html.php:4
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:4
+#: IDF/gettexttemplates/idf/issues/view.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:5
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:7
+#, php-format
+msgid "by %%submitter%%"
+msgstr "kým %%submitter%%"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:6
+msgid "Delete File"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:8
+#: IDF/gettexttemplates/idf/downloads/view.html.php:14
+msgid "Uploaded:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:9
+#: IDF/gettexttemplates/idf/downloads/view.html.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:29
+#: IDF/gettexttemplates/idf/review/view.html.php:27
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:14
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:15
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:17
+msgid "Updated:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6
+#: IDF/gettexttemplates/idf/listProjects.html.php:17
+msgid "Downloads:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:11
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:17
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml~.php:6
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:10
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:21
+#: IDF/gettexttemplates/idf/issues/view.html.php:33
+#: IDF/gettexttemplates/idf/project-list.html.php:8
+#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:13
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:16
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:12
+#: IDF/IssueComment.php:157 IDF/Wiki/PageRevision.php:204
+msgid "Labels:"
+msgstr "Nálepky:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3
+msgid "A new file is available for download:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:4
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:5
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:8
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:4
+msgid "Hello,"
+msgstr "Ahoj,"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:5
+msgid "Project:"
+msgstr "Projekt:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:6
+msgid "Submitted by:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:8
+msgid "Download:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:10
+#: IDF/gettexttemplates/idf/review/view.html.php:31
+#: IDF/gettexttemplates/idf/user/public.html.php:4
+msgid "Description:"
+msgstr "Popis:"
+
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:3
+msgid "A file download was updated:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3
+msgid "Details"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:3
+#, php-format
+msgid "See the deprecated files."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:5
+msgid "Number of files:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:3
+msgid ""
+"Attention! This file is marked as deprecated, download it "
+"only if you are sure you need this specific version."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:5
+msgid "md5:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:6
+msgid "Changes"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:7
+msgid "The form contains some errors. Please correct them to update the file."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:8
+msgid "Update File"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:12
+msgid "Remove this file"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:18
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:12
+msgid "Trash"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:13
+msgid "Delete this file"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:3
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:3
+#: IDF/gettexttemplates/idf/faq.html.php:65
+msgid "Here we are, just to help you."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:4
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:4
+#: IDF/gettexttemplates/idf/faq.html.php:66
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:4
+#: IDF/gettexttemplates/idf/index.html.php:4 IDF/Views/Admin.php:77
+#: IDF/Views.php:91
+msgid "Projects"
+msgstr "Projekty"
+
+#: IDF/gettexttemplates/idf/faq.html.php:3
+msgid ""
+"
This is simple:
\n"
+"\n"
+"
Write in the comments \"This is a duplicate of issue 123\" or - if you "
+"are a member of the crew -\n"
+"directly add the \"duplicates\" relation with the value \"123\" below the "
+"comment field. Change \"123\"\n"
+"with the corresponding issue number.
\n"
+"
Change the status of the current issue to Duplicate.
\n"
+"
Submit the changes.
\n"
+""
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:11
+msgid ""
+"You need to create an account on Gravatar, this takes about 5 minutes and is free."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:12
+msgid ""
+"\n"
+"
To embed any previously uploaded resource into your wiki page, you can "
+"use the [[!ResourceName]] syntax.
\n"
+"\n"
+"
The rendering of the resource can then be further fine-tuned:\n"
+"
\n"
+"
[[!ImageResource, align=right, width=200]] renders "
+"\"ImageResource\" right-aligned and scale its width to 200
\n"
+"
[[!TextResource, align=center, width=300, height=300]] "
+"renders \"TextResource\" in a centered, 300 by 300 px iframe
\n"
+"
[[!AnyResource, preview=no]] does not render a preview of "
+"the resource, but only provides a download link (default for binary "
+"resources)
\n"
+"
[[!BinaryResource, title=Download]] renders the download "
+"link of \"BinaryResource\" with an alternative title
\n"
+"
\n"
+"\n"
+"\n"
+"Resources are versioned, just like wiki pages. If you update a resource, old "
+"wiki pages still show the state of the resource\n"
+"at the time when the wiki page was edited. If you specifically want to "
+"update a resource on a page, you therefor need to update\n"
+"the resource at first and then also the page where it is referenced, "
+"otherwise the change won't be visible until the next regular edit. \n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:28
+msgid ""
+"
If you have to publish many files at once for a new release, it is a very "
+"tedious task\n"
+"to upload them one after another and enter meta information like a summary, "
+"a description or additional\n"
+"labels for each of them.
\n"
+"
InDefero therefore supports a special archive format that is basically a "
+"standard zip file which comes with\n"
+"some meta information. These meta information are kept in a special manifest "
+"file, which is distinctly kept from\n"
+"the rest of the files in the archive that should be published.
\n"
+"
Once this archive has been uploaded, InDefero reads in the meta "
+"information, unpacks the other files from\n"
+"the archive and creates new individual downloads for each of them.
"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:36
+#, fuzzy, php-format
+msgid "Learn more about the archive format."
+msgstr "Přihlásit se pro odpověď na tento komentář."
+
+#: IDF/gettexttemplates/idf/faq.html.php:37
+msgid ""
+"The API (Application Programming Interface) is used to interact with "
+"InDefero with another program. For example, this can be used to create a "
+"desktop program to submit new tickets easily."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:38
+#, php-format
+msgid "Learn more about the API."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:39
+#: IDF/gettexttemplates/idf/faq.html.php:45
+msgid "What are the keyboard shortcuts?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:40
+#: IDF/gettexttemplates/idf/faq.html.php:60
+msgid "How to mark an issue as duplicate?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:41
+#: IDF/gettexttemplates/idf/faq.html.php:61
+msgid "How can I display my head next to my comments?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:42
+#: IDF/gettexttemplates/idf/faq.html.php:62
+msgid "How can I embed images and other resources in my documentation pages?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:43
+#: IDF/gettexttemplates/idf/faq.html.php:63
+msgid "What is this \"Upload Archive\" functionality about?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:44
+#: IDF/gettexttemplates/idf/faq.html.php:64
+msgid "What is the API and how is it used?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:46
+msgid "Shift+h: This help page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:47
+msgid "If you are in a project, you have the following shortcuts:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:48
+msgid "Shift+u: Project updates."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:49
+msgid "Shift+d: Downloads."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:50
+msgid "Shift+o: Documentation."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:51
+msgid "Shift+a: Create a new issue."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:52
+msgid "Shift+i: List of open issues."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:53
+msgid "Shift+m: The issues you submitted."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:54
+msgid "Shift+w: The issues assigned to you."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:55
+msgid "Shift+s: Source."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:56
+msgid "You also have the standard access keys:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:57
+msgid "Alt+1: Home."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:58
+msgid "Alt+2: Skip the menus."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:59
+msgid "Alt+4: Search (when available)."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
+msgid "Forge"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:5
+msgid "People"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:6
+msgid "Usher"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/forge/base.html.php:3
+#, fuzzy
+msgid "Frontpage"
+msgstr "stránka"
+
+#: IDF/gettexttemplates/idf/gadmin/forge/index.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
You can set up a custom forge page that is used as entry page for the "
+"forge instead of the plain project listing. This page is then also "
+"accessible via the 'Home' link in main menu bar.
Additionally, the following macros are available: \n"
+"
\n"
+"
{projectlist, label=..., order=(name|activity), limit=...}"
+"code> - Renders a project list that can optionally be filtered by label, "
+"ordered by 'name' or 'activity' and / or limited to a specific number of "
+"projects.
\n"
+"
\n"
+"\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:7
+msgid "Project List"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4
+#: IDF/Views/Admin.php:110
+#, fuzzy
+msgid "Project Labels"
+msgstr "Projekty"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:16
+#: IDF/gettexttemplates/idf/listProjects.html.php:6 IDF/Views/Admin.php:186
+msgid "Create Project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:6
+msgid "Change Project Details"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3
+msgid ""
+"You can select the type of repository you want. In the case of subversion, "
+"you can use optionally a remote repository instead of the local one."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:4
+msgid ""
+"Once you have defined the repository type, you cannot change it"
+"strong>."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:5
+msgid ""
+"\n"
+"
Specify each person by its login. Each person must have already "
+"registered with the given login.
\n"
+"
Separate the logins with commas and/or new lines.
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:14
+msgid ""
+"The form contains some errors. Please correct them to create the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:15
+msgid "Provide at least one owner for the project or use a template."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:15
+msgid "Instructions:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:3
+#, php-format
+msgid ""
+"Confirmation code to confirm the deletion of the project: \n"
+"%%code%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:5
+msgid ""
+"\n"
+"Attention! Deleting a project is a one second operation\n"
+"with the consequences that all the data related to the \n"
+"project will be deleted.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:10
+msgid ""
+"The form contains some errors. Please correct them to delete the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:11
+msgid "Project Statistics"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:12
+msgid "Tab"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:13
+msgid "Number"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:15
+msgid "Code reviews"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:16
+#: IDF/Views/Project.php:93
+msgid "Commits"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:18
+msgid "Documentation pages"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:20
+msgid "Delete Project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:22
+msgid ""
+"For large projects, the suppression can take a while, please be patient."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:3
+msgid "Space Usage Statistics"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:4
+msgid "Repositories:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:18
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:16
+msgid "Attachments:"
+msgstr "Přílohy:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7
+msgid "Database:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:8
+msgid "Total Forge:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:13
+msgid ""
+"The form contains some errors. Please correct them to update the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:14
+msgid "Provide at least one owner for the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:15
+msgid "Update Project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:20
+msgid "Delete this project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:21
+msgid "You will be asked to confirm."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3
+#: IDF/Views/Admin.php:264
+msgid "User List"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:13
+msgid "Update User"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4
+msgid "Create User"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3
+msgid "The form contains some errors. Please correct them to create the user."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:6
+msgid "The user password will be sent by email to the user."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/createuser-email.txt.php:3
+#, php-format
+msgid ""
+"Hello %%user%%,\n"
+"\n"
+"An account on the forge has been created for you by\n"
+"the administrator %%admin%%.\n"
+"\n"
+"Please find here your details to access the forge:\n"
+"\n"
+" Address: %%url%%\n"
+" Login: %%user.login%%\n"
+" Password: %%password%%\n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:3
+#, php-format
+msgid "See not validated users."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:4
+msgid "
You have here an overview of the users registered in the forge.
"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:5
+msgid "Number of users:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:3
+msgid ""
+"If you are changing the email address of the user, you\n"
+"need to ensure that you are providing a valid email\n"
+"address"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:6
+msgid ""
+"If you give the user staff rights, the user will be\n"
+"able to create new projects and update other non staff users.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:9
+msgid "The form contains some errors. Please correct them to update the user."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:4
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:4
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4
+msgid "Login:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:11
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:5
+msgid "Public Profile"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:12
+msgid "Administrative"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3
+msgid "Configured servers"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:4
+#: IDF/Views/Admin.php:421
+msgid "Usher control"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:3
+msgid "address"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:4
+msgid "port"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:5
+msgid "No connections found."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3
+msgid "current server status:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:4
+msgid "startup"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:5
+msgid "shutdown"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:6
+msgid "reload server configuration:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:7
+msgid "reload"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:11
+msgid "Status explanation"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:9
+msgid "active with n total open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:10
+msgid "waiting for new connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:11
+msgid "usher is being shut down, not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:12
+msgid ""
+"usher is shut down, all local servers are stopped and not accepting "
+"connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:3
+msgid "server name"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:4 IDF/Issue.php:99
+#: IDF/Review.php:102
+msgid "status"
+msgstr "status"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:5
+msgid "action"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:6
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:6
+msgid "No monotone servers configured."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:7
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:7
+msgid "stop"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:8
+msgid "start"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:9
+msgid "kill"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:10
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:10
+msgid "active connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:12
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:12
+msgid "remote server without open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:13
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:13
+msgid "server with n open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:14
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:14
+msgid "local server running, without open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:15
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:15
+msgid "local server not running, waiting for connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:16
+msgid "local server is about to stop, n connections still open"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:17
+msgid "local server not running, not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:18
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:18
+msgid "usher is shut down, not running and not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.atom.php:3
+#, php-format
+msgid "Personal project feed for %%user%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:6
+msgid "Home"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:3
+#, php-format
+msgid "Attachment to issue %%issue.id%%"
+msgstr "Příloha k předmětu %%issue.id%%"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:5
+#: IDF/gettexttemplates/idf/review/view.html.php:35
+#: IDF/gettexttemplates/idf/source/commit.html.php:23
+#: IDF/gettexttemplates/idf/source/commit.html~.php:22
+#: IDF/gettexttemplates/idf/source/git/file.html.php:6
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:12
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:7
+msgid "Archive"
+msgstr "Archív"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:6
+#: IDF/gettexttemplates/idf/source/git/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:10
+msgid "Download this file"
+msgstr "Stáhnout tento soubor"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:7
+#: IDF/gettexttemplates/idf/issues/view.html.php:28
+#: IDF/gettexttemplates/idf/review/view.html.php:26
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:13
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:16
+msgid "Created:"
+msgstr "Vytvořeno:"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:4
+msgid "All Issues"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:5
+msgid "My Issues"
+msgstr "Moje předmět k řešení"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:6
+msgid "My watch list"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:7
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:6
+#: IDF/gettexttemplates/idf/issues/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:5
+#: IDF/gettexttemplates/idf/issues/search.html.php:8
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:5
+msgid "New Issue"
+msgstr "Nový předmět k řešení"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:8
+#: IDF/gettexttemplates/idf/wiki/base.html.php:9
+msgid "Search"
+msgstr "Hledat"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:9
+msgid "Back to the issue"
+msgstr "Zpátky k předmětu"
+
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:3
+#, php-format
+msgid ""
+"
"
+
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:3
+#, fuzzy
+msgid "A new issue has been created and assigned to you:"
+msgstr "Nový předmět k řešení byl vytvořen a vám přiřazen:"
+
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:4
+#, fuzzy
+msgid "A new issue has been created:"
+msgstr "Nový předmět k řešení byl vytvořen a vám přiřazen:"
+
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:8
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:8
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:11
+msgid "Reported by:"
+msgstr "Nahlášeno kým:"
+
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:19
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:17
+msgid "Issue:"
+msgstr "Předmět k řešení:"
+
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:3
+#, fuzzy
+msgid "The following issue you are owning has been updated:"
+msgstr "Následující předmět k řešení byl aktualizován:"
+
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:4
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:3
+msgid "The following issue has been updated:"
+msgstr "Následující předmět k řešení byl aktualizován:"
+
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:4
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:4
+#, php-format
+msgid "By %%who%%, %%c.creation_dtime%%:"
+msgstr "Kým %%who%%, %%c.creation_dtime%%:"
+
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:10
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:9
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:8
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:12
+msgid "URL:"
+msgstr "URL:"
+
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:12
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:11
+msgid "Comments (last first):"
+msgstr "Komentář (poslední jako první):"
+
+#: IDF/gettexttemplates/idf/issues/search.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
Website addresses are automatically linked and you can link to another "
+"page in the documentation using double square brackets like that "
+"[[AnotherPage]].
\n"
+"
If you want to embed uploaded resources, use the [[!ResourceName]]"
+"code> syntax for that. This is described more in detail in the FAQ.
\n"
+"
To directly include a file content from the repository, embrace its path "
+"with triple square brackets: [[[my/file.txt]]].
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/feedfragment-resource.xml.php:4
+msgid "Initial creation"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:3
+#, php-format
+msgid "See the deprecated pages."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:5
+msgid "Number of pages:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/listResources.html.php:4
+msgid "Number of resources:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/search.html.php:4
+msgid "Pages found:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:3
+msgid "The form contains some errors. Please correct them to update the page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:6
+msgid "Update Page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:11
+msgid "Delete this page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:4
+msgid "Update Resource"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:9
+msgid "Delete this resource"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:3
+msgid ""
+"Attention! This page is marked as deprecated, \n"
+"use it as reference only if you are sure you need these specific information."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:5
+#, php-format
+msgid ""
+"You are looking at an old revision of the page \n"
+"%%page.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:10
+msgid "Table of Content"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:13
+msgid "Delete this revision"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:3
+#, php-format
+msgid ""
+"You are looking at an old revision of the resource \n"
+"%%resource.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:14
+msgid "Page Usage"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:15
+msgid "This resource is not used on any pages yet."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:3
+msgid "A new documentation page has been created:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:14
+msgid "Documentation page:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3
+msgid "The following documentation page has been updated:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7
+msgid "Updated by:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13
+msgid "New content:"
+msgstr ""
+
+#: IDF/Issue.php:76
+msgid "owner"
+msgstr "vlastník"
+
+#: IDF/Issue.php:84 IDF/Wiki/Page.php:86
+msgid "interested users"
+msgstr "zainteresovaní uživatelé"
+
+#: IDF/Issue.php:85
+msgid ""
+"Interested users will get an email notification when the issue is changed."
+msgstr "Zainteresovaní čtenáři dostanou e-mail, pokud se problematika změní."
+
+#: IDF/Issue.php:92 IDF/Project.php:94 IDF/Review.php:95 IDF/Upload.php:99
+#: IDF/Wiki/Page.php:94
+msgid "labels"
+msgstr "nálepky"
+
+#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114
+#: IDF/Upload.php:118 IDF/Wiki/Page.php:106 IDF/Wiki/Resource.php:101
+msgid "modification date"
+msgstr "datum změny"
+
+#: IDF/Issue.php:212 IDF/IssueComment.php:143
+#, php-format
+msgid ""
+"Issue %3$d, %4$s"
+msgstr ""
+"předmět "
+"k řešení %3$d, %4$s"
+
+#: IDF/Issue.php:214
+#, fuzzy, php-format
+msgid "Creation of issue %3$d, by %4$s"
+msgstr "Vytvoření předmět %d, by %s"
+
+#: IDF/Issue.php:224
+#, fuzzy, php-format
+msgid "%1$s: Issue %2$d created - %3$s"
+msgstr "%s: Předmět %d vytvořen - %s"
+
+#: IDF/Issue.php:307
+#, fuzzy, php-format
+msgid "Issue %1$s - %2$s (%3$s)"
+msgstr "Předmět k řešení %s - %s (%s)"
+
+#: IDF/Issue.php:311
+#, fuzzy, php-format
+msgid "Updated Issue %1$s - %2$s (%3$s)"
+msgstr "Předmět aktualizován %s - %s (%s)"
+
+#: IDF/IssueComment.php:51 IDF/IssueRelation.php:47
+msgid "issue"
+msgstr "předmět k řešení"
+
+#: IDF/IssueComment.php:58 IDF/IssueFile.php:49 IDF/Review/Comment.php:62
+#: IDF/Review/FileComment.php:49 IDF/Review/FileComment.php:69
+msgid "comment"
+msgstr "komentář"
+
+#: IDF/IssueComment.php:72 IDF/Review/Comment.php:75 IDF/Upload.php:63
+#: IDF/Wiki/PageRevision.php:85
+msgid "changes"
+msgstr "změny"
+
+#: IDF/IssueComment.php:73
+msgid "Serialized array of the changes in the issue."
+msgstr "Serializované pole změn předmětů k řešení."
+
+#: IDF/IssueComment.php:180
+#, fuzzy, php-format
+msgid "Comment on issue %3$d, by %4$s"
+msgstr ""
+"Komentář k předmětu k řešení č. %d"
+"a>, %s"
+
+#: IDF/IssueComment.php:191
+#, fuzzy, php-format
+msgid "%1$s: Comment on issue %2$d - %3$s"
+msgstr "%s: komentář k předmětu %d - %s"
+
+#: IDF/IssueFile.php:64
+msgid "file name"
+msgstr "jméno souboru"
+
+#: IDF/IssueFile.php:70
+msgid "the file"
+msgstr "soubor"
+
+#: IDF/IssueFile.php:76
+msgid "file size"
+msgstr "velikost souboru"
+
+#: IDF/IssueFile.php:84
+msgid "type"
+msgstr "typ"
+
+#: IDF/IssueFile.php:86
+msgid "Image"
+msgstr "obrázek"
+
+#: IDF/IssueFile.php:87
+msgid "Other"
+msgstr "Ostatní"
+
+#: IDF/IssueRelation.php:54
+msgid "verb"
+msgstr ""
+
+#: IDF/IssueRelation.php:61
+msgid "other issue"
+msgstr ""
+
+#: IDF/Key.php:55
+msgid "public key"
+msgstr ""
+
+#: IDF/Key.php:90
+msgid "Invalid or unknown key data detected."
+msgstr ""
+
+#: IDF/Plugin/SyncMercurial.php:78 IDF/Plugin/SyncSvn.php:81
+#, php-format
+msgid "The repository %s already exists."
+msgstr ""
+
+#: IDF/Plugin/SyncMercurial.php:142
+#, php-format
+msgid "%s does not exist or is not writable."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:107 IDF/Plugin/SyncMonotone.php:492
+msgid "\"mtn_repositories\" must be defined in your configuration file"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:114 IDF/Plugin/SyncMonotone.php:482
+msgid "\"mtn_usher_conf\" does not exist or is not writable"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:121
+#, php-format
+msgid "Could not find mtn-post-push script \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:155
+#, php-format
+msgid "The configuration file \"%s\" is missing"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:164
+#, php-format
+msgid "The project path \"%s\" already exists"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:170
+#, php-format
+msgid "The project path \"%s\" could not be created"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:208
+#, php-format
+msgid "The key directory \"%s\" could not be created"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:227
+#, php-format
+msgid "Could not parse key information: %s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:265
+#, php-format
+msgid "Could not create configuration directory \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:275
+#, php-format
+msgid "Could not create symlink for configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:293
+#, php-format
+msgid "Could not write configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:309 IDF/Plugin/SyncMonotone.php:525
+#, php-format
+msgid "Could not parse usher configuration in \"%1$s\": %2$s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:320
+#, php-format
+msgid "usher configuration already contains a server entry named \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:345 IDF/Plugin/SyncMonotone.php:546
+#, php-format
+msgid "Could not write usher configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:395
+#, php-format
+msgid "Could not write write-permissions file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:420
+#, php-format
+msgid "Could not write read-permissions file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:438
+#, php-format
+msgid "Could not remove symlink \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:446
+#, php-format
+msgid "Could not create symlink \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:500
+#, php-format
+msgid "One or more paths underneath %s could not be deleted"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:512
+#, php-format
+msgid "Could not delete client private key \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:599 IDF/Plugin/SyncMonotone.php:718
+#, php-format
+msgid "Could not parse read-permissions for project \"%1$s\": %2$s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:643 IDF/Plugin/SyncMonotone.php:741
+#, php-format
+msgid "Could not write read-permissions for project \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:657 IDF/Plugin/SyncMonotone.php:760
+#, php-format
+msgid "Could not write write-permissions file for project \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:813
+msgid "\"mtn_repositories\" must be defined in your configuration file."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:820
+#, php-format
+msgid "The project path %s does not exists."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:838
+#, php-format
+msgid "The command \"%s\" could not be executed."
+msgstr ""
+
+#: IDF/Project.php:62 IDF/Tag.php:66
+msgid "name"
+msgstr "jméno"
+
+#: IDF/Project.php:69
+msgid "short name"
+msgstr "krátké jméno"
+
+#: IDF/Project.php:70
+#, fuzzy
+msgid ""
+"Used in the URL to access the project, must be short with only letters and "
+"numbers."
+msgstr ""
+"Používáné v url k projektu, musí být krátké a obsahovat pouze písmena a "
+"čísla."
+
+#: IDF/Project.php:78
+msgid "short description"
+msgstr "krátký popis"
+
+#: IDF/Project.php:86 IDF/Review/Patch.php:74
+msgid "description"
+msgstr "popis"
+
+#: IDF/Project.php:87
+#, fuzzy
+msgid "The description can be extended using the Markdown syntax."
+msgstr "Popis může být rozšířen pomocí markdown syntaxe."
+
+#: IDF/Project.php:100
+msgid "private"
+msgstr "soukromé"
+
+#: IDF/Project.php:108
+msgid "current project activity"
+msgstr ""
+
+#: IDF/Project.php:159
+#, php-format
+msgid "Project \"%s\" not found."
+msgstr "Projekt \"%s\" nenalezen."
+
+#: IDF/ProjectActivity.php:56
+msgid "date"
+msgstr ""
+
+#: IDF/Review/Comment.php:55 IDF/Review/Patch.php:80
+msgid "patch"
+msgstr ""
+
+#: IDF/Review/Comment.php:83
+msgid "vote"
+msgstr ""
+
+#: IDF/Review/Comment.php:139 IDF/Review/Patch.php:151
+#, php-format
+msgid ""
+"Review %3$d, %4$s"
+msgstr ""
+
+#: IDF/Review/Comment.php:141
+#, fuzzy, php-format
+msgid "Update of review %3$d, by %4$s"
+msgstr "Vytvoření předmět %d, by %s"
+
+#: IDF/Review/Comment.php:151
+#, php-format
+msgid "%1$s: Updated review %2$d - %3$s"
+msgstr ""
+
+#: IDF/Review/Comment.php:222
+#, fuzzy, php-format
+msgid "Updated Code Review %1$s - %2$s (%3$s)"
+msgstr "Předmět aktualizován %s - %s (%s)"
+
+#: IDF/Review/Patch.php:52
+msgid "review"
+msgstr ""
+
+#: IDF/Review/Patch.php:67
+msgid "commit"
+msgstr ""
+
+#: IDF/Review/Patch.php:153
+#, fuzzy, php-format
+msgid "Creation of review %3$d, by %4$s"
+msgstr "Vytvoření předmět %d, by %s"
+
+#: IDF/Review/Patch.php:163
+#, fuzzy, php-format
+msgid "%1$s: Creation of Review %2$d - %3$s"
+msgstr "%s: komentář k předmětu %d - %s"
+
+#: IDF/Review/Patch.php:208
+#, fuzzy, php-format
+msgid "New Code Review %1$s - %2$s (%3$s)"
+msgstr "Nový commit %s - %s (%s)"
+
+#: IDF/Scm/Git.php:309 IDF/Scm/Mercurial.php:199
+#, php-format
+msgid "Folder %1$s not found in commit %2$s."
+msgstr ""
+
+#: IDF/Scm/Git.php:433 IDF/Scm/Mercurial.php:216
+#, php-format
+msgid "Not a valid tree: %s."
+msgstr ""
+
+#: IDF/Scm/Monotone/Stdio.php:81
+msgid "Monotone client key name or hash not in project conf."
+msgstr ""
+
+#: IDF/Scm/Monotone/Stdio.php:89
+#, php-format
+msgid "The key directory %s could not be created."
+msgstr ""
+
+#: IDF/Scm/Monotone/Stdio.php:100
+#, php-format
+msgid "Could not write client key \"%s\""
+msgstr ""
+
+#: IDF/Search/Occ.php:33
+msgid "occurrence"
+msgstr ""
+
+#: IDF/Search/Occ.php:49
+msgid "word"
+msgstr ""
+
+#: IDF/Search/Occ.php:75
+msgid "occurrences"
+msgstr ""
+
+#: IDF/Search/Occ.php:81
+msgid "ponderated occurrence"
+msgstr ""
+
+#: IDF/Tag.php:59
+msgid "tag class"
+msgstr "třída tagu"
+
+#: IDF/Tag.php:60
+msgid "The class of the tag."
+msgstr "Třída tagu."
+
+#: IDF/Tag.php:73
+msgid "lcname"
+msgstr "lcname"
+
+#: IDF/Tag.php:74
+msgid "Lower case version of the name for fast searching."
+msgstr "Jméno souboru s malými písmenky pro rychlé vyhledávání."
+
+#: IDF/Template/Markdown.php:84
+msgid "Create this documentation page"
+msgstr "Vytvořit tuto dokumentační stránku"
+
+#: IDF/Template/Markdown.php:97
+msgid "You are not allowed to access the wiki."
+msgstr ""
+
+#: IDF/Template/Markdown.php:106
+msgid "The wiki resource has not been found."
+msgstr ""
+
+#: IDF/Template/Markdown.php:113
+msgid "The wiki resource has not been found. Create it!"
+msgstr ""
+
+#: IDF/Template/Markdown.php:146
+msgid "This revision of the resource is no longer available."
+msgstr ""
+
+#: IDF/Template/ShowUser.php:51
+msgid "Anonymous"
+msgstr "Anonym"
+
+#: IDF/Template/ShowUser.php:54
+msgid "Me"
+msgstr "Já"
+
+#: IDF/Timeline/Paginator.php:49
+msgid "Today"
+msgstr ""
+
+#: IDF/Upload.php:70
+msgid "file"
+msgstr "soubor"
+
+#: IDF/Upload.php:71
+msgid "The path is relative to the upload path."
+msgstr "Cesta je relativní k adresáři nahrávaných souborů."
+
+#: IDF/Upload.php:78 IDF/Wiki/ResourceRevision.php:71
+msgid "file size in bytes"
+msgstr "velikost souboru v bytech"
+
+#: IDF/Upload.php:84
+msgid "MD5"
+msgstr ""
+
+#: IDF/Upload.php:106
+msgid "number of downloads"
+msgstr "počet stažení"
+
+#: IDF/Upload.php:201
+#, php-format
+msgid "Download %2$d, %3$s"
+msgstr "Stáhnout %2$d, %3$s"
+
+#: IDF/Upload.php:204
+#, fuzzy, php-format
+msgid "Addition of download %2$d, by %3$s"
+msgstr "Soubor %d přidán, kým - %s"
+
+#: IDF/Upload.php:214
+#, fuzzy, php-format
+msgid "%1$s: Download %2$d added - %3$s"
+msgstr "%s: Soubor %d přidán - %s"
+
+#: IDF/Upload.php:301
+#, fuzzy, php-format
+msgid "New download - %1$s (%2$s)"
+msgstr "Nové stažení - %s (%s)"
+
+#: IDF/Upload.php:305
+#, fuzzy, php-format
+msgid "Updated download - %1$s (%2$s)"
+msgstr "Nové stažení - %s (%s)"
+
+#: IDF/Views/Admin.php:47
+#, fuzzy
+msgid "The forge configuration has been saved."
+msgstr "Následující předmět k řešení byl aktualizován:"
+
+#: IDF/Views/Admin.php:80
+msgid "This table shows the projects in the forge."
+msgstr ""
+
+#: IDF/Views/Admin.php:85
+msgid "Short Name"
+msgstr ""
+
+#: IDF/Views/Admin.php:87
+msgid "Repository Size"
+msgstr ""
+
+#: IDF/Views/Admin.php:93
+msgid "No projects were found."
+msgstr ""
+
+#: IDF/Views/Admin.php:116
+#, fuzzy
+msgid "The label configuration has been saved."
+msgstr "Následující předmět k řešení byl aktualizován:"
+
+#: IDF/Views/Admin.php:147 IDF/Views/Admin.php:314 IDF/Views/Wiki.php:484
+#: IDF/Views/Wiki.php:536
+#, php-format
+msgid "Update %s"
+msgstr ""
+
+#: IDF/Views/Admin.php:155 IDF/Views/Project.php:304
+msgid "The project has been updated."
+msgstr ""
+
+#: IDF/Views/Admin.php:192
+msgid "The project has been created."
+msgstr ""
+
+#: IDF/Views/Admin.php:223
+#, php-format
+msgid "Delete %s Project"
+msgstr ""
+
+#: IDF/Views/Admin.php:230
+msgid "The project has been deleted."
+msgstr ""
+
+#: IDF/Views/Admin.php:260
+msgid "Not Validated User List"
+msgstr ""
+
+#: IDF/Views/Admin.php:268
+msgid "This table shows the users in the forge."
+msgstr ""
+
+#: IDF/Views/Admin.php:272
+msgid "login"
+msgstr ""
+
+#: IDF/Views/Admin.php:275
+msgid "Admin"
+msgstr ""
+
+#: IDF/Views/Admin.php:277
+msgid "Last Login"
+msgstr ""
+
+#: IDF/Views/Admin.php:284
+msgid "No users were found."
+msgstr ""
+
+#: IDF/Views/Admin.php:321
+msgid "You do not have the rights to update this user."
+msgstr ""
+
+#: IDF/Views/Admin.php:339
+msgid "The user has been updated."
+msgstr ""
+
+#: IDF/Views/Admin.php:372
+#, php-format
+msgid "The user %s has been created."
+msgstr ""
+
+#: IDF/Views/Admin.php:379
+msgid "Add User"
+msgstr ""
+
+#: IDF/Views/Admin.php:395
+msgid "Usher management"
+msgstr ""
+
+#: IDF/Views/Admin.php:432
+msgid "Usher configuration has been reloaded"
+msgstr ""
+
+#: IDF/Views/Admin.php:436
+msgid "Usher has been shut down"
+msgstr ""
+
+#: IDF/Views/Admin.php:441
+msgid "Usher has been started up"
+msgstr ""
+
+#: IDF/Views/Admin.php:479
+#, php-format
+msgid "The server \"%s\" has been started"
+msgstr ""
+
+#: IDF/Views/Admin.php:483
+#, php-format
+msgid "The server \"%s\" has been stopped"
+msgstr ""
+
+#: IDF/Views/Admin.php:488
+#, php-format
+msgid "The server \"%s\" has been killed"
+msgstr ""
+
+#: IDF/Views/Admin.php:508
+#, php-format
+msgid "Open connections for \"%s\""
+msgstr ""
+
+#: IDF/Views/Admin.php:513
+#, php-format
+msgid "no connections for server \"%s\""
+msgstr ""
+
+#: IDF/Views/Admin.php:534
+msgid "Yes"
+msgstr "Ano"
+
+#: IDF/Views/Admin.php:534
+msgid "No"
+msgstr ""
+
+#: IDF/Views/Download.php:45
+#, php-format
+msgid "%s Downloads"
+msgstr ""
+
+#: IDF/Views/Download.php:51
+msgid "This table shows the files to download."
+msgstr ""
+
+#: IDF/Views/Download.php:67 IDF/Views/Download.php:349
+msgid "Uploaded"
+msgstr ""
+
+#: IDF/Views/Download.php:71 IDF/Views/Download.php:353
+msgid "No downloads were found."
+msgstr ""
+
+#: IDF/Views/Download.php:94
+#, php-format
+msgid "Download %s"
+msgstr ""
+
+#: IDF/Views/Download.php:111
+#, php-format
+msgid "The file %2$s has been updated."
+msgstr ""
+
+#: IDF/Views/Download.php:144
+#, php-format
+msgid "Delete Download %s"
+msgstr ""
+
+#: IDF/Views/Download.php:177
+msgid "The file has been deleted."
+msgstr ""
+
+#: IDF/Views/Download.php:244
+#, php-format
+msgid "The file has been uploaded."
+msgstr ""
+
+#: IDF/Views/Download.php:271
+msgid "New Downloads from Archive"
+msgstr ""
+
+#: IDF/Views/Download.php:278
+msgid "The archive has been uploaded and processed."
+msgstr ""
+
+#: IDF/Views/Download.php:331
+#, php-format
+msgid "%1$s Downloads with Label %2$s"
+msgstr "%1$s soubory ke stažení s nálepkou %2$s"
+
+#: IDF/Views/Download.php:341
+#, php-format
+msgid "This table shows the downloads with label %s."
+msgstr ""
+"Tato tabulka ukazuje soubory ke stažení s nálepkou problémy k řešení %s."
+
+#: IDF/Views/Issue.php:41
+#, php-format
+msgid "%s Open Issues"
+msgstr "%s otevřené problémy k řešení"
+
+#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:382 IDF/Views/User.php:75
+msgid "This table shows the open issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:61 IDF/Views/Issue.php:220 IDF/Views/Issue.php:301
+#: IDF/Views/Issue.php:390 IDF/Views/Issue.php:542 IDF/Views/Issue.php:765
+#: IDF/Views/Issue.php:824 IDF/Views/Review.php:57 IDF/Views/User.php:81
+msgid "Id"
+msgstr ""
+
+#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:223 IDF/Views/Issue.php:305
+#: IDF/Views/Issue.php:393 IDF/Views/Issue.php:545 IDF/Views/Issue.php:768
+#: IDF/Views/Issue.php:827 IDF/Views/Review.php:60 IDF/Views/User.php:85
+msgid "Last Updated"
+msgstr ""
+
+#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:227 IDF/Views/Issue.php:309
+#: IDF/Views/Issue.php:397 IDF/Views/Issue.php:549 IDF/Views/Issue.php:772
+#: IDF/Views/Issue.php:831
+msgid "No issues were found."
+msgstr "Nebyly nalezeny žádné problémy k řešení."
+
+#: IDF/Views/Issue.php:113
+msgid "Not assigned"
+msgstr ""
+
+#: IDF/Views/Issue.php:149
+#, php-format
+msgid "Summary of tracked issues in %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:194
+#, php-format
+msgid "Watch List: Closed Issues for %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:195
+#, php-format
+msgid "This table shows the closed issues in your watch list for %s project."
+msgstr ""
+
+#: IDF/Views/Issue.php:200
+#, php-format
+msgid "Watch List: Open Issues for %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:201
+#, php-format
+msgid "This table shows the open issues in your watch list for %s project."
+msgstr ""
+
+#: IDF/Views/Issue.php:277
+msgid "Watch List: Closed Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:278
+msgid "This table shows the closed issues in your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:283
+msgid "Watch List: Open Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:284
+msgid "This table shows the open issues in your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:303 IDF/Views/User.php:82
+msgid "Project"
+msgstr ""
+
+#: IDF/Views/Issue.php:344
+#, fuzzy, php-format
+msgid "%1$s %2$s Submitted %3$s Issues"
+msgstr "Odeslané předměty k řešení:"
+
+#: IDF/Views/Issue.php:348
+#, php-format
+msgid "%1$s %2$s Closed Submitted %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:352
+#, fuzzy, php-format
+msgid "%1$s %2$s Closed Working %3$s Issues"
+msgstr "%s uzavřený předmět k řešení"
+
+#: IDF/Views/Issue.php:356
+#, php-format
+msgid "%1$s %2$s Working %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:417
+msgid "Submit a new issue"
+msgstr "Odeslat nový předmět k řešení."
+
+#: IDF/Views/Issue.php:433
+#, fuzzy, php-format
+msgid "Issue %2$d has been created."
+msgstr "Předmět k řešení č. %d byl vytvořen."
+
+#: IDF/Views/Issue.php:490
+#, php-format
+msgid "Search issues - %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:492
+#, php-format
+msgid "Search closed issues - %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:539
+msgid "This table shows the found issues."
+msgstr "Tato tabulka ukazuje nalezené předměty k řešení."
+
+#: IDF/Views/Issue.php:604
+#, fuzzy, php-format
+msgid "Issue %2$d: %3$s"
+msgstr "Předmět k řešení č. %d: %s"
+
+#: IDF/Views/Issue.php:628
+#, fuzzy, php-format
+msgid "Issue %2$d has been updated."
+msgstr "Předmět k řešení č. %d byl aktualizován."
+
+#: IDF/Views/Issue.php:718
+#, php-format
+msgid "View %s"
+msgstr "Zobrazit %s"
+
+#: IDF/Views/Issue.php:745
+#, php-format
+msgid "%s Closed Issues"
+msgstr "%s uzavřený předmět k řešení"
+
+#: IDF/Views/Issue.php:755
+msgid "This table shows the closed issues."
+msgstr "Tato tabulka ukazuje uzavřené předměty k řešení."
+
+#: IDF/Views/Issue.php:798
+#, php-format
+msgid "%1$s Issues with Label %2$s"
+msgstr "%1$s předmět k řešení s nálepkou %2$s"
+
+#: IDF/Views/Issue.php:801
+#, php-format
+msgid "%1$s Closed Issues with Label %2$s"
+msgstr "%1$s uzavřený předmět k řešení s nálepkou %2$s"
+
+#: IDF/Views/Issue.php:814
+#, php-format
+msgid "This table shows the issues with label %s."
+msgstr "Tato tabulka ukazuje předměty k řešení s nálepkou %s."
+
+#: IDF/Views/Issue.php:937
+msgid "The issue has been removed from your watch list."
+msgstr "Předmět řešení byl odebrán z vašeho seznamu ke sledování."
+
+#: IDF/Views/Issue.php:940
+msgid "The issue has been added to your watch list."
+msgstr "Předměty k řešení byl přidán do vašeho seznamu ke sledování."
+
+#: IDF/Views/Issue.php:1037
+msgid "On your watch list."
+msgstr "Na vašem sledovacím seznamu."
+
+#: IDF/Views/Project.php:95
+msgid "Issues and Comments"
+msgstr ""
+
+#: IDF/Views/Project.php:99
+msgid "Documents"
+msgstr ""
+
+#: IDF/Views/Project.php:101
+msgid "Reviews and Patches"
+msgstr ""
+
+#: IDF/Views/Project.php:180
+msgid "This table shows the project updates."
+msgstr ""
+
+#: IDF/Views/Project.php:191
+msgid "Change"
+msgstr ""
+
+#: IDF/Views/Project.php:195
+msgid "No changes were found."
+msgstr ""
+
+#: IDF/Views/Project.php:296
+#, php-format
+msgid "%s Project Summary"
+msgstr ""
+
+#: IDF/Views/Project.php:335
+#, php-format
+msgid "%s Issue Tracking Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:344
+msgid "The issue tracking configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:381
+#, php-format
+msgid "%s Downloads Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:393
+msgid "The downloads configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:428
+#, php-format
+msgid "%s Documentation Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:437
+msgid "The documentation configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:471
+#, php-format
+msgid "%s Project Members"
+msgstr ""
+
+#: IDF/Views/Project.php:480
+msgid "The project membership has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:503
+#, php-format
+msgid "%s Tabs Access Rights"
+msgstr ""
+
+#: IDF/Views/Project.php:517
+msgid ""
+"The project tabs access rights and notification settings have been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:566
+#, php-format
+msgid "%s Source"
+msgstr ""
+
+#: IDF/Views/Project.php:580
+msgid "The project source configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Review.php:41
+#, php-format
+msgid "%s Code Reviews"
+msgstr ""
+
+#: IDF/Views/Review.php:48
+msgid "This table shows the latest reviews."
+msgstr ""
+
+#: IDF/Views/Review.php:64
+msgid "No reviews were found."
+msgstr ""
+
+#: IDF/Views/Review.php:94
+#, fuzzy, php-format
+msgid "The code review %2$d has been created."
+msgstr "Předmět k řešení č. %d byl vytvořen."
+
+#: IDF/Views/Review.php:140
+#, fuzzy, php-format
+msgid "Review %2$d: %3$s"
+msgstr "Předmět k řešení č. %d: %s"
+
+#: IDF/Views/Review.php:160
+#, fuzzy, php-format
+msgid "Your code review %2$d has been published."
+msgstr "Předmět k řešení č. %d byl aktualizován."
+
+#: IDF/Views/Source.php:40
+#, php-format
+msgid "%s Source Help"
+msgstr ""
+
+#: IDF/Views/Source.php:58
+#, php-format
+msgid "%s Invalid Revision"
+msgstr ""
+
+#: IDF/Views/Source.php:82
+#, php-format
+msgid "%s Ambiguous Revision"
+msgstr ""
+
+#: IDF/Views/Source.php:107
+#, php-format
+msgid "%1$s %2$s Change Log"
+msgstr ""
+
+#: IDF/Views/Source.php:153 IDF/Views/Source.php:234 IDF/Views/Source.php:362
+#, php-format
+msgid "%1$s %2$s Source Tree"
+msgstr ""
+
+#: IDF/Views/Source.php:310
+#, php-format
+msgid "%s Commit Details"
+msgstr ""
+
+#: IDF/Views/Source.php:311
+#, php-format
+msgid "%1$s Commit Details - %2$s"
+msgstr ""
+
+#: IDF/Views/User.php:59
+msgid "Your Dashboard - Working Issues"
+msgstr ""
+
+#: IDF/Views/User.php:62
+msgid "Your Dashboard - Submitted Issues"
+msgstr ""
+
+#: IDF/Views/User.php:89
+msgid "No issues are assigned to you, yeah!"
+msgstr ""
+
+#: IDF/Views/User.php:89
+msgid "All the issues you submitted are fixed, yeah!"
+msgstr ""
+
+#: IDF/Views/User.php:121
+msgid "Your personal information has been updated."
+msgstr ""
+
+#: IDF/Views/User.php:133
+msgid "Your Account"
+msgstr ""
+
+#: IDF/Views/User.php:157
+msgid "The public key has been deleted."
+msgstr ""
+
+#: IDF/Views/User.php:177
+msgid "The address has been deleted."
+msgstr ""
+
+#: IDF/Views/User.php:200
+msgid "Confirm The Email Change"
+msgstr ""
+
+#: IDF/Views/User.php:232
+#, php-format
+msgid "Your new email address \"%s\" has been validated. Thank you!"
+msgstr ""
+
+#: IDF/Views/Wiki.php:41
+#, php-format
+msgid "%s Documentation"
+msgstr ""
+
+#: IDF/Views/Wiki.php:48
+msgid "This table shows the documentation pages."
+msgstr ""
+
+#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:144 IDF/Views/Wiki.php:185
+msgid "Page Title"
+msgstr ""
+
+#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:103 IDF/Views/Wiki.php:146
+#: IDF/Views/Wiki.php:187
+msgid "Updated"
+msgstr ""
+
+#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:191
+msgid "No documentation pages were found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:88
+#, fuzzy, php-format
+msgid "%s Documentation Resources"
+msgstr "%s: Dokumentační stránka %s aktualizována - %s"
+
+#: IDF/Views/Wiki.php:94
+#, fuzzy
+msgid "This table shows the resources that can be used on documentation pages."
+msgstr "Tato tabulka ukazuje předměty k řešení s nálepkou %s."
+
+#: IDF/Views/Wiki.php:100
+msgid "Resource Title"
+msgstr ""
+
+#: IDF/Views/Wiki.php:107
+#, fuzzy
+msgid "No resources were found."
+msgstr "Nebyly nalezeny žádné problémy k řešení."
+
+#: IDF/Views/Wiki.php:128
+#, php-format
+msgid "Documentation Search - %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:139
+msgid "This table shows the pages found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:150
+msgid "No pages were found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:169
+#, php-format
+msgid "%1$s Documentation Pages with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:179
+#, php-format
+msgid "This table shows the documentation pages with label %s."
+msgstr ""
+
+#: IDF/Views/Wiki.php:222
+#, fuzzy, php-format
+msgid "The page %2$s has been created."
+msgstr "Předmět k řešení č. %d byl vytvořen."
+
+#: IDF/Views/Wiki.php:265
+#, fuzzy, php-format
+msgid "The resource %2$s has been created."
+msgstr "Předmět k řešení č. %d byl vytvořen."
+
+#: IDF/Views/Wiki.php:409 IDF/Views/Wiki.php:448
+msgid "The old revision has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:415 IDF/Views/Wiki.php:454
+#, php-format
+msgid "Delete Old Revision of %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:496
+#, fuzzy, php-format
+msgid "The page %2$s has been updated."
+msgstr "Předmět k řešení č. %d byl aktualizován."
+
+#: IDF/Views/Wiki.php:548
+#, fuzzy, php-format
+msgid "The resource %2$s has been updated."
+msgstr "Předmět k řešení č. %d byl aktualizován."
+
+#: IDF/Views/Wiki.php:583
+msgid "The documentation page has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:591
+#, php-format
+msgid "Delete Page %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:623
+#, fuzzy
+msgid "The documentation resource has been deleted."
+msgstr "Následující předmět k řešení byl aktualizován:"
+
+#: IDF/Views/Wiki.php:631
+#, php-format
+msgid "Delete Resource %s"
+msgstr ""
+
+#: IDF/Views.php:173 IDF/Views.php:199
+msgid "Confirm Your Account Creation"
+msgstr "Potvrďte vytvoření Vašeho účtu"
+
+#: IDF/Views.php:219
+msgid "Welcome! You can now participate in the life of your project of choice."
+msgstr "Vítejte! Nyní se můžete účastnit života projektu dle vašeho výběru."
+
+#: IDF/Views.php:245 IDF/Views.php:269 IDF/Views.php:310
+msgid "Password Recovery"
+msgstr "Obnova hesla"
+
+#: IDF/Views.php:289
+msgid ""
+"Welcome back! Next time, you can use your broswer options to remember the "
+"password."
+msgstr ""
+"Vítejte zpět! Příště můžete použít nastavení prohlížeče pro zapamatování "
+"hesla."
+
+#: IDF/Views.php:331
+msgid "Here to Help You!"
+msgstr "Zde k Vaší pomoci!"
+
+#: IDF/Views.php:347
+msgid "InDefero Upload Archive Format"
+msgstr ""
+
+#: IDF/Views.php:363
+msgid "InDefero API (Application Programming Interface)"
+msgstr "InDefero API (aplikační programátorský interface)"
+
+#: IDF/Wiki/Page.php:62 IDF/Wiki/Resource.php:64
+msgid "title"
+msgstr "nadpis"
+
+#: IDF/Wiki/Page.php:63
+msgid ""
+"The title of the page must only contain letters, digits or the dash "
+"character. For example: My-new-Wiki-Page."
+msgstr ""
+"Nadpis musí obsahovat pouze písmena, čísla nebo pomlčku. Např. Moje-nova-"
+"WiKi-Stranka."
+
+#: IDF/Wiki/Page.php:71
+msgid "A one line description of the page content."
+msgstr "Jednořádkový popis obsahu stránky."
+
+#: IDF/Wiki/Page.php:196 IDF/Wiki/PageRevision.php:196
+#, php-format
+msgid "%2$s, %3$s"
+msgstr "%2$s, %3$s"
+
+#: IDF/Wiki/Page.php:198
+#, fuzzy, php-format
+msgid "Creation of page %2$s, by %3$s"
+msgstr "Stránka %s, vytvořena %s"
+
+#: IDF/Wiki/Page.php:208
+#, fuzzy, php-format
+msgid "%1$s: Documentation page %2$s added - %3$s"
+msgstr "%s: Stránka dokumentace %s přidána - %s"
+
+#: IDF/Wiki/PageRevision.php:48
+msgid "page"
+msgstr "stránka"
+
+#: IDF/Wiki/PageRevision.php:66 IDF/Wiki/ResourceRevision.php:64
+msgid "A one line description of the changes."
+msgstr "Jednořádkový popis změn."
+
+#: IDF/Wiki/PageRevision.php:72
+msgid "content"
+msgstr "obsah"
+
+#: IDF/Wiki/PageRevision.php:218 IDF/Wiki/ResourceRevision.php:311
+#, fuzzy, php-format
+msgid "Change of %2$s, by %3$s"
+msgstr "Změněno %s, kým %s"
+
+#: IDF/Wiki/PageRevision.php:231
+#, fuzzy, php-format
+msgid "%1$s: Documentation page %2$s updated - %3$s"
+msgstr "%s: Dokumentační stránka %s aktualizována - %s"
+
+#: IDF/Wiki/PageRevision.php:293
+#, fuzzy, php-format
+msgid "New Documentation Page %1$s - %2$s (%3$s)"
+msgstr "Nová dokumentační stránka %s - %s (%s)"
+
+#: IDF/Wiki/PageRevision.php:297
+#, fuzzy, php-format
+msgid "Documentation Page Changed %1$s - %2$s (%3$s)"
+msgstr "Dokumentační stránka změněna %s - %s (%s)"
+
+#: IDF/Wiki/Resource.php:65
+#, fuzzy
+msgid ""
+"The title of the resource must only contain letters, digits, dots or the "
+"dash character. For example: my-resource.png."
+msgstr ""
+"Nadpis musí obsahovat pouze písmena, čísla nebo pomlčku. Např. Moje-nova-"
+"WiKi-Stranka."
+
+#: IDF/Wiki/Resource.php:72
+msgid "MIME media type"
+msgstr ""
+
+#: IDF/Wiki/Resource.php:73
+msgid "The MIME media type of the resource."
+msgstr ""
+
+#: IDF/Wiki/Resource.php:81
+#, fuzzy
+msgid "A one line description of the resource."
+msgstr "Jednořádkový popis projektu."
+
+#: IDF/Wiki/Resource.php:176 IDF/Wiki/ResourceRevision.php:308
+#, fuzzy, php-format
+msgid "%2$s, %3$s"
+msgstr "%2$s, %3$s"
+
+#: IDF/Wiki/Resource.php:178
+#, fuzzy, php-format
+msgid "Creation of resource %2$s, by %3$s"
+msgstr "Stránka %s, vytvořena %s"
+
+#: IDF/Wiki/Resource.php:188
+#, fuzzy, php-format
+msgid "%1$s: Documentation resource %2$s added - %3$s"
+msgstr "%s: Stránka dokumentace %s přidána - %s"
+
+#: IDF/Wiki/ResourceRevision.php:47
+msgid "resource"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:78
+msgid "File extension"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:79
+msgid "The file extension of the uploaded resource."
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:94
+msgid "page usage"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:116
+#, php-format
+msgid "id %d: %s"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:263
+#, fuzzy, php-format
+msgid "Download (%s)"
+msgstr "Nové stažení - %s (%s)"
+
+#: IDF/Wiki/ResourceRevision.php:270
+msgid "View resource details"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:324
+#, fuzzy, php-format
+msgid "%1$s: Documentation resource %2$s updated - %3$s"
+msgstr "%s: Dokumentační stránka %s aktualizována - %s"
diff --git a/indefero/src/IDF/locale/de/idf.po b/indefero/src/IDF/locale/de/idf.po
new file mode 100644
index 0000000..f35c1b7
--- /dev/null
+++ b/indefero/src/IDF/locale/de/idf.po
@@ -0,0 +1,6171 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Indefero\n"
+"Report-Msgid-Bugs-To: http://projects.ceondo.com/p/indefero/issues/\n"
+"POT-Creation-Date: 2012-03-22 01:16+0100\n"
+"PO-Revision-Date: 2011-03-04 18:20+0000\n"
+"Last-Translator: tommyd \n"
+"Language-Team: German <>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Language: de_DE\n"
+"X-Source-Language: C\n"
+
+#: IDF/Commit.php:55 IDF/Conf.php:54 IDF/Issue.php:52
+#: IDF/ProjectActivity.php:49 IDF/Review.php:65 IDF/Search/Occ.php:69
+#: IDF/Tag.php:52 IDF/Upload.php:49 IDF/Wiki/Page.php:54
+#: IDF/Wiki/Resource.php:56
+msgid "project"
+msgstr "Projekt"
+
+#: IDF/Commit.php:63 IDF/Issue.php:67 IDF/IssueComment.php:65
+#: IDF/IssueFile.php:57 IDF/IssueRelation.php:69 IDF/Review/Comment.php:69
+#: IDF/Review.php:80 IDF/Upload.php:91 IDF/Wiki/Page.php:78
+#: IDF/Wiki/PageRevision.php:79 IDF/Wiki/Resource.php:88
+#: IDF/Wiki/ResourceRevision.php:86
+msgid "submitter"
+msgstr "Absender"
+
+#: IDF/Commit.php:87 IDF/Issue.php:60 IDF/Review/Patch.php:60 IDF/Review.php:73
+#: IDF/Upload.php:57 IDF/Wiki/Page.php:70 IDF/Wiki/PageRevision.php:65
+#: IDF/Wiki/Resource.php:80 IDF/Wiki/ResourceRevision.php:63
+msgid "summary"
+msgstr "Zusammenfassung"
+
+#: IDF/Commit.php:93
+msgid "changelog"
+msgstr "Änderungen"
+
+#: IDF/Commit.php:100 IDF/Issue.php:105 IDF/IssueComment.php:79
+#: IDF/IssueFile.php:96 IDF/IssueRelation.php:75 IDF/Review/Comment.php:90
+#: IDF/Review/FileComment.php:75 IDF/Review/Patch.php:87 IDF/Review.php:108
+#: IDF/Upload.php:112 IDF/Wiki/Page.php:100 IDF/Wiki/PageRevision.php:92
+#: IDF/Wiki/Resource.php:95 IDF/Wiki/ResourceRevision.php:101
+msgid "creation date"
+msgstr "Erstellt am"
+
+#: IDF/Commit.php:238
+#, php-format
+msgid "Commit %1$s, by %2$s"
+msgstr "Revision %1$s, von %2$s"
+
+#: IDF/Commit.php:337
+#, php-format
+msgid "New Commit %1$s - %2$s (%3$s)"
+msgstr "Neue Revision %1$s - %2$s (%3$s)"
+
+#: IDF/Conf.php:61 IDF/Gconf.php:73
+msgid "key"
+msgstr "Schlüssel"
+
+#: IDF/Conf.php:67 IDF/Gconf.php:79 IDF/ProjectActivity.php:62
+msgid "value"
+msgstr "Wert"
+
+#: IDF/Diff.php:460
+msgid "Old"
+msgstr "Alt"
+
+#: IDF/Diff.php:460
+msgid "New"
+msgstr "Neu"
+
+#: IDF/EmailAddress.php:49 IDF/Key.php:49
+msgid "user"
+msgstr "Benutzer"
+
+#: IDF/EmailAddress.php:55
+msgid "email"
+msgstr "E-Mail"
+
+#: IDF/Form/Admin/ForgeConf.php:34
+msgid "Custom forge page enabled"
+msgstr "Benutzerdefinierte Forge-Seite aktiviert"
+
+#: IDF/Form/Admin/ForgeConf.php:39 IDF/Form/WikiPageCreate.php:80
+#: IDF/Form/WikiPageUpdate.php:72
+msgid "Content"
+msgstr "Inhalt"
+
+#: IDF/Form/Admin/LabelConf.php:40
+msgid "Predefined project labels"
+msgstr "Vordefinierte Projekt-Marken"
+
+#: IDF/Form/Admin/LabelConf.php:55
+#, php-format
+msgid ""
+"The label \"%s\" is invalid: A label must only consist of alphanumeric "
+"characters and dashes, and can optionally contain a \":\" with a group "
+"prefix."
+msgstr ""
+"Die Marke \"%s\" ist ungültig. Eine Marke darf nur aus alphanumerischen "
+"Zeichen und Bindestrichen bestehen und darf optional einen Doppelpunkt mit "
+"einem Gruppen-Präfix beinhalten."
+
+#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:600
+msgid "git"
+msgstr "git"
+
+#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:601
+msgid "Subversion"
+msgstr "Subversion"
+
+#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:602
+msgid "mercurial"
+msgstr "mercurial"
+
+#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:603
+msgid "monotone"
+msgstr "monotone"
+
+#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44
+#: IDF/Form/ProjectConf.php:39 IDF/Views/Admin.php:86 IDF/Views/Admin.php:273
+msgid "Name"
+msgstr "Name"
+
+#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:101
+#: IDF/gettexttemplates/idf/base-full.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html~.php:5
+#: IDF/gettexttemplates/idf/base.html.php:5
+#: IDF/gettexttemplates/idf/base.html~.php:5
+#: IDF/gettexttemplates/idf/main-menu.html.php:9
+#: IDF/gettexttemplates/idf/project-list.html.php:5
+#: IDF/gettexttemplates/idf/project-list.html.php:7
+msgid "Private project"
+msgstr "Privates Projekt"
+
+#: IDF/Form/Admin/ProjectCreate.php:62
+msgid "Shortname"
+msgstr "Kurzname"
+
+#: IDF/Form/Admin/ProjectCreate.php:64
+msgid ""
+"It must be unique for each project and composed only of letters, digits and "
+"dash (-) like \"my-project\"."
+msgstr ""
+"Er muss das Projekt eindeutig identifizieren und darf nur aus Buchstaben "
+"(ohne Umlaute), Ziffern und dem Bindestrich (-) bestehen, zum Beispiel "
+"\"mein-projekt\"."
+
+#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50
+msgid "Short description"
+msgstr "Kurzbeschreibung"
+
+#: IDF/Form/Admin/ProjectCreate.php:70 IDF/Form/Admin/ProjectUpdate.php:51
+#: IDF/Project.php:79
+msgid "A one line description of the project."
+msgstr "Einzeilige Beschreibung des Projektes."
+
+#: IDF/Form/Admin/ProjectCreate.php:77 IDF/Form/Admin/ProjectUpdate.php:58
+#: IDF/Form/ProjectConf.php:56
+msgid "External URL"
+msgstr "Externe URL"
+
+#: IDF/Form/Admin/ProjectCreate.php:84
+msgid "Repository type"
+msgstr "Depot-Typ"
+
+#: IDF/Form/Admin/ProjectCreate.php:92
+msgid "Remote Subversion repository"
+msgstr "Entferntes Subversion-Depot"
+
+#: IDF/Form/Admin/ProjectCreate.php:99 IDF/Form/SourceConf.php:40
+msgid "Repository username"
+msgstr "Depot-Benutzername"
+
+#: IDF/Form/Admin/ProjectCreate.php:106 IDF/Form/SourceConf.php:47
+msgid "Repository password"
+msgstr "Depot-Passwort"
+
+#: IDF/Form/Admin/ProjectCreate.php:113 IDF/Form/Admin/ProjectUpdate.php:66
+msgid "Master branch"
+msgstr "Hauptzweig"
+
+#: IDF/Form/Admin/ProjectCreate.php:116 IDF/Form/Admin/ProjectUpdate.php:69
+msgid ""
+"This should be a world-wide unique identifier for your project. A reverse "
+"DNS notation like \"com.my-domain.my-project\" is a good idea."
+msgstr ""
+"Dies sollte ein weltweit eindeutiger Bezeichner für Dein Projekt sein. Eine "
+"umgekehrte DNS-Notation wie \"com.my-domain.my-projekt\" ist eine gute Idee."
+
+#: IDF/Form/Admin/ProjectCreate.php:121 IDF/Form/Admin/ProjectUpdate.php:95
+#: IDF/Form/MembersConf.php:46 IDF/Form/TabsConf.php:53 IDF/Form/TabsConf.php:72
+msgid "Project owners"
+msgstr "Projekt-Eigentümer"
+
+#: IDF/Form/Admin/ProjectCreate.php:130 IDF/Form/Admin/ProjectUpdate.php:103
+#: IDF/Form/MembersConf.php:54 IDF/Form/TabsConf.php:52 IDF/Form/TabsConf.php:78
+msgid "Project members"
+msgstr "Projektmitglieder"
+
+#: IDF/Form/Admin/ProjectCreate.php:140 IDF/Form/Admin/ProjectUpdate.php:85
+#: IDF/Form/IssueCreate.php:168 IDF/Form/IssueUpdate.php:164
+#: IDF/Form/ProjectConf.php:73 IDF/Form/UpdateUpload.php:71
+#: IDF/Form/Upload.php:70 IDF/Form/WikiPageCreate.php:93
+#: IDF/Form/WikiPageUpdate.php:104
+msgid "Labels"
+msgstr "Marken"
+
+#: IDF/Form/Admin/ProjectCreate.php:155
+msgid "Project template"
+msgstr "Projektvorlage"
+
+#: IDF/Form/Admin/ProjectCreate.php:157
+msgid ""
+"Use the given project to initialize the new project. Access rights and "
+"general configuration will be taken from the template project."
+msgstr ""
+"Benutze das vorgegebene Projekt, um ein neues zu initialisieren. "
+"Zugriffsrechte und allgemeine Konfiguration werden von der Projektvorlage "
+"übernommen."
+
+#: IDF/Form/Admin/ProjectCreate.php:204
+msgid ""
+"Only a remote repository available through HTTP or HTTPS is allowed. For "
+"example \"http://somewhere.com/svn/trunk\"."
+msgstr ""
+"Nur ein entferntes Depot, welches durch HTTP oder HTTPS verfügbar ist, ist "
+"erlaubt. Beispiel: \"http://somewhere.com/svn/trunk\"."
+
+#: IDF/Form/Admin/ProjectCreate.php:220 IDF/Form/Admin/ProjectUpdate.php:117
+msgid ""
+"The master branch is empty or contains illegal characters, please use only "
+"letters, digits, dashes and dots as separators."
+msgstr ""
+"Der Hauptzweig ist leer oder enthält ungültige Zeichen. Bitte verwende nur "
+"Buchstaben, Ziffern, Bindestriche und Punkte als Trenner."
+
+#: IDF/Form/Admin/ProjectCreate.php:230 IDF/Form/Admin/ProjectUpdate.php:128
+msgid "This master branch is already used. Please select another one."
+msgstr "Der Hauptzweig wird bereits verwendet. Bitte wähle einen anderen."
+
+#: IDF/Form/Admin/ProjectCreate.php:241
+msgid ""
+"This shortname contains illegal characters, please use only letters, digits "
+"and dash (-)."
+msgstr ""
+"Der Kurzname enthält ungültige Zeichen. Bitte verwende nur Buchstaben (ohne "
+"Umlaute), Ziffern und den Bindestrich."
+
+#: IDF/Form/Admin/ProjectCreate.php:244
+msgid "The shortname cannot start with the dash (-) character."
+msgstr "Der Kurzname darf nicht mit einem Bindestrich (-) beginnen."
+
+#: IDF/Form/Admin/ProjectCreate.php:247
+msgid "The shortname cannot end with the dash (-) character."
+msgstr "Der Kurzname darf nicht mit einem Bindestrich (-) enden."
+
+#: IDF/Form/Admin/ProjectCreate.php:252
+msgid "This shortname is already used. Please select another one."
+msgstr ""
+"Der gewählte Kurzname wird bereits verwendet. Bitte wähle einen anderen."
+
+#: IDF/Form/Admin/ProjectCreate.php:303 IDF/Form/Admin/ProjectDelete.php:78
+#: IDF/Form/Admin/ProjectUpdate.php:153 IDF/Form/Admin/UserCreate.php:106
+#: IDF/Form/Admin/UserUpdate.php:191 IDF/Form/IssueCreate.php:338
+#: IDF/Form/IssueUpdate.php:329 IDF/Form/MembersConf.php:64
+#: IDF/Form/Password.php:76 IDF/Form/Register.php:112
+#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:143
+#: IDF/Form/TabsConf.php:122 IDF/Form/UpdateUpload.php:126
+#: IDF/Form/Upload.php:149 IDF/Form/UploadArchive.php:137
+#: IDF/Form/UserAccount.php:216 IDF/Form/UserChangeEmail.php:80
+#: IDF/Form/WikiPageCreate.php:167 IDF/Form/WikiPageDelete.php:59
+#: IDF/Form/WikiPageUpdate.php:178 IDF/Form/WikiResourceCreate.php:123
+#: IDF/Form/WikiResourceDelete.php:59 IDF/Form/WikiResourceUpdate.php:124
+msgid "Cannot save the model from an invalid form."
+msgstr "Kann kein Modell von einer ungültigen Maske speichern."
+
+#: IDF/Form/Admin/ProjectCreate.php:341
+msgid ""
+"Click on the Project Management tab to set the description of your project."
+msgstr ""
+"Klicke auf den Projekt-Management-Reiter, um eine Beschreibung Deines "
+"Projektes zu setzen."
+
+#: IDF/Form/Admin/ProjectCreate.php:426
+msgid "This project is not available."
+msgstr "Das Projekt ist nicht verfügbar."
+
+#: IDF/Form/Admin/ProjectDelete.php:41
+msgid "Confirmation code"
+msgstr "Bestätigungs-Code"
+
+#: IDF/Form/Admin/ProjectDelete.php:46
+msgid "I have made a backup of all the important data of this project."
+msgstr ""
+"Ich habe ein Backup aller wichtiger Informationen dieses Projektes gemacht."
+
+#: IDF/Form/Admin/ProjectDelete.php:55
+msgid ""
+"The confirmation code does not match. Please provide a valid confirmation "
+"code to delete the project."
+msgstr ""
+"Der Bestätigungscode stimmt nicht. Bitte gib einen gültigen Bestätigungscode "
+"ein, um das Projekt zu löschen."
+
+#: IDF/Form/Admin/ProjectDelete.php:63
+msgid "Sorry, you really need to backup your data before deletion."
+msgstr ""
+"Entschuldigung, Du solltest wirklich Deine Daten vor dem Löschen sichern."
+
+#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38
+#: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40
+msgid "First name"
+msgstr "Vorname"
+
+#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47
+#: IDF/Form/RegisterConfirmation.php:59 IDF/Form/UserAccount.php:49
+msgid "Last name"
+msgstr "Nachname"
+
+#: IDF/Form/Admin/UserCreate.php:56
+msgid "Login"
+msgstr "Anmelde-Name"
+
+#: IDF/Form/Admin/UserCreate.php:60
+msgid ""
+"The login must be between 3 and 15 characters long and contains only letters "
+"and digits."
+msgstr ""
+"Der Anmeldename muss zwischen 3 und 15 Zeichen lang sein und darf nur "
+"Buchstaben und Zahlen beinhalten."
+
+#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57
+msgid "Email"
+msgstr "E-Mail"
+
+#: IDF/Form/Admin/UserCreate.php:71
+msgid ""
+"Double check the email address as the password is sent directly to the user."
+msgstr ""
+"Überprüfe nochmals die E-Mail-Adresse, da das Passwort direkt an den "
+"Benutzer gesendet wird."
+
+#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67
+#: IDF/Form/UserAccount.php:66
+msgid "Language"
+msgstr "Sprache"
+
+#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161
+msgid "Add a public key"
+msgstr "Öffentlichen Schlüssel hinzufügen"
+
+#: IDF/Form/Admin/UserCreate.php:92
+msgid ""
+"Paste a SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+"Füge einen öffentlichen SSH- oder monotone-Schlüssel hier ein. Pass auf, "
+"dass Du nicht versehentlich Deinen privaten Schlüssel hier hineinkopierst!"
+
+#: IDF/Form/Admin/UserCreate.php:157
+msgid "Your details to access your forge."
+msgstr "Die Informationen, um auf Deine Forge zuzugreifen."
+
+#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:429
+#: IDF/Form/UserAccount.php:438
+#, php-format
+msgid "The email \"%s\" is already used."
+msgstr "Die E-Mail \"%s\" wird bereits genutzt."
+
+#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72
+#, php-format
+msgid "The login \"%s\" can only contain letters and digits."
+msgstr "Der Anmeldename \"%s\" darf nur Buchstaben und Zahlen beinhalten."
+
+#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77
+#, php-format
+msgid "The login \"%s\" is already used, please find another one."
+msgstr ""
+"Der Anmeldename \"%s\" wird bereits benutzt, bitte finde einen anderen."
+
+#: IDF/Form/Admin/UserUpdate.php:78
+msgid "Password"
+msgstr "Passwort"
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid "Leave blank if you do not want to change the password."
+msgstr "Lass das Feld leer, wenn Du das Passwort nicht ändern möchtest."
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid ""
+"The password must be hard for other people to guess, but easy for the user "
+"to remember."
+msgstr ""
+"Das Passwort sollte für andere Leute schwer zu erraten, aber für den "
+"Benutzer einfach zu erinnern sein."
+
+#: IDF/Form/Admin/UserUpdate.php:89
+msgid "Confirm password"
+msgstr "Passwort bestätigen"
+
+#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/IssueCreate.php:66
+#: IDF/Form/ProjectConf.php:48 IDF/Form/ReviewCreate.php:54
+#: IDF/Form/UpdateUpload.php:51 IDF/Form/Upload.php:49
+#: IDF/Form/UserAccount.php:101 IDF/Form/WikiPageCreate.php:70
+#: IDF/Form/WikiPageUpdate.php:60 IDF/Form/WikiResourceCreate.php:54
+#: IDF/Form/WikiResourceUpdate.php:46 IDF/Views/Wiki.php:102
+msgid "Description"
+msgstr "Beschreibung"
+
+#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:110
+msgid "Twitter username"
+msgstr "Twitter-Benutzername"
+
+#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:120
+msgid "Public email address"
+msgstr "Öffentlichen E-Mail-Adresse"
+
+#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:130
+msgid "Website URL"
+msgstr "Website-Adresse"
+
+#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:140
+msgid "Upload custom avatar"
+msgstr "Eigenes Benutzerbild hochladen"
+
+#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:147
+msgid ""
+"An image file with a width and height not larger than 60 pixels (bigger "
+"images are scaled down)."
+msgstr ""
+"Eine Bilddatei mit einer Breit und einer Höhe von maximal 60 Pixeln (größere "
+"Bilder werden kleiner skaliert)."
+
+#: IDF/Form/Admin/UserUpdate.php:151 IDF/Form/UserAccount.php:152
+msgid "Remove custom avatar"
+msgstr "Eigenes Benutzerbild entfernen"
+
+#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:156
+msgid "Tick this to delete the custom avatar."
+msgstr "Markieren, um das eigene Benutzerbild zu löschen."
+
+#: IDF/Form/Admin/UserUpdate.php:161 IDF/Views/Admin.php:274
+msgid "Staff"
+msgstr "Stab"
+
+#: IDF/Form/Admin/UserUpdate.php:164
+msgid "If you give staff rights to a user, you really need to trust him."
+msgstr ""
+"Wenn Du einen Benutzer zum Stab hinzufügst, solltest Du ihm wirklich trauen."
+
+#: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:276
+msgid "Active"
+msgstr "Aktiv"
+
+#: IDF/Form/Admin/UserUpdate.php:176
+msgid ""
+"If the user is not getting the confirmation email or is abusing the system, "
+"you can directly enable or disable their account here."
+msgstr ""
+"Wenn der Benutzer keine Bestätigungs-E-Mail erhält oder das System "
+"missbraucht, kannst Du sein Benutzerkonto hier direkt aktivieren oder "
+"deaktivieren."
+
+#: IDF/Form/Admin/UserUpdate.php:274
+msgid "--- is not a valid first name."
+msgstr "--- ist kein gültiger Vorname."
+
+#: IDF/Form/Admin/UserUpdate.php:290
+msgid ""
+"A user with this email already exists, please provide another email address."
+msgstr ""
+"Ein Benutzer mit dieser E-Mail-Adresse existiert bereits, bitte gib eine "
+"andere E-Mail-Adresse an."
+
+#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/UserAccount.php:398
+msgid "For security reason, you cannot upload a file with this extension."
+msgstr ""
+"Aus Sicherheitsgründen kannst Du keine Dateien mit dieser Erweiterung "
+"hochladen."
+
+#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:461
+msgid "The passwords do not match. Please give them again."
+msgstr "Die Passwörter stimmen nicht überein. Bitte gib sie erneut ein."
+
+#: IDF/Form/Field/EmailList.php:45
+msgid "Please enter one or more valid email addresses."
+msgstr "Bitte gib eine oder mehrere gültige E-Mail-Adressen ein."
+
+#: IDF/Form/IssueCreate.php:57 IDF/Form/IssueUpdate.php:46
+#: IDF/Form/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:73
+#: IDF/Form/UpdateUpload.php:42 IDF/Form/Upload.php:40
+#: IDF/gettexttemplates/idf/issues/base.html.php:3 IDF/Views/Download.php:65
+#: IDF/Views/Download.php:347 IDF/Views/Issue.php:62 IDF/Views/Issue.php:221
+#: IDF/Views/Issue.php:302 IDF/Views/Issue.php:391 IDF/Views/Issue.php:543
+#: IDF/Views/Issue.php:766 IDF/Views/Issue.php:825 IDF/Views/Review.php:58
+#: IDF/Views/User.php:83 IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:145
+#: IDF/Views/Wiki.php:186
+msgid "Summary"
+msgstr "Zusammenfassung"
+
+#: IDF/Form/IssueCreate.php:76 IDF/Form/IssueUpdate.php:66
+#: IDF/Form/ReviewCreate.php:83
+msgid "The \"upload_issue_path\" configuration variable was not set."
+msgstr "Die Konfigurationsvariable \"upload_issue_path\" ist nicht gesetzt."
+
+#: IDF/Form/IssueCreate.php:86 IDF/Form/IssueUpdate.php:76
+msgid "Attach a file"
+msgstr "Datei anhängen"
+
+#: IDF/Form/IssueCreate.php:99 IDF/Form/IssueUpdate.php:89
+#: IDF/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:83
+#: IDF/Views/Issue.php:63 IDF/Views/Issue.php:222 IDF/Views/Issue.php:304
+#: IDF/Views/Issue.php:392 IDF/Views/Issue.php:544 IDF/Views/Issue.php:767
+#: IDF/Views/Issue.php:826 IDF/Views/Review.php:59 IDF/Views/User.php:84
+msgid "Status"
+msgstr "Status"
+
+#: IDF/Form/IssueCreate.php:108 IDF/Form/IssueUpdate.php:99
+msgid "Owner"
+msgstr "Eigentümer"
+
+#: IDF/Form/IssueCreate.php:118 IDF/Form/IssueUpdate.php:112
+#: IDF/Form/IssueUpdate.php:129
+msgid "This issue"
+msgstr "Dieses Ticket"
+
+#: IDF/Form/IssueCreate.php:210
+msgid "You cannot add a label with the \"Status\" prefix to an issue."
+msgstr ""
+"Du kannst keine Marke mit dem Präfix \"Status\" zu einem Ticket hinzufügen."
+
+#: IDF/Form/IssueCreate.php:211 IDF/Form/IssueCreate.php:218
+#: IDF/Form/UpdateUpload.php:110 IDF/Form/Upload.php:121
+#: IDF/Form/WikiPageCreate.php:151 IDF/Form/WikiPageUpdate.php:162
+msgid "You provided an invalid label."
+msgstr "Du hast eine ungültige Marke angegeben."
+
+#: IDF/Form/IssueCreate.php:217 IDF/Form/UpdateUpload.php:109
+#, php-format
+msgid "You cannot provide more than one label from the %s class to an issue."
+msgstr ""
+"Du kannst nicht mehr als eine Marke von der %s-Klasse zu einem Ticket "
+"hinzufügen."
+
+#: IDF/Form/IssueCreate.php:228 IDF/Form/IssueUpdate.php:194
+msgid "You need to provide a description of the issue."
+msgstr "Bitte füge eine Beschreibung des Problems an."
+
+#: IDF/Form/IssueCreate.php:251 IDF/Form/ReviewCreate.php:159
+msgid "You provided an invalid status."
+msgstr "Du hast einen ungültigen Status angegeben."
+
+#: IDF/Form/IssueCreate.php:272
+msgid "You provided an invalid relation type."
+msgstr "Du hast einen ungültigen Verknüpfungstyp angegeben."
+
+#: IDF/Form/IssueCreate.php:294
+#, php-format
+msgid "The value \"%s\" is not a valid issue id."
+msgstr "Der Wert \"%s\" ist keine gültige Ticket-ID."
+
+#: IDF/Form/IssueCreate.php:300
+#, php-format
+msgid "The issue \"%s\" does not exist."
+msgstr "Das Ticket \"%s\" existiert nicht."
+
+#: IDF/Form/IssueTrackingConf.php:86
+msgid "is related to"
+msgstr "steht in Verbindung mit"
+
+#: IDF/Form/IssueTrackingConf.php:87
+msgid "blocks"
+msgstr "blockiert"
+
+#: IDF/Form/IssueTrackingConf.php:88
+msgid "is blocked by"
+msgstr "wird blockiert von"
+
+#: IDF/Form/IssueTrackingConf.php:89
+msgid "duplicates"
+msgstr "dupliziert"
+
+#: IDF/Form/IssueTrackingConf.php:90
+msgid "is duplicated by"
+msgstr "wird dupliziert von"
+
+#: IDF/Form/IssueTrackingConf.php:97
+msgid ""
+"Define an issue template to hint the reporter to provide certain information"
+msgstr ""
+"Definiere eine Ticket-Vorlage, um dem Ersteller Hinweise auf benötigte "
+"Informationen zu geben"
+
+#: IDF/Form/IssueTrackingConf.php:106
+msgid "Open issue status values"
+msgstr "Statuswerte für offene Tickets"
+
+#: IDF/Form/IssueTrackingConf.php:114
+msgid "Closed issue status values"
+msgstr "Statuswerte für geschlossene Tickets"
+
+#: IDF/Form/IssueTrackingConf.php:123
+msgid "Predefined issue labels"
+msgstr "Vordefinierte Ticket-Marken"
+
+#: IDF/Form/IssueTrackingConf.php:125
+msgid ""
+"The first \"Type:\" and \"Priority:\" entries found in this list are "
+"automatically chosen as defaults for new issues."
+msgstr ""
+"Die ersten \"Type:\"- und \"Priority:\"-Einträge, die in dieser Liste "
+"gefunden werden, werden automatisch als Standardwerte für neue Tickets "
+"übernommen."
+
+#: IDF/Form/IssueTrackingConf.php:133
+msgid "Each issue may have at most one label with each of these classes."
+msgstr "Jedes Ticket darf maximal eine Marke von jeder dieser Klassen haben."
+
+#: IDF/Form/IssueTrackingConf.php:140
+msgid "Issue relations"
+msgstr "Ticketverknüpfungen"
+
+#: IDF/Form/IssueTrackingConf.php:142
+msgid ""
+"You can define bidirectional relations like \"is related to\" or \"blocks, "
+"is blocked by\". For standard relations pre-configured translations exist, "
+"new relations should however be defined in a language that is understood by "
+"all project members."
+msgstr ""
+"Du kannst bidirektionale Beziehungen, wie \"is related to\" oder \"blocks, "
+"is blocked by\", definieren. Für Standard-Beziehungen existieren "
+"vorkonfigurierte Übersetzungen, neue Beziehungen sollten jedoch in einer "
+"Sprache definiert werden, die von allen Projektmitgliedern verstanden wird."
+
+#: IDF/Form/IssueUpdate.php:56 IDF/Form/ReviewFileComment.php:45
+#: IDF/Form/WikiPageUpdate.php:82 IDF/Form/WikiResourceUpdate.php:66
+msgid "Comment"
+msgstr "Kommentar"
+
+#: IDF/Form/IssueUpdate.php:316
+msgid "No changes were entered."
+msgstr "Keine Änderung festgestellt."
+
+#: IDF/Form/MembersConf.php:104
+#, php-format
+msgid "The following login is invalid: %s."
+msgid_plural "The following logins are invalid: %s."
+msgstr[0] "Der folgende Anmeldename ist ungültig: %s."
+msgstr[1] "Die folgenden Anmeldenamen sind ungültig: %s."
+
+#: IDF/Form/Password.php:34
+msgid "Your login or email"
+msgstr "Dein Anmeldename oder E-Mail"
+
+#: IDF/Form/Password.php:35
+msgid "Provide either your login or your email to recover your password."
+msgstr ""
+"Gib bitte entweder Deinen Anmeldenamen oder Deine E-Mail an, um Dein "
+"Passwort wiederherzustellen."
+
+#: IDF/Form/Password.php:49 IDF/Form/Password.php:64
+msgid ""
+"Sorry, we cannot find a user with this email address or login. Feel free to "
+"try again."
+msgstr ""
+"Entschuldigung, aber wir können keinen Benutzer mit dieser E-Mail-Adresse "
+"oder diesen Anmeldenamen finden. Probier es ruhig noch einmal."
+
+#: IDF/Form/Password.php:100
+msgid "Password Recovery - InDefero"
+msgstr "Passwortwiederherstellung - InDefero"
+
+#: IDF/Form/PasswordInputKey.php:36 IDF/Form/PasswordReset.php:39
+#: IDF/Form/UserChangeEmail.php:36
+msgid "Your verification key"
+msgstr "Dein Validierungsschlüssel"
+
+#: IDF/Form/PasswordInputKey.php:50 IDF/Form/PasswordReset.php:89
+msgid ""
+"We are sorry but this validation key is not valid. Maybe you should directly "
+"copy/paste it from your validation email."
+msgstr ""
+"Dieser Validierungsschlüssel ist leider nicht gültig. Du kannst versuchen, "
+"ihn aus der E-Mail zu kopieren."
+
+#: IDF/Form/PasswordInputKey.php:61 IDF/Form/PasswordReset.php:100
+msgid ""
+"Sorry, but this verification key has expired, please restart the password "
+"recovery sequence. For security reasons, the verification key is only valid "
+"24h."
+msgstr ""
+"Dieser Validierungsschlüssel ist nicht mehr gültig, bitte fordere erneut ein "
+"neues Kennwort an. Aus Sicherheitsgründen gilt ein Validierungsschlüssel nur "
+"für 24 Stunden."
+
+#: IDF/Form/PasswordInputKey.php:76 IDF/Form/PasswordReset.php:108
+#: IDF/Form/RegisterConfirmation.php:137 IDF/Form/RegisterInputKey.php:72
+msgid "Cannot save an invalid form."
+msgstr "Kann keine ungültige Maske speichern."
+
+#: IDF/Form/PasswordReset.php:45 IDF/Form/RegisterConfirmation.php:69
+#: IDF/Form/UserAccount.php:77
+msgid "Your password"
+msgstr "Dein Passwort"
+
+#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80
+msgid ""
+"Your password must be hard for other people to find it, but easy for you to "
+"remember."
+msgstr ""
+"Dein Passwort muss für andere Leute schwer zu erraten, aber für Dich leicht "
+"zu merken sein."
+
+#: IDF/Form/PasswordReset.php:56 IDF/Form/RegisterConfirmation.php:80
+#: IDF/Form/UserAccount.php:89
+msgid "Confirm your password"
+msgstr "Bestätige Dein Passwort"
+
+#: IDF/Form/PasswordReset.php:74 IDF/Form/RegisterConfirmation.php:122
+msgid "The two passwords must be the same."
+msgstr "Beide Passwortangaben müssen identisch sein."
+
+#: IDF/Form/PasswordReset.php:77
+msgid ""
+"This account is not active. Please contact the forge administrator to "
+"activate it."
+msgstr ""
+"Das Benutzerkonto ist nicht aktiv. Bitte kontaktiere den Administrator für "
+"die Freischaltung."
+
+#: IDF/Form/ProjectConf.php:43
+msgid "Short Description"
+msgstr "Kurzbeschreibung"
+
+#: IDF/Form/ProjectConf.php:85
+msgid "The \"upload_path\" configuration variable was not set."
+msgstr "Die Konfigurationsvariable \"upload_path\" ist nicht gesetzt."
+
+#: IDF/Form/ProjectConf.php:90
+msgid "Update the logo"
+msgstr "Aktualisiere das Logo"
+
+#: IDF/Form/ProjectConf.php:92
+msgid "The logo must be a picture with a size of 32 by 32."
+msgstr "Das Logo muss ein Bild der Größe 32 x 32 sein."
+
+#: IDF/Form/ProjectConf.php:103
+msgid "Remove the current logo"
+msgstr "Entferne das derzeitige Logo"
+
+#: IDF/Form/ProjectConf.php:139
+msgid "Could not determine the size of the uploaded picture."
+msgstr "Konnte die Größe des hochgeladenen Bildes nicht bestimmen."
+
+#: IDF/Form/ProjectConf.php:143
+msgid "The picture must have a size of 32 by 32."
+msgstr "Das Bild muss eine Größe von 32 x 32 haben."
+
+#: IDF/Form/ProjectConf.php:164
+msgid "The entered URL is invalid. Only http and https URLs are allowed."
+msgstr ""
+"Die eingegebene URL ist ungültig. Nur http- und https-URLs sind erlaubt."
+
+#: IDF/Form/Register.php:41
+msgid "Your login"
+msgstr "Dein Anmeldename"
+
+#: IDF/Form/Register.php:45
+msgid ""
+"The login must be between 3 and 15 characters long and contain only letters "
+"and digits."
+msgstr ""
+"Der Anmeldename muss zwischen 3 und 15 Zeichen lang sein und darf nur "
+"Buchstaben und Zahlen beinhalten."
+
+#: IDF/Form/Register.php:53 IDF/Form/UserAccount.php:59
+msgid "Your email"
+msgstr "Deine E-Mail-Adresse"
+
+#: IDF/Form/Register.php:55
+msgid "We will never send you any unsolicited emails. We hate spam too!"
+msgstr ""
+"Wir werden Ihnen nie unangeforderte E-Mails zusenden. Wir hassen Spam "
+"ebenfalls."
+
+#: IDF/Form/Register.php:60
+msgid "I agree to the terms and conditions."
+msgstr "Ich stimme den Nutzungbedingungen zu."
+
+#: IDF/Form/Register.php:88
+msgid ""
+"We know, this is boring, but you need to agree with the terms and conditions."
+msgstr "Ja, es ist nervig, aber Du musst den Nutzungsbedingungen zustimmen."
+
+#: IDF/Form/Register.php:97
+#, php-format
+msgid ""
+"The email \"%1$s\" is already used. If you need to, you can recover your password."
+msgstr ""
+"Die E-Mail-Adresse \"%1$s\" wird bereits genutzt. Wenn Du musst, kannst Du "
+"hier das Passwort zurückzusetzen."
+
+#: IDF/Form/Register.php:148
+msgid "Confirm the creation of your account."
+msgstr "Bestätige die Erstellung Deines Benutzerkontos."
+
+#: IDF/Form/RegisterConfirmation.php:40 IDF/Form/RegisterInputKey.php:36
+msgid "Your confirmation key"
+msgstr "Dein Bestätigungs-Schlüssel"
+
+#: IDF/Form/RegisterConfirmation.php:72
+msgid ""
+"Your password must be hard for other people to guess, but easy for you to "
+"remember."
+msgstr ""
+"Dein Passwort muss für andere Leute schwer zu erraten, aber für Dich leicht "
+"zu merken sein."
+
+#: IDF/Form/RegisterConfirmation.php:99 IDF/Form/RegisterInputKey.php:50
+msgid ""
+"We are sorry but this confirmation key is not valid. Maybe you should "
+"directly copy/paste it from your confirmation email."
+msgstr ""
+"Dieser Validierungsschlüssel ist leider nicht gültig. Du kannst versuchen, "
+"ihn aus der E-Mail zu kopieren."
+
+#: IDF/Form/RegisterConfirmation.php:110
+#, php-format
+msgid ""
+"This account has already been confirmed. Maybe should you try to recover your password."
+msgstr ""
+"Dieses Benutzerkonto wurde bereits bestätigt. Vielleicht möchtest Du "
+"versuchen, Dein Passwort hier wiederherzustellen?"
+
+#: IDF/Form/ReviewCreate.php:74 IDF/gettexttemplates/idf/source/base.html.php:5
+#: IDF/gettexttemplates/idf/source/changelog.html.php:7
+msgid "Commit"
+msgstr "Revision"
+
+#: IDF/Form/ReviewCreate.php:92
+msgid "Patch"
+msgstr "Patch"
+
+#: IDF/Form/ReviewCreate.php:119
+msgid "We were not able to parse your patch. Please provide a valid patch."
+msgstr ""
+"Dein Patch konnte nicht analysiert werden. Bitte gib ein gültiges Patch an."
+
+#: IDF/Form/ReviewCreate.php:128
+msgid "You provided an invalid commit."
+msgstr "Du hast eine ungültige Revision angegeben."
+
+#: IDF/Form/ReviewCreate.php:202
+msgid "Initial patch to be reviewed."
+msgstr "Initiales, zu begutachtendes Patch."
+
+#: IDF/Form/ReviewFileComment.php:56
+msgid "General comment"
+msgstr "Allgemeiner Kommentar"
+
+#: IDF/Form/ReviewFileComment.php:113
+msgid ""
+"You need to provide your general comment about the proposal, or comments on "
+"at least one file."
+msgstr ""
+"Du musst einen allgemeinen Kommentar zu dem Vorschlag angeben oder "
+"mindestens eine Datei kommentieren."
+
+#: IDF/Form/ReviewFileComment.php:124
+msgid "The status have been updated."
+msgstr "Der Status wurde aktualisiert."
+
+#: IDF/Form/ReviewFileComment.php:130
+msgid "This field is required."
+msgstr "Dieses Feld wird benötigt."
+
+#: IDF/Form/SourceConf.php:54 IDF/Form/UploadConf.php:70
+msgid "Webhook URL"
+msgstr "Web-Hook-URL"
+
+#: IDF/Form/TabsConf.php:38 IDF/gettexttemplates/idf/admin/base.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html.php:8
+#: IDF/gettexttemplates/idf/base-full.html~.php:7
+#: IDF/gettexttemplates/idf/base.html.php:8
+#: IDF/gettexttemplates/idf/base.html~.php:7
+#: IDF/gettexttemplates/idf/downloads/base.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:14
+#: IDF/Views/Project.php:97
+msgid "Downloads"
+msgstr "Downloads"
+
+#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.php:12
+#: IDF/gettexttemplates/idf/base-full.html~.php:11
+#: IDF/gettexttemplates/idf/base.html.php:12
+#: IDF/gettexttemplates/idf/base.html~.php:11
+msgid "Code Review"
+msgstr "Code-Besprechung"
+
+#: IDF/Form/TabsConf.php:40 IDF/gettexttemplates/idf/admin/base.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html~.php:8
+#: IDF/gettexttemplates/idf/base.html.php:9
+#: IDF/gettexttemplates/idf/base.html~.php:8
+msgid "Documentation"
+msgstr "Dokumentation"
+
+#: IDF/Form/TabsConf.php:41 IDF/gettexttemplates/idf/admin/base.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html.php:11
+#: IDF/gettexttemplates/idf/base-full.html~.php:10
+#: IDF/gettexttemplates/idf/base.html.php:11
+#: IDF/gettexttemplates/idf/base.html~.php:10
+msgid "Source"
+msgstr "Quellcode"
+
+#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.php:10
+#: IDF/gettexttemplates/idf/base-full.html~.php:9
+#: IDF/gettexttemplates/idf/base.html.php:10
+#: IDF/gettexttemplates/idf/base.html~.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:17
+msgid "Issues"
+msgstr "Tickets"
+
+#: IDF/Form/TabsConf.php:50
+msgid "Open to all"
+msgstr "Für alle offen"
+
+#: IDF/Form/TabsConf.php:51
+msgid "Signed in users"
+msgstr "Angemeldete Benutzer"
+
+#: IDF/Form/TabsConf.php:54
+msgid "Closed"
+msgstr "Geschlossen"
+
+#: IDF/Form/TabsConf.php:84
+msgid "Others"
+msgstr "Andere"
+
+#: IDF/Form/TabsConf.php:107
+msgid "Extra authorized users"
+msgstr "Weitere autorisierte Benutzer"
+
+#: IDF/Form/Upload.php:59 IDF/Form/WikiResourceCreate.php:65
+#: IDF/Form/WikiResourceUpdate.php:56
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7
+#: IDF/Views/Download.php:64 IDF/Views/Download.php:346
+msgid "File"
+msgstr "Datei"
+
+#: IDF/Form/Upload.php:87 IDF/Form/WikiResourceCreate.php:96
+#: IDF/Form/WikiResourceUpdate.php:83
+msgid "For security reasons, you cannot upload a file with this extension."
+msgstr ""
+"Aus Sicherheitsgründen kannst Du keine Dateien mit dieser Erweiterung "
+"hochladen."
+
+#: IDF/Form/Upload.php:120
+#, php-format
+msgid "You cannot provide more than one label from the %s class to a download."
+msgstr ""
+"Du darfst nicht mehr als eine Marke von der %s-Klasse zu einem Download "
+"hinzufügen."
+
+#: IDF/Form/UploadArchive.php:41
+msgid "Archive file"
+msgstr "Archiv-Datei"
+
+#: IDF/Form/UploadArchive.php:67
+#, php-format
+msgid ""
+"For security reasons, you cannot upload a file (%s) with this extension."
+msgstr ""
+"Aus Sicherheitsgründen kannst Du keine Datei (%s) mit dieser Erweiterung "
+"hochladen."
+
+#: IDF/Form/UploadArchive.php:98
+#, php-format
+msgid ""
+"You cannot provide more than label from the %1$s class to a download (%2$s)."
+msgstr ""
+"Du kannst nicht mehr als eine Marke von der %1$s-Klasse zu einem Download "
+"hinzufügen (%2$s)."
+
+#: IDF/Form/UploadArchive.php:109
+#, php-format
+msgid ""
+"A file with the name \"%s\" has already been uploaded and is not marked to "
+"be replaced."
+msgstr ""
+"Eine Datei mit dem Namen \"%s\" wurde bereits hochgeladen und wurde nicht "
+"zum Ersetzen markiert."
+
+#: IDF/Form/UploadArchiveHelper.php:41
+msgid "The archive does not exist."
+msgstr "Das Archiv existiert nicht."
+
+#: IDF/Form/UploadArchiveHelper.php:48
+#, php-format
+msgid "The archive could not be read (code %d)."
+msgstr "Das Archiv konnte nicht gelesen werden (Code %d)."
+
+#: IDF/Form/UploadArchiveHelper.php:53
+msgid "The archive does not contain a manifest.xml."
+msgstr "Das Archiv beinhaltet keine manifest.xml."
+
+#: IDF/Form/UploadArchiveHelper.php:61
+#, php-format
+msgid "The archive's manifest is invalid: %s"
+msgstr "Das manifest des Archivs ist ungültig: %s"
+
+#: IDF/Form/UploadArchiveHelper.php:77
+#, php-format
+msgid "The entry %d in the manifest is missing a file name."
+msgstr "Dem Eintrag %d im Manifest fehlt ein Dateiname."
+
+#: IDF/Form/UploadArchiveHelper.php:82
+#, php-format
+msgid "The entry %d in the manifest is missing a summary."
+msgstr "Dem Eintrag %d im Manifest fehlt eine Zusammenfassung."
+
+#: IDF/Form/UploadArchiveHelper.php:86
+msgid "The manifest must not reference itself."
+msgstr "Das Manifest darf sich nicht selbst referenzieren."
+
+#: IDF/Form/UploadArchiveHelper.php:91
+#, php-format
+msgid "The entry %s in the manifest does not exist in the archive."
+msgstr "Der Eintrag %s im Manifest existiert nicht im Archiv."
+
+#: IDF/Form/UploadArchiveHelper.php:96
+#, php-format
+msgid "The entry %s in the manifest is referenced more than once."
+msgstr "Der Eintrag %s im Manifest wird mehr als einmal referenziert."
+
+#: IDF/Form/UploadArchiveHelper.php:108
+#, php-format
+msgid "The entry %s in the manifest has more than the six allowed labels set."
+msgstr ""
+"Der Eintrag %s im Manifest hat mehr als die erlaubten sechs Marken gesetzt."
+
+#: IDF/Form/UploadConf.php:53
+msgid "Predefined download labels"
+msgstr "Vordefinierte Marken für Downloads"
+
+#: IDF/Form/UploadConf.php:62
+msgid "Each download may have at most one label with each of these classes"
+msgstr "Jeder Download darf maximal eine Marke von jeder dieser Klassen haben"
+
+#: IDF/Form/UserAccount.php:61
+msgid ""
+"If you change your email address, an email will be sent to the new address "
+"to confirm it."
+msgstr ""
+"Falls Du Deine E-Mail-Adresse änderst, wird eine E-Mail zur Bestätigung an "
+"die neue Adresse versandt."
+
+#: IDF/Form/UserAccount.php:80
+msgid "Leave blank if you do not want to change your password."
+msgstr "Leer lassen, falls Du Dein Passwort nicht ändern willst."
+
+#: IDF/Form/UserAccount.php:166
+msgid ""
+"Paste an SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+"Füge einen öffentlichen SSH- oder monotone-Schlüssel hier ein. Pass auf, "
+"dass Du nicht versehentlich Deinen privaten Schlüssel hier hineinkopierst!"
+
+#: IDF/Form/UserAccount.php:171
+msgid "Add a secondary email address"
+msgstr "Füge eine sekundäre E-Mail-Adresse hinzu"
+
+#: IDF/Form/UserAccount.php:173
+msgid "You will get an email to confirm that you own the address you specify."
+msgstr ""
+"Du erhälst eine E-Mail, um zu bestätigen, das die angegebene Adresse Dir "
+"gehört."
+
+#: IDF/Form/UserAccount.php:200
+msgid "Confirm your new email address."
+msgstr "Bestätigung der neuen E-Mail-Adresse"
+
+#: IDF/Form/UserAccount.php:203
+#, php-format
+msgid ""
+"A validation email has been sent to \"%s\" to validate the email address "
+"change."
+msgstr ""
+"Eine Validierungs-E-Mail wurde an \"%s\" versandt, um die Adressänderung zu "
+"überprüfen."
+
+#: IDF/Form/UserAccount.php:341
+msgid ""
+"Please check the key as it does not appear to be a valid SSH public key."
+msgstr ""
+"Bitte überprüfe den Schlüssel, er scheint kein gültiger öffentlicher "
+"SSH-Schlüssel zu sein."
+
+#: IDF/Form/UserAccount.php:363
+msgid ""
+"Please check the key as it does not appear to be a valid monotone public key."
+msgstr ""
+"Bitte überprüfe den Schlüssel, er scheint kein gültiger öffentlicher "
+"monotone-Schlüssel zu sein."
+
+#: IDF/Form/UserAccount.php:371
+msgid "Public key looks like neither an SSH nor monotone public key."
+msgstr ""
+"Der öffentliche Schlüssel sieht weder wie ein öffentlicher SSH- noch ein "
+"öffentlicher monotone-Schlüssel aus."
+
+#: IDF/Form/UserAccount.php:383
+msgid "You already have uploaded this key."
+msgstr "Du hast diesen Schlüssel bereits hochgeladen."
+
+#: IDF/Form/UserChangeEmail.php:63
+msgid ""
+"The validation key is not valid. Please copy/paste it from your confirmation "
+"email."
+msgstr ""
+"Der Validierungsschlüssel ist ungültig. Bitte kopiere ihn von Deiner "
+"Bestätigungs-E-Mail hier hinein."
+
+#: IDF/Form/WikiConf.php:49
+msgid "Predefined documentation page labels"
+msgstr "Vordefinierte Marken für Dokumentations-Seiten"
+
+#: IDF/Form/WikiConf.php:58
+msgid ""
+"Each documentation page may have at most one label with each of these classes"
+msgstr ""
+"Jede Dokumentations-Seite darf maximal eine Marke von jeder dieser Klassen "
+"haben"
+
+#: IDF/Form/WikiPageCreate.php:38
+msgid ""
+"# Introduction\n"
+"\n"
+"Add your content here.\n"
+"\n"
+"\n"
+"# Details\n"
+"\n"
+"Add your content here. Format your content with:\n"
+"\n"
+"* Text in **bold** or *italic*.\n"
+"* Headings, paragraphs, and lists.\n"
+"* Links to other [[WikiPage]].\n"
+msgstr ""
+"# Einführung\n"
+"\n"
+"Füge Deinen Inhalt hier ein.\n"
+"\n"
+"\n"
+"# Details\n"
+"\n"
+"Füge Deinen Inhalt hier ein. Formatiere Deinen Inhalt mit:\n"
+"\n"
+"* Text in **Fettschrift** oder *kursiv*.\n"
+"* Überschriften, Absätzen und Listen.\n"
+"* Links auf andere [[WikiSeiten]].\n"
+
+#: IDF/Form/WikiPageCreate.php:57
+msgid "PageName"
+msgstr "Seitenname"
+
+#: IDF/Form/WikiPageCreate.php:60 IDF/Form/WikiPageUpdate.php:50
+msgid "Page title"
+msgstr "Seitentitel"
+
+#: IDF/Form/WikiPageCreate.php:66 IDF/Form/WikiPageUpdate.php:56
+msgid ""
+"The page name must contains only letters, digits and the dash (-) character."
+msgstr ""
+"Der Seitenname darf nur aus Buchstaben, Ziffern und dem Bindestrich bestehen."
+
+#: IDF/Form/WikiPageCreate.php:71 IDF/Form/WikiPageUpdate.php:61
+msgid "This one line description is displayed in the list of pages."
+msgstr "Diese einzeilige Beschreibung wird in der Seitenübersicht angezeigt."
+
+#: IDF/Form/WikiPageCreate.php:108 IDF/Form/WikiPageUpdate.php:119
+#: IDF/Form/WikiResourceCreate.php:78
+msgid "The title contains invalid characters."
+msgstr "Der Titel beinhaltet ungültige Zeichen."
+
+#: IDF/Form/WikiPageCreate.php:114 IDF/Form/WikiPageUpdate.php:125
+msgid "A page with this title already exists."
+msgstr "Eine Seite mit diesem Titel existiert bereits."
+
+#: IDF/Form/WikiPageCreate.php:150 IDF/Form/WikiPageUpdate.php:161
+#, php-format
+msgid "You cannot provide more than one label from the %s class to a page."
+msgstr ""
+"Du darfst nicht mehr als eine Marke von der %s-Klasse zu einer Seite "
+"hinzufügen."
+
+#: IDF/Form/WikiPageCreate.php:200
+msgid "Initial page creation"
+msgstr "Initiale Seiten-Erzeugung"
+
+#: IDF/Form/WikiPageDelete.php:39
+msgid "Yes, I understand that the page and all its revisions will be deleted."
+msgstr ""
+"Ja, ich habe verstanden, dass die Seite und all ihre Versionen gelöscht "
+"werden."
+
+#: IDF/Form/WikiPageDelete.php:50 IDF/Form/WikiResourceDelete.php:50
+msgid "You need to confirm the deletion."
+msgstr "Du musst die Löschung bestätigen."
+
+#: IDF/Form/WikiPageUpdate.php:83 IDF/Form/WikiResourceUpdate.php:67
+msgid "One line to describe the changes you made."
+msgstr "Einzeilige Beschreibung der durchgeführten Änderungen."
+
+#: IDF/Form/WikiResourceCreate.php:40
+msgid "ResourceName"
+msgstr "NameDerRessource"
+
+#: IDF/Form/WikiResourceCreate.php:44
+msgid "Resource title"
+msgstr "Titel der Ressource"
+
+#: IDF/Form/WikiResourceCreate.php:50
+msgid ""
+"The resource name must contains only letters, digits and the dash (-) "
+"character."
+msgstr ""
+"Der Ressourcenname darf nur aus Buchstaben, Ziffern und dem Bindestrich "
+"bestehen."
+
+#: IDF/Form/WikiResourceCreate.php:55 IDF/Form/WikiResourceUpdate.php:47
+msgid "This one line description is displayed in the list of resources."
+msgstr ""
+"Diese einzeilige Beschreibung wird in der Ressourcenübersicht angezeigt."
+
+#: IDF/Form/WikiResourceCreate.php:84
+msgid "A resource with this title already exists."
+msgstr "Eine Ressource mit diesem Titel existiert bereits."
+
+#: IDF/Form/WikiResourceCreate.php:142
+msgid "Initial resource creation"
+msgstr "Initiale Ressourcen-Erstellung"
+
+#: IDF/Form/WikiResourceDelete.php:39
+msgid ""
+"Yes, I understand that the resource and all its revisions will be deleted."
+msgstr ""
+"Ja, ich habe verstanden, dass die Ressource und all ihre Versionen gelöscht "
+"werden."
+
+#: IDF/Form/WikiResourceUpdate.php:89
+#, php-format
+msgid ""
+"The mime type of the uploaded file \"%1$s\" does not match the mime type of "
+"this resource \"%2$s\""
+msgstr ""
+"Der MIME-Typ der hochgeladenen Datei \"%1$s\" passt nicht auf dem MIME-Typ "
+"dieser Ressource, \"%2$s\"."
+
+#: IDF/Form/WikiResourceUpdate.php:97
+msgid "The current version of the resource and the uploaded file are equal."
+msgstr ""
+"Die derzeitige Version der Ressource und die hochgeladene Datei sind gleich."
+
+#: IDF/Gconf.php:60 IDF/Search/Occ.php:56
+msgid "model class"
+msgstr "Modell-Klasse"
+
+#: IDF/Gconf.php:66 IDF/Search/Occ.php:62
+msgid "model id"
+msgstr "Modell-ID"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:3
+msgid "Project Summary"
+msgstr "Projekt-Zusammenfassung"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:6
+msgid "Issue Tracking"
+msgstr "Ticketverfolgung"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:8
+msgid "Project Members"
+msgstr "Projektmitglieder"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:9
+msgid "Tabs Access and Notifications"
+msgstr "Zugriffsrechte und Benachrichtigungen"
+
+#: IDF/gettexttemplates/idf/admin/downloads.html.php:3
+#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3
+#: IDF/gettexttemplates/idf/admin/wiki.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/labels.html.php:3
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
List one status value per line in desired sort-order.
\n"
+"
Optionally, use an equals-sign to document the meaning of each status "
+"value.
\n"
+msgstr ""
+"\n"
+"
Anleitung:
\n"
+"
Füge einen Statuswert pro Zeile in der gewünschten Reihenfolge "
+"hinzu.
\n"
+"
Füge optional nach einem Istgleich-Zeichen (=) eine kurze Beschreibung "
+"ein, um die Bedeutung des Statuswerts zu beschreiben.
The webhook URL setting specifies an URL to which a HTTP "
+"PUT\n"
+"request is sent after a new download has been added or to which a HTTP "
+"POST\n"
+"request is sent after an existing download has been updated.\n"
+"If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/upload
\n"
+"
http://domain.com/upload?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each download:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%d - download id
\n"
+"
\n"
+"\n"
+"
For example, updating download 123 of project 'my-project' with\n"
+"web hook URL http://mydomain.com/%p/%d would send a POST "
+"request to\n"
+"http://mydomain.com/my-project/123.
"
+msgstr ""
+"
Die Web-Hook-Adresse gibt eine URL an, zu welcher eine HTTP "
+"PUT-\n"
+"Anfrage nach jedem neu hinzugefügten Download oder zu welcher eine HTTP "
+"POST-\n"
+"Anfrage nach jeder Aktualisierung eines existierenden Downloads ausgelöst "
+"wird.\n"
+"Wenn dieses Feld leer ist, sind diese Art von Benachrichtigungen\n"
+"deaktiviert.
\n"
+"\n"
+"
Nur korrekt maskierte HTTP-URLs werden unterstützt, zum "
+"Beispiel:
\n"
+"\n"
+"
\n"
+"
http://domain.com/upload
\n"
+"
http://domain.com/upload?my%20param
\n"
+"
\n"
+"\n"
+"
Zusätzlich darf die URL die folgenden Platzhalter beinhalten, welche\n"
+"für jeden Download mit den spezifischen Projektwerten ersetzt werden:
\n"
+"\n"
+"
\n"
+"
%p - Projektname
\n"
+"
%d - Downloadnummer
\n"
+"
\n"
+"\n"
+"
Beispiel: Wenn der Download 123 des Projekts 'mein-projekt' aktualisiert "
+"werden würde und die Web-Hook-Adresse URL "
+"http://meine-domain.com/%p/%d konfiguriert wäre, dann würde "
+"eine POST-Anfrage an http://meine-domain.com/mein-projekt/123 "
+"gesendet.
A project owner may make any change to this project, including removing "
+"other project owners. You need to be carefull when you give owner "
+"rights.
\n"
+"
A project member will not have access to the administration area but will "
+"have more options available in the use of the project.
\n"
+msgstr ""
+"\n"
+"
Hinweise:
\n"
+"
Ein Projekteigentümer kann jedwede Änderung an diesem Projekt vornehmen, "
+"inklusive dem Enfernen von anderen Projekteigentümern. Deshalb solltest Du "
+"mit der Vergabe von Eigentumsrechten vorsichtig sein.
\n"
+"
Ein Projektmitglied hat keinen Zugriff auf die Administrationsebene, aber "
+"hat bei der Benutzung des Projektes mehr verfügbare Optionen.
\n"
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:3
+msgid "You can find here the current repository configuration of your project."
+msgstr "Hier findest Du die derzeitige Depot-Konfiguration Deines Projektes."
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:4
+#, qt-format
+msgid ""
+"
The webhook URL setting specifies an URL to which a HTTP \n"
+"%%hook_request_method%% request is sent after each "
+"repository\n"
+"commit. If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/commit
\n"
+"
http://domain.com/commit?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each commit:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%r - revision number
\n"
+"
\n"
+"\n"
+"
For example, committing revision 123 to project 'my-project' with\n"
+"post-commit URL http://mydomain.com/%p/%r would send a request "
+"to\n"
+"http://mydomain.com/my-project/123.
"
+msgstr ""
+"
Die Web-Hook-Adresse gibt eine URL an, zu welcher eine HTTP "
+"%%hook_request_method%%-\n"
+"Anfrage nach jeder neuen Revision eines Depot ausgelöst wird.\n"
+"Wenn dieses Feld leer ist, sind diese Art von Benachrichtigungen\n"
+"deaktiviert.
\n"
+"\n"
+"
Nur korrekt maskierte HTTP-URLs werden unterstützt, zum "
+"Beispiel:
\n"
+"\n"
+"
\n"
+"
http://domain.com/commit
\n"
+"
http://domain.com/commit?my%20param
\n"
+"
\n"
+"\n"
+"
Zusätzlich darf die URL die folgenden Platzhalter beinhalten, welche\n"
+"für jede Revision mit den spezifischen Projektwerten ersetzt werden:
\n"
+"\n"
+"
\n"
+"
%p - Projektname
\n"
+"
%r - Revisionsnummer
\n"
+"
\n"
+"\n"
+"
Beispiel: Wenn die Revision 123 für das Projekt 'mein-projekt' zum Depot\n"
+"gesandt wird und als post-commit-URL "
+"http://meine-domain.com/%p/%r eingestellt\n"
+"ist, würde eine Anfrage an "
+"http://meine-domain.com/mein-projekt/123 gesendet.
"
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:26
+msgid ""
+"The form contains some errors. Please correct them to update the source "
+"configuration."
+msgstr ""
+"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die "
+"Quellcode-Konfiguration zu aktualisieren."
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:27
+msgid "Repository type:"
+msgstr "Depot-Typ:"
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:28
+msgid "Repository access:"
+msgstr "Depot-Zugriff:"
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:29
+msgid "Repository size:"
+msgstr "Depot-Größe:"
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
The description of the project can be improved using the Markdown syntax.
\n"
+msgstr ""
+"\n"
+"
Anleitung:
\n"
+"
Die Beschreibung des Projektes kann durch die Benutzung der Markdown-Syntax vereinfacht werden.
\n"
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:7
+msgid ""
+"The form contains some errors. Please correct them to update the summary."
+msgstr ""
+"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die "
+"Projektzusammenfassung zu aktualisieren."
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:8
+msgid "Current logo"
+msgstr "Derzeitiges Logo"
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html~.php:4
+#: IDF/gettexttemplates/idf/base.html.php:4
+#: IDF/gettexttemplates/idf/base.html~.php:4
+#: IDF/gettexttemplates/idf/main-menu.html.php:8
+#: IDF/gettexttemplates/idf/project-list.html.php:4
+msgid "Project logo"
+msgstr "Projekt-Logo"
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:10
+msgid "Your project does not have a logo configured yet."
+msgstr "Für Dein Projekt wurde noch kein Logo konfiguriert."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:3
+msgid ""
+"This section allows you to configure project tabs access rights and "
+"notifications."
+msgstr ""
+"Hier kannst Du den Zugriff auf die Projektfunktionen und Benachrichtungen "
+"konfigurieren."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:4
+msgid ""
+"Tab access controls whether a single user can navigate into a particular "
+"section of your project via the main menu or automatically generated object "
+"links."
+msgstr ""
+"Zugriffsberechtigungen bestimmen, ob ein bestimmter Nutzer in eine bestimmte "
+"Sektion Deines Projekts über das Hauptmenü oder über automatisch generierte "
+"Inhaltslinks gelangen kann."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:5
+msgid ""
+"If you mark a project as private, only the project members and "
+"administrators, together with the extra authorized users you provide will "
+"have access to the project as a whole. You will still be able to define "
+"further access rights for the different tabs but the \"Open to all\" and "
+"\"Signed in users\" will default to authorized users only."
+msgstr ""
+"Wenn Du ein Projekt als privat markierst, haben nur Projektmitglieder und "
+"Administratoren zusammen mit den von Dir extra authorisierten Benutzern "
+"Zugriff darauf. Du kannst weiterhin zusätzliche Zugriffsrechte für bestimmte "
+"Projektfunktionen vergeben, aber die Einstellungen \"Für alle offen\" und "
+"\"Angemeldete Benutzer\" werden standardmäßig nur authorisierte Benutzer "
+"berücksichtigen."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:6
+msgid ""
+"For the extra authorized user list, specify each person by its login. Each "
+"person must have already registered with the given login. Separate the "
+"logins with commas and/or new lines."
+msgstr ""
+"Gib in der Liste der zusätzlich zu authorisierenden Nutzer für jede Person "
+"ihren Anmeldenamen ein. Jede Person muss sich bereits mit diesem Namen "
+"angemeldet haben. Trenne die Anmeldenamen durch Kommas und / oder neue "
+"Zeilen."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:7
+msgid ""
+"Only project members and admins have write access to the source. If you "
+"restrict the access to the source, anonymous access is not provided and the "
+"users must authenticate themselves with their password or SSH key."
+msgstr ""
+"Nur Projektmitglieder und Administratoren haben Schreibzugriff auf den "
+"Quellcode. Wenn Du den Zugriff auf den Quellcode beschränkst, wird kein "
+"anonymer Zugriff angeboten und die Benutzer müssen sich mit ihrem Passwort "
+"oder öffentlichen Schlüssel authentifizieren."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
+#, php-format
+msgid ""
+"Here you can configure who should be notified about changes in a particular "
+"section. You can also configure additional addresses, like the one of a "
+"mailing list, that should be notified. (Keep in mind that you might have to "
+"register the sender address %%from_email%% to let the "
+"mailing list actually accept notification emails.) Multiple email addresses "
+"must be separated through commas (',')."
+msgstr ""
+"Hier kannst Du konfigurieren, wer über Änderungen in einer bestimmten "
+"Sektion benachrichtigt werden soll. Du kannst auch weitere E-Mail-Adressen, "
+"wie etwa die einer Mailingliste, hier hinterlegen. (Vergiss nicht, dass Du "
+"unter Umständen die Absender-Adresse %%from_email%% vorher "
+"erst registrieren musst, bevor die Mailingliste Benachrichtigungs-E-Mails "
+"akzeptiert.) Mehrere E-Mail-Adressen müssen durch Kommas (',') voneinander "
+"getrennt werden."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:9
+msgid ""
+"The form contains some errors. Please correct them to update the access "
+"rights."
+msgstr ""
+"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die "
+"Zugriffsberechtigungen zu aktualisieren."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
+msgid "Access Rights"
+msgstr "Zugriffsberechtigungen"
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:11
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
+msgid "Notifications"
+msgstr "Benachrichtigungen"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:3
+#: IDF/gettexttemplates/idf/base-full.html~.php:3
+#: IDF/gettexttemplates/idf/base.html.php:3
+#: IDF/gettexttemplates/idf/base.html~.php:3
+#, php-format
+msgid ""
+"Sign in or create your account to create issues or "
+"add comments"
+msgstr ""
+"Melde Dich an oder lege ein Benutzerkonto an, um "
+"Tickets oder Kommentare hinzuzufügen"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:6
+#: IDF/gettexttemplates/idf/base.html.php:6
+#: IDF/gettexttemplates/idf/project-list.html.php:6
+msgid "External link to project"
+msgstr "Externer Link zum Projekt"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html~.php:6
+#: IDF/gettexttemplates/idf/base.html.php:7
+#: IDF/gettexttemplates/idf/base.html~.php:6
+msgid "Project Home"
+msgstr "Projekt-Startseite"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:13
+#: IDF/gettexttemplates/idf/base-full.html~.php:12
+#: IDF/gettexttemplates/idf/base.html.php:13
+#: IDF/gettexttemplates/idf/base.html~.php:12
+msgid "Project Management"
+msgstr "Projekt-Management"
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:4
+#: IDF/gettexttemplates/idf/downloads/index.html.php:4
+#: IDF/Views/Download.php:235
+msgid "New Download"
+msgstr "Neuer Download"
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:5
+msgid "Upload Archive"
+msgstr "Archiv hochladen"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:3
+msgid ""
+"Each file must have a distinct name and file contents\n"
+"cannot be changed, so be sure to include release numbers in each file\n"
+"name."
+msgstr ""
+"Jede Datei muss einen unterscheidbaren Namen haben und Dateiinhalte\n"
+"können nicht geändert werden, also stelle sicher, dass Du Versionsnummern\n"
+"in jedem Dateinamen verwendest."
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:6
+#, php-format
+msgid ""
+"You can use the Markdown syntax for the description."
+msgstr ""
+"Du kannst die Markdown-Syntax für die Beschreibung "
+"nutzen."
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:7
+msgid "The form contains some errors. Please correct them to submit the file."
+msgstr ""
+"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die Datei "
+"einzusenden."
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:8
+msgid "Submit File"
+msgstr "Datei einsenden"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:9
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:8
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:21
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:14
+#: IDF/gettexttemplates/idf/issues/create.html.php:14
+#: IDF/gettexttemplates/idf/issues/view.html.php:27
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:7
+#: IDF/gettexttemplates/idf/register/index.html.php:8
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:5
+#: IDF/gettexttemplates/idf/review/create.html.php:12
+#: IDF/gettexttemplates/idf/review/view.html.php:41
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:5
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:13
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:5
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:10
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:9
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:6
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:6
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:6
+msgid "Instructions"
+msgstr "Anleitung"
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:3
+msgid ""
+"The archive must include a manifest.xml file with meta "
+"information about the\n"
+"files to process inside the archive. All processed files must be unique or "
+"replace existing files explicitely."
+msgstr ""
+"Das Archiv muss eine manifest.xml-Datei mit Meta-Informationen "
+"bezüglich\n"
+"der in diesem Archiv zu verarbeitenden Dateien beinhalten. Alle Dateien "
+"müssen eindeutig sein\n"
+"oder bestehende Dateien explizit ersetzen."
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:5
+#, php-format
+msgid ""
+"You can learn more about the archive format here."
+msgstr ""
+"Hier kannst mehr über das Archiv-Format lernen."
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:6
+msgid ""
+"The form contains some errors. Please correct them to submit the archive."
+msgstr ""
+"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um das "
+"Archiv einzusenden."
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:7
+msgid "Submit Archive"
+msgstr "Archiv einsenden"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:3
+msgid ""
+"Attention! If you want to delete a specific version of your "
+"software, maybe, someone is depending on this specific version to run his "
+"systems. Are you sure, you will not affect anybody when removing this file?"
+msgstr ""
+"Achtung! Möglicherweise benötigt noch jemand diese Version "
+"und kann nicht mehr darauf zugreifen, wenn sie gelöscht wird. Bist Du "
+"sicher, dass niemand durch die Löschung beeinträchtigt wird?"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:4
+#, php-format
+msgid ""
+"Instead of deleting the file, you could mark it as "
+"deprecated."
+msgstr ""
+"Statt die Datei zu löschen, könntest Du sie als veraltet "
+"markieren."
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:5
+#: IDF/gettexttemplates/idf/downloads/view.html.php:4
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:4
+#: IDF/gettexttemplates/idf/issues/view.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:5
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:7
+#, php-format
+msgid "by %%submitter%%"
+msgstr "von %%submitter%%"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:6
+msgid "Delete File"
+msgstr "Lösche Datei"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:8
+#: IDF/gettexttemplates/idf/downloads/view.html.php:14
+msgid "Uploaded:"
+msgstr "Hochgeladen:"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:9
+#: IDF/gettexttemplates/idf/downloads/view.html.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:29
+#: IDF/gettexttemplates/idf/review/view.html.php:27
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:14
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:15
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:17
+msgid "Updated:"
+msgstr "Aktualisiert:"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6
+#: IDF/gettexttemplates/idf/listProjects.html.php:17
+msgid "Downloads:"
+msgstr "Downloads:"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:11
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:17
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml~.php:6
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:10
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:21
+#: IDF/gettexttemplates/idf/issues/view.html.php:33
+#: IDF/gettexttemplates/idf/project-list.html.php:8
+#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:13
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:16
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:12
+#: IDF/IssueComment.php:157 IDF/Wiki/PageRevision.php:204
+msgid "Labels:"
+msgstr "Labels:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3
+msgid "A new file is available for download:"
+msgstr "Eine neue Datei ist bereit zum Herunterladen:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:4
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:5
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:8
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:4
+msgid "Hello,"
+msgstr "Hallo,"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:5
+msgid "Project:"
+msgstr "Projekt:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:6
+msgid "Submitted by:"
+msgstr "Eingesandt von:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:8
+msgid "Download:"
+msgstr "Download:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:10
+#: IDF/gettexttemplates/idf/review/view.html.php:31
+#: IDF/gettexttemplates/idf/user/public.html.php:4
+msgid "Description:"
+msgstr "Beschreibung:"
+
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:3
+msgid "A file download was updated:"
+msgstr "Ein Dateidownload wurde aktualisiert:"
+
+#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3
+msgid "Details"
+msgstr "Details"
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:3
+#, php-format
+msgid "See the deprecated files."
+msgstr "Zeige die veralteten Dateien."
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:5
+msgid "Number of files:"
+msgstr "Anzahl der Dateien:"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:3
+msgid ""
+"Attention! This file is marked as deprecated, download it "
+"only if you are sure you need this specific version."
+msgstr ""
+"Achtung! Diese Datei ist als veraltet markiert. Lade sie "
+"nur herunter, falls Du genau diese Version benötigst."
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:5
+msgid "md5:"
+msgstr "MD5:"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:6
+msgid "Changes"
+msgstr "Änderungen"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:7
+msgid "The form contains some errors. Please correct them to update the file."
+msgstr ""
+"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die Datei "
+"zu aktualisieren."
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:8
+msgid "Update File"
+msgstr "Datei aktualisieren"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:12
+msgid "Remove this file"
+msgstr "Entferne diese Datei"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:18
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:12
+msgid "Trash"
+msgstr "Mülleimer"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:13
+msgid "Delete this file"
+msgstr "Lösche diese Datei"
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:3
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:3
+#: IDF/gettexttemplates/idf/faq.html.php:65
+msgid "Here we are, just to help you."
+msgstr "Wir sind hier, um Dir zu helfen."
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:4
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:4
+#: IDF/gettexttemplates/idf/faq.html.php:66
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:4
+#: IDF/gettexttemplates/idf/index.html.php:4 IDF/Views/Admin.php:77
+#: IDF/Views.php:91
+msgid "Projects"
+msgstr "Projekte"
+
+#: IDF/gettexttemplates/idf/faq.html.php:3
+msgid ""
+"
This is simple:
\n"
+"\n"
+"
Write in the comments \"This is a duplicate of issue 123\" or - if you "
+"are a member of the crew -\n"
+"directly add the \"duplicates\" relation with the value \"123\" below the "
+"comment field. Change \"123\"\n"
+"with the corresponding issue number.
\n"
+"
Change the status of the current issue to Duplicate.
\n"
+"
Submit the changes.
\n"
+""
+msgstr ""
+"
Ganz einfach:
\n"
+"\n"
+"
Schreibe in das Kommentarfeld \"Dies ist ein Duplikat von issue 123\" "
+"oder - wenn Du ein Mitglied des Teams bist - füge direkt eine "
+"\"duplicates\"-Verknüpfung mit dem Wert \"123\" hinzu. Ändere 123 in die "
+"dazugehörige Ticketnummer.
\n"
+"
Ändere den Status des aktuellen Tickets auf Duplicate.
\n"
+"
Speichere die Änderungen.
\n"
+""
+
+#: IDF/gettexttemplates/idf/faq.html.php:11
+msgid ""
+"You need to create an account on Gravatar, this takes about 5 minutes "
+"and is free."
+msgstr ""
+"Du musst Dir ein Benutzerkonto auf Gravatar.com erstellen, es dauert nur 5 "
+"Minuten und ist kostenfrei."
+
+#: IDF/gettexttemplates/idf/faq.html.php:12
+msgid ""
+"\n"
+"
To embed any previously uploaded resource into your wiki page, you can "
+"use the [[!ResourceName]] syntax.
\n"
+"\n"
+"
The rendering of the resource can then be further fine-tuned:\n"
+"
\n"
+"
[[!ImageResource, align=right, width=200]] renders "
+"\"ImageResource\" right-aligned and scale its width to 200
\n"
+"
[[!TextResource, align=center, width=300, height=300]] "
+"renders \"TextResource\" in a centered, 300 by 300 px iframe
\n"
+"
[[!AnyResource, preview=no]] does not render a preview of "
+"the resource, but only provides a download link (default for binary "
+"resources)
\n"
+"
[[!BinaryResource, title=Download]] renders the download "
+"link of \"BinaryResource\" with an alternative title
\n"
+"
\n"
+"\n"
+"\n"
+"Resources are versioned, just like wiki pages. If you update a resource, old "
+"wiki pages still show the state of the resource\n"
+"at the time when the wiki page was edited. If you specifically want to "
+"update a resource on a page, you therefor need to update\n"
+"the resource at first and then also the page where it is referenced, "
+"otherwise the change won't be visible until the next regular edit. \n"
+msgstr ""
+"\n"
+"
Um eine vorher hochgeladene Ressource in Deine Wiki-Seite einzubetten, "
+"kannst Du die [[!RessourcenName]]-Syntax verwenden.
\n"
+"\n"
+"
Die Darstellung der Ressource kann dann weiter angepasst werden:\n"
+"
\n"
+"
[[!BildRessource, align=right, width=200]] stellt "
+"\"BildResource\" rechts ausgerichtet und in der Breite auf 200 Pixel Größe "
+"skaliert dar
\n"
+"
[[!TextRessource, align=center, width=300, height=300]] "
+"stellt \"TextResource\" in einem zentrierten, 300 x 300 Pixel großen IFRAME "
+"dar
\n"
+"
[[!JedeRessource, preview=no]] stellt keine Vorschau der "
+"Ressource dar, sondern zeigt lediglich einen Download-Link an (Standard für "
+"Binär-Ressourcen)
\n"
+"
[[!BinärRessource, title=Download]] stellt den "
+"Download-Link von \"BinärResource\" mit einem alternativen Titel dar
\n"
+"
\n"
+"\n"
+"\n"
+"Ressourcen werden, wie Wiki-Seiten auch, versionisiert. Wenn Du eine "
+"Ressource aktualisierst, zeigen alte Wikiseiten weiterhin\n"
+"die Version der Ressource an, die aktuell war, als die Wiki-Seite bearbeitet "
+"wurde. Wenn Du eine Ressource auf einer bestimmten\n"
+"Seite aktualisieren möchtest, aktualisiere zunächst die Ressource und danach "
+"auch die Seite, auf welcher die Ressource referenziert\n"
+"ist, andernfalls werden die Änderungen an der Ressourcen bis zur nächsten "
+"regulären Inhaltsänderung der Seite nicht sichtbar.\n"
+
+#: IDF/gettexttemplates/idf/faq.html.php:28
+msgid ""
+"
If you have to publish many files at once for a new release, it is a very "
+"tedious task\n"
+"to upload them one after another and enter meta information like a summary, "
+"a description or additional\n"
+"labels for each of them.
\n"
+"
InDefero therefore supports a special archive format that is basically a "
+"standard zip file which comes with\n"
+"some meta information. These meta information are kept in a special manifest "
+"file, which is distinctly kept from\n"
+"the rest of the files in the archive that should be published.
\n"
+"
Once this archive has been uploaded, InDefero reads in the meta "
+"information, unpacks the other files from\n"
+"the archive and creates new individual downloads for each of them.
"
+msgstr ""
+"
Wenn Du viele Dateien auf einmal für ein Release veröffentlichen musst, "
+"ist es eine sehr langwierige Aufgabe,\n"
+"jede Datei einzeln hochzuladen und Meta-Informationen wie Zusammenfasssung, "
+"Beschreibung oder zusätzliche\n"
+"Marken in die Eingabefelder einzugeben.
\n"
+"
InDefero unterstützt daher ein spezielles Archiv-Format, welches im "
+"Grunde genommen eine normale\n"
+"ZIP-Datei ist, die weitere Meta-Informationen enthält. Diese "
+"Meta-Informationen werden in einer speziellen\n"
+"Manifest-Datei beschrieben, die getrennt von den anderen Dateien des Archivs "
+"behandelt wird.
\n"
+"
Sobald das Archiv hochgeladen wurde, liest InDefero die "
+"Meta-Informationen aus, entpackt die anderen Dateien\n"
+"vom Archiv und erzeugt für jede von ihnen individuelle Downloads.
"
+
+#: IDF/gettexttemplates/idf/faq.html.php:36
+#, php-format
+msgid "Learn more about the archive format."
+msgstr "Weitere Informationen über das Archiv-Format."
+
+#: IDF/gettexttemplates/idf/faq.html.php:37
+msgid ""
+"The API (Application Programming Interface) is used to interact with "
+"InDefero with another program. For example, this can be used to create a "
+"desktop program to submit new tickets easily."
+msgstr ""
+"Die API (Application Programming Interface) ermöglicht es anderen Programme, "
+"sich mit InDefero zu verbinden. Beispielsweise könnte eine Desktop-Anwendung "
+"geschrieben werden, die einfach neue Tickets in InDefero erstellt."
+
+#: IDF/gettexttemplates/idf/faq.html.php:38
+#, php-format
+msgid "Learn more about the API."
+msgstr "Weitere Informationen über die API."
+
+#: IDF/gettexttemplates/idf/faq.html.php:39
+#: IDF/gettexttemplates/idf/faq.html.php:45
+msgid "What are the keyboard shortcuts?"
+msgstr "Welche Tastaturkürzel gibt es?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:40
+#: IDF/gettexttemplates/idf/faq.html.php:60
+msgid "How to mark an issue as duplicate?"
+msgstr "Wie markiert man ein Ticket als Duplikat?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:41
+#: IDF/gettexttemplates/idf/faq.html.php:61
+msgid "How can I display my head next to my comments?"
+msgstr "Wie kann ich meinen Kommentaren ein Foto von mir hinzufügen?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:42
+#: IDF/gettexttemplates/idf/faq.html.php:62
+msgid "How can I embed images and other resources in my documentation pages?"
+msgstr ""
+"Wie kann ich Bilder oder andere Ressourcen in meine Dokumentationsseiten "
+"einbetten?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:43
+#: IDF/gettexttemplates/idf/faq.html.php:63
+msgid "What is this \"Upload Archive\" functionality about?"
+msgstr "Um was geht es bei der Funktion \"Archiv hochladen\"?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:44
+#: IDF/gettexttemplates/idf/faq.html.php:64
+msgid "What is the API and how is it used?"
+msgstr "Was ist die API und wie wird sie verwendet?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:46
+msgid "Shift+h: This help page."
+msgstr "Umschalt+h: Diese Hilfeseite."
+
+#: IDF/gettexttemplates/idf/faq.html.php:47
+msgid "If you are in a project, you have the following shortcuts:"
+msgstr ""
+"Befindest Du Dich in einem Projekt, kannst Du die folgenden Tastaturkürzel "
+"benutzen:"
+
+#: IDF/gettexttemplates/idf/faq.html.php:48
+msgid "Shift+u: Project updates."
+msgstr "Umschalt+u: Projekt aktualisieren."
+
+#: IDF/gettexttemplates/idf/faq.html.php:49
+msgid "Shift+d: Downloads."
+msgstr "Umschalt+d: Downloads."
+
+#: IDF/gettexttemplates/idf/faq.html.php:50
+msgid "Shift+o: Documentation."
+msgstr "Umschalt+o: Dokumentation."
+
+#: IDF/gettexttemplates/idf/faq.html.php:51
+msgid "Shift+a: Create a new issue."
+msgstr "Umschalt+a: Erstelle ein neues Ticket."
+
+#: IDF/gettexttemplates/idf/faq.html.php:52
+msgid "Shift+i: List of open issues."
+msgstr "Umschalt+i: Zeige eine Liste offener Tickets."
+
+#: IDF/gettexttemplates/idf/faq.html.php:53
+msgid "Shift+m: The issues you submitted."
+msgstr "Umschalt+m: Die von Dir übermittelten Tickets."
+
+#: IDF/gettexttemplates/idf/faq.html.php:54
+msgid "Shift+w: The issues assigned to you."
+msgstr "Umschalt+w: Die Dir zugewiesenen Tickets."
+
+#: IDF/gettexttemplates/idf/faq.html.php:55
+msgid "Shift+s: Source."
+msgstr "Umschalt+s: Quellcode."
+
+#: IDF/gettexttemplates/idf/faq.html.php:56
+msgid "You also have the standard access keys:"
+msgstr "Du kannst auch die folgenden Standardzugriffstasten nutzen:"
+
+#: IDF/gettexttemplates/idf/faq.html.php:57
+msgid "Alt+1: Home."
+msgstr "Alt+1: Start."
+
+#: IDF/gettexttemplates/idf/faq.html.php:58
+msgid "Alt+2: Skip the menus."
+msgstr "Alt+2: Die Menüs übergehen."
+
+#: IDF/gettexttemplates/idf/faq.html.php:59
+msgid "Alt+4: Search (when available)."
+msgstr "Alt+4: Suche (wenn verfügbar)."
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
+msgid "Forge"
+msgstr "Forge"
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:5
+msgid "People"
+msgstr "Personen"
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:6
+msgid "Usher"
+msgstr "Usher"
+
+#: IDF/gettexttemplates/idf/gadmin/forge/base.html.php:3
+msgid "Frontpage"
+msgstr "Startseite"
+
+#: IDF/gettexttemplates/idf/gadmin/forge/index.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
You can set up a custom forge page that is used as entry page for the "
+"forge instead of the plain project listing. This page is then also "
+"accessible via the 'Home' link in main menu bar.
Additionally, the following macros are available: \n"
+"
\n"
+"
{projectlist, label=..., order=(name|activity), "
+"limit=...} - Renders a project list that can optionally be filtered "
+"by label, ordered by 'name' or 'activity' and / or limited to a specific "
+"number of projects.
\n"
+"
\n"
+"\n"
+msgstr ""
+"\n"
+"
Anweisungen:
\n"
+"
Du kannst eine eigene Forge-Startseite einrichtem, die anstatt der "
+"einfachen Projektliste angezeigt wird. Diese Seite ist dann auch über den "
+"'Startseite'-Link im Hauptmenü zu erreichen.
Zusätzlich sind die folgenden Makros verfügbar: \n"
+"
\n"
+"
{projectlist, label=..., order=(name|activity), "
+"limit=...} -Zeigt eine Projektliste an, die optional nach Marke "
+"gefiltert und nach Name oder Aktivität sortiert und / oder auf eine "
+"bestimmte Anzahl von Projekten beschränkt werden kann.
\n"
+"
\n"
+"\n"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:7
+msgid "Project List"
+msgstr "Projektliste"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4
+#: IDF/Views/Admin.php:110
+msgid "Project Labels"
+msgstr "Projekt-Marken"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:16
+#: IDF/gettexttemplates/idf/listProjects.html.php:6 IDF/Views/Admin.php:186
+msgid "Create Project"
+msgstr "Projekt anlegen"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:6
+msgid "Change Project Details"
+msgstr "Projektdetails ändern"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3
+msgid ""
+"You can select the type of repository you want. In the case of subversion, "
+"you can use optionally a remote repository instead of the local one."
+msgstr ""
+"Du kannst den Typ des Depots auswählen, den Du verwenden möchtest. Im Falle "
+"von Subversion kannst Du optional neben einem lokalen auch ein entferntes "
+"Depot benutzen."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:4
+msgid ""
+"Once you have defined the repository type, you cannot change "
+"it."
+msgstr ""
+"Wurde der Typ des Depots einmal festgelegt, kann dieser nicht "
+"nachträglich geändert werden.."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:5
+msgid ""
+"\n"
+"
Specify each person by its login. Each person must have already "
+"registered with the given login.
\n"
+"
Separate the logins with commas and/or new lines.
\n"
+msgstr ""
+"\n"
+"
Gib den Anmeldenamen jeder Person an. Jede Person muss sich vorher "
+"bereits mit diesen Namen angemeldet haben.
\n"
+"
Trenne die Anmeldenamen durch Kommas und / oder neue Zeilen.
\n"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:14
+msgid ""
+"The form contains some errors. Please correct them to create the project."
+msgstr ""
+"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um das "
+"Projekt anzulegen."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:15
+msgid "Provide at least one owner for the project or use a template."
+msgstr ""
+"Gib mindestens einen Eigentümer für das Projekt ein oder benutze eine "
+"Projektvorlage."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:15
+msgid "Instructions:"
+msgstr "Anweisungen:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:3
+#, php-format
+msgid ""
+"Confirmation code to confirm the deletion of the project: \n"
+"%%code%%."
+msgstr ""
+"Kennwort zur Bestätigung der Projektlöschung: \n"
+"%%code%%."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:5
+msgid ""
+"\n"
+"Attention! Deleting a project is a one second operation\n"
+"with the consequences that all the data related to the \n"
+"project will be deleted.\n"
+msgstr ""
+"\n"
+"Achtung! Das Löschen eines Projekts ist eine sehr\n"
+"rasch beendete Operation, die in der Konsequenz alle Daten\n"
+"in Bezug auf das Projekt löscht.\n"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:10
+msgid ""
+"The form contains some errors. Please correct them to delete the project."
+msgstr ""
+"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um das "
+"Projekt zu löschen."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:11
+msgid "Project Statistics"
+msgstr "Projektstatistiken"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:12
+msgid "Tab"
+msgstr "Bereich"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:13
+msgid "Number"
+msgstr "Zahl"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:15
+msgid "Code reviews"
+msgstr "Code-Besprechungen"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:16
+#: IDF/Views/Project.php:93
+msgid "Commits"
+msgstr "Revisionen"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:18
+msgid "Documentation pages"
+msgstr "Dokumentations-Seiten"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:20
+msgid "Delete Project"
+msgstr "Projekt löschen"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:22
+msgid ""
+"For large projects, the suppression can take a while, please be patient."
+msgstr "Das Löschen großer Projekte kann etwas dauern, bitte habe Geduld."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:3
+msgid "Space Usage Statistics"
+msgstr "Speicherplatz-Statistiken"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:4
+msgid "Repositories:"
+msgstr "Depots:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:18
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:16
+msgid "Attachments:"
+msgstr "Anhänge:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7
+msgid "Database:"
+msgstr "Datenbank:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:8
+msgid "Total Forge:"
+msgstr "Forge insgesamt:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:13
+msgid ""
+"The form contains some errors. Please correct them to update the project."
+msgstr ""
+"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um das "
+"Projekt zu aktualisieren."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:14
+msgid "Provide at least one owner for the project."
+msgstr "Bestimme wenigstens einen Projekteigentümer."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:15
+msgid "Update Project"
+msgstr "Projekt aktualisieren"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:20
+msgid "Delete this project"
+msgstr "Lösche dieses Projekt"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:21
+msgid "You will be asked to confirm."
+msgstr "Es wird eine Bestätigung verlangt."
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3 IDF/Views/Admin.php:264
+msgid "User List"
+msgstr "Benutzerliste"
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:13
+msgid "Update User"
+msgstr "Benutzer aktualisieren"
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4
+msgid "Create User"
+msgstr "Benutzer anlegen"
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3
+msgid "The form contains some errors. Please correct them to create the user."
+msgstr ""
+"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um den "
+"Benutzer zu erstellen."
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:6
+msgid "The user password will be sent by email to the user."
+msgstr ""
+"Das Passwort des Benutzers wird an die E-Mail-Adresse des Benutzers versandt."
+
+#: IDF/gettexttemplates/idf/gadmin/users/createuser-email.txt.php:3
+#, php-format
+msgid ""
+"Hello %%user%%,\n"
+"\n"
+"An account on the forge has been created for you by\n"
+"the administrator %%admin%%.\n"
+"\n"
+"Please find here your details to access the forge:\n"
+"\n"
+" Address: %%url%%\n"
+" Login: %%user.login%%\n"
+" Password: %%password%%\n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+"Hallo %%user%%,\n"
+"\n"
+"Der Administrator %%admin%% hat ein neues Benutzerkonto\n"
+"für Dich auf der Forge angelegt.\n"
+"\n"
+"Hier sind die Zugangsdaten, mit denen Du auf Dein Benutzerkonto\n"
+"zugreifen kannst:\n"
+"\n"
+" Adresse: %%url%%\n"
+" Anmeldename: %%user.login%%\n"
+" Passwort: %%password%%\n"
+"\n"
+"Mit freundlichen Grüßen,\n"
+"Das Entwickler-Team.\n"
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:3
+#, php-format
+msgid "See not validated users."
+msgstr "Zeige nicht validierte Benutzer."
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:4
+msgid "
You have here an overview of the users registered in the forge.
"
+msgstr ""
+"
Hier siehst Du eine Übersicht der Benutzer, die sich in der Forge "
+"registriert haben."
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:5
+msgid "Number of users:"
+msgstr "Anzahl der Benutzer:"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:3
+msgid ""
+"If you are changing the email address of the user, you\n"
+"need to ensure that you are providing a valid email\n"
+"address"
+msgstr ""
+"Wenn Du die E-Mail-Adresse eines Benutzers änderst,\n"
+"musst Du sicherstellen, eine gültige, neue E-Mail-Adresse\n"
+"als Ersatz bereitzustellen."
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:6
+msgid ""
+"If you give the user staff rights, the user will be\n"
+"able to create new projects and update other non staff users.\n"
+msgstr ""
+"Wenn Du dem Benutzer Stab-Rechte erteilst, kann er\n"
+"neue Projekte anlegen und andere Benutzer, die nicht zum Stab\n"
+"gehören, aktualisieren.\n"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:9
+msgid "The form contains some errors. Please correct them to update the user."
+msgstr ""
+"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um den "
+"Benutzer zu aktualisieren."
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:4
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:4
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4
+msgid "Login:"
+msgstr "Benutzername:"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:11
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:5
+msgid "Public Profile"
+msgstr "Öffentliches Profil"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:12
+msgid "Administrative"
+msgstr "Administratives"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3
+msgid "Configured servers"
+msgstr "Konfigurierte Server"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:4 IDF/Views/Admin.php:421
+msgid "Usher control"
+msgstr "Usher-Kontrolle"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:3
+msgid "address"
+msgstr "Adresse"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:4
+msgid "port"
+msgstr "Port"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:5
+msgid "No connections found."
+msgstr "Keine Verbindungen gefunden."
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3
+msgid "current server status:"
+msgstr "Derzeitiger Serverstatus:"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:4
+msgid "startup"
+msgstr "hochfahren"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:5
+msgid "shutdown"
+msgstr "herunterfahren"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:6
+msgid "reload server configuration:"
+msgstr "Serverkonfiguration einlesen:"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:7
+msgid "reload"
+msgstr "neu laden"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:11
+msgid "Status explanation"
+msgstr "Statuserklärung"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:9
+msgid "active with n total open connections"
+msgstr "aktiv mit n offenen Verbindungen insgesamt"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:10
+msgid "waiting for new connections"
+msgstr "warte auf neue Verbindungen"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:11
+msgid "usher is being shut down, not accepting connections"
+msgstr "Usher wird heruntergefahren und akzeptiert keine Verbindungen"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:12
+msgid ""
+"usher is shut down, all local servers are stopped and not accepting "
+"connections"
+msgstr ""
+"Usher ist heruntergefahren, alle lokalen Server sind gestoppt und keine "
+"Verbindungen werden akzeptiert"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:3
+msgid "server name"
+msgstr "Servername"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:4 IDF/Issue.php:99
+#: IDF/Review.php:102
+msgid "status"
+msgstr "Status"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:5
+msgid "action"
+msgstr "Aktion"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:6
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:6
+msgid "No monotone servers configured."
+msgstr "Keine monotone-Server konfiguriert."
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:7
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:7
+msgid "stop"
+msgstr "stoppen"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:8
+msgid "start"
+msgstr "starten"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:9
+msgid "kill"
+msgstr "töten"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:10
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:10
+msgid "active connections"
+msgstr "aktive Verbindungen"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:12
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:12
+msgid "remote server without open connections"
+msgstr "entfernter Server ohne offene Verbindungen"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:13
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:13
+msgid "server with n open connections"
+msgstr "Server mit n offenen Verbindungen"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:14
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:14
+msgid "local server running, without open connections"
+msgstr "lokaler Server läuft ohne offene Verbindungen"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:15
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:15
+msgid "local server not running, waiting for connections"
+msgstr "lokaler Server läuft nicht und wartet auf Verbindungen"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:16
+msgid "local server is about to stop, n connections still open"
+msgstr "lokaler Server stoppt gerade, n Verbindungen sind noch offen"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:17
+msgid "local server not running, not accepting connections"
+msgstr "lokaler Server läuft nicht und akzeptiert keine Verbindungen"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:18
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:18
+msgid "usher is shut down, not running and not accepting connections"
+msgstr ""
+"Usher ist heruntergefahren, läuft nicht und akzeptiert keine Verbindungen"
+
+#: IDF/gettexttemplates/idf/index.atom.php:3
+#, php-format
+msgid "Personal project feed for %%user%%."
+msgstr "Persönlicher Projekt-Feed für %%user%%."
+
+#: IDF/gettexttemplates/idf/index.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:6
+msgid "Home"
+msgstr "Startseite"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:3
+#, php-format
+msgid "Attachment to issue %%issue.id%%"
+msgstr "Anhang zum Ticket %%issue.id%%"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:5
+#: IDF/gettexttemplates/idf/review/view.html.php:35
+#: IDF/gettexttemplates/idf/source/commit.html.php:23
+#: IDF/gettexttemplates/idf/source/commit.html~.php:22
+#: IDF/gettexttemplates/idf/source/git/file.html.php:6
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:12
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:7
+msgid "Archive"
+msgstr "Archiv"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:6
+#: IDF/gettexttemplates/idf/source/git/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:10
+msgid "Download this file"
+msgstr "Lade diese Datei herunter"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:7
+#: IDF/gettexttemplates/idf/issues/view.html.php:28
+#: IDF/gettexttemplates/idf/review/view.html.php:26
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:13
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:16
+msgid "Created:"
+msgstr "Erstellt:"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:4
+msgid "All Issues"
+msgstr "Alle Tickets"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:5
+msgid "My Issues"
+msgstr "Meine Tickets"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:6
+msgid "My watch list"
+msgstr "Meine Beobachtungsliste"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:7
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:6
+#: IDF/gettexttemplates/idf/issues/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:5
+#: IDF/gettexttemplates/idf/issues/search.html.php:8
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:5
+msgid "New Issue"
+msgstr "Neues Ticket"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:8
+#: IDF/gettexttemplates/idf/wiki/base.html.php:9
+msgid "Search"
+msgstr "Suche"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:9
+msgid "Back to the issue"
+msgstr "Zurück zum Ticket"
+
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:3
+#, php-format
+msgid ""
+"
"
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:3
+msgid "View all open issues."
+msgstr "Zeige alle offenen Tickets."
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:4
+msgid "Create an issue."
+msgstr "Lege ein Ticket an."
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:5
+#, php-format
+msgid ""
+"The issue tracker is empty. Create your "
+"first issue."
+msgstr ""
+"Es gibt noch keine Tickets. Erstelle Dein "
+"erstes Ticket hier."
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:6
+#: IDF/gettexttemplates/idf/issues/summary.html~.php:4
+#, php-format
+msgid "Unresolved: By %%key%%"
+msgstr "Ungelöst: Nach %%key%%"
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:7
+#: IDF/gettexttemplates/idf/issues/summary.html~.php:5
+msgid "Status Summary"
+msgstr "Status-Zusammenfassung"
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:8
+#: IDF/gettexttemplates/idf/issues/summary.html~.php:6
+msgid "Unresolved: By Assignee"
+msgstr "Ungelöst: Nach Zugeordneten"
+
+#: IDF/gettexttemplates/idf/issues/summary.html~.php:3
+#, php-format
+msgid ""
+"The issue tracker is empty. You can create your first issue here."
+msgstr ""
+"Es gibt noch keine Tickets. Du kannst Dein erstes Ticket hier erstellen."
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:3
+#, php-format
+msgid ""
+"See the %%nb_submit_closed%% closed."
+msgid_plural ""
+"See the %%nb_submit_closed%% closed."
+msgstr[0] ""
+"Siehe das %%nb_submit_closed%% "
+"geschlossene."
+msgstr[1] ""
+"Siehe die %%nb_submit_closed%% "
+"geschlossenen."
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:4
+#, php-format
+msgid ""
+"See the %%nb_owner_closed%% closed."
+msgid_plural ""
+"See the %%nb_owner_closed%% closed."
+msgstr[0] ""
+"Siehe das %%nb_owner_closed%% "
+"geschlossene."
+msgstr[1] ""
+"Siehe die %%nb_owner_closed%% "
+"geschlossenen."
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:6
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:7
+msgid "Submitted issues:"
+msgstr "Eingereichte Tickets:"
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:7
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:6
+msgid "Working issues:"
+msgstr "Tickets in Bearbeitung:"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:3
+#, php-format
+msgid "Reported by %%submitter%%, %%c.creation_dtime%%"
+msgstr "Eingesandt von %%submitter%%, %%c.creation_dtime%%"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:4
+#: IDF/gettexttemplates/idf/review/view.html.php:22
+#, php-format
+msgid ""
+"Comment %%i%% by %%submitter%%, %%c.creation_dtime%%"
+msgstr ""
+"Kommentar %%i%% von %%submitter%%, "
+"%%c.creation_dtime%%"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:5
+#, php-format
+msgid "Sign in to reply to this comment."
+msgstr ""
+"Melde Dich an, um auf diesen Kommentar zu antworten."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:6
+msgid ""
+"This issue is marked as closed, add a comment only if you think this issue "
+"is still valid and more work is needed to fully fix it."
+msgstr ""
+"Dieses Ticket wurde als geschlossen markiert. Füge nur dann einen Kommentar "
+"hinzu, wenn Du denkst, dass das geschilderte Problem noch nicht ganz "
+"beseitigt wurde."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:8
+#, php-format
+msgid "%%interested%% person"
+msgid_plural "%%interested%% persons"
+msgstr[0] "%%interested%% Person"
+msgstr[1] "%%interested%% Personen"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:9
+#, php-format
+msgid "This issue %%verb%%"
+msgstr "Dieses Ticket %%verb%%"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:10
+msgid "Remove this issue from your watch list"
+msgstr "Entferne dieses Ticket von Deiner Beobachtungsliste"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:11
+msgid "Add this issue to your watch list"
+msgstr "Füge dieses Ticket zu Deiner Beobachtungsliste hinzu"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:12
+msgid "View the previous closed issue"
+msgstr "Zeige das vorherige geschlossene Ticket"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:13
+msgid "View the previous open issue"
+msgstr "Zeige das vorherige offene Ticket"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:14
+msgid "View the next closed issue"
+msgstr "Zeige das nächte geschlossene Ticket"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:15
+msgid "View the next open issue"
+msgstr "Zeige das nächste offene Ticket"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:16
+msgid "download"
+msgstr "herunterladen"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:17
+msgid "view"
+msgstr "anzeigen"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:23
+msgid "The form contains some errors. Please correct them to change the issue."
+msgstr ""
+"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um das "
+"Ticket zu ändern."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:25
+msgid "Submit Changes"
+msgstr "Sende Änderungen"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:32
+msgid "Followed by:"
+msgstr "Beobachtet von:"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:3
+#, php-format
+msgid "1 project"
+msgid_plural "%%label.project_count%% projects"
+msgstr[0] "1 Projekt"
+msgstr[1] "%%label.project_count%% Projekte"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:4
+#, php-format
+msgid "Remove filter for %%tag%%"
+msgstr "Entferne Filter für %%tag%%"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:5
+msgid "No projects managed with InDefero were found."
+msgstr "Es wurden keine verwalteten Projekte gefunden."
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:7
+msgid "Filter projects by label"
+msgstr "Filtere Projekte nach Marke"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:8
+msgid "No projects with labels found."
+msgstr "Keine Projekte mit Marken gefunden."
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:9
+msgid "Order"
+msgstr "Sortierung"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:10
+msgid "By name"
+msgstr "Nach Name"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:11
+msgid "By activity"
+msgstr "Nach Aktivität"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:12
+msgid "Filtered project stats"
+msgstr "Statistiken der gefilterten Projekte"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:13
+msgid "Members:"
+msgstr "Mitglieder:"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:14
+msgid "Issues:"
+msgstr "Tickets:"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:15
+msgid "Commits:"
+msgstr "Revisionen:"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:16
+msgid "Documentations:"
+msgstr "Dokumentationsseiten:"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:18
+msgid "Code reviews:"
+msgstr "Code-Besprechungen:"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:3
+#, php-format
+msgid ""
+"You can create an account if you don't have one yet."
+msgstr ""
+"Du kannst ein Konto erstellen, wenn Du noch keins "
+"hast."
+
+#: IDF/gettexttemplates/idf/login_form.html.php:4
+msgid "What is your account information?"
+msgstr "Wie lauten Deine Kontoinformationen?"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:5
+msgid "My login is"
+msgstr "Mein Anmeldename ist"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:6
+msgid "My password is"
+msgstr "Mein Passwort ist"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:7
+msgid "Sign in"
+msgstr "Anmelden"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:8
+msgid "I lost my password!"
+msgstr "Ich habe mein Passwort vergessen!"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:9
+msgid "Welcome."
+msgstr "Willkommen."
+
+#: IDF/gettexttemplates/idf/login_form.html.php:10
+msgid "It takes less than a minute to create your account."
+msgstr "Es dauert weniger als eine Minute, um Dein Benutzerkonto zu erstellen."
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:3
+#, php-format
+msgid ""
+"Welcome, %%user%%."
+msgstr ""
+"Willkommen, %%user%%."
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:4
+msgid "Sign Out"
+msgstr "Abmelden"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:5
+msgid "Sign in or create your account"
+msgstr "Anmelden oder Benutzerkonto erstellen"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:10 IDF/Views/Admin.php:40
+msgid "Forge Management"
+msgstr "Administration"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:11
+msgid "Help and accessibility features"
+msgstr "Hilfe und Barrierefreiheit"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:12
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:14
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:14
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:15
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13
+msgid "Help"
+msgstr "Hilfe"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:3
+#: IDF/gettexttemplates/idf/project/timeline.html.php:4 IDF/Views.php:46
+msgid "Welcome"
+msgstr "Willkommen"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:4
+#: IDF/gettexttemplates/idf/project/timeline.html.php:5
+msgid "Latest Updates"
+msgstr "Letzte Änderungen"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:5
+msgid "Featured Downloads"
+msgstr "Empfohlene Downloads"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:6
+msgid "Show more featured downloads"
+msgstr "Zeige mehr empfohlene Downloads"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:7
+#: IDF/gettexttemplates/idf/project/home.html.php:10
+msgid "show more..."
+msgstr "zeige mehr..."
+
+#: IDF/gettexttemplates/idf/project/home.html.php:8
+msgid "Featured Documentation"
+msgstr "Empfohlene Dokumentation"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:9
+msgid "Show more featured documentation"
+msgstr "Zeige mehr empfohlene Dokumentation"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:11
+msgid "Development Team"
+msgstr "Entwickler-Team"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:12
+msgid "Admins"
+msgstr "Administratoren"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:13
+msgid "Happy Crew"
+msgstr "Glückliche Mannschaft"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:3
+msgid "Latest updates"
+msgstr "Letzte Änderungen"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:6 IDF/Views/Project.php:90
+msgid "All Updates"
+msgstr "Alle Aktualisierungen"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:7
+msgid "Filter by type"
+msgstr "Nach Typ filtern"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:8
+msgid "Subscribe to this timeline"
+msgstr "Abonniere diese Zeitleiste"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:9
+msgid "RSS"
+msgstr "RSS"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:10
+msgid "Atom feed"
+msgstr "Atom-Feed"
+
+#: IDF/gettexttemplates/idf/project-list.html.php:3
+msgid "Project activity: %%activity%%%"
+msgstr "Projekt-Aktivität: %%activity%%%"
+
+#: IDF/gettexttemplates/idf/project-list.html.php:9
+msgid "n/a"
+msgstr "n.v."
+
+#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"You have requested the creation of an account to\n"
+"participate in the life of a software project.\n"
+"\n"
+"To confirm the account please follow this link:\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Alternatively, go to this page:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"and provide the following confirmation key:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"If you are not interested any longer in taking\n"
+"part in the life of the software project or if\n"
+"you can't remember having requested the creation\n"
+"of an account, please excuse us and simply ignore\n"
+"this email. \n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+"Hallo,\n"
+"\n"
+"Du hast die Anlage eines Benutzerkontos angefordert, um an dem Leben\n"
+"eines Softwareprojektes teilhaben zu können.\n"
+"\n"
+"Um Dein Konto zu bestätigen, folge bitte dem folgenden Link:\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Alternativ gehe zu dieser Seite:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"und gib den folgenden Validierungs-Schlüssel ein:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"Wenn Du nicht mehr länger an diesem Software-Projekt\n"
+"interessiert bist oder wenn Du Dich nicht daran erinnern\n"
+"kannst, dieses Benutzerkonto erstellen zu wollen, entschuldige\n"
+"und ignoriere einfach diese E-Mail.\n"
+"\n"
+"Mit freundlichen Grüßen,\n"
+"Das Entwickler-Team.\n"
+
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:3
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:3
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:3
+msgid "Oops, please check the form for errors."
+msgstr "Bitte überprüfe die Maske auf Fehler."
+
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5
+msgid "Email:"
+msgstr "E-Mail:"
+
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:6
+msgid "Enable Your Account"
+msgstr "Aktiviere Dein Konto"
+
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:8
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:8
+msgid ""
+"This is the last step, but just be sure to have the cookies "
+"enabled to log in afterwards."
+msgstr ""
+"Dies ist der letzte Schritt, aber bitte stelle sicher, dass Du "
+"Cookies aktiviert hast, um Dich im Folgenden anzumelden."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:3
+msgid ""
+"Read the terms and conditions – "
+"basically \"Please be nice, we respect you\"."
+msgstr ""
+"Lies die Geschäftsbedingungen - "
+"kurz zusammengefast \"Bitte sei nett, wir respektieren Dich\"."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:4
+#, php-format
+msgid ""
+"If you have just forgotten your login information, then there is no need to "
+"create a new account. You can just recover your login "
+"name and password."
+msgstr ""
+"Wenn Du einfach nur Deine Anmeldedaten vergessen hast, gibt es keinen Grund, "
+"ein neues Benutzerkonto zu erstellen. Du kannst einfach Deinen Anmeldenamen und Dein Passwort wiederherstellen."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:5
+#, php-format
+msgid ""
+"With your account, you will able to participate in the life of all the "
+"projects hosted here. Participating in a software project must be fun, so if "
+"you have troubles, you can let us know about your issues "
+"at anytime!"
+msgstr ""
+"Durch Dein Benutzerkonto bist Du in der Lage, an dem Leben aller "
+"Softwareprojekte, die hierüber verwaltet werden, teilzuhaben. Das Teilnehmen "
+"an einem Softwareprojekt muss Spass machen, deshalb lass "
+"uns jederzeit von Deinen Problemen wissen, solltest Du welche haben."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:6
+msgid "Oops, please check the provided login and email address to register."
+msgstr ""
+"Bitte überprüfe den angegebenen Anmeldenamen und die E-Mail-Adresse zum "
+"registrieren."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:7 IDF/Views.php:137
+msgid "Create Your Account"
+msgstr "Erstelle Deinen Account"
+
+#: IDF/gettexttemplates/idf/register/index.html.php:9
+msgid ""
+"Be sure to provide a valid email address, as we are sending a validation "
+"link by email."
+msgstr ""
+"Bitte gib eine gültige E-Mail-Adresse an, da wir einen Bestätigungs-Link an "
+"diese Adresse versenden."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:10
+msgid "Did you know?"
+msgstr "Wusstest Du?"
+
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:3
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:3
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:3
+msgid "Oops, we found an error in the form."
+msgstr "Wir haben einen Fehler in der Maske gefunden."
+
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:4
+msgid "Confirm Your Account"
+msgstr "Bestätige Dein Konto"
+
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:7
+msgid ""
+"Use your email software to read your emails and open your confirmation "
+"email. Either click directly on the confirmation link or copy/paste the "
+"confirmation key in the box and submit the form."
+msgstr ""
+"Benutze Deine E-Mail-Software, um Deine E-Mails zu lesen und öffne die "
+"Bestätigungs-E-Mail. Klicke dann entweder direkt auf den Bestätigungs-Link "
+"oder kopiere den Bestätigungsschlüssel direkt in das Eingabefeld hinein und "
+"sende das Formular ab."
+
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:8
+msgid ""
+"Just after providing the confirmation key, you will be able to set your "
+"password and start using this website fully."
+msgstr ""
+"Direkt nachdem Du den Bestätigungsschlüssel angegeben hast, bist Du in der "
+"Lage, Dein Passwort zu setzen und diese Webseite voll zu nutzen."
+
+#: IDF/gettexttemplates/idf/review/base-full.html.php:3
+#: IDF/gettexttemplates/idf/review/base.html.php:3
+msgid "Open Reviews"
+msgstr "Offene Code-Besprechungen"
+
+#: IDF/gettexttemplates/idf/review/base.html.php:4
+#: IDF/gettexttemplates/idf/review/create.html.php:11
+#: IDF/gettexttemplates/idf/review/index.html.php:3 IDF/Views/Review.php:83
+msgid "Start Code Review"
+msgstr "Neue Code-Besprechung starten"
+
+#: IDF/gettexttemplates/idf/review/create.html.php:3
+msgid ""
+"
To start a code review, you need to provide:
\n"
+"
\n"
+"
A commit or revision of the current code in the repository from which "
+"you started your work.
\n"
+"
A patch describing your changes with respect to the reference "
+"commit.
\n"
+"
Check your patch does not provide any password or confidential "
+"information!
\n"
+"
"
+msgstr ""
+"
Wenn Du eine Code-Besprechung erstellst, musst Du folgende Angaben "
+"machen:
\n"
+"
\n"
+"
Eine Revision Deines derzeitigen Codes im Depot, von der aus Du Deine "
+"Arbeit begonnen hast.
\n"
+"
Ein Patch, welches die Änderungen ausgehend von der Referenz-Revision "
+"beschreibt.
\n"
+"
Überprüfe, dass Dein Patch keine Passwörter oder vertraulichen "
+"Angaben enthält!
\n"
+"
"
+
+#: IDF/gettexttemplates/idf/review/create.html.php:9
+msgid ""
+"The form contains some errors. Please correct them to submit the code review."
+msgstr ""
+"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die "
+"Code-Besprechung einzusenden."
+
+#: IDF/gettexttemplates/idf/review/create.html.php:10
+msgid ""
+"Select the commit against which you created your patch to be sure it applies "
+"correctly."
+msgstr ""
+"Wähle die Revision aus, gegen welche Du Dein Patch erstellt hast und stelle "
+"sicher, dass das Patch auf diese Revision korrekt angewandt werden kann."
+
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:3
+msgid "The following review has been created:"
+msgstr "Die folgende Code-Besprechung wurde erstellt:"
+
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:10
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:16
+msgid "Review:"
+msgstr "Code-Besprechung:"
+
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:3
+msgid "The following review has been updated:"
+msgstr "Die folgende Code-Besprechung wurde aktualisiert:"
+
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:5
+#, php-format
+msgid ""
+"By %%who%%, %%c.creation_dtime%%, on file:\n"
+"%%c.cfile%%\n"
+msgstr ""
+"Von %%who%%, %%c.creation_dtime%%, für Datei:\n"
+"%%c.cfile%%\n"
+
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:14
+msgid "General comments (last first):"
+msgstr "Allgemeine Kommentare (neueste zuerst):"
+
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:15
+msgid "Detailed file comments (last first):"
+msgstr "Detaillierte Dateikommentare (neueste zuerst):"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:3
+msgid ""
+"Code review is a process in which\n"
+"after or before changes are commited into the code repository,\n"
+"different people discuss the code changes. The goal is\n"
+"to improve the quality of the code and the\n"
+"contributions, as such, you must be pragmatic when writing\n"
+"your review. Correctly mention the line numbers (in the old or in the\n"
+"new file) and try to keep a good balance between seriousness and fun.\n"
+msgstr ""
+"Eine Code-Besprechung ist ein Prozess, in welchem bevor oder nachdem\n"
+"Änderungen in das Quellcode-Depot eingepflegt wurden, verschiedene\n"
+"Personen über diese Änderungen diskutieren. Das Ziel ist die\n"
+"Qualität des Codes und des Beitrages zu verbessern,\n"
+"und deshalb solltest Du beim Schreiben Deiner Code-Besprechung pragmatisch\n"
+"sein. Benenne die korrekten Zeilennummern für Deine Kommentare (in der\n"
+"alten oder der neuen Datei) und versuche, eine gute Balance zwischen\n"
+"Ernsthaftigkeit und Spass zu bewahren.\n"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:11
+msgid ""
+"\n"
+"Proposing code for review is intimidating, you know\n"
+"you will receive critics, so please, as a reviewer, keep this\n"
+"process fun, use it to help your contributor learn your\n"
+"coding standards and the structure of the code and make them want\n"
+"to propose more contributions.\n"
+msgstr ""
+"\n"
+"Eine Code-Besprechung kann einschüchternd wirken.\n"
+"Du als Rezensent weißt, dass Du Kritik erhalten wirst, deshalb\n"
+"versuche, dem Prozess nicht den Spass zu nehmen, sondern\n"
+"nutze ihn, um Deinen Aspiranten Deine Coding-Standards und die Struktur\n"
+"Deines Codes zu lehren und bring sie dazu, mehr "
+"beizutragen.\n"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:18
+#: IDF/gettexttemplates/idf/source/commit.html.php:3
+#: IDF/gettexttemplates/idf/source/commit.html~.php:3
+#, php-format
+msgid "%%ndiff%% diff"
+msgid_plural "%%ndiff%% diffs"
+msgstr[0] "%%ndiff%% Änderung"
+msgstr[1] "%%ndiff%% Änderungen"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:19
+#, php-format
+msgid "%%nc%% comment"
+msgid_plural "%%nc%% comments"
+msgstr[0] "%%nc%% Kommentar"
+msgstr[1] "%%nc%% Kommentare"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:20
+#, php-format
+msgid ""
+"Comment %%i%% by %%who%%, "
+"%%c.creation_dtime%%"
+msgstr ""
+"Kommentar %%i%% von %%who%%, %%c.creation_dtime%%"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:21
+#, php-format
+msgid "Your comments on the changes in file %%file%%:"
+msgstr "Deine Kommentare der Änderungen in der Datei %%file%%:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:23
+#, php-format
+msgid "Sign in to participate in the review."
+msgstr ""
+"Melde Dich an, um an der Code-Besprechung "
+"teilzunehmen."
+
+#: IDF/gettexttemplates/idf/review/view.html.php:24
+msgid ""
+"The form contains some errors. Please correct them to submit your review."
+msgstr ""
+"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die "
+"Code-Besprechung einzusenden."
+
+#: IDF/gettexttemplates/idf/review/view.html.php:25
+msgid "How to Participate in a Code Review"
+msgstr "Wie man an einer Code-Besprechung teilnimmt"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:28
+#: IDF/gettexttemplates/idf/source/commit.html.php:5
+#: IDF/gettexttemplates/idf/source/commit.html~.php:5
+msgid "Author:"
+msgstr "Autor:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:29
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/source/commit.html.php:7
+#: IDF/gettexttemplates/idf/source/commit.html~.php:7
+msgid "Commit:"
+msgstr "Revision"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:30
+#: IDF/gettexttemplates/idf/source/commit.html.php:8
+#: IDF/gettexttemplates/idf/source/commit.html~.php:8
+msgid "View corresponding source tree"
+msgstr "Zeige den dazugehörigen Quellcode-Baum"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:32
+msgid "Reviewers:"
+msgstr "Rezensenten:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:33
+msgid "No reviewers at the moment."
+msgstr "Derzeit gibt es keine Rezensenten."
+
+#: IDF/gettexttemplates/idf/review/view.html.php:34
+msgid "Files:"
+msgstr "Dateien:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:36
+#: IDF/gettexttemplates/idf/source/commit.html.php:24
+#: IDF/gettexttemplates/idf/source/commit.html~.php:23
+msgid "Download the corresponding diff file"
+msgstr "Dazugehörige Unterschiedsdatei herunterladen"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:37
+msgid "General Comments"
+msgstr "Allgemeine Kommentare"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:40
+msgid "Submit Code Review"
+msgstr "Code-Besprechung einsenden"
+
+#: IDF/gettexttemplates/idf/source/base.html.php:3
+msgid "Source Tree"
+msgstr "Quellcode-Baum"
+
+#: IDF/gettexttemplates/idf/source/base.html.php:4
+msgid "Change Log"
+msgstr "Änderungsliste"
+
+#: IDF/gettexttemplates/idf/source/base.html.php:6
+msgid "How To Get The Code"
+msgstr "Wie man den Code bekommt"
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:3
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:7
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8 IDF/Views/Project.php:190
+msgid "Age"
+msgstr "Alter"
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:4
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:8
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:8
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:9
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10
+msgid "Message"
+msgstr "Logmeldung"
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:5
+msgid "Parent:"
+msgstr "Eltern:"
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:6
+#: IDF/gettexttemplates/idf/source/commit.html.php:10
+#: IDF/gettexttemplates/idf/source/commit.html~.php:10
+msgid "View corresponding commit"
+msgstr "Zeige dazugehörige Revision"
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:8
+msgid "by"
+msgstr "von"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:3
+msgid "A new commit has been created:"
+msgstr "Eine neue Revision wurde erzeugt:"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:8
+msgid "Created by:"
+msgstr "Erstellt von:"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8
+msgid "Created at:"
+msgstr "Erstellt am:"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:8
+msgid "Content:"
+msgstr "Inhalt:"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10
+msgid "Commit details:"
+msgstr "Revision-Details:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:4
+#: IDF/gettexttemplates/idf/source/commit.html~.php:4
+msgid "Date:"
+msgstr "Datum:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:6
+#: IDF/gettexttemplates/idf/source/commit.html~.php:6
+msgid "Branch:"
+msgstr "Zweig:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:9
+#: IDF/gettexttemplates/idf/source/commit.html~.php:9
+msgid "Parents:"
+msgstr "Eltern:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:11
+#: IDF/gettexttemplates/idf/source/commit.html~.php:11
+msgid "Message:"
+msgstr "Logmeldung:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:12
+#: IDF/gettexttemplates/idf/source/commit.html~.php:12
+#: IDF/gettexttemplates/idf/wiki/feedfragment-page.xml.php:3
+#: IDF/gettexttemplates/idf/wiki/feedfragment-resource.xml.php:3
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:10
+msgid "Changes:"
+msgstr "Änderungen:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:13
+#: IDF/gettexttemplates/idf/source/commit.html~.php:13
+msgid "deleted"
+msgstr "gelöscht"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:14
+#: IDF/gettexttemplates/idf/source/commit.html.php:18
+#: IDF/gettexttemplates/idf/source/commit.html~.php:14
+#: IDF/gettexttemplates/idf/source/commit.html~.php:17
+msgid "full"
+msgstr "voll"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:15
+#: IDF/gettexttemplates/idf/source/commit.html~.php:15
+msgid "renamed"
+msgstr "umbenannt"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:16
+msgid "copied"
+msgstr "kopiert"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:17
+#: IDF/gettexttemplates/idf/source/commit.html~.php:16
+msgid "added"
+msgstr "hinzugefügt"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:19
+#: IDF/gettexttemplates/idf/source/commit.html~.php:18
+msgid "modified"
+msgstr "verändert"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:20
+msgid "properties changed"
+msgstr "Eigenschaften geändert"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:21
+#: IDF/gettexttemplates/idf/source/commit.html~.php:20
+msgid "removed"
+msgstr "entfernt"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:22
+#: IDF/gettexttemplates/idf/source/commit.html~.php:21
+msgid "File differences"
+msgstr "Dateiunterschiede"
+
+#: IDF/gettexttemplates/idf/source/commit.html~.php:19
+msgid "properies changed"
+msgstr "Eigenschaften geändert"
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:3
+#, php-format
+msgid ""
+"The revision identifier %%commit%% is ambiguous and can be\n"
+"expanded to multiple valid revisions - please choose one:"
+msgstr ""
+"Die Revisionskennung %%commit%% ist mehrdeutig und kann\n"
+"zu mehreren gültigen Revisionen erweitert werden - bitte wähle eine:"
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:5
+msgid "Title"
+msgstr "Titel"
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:6
+msgid "Author"
+msgstr "Autor"
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:7
+msgid "Date"
+msgstr "Datum"
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:8
+msgid "Branch"
+msgstr "Zweig"
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:9
+msgid "Revision"
+msgstr "Revision"
+
+#: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3
+#, php-format
+msgid "%%cproject.name%%: Commit %%c.scm_id%%"
+msgstr "%%cproject.name%%: Revision %%c.scm_id%%"
+
+#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:3
+#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:3
+#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:3
+msgid "Branches"
+msgstr "Zweige"
+
+#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:4
+#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:4
+#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:4
+msgid "filter branches"
+msgstr "Zweige filtern"
+
+#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:5
+#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:5
+#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:5
+msgid "Tags"
+msgstr "Tags"
+
+#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:6
+#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:6
+msgid "filter tags"
+msgstr "Tags filtern"
+
+#: IDF/gettexttemplates/idf/source/git/file.html.php:3
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:3
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:3
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:3
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:4
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:4
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:4
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:4
+#, php-format
+msgid ""
+"Source at commit %%commit%% created "
+"%%cobject.date%%."
+msgstr ""
+"Quellcode bei Revision %%commit%% "
+"erzeugt %%cobject.date%%."
+
+#: IDF/gettexttemplates/idf/source/git/file.html.php:4
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:4
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:4
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:4
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:5
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:5
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:5
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:5
+#, php-format
+msgid "By %%cobject.author%%, %%cobject.title%%"
+msgstr "Von %%cobject.author%%, %%cobject.title%%"
+
+#: IDF/gettexttemplates/idf/source/git/file.html.php:5
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:5
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:5
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:5
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:6
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:6
+msgid "Root"
+msgstr "Wurzel"
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:3
+#, php-format
+msgid ""
+"The team behind %%project%% is using\n"
+"the git software to manage the source\n"
+"code."
+msgstr ""
+"Das Team von %%project%% nutzt git\n"
+"als Software zur Versionsverwaltung."
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:6
+#, php-format
+msgid ""
+"You may need to provide your SSH key. The "
+"synchronization of your SSH key can take a couple of minutes. You can learn "
+"more about SSH "
+"key authentication."
+msgstr ""
+"Eventuell musst Du Deinen SSH-Schlüssel hochladen. "
+"Die Synchronizierung Deines SSH-Schlüssels kann einige Minuten dauern. Du "
+"kannst hier "
+"mehr über SSH-Schlüssel-Authentifizierung erfahren."
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:6
+msgid "To make a first commit in the repository, perform the following steps:"
+msgstr ""
+"Um eine erste Revision ins Depot einzupflegen, führe die folgenden Schritte "
+"aus:"
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:8
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:7
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:7
+#, php-format
+msgid "Find here more details on how to access %%project%% source code."
+msgstr ""
+"Hier findest Du mehr Information, wie Du auf den Quellcode von %%project%% "
+"zugreifst."
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:9
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:8
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:8
+msgid "Command-Line Access"
+msgstr "Zugriff über die Kommandozeile"
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:10
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9
+msgid "First Commit"
+msgstr "Erste Revision"
+
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:9
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:9
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:10
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:11
+#: IDF/Views/Download.php:66 IDF/Views/Download.php:348
+msgid "Size"
+msgstr "Größe"
+
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:10
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:10
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:12
+msgid ":"
+msgstr ":"
+
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:12
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:12
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:13
+msgid "Download this version"
+msgstr "Diese Version herunterladen"
+
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:13
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:13
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:14
+msgid "or"
+msgstr "oder"
+
+#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:3
+#: IDF/gettexttemplates/idf/source/invalid_revision.html~.php:3
+#, php-format
+msgid ""
+"The branch or revision %%commit%% is not valid or does not exist\n"
+"in this repository."
+msgstr ""
+"Der Zweig oder die Revision %%commit%% ist ungültig oder existiert "
+"nicht\n"
+"in diesem Depot."
+
+#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:5
+#: IDF/gettexttemplates/idf/source/invalid_revision.html~.php:5
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html.php:5
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html~.php:5
+msgid "The following list shows all available branches:"
+msgstr "Die folgende Liste führt alle verfügbaren Zweige auf:"
+
+#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:6
+#: IDF/gettexttemplates/idf/source/invalid_revision.html~.php:6
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html.php:6
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html~.php:6
+#, php-format
+msgid ""
+"If this is a new repository, the reason for this error\n"
+"could be that you have not committed and / or pushed any change so far.\n"
+"In this case please take a look at the Help page\n"
+"how to access your repository."
+msgstr ""
+"Falls dies ein neues Depot ist, könnte der Grund für diesen Fehler sein,\n"
+"dass Du bislang noch keine Änderungen eingepflegt oder zum Server "
+"übertragen\n"
+"hast. In diesem Fall sieh bitte auf der Hilfe-Seite\n"
+"nach, wie Du auf Dein Depot zugreifen kannst."
+
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:3
+#, php-format
+msgid ""
+"The team behind %%project%% is using\n"
+"the Mercurial software to manage the source\n"
+"code."
+msgstr ""
+"Das Team von %%project%% nutzt Mercurial\n"
+"als Software zur Versionsverwaltung."
+
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:6
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:6
+#, php-format
+msgid ""
+"To get write access to the repository, you need to use your username and "
+"your extra password."
+msgstr ""
+"Um Schreibberechtigungen auf das Depot zu erhalten, benötigst Du Deinen "
+"Anmeldenamen und Dein zusätzliches Passwort."
+
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:9
+msgid "Write Access Authentication"
+msgstr "Authentifizierung für Schreibberechtigung"
+
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:3
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:3
+#, php-format
+msgid "Property %%prop%% set to %%val%%"
+msgstr "Eigenschaft %%prop%% auf %%val%% gesetzt"
+
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:3
+#, php-format
+msgid ""
+"The team behind %%project%% is using\n"
+"the monotone software to manage the source\n"
+"code."
+msgstr ""
+"Das Team von %%project%% nutzt monotone\n"
+"als Software zur Versionsverwaltung."
+
+#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/commit.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/commit.html~.php:3
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:9
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:14
+msgid "Revision:"
+msgstr "Revision:"
+
+#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:4
+#: IDF/gettexttemplates/idf/source/svn/commit.html.php:4
+#: IDF/gettexttemplates/idf/source/svn/commit.html~.php:4
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:10
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15
+msgid "Switch"
+msgstr "Wechseln"
+
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:3
+#, php-format
+msgid ""
+"The team behind %%project%% is using\n"
+"the subversion software to manage the source\n"
+"code."
+msgstr ""
+"Das Team von %%project%% nutzt subversion\n"
+"als Software zur Versionsverwaltung."
+
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html~.php:3
+#, php-format
+msgid ""
+"The revision %%commit%% is not valid or does not exist\n"
+"in this repository."
+msgstr ""
+"Die Revision %%commit%% ist ungültig oder existiert nicht\n"
+"in diesem Depot."
+
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9
+msgid "Rev"
+msgstr "Revision"
+
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16
+msgid "Branches:"
+msgstr "Zweige:"
+
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17
+msgid "Tags:"
+msgstr "Tags:"
+
+#: IDF/gettexttemplates/idf/user/changeemail-email.txt.php:3
+#, php-format
+msgid ""
+"Hello %%user%%,\n"
+"\n"
+"To confirm that you want %%email%%\n"
+"to be your new email address, just follow this link:\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Alternatively, go to this page:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"and provide the following verification key:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"If you do not want to change your email address, \n"
+"just ignore this message.\n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+"Hallo %%user%%,\n"
+"\n"
+"Um zu bestätigen, dass %%email%% Deine neue E-Mail-Adresse\n"
+"sein soll, folge bitte einfach diesem Link:\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Alternativ gehe zu dieser Seite:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"und gib den folgenden Validierungs-Schlüssel ein:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"Wenn Du Deine E-Mail-Adresse nicht ändern möchtest,\n"
+"ignoriere diese E-Mail einfach.\n"
+"\n"
+"Mit freundlichen Grüßen,\n"
+"Das Entwickler-Team.\n"
+
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:4
+msgid "Confirm Your New Email Address"
+msgstr "Bestätige Deine neue Email-Adresse"
+
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:7
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:7
+msgid ""
+"Use your email software to read your emails and open your verification "
+"email. Either click directly on the verification link or copy/paste the "
+"verification key in the box and submit the form."
+msgstr ""
+"Benutze Deine E-Mail-Software um Deine E-Mails zu lesen und Deine "
+"Validierungs-E-Mail zu öffnen. Klicke dann entweder direkt auf den "
+"Validierungs-Link oder kopiere den Validierungsschlüssel aus der E-Mail in "
+"das Eingabefeld und sende das Formular ab."
+
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:3
+#, php-format
+msgid "Update your account."
+msgstr "Aktualisiere Dein Benutzerkonto."
+
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:4
+#, php-format
+msgid "See your public profile."
+msgstr "Zeige Dein öffentliches Profil."
+
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:5
+#, php-format
+msgid "See your forge issue watch list."
+msgstr ""
+"Zeige Deine Forge-weite Ticket-Beobachtungliste."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:6
+msgid "Key Management"
+msgstr "Schlüsselverwaltung"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:7
+msgid "Secondary Emails"
+msgstr "Sekundäre E-Mails"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:8
+msgid "Extra password"
+msgstr "Extra-Passwort"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:9
+msgid ""
+"This password is used to access some of the external systems managed by our "
+"infrastructure. It will be regenerated if you change your password."
+msgstr ""
+"Dieses Passwort wird genutzt, um auf einige externe Systeme unserer "
+"Infrastruktur zuzugreifen. Es wird neu erzeugt, wenn Du Dein Passwort "
+"änderst."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:10
+msgid "API key"
+msgstr "API-Schlüssel"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:11
+msgid ""
+"Your API key will be regenerated automatically if you change your password."
+msgstr ""
+"Dein API-Schlüssel wird automatisch neu erzeugt, wenn Du Dein Passwort "
+"änderst."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:12
+msgid "Update Your Account"
+msgstr "Aktualisiere Deinen Account"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:14
+msgid "Your Current Public Keys"
+msgstr "Deine derzeitigen öffentlichen Schlüssel"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:15
+msgid "Delete this key"
+msgstr "Lösche diesen Schlüssel"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:16
+msgid "Your additional email addresses"
+msgstr "Deine zusätzlichen E-Mail-Adressen"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:17
+msgid "Delete this address"
+msgstr "Lösche diese Adresse"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:18
+msgid ""
+"If possible, use your real name. By using your real name, people will have "
+"more trust in your comments and remarks."
+msgstr ""
+"Wenn möglich, nutze Deinen realen Namen. Dadurch wird Deinen Kommentaren und "
+"Bemerkungen mehr Vertrauen geschenkt."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:19
+msgid ""
+"The extra password is used to access some of the external systems and the "
+"API key is used to interact with this website using a program."
+msgstr ""
+"Das Extra-Passwort wird genutzt, um auf einige externe Systeme zuzugreifen. "
+"Der API-Schlüssel wird benötigt, damit andere Programme mit dieser Webseite "
+"interagieren können."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:20
+msgid "Show API key and extra password"
+msgstr "Zeige API-Schlüssel und Extra-Passwort"
+
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3
+msgid ""
+"Oops, please check the provided login or email address to recover your "
+"password."
+msgstr ""
+"Bitte überprüfe den angegebenen Anmeldenamen oder E-Mail-Adresse, um Dein "
+"Passwort zurückzusetzen."
+
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:4
+msgid "Recover My Password"
+msgstr "Mein Passwort wiederherstellen"
+
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:6
+msgid ""
+"Provide either your login or email address, if a corresponding user is found "
+"in the database, we will send you an email with the details on how to reset "
+"your password."
+msgstr ""
+"Gib entweder Deinen Anmeldenamen oder Deine E-Mail-Adresse an. Wenn ein "
+"entsprechender Benutzer in der Datenbank gefunden wird, schicken wir Dir "
+"eine E-Mail mit Informationen, wie Du Dein Passwort zurücksetzen kannst."
+
+#: IDF/gettexttemplates/idf/user/passrecovery-email.txt.php:3
+#, php-format
+msgid ""
+"Hello %%user%%,\n"
+"\n"
+"You lost your password and wanted to recover it.\n"
+"To provide a new password for your account, you\n"
+"just have to follow the provided link. You will\n"
+"get a simple form to provide a new password.\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Alternatively, go to this page:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"and provide the following verification key:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"If you are not the one who requested to reset\n"
+"your password, simply ignore this email, your\n"
+"password will not be changed.\n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+"Hallo %%user%%,\n"
+"\n"
+"Du hast Dein Passwort verloren und möchtest es wiederherstellen.\n"
+"Um ein neues Passwort für Dein Benutzerkonto anzugeben, musst Du lediglich\n"
+"dem folgenden Link folgen. Sie führt zu einer einfachen Eingabemaske,\n"
+"mit der Du ein neues Passwort setzen kannst.\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Alternativ gehe zu dieser Seite:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"und gib den folgenden Validierungs-Schlüssel ein:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"Wenn Du nicht derjenige bist, der das Zurücksetzen des Passworts\n"
+"angefragt hat, ignoriere einfach diese E-Mail. Dein Passwort wird\n"
+"in diesem Fall nicht geändert.\n"
+"\n"
+"Mit freundlichen Grüßen,\n"
+"Das Entwickler-Team.\n"
+
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:4
+msgid "Recover Your Password"
+msgstr "Passwort wiederherstellen"
+
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:8
+msgid ""
+"Just after providing the confirmation key, you will be able to reset your "
+"password and use this website fully."
+msgstr ""
+"Kurz nachdem Du den Bestätigungscode eingegeben hast, wirst Du Dein Passwort "
+"zurücksetzen und diese Webseite voll nutzen können."
+
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:6
+msgid "Reset Your Password"
+msgstr "Passwort zurücksetzen"
+
+#: IDF/gettexttemplates/idf/user/public.html.php:3
+#, php-format
+msgid "You are looking at the public profile of %%member%%."
+msgstr "Du siehst Dir das öffentliche Profil von %%member%% an."
+
+#: IDF/gettexttemplates/idf/user/public.html.php:5
+msgid "Twitter:"
+msgstr "Twitter:"
+
+#: IDF/gettexttemplates/idf/user/public.html.php:6
+msgid "Public Email:"
+msgstr "Öffentliche E-Mail:"
+
+#: IDF/gettexttemplates/idf/user/public.html.php:7
+msgid "Website:"
+msgstr "Webseite:"
+
+#: IDF/gettexttemplates/idf/user/public.html.php:8
+msgid "Last time seen:"
+msgstr "Zuletzt gesehen:"
+
+#: IDF/gettexttemplates/idf/user/public.html.php:9
+msgid "Member since:"
+msgstr "Mitglied seit:"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:3
+msgid "List Pages"
+msgstr "Seiten anzeigen"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:4
+msgid "List Resources"
+msgstr "Ressourcen anzeigen"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:5
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:4
+#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:211
+msgid "New Page"
+msgstr "Neue Seite"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:6
+#: IDF/gettexttemplates/idf/wiki/listResources.html.php:3 IDF/Views/Wiki.php:256
+msgid "New Resource"
+msgstr "Neue Ressource"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:7
+msgid "Update This Page"
+msgstr "Diese Seite aktualisieren"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:8
+msgid "Update This Resource"
+msgstr "Diese Ressource aktualisieren"
+
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:3
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:3
+msgid "Preview of the Page"
+msgstr "Vorschau der Seite"
+
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:7
+msgid "The form contains some errors. Please correct them to create the page."
+msgstr ""
+"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die Seite "
+"anzulegen."
+
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:6
+msgid "Create Page"
+msgstr "Seite anlegen"
+
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:3
+msgid ""
+"\n"
+"Wiki resources are later addressed in wiki pages by their title, so ensure "
+"that you\n"
+"give your resource a unique and an easy to remember name.\n"
+msgstr ""
+"\n"
+"Wiki-Ressourcen werden später in Wiki-Seiten über ihren Titel referenziert,\n"
+"stelle also sicher, dass Du Deiner Ressource einen eindeutigen und einfach\n"
+"zu merkenden Namen gibst.\n"
+
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:8
+msgid "Create Resource"
+msgstr "Ressource anlegen"
+
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:3
+msgid ""
+"If you delete this documentation page, it will be removed from the database "
+"with all the associated revisions and you will not be able to "
+"recover it."
+msgstr ""
+"Wenn Du diese Dokumentations-Seite löscht, wird sie mit all ihren Versionen "
+"aus der Datenbank gelöscht und Du wirst nicht in der Lage sein, sie "
+"wiederherzustellen."
+
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:6
+msgid "Delete Page"
+msgstr "Lösche Seite"
+
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:14
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:15
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:15
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:17
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:18
+msgid "Old Revisions"
+msgstr "Alte Versionen"
+
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:3
+#, php-format
+msgid ""
+"You are looking at an old revision (%%oldrev.summary%%) of the page "
+"\n"
+"%%page.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+"Du schaust Dir gerade eine alte Version (%%oldrev.summary%%) der "
+"Seite \n"
+"%%page.title%% an. Diese Version wurde von\n"
+"%%submitter%% angelegt."
+
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:5
+msgid ""
+"If you delete this old revision, it will be removed from the database and "
+"you will not be able to recover it."
+msgstr ""
+"Wenn Du diese alte Version löscht, wird sie von der Datenbank entfernt und "
+"kann nicht wiederhergestellt werden."
+
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:8
+msgid "Delete Revision"
+msgstr "Version löschen"
+
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:3
+msgid ""
+"If you delete this documentation resource, it will be removed from the "
+"database with all the associated revisions \n"
+"and you will not be able to recover it. Any documentation "
+"pages that reference this resource,\n"
+"will no longer be able to render it, but won't be deleted."
+msgstr ""
+"Wenn Du diese Dokumentations-Ressource löscht, wird sie mit all ihren "
+"Versionen aus der Datenbank gelöscht und Du wirst nicht in der Lage "
+"sein, sie wiederherzustellen. Jede Dokumentations-Seite, die auf "
+"diese Ressource verweist, wird nicht mehr in der Lage sein, die Ressource "
+"anzuzeigen, wird aber selbst nicht gelöscht."
+
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:8
+msgid "Delete Resource"
+msgstr "Ressource löschen"
+
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:10
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:8
+msgid "File size"
+msgstr "Dateigröße"
+
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:9 IDF/Views/Wiki.php:101
+msgid "MIME type"
+msgstr "MIME-Typ"
+
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:3
+#, php-format
+msgid ""
+"You are looking at an old revision (%%oldrev.summary%%) of the "
+"resource \n"
+"%%resource.title%%. This revision was created by "
+"%%submitter%%."
+msgstr ""
+"Du schaust Dir gerade eine alte Version (%%oldrev.summary%%) der "
+"Ressource \n"
+"%%resource.title%% an. Diese Version wurde von\n"
+"%%submitter%% angelegt."
+
+#: IDF/gettexttemplates/idf/wiki/edit-info.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
Website addresses are automatically linked and you can link to another "
+"page in the documentation using double square brackets like that "
+"[[AnotherPage]].
\n"
+"
If you want to embed uploaded resources, use the "
+"[[!ResourceName]] syntax for that. This is described more in "
+"detail in the FAQ.
\n"
+"
To directly include a file content from the repository, embrace its path "
+"with triple square brackets: [[[my/file.txt]]].
Website-Adresses werden automatisch verlinkt und Du kannst außerdem zu "
+"anderen Dokumentations-Seiten durch die Benutzung von doppelten, eckigen "
+"Klammern verlinken, etwa so: [[AndereSeite]].
\n"
+"
Wenn Du hochgeladene Ressourcen einbetten möchtest, verwende die "
+"[[!RessourcenName]]-Syntax dafür. Dies wird in der FAQ näher beschrieben.
\n"
+"
Um direkt die Inhalte einer Datei aus dem Depot einzubinden, umklammere "
+"den Pfad zur Datei mit dreifachen, eckigen Klammern: "
+"[[[Pfad/zu/Datei.txt]]].
\n"
+
+#: IDF/gettexttemplates/idf/wiki/feedfragment-resource.xml.php:4
+msgid "Initial creation"
+msgstr "Initiale Erzeugung"
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:3
+#, php-format
+msgid "See the deprecated pages."
+msgstr "Zeige die veralteten Seiten."
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:5
+msgid "Number of pages:"
+msgstr "Anzahl der Seiten:"
+
+#: IDF/gettexttemplates/idf/wiki/listResources.html.php:4
+msgid "Number of resources:"
+msgstr "Anzahl der Ressourcen:"
+
+#: IDF/gettexttemplates/idf/wiki/search.html.php:4
+msgid "Pages found:"
+msgstr "Gefundene Seiten:"
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:3
+msgid "The form contains some errors. Please correct them to update the page."
+msgstr ""
+"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die Seite "
+"zu aktualisieren."
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:6
+msgid "Update Page"
+msgstr "Seite aktualisieren"
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:11
+msgid "Delete this page"
+msgstr "Lösche diese Seite"
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:4
+msgid "Update Resource"
+msgstr "Ressource aktualisieren"
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:9
+msgid "Delete this resource"
+msgstr "Lösche diese Ressource"
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:3
+msgid ""
+"Attention! This page is marked as deprecated, \n"
+"use it as reference only if you are sure you need these specific information."
+msgstr ""
+"Achtung! Diese Seite ist als veraltet markiert. Nutze sie "
+"nur als Referenz, wenn Du diese spezifischen Informationen benötigst."
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:5
+#, php-format
+msgid ""
+"You are looking at an old revision of the page \n"
+"%%page.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+"Du siehst gerade eine alte Version der Seite \n"
+"%%page.title%%. Diese Version wurde\n"
+"von %%submitter%% erzeugt."
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:10
+msgid "Table of Content"
+msgstr "Inhaltsverzeichnis"
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:13
+msgid "Delete this revision"
+msgstr "Lösche diese Version"
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:3
+#, php-format
+msgid ""
+"You are looking at an old revision of the resource \n"
+"%%resource.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+"Du siehst Dir gerade eine alte Version der Ressource \n"
+"%%resource.title%% an. Diese Version wurde\n"
+"von %%submitter%% erzeugt."
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:14
+msgid "Page Usage"
+msgstr "Seitennutzung"
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:15
+msgid "This resource is not used on any pages yet."
+msgstr "Diese Ressource wird noch auf keiner Seite benutzt."
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:3
+msgid "A new documentation page has been created:"
+msgstr "Eine neue Dokumentations-Seite wurde angelegt:"
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:14
+msgid "Documentation page:"
+msgstr "Dokumentations-Seite:"
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3
+msgid "The following documentation page has been updated:"
+msgstr "Die folgende Dokumentations-Seite wurde aktualisiert:"
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7
+msgid "Updated by:"
+msgstr "Aktualisiert von:"
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13
+msgid "New content:"
+msgstr "Neuer Inhalt:"
+
+#: IDF/Issue.php:76
+msgid "owner"
+msgstr "Besitzer"
+
+#: IDF/Issue.php:84 IDF/Wiki/Page.php:86
+msgid "interested users"
+msgstr "interessierte Benutzer"
+
+#: IDF/Issue.php:85
+msgid ""
+"Interested users will get an email notification when the issue is changed."
+msgstr ""
+"Interessierte Benutzer werden eine E-Mail erhalten, wenn das Ticket geändert "
+"wird."
+
+#: IDF/Issue.php:92 IDF/Project.php:94 IDF/Review.php:95 IDF/Upload.php:99
+#: IDF/Wiki/Page.php:94
+msgid "labels"
+msgstr "Labels"
+
+#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114
+#: IDF/Upload.php:118 IDF/Wiki/Page.php:106 IDF/Wiki/Resource.php:101
+msgid "modification date"
+msgstr "Änderungsdatum"
+
+#: IDF/Issue.php:212 IDF/IssueComment.php:143
+#, php-format
+msgid ""
+"Issue %3$d, %4$s"
+msgstr ""
+"Ticket %3$d, "
+"%4$s"
+
+#: IDF/Issue.php:214
+#, php-format
+msgid "Creation of issue %3$d, by %4$s"
+msgstr ""
+"Erstellung von Ticket %3$d, von %4$s"
+
+#: IDF/Issue.php:224
+#, php-format
+msgid "%1$s: Issue %2$d created - %3$s"
+msgstr "%1$s: Ticket %2$d angelegt - %3$s"
+
+#: IDF/Issue.php:307
+#, php-format
+msgid "Issue %1$s - %2$s (%3$s)"
+msgstr "Ticket %1$s - %2$s (%3$s)"
+
+#: IDF/Issue.php:311
+#, php-format
+msgid "Updated Issue %1$s - %2$s (%3$s)"
+msgstr "Ticket %1$s aktualisiert - %2$s (%3$s)"
+
+#: IDF/IssueComment.php:51 IDF/IssueRelation.php:47
+msgid "issue"
+msgstr "Ticket"
+
+#: IDF/IssueComment.php:58 IDF/IssueFile.php:49 IDF/Review/Comment.php:62
+#: IDF/Review/FileComment.php:49 IDF/Review/FileComment.php:69
+msgid "comment"
+msgstr "Kommentar"
+
+#: IDF/IssueComment.php:72 IDF/Review/Comment.php:75 IDF/Upload.php:63
+#: IDF/Wiki/PageRevision.php:85
+msgid "changes"
+msgstr "Änderungen"
+
+#: IDF/IssueComment.php:73
+msgid "Serialized array of the changes in the issue."
+msgstr "Serialisierte Liste von Änderungen im Ticket."
+
+#: IDF/IssueComment.php:180
+#, php-format
+msgid "Comment on issue %3$d, by %4$s"
+msgstr ""
+"Kommentar zum Ticket %3$d, von %4$s"
+
+#: IDF/IssueComment.php:191
+#, php-format
+msgid "%1$s: Comment on issue %2$d - %3$s"
+msgstr "%1$s: Kommentar zum Ticket %2$d - %3$s"
+
+#: IDF/IssueFile.php:64
+msgid "file name"
+msgstr "Dateiname"
+
+#: IDF/IssueFile.php:70
+msgid "the file"
+msgstr "die Datei"
+
+#: IDF/IssueFile.php:76
+msgid "file size"
+msgstr "Dateigröße"
+
+#: IDF/IssueFile.php:84
+msgid "type"
+msgstr "Typ"
+
+#: IDF/IssueFile.php:86
+msgid "Image"
+msgstr "Bild"
+
+#: IDF/IssueFile.php:87
+msgid "Other"
+msgstr "Andere"
+
+#: IDF/IssueRelation.php:54
+msgid "verb"
+msgstr "Verb"
+
+#: IDF/IssueRelation.php:61
+msgid "other issue"
+msgstr "anderes Ticket"
+
+#: IDF/Key.php:55
+msgid "public key"
+msgstr "öffentlicher Schlüssel"
+
+#: IDF/Key.php:90
+msgid "Invalid or unknown key data detected."
+msgstr "Ungültige oder unbekannte Schlüsseldaten bemerkt."
+
+#: IDF/Plugin/SyncMercurial.php:78 IDF/Plugin/SyncSvn.php:81
+#, php-format
+msgid "The repository %s already exists."
+msgstr "Das Depot %s existiert bereits."
+
+#: IDF/Plugin/SyncMercurial.php:142
+#, php-format
+msgid "%s does not exist or is not writable."
+msgstr "%s existiert nicht oder ist nicht schreibbar."
+
+#: IDF/Plugin/SyncMonotone.php:107 IDF/Plugin/SyncMonotone.php:492
+msgid "\"mtn_repositories\" must be defined in your configuration file"
+msgstr "\"mtn_repositories\" muss in Deiner Konfigurationsdatei definiert sein"
+
+#: IDF/Plugin/SyncMonotone.php:114 IDF/Plugin/SyncMonotone.php:482
+msgid "\"mtn_usher_conf\" does not exist or is not writable"
+msgstr "\"mtn_usher_conf\" existiert nicht oder ist nicht schreibbar"
+
+#: IDF/Plugin/SyncMonotone.php:121
+#, php-format
+msgid "Could not find mtn-post-push script \"%s\""
+msgstr "Konnte das mtn-post-push-Skript \"%s\" nicht finden"
+
+#: IDF/Plugin/SyncMonotone.php:155
+#, php-format
+msgid "The configuration file \"%s\" is missing"
+msgstr "Die Konfigurationsdatei \"%s\" fehlt"
+
+#: IDF/Plugin/SyncMonotone.php:164
+#, php-format
+msgid "The project path \"%s\" already exists"
+msgstr "Der Projektpfad \"%s\" existiert bereits"
+
+#: IDF/Plugin/SyncMonotone.php:170
+#, php-format
+msgid "The project path \"%s\" could not be created"
+msgstr "Der Projektpfad \"%s\" konnte nicht angelegt werden"
+
+#: IDF/Plugin/SyncMonotone.php:208
+#, php-format
+msgid "The key directory \"%s\" could not be created"
+msgstr "Das Schlüsselverzeichnis \"%s\" konnte nicht erstellt werden"
+
+#: IDF/Plugin/SyncMonotone.php:227
+#, php-format
+msgid "Could not parse key information: %s"
+msgstr "Konnte die Schlüsselinformationen nicht analysieren: %s"
+
+#: IDF/Plugin/SyncMonotone.php:265
+#, php-format
+msgid "Could not create configuration directory \"%s\""
+msgstr "Konnte Konfigurationsverzeichnis \"%s\" nicht erstellen"
+
+#: IDF/Plugin/SyncMonotone.php:275
+#, php-format
+msgid "Could not create symlink for configuration file \"%s\""
+msgstr ""
+"Konnte den symbolischen Link für die Konfigurationsdatei \"%s\" nicht anlegen"
+
+#: IDF/Plugin/SyncMonotone.php:293
+#, php-format
+msgid "Could not write configuration file \"%s\""
+msgstr "Konnte die Konfigurationsdatei \"%s\" nicht schreiben"
+
+#: IDF/Plugin/SyncMonotone.php:309 IDF/Plugin/SyncMonotone.php:525
+#, php-format
+msgid "Could not parse usher configuration in \"%1$s\": %2$s"
+msgstr "Konnte die usher-Konfiguration in \"%1$s\" nicht analysieren: %2$s"
+
+#: IDF/Plugin/SyncMonotone.php:320
+#, php-format
+msgid "usher configuration already contains a server entry named \"%s\""
+msgstr ""
+"Die usher-Konfiguration enthält bereits einen Servereintrag mit dem Namen "
+"\"%s\""
+
+#: IDF/Plugin/SyncMonotone.php:345 IDF/Plugin/SyncMonotone.php:546
+#, php-format
+msgid "Could not write usher configuration file \"%s\""
+msgstr "Konnte die usher-Konfigurationsdatei \"%s\" nicht schreiben"
+
+#: IDF/Plugin/SyncMonotone.php:395
+#, php-format
+msgid "Could not write write-permissions file \"%s\""
+msgstr "Konnte die write-permissions-Datei \"%s\" nicht schreiben"
+
+#: IDF/Plugin/SyncMonotone.php:420
+#, php-format
+msgid "Could not write read-permissions file \"%s\""
+msgstr "Konnte die read-permissions-Datei \"%s\" nicht schreiben"
+
+#: IDF/Plugin/SyncMonotone.php:438
+#, php-format
+msgid "Could not remove symlink \"%s\""
+msgstr "Konnte symbolischen Link \"%s\" nicht entfernen"
+
+#: IDF/Plugin/SyncMonotone.php:446
+#, php-format
+msgid "Could not create symlink \"%s\""
+msgstr "Konnte symbolischen Link \"%s\" nicht erstellen"
+
+#: IDF/Plugin/SyncMonotone.php:500
+#, php-format
+msgid "One or more paths underneath %s could not be deleted"
+msgstr "Ein oder mehrere Pfade unterhalb %s konnten nicht gelöscht werden"
+
+#: IDF/Plugin/SyncMonotone.php:512
+#, php-format
+msgid "Could not delete client private key \"%s\""
+msgstr "Konnte privaten Schlüssel \"%s\" des Clients nicht löschen"
+
+#: IDF/Plugin/SyncMonotone.php:599 IDF/Plugin/SyncMonotone.php:718
+#, php-format
+msgid "Could not parse read-permissions for project \"%1$s\": %2$s"
+msgstr ""
+"Konnte read-permissions-Datei für Projekt \"%1$s\" nicht analysieren: %2$s"
+
+#: IDF/Plugin/SyncMonotone.php:643 IDF/Plugin/SyncMonotone.php:741
+#, php-format
+msgid "Could not write read-permissions for project \"%s\""
+msgstr "Konnte read-permissions-Datei für Projekt \"%s\" nicht schreiben."
+
+#: IDF/Plugin/SyncMonotone.php:657 IDF/Plugin/SyncMonotone.php:760
+#, php-format
+msgid "Could not write write-permissions file for project \"%s\""
+msgstr "Konnte write-permissions-Datei für Projekt \"%s\" nicht schreiben."
+
+#: IDF/Plugin/SyncMonotone.php:813
+msgid "\"mtn_repositories\" must be defined in your configuration file."
+msgstr ""
+"Die Variable \"mtn_repositories\" muss in der Konfigurationsdatei definiert "
+"sein."
+
+#: IDF/Plugin/SyncMonotone.php:820
+#, php-format
+msgid "The project path %s does not exists."
+msgstr "Der Projektpfad %s existiert nicht."
+
+#: IDF/Plugin/SyncMonotone.php:838
+#, php-format
+msgid "The command \"%s\" could not be executed."
+msgstr "Das Kommando \"%s\" konnte nicht ausgeführt werden."
+
+#: IDF/Project.php:62 IDF/Tag.php:66
+msgid "name"
+msgstr "Name"
+
+#: IDF/Project.php:69
+msgid "short name"
+msgstr "Kurzname"
+
+#: IDF/Project.php:70
+msgid ""
+"Used in the URL to access the project, must be short with only letters and "
+"numbers."
+msgstr ""
+"Wird in der URL benutzt, um auf das Projekt zuzugreifen. Muss kurz sein und "
+"darf nur Buchstaben und Zahlen enthalten."
+
+#: IDF/Project.php:78
+msgid "short description"
+msgstr "Kurzbeschreibung"
+
+#: IDF/Project.php:86 IDF/Review/Patch.php:74
+msgid "description"
+msgstr "Beschreibung"
+
+#: IDF/Project.php:87
+msgid "The description can be extended using the Markdown syntax."
+msgstr ""
+"Die Beschreibung kann durch die Benutzung der markdown-Syntax erweitert "
+"werden."
+
+#: IDF/Project.php:100
+msgid "private"
+msgstr "privat"
+
+#: IDF/Project.php:108
+msgid "current project activity"
+msgstr "Derzeitige Projektaktivität"
+
+#: IDF/Project.php:159
+#, php-format
+msgid "Project \"%s\" not found."
+msgstr "Projekt \"%s\" nicht gefunden."
+
+#: IDF/ProjectActivity.php:56
+msgid "date"
+msgstr "Datum"
+
+#: IDF/Review/Comment.php:55 IDF/Review/Patch.php:80
+msgid "patch"
+msgstr "Patch"
+
+#: IDF/Review/Comment.php:83
+msgid "vote"
+msgstr "abstimmen"
+
+#: IDF/Review/Comment.php:139 IDF/Review/Patch.php:151
+#, php-format
+msgid ""
+"Review %3$d, %4$s"
+msgstr ""
+"Code-Besprechung %3$d, %4$s"
+
+#: IDF/Review/Comment.php:141
+#, php-format
+msgid "Update of review %3$d, by %4$s"
+msgstr ""
+"Aktualisierung von Code-Besprechung "
+"%3$d, von %4$s"
+
+#: IDF/Review/Comment.php:151
+#, php-format
+msgid "%1$s: Updated review %2$d - %3$s"
+msgstr "%1$s: Aktualisierte Code-Besprechung %2$d - %3$s"
+
+#: IDF/Review/Comment.php:222
+#, php-format
+msgid "Updated Code Review %1$s - %2$s (%3$s)"
+msgstr "Aktualisierte Code-Besprechung %1$s - %2$s (%3$s)"
+
+#: IDF/Review/Patch.php:52
+msgid "review"
+msgstr "Code-Besprechung"
+
+#: IDF/Review/Patch.php:67
+msgid "commit"
+msgstr "Revision"
+
+#: IDF/Review/Patch.php:153
+#, php-format
+msgid "Creation of review %3$d, by %4$s"
+msgstr ""
+"Erzeugung von Code-Besprechung %3$d, von "
+"%4$s"
+
+#: IDF/Review/Patch.php:163
+#, php-format
+msgid "%1$s: Creation of Review %2$d - %3$s"
+msgstr "%1$s: Erstellung von Code-Besprechung %2$d -%3$s"
+
+#: IDF/Review/Patch.php:208
+#, php-format
+msgid "New Code Review %1$s - %2$s (%3$s)"
+msgstr "Neue Code-Besprechung %1$s - %2$s (%3$s)"
+
+#: IDF/Scm/Git.php:309 IDF/Scm/Mercurial.php:199
+#, php-format
+msgid "Folder %1$s not found in commit %2$s."
+msgstr "Verzeichnis %1$s in Revision %2$s nicht gefunden."
+
+#: IDF/Scm/Git.php:433 IDF/Scm/Mercurial.php:216
+#, php-format
+msgid "Not a valid tree: %s."
+msgstr "Kein gültiger Quellcode-Baum: %s."
+
+#: IDF/Scm/Monotone/Stdio.php:81
+msgid "Monotone client key name or hash not in project conf."
+msgstr ""
+"Kein monotone-Client-Schlüsselname oder -prüfsumme in Projektkonfiguration "
+"gefunden."
+
+#: IDF/Scm/Monotone/Stdio.php:89
+#, php-format
+msgid "The key directory %s could not be created."
+msgstr "Das Schlüsselverzeichnis %s konnte nicht erstellt werden."
+
+#: IDF/Scm/Monotone/Stdio.php:100
+#, php-format
+msgid "Could not write client key \"%s\""
+msgstr "Konnte Client-Schlüssel \"%s\" nicht schreiben"
+
+#: IDF/Search/Occ.php:33
+msgid "occurrence"
+msgstr "Vorkommen"
+
+#: IDF/Search/Occ.php:49
+msgid "word"
+msgstr "Wort"
+
+#: IDF/Search/Occ.php:75
+msgid "occurrences"
+msgstr "Vorkommen"
+
+#: IDF/Search/Occ.php:81
+msgid "ponderated occurrence"
+msgstr "gewichtete Vorkommen"
+
+#: IDF/Tag.php:59
+msgid "tag class"
+msgstr "Tag-Klasse"
+
+#: IDF/Tag.php:60
+msgid "The class of the tag."
+msgstr "Die Klasse des Tags."
+
+#: IDF/Tag.php:73
+msgid "lcname"
+msgstr "Kleingeschriebener Name"
+
+#: IDF/Tag.php:74
+msgid "Lower case version of the name for fast searching."
+msgstr "Kleingeschriebene Version des Namens zur schnelleren Suche."
+
+#: IDF/Template/Markdown.php:84
+msgid "Create this documentation page"
+msgstr "Erstelle diese Dokumentations-Seite"
+
+#: IDF/Template/Markdown.php:97
+msgid "You are not allowed to access the wiki."
+msgstr "Dir ist es nicht erlaubt, auf das Wiki zuzugreifen."
+
+#: IDF/Template/Markdown.php:106
+msgid "The wiki resource has not been found."
+msgstr "Die Wiki-Ressource wurde nicht gefunden."
+
+#: IDF/Template/Markdown.php:113
+msgid "The wiki resource has not been found. Create it!"
+msgstr "Die Wiki-Ressource wurde nicht gefunden. Lege sie an!"
+
+#: IDF/Template/Markdown.php:146
+msgid "This revision of the resource is no longer available."
+msgstr "Diese Version der Ressource ist nicht mehr verfügbar."
+
+#: IDF/Template/ShowUser.php:51
+msgid "Anonymous"
+msgstr "Anonym"
+
+#: IDF/Template/ShowUser.php:54
+msgid "Me"
+msgstr "mir"
+
+#: IDF/Timeline/Paginator.php:49
+msgid "Today"
+msgstr "Heute"
+
+#: IDF/Upload.php:70
+msgid "file"
+msgstr "Datei"
+
+#: IDF/Upload.php:71
+msgid "The path is relative to the upload path."
+msgstr "Der Pfad ist relativ zum Upload-Pfad."
+
+#: IDF/Upload.php:78 IDF/Wiki/ResourceRevision.php:71
+msgid "file size in bytes"
+msgstr "Dateigröße in Bytes"
+
+#: IDF/Upload.php:84
+msgid "MD5"
+msgstr "MD5"
+
+#: IDF/Upload.php:106
+msgid "number of downloads"
+msgstr "Anzahl der Downloads"
+
+#: IDF/Upload.php:201
+#, php-format
+msgid "Download %2$d, %3$s"
+msgstr "Download %2$d, %3$s"
+
+#: IDF/Upload.php:204
+#, php-format
+msgid "Addition of download %2$d, by %3$s"
+msgstr "Hinzufügen von Download %2$d, von %3$s"
+
+#: IDF/Upload.php:214
+#, php-format
+msgid "%1$s: Download %2$d added - %3$s"
+msgstr "%1$s: Download %2$d hinzugefügt - %3$s"
+
+#: IDF/Upload.php:301
+#, php-format
+msgid "New download - %1$s (%2$s)"
+msgstr "Neuer Download - %1$s (%2$s)"
+
+#: IDF/Upload.php:305
+#, php-format
+msgid "Updated download - %1$s (%2$s)"
+msgstr "Download aktualisiert - %1$s (%2$s)"
+
+#: IDF/Views/Admin.php:47
+msgid "The forge configuration has been saved."
+msgstr "Die Forge-Einstellungen wurden gespeichert."
+
+#: IDF/Views/Admin.php:80
+msgid "This table shows the projects in the forge."
+msgstr "Diese Tabelle zeigt die Projekte dieser Forge."
+
+#: IDF/Views/Admin.php:85
+msgid "Short Name"
+msgstr "Kurzname"
+
+#: IDF/Views/Admin.php:87
+msgid "Repository Size"
+msgstr "Größe des Depots"
+
+#: IDF/Views/Admin.php:93
+msgid "No projects were found."
+msgstr "Es wurden keine Projekte gefunden."
+
+#: IDF/Views/Admin.php:116
+msgid "The label configuration has been saved."
+msgstr "Die Marken-Einstellungen wurden gespeichert."
+
+#: IDF/Views/Admin.php:147 IDF/Views/Admin.php:314 IDF/Views/Wiki.php:484
+#: IDF/Views/Wiki.php:536
+#, php-format
+msgid "Update %s"
+msgstr "Aktualisiere %s"
+
+#: IDF/Views/Admin.php:155 IDF/Views/Project.php:304
+msgid "The project has been updated."
+msgstr "Das Projekt wurde aktualisiert."
+
+#: IDF/Views/Admin.php:192
+msgid "The project has been created."
+msgstr "Das Projekt wurde angelegt."
+
+#: IDF/Views/Admin.php:223
+#, php-format
+msgid "Delete %s Project"
+msgstr "Lösche Projekt %s"
+
+#: IDF/Views/Admin.php:230
+msgid "The project has been deleted."
+msgstr "Das Projekt wurde gelöscht."
+
+#: IDF/Views/Admin.php:260
+msgid "Not Validated User List"
+msgstr "Liste nicht validierter Benutzer"
+
+#: IDF/Views/Admin.php:268
+msgid "This table shows the users in the forge."
+msgstr "Diese Tabelle zeigt die Benutzer dieser Forge."
+
+#: IDF/Views/Admin.php:272
+msgid "login"
+msgstr "Anmeldename"
+
+#: IDF/Views/Admin.php:275
+msgid "Admin"
+msgstr "Administrator"
+
+#: IDF/Views/Admin.php:277
+msgid "Last Login"
+msgstr "Letztes Login"
+
+#: IDF/Views/Admin.php:284
+msgid "No users were found."
+msgstr "Es wurden keine Benutzer gefunden."
+
+#: IDF/Views/Admin.php:321
+msgid "You do not have the rights to update this user."
+msgstr "Du hast nicht die Berechtigung, um diesen Benutzer zu aktualisieren."
+
+#: IDF/Views/Admin.php:339
+msgid "The user has been updated."
+msgstr "Der Benutzer wurde aktualisiert."
+
+#: IDF/Views/Admin.php:372
+#, php-format
+msgid "The user %s has been created."
+msgstr "Der Benutzer %s wurde erstellt."
+
+#: IDF/Views/Admin.php:379
+msgid "Add User"
+msgstr "Benutzer hinzufügen"
+
+#: IDF/Views/Admin.php:395
+msgid "Usher management"
+msgstr "Usher-Verwaltung"
+
+#: IDF/Views/Admin.php:432
+msgid "Usher configuration has been reloaded"
+msgstr "Usher-Konfiguration neu geladen"
+
+#: IDF/Views/Admin.php:436
+msgid "Usher has been shut down"
+msgstr "Usher wurde heruntergefahren."
+
+#: IDF/Views/Admin.php:441
+msgid "Usher has been started up"
+msgstr "Usher wurde hochgefahren."
+
+#: IDF/Views/Admin.php:479
+#, php-format
+msgid "The server \"%s\" has been started"
+msgstr "Der Server \"%s\" wurde gestartet."
+
+#: IDF/Views/Admin.php:483
+#, php-format
+msgid "The server \"%s\" has been stopped"
+msgstr "Der Server \"%s\" wurde gestoppt."
+
+#: IDF/Views/Admin.php:488
+#, php-format
+msgid "The server \"%s\" has been killed"
+msgstr "Der Server \"%s\" wurde getötet."
+
+#: IDF/Views/Admin.php:508
+#, php-format
+msgid "Open connections for \"%s\""
+msgstr "Offene Verbindungen für \"%s\""
+
+#: IDF/Views/Admin.php:513
+#, php-format
+msgid "no connections for server \"%s\""
+msgstr "keine Verbindungen für Server \"%s\""
+
+#: IDF/Views/Admin.php:534
+msgid "Yes"
+msgstr "Ja"
+
+#: IDF/Views/Admin.php:534
+msgid "No"
+msgstr "Nein"
+
+#: IDF/Views/Download.php:45
+#, php-format
+msgid "%s Downloads"
+msgstr "%s Downloads"
+
+#: IDF/Views/Download.php:51
+msgid "This table shows the files to download."
+msgstr "Diese Tabelle zeigt die herunterladbaren Dateien."
+
+#: IDF/Views/Download.php:67 IDF/Views/Download.php:349
+msgid "Uploaded"
+msgstr "Hochgeladen"
+
+#: IDF/Views/Download.php:71 IDF/Views/Download.php:353
+msgid "No downloads were found."
+msgstr "Keine Downloads gefunden."
+
+#: IDF/Views/Download.php:94
+#, php-format
+msgid "Download %s"
+msgstr "Lade %s herunter"
+
+#: IDF/Views/Download.php:111
+#, php-format
+msgid "The file %2$s has been updated."
+msgstr "Die Datei %2$s wurde aktualisiert."
+
+#: IDF/Views/Download.php:144
+#, php-format
+msgid "Delete Download %s"
+msgstr "Lösche Download %s"
+
+#: IDF/Views/Download.php:177
+msgid "The file has been deleted."
+msgstr "Die Datei wurde gelöscht."
+
+#: IDF/Views/Download.php:244
+#, php-format
+msgid "The file has been uploaded."
+msgstr "Die Datei wurde hochgeladen."
+
+#: IDF/Views/Download.php:271
+msgid "New Downloads from Archive"
+msgstr "Neue Downloads aus einem Archiv"
+
+#: IDF/Views/Download.php:278
+msgid "The archive has been uploaded and processed."
+msgstr "Das Archiv wurde hochgeladen und verarbeitet."
+
+#: IDF/Views/Download.php:331
+#, php-format
+msgid "%1$s Downloads with Label %2$s"
+msgstr "%1$s Downloads mit der Marke %2$s"
+
+#: IDF/Views/Download.php:341
+#, php-format
+msgid "This table shows the downloads with label %s."
+msgstr "Diese Tabelle zeigt die Downloads mit der Marke %s."
+
+#: IDF/Views/Issue.php:41
+#, php-format
+msgid "%s Open Issues"
+msgstr "%s Offene Tickets"
+
+#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:382 IDF/Views/User.php:75
+msgid "This table shows the open issues."
+msgstr "Diese Tabelle zeigt die offenen Tickets."
+
+#: IDF/Views/Issue.php:61 IDF/Views/Issue.php:220 IDF/Views/Issue.php:301
+#: IDF/Views/Issue.php:390 IDF/Views/Issue.php:542 IDF/Views/Issue.php:765
+#: IDF/Views/Issue.php:824 IDF/Views/Review.php:57 IDF/Views/User.php:81
+msgid "Id"
+msgstr "Id"
+
+#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:223 IDF/Views/Issue.php:305
+#: IDF/Views/Issue.php:393 IDF/Views/Issue.php:545 IDF/Views/Issue.php:768
+#: IDF/Views/Issue.php:827 IDF/Views/Review.php:60 IDF/Views/User.php:85
+msgid "Last Updated"
+msgstr "Letzte Aktualisierung"
+
+#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:227 IDF/Views/Issue.php:309
+#: IDF/Views/Issue.php:397 IDF/Views/Issue.php:549 IDF/Views/Issue.php:772
+#: IDF/Views/Issue.php:831
+msgid "No issues were found."
+msgstr "Es wurden keine Tickets gefunden."
+
+#: IDF/Views/Issue.php:113
+msgid "Not assigned"
+msgstr "Nicht zugeordnet"
+
+#: IDF/Views/Issue.php:149
+#, php-format
+msgid "Summary of tracked issues in %s."
+msgstr "Zusammenfassung verfolgter Tickets in %s"
+
+#: IDF/Views/Issue.php:194
+#, php-format
+msgid "Watch List: Closed Issues for %s"
+msgstr "Beobachtungsliste: Geschlossene Tickets für %s"
+
+#: IDF/Views/Issue.php:195
+#, php-format
+msgid "This table shows the closed issues in your watch list for %s project."
+msgstr ""
+"Diese Tabelle zeigt die geschlossenen Tickets auf Deiner Beobachtungsliste "
+"für das Projekt %s."
+
+#: IDF/Views/Issue.php:200
+#, php-format
+msgid "Watch List: Open Issues for %s"
+msgstr "Beobachtungsliste: Offene Tickets für %s"
+
+#: IDF/Views/Issue.php:201
+#, php-format
+msgid "This table shows the open issues in your watch list for %s project."
+msgstr ""
+"Diese Tabelle zeigt die offenen Tickets auf Deiner Beobachtungsliste für das "
+"Projekt %s."
+
+#: IDF/Views/Issue.php:277
+msgid "Watch List: Closed Issues"
+msgstr "Beobachtungsliste: Geschlossene Tickets"
+
+#: IDF/Views/Issue.php:278
+msgid "This table shows the closed issues in your watch list."
+msgstr ""
+"Diese Tabelle zeigt die geschlossenen Tickets auf Deiner Beobachtungsliste."
+
+#: IDF/Views/Issue.php:283
+msgid "Watch List: Open Issues"
+msgstr "Beobachtungsliste: Offene Tickets"
+
+#: IDF/Views/Issue.php:284
+msgid "This table shows the open issues in your watch list."
+msgstr "Diese Tabelle zeigt die offenen Tickets auf Deiner Beobachtungsliste."
+
+#: IDF/Views/Issue.php:303 IDF/Views/User.php:82
+msgid "Project"
+msgstr "Projekt"
+
+#: IDF/Views/Issue.php:344
+#, php-format
+msgid "%1$s %2$s Submitted %3$s Issues"
+msgstr "%1$s %2$s eingesandte Tickets für %3$s"
+
+#: IDF/Views/Issue.php:348
+#, php-format
+msgid "%1$s %2$s Closed Submitted %3$s Issues"
+msgstr "%1$s %2$s eingesandte, geschlossene Tickets für %3$s"
+
+#: IDF/Views/Issue.php:352
+#, php-format
+msgid "%1$s %2$s Closed Working %3$s Issues"
+msgstr "%1$s %2$s bearbeitete, geschlossene Tickets für %3$s"
+
+#: IDF/Views/Issue.php:356
+#, php-format
+msgid "%1$s %2$s Working %3$s Issues"
+msgstr "%1$s %2$s bearbeitete Tickets für %3$s"
+
+#: IDF/Views/Issue.php:417
+msgid "Submit a new issue"
+msgstr "Erstelle ein neues Ticket"
+
+#: IDF/Views/Issue.php:433
+#, php-format
+msgid "Issue %2$d has been created."
+msgstr "Ticket %2$d wurde erstellt."
+
+#: IDF/Views/Issue.php:490
+#, php-format
+msgid "Search issues - %s"
+msgstr "Suche Tickets - %s"
+
+#: IDF/Views/Issue.php:492
+#, php-format
+msgid "Search closed issues - %s"
+msgstr "Suche geschlossene Tickets - %s"
+
+#: IDF/Views/Issue.php:539
+msgid "This table shows the found issues."
+msgstr "Diese Tabelle zeigt die gefundenen Tickets."
+
+#: IDF/Views/Issue.php:604
+#, php-format
+msgid "Issue %2$d: %3$s"
+msgstr "Ticket %2$d: %3$s"
+
+#: IDF/Views/Issue.php:628
+#, php-format
+msgid "Issue %2$d has been updated."
+msgstr "Ticket %2$d wurde aktualisiert."
+
+#: IDF/Views/Issue.php:718
+#, php-format
+msgid "View %s"
+msgstr "Zeige %s"
+
+#: IDF/Views/Issue.php:745
+#, php-format
+msgid "%s Closed Issues"
+msgstr "%s Geschlossene Tickets"
+
+#: IDF/Views/Issue.php:755
+msgid "This table shows the closed issues."
+msgstr "Diese Tabelle zeigt die geschlossenen Tickets."
+
+#: IDF/Views/Issue.php:798
+#, php-format
+msgid "%1$s Issues with Label %2$s"
+msgstr "%1$s Tickets mit Markierung %2$s"
+
+#: IDF/Views/Issue.php:801
+#, php-format
+msgid "%1$s Closed Issues with Label %2$s"
+msgstr "%1$s geschlossene Tickets mit Markierung %2$s"
+
+#: IDF/Views/Issue.php:814
+#, php-format
+msgid "This table shows the issues with label %s."
+msgstr "Diese Tabelle zeigt die Tickets mit der Markierung %s."
+
+#: IDF/Views/Issue.php:937
+msgid "The issue has been removed from your watch list."
+msgstr "Das Ticket wurde von Deiner Beobachtungsliste entfernt."
+
+#: IDF/Views/Issue.php:940
+msgid "The issue has been added to your watch list."
+msgstr "Das Ticket wurde zu Deiner Beobachtungsliste hinzugefügt."
+
+#: IDF/Views/Issue.php:1037
+msgid "On your watch list."
+msgstr "Auf Deiner Beobachtungsliste."
+
+#: IDF/Views/Project.php:95
+msgid "Issues and Comments"
+msgstr "Tickets u. Kommentare"
+
+#: IDF/Views/Project.php:99
+msgid "Documents"
+msgstr "Dokumentation"
+
+#: IDF/Views/Project.php:101
+msgid "Reviews and Patches"
+msgstr "Besprechungen u. Patches"
+
+#: IDF/Views/Project.php:180
+msgid "This table shows the project updates."
+msgstr "Diese Tabelle zeigt Projekt-Aktualisierungen."
+
+#: IDF/Views/Project.php:191
+msgid "Change"
+msgstr "Änderung"
+
+#: IDF/Views/Project.php:195
+msgid "No changes were found."
+msgstr "Es wurden keine Änderungen gefunden."
+
+#: IDF/Views/Project.php:296
+#, php-format
+msgid "%s Project Summary"
+msgstr "%s Projektzusammenfassung"
+
+#: IDF/Views/Project.php:335
+#, php-format
+msgid "%s Issue Tracking Configuration"
+msgstr "%s Ticket-Einstellungen"
+
+#: IDF/Views/Project.php:344
+msgid "The issue tracking configuration has been saved."
+msgstr "Die Ticket-Einstellungen wurden gespeichert."
+
+#: IDF/Views/Project.php:381
+#, php-format
+msgid "%s Downloads Configuration"
+msgstr "%s Download-Einstellungen"
+
+#: IDF/Views/Project.php:393
+msgid "The downloads configuration has been saved."
+msgstr "Die Download-Einstellungen wurden gespeichert."
+
+#: IDF/Views/Project.php:428
+#, php-format
+msgid "%s Documentation Configuration"
+msgstr "%s Dokumentations-Einstellungen"
+
+#: IDF/Views/Project.php:437
+msgid "The documentation configuration has been saved."
+msgstr "Die Dokumentations-Einstellungen wurden gespeichert."
+
+#: IDF/Views/Project.php:471
+#, php-format
+msgid "%s Project Members"
+msgstr "%s Projektmitglieder"
+
+#: IDF/Views/Project.php:480
+msgid "The project membership has been saved."
+msgstr "Die Projektmitgliedschaft wurde gespeichert."
+
+#: IDF/Views/Project.php:503
+#, php-format
+msgid "%s Tabs Access Rights"
+msgstr "%s Zugriffsrechte auf Registerkarten"
+
+#: IDF/Views/Project.php:517
+msgid ""
+"The project tabs access rights and notification settings have been saved."
+msgstr ""
+"Die Zugriffsrechte für die Projekt-Registerkarten und die "
+"Benachrichtigungseinstellungen wurden gespeichert."
+
+#: IDF/Views/Project.php:566
+#, php-format
+msgid "%s Source"
+msgstr "%s Quellcode"
+
+#: IDF/Views/Project.php:580
+msgid "The project source configuration has been saved."
+msgstr "Die Konfiguration des Projekt-Quellcodes wurde gespeichert."
+
+#: IDF/Views/Review.php:41
+#, php-format
+msgid "%s Code Reviews"
+msgstr "%s Code-Besprechungen"
+
+#: IDF/Views/Review.php:48
+msgid "This table shows the latest reviews."
+msgstr "Diese Tabelle zeigt die letzten Besprechungen."
+
+#: IDF/Views/Review.php:64
+msgid "No reviews were found."
+msgstr "Es wurden keine Besprechungen gefunden."
+
+#: IDF/Views/Review.php:94
+#, php-format
+msgid "The code review %2$d has been created."
+msgstr "Die Code-Besprechung %2$d wurde erstellt."
+
+#: IDF/Views/Review.php:140
+#, php-format
+msgid "Review %2$d: %3$s"
+msgstr "Besprechung %2$d: %3$s"
+
+#: IDF/Views/Review.php:160
+#, php-format
+msgid "Your code review %2$d has been published."
+msgstr "Deine Code-Besprechung %2$d wurde veröffentlicht."
+
+#: IDF/Views/Source.php:40
+#, php-format
+msgid "%s Source Help"
+msgstr "%s Quellcode-Hilfe"
+
+#: IDF/Views/Source.php:58
+#, php-format
+msgid "%s Invalid Revision"
+msgstr "%s Ungültige Revision"
+
+#: IDF/Views/Source.php:82
+#, php-format
+msgid "%s Ambiguous Revision"
+msgstr "%s Mehrdeutige Revision"
+
+#: IDF/Views/Source.php:107
+#, php-format
+msgid "%1$s %2$s Change Log"
+msgstr "%1$s %2$s Logmeldung"
+
+#: IDF/Views/Source.php:153 IDF/Views/Source.php:234 IDF/Views/Source.php:362
+#, php-format
+msgid "%1$s %2$s Source Tree"
+msgstr "%1$s %2$s Quellcode-Baum"
+
+#: IDF/Views/Source.php:310
+#, php-format
+msgid "%s Commit Details"
+msgstr "%s Revisions-Details"
+
+#: IDF/Views/Source.php:311
+#, php-format
+msgid "%1$s Commit Details - %2$s"
+msgstr "%1$s Revisions-Details - %2$s"
+
+#: IDF/Views/User.php:59
+msgid "Your Dashboard - Working Issues"
+msgstr "Dein Dashboard - Bearbeitete Tickets"
+
+#: IDF/Views/User.php:62
+msgid "Your Dashboard - Submitted Issues"
+msgstr "Dein Dashboard - Eingesandte Tickets"
+
+#: IDF/Views/User.php:89
+msgid "No issues are assigned to you, yeah!"
+msgstr "Es liegen keine Tickets für Dich vor. Super!"
+
+#: IDF/Views/User.php:89
+msgid "All the issues you submitted are fixed, yeah!"
+msgstr "Alle Tickets, die Du eingesandt hast, sind gelöst! Super!"
+
+#: IDF/Views/User.php:121
+msgid "Your personal information has been updated."
+msgstr "Deine persönlichen Daten wurden aktualisiert."
+
+#: IDF/Views/User.php:133
+msgid "Your Account"
+msgstr "Dein Konto"
+
+#: IDF/Views/User.php:157
+msgid "The public key has been deleted."
+msgstr "Der öffentliche Schlüssel wurde gelöscht."
+
+#: IDF/Views/User.php:177
+msgid "The address has been deleted."
+msgstr "Die Adresse wurde gelöscht."
+
+#: IDF/Views/User.php:200
+msgid "Confirm The Email Change"
+msgstr "Bestätige die Änderung der E-Mail-Adresse"
+
+#: IDF/Views/User.php:232
+#, php-format
+msgid "Your new email address \"%s\" has been validated. Thank you!"
+msgstr "Deine neue E-Mail-Adresse \"%s\" wurde validiert. Danke!"
+
+#: IDF/Views/Wiki.php:41
+#, php-format
+msgid "%s Documentation"
+msgstr "%s Dokumentation"
+
+#: IDF/Views/Wiki.php:48
+msgid "This table shows the documentation pages."
+msgstr "Diese Tabelle zeigt Dokumentations-Seiten."
+
+#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:144 IDF/Views/Wiki.php:185
+msgid "Page Title"
+msgstr "Seitentitel"
+
+#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:103 IDF/Views/Wiki.php:146
+#: IDF/Views/Wiki.php:187
+msgid "Updated"
+msgstr "Aktualisiert"
+
+#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:191
+msgid "No documentation pages were found."
+msgstr "Keine Dokumentations-Seiten gefunden."
+
+#: IDF/Views/Wiki.php:88
+#, php-format
+msgid "%s Documentation Resources"
+msgstr "%s Dokumentations-Ressourcen"
+
+#: IDF/Views/Wiki.php:94
+msgid "This table shows the resources that can be used on documentation pages."
+msgstr ""
+"Diese Tabelle zeigt die Ressourcen an, die in Dokumentations-Seiten "
+"eingebunden werden können."
+
+#: IDF/Views/Wiki.php:100
+msgid "Resource Title"
+msgstr "Ressourcen-Titel"
+
+#: IDF/Views/Wiki.php:107
+msgid "No resources were found."
+msgstr "Es wurden keine Ressourcen gefunden."
+
+#: IDF/Views/Wiki.php:128
+#, php-format
+msgid "Documentation Search - %s"
+msgstr "Dokumentations-Suche - %s"
+
+#: IDF/Views/Wiki.php:139
+msgid "This table shows the pages found."
+msgstr "Diese Tabelle zeigt die gefunden Seiten."
+
+#: IDF/Views/Wiki.php:150
+msgid "No pages were found."
+msgstr "Es wurden keine Seiten gefunden."
+
+#: IDF/Views/Wiki.php:169
+#, php-format
+msgid "%1$s Documentation Pages with Label %2$s"
+msgstr "%1$s Dokumentations-Seiten mit der Marke %2$s"
+
+#: IDF/Views/Wiki.php:179
+#, php-format
+msgid "This table shows the documentation pages with label %s."
+msgstr "Diese Tabelle zeigt die Dokumentations-Seiten mit der Bezeichnung %s."
+
+#: IDF/Views/Wiki.php:222
+#, php-format
+msgid "The page %2$s has been created."
+msgstr "Die Seite %2$s wurde neu angelegt."
+
+#: IDF/Views/Wiki.php:265
+#, php-format
+msgid "The resource %2$s has been created."
+msgstr "Die Ressource %2$s wurde neu angelegt."
+
+#: IDF/Views/Wiki.php:409 IDF/Views/Wiki.php:448
+msgid "The old revision has been deleted."
+msgstr "Alte Version der Seite wurde gelöscht."
+
+#: IDF/Views/Wiki.php:415 IDF/Views/Wiki.php:454
+#, php-format
+msgid "Delete Old Revision of %s"
+msgstr "Lösche alte Version von %s"
+
+#: IDF/Views/Wiki.php:496
+#, php-format
+msgid "The page %2$s has been updated."
+msgstr "Die Seite %2$s wurde aktualisiert."
+
+#: IDF/Views/Wiki.php:548
+#, php-format
+msgid "The resource %2$s has been updated."
+msgstr "Die Ressource %2$s wurde aktualisiert."
+
+#: IDF/Views/Wiki.php:583
+msgid "The documentation page has been deleted."
+msgstr "Die Dokumentations-Seite wurde gelöscht."
+
+#: IDF/Views/Wiki.php:591
+#, php-format
+msgid "Delete Page %s"
+msgstr "Lösche Seite '%s'"
+
+#: IDF/Views/Wiki.php:623
+msgid "The documentation resource has been deleted."
+msgstr "Die Dokumentations-Ressource wurde gelöscht."
+
+#: IDF/Views/Wiki.php:631
+#, php-format
+msgid "Delete Resource %s"
+msgstr "Lösche Ressource %s"
+
+#: IDF/Views.php:173 IDF/Views.php:199
+msgid "Confirm Your Account Creation"
+msgstr "Bestätige die Erstellung Deines Accounts"
+
+#: IDF/Views.php:219
+msgid "Welcome! You can now participate in the life of your project of choice."
+msgstr ""
+"Willkommen! Du kannst nun am Leben eines Projektes Deiner Wahl teilhaben."
+
+#: IDF/Views.php:245 IDF/Views.php:269 IDF/Views.php:310
+msgid "Password Recovery"
+msgstr "Passwort-Wiederherstellung"
+
+#: IDF/Views.php:289
+msgid ""
+"Welcome back! Next time, you can use your broswer options to remember the "
+"password."
+msgstr ""
+"Willkommen zurück! Beim nächsten Mal kannst Du Deine Browsereinstellungen "
+"nutzen, um Dich automatisch einzuloggen."
+
+#: IDF/Views.php:331
+msgid "Here to Help You!"
+msgstr "Hier, um Dir zu helfen!"
+
+#: IDF/Views.php:347
+msgid "InDefero Upload Archive Format"
+msgstr "InDefero Upload-Archivformat"
+
+#: IDF/Views.php:363
+msgid "InDefero API (Application Programming Interface)"
+msgstr "InDefero API (Application Programming Interface)"
+
+#: IDF/Wiki/Page.php:62 IDF/Wiki/Resource.php:64
+msgid "title"
+msgstr "Titel"
+
+#: IDF/Wiki/Page.php:63
+msgid ""
+"The title of the page must only contain letters, digits or the dash "
+"character. For example: My-new-Wiki-Page."
+msgstr ""
+"Der Titel der Seite darf nur Buchstaben, Zahlen oder einen Bindestrich "
+"enthalten. Beispiel: Meine-neue-Wiki-Seite."
+
+#: IDF/Wiki/Page.php:71
+msgid "A one line description of the page content."
+msgstr "Eine einzeilige Beschreibung des Seiteninhalts."
+
+#: IDF/Wiki/Page.php:196 IDF/Wiki/PageRevision.php:196
+#, php-format
+msgid "%2$s, %3$s"
+msgstr "%2$s, %3$s"
+
+#: IDF/Wiki/Page.php:198
+#, php-format
+msgid "Creation of page %2$s, by %3$s"
+msgstr "Erstellung von Seite %2$s, von %3$s"
+
+#: IDF/Wiki/Page.php:208
+#, php-format
+msgid "%1$s: Documentation page %2$s added - %3$s"
+msgstr "%1$s: Dokumentations-Seite %2$s hinzugefügt - %3$s"
+
+#: IDF/Wiki/PageRevision.php:48
+msgid "page"
+msgstr "Seite"
+
+#: IDF/Wiki/PageRevision.php:66 IDF/Wiki/ResourceRevision.php:64
+msgid "A one line description of the changes."
+msgstr "Eine einzeilige Beschreibung der Änderungen."
+
+#: IDF/Wiki/PageRevision.php:72
+msgid "content"
+msgstr "Inhalt"
+
+#: IDF/Wiki/PageRevision.php:218 IDF/Wiki/ResourceRevision.php:311
+#, php-format
+msgid "Change of %2$s, by %3$s"
+msgstr "Änderung von %2$s, von %3$s"
+
+#: IDF/Wiki/PageRevision.php:231
+#, php-format
+msgid "%1$s: Documentation page %2$s updated - %3$s"
+msgstr "%1$s: Dokumentations-Seite %2$s aktualisiert - %3$s"
+
+#: IDF/Wiki/PageRevision.php:293
+#, php-format
+msgid "New Documentation Page %1$s - %2$s (%3$s)"
+msgstr "Neue Dokumentations-Seite %1$s - %2$s (%3$s)"
+
+#: IDF/Wiki/PageRevision.php:297
+#, php-format
+msgid "Documentation Page Changed %1$s - %2$s (%3$s)"
+msgstr "Dokumentations-Seite geändert %1$s - %2$s (%3$s)"
+
+#: IDF/Wiki/Resource.php:65
+msgid ""
+"The title of the resource must only contain letters, digits, dots or the "
+"dash character. For example: my-resource.png."
+msgstr ""
+"Der Titel der Ressource darf nur Buchstaben, Zahlen, Punkte oder einen "
+"Bindestrich enthalten. Beispiel: meine-ressource.png."
+
+#: IDF/Wiki/Resource.php:72
+msgid "MIME media type"
+msgstr "MIME-Medientyp"
+
+#: IDF/Wiki/Resource.php:73
+msgid "The MIME media type of the resource."
+msgstr "Der MIME-Medientyp der Ressource."
+
+#: IDF/Wiki/Resource.php:81
+msgid "A one line description of the resource."
+msgstr "Einzeilige Beschreibung der Ressource."
+
+#: IDF/Wiki/Resource.php:176 IDF/Wiki/ResourceRevision.php:308
+#, php-format
+msgid "%2$s, %3$s"
+msgstr "%2$s, %3$s"
+
+#: IDF/Wiki/Resource.php:178
+#, php-format
+msgid "Creation of resource %2$s, by %3$s"
+msgstr "Erstellung von Ressource %2$s, von %3$s"
+
+#: IDF/Wiki/Resource.php:188
+#, php-format
+msgid "%1$s: Documentation resource %2$s added - %3$s"
+msgstr "%1$s: Dokumentations-Ressource %2$s hinzugefügt - %3$s"
+
+#: IDF/Wiki/ResourceRevision.php:47
+msgid "resource"
+msgstr "Ressource"
+
+#: IDF/Wiki/ResourceRevision.php:78
+msgid "File extension"
+msgstr "Dateierweiterung"
+
+#: IDF/Wiki/ResourceRevision.php:79
+msgid "The file extension of the uploaded resource."
+msgstr "Die Dateierweiterung der hochgeladenen Ressource."
+
+#: IDF/Wiki/ResourceRevision.php:94
+msgid "page usage"
+msgstr "Seitennutzung"
+
+#: IDF/Wiki/ResourceRevision.php:116
+#, php-format
+msgid "id %d: %s"
+msgstr "id %d: %s"
+
+#: IDF/Wiki/ResourceRevision.php:263
+#, php-format
+msgid "Download (%s)"
+msgstr "Download (%s)"
+
+#: IDF/Wiki/ResourceRevision.php:270
+msgid "View resource details"
+msgstr "Zeige Details der Ressource"
+
+#: IDF/Wiki/ResourceRevision.php:324
+#, php-format
+msgid "%1$s: Documentation resource %2$s updated - %3$s"
+msgstr "%1$s: Dokumentations-Ressource %2$s aktualisiert - %3$s"
+
+#~ msgid ""
+#~ "The master branch is empty or contains illegal characters, please use "
+#~ "only letters, digits, dashs and dots as separators."
+#~ msgstr ""
+#~ "Der Hauptzweig ist leer oder enthält ungültige Zeichen. Bitte verwende "
+#~ "nur Buchstaben, Ziffern, Bindestriche und Punkte als Trenner."
+
+#~ msgid ""
+#~ "You can define bidirectional relations like \"is related to\" or "
+#~ "\"blocks, is blocked by\"."
+#~ msgstr ""
+#~ "Du kannst bidirektionale Verknüpfungen wie \"ist verknüpft mit\" oder "
+#~ "\"blockiert, wird blockiert von\" angeben. Für die Standard-Verknüpfungen "
+#~ "sind bereits Übersetzungen vorkonfiguriert, neue Verknüpfungstypen "
+#~ "sollten jedoch in einer Sprache angegegeben werden, die von allen "
+#~ "Projektteilnehmern verstanden wird."
+
+#~ msgid "Learn more about the post-commit web hooks."
+#~ msgstr "Erfahre mehr über die post-commit Web-Hooks."
+
+#~ msgid "Your mail"
+#~ msgstr "Deine E-Mail-Adresse"
+
+#~ msgid ""
+#~ "Notification emails will be sent from the %%from_email%% "
+#~ "address, if you send the email to a mailing list, you may need to "
+#~ "register this email address. Multiple email addresses must be separated "
+#~ "through commas (','). If you do not want to send emails for a given type "
+#~ "of changes, simply leave the corresponding field empty."
+#~ msgstr ""
+#~ "Benachrichtungs-E-Mails werden mit der Absenderadresse "
+#~ "%%from_email%% versandt. Wenn Du die E-Mail zu einer "
+#~ "Mailingliste senden möchtest, musst Du eventuell diese E-Mail-Adresse "
+#~ "dort registrieren. Mehrere E-Mail-Adressen müssen durch Kommas (',') "
+#~ "voneinander getrennt werden. Wenn Du keine E-Mails für einen bestimmten "
+#~ "Änderungstyp versenden möchtest, lasse das entsprechende Feld einfach "
+#~ "leer."
+
+#~ msgid "You have here access to the administration of the forge."
+#~ msgstr "Hier hast Du Zugriff auf die Administration der Forge."
+
+#~ msgid "Forge statistics"
+#~ msgstr "Forge-Statistiken"
+
+#~ msgid "Projects:"
+#~ msgstr "Projekte:"
+
+#~ msgid "You need to provide comments on at least one file."
+#~ msgstr "Du musst Kommentare zu mindestens einer Datei angeben."
+
+#~ msgid "Open Issues"
+#~ msgstr "Offene Tickets"
+
+#~ msgid "Found issues:"
+#~ msgstr "Gefundene Tickets:"
+
+#~ msgid "Property"
+#~ msgstr "Eigenschaft"
+
+#~ msgid "set to:"
+#~ msgstr "gesetzt auf:"
+
+#, qt-format
+#~ msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s."
+#~ msgstr "Ungültiger Wert für Parameter %1$s: %2$s. Nutze %3$s."
diff --git a/indefero/src/IDF/locale/es_ES/idf.po b/indefero/src/IDF/locale/es_ES/idf.po
new file mode 100644
index 0000000..fd736bb
--- /dev/null
+++ b/indefero/src/IDF/locale/es_ES/idf.po
@@ -0,0 +1,6066 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+# Mika , 2011.
+msgid ""
+msgstr ""
+"Project-Id-Version: Indefero\n"
+"Report-Msgid-Bugs-To: http://projects.ceondo.com/p/indefero/issues/\n"
+"POT-Creation-Date: 2012-03-22 01:16+0100\n"
+"PO-Revision-Date: 2011-10-31 00:19+0000\n"
+"Last-Translator: tommyd \n"
+"Language-Team: LANGUAGE \n"
+"Language: es_ES\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+
+#: IDF/Commit.php:55 IDF/Conf.php:54 IDF/Issue.php:52
+#: IDF/ProjectActivity.php:49 IDF/Review.php:65 IDF/Search/Occ.php:69
+#: IDF/Tag.php:52 IDF/Upload.php:49 IDF/Wiki/Page.php:54
+#: IDF/Wiki/Resource.php:56
+msgid "project"
+msgstr "proyecto"
+
+#: IDF/Commit.php:63 IDF/Issue.php:67 IDF/IssueComment.php:65
+#: IDF/IssueFile.php:57 IDF/IssueRelation.php:69 IDF/Review/Comment.php:69
+#: IDF/Review.php:80 IDF/Upload.php:91 IDF/Wiki/Page.php:78
+#: IDF/Wiki/PageRevision.php:79 IDF/Wiki/Resource.php:88
+#: IDF/Wiki/ResourceRevision.php:86
+msgid "submitter"
+msgstr "autor"
+
+#: IDF/Commit.php:87 IDF/Issue.php:60 IDF/Review/Patch.php:60
+#: IDF/Review.php:73 IDF/Upload.php:57 IDF/Wiki/Page.php:70
+#: IDF/Wiki/PageRevision.php:65 IDF/Wiki/Resource.php:80
+#: IDF/Wiki/ResourceRevision.php:63
+msgid "summary"
+msgstr "resumen"
+
+#: IDF/Commit.php:93
+msgid "changelog"
+msgstr "registro de cambios"
+
+#: IDF/Commit.php:100 IDF/Issue.php:105 IDF/IssueComment.php:79
+#: IDF/IssueFile.php:96 IDF/IssueRelation.php:75 IDF/Review/Comment.php:90
+#: IDF/Review/FileComment.php:75 IDF/Review/Patch.php:87 IDF/Review.php:108
+#: IDF/Upload.php:112 IDF/Wiki/Page.php:100 IDF/Wiki/PageRevision.php:92
+#: IDF/Wiki/Resource.php:95 IDF/Wiki/ResourceRevision.php:101
+msgid "creation date"
+msgstr "fecha de creación"
+
+#: IDF/Commit.php:238
+#, fuzzy, php-format
+msgid "Commit %1$s, by %2$s"
+msgstr "Commit %s, por %s"
+
+#: IDF/Commit.php:337
+#, fuzzy, php-format
+msgid "New Commit %1$s - %2$s (%3$s)"
+msgstr "Nuevo Commit %s - %s (%s)"
+
+#: IDF/Conf.php:61 IDF/Gconf.php:73
+msgid "key"
+msgstr "clave"
+
+#: IDF/Conf.php:67 IDF/Gconf.php:79 IDF/ProjectActivity.php:62
+msgid "value"
+msgstr "valor"
+
+#: IDF/Diff.php:460
+msgid "Old"
+msgstr "Antiguo"
+
+#: IDF/Diff.php:460
+msgid "New"
+msgstr "Nuevo"
+
+#: IDF/EmailAddress.php:49 IDF/Key.php:49
+msgid "user"
+msgstr "usuario"
+
+#: IDF/EmailAddress.php:55
+msgid "email"
+msgstr "email"
+
+#: IDF/Form/Admin/ForgeConf.php:34
+msgid "Custom forge page enabled"
+msgstr ""
+
+#: IDF/Form/Admin/ForgeConf.php:39 IDF/Form/WikiPageCreate.php:80
+#: IDF/Form/WikiPageUpdate.php:72
+msgid "Content"
+msgstr "Contenido"
+
+#: IDF/Form/Admin/LabelConf.php:40
+#, fuzzy
+msgid "Predefined project labels"
+msgstr "Etiquetas de tickets predefinidas"
+
+#: IDF/Form/Admin/LabelConf.php:55
+#, php-format
+msgid ""
+"The label \"%s\" is invalid: A label must only consist of alphanumeric "
+"characters and dashes, and can optionally contain a \":\" with a group "
+"prefix."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:600
+msgid "git"
+msgstr "git"
+
+#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:601
+msgid "Subversion"
+msgstr "Subversion"
+
+#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:602
+msgid "mercurial"
+msgstr "mercurial"
+
+#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:603
+msgid "monotone"
+msgstr "monótono"
+
+#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44
+#: IDF/Form/ProjectConf.php:39 IDF/Views/Admin.php:86 IDF/Views/Admin.php:273
+msgid "Name"
+msgstr "Nombre"
+
+#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:101
+#: IDF/gettexttemplates/idf/base-full.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html~.php:5
+#: IDF/gettexttemplates/idf/base.html.php:5
+#: IDF/gettexttemplates/idf/base.html~.php:5
+#: IDF/gettexttemplates/idf/main-menu.html.php:9
+#: IDF/gettexttemplates/idf/project-list.html.php:5
+#: IDF/gettexttemplates/idf/project-list.html.php:7
+msgid "Private project"
+msgstr "Proyecto privado"
+
+#: IDF/Form/Admin/ProjectCreate.php:62
+msgid "Shortname"
+msgstr "Nombre corto"
+
+#: IDF/Form/Admin/ProjectCreate.php:64
+msgid ""
+"It must be unique for each project and composed only of letters, digits and "
+"dash (-) like \"my-project\"."
+msgstr ""
+"Debe ser único para cada proyecto y compuesto únicamente de letras, dígitos "
+"y el guión (-), como \"mi-proyecto\"."
+
+#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50
+msgid "Short description"
+msgstr "Descripción corta"
+
+#: IDF/Form/Admin/ProjectCreate.php:70 IDF/Form/Admin/ProjectUpdate.php:51
+#: IDF/Project.php:79
+msgid "A one line description of the project."
+msgstr "Una línea de descripción del proyecto."
+
+#: IDF/Form/Admin/ProjectCreate.php:77 IDF/Form/Admin/ProjectUpdate.php:58
+#: IDF/Form/ProjectConf.php:56
+msgid "External URL"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:84
+msgid "Repository type"
+msgstr "Tipo de Repositorio"
+
+#: IDF/Form/Admin/ProjectCreate.php:92
+msgid "Remote Subversion repository"
+msgstr "Repositorio remoto Subversion"
+
+#: IDF/Form/Admin/ProjectCreate.php:99 IDF/Form/SourceConf.php:40
+msgid "Repository username"
+msgstr "Nombre de usuario del Repositorio"
+
+#: IDF/Form/Admin/ProjectCreate.php:106 IDF/Form/SourceConf.php:47
+msgid "Repository password"
+msgstr "Contraseña del Repositorio"
+
+#: IDF/Form/Admin/ProjectCreate.php:113 IDF/Form/Admin/ProjectUpdate.php:66
+msgid "Master branch"
+msgstr "Principal Branch"
+
+#: IDF/Form/Admin/ProjectCreate.php:116 IDF/Form/Admin/ProjectUpdate.php:69
+msgid ""
+"This should be a world-wide unique identifier for your project. A reverse "
+"DNS notation like \"com.my-domain.my-project\" is a good idea."
+msgstr ""
+"Este debe ser un identificador único para su proyecto. Una notación tipo DNS "
+"inversa como \"com.mi-dominio.mi-proyecto\" es una buena elección."
+
+#: IDF/Form/Admin/ProjectCreate.php:121 IDF/Form/Admin/ProjectUpdate.php:95
+#: IDF/Form/MembersConf.php:46 IDF/Form/TabsConf.php:53
+#: IDF/Form/TabsConf.php:72
+msgid "Project owners"
+msgstr "Propietarios del Proyecto"
+
+#: IDF/Form/Admin/ProjectCreate.php:130 IDF/Form/Admin/ProjectUpdate.php:103
+#: IDF/Form/MembersConf.php:54 IDF/Form/TabsConf.php:52
+#: IDF/Form/TabsConf.php:78
+msgid "Project members"
+msgstr "Miembros del proyecto"
+
+#: IDF/Form/Admin/ProjectCreate.php:140 IDF/Form/Admin/ProjectUpdate.php:85
+#: IDF/Form/IssueCreate.php:168 IDF/Form/IssueUpdate.php:164
+#: IDF/Form/ProjectConf.php:73 IDF/Form/UpdateUpload.php:71
+#: IDF/Form/Upload.php:70 IDF/Form/WikiPageCreate.php:93
+#: IDF/Form/WikiPageUpdate.php:104
+msgid "Labels"
+msgstr "Etiquetas"
+
+#: IDF/Form/Admin/ProjectCreate.php:155
+msgid "Project template"
+msgstr "Plantilla de Proyecto"
+
+#: IDF/Form/Admin/ProjectCreate.php:157
+msgid ""
+"Use the given project to initialize the new project. Access rights and "
+"general configuration will be taken from the template project."
+msgstr ""
+"Utilizar el proyecto propuesto para iniciar un nuevo proyecto. Los permisos "
+"de acceso y configuración general se tomarán de la plantilla de proyecto."
+
+#: IDF/Form/Admin/ProjectCreate.php:204
+msgid ""
+"Only a remote repository available through HTTP or HTTPS is allowed. For "
+"example \"http://somewhere.com/svn/trunk\"."
+msgstr ""
+"Solo un repositorio remoto HTTP o HTTPS está permitido. Por ejemplo, "
+"\"http://dominio.com/svn/trunk\"."
+
+#: IDF/Form/Admin/ProjectCreate.php:220 IDF/Form/Admin/ProjectUpdate.php:117
+msgid ""
+"The master branch is empty or contains illegal characters, please use only "
+"letters, digits, dashes and dots as separators."
+msgstr ""
+"El principal branch está vacío o contiene caracteres no válidos, por favor "
+"utiliza sólo letras, dígitos, guiones y puntos como separadores."
+
+#: IDF/Form/Admin/ProjectCreate.php:230 IDF/Form/Admin/ProjectUpdate.php:128
+msgid "This master branch is already used. Please select another one."
+msgstr "Esta rama principal ya está en uso. Por favor, seleccione otra."
+
+#: IDF/Form/Admin/ProjectCreate.php:241
+msgid ""
+"This shortname contains illegal characters, please use only letters, digits "
+"and dash (-)."
+msgstr ""
+"Este nombre corto contiene caracteres no válidos, por favor utiliza sólo "
+"letras, dígitos y el guión (-)."
+
+#: IDF/Form/Admin/ProjectCreate.php:244
+msgid "The shortname cannot start with the dash (-) character."
+msgstr "El nombre corto no puede comenzar con el carácter guión (-)."
+
+#: IDF/Form/Admin/ProjectCreate.php:247
+msgid "The shortname cannot end with the dash (-) character."
+msgstr "El nombre corto no puede terminar con el carácter guión (-)."
+
+#: IDF/Form/Admin/ProjectCreate.php:252
+msgid "This shortname is already used. Please select another one."
+msgstr "Este nombre corto ya está en uso. Por favor, seleccione otro."
+
+#: IDF/Form/Admin/ProjectCreate.php:303 IDF/Form/Admin/ProjectDelete.php:78
+#: IDF/Form/Admin/ProjectUpdate.php:153 IDF/Form/Admin/UserCreate.php:106
+#: IDF/Form/Admin/UserUpdate.php:191 IDF/Form/IssueCreate.php:338
+#: IDF/Form/IssueUpdate.php:329 IDF/Form/MembersConf.php:64
+#: IDF/Form/Password.php:76 IDF/Form/Register.php:112
+#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:143
+#: IDF/Form/TabsConf.php:122 IDF/Form/UpdateUpload.php:126
+#: IDF/Form/Upload.php:149 IDF/Form/UploadArchive.php:137
+#: IDF/Form/UserAccount.php:216 IDF/Form/UserChangeEmail.php:80
+#: IDF/Form/WikiPageCreate.php:167 IDF/Form/WikiPageDelete.php:59
+#: IDF/Form/WikiPageUpdate.php:178 IDF/Form/WikiResourceCreate.php:123
+#: IDF/Form/WikiResourceDelete.php:59 IDF/Form/WikiResourceUpdate.php:124
+msgid "Cannot save the model from an invalid form."
+msgstr "No se puede guardar el modelo desde un formulario no válido."
+
+#: IDF/Form/Admin/ProjectCreate.php:341
+msgid ""
+"Click on the Project Management tab to set the description of your project."
+msgstr ""
+"Haga clic en la pestaña Gestión de proyectos para establecer la descripción "
+"de su proyecto."
+
+#: IDF/Form/Admin/ProjectCreate.php:426
+msgid "This project is not available."
+msgstr "Este proyecto no está disponible."
+
+#: IDF/Form/Admin/ProjectDelete.php:41
+msgid "Confirmation code"
+msgstr "Código de confirmación"
+
+#: IDF/Form/Admin/ProjectDelete.php:46
+msgid "I have made a backup of all the important data of this project."
+msgstr ""
+"He realizado una copia de seguridad de todos los datos importantes de este "
+"proyecto."
+
+#: IDF/Form/Admin/ProjectDelete.php:55
+msgid ""
+"The confirmation code does not match. Please provide a valid confirmation "
+"code to delete the project."
+msgstr ""
+"El código de confirmación no coincide. Por favor, introduzca el código de "
+"confirmación válido para eliminar el proyecto."
+
+#: IDF/Form/Admin/ProjectDelete.php:63
+msgid "Sorry, you really need to backup your data before deletion."
+msgstr "Lo sentimos, necesita respaldar sus datos antes de la eliminación."
+
+#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38
+#: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40
+msgid "First name"
+msgstr "Nombre"
+
+#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47
+#: IDF/Form/RegisterConfirmation.php:59 IDF/Form/UserAccount.php:49
+msgid "Last name"
+msgstr "Apellidos"
+
+#: IDF/Form/Admin/UserCreate.php:56
+msgid "Login"
+msgstr "Iniciar sesión"
+
+#: IDF/Form/Admin/UserCreate.php:60
+msgid ""
+"The login must be between 3 and 15 characters long and contains only letters "
+"and digits."
+msgstr ""
+"El nombre de usuario debe tener entre 3 y 15 caracteres de largo y contener "
+"solamente letras y dígitos."
+
+#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57
+msgid "Email"
+msgstr "Email"
+
+#: IDF/Form/Admin/UserCreate.php:71
+msgid ""
+"Double check the email address as the password is sent directly to the user."
+msgstr ""
+"Vuelva a comprobar tanto la dirección de correo electrónico como la "
+"contraseña, ambas se envían directamente al usuario."
+
+#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67
+#: IDF/Form/UserAccount.php:66
+msgid "Language"
+msgstr "Idioma"
+
+#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161
+msgid "Add a public key"
+msgstr "Agregar una clave pública"
+
+#: IDF/Form/Admin/UserCreate.php:92
+msgid ""
+"Paste a SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+"Pege un SSH o de clave pública monótona. ¡Tenga cuidado de no proporcionar "
+"aquí su clave privada!"
+
+#: IDF/Form/Admin/UserCreate.php:157
+msgid "Your details to access your forge."
+msgstr "Sus datos para acceder a la forja."
+
+#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:429
+#: IDF/Form/UserAccount.php:438
+#, php-format
+msgid "The email \"%s\" is already used."
+msgstr "La dirección de correo electrónico \"%s\" ya está en uso."
+
+#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72
+#, php-format
+msgid "The login \"%s\" can only contain letters and digits."
+msgstr "El nombre de usuario \"%s\" solo puede contener letras y digitos."
+
+#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77
+#, php-format
+msgid "The login \"%s\" is already used, please find another one."
+msgstr "El nombre de usuario \"%s\" ya está en uso, por favor encuentra otro."
+
+#: IDF/Form/Admin/UserUpdate.php:78
+msgid "Password"
+msgstr "Contraseña"
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid "Leave blank if you do not want to change the password."
+msgstr "Dejar en blanco si no quiere cambiar la contraseña."
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid ""
+"The password must be hard for other people to guess, but easy for the user "
+"to remember."
+msgstr ""
+"La contraseña debe ser difícil de averiguar para otras personas, pero fácil "
+"de recordar para el usuario."
+
+#: IDF/Form/Admin/UserUpdate.php:89
+msgid "Confirm password"
+msgstr "Confirmar contraseña"
+
+#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/IssueCreate.php:66
+#: IDF/Form/ProjectConf.php:48 IDF/Form/ReviewCreate.php:54
+#: IDF/Form/UpdateUpload.php:51 IDF/Form/Upload.php:49
+#: IDF/Form/UserAccount.php:101 IDF/Form/WikiPageCreate.php:70
+#: IDF/Form/WikiPageUpdate.php:60 IDF/Form/WikiResourceCreate.php:54
+#: IDF/Form/WikiResourceUpdate.php:46 IDF/Views/Wiki.php:102
+msgid "Description"
+msgstr "Descripción"
+
+#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:110
+msgid "Twitter username"
+msgstr "Nombre de usuario Twitter "
+
+#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:120
+msgid "Public email address"
+msgstr "Dirección de correo electrónico Pública "
+
+#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:130
+msgid "Website URL"
+msgstr "URL del sitio web"
+
+#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:140
+msgid "Upload custom avatar"
+msgstr "Carga tu avatar personalizado"
+
+#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:147
+msgid ""
+"An image file with a width and height not larger than 60 pixels (bigger "
+"images are scaled down)."
+msgstr ""
+"Un archivo de imagen con una anchura y una altura no mayor de 60 píxeles "
+"(imágenes más grandes se reducirán)."
+
+#: IDF/Form/Admin/UserUpdate.php:151 IDF/Form/UserAccount.php:152
+msgid "Remove custom avatar"
+msgstr "Eliminar avatar personalizado"
+
+#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:156
+msgid "Tick this to delete the custom avatar."
+msgstr "Marque esta opción para eliminar el avatar personalizado."
+
+#: IDF/Form/Admin/UserUpdate.php:161 IDF/Views/Admin.php:274
+msgid "Staff"
+msgstr "Staff"
+
+#: IDF/Form/Admin/UserUpdate.php:164
+#, fuzzy
+msgid "If you give staff rights to a user, you really need to trust him."
+msgstr ""
+"Si le da permisos de Staff a un usuario, debe confiar plenamente en él."
+
+#: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:276
+msgid "Active"
+msgstr "Activo"
+
+#: IDF/Form/Admin/UserUpdate.php:176
+msgid ""
+"If the user is not getting the confirmation email or is abusing the system, "
+"you can directly enable or disable their account here."
+msgstr ""
+"Si el usuario no recibe el email de confirmación o está abusando del "
+"sistema, puede directamente activar o desactivar su cuenta desde aquí."
+
+#: IDF/Form/Admin/UserUpdate.php:274
+msgid "--- is not a valid first name."
+msgstr "--- No es un nombre válido."
+
+#: IDF/Form/Admin/UserUpdate.php:290
+msgid ""
+"A user with this email already exists, please provide another email address."
+msgstr ""
+"Ya existe un usuario con este correo electrónico , por favor, introduce otro "
+"email."
+
+#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/UserAccount.php:398
+msgid "For security reason, you cannot upload a file with this extension."
+msgstr ""
+"Por razones de seguridad, no se puede cargar un archivo con esta extensión."
+
+#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:461
+msgid "The passwords do not match. Please give them again."
+msgstr "Las contraseñas no coinciden. Por favor, vuelve a intentarlo."
+
+#: IDF/Form/Field/EmailList.php:45
+msgid "Please enter one or more valid email addresses."
+msgstr ""
+"Por favor, introduzca una o más direcciones de correo electrónico válidas."
+
+#: IDF/Form/IssueCreate.php:57 IDF/Form/IssueUpdate.php:46
+#: IDF/Form/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:73
+#: IDF/Form/UpdateUpload.php:42 IDF/Form/Upload.php:40
+#: IDF/gettexttemplates/idf/issues/base.html.php:3 IDF/Views/Download.php:65
+#: IDF/Views/Download.php:347 IDF/Views/Issue.php:62 IDF/Views/Issue.php:221
+#: IDF/Views/Issue.php:302 IDF/Views/Issue.php:391 IDF/Views/Issue.php:543
+#: IDF/Views/Issue.php:766 IDF/Views/Issue.php:825 IDF/Views/Review.php:58
+#: IDF/Views/User.php:83 IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:145
+#: IDF/Views/Wiki.php:186
+msgid "Summary"
+msgstr "Resumen"
+
+#: IDF/Form/IssueCreate.php:76 IDF/Form/IssueUpdate.php:66
+#: IDF/Form/ReviewCreate.php:83
+msgid "The \"upload_issue_path\" configuration variable was not set."
+msgstr ""
+"La variable de configuración \"upload_issue_path\" no se ha establecido."
+
+#: IDF/Form/IssueCreate.php:86 IDF/Form/IssueUpdate.php:76
+msgid "Attach a file"
+msgstr "Adjuntar un archivo"
+
+#: IDF/Form/IssueCreate.php:99 IDF/Form/IssueUpdate.php:89
+#: IDF/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:83
+#: IDF/Views/Issue.php:63 IDF/Views/Issue.php:222 IDF/Views/Issue.php:304
+#: IDF/Views/Issue.php:392 IDF/Views/Issue.php:544 IDF/Views/Issue.php:767
+#: IDF/Views/Issue.php:826 IDF/Views/Review.php:59 IDF/Views/User.php:84
+msgid "Status"
+msgstr "Estado"
+
+#: IDF/Form/IssueCreate.php:108 IDF/Form/IssueUpdate.php:99
+msgid "Owner"
+msgstr "Propietario"
+
+#: IDF/Form/IssueCreate.php:118 IDF/Form/IssueUpdate.php:112
+#: IDF/Form/IssueUpdate.php:129
+msgid "This issue"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:210
+msgid "You cannot add a label with the \"Status\" prefix to an issue."
+msgstr ""
+"No se puede agregar una etiqueta con el prefijo \"Status\" a un ticket."
+
+#: IDF/Form/IssueCreate.php:211 IDF/Form/IssueCreate.php:218
+#: IDF/Form/UpdateUpload.php:110 IDF/Form/Upload.php:121
+#: IDF/Form/WikiPageCreate.php:151 IDF/Form/WikiPageUpdate.php:162
+msgid "You provided an invalid label."
+msgstr "Proporcionaste una etiqueta no válida."
+
+#: IDF/Form/IssueCreate.php:217 IDF/Form/UpdateUpload.php:109
+#, fuzzy, php-format
+msgid "You cannot provide more than one label from the %s class to an issue."
+msgstr "No puede proporcionar más de una etiqueta de la clase %s en un ticket."
+
+#: IDF/Form/IssueCreate.php:228 IDF/Form/IssueUpdate.php:194
+msgid "You need to provide a description of the issue."
+msgstr "Es necesario proporcionar una descripción del ticket."
+
+#: IDF/Form/IssueCreate.php:251 IDF/Form/ReviewCreate.php:159
+msgid "You provided an invalid status."
+msgstr "Ha introducido un estado no válido."
+
+#: IDF/Form/IssueCreate.php:272
+msgid "You provided an invalid relation type."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:294
+#, php-format
+msgid "The value \"%s\" is not a valid issue id."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:300
+#, php-format
+msgid "The issue \"%s\" does not exist."
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:86
+msgid "is related to"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:87
+msgid "blocks"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:88
+msgid "is blocked by"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:89
+msgid "duplicates"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:90
+msgid "is duplicated by"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:97
+msgid ""
+"Define an issue template to hint the reporter to provide certain information"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:106
+msgid "Open issue status values"
+msgstr "Valores de estado para Tickets abiertos"
+
+#: IDF/Form/IssueTrackingConf.php:114
+msgid "Closed issue status values"
+msgstr "Valores de estado para Tickets cerrados"
+
+#: IDF/Form/IssueTrackingConf.php:123
+msgid "Predefined issue labels"
+msgstr "Etiquetas de tickets predefinidas"
+
+#: IDF/Form/IssueTrackingConf.php:125
+msgid ""
+"The first \"Type:\" and \"Priority:\" entries found in this list are "
+"automatically chosen as defaults for new issues."
+msgstr ""
+"La primera entrada \"Tipo:\" y \"Prioridad:\" de esta lista será "
+"seleccionada automáticamente por defecto para los nuevos tickets."
+
+#: IDF/Form/IssueTrackingConf.php:133
+#, fuzzy
+msgid "Each issue may have at most one label with each of these classes."
+msgstr ""
+"Cada ticket puede tener como máximo una etiqueta para cada una de sus clases"
+
+#: IDF/Form/IssueTrackingConf.php:140
+msgid "Issue relations"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:142
+msgid ""
+"You can define bidirectional relations like \"is related to\" or \"blocks, "
+"is blocked by\". For standard relations pre-configured translations exist, "
+"new relations should however be defined in a language that is understood by "
+"all project members."
+msgstr ""
+
+#: IDF/Form/IssueUpdate.php:56 IDF/Form/ReviewFileComment.php:45
+#: IDF/Form/WikiPageUpdate.php:82 IDF/Form/WikiResourceUpdate.php:66
+msgid "Comment"
+msgstr "Comentario"
+
+#: IDF/Form/IssueUpdate.php:316
+msgid "No changes were entered."
+msgstr "No se han introducido cambios."
+
+#: IDF/Form/MembersConf.php:104
+#, php-format
+msgid "The following login is invalid: %s."
+msgid_plural "The following logins are invalid: %s."
+msgstr[0] "El siguiente nombre de usuario no es válido: %s."
+msgstr[1] "Los siguientes nombres de usuarios no son válidos: %s."
+
+#: IDF/Form/Password.php:34
+msgid "Your login or email"
+msgstr "Su nombre de usuario o correo electrónico"
+
+#: IDF/Form/Password.php:35
+msgid "Provide either your login or your email to recover your password."
+msgstr ""
+"Proporcione su nombre de usuario o dirección de correo electrónico para "
+"recuperar la contraseña."
+
+#: IDF/Form/Password.php:49 IDF/Form/Password.php:64
+msgid ""
+"Sorry, we cannot find a user with this email address or login. Feel free to "
+"try again."
+msgstr ""
+"Lo sentimos, no hemos encontrado ningún usuario con esta dirección de correo "
+"electrónico o nombre de usuario. Vuelva a intentarlo."
+
+#: IDF/Form/Password.php:100
+msgid "Password Recovery - InDefero"
+msgstr "Recuperar la contraseña - InDefero"
+
+#: IDF/Form/PasswordInputKey.php:36 IDF/Form/PasswordReset.php:39
+#: IDF/Form/UserChangeEmail.php:36
+msgid "Your verification key"
+msgstr "Tu clave de verificación"
+
+#: IDF/Form/PasswordInputKey.php:50 IDF/Form/PasswordReset.php:89
+msgid ""
+"We are sorry but this validation key is not valid. Maybe you should directly "
+"copy/paste it from your validation email."
+msgstr ""
+"Lo sentimos, pero esta clave de validación no es válida. Intente copiar/"
+"pegar desde el email de validación."
+
+#: IDF/Form/PasswordInputKey.php:61 IDF/Form/PasswordReset.php:100
+msgid ""
+"Sorry, but this verification key has expired, please restart the password "
+"recovery sequence. For security reasons, the verification key is only valid "
+"24h."
+msgstr ""
+"Lo sentimos, pero esta clave de verificación ha expirado, por favor, "
+"reinicie la secuencia de recuperación de la contraseña. Por razones de "
+"seguridad, la clave de verificación sólo es válida durante 24 horas."
+
+#: IDF/Form/PasswordInputKey.php:76 IDF/Form/PasswordReset.php:108
+#: IDF/Form/RegisterConfirmation.php:137 IDF/Form/RegisterInputKey.php:72
+msgid "Cannot save an invalid form."
+msgstr "No se puede guardar un formulario no válido."
+
+#: IDF/Form/PasswordReset.php:45 IDF/Form/RegisterConfirmation.php:69
+#: IDF/Form/UserAccount.php:77
+msgid "Your password"
+msgstr "Su contraseña"
+
+#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80
+msgid ""
+"Your password must be hard for other people to find it, but easy for you to "
+"remember."
+msgstr ""
+"Su contraseña debe ser difícil de averiguar por otras personas, pero fácil "
+"de recordar."
+
+#: IDF/Form/PasswordReset.php:56 IDF/Form/RegisterConfirmation.php:80
+#: IDF/Form/UserAccount.php:89
+msgid "Confirm your password"
+msgstr "Confirme su contraseña"
+
+#: IDF/Form/PasswordReset.php:74 IDF/Form/RegisterConfirmation.php:122
+msgid "The two passwords must be the same."
+msgstr "Las dos contraseñas deben ser iguales."
+
+#: IDF/Form/PasswordReset.php:77
+msgid ""
+"This account is not active. Please contact the forge administrator to "
+"activate it."
+msgstr ""
+"Esta cuenta no está activa. Póngase en contacto con el administrador de la "
+"forja para activarlo."
+
+#: IDF/Form/ProjectConf.php:43
+msgid "Short Description"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:85
+msgid "The \"upload_path\" configuration variable was not set."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:90
+msgid "Update the logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:92
+msgid "The logo must be a picture with a size of 32 by 32."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:103
+msgid "Remove the current logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:139
+msgid "Could not determine the size of the uploaded picture."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:143
+msgid "The picture must have a size of 32 by 32."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:164
+msgid "The entered URL is invalid. Only http and https URLs are allowed."
+msgstr ""
+
+#: IDF/Form/Register.php:41
+msgid "Your login"
+msgstr "Tu nombre de usuario"
+
+#: IDF/Form/Register.php:45
+msgid ""
+"The login must be between 3 and 15 characters long and contain only letters "
+"and digits."
+msgstr ""
+"El nombre de usuario debe tener entre 3 y 15 caracteres y contener solamente "
+"letras y dígitos."
+
+#: IDF/Form/Register.php:53 IDF/Form/UserAccount.php:59
+msgid "Your email"
+msgstr "Correo electrónico"
+
+#: IDF/Form/Register.php:55
+msgid "We will never send you any unsolicited emails. We hate spam too!"
+msgstr ""
+"Nunca te enviaremos correo electrónico que no haya solicitado. ¡También "
+"odiamos el spam!"
+
+#: IDF/Form/Register.php:60
+msgid "I agree to the terms and conditions."
+msgstr "Estoy de acuerdo con los términos y condiciones."
+
+#: IDF/Form/Register.php:88
+msgid ""
+"We know, this is boring, but you need to agree with the terms and conditions."
+msgstr ""
+"Lo sabemos, esto es aburrido, pero es necesario aceptar los términos y "
+"condiciones."
+
+#: IDF/Form/Register.php:97
+#, fuzzy, php-format
+msgid ""
+"The email \"%1$s\" is already used. If you need to, you can recover your password."
+msgstr ""
+"La dirección de correo \"%s\" ya está en uso. Si lo necesita, haga clic en "
+"el enlace de ayuda para recuperar su contraseña."
+
+#: IDF/Form/Register.php:148
+msgid "Confirm the creation of your account."
+msgstr "Confirme la creación de su cuenta."
+
+#: IDF/Form/RegisterConfirmation.php:40 IDF/Form/RegisterInputKey.php:36
+msgid "Your confirmation key"
+msgstr "Tu clave de confirmación"
+
+#: IDF/Form/RegisterConfirmation.php:72
+msgid ""
+"Your password must be hard for other people to guess, but easy for you to "
+"remember."
+msgstr ""
+"Su contraseña debe ser difícil de averiguar para otras personas, pero que le "
+"sea fácil de recordar."
+
+#: IDF/Form/RegisterConfirmation.php:99 IDF/Form/RegisterInputKey.php:50
+msgid ""
+"We are sorry but this confirmation key is not valid. Maybe you should "
+"directly copy/paste it from your confirmation email."
+msgstr ""
+"Lo sentimos, pero esta clave de confirmación no es válida. Pruebe a copiar y "
+"pegar directamente desde el email de confirmación."
+
+#: IDF/Form/RegisterConfirmation.php:110
+#, fuzzy, php-format
+msgid ""
+"This account has already been confirmed. Maybe should you try to recover your password."
+msgstr ""
+"Esta cuenta ya ha sido confirmada. Trate de recuperar su contraseña usando "
+"el enlace de ayuda."
+
+#: IDF/Form/ReviewCreate.php:74
+#: IDF/gettexttemplates/idf/source/base.html.php:5
+#: IDF/gettexttemplates/idf/source/changelog.html.php:7
+msgid "Commit"
+msgstr "Commit"
+
+#: IDF/Form/ReviewCreate.php:92
+msgid "Patch"
+msgstr "Patch"
+
+#: IDF/Form/ReviewCreate.php:119
+msgid "We were not able to parse your patch. Please provide a valid patch."
+msgstr ""
+"No hemos podido analizar el parche. Por favor, proporcione un parche válido."
+
+#: IDF/Form/ReviewCreate.php:128
+msgid "You provided an invalid commit."
+msgstr "Ha introducido un commit no válido."
+
+#: IDF/Form/ReviewCreate.php:202
+msgid "Initial patch to be reviewed."
+msgstr "El Parche inicial debe ser revisado."
+
+#: IDF/Form/ReviewFileComment.php:56
+msgid "General comment"
+msgstr "Comentario General"
+
+#: IDF/Form/ReviewFileComment.php:113
+msgid ""
+"You need to provide your general comment about the proposal, or comments on "
+"at least one file."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:124
+msgid "The status have been updated."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:130
+msgid "This field is required."
+msgstr ""
+
+#: IDF/Form/SourceConf.php:54 IDF/Form/UploadConf.php:70
+msgid "Webhook URL"
+msgstr "URL de Webhook"
+
+#: IDF/Form/TabsConf.php:38 IDF/gettexttemplates/idf/admin/base.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html.php:8
+#: IDF/gettexttemplates/idf/base-full.html~.php:7
+#: IDF/gettexttemplates/idf/base.html.php:8
+#: IDF/gettexttemplates/idf/base.html~.php:7
+#: IDF/gettexttemplates/idf/downloads/base.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:14
+#: IDF/Views/Project.php:97
+msgid "Downloads"
+msgstr "Descargas"
+
+#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.php:12
+#: IDF/gettexttemplates/idf/base-full.html~.php:11
+#: IDF/gettexttemplates/idf/base.html.php:12
+#: IDF/gettexttemplates/idf/base.html~.php:11
+msgid "Code Review"
+msgstr "Revisión del Código"
+
+#: IDF/Form/TabsConf.php:40 IDF/gettexttemplates/idf/admin/base.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html~.php:8
+#: IDF/gettexttemplates/idf/base.html.php:9
+#: IDF/gettexttemplates/idf/base.html~.php:8
+msgid "Documentation"
+msgstr "Documentación"
+
+#: IDF/Form/TabsConf.php:41 IDF/gettexttemplates/idf/admin/base.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html.php:11
+#: IDF/gettexttemplates/idf/base-full.html~.php:10
+#: IDF/gettexttemplates/idf/base.html.php:11
+#: IDF/gettexttemplates/idf/base.html~.php:10
+msgid "Source"
+msgstr "Fuentes"
+
+#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.php:10
+#: IDF/gettexttemplates/idf/base-full.html~.php:9
+#: IDF/gettexttemplates/idf/base.html.php:10
+#: IDF/gettexttemplates/idf/base.html~.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:17
+msgid "Issues"
+msgstr "Tickets"
+
+#: IDF/Form/TabsConf.php:50
+msgid "Open to all"
+msgstr "Abierto a Todos"
+
+#: IDF/Form/TabsConf.php:51
+msgid "Signed in users"
+msgstr "Usuarios Registrados"
+
+#: IDF/Form/TabsConf.php:54
+msgid "Closed"
+msgstr "Cerrado"
+
+#: IDF/Form/TabsConf.php:84
+#, fuzzy
+msgid "Others"
+msgstr "Otros"
+
+#: IDF/Form/TabsConf.php:107
+msgid "Extra authorized users"
+msgstr "Usuarios autorizados adicionales"
+
+#: IDF/Form/Upload.php:59 IDF/Form/WikiResourceCreate.php:65
+#: IDF/Form/WikiResourceUpdate.php:56
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7
+#: IDF/Views/Download.php:64 IDF/Views/Download.php:346
+msgid "File"
+msgstr "Archivo"
+
+#: IDF/Form/Upload.php:87 IDF/Form/WikiResourceCreate.php:96
+#: IDF/Form/WikiResourceUpdate.php:83
+msgid "For security reasons, you cannot upload a file with this extension."
+msgstr ""
+"Por razones de seguridad, no se puede cargar un archivo con esta extensión."
+
+#: IDF/Form/Upload.php:120
+#, fuzzy, php-format
+msgid "You cannot provide more than one label from the %s class to a download."
+msgstr ""
+"No puede proporcionar más de una etiqueta para la clase %s en una página."
+
+#: IDF/Form/UploadArchive.php:41
+#, fuzzy
+msgid "Archive file"
+msgstr "Archivo"
+
+#: IDF/Form/UploadArchive.php:67
+#, fuzzy, php-format
+msgid ""
+"For security reasons, you cannot upload a file (%s) with this extension."
+msgstr ""
+"Por razones de seguridad, no se puede cargar un archivo con esta extensión."
+
+#: IDF/Form/UploadArchive.php:98
+#, fuzzy, php-format
+msgid ""
+"You cannot provide more than label from the %1$s class to a download (%2$s)."
+msgstr "No puede proporcionar más de una etiqueta de la clase %s en un ticket."
+
+#: IDF/Form/UploadArchive.php:109
+#, php-format
+msgid ""
+"A file with the name \"%s\" has already been uploaded and is not marked to "
+"be replaced."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:41
+#, fuzzy
+msgid "The archive does not exist."
+msgstr "La ruta del proyecto %s no existe."
+
+#: IDF/Form/UploadArchiveHelper.php:48
+#, fuzzy, php-format
+msgid "The archive could not be read (code %d)."
+msgstr "El directorio clave %s no puede ser creado."
+
+#: IDF/Form/UploadArchiveHelper.php:53
+msgid "The archive does not contain a manifest.xml."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:61
+#, fuzzy, php-format
+msgid "The archive's manifest is invalid: %s"
+msgstr "El siguiente nombre de usuario no es válido: %s."
+
+#: IDF/Form/UploadArchiveHelper.php:77
+#, php-format
+msgid "The entry %d in the manifest is missing a file name."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:82
+#, php-format
+msgid "The entry %d in the manifest is missing a summary."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:86
+msgid "The manifest must not reference itself."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:91
+#, php-format
+msgid "The entry %s in the manifest does not exist in the archive."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:96
+#, php-format
+msgid "The entry %s in the manifest is referenced more than once."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:108
+#, php-format
+msgid "The entry %s in the manifest has more than the six allowed labels set."
+msgstr ""
+
+#: IDF/Form/UploadConf.php:53
+msgid "Predefined download labels"
+msgstr "Etiquetas predefinidas para descarga"
+
+#: IDF/Form/UploadConf.php:62
+msgid "Each download may have at most one label with each of these classes"
+msgstr ""
+"Cada descarga puede tener como máximo una etiqueta para cada una de estas "
+"clases."
+
+#: IDF/Form/UserAccount.php:61
+msgid ""
+"If you change your email address, an email will be sent to the new address "
+"to confirm it."
+msgstr ""
+"Si cambia su dirección de correo electrónico, un email será enviado a la "
+"dirección nueva para confirmarla."
+
+#: IDF/Form/UserAccount.php:80
+msgid "Leave blank if you do not want to change your password."
+msgstr "Dejar en blanco si no desea cambiar su contraseña."
+
+#: IDF/Form/UserAccount.php:166
+msgid ""
+"Paste an SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+"Pega una clave pública SSH o monotone. ¡Tenga cuidado de no proporcionar "
+"aquí su clave privada!"
+
+#: IDF/Form/UserAccount.php:171
+#, fuzzy
+msgid "Add a secondary email address"
+msgstr "Añadir una dirección de correo secundaria"
+
+#: IDF/Form/UserAccount.php:173
+#, fuzzy
+msgid "You will get an email to confirm that you own the address you specify."
+msgstr ""
+"Recibirá un correo electrónico para confirmar que eres el dueño de la "
+"dirección que ha especificado."
+
+#: IDF/Form/UserAccount.php:200
+msgid "Confirm your new email address."
+msgstr "Confirme su nueva dirección de correo electrónico."
+
+#: IDF/Form/UserAccount.php:203
+#, php-format
+msgid ""
+"A validation email has been sent to \"%s\" to validate the email address "
+"change."
+msgstr ""
+"Un email de validación ha sido enviado a \"%s\" para validar el cambio de "
+"dirección de correo electrónico."
+
+#: IDF/Form/UserAccount.php:341
+msgid ""
+"Please check the key as it does not appear to be a valid SSH public key."
+msgstr ""
+"Por favor, compruebe la clave, ya que no parece ser válida la clave pública "
+"SSH."
+
+#: IDF/Form/UserAccount.php:363
+msgid ""
+"Please check the key as it does not appear to be a valid monotone public key."
+msgstr ""
+"Por favor, compruebe la clave, ya que parece no ser una clave pública "
+"monotone válida ."
+
+#: IDF/Form/UserAccount.php:371
+msgid "Public key looks like neither an SSH nor monotone public key."
+msgstr ""
+"La clave pública no coincide con una clave pública SSH, ni con a una clave "
+"monotone."
+
+#: IDF/Form/UserAccount.php:383
+msgid "You already have uploaded this key."
+msgstr "Ya has subido esta clave."
+
+#: IDF/Form/UserChangeEmail.php:63
+msgid ""
+"The validation key is not valid. Please copy/paste it from your confirmation "
+"email."
+msgstr ""
+"La clave de validación no es válido. Por favor, copia/pega desde su email de "
+"confirmación."
+
+#: IDF/Form/WikiConf.php:49
+msgid "Predefined documentation page labels"
+msgstr "Etiquetas predefinidas para página de documentación"
+
+#: IDF/Form/WikiConf.php:58
+msgid ""
+"Each documentation page may have at most one label with each of these classes"
+msgstr ""
+"Cada página de documentación podrá tener más de una etiqueta para cada una "
+"de estas clases"
+
+#: IDF/Form/WikiPageCreate.php:38
+msgid ""
+"# Introduction\n"
+"\n"
+"Add your content here.\n"
+"\n"
+"\n"
+"# Details\n"
+"\n"
+"Add your content here. Format your content with:\n"
+"\n"
+"* Text in **bold** or *italic*.\n"
+"* Headings, paragraphs, and lists.\n"
+"* Links to other [[WikiPage]].\n"
+msgstr ""
+"# Introducción\n"
+"\n"
+"Añade tu contenido aquí.\n"
+"\n"
+"\n"
+"# Detalles\n"
+"\n"
+"Añade tu contenido aquí. Formatea el contenido con:\n"
+"\n"
+"* Texto en **negrita** o *cursiva*.\n"
+"* Títulos, párrafos y listas.\n"
+"* Enlaces a otro [[WikiPage]].\n"
+
+#: IDF/Form/WikiPageCreate.php:57
+msgid "PageName"
+msgstr "NombreDeLaPágina"
+
+#: IDF/Form/WikiPageCreate.php:60 IDF/Form/WikiPageUpdate.php:50
+msgid "Page title"
+msgstr "Título de la página"
+
+#: IDF/Form/WikiPageCreate.php:66 IDF/Form/WikiPageUpdate.php:56
+msgid ""
+"The page name must contains only letters, digits and the dash (-) character."
+msgstr ""
+"El nombre de la página debe contener sólo letras, dígitos y el carácter "
+"guión (-)."
+
+#: IDF/Form/WikiPageCreate.php:71 IDF/Form/WikiPageUpdate.php:61
+msgid "This one line description is displayed in the list of pages."
+msgstr "Breve descripción que se mostrará en la lista de páginas."
+
+#: IDF/Form/WikiPageCreate.php:108 IDF/Form/WikiPageUpdate.php:119
+#: IDF/Form/WikiResourceCreate.php:78
+msgid "The title contains invalid characters."
+msgstr "El título contiene caracteres no válidos."
+
+#: IDF/Form/WikiPageCreate.php:114 IDF/Form/WikiPageUpdate.php:125
+msgid "A page with this title already exists."
+msgstr "Una página con este título ya existe."
+
+#: IDF/Form/WikiPageCreate.php:150 IDF/Form/WikiPageUpdate.php:161
+#, fuzzy, php-format
+msgid "You cannot provide more than one label from the %s class to a page."
+msgstr ""
+"No puede proporcionar más de una etiqueta para la clase %s en una página."
+
+#: IDF/Form/WikiPageCreate.php:200
+msgid "Initial page creation"
+msgstr "Creación de la página inicial"
+
+#: IDF/Form/WikiPageDelete.php:39
+msgid "Yes, I understand that the page and all its revisions will be deleted."
+msgstr "Sí, entiendo que la página y todas sus revisiones serán eliminados."
+
+#: IDF/Form/WikiPageDelete.php:50 IDF/Form/WikiResourceDelete.php:50
+msgid "You need to confirm the deletion."
+msgstr "Necesitas confirmar la eliminación."
+
+#: IDF/Form/WikiPageUpdate.php:83 IDF/Form/WikiResourceUpdate.php:67
+msgid "One line to describe the changes you made."
+msgstr "Breve descripción para los cambios realizados."
+
+#: IDF/Form/WikiResourceCreate.php:40
+msgid "ResourceName"
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:44
+msgid "Resource title"
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:50
+#, fuzzy
+msgid ""
+"The resource name must contains only letters, digits and the dash (-) "
+"character."
+msgstr ""
+"El nombre de la página debe contener sólo letras, dígitos y el carácter "
+"guión (-)."
+
+#: IDF/Form/WikiResourceCreate.php:55 IDF/Form/WikiResourceUpdate.php:47
+#, fuzzy
+msgid "This one line description is displayed in the list of resources."
+msgstr "Breve descripción que se mostrará en la lista de páginas."
+
+#: IDF/Form/WikiResourceCreate.php:84
+#, fuzzy
+msgid "A resource with this title already exists."
+msgstr "Una página con este título ya existe."
+
+#: IDF/Form/WikiResourceCreate.php:142
+#, fuzzy
+msgid "Initial resource creation"
+msgstr "Creación de la página inicial"
+
+#: IDF/Form/WikiResourceDelete.php:39
+#, fuzzy
+msgid ""
+"Yes, I understand that the resource and all its revisions will be deleted."
+msgstr "Sí, entiendo que la página y todas sus revisiones serán eliminados."
+
+#: IDF/Form/WikiResourceUpdate.php:89
+#, php-format
+msgid ""
+"The mime type of the uploaded file \"%1$s\" does not match the mime type of "
+"this resource \"%2$s\""
+msgstr ""
+
+#: IDF/Form/WikiResourceUpdate.php:97
+msgid "The current version of the resource and the uploaded file are equal."
+msgstr ""
+
+#: IDF/Gconf.php:60 IDF/Search/Occ.php:56
+msgid "model class"
+msgstr "clase del modelo"
+
+#: IDF/Gconf.php:66 IDF/Search/Occ.php:62
+msgid "model id"
+msgstr "id del modelo"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:3
+msgid "Project Summary"
+msgstr "Resumen del proyecto"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:6
+msgid "Issue Tracking"
+msgstr "Seguimiento de Ticket"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:8
+msgid "Project Members"
+msgstr "Miembros de proyecto"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:9
+msgid "Tabs Access and Notifications"
+msgstr "Pestañas de Accesos y Notificaciones"
+
+#: IDF/gettexttemplates/idf/admin/downloads.html.php:3
+#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3
+#: IDF/gettexttemplates/idf/admin/wiki.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/labels.html.php:3
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
List one status value per line in desired sort-order.
\n"
+"
Optionally, use an equals-sign to document the meaning of each status "
+"value.
\n"
+msgstr ""
+"\n"
+"
Instrucciones:
\n"
+"
Lista un valor por línea en el orden deseado.
\n"
+"
Si lo desea, puede utilizar un signo de igual para documentar el valor de "
+"cada estado.
The webhook URL setting specifies an URL to which a HTTP PUT"
+"strong>\n"
+"request is sent after a new download has been added or to which a HTTP "
+"POST\n"
+"request is sent after an existing download has been updated.\n"
+"If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/upload
\n"
+"
http://domain.com/upload?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each download:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%d - download id
\n"
+"
\n"
+"\n"
+"
For example, updating download 123 of project 'my-project' with\n"
+"web hook URL http://mydomain.com/%p/%d would send a POST "
+"request to\n"
+"http://mydomain.com/my-project/123.
"
+msgstr ""
+"
La configuración URL WebHook especifica una URL con una solicitud HTTP "
+"POST\n"
+"que se envía después de cada commit del repositorio. Si este campo está "
+"vacío,\n"
+"las notificaciones están desactivadas.
\n"
+"\n"
+"
Únicamente las URLs HTTP, \n"
+"se aceptan 'escapándolas' apropiadamente, por ejemplo:
\n"
+"\n"
+"
\n"
+"
http://dominio.com/commit
\n"
+"
http://dominio.com/commit?mi%20parametro
\n"
+"
\n"
+"\n"
+"
Además, la URL puede contener la siguiente notación: \"%\", que\n"
+"será reemplazada por los valores específicos del proyecto para cada commit:"
+"p>\n"
+"\n"
+"
\n"
+"
%p - nombre del proyecto
\n"
+"
%r - número de revisión
\n"
+"
\n"
+"\n"
+"
Por ejemplo, el commit de la revisión 123 del proyecto 'mi-proyecto' con "
+"URL de post-commit http://midominio.com/%p/%r enviaría la solicitud\n"
+"http://midominio.com/mi-proyecto/123.
A project owner may make any change to this project, including removing "
+"other project owners. You need to be carefull when you give owner rights."
+"p>\n"
+"
A project member will not have access to the administration area but will "
+"have more options available in the use of the project.
\n"
+msgstr ""
+"\n"
+"
Notas:
\n"
+"
El propietario de un proyecto puede hacer cualquier cambio a este "
+"proyecto, incluyendo la eliminación de otros propietarios del proyecto. "
+"¡Tienes que tener cuidado cuando das permisos de propietario!.
\n"
+"
Un miembro del proyecto no tendrá acceso al área de administración, pero "
+"tendrá más opciones disponibles para usar en el proyecto.
\n"
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:3
+msgid "You can find here the current repository configuration of your project."
+msgstr ""
+"Puede encontrar aquí la configuración actual del repositorio de su proyecto."
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:4
+#, fuzzy
+msgid ""
+"
The webhook URL setting specifies an URL to which a HTTP \n"
+"%%hook_request_method%% request is sent after each "
+"repository\n"
+"commit. If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/commit
\n"
+"
http://domain.com/commit?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each commit:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%r - revision number
\n"
+"
\n"
+"\n"
+"
For example, committing revision 123 to project 'my-project' with\n"
+"post-commit URL http://mydomain.com/%p/%r would send a request "
+"to\n"
+"http://mydomain.com/my-project/123.
"
+msgstr ""
+"
La configuración URL WebHook especifica una URL con una solicitud HTTP "
+"POST\n"
+"que se envía después de cada commit del repositorio. Si este campo está "
+"vacío,\n"
+"las notificaciones están desactivadas.
\n"
+"\n"
+"
Únicamente las URLs HTTP, \n"
+"se aceptan 'escapándolas' apropiadamente, por ejemplo:
\n"
+"\n"
+"
\n"
+"
http://dominio.com/commit
\n"
+"
http://dominio.com/commit?mi%20parametro
\n"
+"
\n"
+"\n"
+"
Además, la URL puede contener la siguiente notación: \"%\", que\n"
+"será reemplazada por los valores específicos del proyecto para cada commit:"
+"p>\n"
+"\n"
+"
\n"
+"
%p - nombre del proyecto
\n"
+"
%r - número de revisión
\n"
+"
\n"
+"\n"
+"
Por ejemplo, el commit de la revisión 123 del proyecto 'mi-proyecto' con "
+"URL de post-commit http://midominio.com/%p/%r enviaría la solicitud\n"
+"http://midominio.com/mi-proyecto/123.
"
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:26
+msgid ""
+"The form contains some errors. Please correct them to update the source "
+"configuration."
+msgstr ""
+"El formulario contiene algunos errores. Por favor, corríjalos para "
+"actualizar la configuración de las fuentes."
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:27
+msgid "Repository type:"
+msgstr "Tipo de Repositorio:"
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:28
+msgid "Repository access:"
+msgstr "Acceso Repositorio:"
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:29
+msgid "Repository size:"
+msgstr "Tamaño Respositorio:"
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
The description of the project can be improved using the Markdown syntax.
\n"
+msgstr ""
+"\n"
+"
Instrucciones:
\n"
+"
La descripción del proyecto puede ser mejorada mediante la Sintaxis de Marcado.
\n"
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:7
+msgid ""
+"The form contains some errors. Please correct them to update the summary."
+msgstr ""
+"El formulario contiene algunos errores. Por favor, corríjalos para "
+"actualizar el resumen."
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:8
+msgid "Current logo"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html~.php:4
+#: IDF/gettexttemplates/idf/base.html.php:4
+#: IDF/gettexttemplates/idf/base.html~.php:4
+#: IDF/gettexttemplates/idf/main-menu.html.php:8
+#: IDF/gettexttemplates/idf/project-list.html.php:4
+msgid "Project logo"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:10
+msgid "Your project does not have a logo configured yet."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:3
+#, fuzzy
+msgid ""
+"This section allows you to configure project tabs access rights and "
+"notifications."
+msgstr ""
+"Puede configurar aquí los permisos de acceso a las pestañas del proyecto y "
+"los mensajes de notificación."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:4
+msgid ""
+"Tab access controls whether a single user can navigate into a particular "
+"section of your project via the main menu or automatically generated object "
+"links."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:5
+#, fuzzy
+msgid ""
+"If you mark a project as private, only the project members and "
+"administrators, together with the extra authorized users you provide will "
+"have access to the project as a whole. You will still be able to define "
+"further access rights for the different tabs but the \"Open to all\" and "
+"\"Signed in users\" will default to authorized users only."
+msgstr ""
+"Si marca un proyecto como privado, sólo los miembros del proyecto y los "
+"administradores, junto con los usuarios adicionales autorizados tendrán "
+"acceso al proyecto. Podrá definir nuevos permisos de acceso para las "
+"diferentes pestañas, pero \"Abierto a todos\" y \"Usuarios Registrados\" se "
+"establecerán por defecto para autorizar usuarios."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:6
+#, fuzzy
+msgid ""
+"For the extra authorized user list, specify each person by its login. Each "
+"person must have already registered with the given login. Separate the "
+"logins with commas and/or new lines."
+msgstr ""
+"Especifique cada persona con su usuario. Cada persona debe haberse "
+"registrado con el usuario proporcionado. Separe los usuarios con comas y/o "
+"nueva línea."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:7
+#, fuzzy
+msgid ""
+"Only project members and admins have write access to the source. If you "
+"restrict the access to the source, anonymous access is not provided and the "
+"users must authenticate themselves with their password or SSH key."
+msgstr ""
+"\n"
+"Solo los miembros del proyecto y los administradores tienen acceso de "
+"escritura sobre las fuentes. \n"
+"Si restringe el acceso a las fuentes, el acceso anónimo, \n"
+"no estará habilitado y los usuarios deberán autentificarse con su \n"
+"contraseña o clave SSH."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
+#, php-format
+msgid ""
+"Here you can configure who should be notified about changes in a particular "
+"section. You can also configure additional addresses, like the one of a "
+"mailing list, that should be notified. (Keep in mind that you might have to "
+"register the sender address %%from_email%% to let the "
+"mailing list actually accept notification emails.) Multiple email addresses "
+"must be separated through commas (',')."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:9
+msgid ""
+"The form contains some errors. Please correct them to update the access "
+"rights."
+msgstr ""
+"El formulario contiene algunos errores. Por favor, corríjalos para "
+"actualizar los derechos de acceso."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
+msgid "Access Rights"
+msgstr "Derechos de Acceso"
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:11
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
+#, fuzzy
+msgid "Notifications"
+msgstr "Notificación por email"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:3
+#: IDF/gettexttemplates/idf/base-full.html~.php:3
+#: IDF/gettexttemplates/idf/base.html.php:3
+#: IDF/gettexttemplates/idf/base.html~.php:3
+#, php-format
+msgid ""
+"Sign in or create your account to create issues or "
+"add comments"
+msgstr ""
+"Accede o create una cuenta para crear tickets y "
+"añadir comentarios"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:6
+#: IDF/gettexttemplates/idf/base.html.php:6
+#: IDF/gettexttemplates/idf/project-list.html.php:6
+msgid "External link to project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html~.php:6
+#: IDF/gettexttemplates/idf/base.html.php:7
+#: IDF/gettexttemplates/idf/base.html~.php:6
+msgid "Project Home"
+msgstr "Inicio del Proyecto"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:13
+#: IDF/gettexttemplates/idf/base-full.html~.php:12
+#: IDF/gettexttemplates/idf/base.html.php:13
+#: IDF/gettexttemplates/idf/base.html~.php:12
+msgid "Project Management"
+msgstr "Gestión de Proyecto"
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:4
+#: IDF/gettexttemplates/idf/downloads/index.html.php:4
+#: IDF/Views/Download.php:235
+msgid "New Download"
+msgstr "Nueva descarga"
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:5
+#, fuzzy
+msgid "Upload Archive"
+msgstr "Archivo"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:3
+msgid ""
+"Each file must have a distinct name and file contents\n"
+"cannot be changed, so be sure to include release numbers in each file\n"
+"name."
+msgstr ""
+"Cada archivo debe tener un nombre distinto y el contenido del archivo\n"
+"no se puede cambiar, así que asegúrese de incluir los números de versión en "
+"el nombre de cada\n"
+"archivo."
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:6
+#, php-format
+msgid ""
+"You can use the Markdown syntax for the description."
+msgstr ""
+"Puede usar sintaxis de Marcado para la descripción."
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:7
+msgid "The form contains some errors. Please correct them to submit the file."
+msgstr ""
+"El formulario contiene algunos errores. Por favor, corríjalo para enviar el "
+"archivo."
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:8
+msgid "Submit File"
+msgstr "Enviar Archivo"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:9
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:8
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:21
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:14
+#: IDF/gettexttemplates/idf/issues/create.html.php:14
+#: IDF/gettexttemplates/idf/issues/view.html.php:27
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:7
+#: IDF/gettexttemplates/idf/register/index.html.php:8
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:5
+#: IDF/gettexttemplates/idf/review/create.html.php:12
+#: IDF/gettexttemplates/idf/review/view.html.php:41
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:5
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:13
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:5
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:10
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:9
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:6
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:6
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:6
+msgid "Instructions"
+msgstr "Instrucciones"
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:3
+msgid ""
+"The archive must include a manifest.xml file with meta "
+"information about the\n"
+"files to process inside the archive. All processed files must be unique or "
+"replace existing files explicitely."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:5
+#, fuzzy, php-format
+msgid ""
+"You can learn more about the archive format here."
+msgstr ""
+"Si aún no tienes una cuenta, puedes crear una aquí."
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:6
+#, fuzzy
+msgid ""
+"The form contains some errors. Please correct them to submit the archive."
+msgstr ""
+"El formulario contiene algunos errores. Por favor, corríjalo para enviar el "
+"archivo."
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:7
+#, fuzzy
+msgid "Submit Archive"
+msgstr "Enviar Archivo"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:3
+msgid ""
+"Attention! If you want to delete a specific version of your "
+"software, maybe, someone is depending on this specific version to run his "
+"systems. Are you sure, you will not affect anybody when removing this file?"
+msgstr ""
+"¡Atención! Si desea eliminar una versión específica del "
+"software, tal vez, alguien está utilizando esta versión específica para "
+"ejecutarlo en su sistema. ¿Estás seguro de que no afectará a nadie cuando se "
+"elimine este archivo?"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:4
+#, php-format
+msgid ""
+"Instead of deleting the file, you could mark it as "
+"deprecated."
+msgstr ""
+"En lugar de borrar el archivo, puede marcarlo como "
+"obsoleto."
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:5
+#: IDF/gettexttemplates/idf/downloads/view.html.php:4
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:4
+#: IDF/gettexttemplates/idf/issues/view.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:5
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:7
+#, php-format
+msgid "by %%submitter%%"
+msgstr "por %%submitter%%"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:6
+msgid "Delete File"
+msgstr "Eliminar archivo"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:8
+#: IDF/gettexttemplates/idf/downloads/view.html.php:14
+msgid "Uploaded:"
+msgstr "Subido por:"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:9
+#: IDF/gettexttemplates/idf/downloads/view.html.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:29
+#: IDF/gettexttemplates/idf/review/view.html.php:27
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:14
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:15
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:17
+msgid "Updated:"
+msgstr "Actualización:"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6
+#: IDF/gettexttemplates/idf/listProjects.html.php:17
+msgid "Downloads:"
+msgstr "Descargas:"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:11
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:17
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml~.php:6
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:10
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:21
+#: IDF/gettexttemplates/idf/issues/view.html.php:33
+#: IDF/gettexttemplates/idf/project-list.html.php:8
+#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:13
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:16
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:12
+#: IDF/IssueComment.php:157 IDF/Wiki/PageRevision.php:204
+msgid "Labels:"
+msgstr "Etiquetas:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3
+msgid "A new file is available for download:"
+msgstr "Un nuevo archivo está disponible desde descargas:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:4
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:5
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:8
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:4
+msgid "Hello,"
+msgstr "Hola,"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:5
+msgid "Project:"
+msgstr "Proyecto:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:6
+msgid "Submitted by:"
+msgstr "Enviado por:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:8
+msgid "Download:"
+msgstr "Descarga:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:10
+#: IDF/gettexttemplates/idf/review/view.html.php:31
+#: IDF/gettexttemplates/idf/user/public.html.php:4
+msgid "Description:"
+msgstr "Descripción:"
+
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:3
+msgid "A file download was updated:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3
+msgid "Details"
+msgstr "Detalles"
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:3
+#, php-format
+msgid "See the deprecated files."
+msgstr "Ver archivos obsoletos."
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:5
+msgid "Number of files:"
+msgstr "Número de archivos:"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:3
+msgid ""
+"Attention! This file is marked as deprecated, download it "
+"only if you are sure you need this specific version."
+msgstr ""
+"¡Atención! Este archivo está marcado como obsoleto, "
+"descárgalo sólo si está seguro de que necesita esta versión específica."
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:5
+msgid "md5:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:6
+msgid "Changes"
+msgstr "Cambios"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:7
+msgid "The form contains some errors. Please correct them to update the file."
+msgstr ""
+"El formulario contiene algunos errores. Por favor, corríjalos para "
+"actualizar el archivo."
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:8
+msgid "Update File"
+msgstr "Actualizar archivo"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:12
+msgid "Remove this file"
+msgstr "Eliminar este archivo"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:18
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:12
+msgid "Trash"
+msgstr "Papelera"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:13
+msgid "Delete this file"
+msgstr "Eliminar este archivo"
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:3
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:3
+#: IDF/gettexttemplates/idf/faq.html.php:65
+msgid "Here we are, just to help you."
+msgstr "Aquí estamos, para ayudarte."
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:4
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:4
+#: IDF/gettexttemplates/idf/faq.html.php:66
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:4
+#: IDF/gettexttemplates/idf/index.html.php:4 IDF/Views/Admin.php:77
+#: IDF/Views.php:91
+msgid "Projects"
+msgstr "Proyectos"
+
+#: IDF/gettexttemplates/idf/faq.html.php:3
+#, fuzzy
+msgid ""
+"
This is simple:
\n"
+"\n"
+"
Write in the comments \"This is a duplicate of issue 123\" or - if you "
+"are a member of the crew -\n"
+"directly add the \"duplicates\" relation with the value \"123\" below the "
+"comment field. Change \"123\"\n"
+"with the corresponding issue number.
\n"
+"
Change the status of the current issue to Duplicate.
\n"
+"
Submit the changes.
\n"
+""
+msgstr ""
+"
Es simple:
\n"
+"\n"
+"
Escribe en los comentarios \"Esto es una duplicado del ticket 123\", "
+"cambia 123 por el número de ticket correspondiente.
"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:36
+#, fuzzy, php-format
+msgid "Learn more about the archive format."
+msgstr "Obtener más información sobre la API."
+
+#: IDF/gettexttemplates/idf/faq.html.php:37
+msgid ""
+"The API (Application Programming Interface) is used to interact with "
+"InDefero with another program. For example, this can be used to create a "
+"desktop program to submit new tickets easily."
+msgstr ""
+"La API (Interfazaz de Programación de la Aplicación ) se utiliza para "
+"interactuar InDefero con otro programa. Por ejemplo, puede ser usado en la "
+"creación de un programa de escritorio para enviar nuevos tickets con "
+"facilidad."
+
+#: IDF/gettexttemplates/idf/faq.html.php:38
+#, php-format
+msgid "Learn more about the API."
+msgstr "Obtener más información sobre la API."
+
+#: IDF/gettexttemplates/idf/faq.html.php:39
+#: IDF/gettexttemplates/idf/faq.html.php:45
+msgid "What are the keyboard shortcuts?"
+msgstr "¿Cuáles son los métodos abreviados de teclado?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:40
+#: IDF/gettexttemplates/idf/faq.html.php:60
+msgid "How to mark an issue as duplicate?"
+msgstr "¿Cómo marcar un ticket como duplicado?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:41
+#: IDF/gettexttemplates/idf/faq.html.php:61
+msgid "How can I display my head next to my comments?"
+msgstr "¿Cómo puedo mostrar mi avatar al lado de mis comentarios?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:42
+#: IDF/gettexttemplates/idf/faq.html.php:62
+msgid "How can I embed images and other resources in my documentation pages?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:43
+#: IDF/gettexttemplates/idf/faq.html.php:63
+msgid "What is this \"Upload Archive\" functionality about?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:44
+#: IDF/gettexttemplates/idf/faq.html.php:64
+msgid "What is the API and how is it used?"
+msgstr "¿Que es la API y cómo se usa?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:46
+msgid "Shift+h: This help page."
+msgstr "Shift+h: Página de ayuda."
+
+#: IDF/gettexttemplates/idf/faq.html.php:47
+msgid "If you are in a project, you have the following shortcuts:"
+msgstr "Si estás en un proyecto, tienes los siguientes accesos directos:"
+
+#: IDF/gettexttemplates/idf/faq.html.php:48
+msgid "Shift+u: Project updates."
+msgstr "Shift+u: Actualizaciones de proyecto."
+
+#: IDF/gettexttemplates/idf/faq.html.php:49
+msgid "Shift+d: Downloads."
+msgstr "Shift+d: Descargas."
+
+#: IDF/gettexttemplates/idf/faq.html.php:50
+msgid "Shift+o: Documentation."
+msgstr "Shift+o: Documentación."
+
+#: IDF/gettexttemplates/idf/faq.html.php:51
+msgid "Shift+a: Create a new issue."
+msgstr "Shift+a: Crear un nuevo ticket."
+
+#: IDF/gettexttemplates/idf/faq.html.php:52
+msgid "Shift+i: List of open issues."
+msgstr "Shift+i: Lista de tickets abiertos."
+
+#: IDF/gettexttemplates/idf/faq.html.php:53
+msgid "Shift+m: The issues you submitted."
+msgstr "Shift+m: Tickets que has enviado."
+
+#: IDF/gettexttemplates/idf/faq.html.php:54
+msgid "Shift+w: The issues assigned to you."
+msgstr "Shift+w: Tickets que te han asignado."
+
+#: IDF/gettexttemplates/idf/faq.html.php:55
+msgid "Shift+s: Source."
+msgstr "Shift+s: Código."
+
+#: IDF/gettexttemplates/idf/faq.html.php:56
+msgid "You also have the standard access keys:"
+msgstr "También tienes las teclas de acceso estándar:"
+
+#: IDF/gettexttemplates/idf/faq.html.php:57
+msgid "Alt+1: Home."
+msgstr "Alt+1: Inicio."
+
+#: IDF/gettexttemplates/idf/faq.html.php:58
+msgid "Alt+2: Skip the menus."
+msgstr "Alt+2: Saltar los menús."
+
+#: IDF/gettexttemplates/idf/faq.html.php:59
+msgid "Alt+4: Search (when available)."
+msgstr "Alt+4: Búsqueda (cuando esté disponible)."
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
+msgid "Forge"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:5
+msgid "People"
+msgstr "Personas"
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:6
+msgid "Usher"
+msgstr "Usher"
+
+#: IDF/gettexttemplates/idf/gadmin/forge/base.html.php:3
+#, fuzzy
+msgid "Frontpage"
+msgstr "página"
+
+#: IDF/gettexttemplates/idf/gadmin/forge/index.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
You can set up a custom forge page that is used as entry page for the "
+"forge instead of the plain project listing. This page is then also "
+"accessible via the 'Home' link in main menu bar.
Additionally, the following macros are available: \n"
+"
\n"
+"
{projectlist, label=..., order=(name|activity), limit=...}"
+"code> - Renders a project list that can optionally be filtered by label, "
+"ordered by 'name' or 'activity' and / or limited to a specific number of "
+"projects.
\n"
+"
\n"
+"\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:7
+msgid "Project List"
+msgstr "Lista de Proyectos"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4
+#: IDF/Views/Admin.php:110
+#, fuzzy
+msgid "Project Labels"
+msgstr "Lista de Proyectos"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:16
+#: IDF/gettexttemplates/idf/listProjects.html.php:6 IDF/Views/Admin.php:186
+msgid "Create Project"
+msgstr "Crear proyecto"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:6
+msgid "Change Project Details"
+msgstr "Cambiar Detalles del Proyecto"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3
+msgid ""
+"You can select the type of repository you want. In the case of subversion, "
+"you can use optionally a remote repository instead of the local one."
+msgstr ""
+"Puede seleccionar el tipo de repositorio que desee. En el caso de "
+"subversión, puede utilizar opcionalmente un repositorio remoto en lugar de "
+"uno local."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:4
+msgid ""
+"Once you have defined the repository type, you cannot change it"
+"strong>."
+msgstr ""
+"Una vez que haya definido el tipo de repositorio, no se puede "
+"modificar."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:5
+msgid ""
+"\n"
+"
Specify each person by its login. Each person must have already "
+"registered with the given login.
\n"
+"
Separate the logins with commas and/or new lines.
\n"
+msgstr ""
+"\n"
+"
Especifique cada persona por su nombre de usuario. Cada persona debe "
+"estar registrada con el nombre de usuario proporcionado.
\n"
+"
Separe los nombres de usuario con comas y / o saltos de líneas.
\n"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:14
+msgid ""
+"The form contains some errors. Please correct them to create the project."
+msgstr ""
+"El formulario contiene algunos errores. Por favor, corríjalos para crear el "
+"proyecto."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:15
+msgid "Provide at least one owner for the project or use a template."
+msgstr ""
+"Proporcione al menos un propietario para el proyecto o utilice una plantilla."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:15
+msgid "Instructions:"
+msgstr "Instrucciones:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:3
+#, php-format
+msgid ""
+"Confirmation code to confirm the deletion of the project: \n"
+"%%code%%."
+msgstr ""
+"Código de confirmación para autorizar la eliminación del proyecto: \n"
+"%%code%%."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:5
+msgid ""
+"\n"
+"Attention! Deleting a project is a one second operation\n"
+"with the consequences that all the data related to the \n"
+"project will be deleted.\n"
+msgstr ""
+"\n"
+"¡Atención! Eliminar un proyecto es una operación delicada,\n"
+"que tiene como resultado borrar todos los datos del "
+"proyecto.\n"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:10
+msgid ""
+"The form contains some errors. Please correct them to delete the project."
+msgstr ""
+"El formulario contiene algunos errores. Por favor, corríjalo para eliminar "
+"el proyecto."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:11
+msgid "Project Statistics"
+msgstr "Estadísticas del proyecto"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:12
+msgid "Tab"
+msgstr "Pestaña"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:13
+msgid "Number"
+msgstr "Número"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:15
+msgid "Code reviews"
+msgstr "Revisiones del código"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:16
+#: IDF/Views/Project.php:93
+msgid "Commits"
+msgstr "Commits"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:18
+msgid "Documentation pages"
+msgstr "Páginas documentación"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:20
+msgid "Delete Project"
+msgstr "Eliminar Proyecto"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:22
+msgid ""
+"For large projects, the suppression can take a while, please be patient."
+msgstr ""
+"Para los proyectos grandes, la supresión puede tomar un tiempo, por favor, "
+"sea paciente."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:3
+msgid "Space Usage Statistics"
+msgstr "Estadísticas espacio utilizado"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:4
+msgid "Repositories:"
+msgstr "Repositorios:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:18
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:16
+msgid "Attachments:"
+msgstr "Archivos adjuntos:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7
+msgid "Database:"
+msgstr "Base de datos:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:8
+msgid "Total Forge:"
+msgstr "Total Forja:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:13
+msgid ""
+"The form contains some errors. Please correct them to update the project."
+msgstr ""
+"El formulario contiene algunos errores. Por favor, corríjalos para "
+"actualizar el proyecto."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:14
+msgid "Provide at least one owner for the project."
+msgstr "Proporcione al menos un propietario para el proyecto."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:15
+msgid "Update Project"
+msgstr "Actualizar Proyecto"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:20
+msgid "Delete this project"
+msgstr "Eliminar este proyecto"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:21
+msgid "You will be asked to confirm."
+msgstr "Se le pedirá confirmación."
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3
+#: IDF/Views/Admin.php:264
+msgid "User List"
+msgstr "Lista de usuarios"
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:13
+msgid "Update User"
+msgstr "Actualizar usuario"
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4
+msgid "Create User"
+msgstr "Crear usuario"
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3
+msgid "The form contains some errors. Please correct them to create the user."
+msgstr ""
+"El formulario contiene algunos errores. Por favor, corríjalos para crear el "
+"usuario."
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:6
+msgid "The user password will be sent by email to the user."
+msgstr "La contraseña será enviada por correo electrónico al usuario."
+
+#: IDF/gettexttemplates/idf/gadmin/users/createuser-email.txt.php:3
+#, php-format
+msgid ""
+"Hello %%user%%,\n"
+"\n"
+"An account on the forge has been created for you by\n"
+"the administrator %%admin%%.\n"
+"\n"
+"Please find here your details to access the forge:\n"
+"\n"
+" Address: %%url%%\n"
+" Login: %%user.login%%\n"
+" Password: %%password%%\n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+"Hola %%user%%,\n"
+"\n"
+"Se ha creado una cuenta en la forja para ti por el administrador %%admin%%.\n"
+"\n"
+"Aquí encontrará sus datos para acceder a la forja:\n"
+"\n"
+" Dirección: %%url%%\n"
+" Nombre de usuario: %%user.login%%\n"
+" Contraseña: %%password%%\n"
+"\n"
+"Atentamente,\n"
+"El equipo de desarrollo.\n"
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:3
+#, php-format
+msgid "See not validated users."
+msgstr "Ver usuarios sin validar."
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:4
+msgid "
You have here an overview of the users registered in the forge.
"
+msgstr ""
+"
Tiene aquí una visión general de los usuarios registrados en la forja. "
+"p>"
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:5
+msgid "Number of users:"
+msgstr "Número de usuarios:"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:3
+msgid ""
+"If you are changing the email address of the user, you\n"
+"need to ensure that you are providing a valid email\n"
+"address"
+msgstr ""
+"Si va a cambiar la dirección de correo electrónico del usuario,\n"
+"es necesario asegurarse que proporciona una dirección \n"
+"de correo electrónico válida"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:6
+msgid ""
+"If you give the user staff rights, the user will be\n"
+"able to create new projects and update other non staff users.\n"
+msgstr ""
+"Si da permisos de acceso tipo Staff, el usuario será capaz \n"
+"de crear nuevos proyectos y actualizar a otros usuarios que no sean del "
+"Staff.\n"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:9
+msgid "The form contains some errors. Please correct them to update the user."
+msgstr ""
+"El formulario contiene algunos errores. Por favor, corríjalos para "
+"actualizar el usuario."
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:4
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:4
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4
+msgid "Login:"
+msgstr "Inicio de sesión:"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:11
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:5
+msgid "Public Profile"
+msgstr "Perfil público"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:12
+msgid "Administrative"
+msgstr "Administrativo"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3
+msgid "Configured servers"
+msgstr "Servidores configurados"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:4
+#: IDF/Views/Admin.php:421
+msgid "Usher control"
+msgstr "Control Usher"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:3
+msgid "address"
+msgstr "dirección"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:4
+msgid "port"
+msgstr "puerto"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:5
+msgid "No connections found."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3
+msgid "current server status:"
+msgstr "estado actual del servidor:"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:4
+msgid "startup"
+msgstr "inicio"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:5
+msgid "shutdown"
+msgstr "apagado"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:6
+msgid "reload server configuration:"
+msgstr "Recargar la configuración del servidor:"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:7
+msgid "reload"
+msgstr "Recargar"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:11
+msgid "Status explanation"
+msgstr "Explicación del estado"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:9
+msgid "active with n total open connections"
+msgstr "activo con un total de n conexiones abiertas"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:10
+msgid "waiting for new connections"
+msgstr "esperando nuevas conexiones"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:11
+msgid "usher is being shut down, not accepting connections"
+msgstr "Usher está siendo cerrado, no aceptará conexiones"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:12
+msgid ""
+"usher is shut down, all local servers are stopped and not accepting "
+"connections"
+msgstr ""
+"Usher está apagado, todos los servidores locales están detenidos y no "
+"aceptan conexiones"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:3
+msgid "server name"
+msgstr "Nombre del servidor"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:4 IDF/Issue.php:99
+#: IDF/Review.php:102
+msgid "status"
+msgstr "estado"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:5
+msgid "action"
+msgstr "acción"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:6
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:6
+msgid "No monotone servers configured."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:7
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:7
+msgid "stop"
+msgstr "parada"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:8
+msgid "start"
+msgstr "inicio"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:9
+msgid "kill"
+msgstr "matar"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:10
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:10
+msgid "active connections"
+msgstr "conexiones activas"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:12
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:12
+msgid "remote server without open connections"
+msgstr "servidor remoto sin conexiones abiertas"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:13
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:13
+msgid "server with n open connections"
+msgstr "servidores con n conexiones abiertas"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:14
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:14
+msgid "local server running, without open connections"
+msgstr "El servidor local se está ejecutando, sin conexiones abiertas"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:15
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:15
+msgid "local server not running, waiting for connections"
+msgstr "El servidor local no se está ejecutando, a la espera de conexiones"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:16
+msgid "local server is about to stop, n connections still open"
+msgstr "El servidor local está a punto de parar, n conexiones siguen abiertas"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:17
+msgid "local server not running, not accepting connections"
+msgstr "El servidor local no se está ejecutando, no se aceptan conexiones"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:18
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:18
+msgid "usher is shut down, not running and not accepting connections"
+msgstr "Usher está apagado, no se está ejecutando y no acepta conexiones"
+
+#: IDF/gettexttemplates/idf/index.atom.php:3
+#, php-format
+msgid "Personal project feed for %%user%%."
+msgstr "Feed del proyecto personal de %%user%%."
+
+#: IDF/gettexttemplates/idf/index.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:6
+msgid "Home"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:3
+#, php-format
+msgid "Attachment to issue %%issue.id%%"
+msgstr "Archivo adjunto al ticket %%issue.id%%"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:5
+#: IDF/gettexttemplates/idf/review/view.html.php:35
+#: IDF/gettexttemplates/idf/source/commit.html.php:23
+#: IDF/gettexttemplates/idf/source/commit.html~.php:22
+#: IDF/gettexttemplates/idf/source/git/file.html.php:6
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:12
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:7
+msgid "Archive"
+msgstr "Archivo"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:6
+#: IDF/gettexttemplates/idf/source/git/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:10
+msgid "Download this file"
+msgstr "Descargar este archivo"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:7
+#: IDF/gettexttemplates/idf/issues/view.html.php:28
+#: IDF/gettexttemplates/idf/review/view.html.php:26
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:13
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:16
+msgid "Created:"
+msgstr "Creado:"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:4
+msgid "All Issues"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:5
+msgid "My Issues"
+msgstr "Mis Tickets"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:6
+msgid "My watch list"
+msgstr "Mi lista de seguimiento"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:7
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:6
+#: IDF/gettexttemplates/idf/issues/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:5
+#: IDF/gettexttemplates/idf/issues/search.html.php:8
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:5
+msgid "New Issue"
+msgstr "Nuevo Ticket"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:8
+#: IDF/gettexttemplates/idf/wiki/base.html.php:9
+msgid "Search"
+msgstr "Búsqueda"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:9
+msgid "Back to the issue"
+msgstr "Volver al ticket"
+
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:3
+#, php-format
+msgid ""
+"
"
+
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:3
+#, fuzzy
+msgid "A new issue has been created and assigned to you:"
+msgstr ""
+"Un nuevo ticket ha sido creado y asignado\n"
+"a tí:"
+
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:4
+#, fuzzy
+msgid "A new issue has been created:"
+msgstr "Un nuevo commit se ha creado:"
+
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:8
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:8
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:11
+msgid "Reported by:"
+msgstr "Reportado por:"
+
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:19
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:17
+msgid "Issue:"
+msgstr "Tickets:"
+
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:3
+#, fuzzy
+msgid "The following issue you are owning has been updated:"
+msgstr "El ticket siguiente se ha actualizado:"
+
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:4
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:3
+msgid "The following issue has been updated:"
+msgstr "El ticket siguiente se ha actualizado:"
+
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:4
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:4
+#, php-format
+msgid "By %%who%%, %%c.creation_dtime%%:"
+msgstr "Por %%who%%, %%c.creation_dtime%%:"
+
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:10
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:9
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:8
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:12
+msgid "URL:"
+msgstr "URL:"
+
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:12
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:11
+msgid "Comments (last first):"
+msgstr "Comentarios (más reciente primero):"
+
+#: IDF/gettexttemplates/idf/issues/search.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:3
+#, fuzzy
+msgid "View all open issues."
+msgstr "Esta tabla muestra los tickets abiertos."
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:4
+#, fuzzy
+msgid "Create an issue."
+msgstr "Crear usuario"
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:5
+#, php-format
+msgid ""
+"The issue tracker is empty. Create your "
+"first issue."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:6
+#: IDF/gettexttemplates/idf/issues/summary.html~.php:4
+#, php-format
+msgid "Unresolved: By %%key%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:7
+#: IDF/gettexttemplates/idf/issues/summary.html~.php:5
+msgid "Status Summary"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:8
+#: IDF/gettexttemplates/idf/issues/summary.html~.php:6
+msgid "Unresolved: By Assignee"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html~.php:3
+#, php-format
+msgid ""
+"The issue tracker is empty. You can create your first issue here."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:3
+#, php-format
+msgid ""
+"See the %%nb_submit_closed%% closed."
+msgid_plural ""
+"See the %%nb_submit_closed%% closed."
+msgstr[0] ""
+"Ver %%nb_submit_closed%% tickets cerrado"
+"a>."
+msgstr[1] ""
+"Ver %%nb_submit_closed%% cerrado."
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:4
+#, php-format
+msgid ""
+"See the %%nb_owner_closed%% closed."
+msgid_plural ""
+"See the %%nb_owner_closed%% closed."
+msgstr[0] ""
+"Ver %%nb_owner_closed%% tickets cerrado."
+msgstr[1] ""
+"Ver %%nb_owner_closed%% cerrado."
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:6
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:7
+msgid "Submitted issues:"
+msgstr "Tickets enviados:"
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:7
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:6
+msgid "Working issues:"
+msgstr "Tickets en curso:"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:3
+#, php-format
+msgid "Reported by %%submitter%%, %%c.creation_dtime%%"
+msgstr "Reportado por %%submitter%%, %%c.creation_dtime%%"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:4
+#: IDF/gettexttemplates/idf/review/view.html.php:22
+#, php-format
+msgid ""
+"Comment %%i%% by %%submitter%%, %%c.creation_dtime%%"
+msgstr ""
+"Comentario %%i%% por %%submitter%%, %%c."
+"creation_dtime%%"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:5
+#, php-format
+msgid "Sign in to reply to this comment."
+msgstr "Accede para contestar a este comentario."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:6
+msgid ""
+"This issue is marked as closed, add a comment only if you think this issue "
+"is still valid and more work is needed to fully fix it."
+msgstr ""
+"Este ticket fue marcado como cerrado, añade un comentario sólo si crees que "
+"este problema sigue activo y se necesita más trabajo hasta su completa "
+"revisión."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:8
+#, php-format
+msgid "%%interested%% person"
+msgid_plural "%%interested%% persons"
+msgstr[0] "%%interested%% persona"
+msgstr[1] "%%interested%% personas"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:9
+#, php-format
+msgid "This issue %%verb%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:10
+msgid "Remove this issue from your watch list"
+msgstr "Eliminar este ticket de mi lista de seguimiento"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:11
+msgid "Add this issue to your watch list"
+msgstr "Añadir este ticket a mi lista de seguimiento"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:12
+#, fuzzy
+msgid "View the previous closed issue"
+msgstr "Haga clic aquí para ver el anterior ticket cerrado"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:13
+#, fuzzy
+msgid "View the previous open issue"
+msgstr "Haga clic aquí para ver el anterior ticket abierto"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:14
+#, fuzzy
+msgid "View the next closed issue"
+msgstr "Haga clic aquí para ver la siguiente ticket cerrado"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:15
+#, fuzzy
+msgid "View the next open issue"
+msgstr "Haga clic aquí para ver la siguiente ticket abierto"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:16
+msgid "download"
+msgstr "descarga"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:17
+msgid "view"
+msgstr "ver"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:23
+msgid "The form contains some errors. Please correct them to change the issue."
+msgstr ""
+"El formulario contiene algunos errores. Por favor, corríjalos para "
+"actualizar el ticket."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:25
+msgid "Submit Changes"
+msgstr "Enviar cambios"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:32
+msgid "Followed by:"
+msgstr "Seguido por:"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:3
+#, fuzzy, php-format
+msgid "1 project"
+msgid_plural "%%label.project_count%% projects"
+msgstr[0] "proyecto"
+msgstr[1] "proyecto"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:4
+#, php-format
+msgid "Remove filter for %%tag%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:5
+msgid "No projects managed with InDefero were found."
+msgstr "No se encontraron proyectos gestionados con InDefero."
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:7
+msgid "Filter projects by label"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:8
+#, fuzzy
+msgid "No projects with labels found."
+msgstr "No se encontraron proyectos."
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:9
+msgid "Order"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:10
+#, fuzzy
+msgid "By name"
+msgstr "nombre"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:11
+msgid "By activity"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:12
+msgid "Filtered project stats"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:13
+msgid "Members:"
+msgstr "Miembros:"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:14
+msgid "Issues:"
+msgstr "Tickets:"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:15
+msgid "Commits:"
+msgstr "Commits"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:16
+msgid "Documentations:"
+msgstr "Documentación:"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:18
+msgid "Code reviews:"
+msgstr "Revisiones del código:"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:3
+#, fuzzy, php-format
+msgid ""
+"You can create an account if you don't have one yet."
+msgstr ""
+"Puede usar sintaxis de Marcado para la descripción."
+
+#: IDF/gettexttemplates/idf/login_form.html.php:4
+msgid "What is your account information?"
+msgstr "¿Cuál es la información de su cuenta?"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:5
+msgid "My login is"
+msgstr "Mi identificador es"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:6
+msgid "My password is"
+msgstr "Mi contraseña es"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:7
+msgid "Sign in"
+msgstr "Ingresar"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:8
+msgid "I lost my password!"
+msgstr "¡He perdido mi contraseña!"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:9
+msgid "Welcome."
+msgstr "Bienvenido."
+
+#: IDF/gettexttemplates/idf/login_form.html.php:10
+msgid "It takes less than a minute to create your account."
+msgstr "Se tarda menos de un minuto en crearte una cuenta."
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:3
+#, php-format
+msgid ""
+"Welcome, %%user%%."
+msgstr ""
+"Bienvenido, %%user%%"
+"strong>."
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:4
+msgid "Sign Out"
+msgstr "Salir"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:5
+msgid "Sign in or create your account"
+msgstr "Accede o create una cuenta"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:10 IDF/Views/Admin.php:40
+msgid "Forge Management"
+msgstr "Gestión de la Forja"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:11
+msgid "Help and accessibility features"
+msgstr "Ayuda y características de accesibilidad"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:12
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:14
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:14
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:15
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13
+msgid "Help"
+msgstr "Ayuda"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:3
+#: IDF/gettexttemplates/idf/project/timeline.html.php:4 IDF/Views.php:46
+msgid "Welcome"
+msgstr "Bienvenido"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:4
+#: IDF/gettexttemplates/idf/project/timeline.html.php:5
+msgid "Latest Updates"
+msgstr "Últimas actualizaciones"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:5
+msgid "Featured Downloads"
+msgstr "Descargas destacadas"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:6
+#, fuzzy
+msgid "Show more featured downloads"
+msgstr "Descargas destacadas"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:7
+#: IDF/gettexttemplates/idf/project/home.html.php:10
+msgid "show more..."
+msgstr "ver más..."
+
+#: IDF/gettexttemplates/idf/project/home.html.php:8
+msgid "Featured Documentation"
+msgstr "Documentación destacada"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:9
+#, fuzzy
+msgid "Show more featured documentation"
+msgstr "Documentación destacada"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:11
+msgid "Development Team"
+msgstr "Equipo de Desarrollo"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:12
+msgid "Admins"
+msgstr "Administradores"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:13
+msgid "Happy Crew"
+msgstr "Equipo Feliz"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:3
+msgid "Latest updates"
+msgstr "Últimas actualizaciones"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:6
+#: IDF/Views/Project.php:90
+msgid "All Updates"
+msgstr "Todas las actualizaciones"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:7
+msgid "Filter by type"
+msgstr "Filtrar por tipo"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:8
+msgid "Subscribe to this timeline"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:9
+msgid "RSS"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:10
+msgid "Atom feed"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/project-list.html.php:3
+msgid "Project activity: %%activity%%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/project-list.html.php:9
+msgid "n/a"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"You have requested the creation of an account to\n"
+"participate in the life of a software project.\n"
+"\n"
+"To confirm the account please follow this link:\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Alternatively, go to this page:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"and provide the following confirmation key:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"If you are not interested any longer in taking\n"
+"part in the life of the software project or if\n"
+"you can't remember having requested the creation\n"
+"of an account, please excuse us and simply ignore\n"
+"this email. \n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+"Hola,\n"
+"\n"
+"Has solicitado la creación de una cuenta para\n"
+"participar en el desarrollo de un proyecto software.\n"
+"\n"
+"Para confirmar la cuenta, por favor siga este enlace:\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Alternativamente, vaya a esta página:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"y proporcione la siguiente clave de confirmación:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"Si no está interesado en participar en el desarrollo de un \n"
+"proyecto software o si\n"
+"no recuerdas haber solicitado la creación de una cuenta,\n"
+"por favor, perdone y simplemente ignore \n"
+"este mensaje. \n"
+"\n"
+"Atentamente,\n"
+"El equipo de desarrollo.\n"
+
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:3
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:3
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:3
+msgid "Oops, please check the form for errors."
+msgstr "Oups, por favor revise los errores del formulario."
+
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5
+msgid "Email:"
+msgstr "Email:"
+
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:6
+msgid "Enable Your Account"
+msgstr "Activar tu cuenta"
+
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:8
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:8
+msgid ""
+"This is the last step, but just be sure to have the cookies enabled"
+"strong> to log in afterwards."
+msgstr ""
+"Este es el último paso, pero asegúrese de tener las cookies "
+"activadas para identificarte."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:3
+#, fuzzy
+msgid ""
+"Read the terms and conditions – "
+"basically \"Please be nice, we respect you\"."
+msgstr ""
+"Lea los términos y condiciones "
+"– basicamente \"Por favor, sea amable y respetuoso\"."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:4
+#, fuzzy, php-format
+msgid ""
+"If you have just forgotten your login information, then there is no need to "
+"create a new account. You can just recover your login "
+"name and password."
+msgstr ""
+"Si ha olvidado los datos de acceso, entonces no tiene porque crear una nueva "
+"cuenta. Simplemente haga click aquí para recuperar "
+"su nombre de usuario y contraseña."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:5
+#, php-format
+msgid ""
+"With your account, you will able to participate in the life of all the "
+"projects hosted here. Participating in a software project must be fun, so if "
+"you have troubles, you can let us know about your issues "
+"at anytime!"
+msgstr ""
+"Con su cuenta, será capaz de participar en el desarrollo de todos los "
+"proyectos alojados aquí. Participar en un proyecto software tiene que ser "
+"algo divertido e interesante, así que si tiene problemas, puede ¡hacernos saber cuáles son sus inquietudes en cualquier momento"
+"a>!"
+
+#: IDF/gettexttemplates/idf/register/index.html.php:6
+msgid "Oops, please check the provided login and email address to register."
+msgstr ""
+"Oups, por favor comprueba el nombre de usuario y dirección de correo "
+"electrónico de registro."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:7 IDF/Views.php:137
+msgid "Create Your Account"
+msgstr "Crea tu cuenta"
+
+#: IDF/gettexttemplates/idf/register/index.html.php:9
+msgid ""
+"Be sure to provide a valid email address, as we are sending a validation "
+"link by email."
+msgstr ""
+"Asegúrese de proporcionar una dirección válida de correo electrónico, ya que "
+"se enviará un enlace de confirmación por correo electrónico."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:10
+msgid "Did you know?"
+msgstr "¿Sabía que?"
+
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:3
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:3
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:3
+msgid "Oops, we found an error in the form."
+msgstr "Oups, se encontró un error en el formulario."
+
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:4
+msgid "Confirm Your Account"
+msgstr "Confirma tu cuenta"
+
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:7
+msgid ""
+"Use your email software to read your emails and open your confirmation "
+"email. Either click directly on the confirmation link or copy/paste the "
+"confirmation key in the box and submit the form."
+msgstr ""
+"Utilice su software de correo electrónico para abrir y leer el email de "
+"confirmación. Puede hacer clic directamente en el enlace de confirmación o "
+"copiar y pegar la clave de confirmación y enviar el formulario."
+
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:8
+msgid ""
+"Just after providing the confirmation key, you will be able to set your "
+"password and start using this website fully."
+msgstr ""
+"Sólo después de proporcionar la clave de confirmación, será capaz de "
+"establecer su contraseña y empezar a usar completamente el sitio web."
+
+#: IDF/gettexttemplates/idf/review/base-full.html.php:3
+#: IDF/gettexttemplates/idf/review/base.html.php:3
+msgid "Open Reviews"
+msgstr "Revisiones abiertas"
+
+#: IDF/gettexttemplates/idf/review/base.html.php:4
+#: IDF/gettexttemplates/idf/review/create.html.php:11
+#: IDF/gettexttemplates/idf/review/index.html.php:3 IDF/Views/Review.php:83
+msgid "Start Code Review"
+msgstr "Iniciar revisión del Código"
+
+#: IDF/gettexttemplates/idf/review/create.html.php:3
+msgid ""
+"
"
+
+#: IDF/gettexttemplates/idf/review/create.html.php:9
+msgid ""
+"The form contains some errors. Please correct them to submit the code review."
+msgstr ""
+"El formulario contiene algunos errores. Por favor, corríjalos para enviar la "
+"revisión de código."
+
+#: IDF/gettexttemplates/idf/review/create.html.php:10
+msgid ""
+"Select the commit against which you created your patch to be sure it applies "
+"correctly."
+msgstr ""
+"Seleccione el commit contra el que creó el parche para asegurarse de que se "
+"aplica correctamente."
+
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:3
+msgid "The following review has been created:"
+msgstr "La siguiente revisión se ha creado:"
+
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:10
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:16
+msgid "Review:"
+msgstr "Revisión:"
+
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:3
+msgid "The following review has been updated:"
+msgstr "La siguiente revisión se ha actualizado:"
+
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:5
+#, php-format
+msgid ""
+"By %%who%%, %%c.creation_dtime%%, on file:\n"
+"%%c.cfile%%\n"
+msgstr ""
+"Por %%who%%, %%c.creation_dtime%%, en el archivo:\n"
+"%%c.cfile%%\n"
+
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:14
+msgid "General comments (last first):"
+msgstr "Comentarios generales (más reciente primero):"
+
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:15
+msgid "Detailed file comments (last first):"
+msgstr "Comentarios detallados del archivo (más reciente primero):"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:3
+msgid ""
+"Code review is a process in which\n"
+"after or before changes are commited into the code repository,\n"
+"different people discuss the code changes. The goal is\n"
+"to improve the quality of the code and the\n"
+"contributions, as such, you must be pragmatic when writing\n"
+"your review. Correctly mention the line numbers (in the old or in the\n"
+"new file) and try to keep a good balance between seriousness and fun.\n"
+msgstr ""
+"La revisión de código es una proceso en el que\n"
+"antes o después los cambios son commited en el código del repositorio,\n"
+"diferentes personas discuten sobre los cambios en el código. El objetivo "
+"es \n"
+"mejorar la calidad del código y las\n"
+"contribuciones, por esto, debe ser pragmático cuando escriba \n"
+"sus comentarios. Menciona correctamente los números de línea (tanto en el "
+"antiguo como en el \n"
+"nuevo código) y trata de mantener un buen equilibrio entre seriedad y "
+"diversión\n"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:11
+msgid ""
+"\n"
+"Proposing code for review is intimidating, you know\n"
+"you will receive critics, so please, as a reviewer, keep this\n"
+"process fun, use it to help your contributor learn your\n"
+"coding standards and the structure of the code and make them want\n"
+"to propose more contributions.\n"
+msgstr ""
+"\n"
+"La propuesta para revisar código es intimidante, debes "
+"saber \n"
+"que recibirás críticas, así que por favor, como revisor, haz que "
+"este \n"
+"proceso sea divertido, úsalo para para ayudar al colaborador a "
+"aprender tus \n"
+"normas de codificación y a estructurar el código y hacer que \n"
+"quieran proponer más contribuciones.\n"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:18
+#: IDF/gettexttemplates/idf/source/commit.html.php:3
+#: IDF/gettexttemplates/idf/source/commit.html~.php:3
+#, php-format
+msgid "%%ndiff%% diff"
+msgid_plural "%%ndiff%% diffs"
+msgstr[0] "%%ndiff%% diferencia"
+msgstr[1] "%%ndiff%% diferencias"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:19
+#, php-format
+msgid "%%nc%% comment"
+msgid_plural "%%nc%% comments"
+msgstr[0] "%%nc%% comentario"
+msgstr[1] "%%nc%% comentarios"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:20
+#, php-format
+msgid ""
+"Comment %%i%% by %%who%%, "
+"%%c.creation_dtime%%"
+msgstr ""
+"Comentario %%i%% por %%who%%"
+"a>, %%c.creation_dtime%%"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:21
+#, php-format
+msgid "Your comments on the changes in file %%file%%:"
+msgstr "Tus comentarios sobre los cambios en el archivo %%file%%:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:23
+#, php-format
+msgid "Sign in to participate in the review."
+msgstr "Accede para participar en la revisión."
+
+#: IDF/gettexttemplates/idf/review/view.html.php:24
+msgid ""
+"The form contains some errors. Please correct them to submit your review."
+msgstr ""
+"El formulario contiene algunos errores. Por favor, corríjalos para enviar su "
+"revisión."
+
+#: IDF/gettexttemplates/idf/review/view.html.php:25
+msgid "How to Participate in a Code Review"
+msgstr "Cómo participar en una revisión de código"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:28
+#: IDF/gettexttemplates/idf/source/commit.html.php:5
+#: IDF/gettexttemplates/idf/source/commit.html~.php:5
+msgid "Author:"
+msgstr "Autor:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:29
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/source/commit.html.php:7
+#: IDF/gettexttemplates/idf/source/commit.html~.php:7
+msgid "Commit:"
+msgstr "Commit:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:30
+#: IDF/gettexttemplates/idf/source/commit.html.php:8
+#: IDF/gettexttemplates/idf/source/commit.html~.php:8
+msgid "View corresponding source tree"
+msgstr "Ver código fuente correspondiente"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:32
+msgid "Reviewers:"
+msgstr "Revisores:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:33
+msgid "No reviewers at the moment."
+msgstr "Sin revisores en este momento."
+
+#: IDF/gettexttemplates/idf/review/view.html.php:34
+msgid "Files:"
+msgstr "Archivos:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:36
+#: IDF/gettexttemplates/idf/source/commit.html.php:24
+#: IDF/gettexttemplates/idf/source/commit.html~.php:23
+msgid "Download the corresponding diff file"
+msgstr "Descargue el correspondiente archivo diff"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:37
+msgid "General Comments"
+msgstr "Comentarios generales"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:40
+msgid "Submit Code Review"
+msgstr "Enviar Revisión del Código"
+
+#: IDF/gettexttemplates/idf/source/base.html.php:3
+msgid "Source Tree"
+msgstr "Árbol de las fuentes"
+
+#: IDF/gettexttemplates/idf/source/base.html.php:4
+msgid "Change Log"
+msgstr "Listado de cambios"
+
+#: IDF/gettexttemplates/idf/source/base.html.php:6
+msgid "How To Get The Code"
+msgstr "Cómo obtener el Código"
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:3
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:7
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8
+#: IDF/Views/Project.php:190
+msgid "Age"
+msgstr "Edad"
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:4
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:8
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:8
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:9
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10
+msgid "Message"
+msgstr "Mensaje"
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:5
+msgid "Parent:"
+msgstr "Padres:"
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:6
+#: IDF/gettexttemplates/idf/source/commit.html.php:10
+#: IDF/gettexttemplates/idf/source/commit.html~.php:10
+msgid "View corresponding commit"
+msgstr "Ver commit correspondiente"
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:8
+msgid "by"
+msgstr "por"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:3
+msgid "A new commit has been created:"
+msgstr "Un nuevo commit se ha creado:"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:8
+msgid "Created by:"
+msgstr "Creado por:"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8
+msgid "Created at:"
+msgstr "Creado el:"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:8
+msgid "Content:"
+msgstr "Contenido:"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10
+msgid "Commit details:"
+msgstr "Detalles del commit:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:4
+#: IDF/gettexttemplates/idf/source/commit.html~.php:4
+msgid "Date:"
+msgstr "Fecha:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:6
+#: IDF/gettexttemplates/idf/source/commit.html~.php:6
+msgid "Branch:"
+msgstr "Branch:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:9
+#: IDF/gettexttemplates/idf/source/commit.html~.php:9
+msgid "Parents:"
+msgstr "Padres:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:11
+#: IDF/gettexttemplates/idf/source/commit.html~.php:11
+msgid "Message:"
+msgstr "Mensaje:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:12
+#: IDF/gettexttemplates/idf/source/commit.html~.php:12
+#: IDF/gettexttemplates/idf/wiki/feedfragment-page.xml.php:3
+#: IDF/gettexttemplates/idf/wiki/feedfragment-resource.xml.php:3
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:10
+msgid "Changes:"
+msgstr "Cambios:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:13
+#: IDF/gettexttemplates/idf/source/commit.html~.php:13
+msgid "deleted"
+msgstr "eliminado"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:14
+#: IDF/gettexttemplates/idf/source/commit.html.php:18
+#: IDF/gettexttemplates/idf/source/commit.html~.php:14
+#: IDF/gettexttemplates/idf/source/commit.html~.php:17
+msgid "full"
+msgstr "completo"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:15
+#: IDF/gettexttemplates/idf/source/commit.html~.php:15
+msgid "renamed"
+msgstr "renombrado"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:16
+msgid "copied"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:17
+#: IDF/gettexttemplates/idf/source/commit.html~.php:16
+msgid "added"
+msgstr "añadido"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:19
+#: IDF/gettexttemplates/idf/source/commit.html~.php:18
+msgid "modified"
+msgstr "modificado"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:20
+#, fuzzy
+msgid "properties changed"
+msgstr "propiedades modificadas"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:21
+#: IDF/gettexttemplates/idf/source/commit.html~.php:20
+msgid "removed"
+msgstr "eliminado"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:22
+#: IDF/gettexttemplates/idf/source/commit.html~.php:21
+msgid "File differences"
+msgstr "Diferencias de archivos"
+
+#: IDF/gettexttemplates/idf/source/commit.html~.php:19
+msgid "properies changed"
+msgstr "propiedades modificadas"
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:3
+#, php-format
+msgid ""
+"The revision identifier %%commit%% is ambiguous and can be\n"
+"expanded to multiple valid revisions - please choose one:"
+msgstr ""
+"Identificador de la revisión %%commit%% es ambiguo y puede estar\n"
+"asociado con diferentes revisiones válidas - Por favor, elija uno:"
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:5
+msgid "Title"
+msgstr "Título"
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:6
+msgid "Author"
+msgstr "Autor"
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:7
+msgid "Date"
+msgstr "Fecha"
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:8
+msgid "Branch"
+msgstr "Branch"
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:9
+msgid "Revision"
+msgstr "Revisión"
+
+#: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3
+#, php-format
+msgid "%%cproject.name%%: Commit %%c.scm_id%%"
+msgstr "%%cproject.name%%: Commit %%c.scm_id%%"
+
+#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:3
+#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:3
+#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:3
+msgid "Branches"
+msgstr "Branches"
+
+#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:4
+#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:4
+#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:4
+msgid "filter branches"
+msgstr "Filtrar branches"
+
+#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:5
+#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:5
+#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:5
+msgid "Tags"
+msgstr "Etiquetas"
+
+#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:6
+#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:6
+msgid "filter tags"
+msgstr "Filtrar etiquetas"
+
+#: IDF/gettexttemplates/idf/source/git/file.html.php:3
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:3
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:3
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:3
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:4
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:4
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:4
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:4
+#, php-format
+msgid ""
+"Source at commit %%commit%% created "
+"%%cobject.date%%."
+msgstr ""
+"Fuente del commit %%commit%% creado "
+"%%cobject.date%%."
+
+#: IDF/gettexttemplates/idf/source/git/file.html.php:4
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:4
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:4
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:4
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:5
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:5
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:5
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:5
+#, php-format
+msgid "By %%cobject.author%%, %%cobject.title%%"
+msgstr "Por %%cobject.author%%, %%cobject.title%%"
+
+#: IDF/gettexttemplates/idf/source/git/file.html.php:5
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:5
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:5
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:5
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:6
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:6
+msgid "Root"
+msgstr "Root"
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:3
+#, php-format
+msgid ""
+"The team behind %%project%% is using\n"
+"the git software to manage the source\n"
+"code."
+msgstr ""
+"El equipo detrás de %%project%% está utilizando\n"
+"el software git para gestionar el código\n"
+"fuente."
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:6
+#, php-format
+msgid ""
+"You may need to provide your SSH key. The "
+"synchronization of your SSH key can take a couple of minutes. You can learn "
+"more about SSH key authentication."
+msgstr ""
+"Puede que tenga que proporcionar su clave SSH. La "
+"sincronización de la clave SSH puede tomar un par de minutos. Puede saber "
+"más acerca de autenticación de claves SSH."
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:6
+msgid "To make a first commit in the repository, perform the following steps:"
+msgstr ""
+"Para hacer el primer commit en el repositorio, siga los siguientes pasos:"
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:8
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:7
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:7
+#, php-format
+msgid "Find here more details on how to access %%project%% source code."
+msgstr ""
+"Encuentra aquí más detalles sobre la forma de acceso al código fuente del "
+"proyecto %%project%%."
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:9
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:8
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:8
+msgid "Command-Line Access"
+msgstr "Acceso línea de comandos"
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:10
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9
+msgid "First Commit"
+msgstr "Primer Commit"
+
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:9
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:9
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:10
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:11
+#: IDF/Views/Download.php:66 IDF/Views/Download.php:348
+msgid "Size"
+msgstr "Tamaño"
+
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:10
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:10
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:12
+msgid ":"
+msgstr ":"
+
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:12
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:12
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:13
+msgid "Download this version"
+msgstr "Descargar esta versión"
+
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:13
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:13
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:14
+msgid "or"
+msgstr "o"
+
+#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:3
+#: IDF/gettexttemplates/idf/source/invalid_revision.html~.php:3
+#, php-format
+msgid ""
+"The branch or revision %%commit%% is not valid or does not exist\n"
+"in this repository."
+msgstr ""
+"La rama o revisión %%commit%% no es válida o no existe\n"
+"en este repositorio."
+
+#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:5
+#: IDF/gettexttemplates/idf/source/invalid_revision.html~.php:5
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html.php:5
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html~.php:5
+msgid "The following list shows all available branches:"
+msgstr "La siguiente lista muestra todas las ramas disponibles:"
+
+#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:6
+#: IDF/gettexttemplates/idf/source/invalid_revision.html~.php:6
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html.php:6
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html~.php:6
+#, php-format
+msgid ""
+"If this is a new repository, the reason for this error\n"
+"could be that you have not committed and / or pushed any change so far.\n"
+"In this case please take a look at the Help page\n"
+"how to access your repository."
+msgstr ""
+"Si se trata de un nuevo repositorio, la razón de este error\n"
+"podría ser que no ha realizado ningún commit y / o push hasta el momento.\n"
+"En este caso, por favor eche un vistazo a la Página de "
+"Ayuda\n"
+"sobre cómo tener acceso a su repositorio."
+
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:3
+#, php-format
+msgid ""
+"The team behind %%project%% is using\n"
+"the Mercurial software to manage the source\n"
+"code."
+msgstr ""
+"El equipo detrás de %%project%% está utilizando\n"
+"el software Mercurial para gestionar el código\n"
+"fuente."
+
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:6
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:6
+#, php-format
+msgid ""
+"To get write access to the repository, you need to use your username and "
+"your extra password."
+msgstr ""
+"Para tener acceso de escritura al repositorio, necesita usar su nombre de "
+"usuario y su contraseña adicional."
+
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:9
+msgid "Write Access Authentication"
+msgstr "Escribe una autenticación de acceso"
+
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:3
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:3
+#, php-format
+msgid "Property %%prop%% set to %%val%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:3
+#, php-format
+msgid ""
+"The team behind %%project%% is using\n"
+"the monotone software to manage the source\n"
+"code."
+msgstr ""
+"El equipo detrás de %%project%% está utilizando\n"
+"el software monotone para administrar el código fuente."
+
+#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/commit.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/commit.html~.php:3
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:9
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:14
+msgid "Revision:"
+msgstr "Revisión:"
+
+#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:4
+#: IDF/gettexttemplates/idf/source/svn/commit.html.php:4
+#: IDF/gettexttemplates/idf/source/svn/commit.html~.php:4
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:10
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15
+msgid "Switch"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:3
+#, php-format
+msgid ""
+"The team behind %%project%% is using\n"
+"the subversion software to manage the source\n"
+"code."
+msgstr ""
+"El equipo detrás de %%project%% está utilizando\n"
+"el software subversion para gestionar el código\n"
+"fuente."
+
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html~.php:3
+#, php-format
+msgid ""
+"The revision %%commit%% is not valid or does not exist\n"
+"in this repository."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9
+msgid "Rev"
+msgstr "Rev"
+
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16
+msgid "Branches:"
+msgstr "Branches:"
+
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17
+msgid "Tags:"
+msgstr "Etiquetas:"
+
+#: IDF/gettexttemplates/idf/user/changeemail-email.txt.php:3
+#, php-format
+msgid ""
+"Hello %%user%%,\n"
+"\n"
+"To confirm that you want %%email%%\n"
+"to be your new email address, just follow this link:\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Alternatively, go to this page:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"and provide the following verification key:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"If you do not want to change your email address, \n"
+"just ignore this message.\n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+"Hola %%user%%,\n"
+"\n"
+"Para confirmar que quieres %%email%%\n"
+"como nuevo email, solo tienes que seguir este enlace:\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Alternativamente, vaya a esta página:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"y proporciona el siguiente código de verificación:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"Si no desea cambiar su dirección email, \n"
+"simplemente ignore este mensaje.\n"
+"\n"
+"Atentamente,\n"
+"El equipo de desarrollo.\n"
+
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:4
+msgid "Confirm Your New Email Address"
+msgstr "Confirme su nueva dirección de email"
+
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:7
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:7
+msgid ""
+"Use your email software to read your emails and open your verification "
+"email. Either click directly on the verification link or copy/paste the "
+"verification key in the box and submit the form."
+msgstr ""
+"Utilice su software de correo electrónico para leer su email y abrir su "
+"email de verificación. Puede hacer clic directamente en el enlace de "
+"verificación o copiar y pegar la clave de verificación en la caja y darle a "
+"enviar en el formulario."
+
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:3
+#, php-format
+msgid "Update your account."
+msgstr "Actualiza tu cuenta."
+
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:4
+#, php-format
+msgid "See your public profile."
+msgstr "Ver tu perfil público."
+
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:5
+#, php-format
+msgid "See your forge issue watch list."
+msgstr ""
+"Ver tus tickets de la lista de mantenimiento de la "
+"Forja."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:6
+msgid "Key Management"
+msgstr "Administración de claves"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:7
+msgid "Secondary Emails"
+msgstr "Emails secundarios"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:8
+msgid "Extra password"
+msgstr "Contraseña adicional"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:9
+msgid ""
+"This password is used to access some of the external systems managed by our "
+"infrastructure. It will be regenerated if you change your password."
+msgstr ""
+"Esta contraseña se utiliza para acceder a algunos de los sistemas externos "
+"gestionados por nuestra infraestructura. Se regenerará si usted cambia su "
+"contraseña."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:10
+msgid "API key"
+msgstr "Clave de API"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:11
+msgid ""
+"Your API key will be regenerated automatically if you change your password."
+msgstr ""
+"La clave de la API se regenera automáticamente si usted cambia su contraseña."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:12
+msgid "Update Your Account"
+msgstr "Actualiza tu cuenta"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:14
+msgid "Your Current Public Keys"
+msgstr "Tus claves públicas actuales"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:15
+msgid "Delete this key"
+msgstr "Eliminar esta clave"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:16
+msgid "Your additional email addresses"
+msgstr "Sus direcciones de correo electrónico adicionales."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:17
+msgid "Delete this address"
+msgstr "Eliminar esta dirección"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:18
+msgid ""
+"If possible, use your real name. By using your real name, people will have "
+"more trust in your comments and remarks."
+msgstr ""
+"Si es posible, use su nombre real. Mediante el uso de su nombre real, las "
+"personas tendrán más confianza en sus comentarios y observaciones."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:19
+msgid ""
+"The extra password is used to access some of the external systems and the "
+"API key is used to interact with this website using a program."
+msgstr ""
+"La contraseña adicional se utiliza para acceder a algunos de los sistemas "
+"externos y la clave de la API se utiliza para interactuar con este sitio web "
+"utilizando un programa."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:20
+msgid "Show API key and extra password"
+msgstr "Mostrar clave de API y contraseña adicional"
+
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3
+msgid ""
+"Oops, please check the provided login or email address to recover your "
+"password."
+msgstr ""
+"Oups, por favor comprueba el nombre de usuario o dirección de correo "
+"electrónico para recuperar su clave."
+
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:4
+msgid "Recover My Password"
+msgstr "Recuperar mi contraseña"
+
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:6
+msgid ""
+"Provide either your login or email address, if a corresponding user is found "
+"in the database, we will send you an email with the details on how to reset "
+"your password."
+msgstr ""
+"Proporcione un usuario o dirección de correo electrónico, si el usuario "
+"correspondiente se encuentra en la base de datos, le enviaremos un email con "
+"los detalles sobre cómo restablecer su contraseña."
+
+#: IDF/gettexttemplates/idf/user/passrecovery-email.txt.php:3
+#, php-format
+msgid ""
+"Hello %%user%%,\n"
+"\n"
+"You lost your password and wanted to recover it.\n"
+"To provide a new password for your account, you\n"
+"just have to follow the provided link. You will\n"
+"get a simple form to provide a new password.\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Alternatively, go to this page:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"and provide the following verification key:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"If you are not the one who requested to reset\n"
+"your password, simply ignore this email, your\n"
+"password will not be changed.\n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+"Hola %%user%%,\n"
+"\n"
+"Has perdido tu contraseña y quieres recuperarla.\n"
+"Para proporcionarte una nueva contraseña para tu cuenta, solo\n"
+"tienes que seguir el siguiente enlace. Obtendrás\n"
+"un simple formulario donde proporcionar una nueva contraseña.\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Alternativamente, puede ir a esta página:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"y proporcionar la clave de verificación siguiente:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"Si no solicitó reestablecer la contraseña,\n"
+"simplemente ignore este correo electrónico, tu\n"
+"contraseña no cambiará.\n"
+"\n"
+"Atentamente,\n"
+"El equipo de desarrollo.\n"
+
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:4
+msgid "Recover Your Password"
+msgstr "Recuperar contraseña"
+
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:8
+msgid ""
+"Just after providing the confirmation key, you will be able to reset your "
+"password and use this website fully."
+msgstr ""
+"Sólo después de proporcionar la clave de confirmación, será capaz de "
+"restablecer la contraseña y hacer uso completamente del sitio web."
+
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:6
+msgid "Reset Your Password"
+msgstr "Restablecer contraseña"
+
+#: IDF/gettexttemplates/idf/user/public.html.php:3
+#, php-format
+msgid "You are looking at the public profile of %%member%%."
+msgstr "Estás viendo el perfil público de %%member%%."
+
+#: IDF/gettexttemplates/idf/user/public.html.php:5
+msgid "Twitter:"
+msgstr "Twitter:"
+
+#: IDF/gettexttemplates/idf/user/public.html.php:6
+msgid "Public Email:"
+msgstr "Email Público:"
+
+#: IDF/gettexttemplates/idf/user/public.html.php:7
+msgid "Website:"
+msgstr "Página web:"
+
+#: IDF/gettexttemplates/idf/user/public.html.php:8
+msgid "Last time seen:"
+msgstr "Última vez visto:"
+
+#: IDF/gettexttemplates/idf/user/public.html.php:9
+msgid "Member since:"
+msgstr "Miembro desde:"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:3
+msgid "List Pages"
+msgstr "Lista de Páginas"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:4
+#, fuzzy
+msgid "List Resources"
+msgstr "Fuente %s"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:5
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:4
+#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:211
+msgid "New Page"
+msgstr "Nueva página"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:6
+#: IDF/gettexttemplates/idf/wiki/listResources.html.php:3
+#: IDF/Views/Wiki.php:256
+#, fuzzy
+msgid "New Resource"
+msgstr "Nuevo Ticket"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:7
+msgid "Update This Page"
+msgstr "Actualizar esta página"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:8
+#, fuzzy
+msgid "Update This Resource"
+msgstr "Actualizar esta página"
+
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:3
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:3
+msgid "Preview of the Page"
+msgstr "Vista previa de la página"
+
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:7
+msgid "The form contains some errors. Please correct them to create the page."
+msgstr ""
+"El formulario contiene algunos errores. Por favor, corríjalos para crear la "
+"página."
+
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:6
+msgid "Create Page"
+msgstr "Crear Página"
+
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:3
+msgid ""
+"\n"
+"Wiki resources are later addressed in wiki pages by their title, so ensure "
+"that you\n"
+"give your resource a unique and an easy to remember name.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:8
+#, fuzzy
+msgid "Create Resource"
+msgstr "Crear usuario"
+
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:3
+msgid ""
+"If you delete this documentation page, it will be removed from the database "
+"with all the associated revisions and you will not be able to "
+"recover it."
+msgstr ""
+"Si elimina esta página de documentación, será eliminada de la base de datos "
+"con todas las revisiones relacionadas y no será capaz de recuperarla."
+""
+
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:6
+msgid "Delete Page"
+msgstr "Eliminar página"
+
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:14
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:15
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:15
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:17
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:18
+msgid "Old Revisions"
+msgstr "Revisiones antiguas"
+
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:3
+#, php-format
+msgid ""
+"You are looking at an old revision (%%oldrev.summary%%) of the "
+"page \n"
+"%%page.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+"Está viendo una revisión antigua (%%oldrev.summary%%) de la "
+"página \n"
+"%%page.title%%. Esta revisión fue creada por "
+"%%submitter%%."
+
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:5
+msgid ""
+"If you delete this old revision, it will be removed from the database and "
+"you will not be able to recover it."
+msgstr ""
+"Si elimina esta antigua revisión, será eliminada de la base de datos y "
+"no podrá ser recuperada."
+
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:8
+msgid "Delete Revision"
+msgstr "Eliminar Revisión"
+
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:3
+#, fuzzy
+msgid ""
+"If you delete this documentation resource, it will be removed from the "
+"database with all the associated revisions \n"
+"and you will not be able to recover it. Any documentation "
+"pages that reference this resource,\n"
+"will no longer be able to render it, but won't be deleted."
+msgstr ""
+"Si elimina esta página de documentación, será eliminada de la base de datos "
+"con todas las revisiones relacionadas y no será capaz de recuperarla."
+""
+
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:8
+#, fuzzy
+msgid "Delete Resource"
+msgstr "Eliminar Revisión"
+
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:10
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:8
+#, fuzzy
+msgid "File size"
+msgstr "Tamaño del archivo"
+
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:9
+#: IDF/Views/Wiki.php:101
+#, fuzzy
+msgid "MIME type"
+msgstr "tipo"
+
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:3
+#, fuzzy, php-format
+msgid ""
+"You are looking at an old revision (%%oldrev.summary%%) of the "
+"resource \n"
+"%%resource.title%%. This revision was created by "
+"%%submitter%%."
+msgstr ""
+"Está viendo una revisión antigua (%%oldrev.summary%%) de la "
+"página \n"
+"%%page.title%%. Esta revisión fue creada por "
+"%%submitter%%."
+
+#: IDF/gettexttemplates/idf/wiki/edit-info.html.php:3
+#, fuzzy, php-format
+msgid ""
+"\n"
+"
Website addresses are automatically linked and you can link to another "
+"page in the documentation using double square brackets like that "
+"[[AnotherPage]].
\n"
+"
If you want to embed uploaded resources, use the [[!ResourceName]]"
+"code> syntax for that. This is described more in detail in the FAQ.
\n"
+"
To directly include a file content from the repository, embrace its path "
+"with triple square brackets: [[[my/file.txt]]].
Las direcciones Web se enlazan automáticamente y se puede vincular con "
+"otras páginas de la documentación usando corchetes dobles como: "
+"[[OtraPágina]].
\n"
+"
Para incluir directamente el contenido de un fichero del repositorio, "
+"rodee la ruta con corchetes triples como: [[[ruta/al/fichero.txt]]].
\n"
+
+#: IDF/gettexttemplates/idf/wiki/feedfragment-resource.xml.php:4
+#, fuzzy
+msgid "Initial creation"
+msgstr "Creación de la página inicial"
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:3
+#, php-format
+msgid "See the deprecated pages."
+msgstr "Ver páginas en desuso."
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:5
+msgid "Number of pages:"
+msgstr "Número de páginas:"
+
+#: IDF/gettexttemplates/idf/wiki/listResources.html.php:4
+#, fuzzy
+msgid "Number of resources:"
+msgstr "Número de usuarios:"
+
+#: IDF/gettexttemplates/idf/wiki/search.html.php:4
+msgid "Pages found:"
+msgstr "Páginas encontradas:"
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:3
+msgid "The form contains some errors. Please correct them to update the page."
+msgstr ""
+"El formulario contiene algunos errores. Por favor, corríjalos para "
+"actualizar la página."
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:6
+msgid "Update Page"
+msgstr "Actualizar Página"
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:11
+msgid "Delete this page"
+msgstr "Eliminar esta página"
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:4
+#, fuzzy
+msgid "Update Resource"
+msgstr "Actualizar usuario"
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:9
+#, fuzzy
+msgid "Delete this resource"
+msgstr "Eliminar esta revisión"
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:3
+msgid ""
+"Attention! This page is marked as deprecated, \n"
+"use it as reference only if you are sure you need these specific information."
+msgstr ""
+"¡Atención! Esta página está marcada como obsoleta,\n"
+"úsala como referencia solamente si está seguro de que usted necesita "
+"específicamente esta información ."
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:5
+#, php-format
+msgid ""
+"You are looking at an old revision of the page \n"
+"%%page.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+"Está viendo una revisión antigua de la página \n"
+"%%page.title%%. Esta revisión fue creada por "
+"%%submitter%%."
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:10
+msgid "Table of Content"
+msgstr "Tabla de Contenido"
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:13
+msgid "Delete this revision"
+msgstr "Eliminar esta revisión"
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:3
+#, fuzzy, php-format
+msgid ""
+"You are looking at an old revision of the resource \n"
+"%%resource.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+"Está viendo una revisión antigua de la página \n"
+"%%page.title%%. Esta revisión fue creada por "
+"%%submitter%%."
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:14
+#, fuzzy
+msgid "Page Usage"
+msgstr "NombreDeLaPágina"
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:15
+msgid "This resource is not used on any pages yet."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:3
+msgid "A new documentation page has been created:"
+msgstr "Una nueva página de documentación ha sido creada:"
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:14
+msgid "Documentation page:"
+msgstr "Página documentación:"
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3
+msgid "The following documentation page has been updated:"
+msgstr "La siguiente página de documentación se ha actualizado:"
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7
+msgid "Updated by:"
+msgstr "Actualizado por:"
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13
+msgid "New content:"
+msgstr "Nuevo contenido:"
+
+#: IDF/Issue.php:76
+msgid "owner"
+msgstr "propietario"
+
+#: IDF/Issue.php:84 IDF/Wiki/Page.php:86
+msgid "interested users"
+msgstr "usuarios interesados"
+
+#: IDF/Issue.php:85
+msgid ""
+"Interested users will get an email notification when the issue is changed."
+msgstr ""
+"Los usuarios interesados recibirán una notificación por correo electrónico "
+"cuando el ticket cambie."
+
+#: IDF/Issue.php:92 IDF/Project.php:94 IDF/Review.php:95 IDF/Upload.php:99
+#: IDF/Wiki/Page.php:94
+msgid "labels"
+msgstr "etiquetas"
+
+#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114
+#: IDF/Upload.php:118 IDF/Wiki/Page.php:106 IDF/Wiki/Resource.php:101
+msgid "modification date"
+msgstr "fecha de modificación"
+
+#: IDF/Issue.php:212 IDF/IssueComment.php:143
+#, php-format
+msgid ""
+"Issue %3$d, %4$s"
+msgstr ""
+"Ticket %3$d, %4$s"
+
+#: IDF/Issue.php:214
+#, fuzzy, php-format
+msgid "Creation of issue %3$d, by %4$s"
+msgstr "Creación del ticket %d, por %s"
+
+#: IDF/Issue.php:224
+#, fuzzy, php-format
+msgid "%1$s: Issue %2$d created - %3$s"
+msgstr "%s: Ticket %d creado - %s"
+
+#: IDF/Issue.php:307
+#, fuzzy, php-format
+msgid "Issue %1$s - %2$s (%3$s)"
+msgstr "Ticket %s - %s (%s)"
+
+#: IDF/Issue.php:311
+#, fuzzy, php-format
+msgid "Updated Issue %1$s - %2$s (%3$s)"
+msgstr "Ticket actualizado %s - %s (%s)"
+
+#: IDF/IssueComment.php:51 IDF/IssueRelation.php:47
+msgid "issue"
+msgstr "ticket"
+
+#: IDF/IssueComment.php:58 IDF/IssueFile.php:49 IDF/Review/Comment.php:62
+#: IDF/Review/FileComment.php:49 IDF/Review/FileComment.php:69
+msgid "comment"
+msgstr "comentario"
+
+#: IDF/IssueComment.php:72 IDF/Review/Comment.php:75 IDF/Upload.php:63
+#: IDF/Wiki/PageRevision.php:85
+msgid "changes"
+msgstr "cambios"
+
+#: IDF/IssueComment.php:73
+msgid "Serialized array of the changes in the issue."
+msgstr "Vector serializado con los cambios en los tickets."
+
+#: IDF/IssueComment.php:180
+#, fuzzy, php-format
+msgid "Comment on issue %3$d, by %4$s"
+msgstr "Comentario del ticket %d, por %s"
+
+#: IDF/IssueComment.php:191
+#, fuzzy, php-format
+msgid "%1$s: Comment on issue %2$d - %3$s"
+msgstr "%s: Comentario del ticket %d - %s"
+
+#: IDF/IssueFile.php:64
+msgid "file name"
+msgstr "nombre del archivo"
+
+#: IDF/IssueFile.php:70
+msgid "the file"
+msgstr "archivo"
+
+#: IDF/IssueFile.php:76
+msgid "file size"
+msgstr "Tamaño del archivo"
+
+#: IDF/IssueFile.php:84
+msgid "type"
+msgstr "tipo"
+
+#: IDF/IssueFile.php:86
+msgid "Image"
+msgstr "Imagen"
+
+#: IDF/IssueFile.php:87
+msgid "Other"
+msgstr "Otros"
+
+#: IDF/IssueRelation.php:54
+msgid "verb"
+msgstr ""
+
+#: IDF/IssueRelation.php:61
+msgid "other issue"
+msgstr ""
+
+#: IDF/Key.php:55
+msgid "public key"
+msgstr "clave pública"
+
+#: IDF/Key.php:90
+msgid "Invalid or unknown key data detected."
+msgstr "Detectada clave de datos no válida o desconocida."
+
+#: IDF/Plugin/SyncMercurial.php:78 IDF/Plugin/SyncSvn.php:81
+#, php-format
+msgid "The repository %s already exists."
+msgstr "El repositorio %s ya existe."
+
+#: IDF/Plugin/SyncMercurial.php:142
+#, php-format
+msgid "%s does not exist or is not writable."
+msgstr "%s no existe o no se puede escribir."
+
+#: IDF/Plugin/SyncMonotone.php:107 IDF/Plugin/SyncMonotone.php:492
+msgid "\"mtn_repositories\" must be defined in your configuration file"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:114 IDF/Plugin/SyncMonotone.php:482
+msgid "\"mtn_usher_conf\" does not exist or is not writable"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:121
+#, php-format
+msgid "Could not find mtn-post-push script \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:155
+#, php-format
+msgid "The configuration file \"%s\" is missing"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:164
+#, php-format
+msgid "The project path \"%s\" already exists"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:170
+#, php-format
+msgid "The project path \"%s\" could not be created"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:208
+#, php-format
+msgid "The key directory \"%s\" could not be created"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:227
+#, php-format
+msgid "Could not parse key information: %s"
+msgstr "No se puede examinar la información de la clave: %s"
+
+#: IDF/Plugin/SyncMonotone.php:265
+#, php-format
+msgid "Could not create configuration directory \"%s\""
+msgstr "No se pudo crear el directorio de configuración \"%s\""
+
+#: IDF/Plugin/SyncMonotone.php:275
+#, php-format
+msgid "Could not create symlink for configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:293
+#, php-format
+msgid "Could not write configuration file \"%s\""
+msgstr "No se pudo escribir el archivo de configuración \"%s\""
+
+#: IDF/Plugin/SyncMonotone.php:309 IDF/Plugin/SyncMonotone.php:525
+#, fuzzy, php-format
+msgid "Could not parse usher configuration in \"%1$s\": %2$s"
+msgstr "No se puede examinar la configuración usher en \"%s\": %s"
+
+#: IDF/Plugin/SyncMonotone.php:320
+#, php-format
+msgid "usher configuration already contains a server entry named \"%s\""
+msgstr ""
+"La configuración usher ya contiene una entrada para el servidor llamada \"%s"
+"\""
+
+#: IDF/Plugin/SyncMonotone.php:345 IDF/Plugin/SyncMonotone.php:546
+#, php-format
+msgid "Could not write usher configuration file \"%s\""
+msgstr "No se puede escribir el fichero de configuración usher \"%s\""
+
+#: IDF/Plugin/SyncMonotone.php:395
+#, php-format
+msgid "Could not write write-permissions file \"%s\""
+msgstr "No se pudo escribir el fichero write-permissions \"%s\""
+
+#: IDF/Plugin/SyncMonotone.php:420
+#, php-format
+msgid "Could not write read-permissions file \"%s\""
+msgstr "No se pudo escribir el fichero read-permissions \"%s\""
+
+#: IDF/Plugin/SyncMonotone.php:438
+#, php-format
+msgid "Could not remove symlink \"%s\""
+msgstr "No se puede eliminar el enlace simbólico \"%s\""
+
+#: IDF/Plugin/SyncMonotone.php:446
+#, php-format
+msgid "Could not create symlink \"%s\""
+msgstr "No se pudo crear el enlace simbólico \"%s\""
+
+#: IDF/Plugin/SyncMonotone.php:500
+#, php-format
+msgid "One or more paths underneath %s could not be deleted"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:512
+#, php-format
+msgid "Could not delete client private key \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:599 IDF/Plugin/SyncMonotone.php:718
+#, fuzzy, php-format
+msgid "Could not parse read-permissions for project \"%1$s\": %2$s"
+msgstr "No se pudo analizar read-permissions para el proyecto \"%s\": %s"
+
+#: IDF/Plugin/SyncMonotone.php:643 IDF/Plugin/SyncMonotone.php:741
+#, php-format
+msgid "Could not write read-permissions for project \"%s\""
+msgstr "No se pudo escribir read-permissions para el proyecto \"%s\""
+
+#: IDF/Plugin/SyncMonotone.php:657 IDF/Plugin/SyncMonotone.php:760
+#, php-format
+msgid "Could not write write-permissions file for project \"%s\""
+msgstr ""
+"No se pudo escribir el fichero write-permissions para el proyecto \"%s\""
+
+#: IDF/Plugin/SyncMonotone.php:813
+msgid "\"mtn_repositories\" must be defined in your configuration file."
+msgstr "\"mtn_repositories\" debe definirse en el fichero de configuración."
+
+#: IDF/Plugin/SyncMonotone.php:820
+#, php-format
+msgid "The project path %s does not exists."
+msgstr "La ruta del proyecto %s no existe."
+
+#: IDF/Plugin/SyncMonotone.php:838
+#, php-format
+msgid "The command \"%s\" could not be executed."
+msgstr "El comando \"%s\" no se pudo ejecutar."
+
+#: IDF/Project.php:62 IDF/Tag.php:66
+msgid "name"
+msgstr "nombre"
+
+#: IDF/Project.php:69
+msgid "short name"
+msgstr "nombre corto"
+
+#: IDF/Project.php:70
+#, fuzzy
+msgid ""
+"Used in the URL to access the project, must be short with only letters and "
+"numbers."
+msgstr ""
+"Se utiliza en la ruta de acceso al proyecto, debe ser corta, con letras y "
+"números sólo ."
+
+#: IDF/Project.php:78
+msgid "short description"
+msgstr "descripción corta"
+
+#: IDF/Project.php:86 IDF/Review/Patch.php:74
+msgid "description"
+msgstr "descripción"
+
+#: IDF/Project.php:87
+#, fuzzy
+msgid "The description can be extended using the Markdown syntax."
+msgstr "La descripción se puede extender mediante la sintaxis de marcado."
+
+#: IDF/Project.php:100
+msgid "private"
+msgstr "privado"
+
+#: IDF/Project.php:108
+msgid "current project activity"
+msgstr ""
+
+#: IDF/Project.php:159
+#, php-format
+msgid "Project \"%s\" not found."
+msgstr "Proyecto \"%s\" no encontrado."
+
+#: IDF/ProjectActivity.php:56
+#, fuzzy
+msgid "date"
+msgstr "Actualizado"
+
+#: IDF/Review/Comment.php:55 IDF/Review/Patch.php:80
+msgid "patch"
+msgstr "parche"
+
+#: IDF/Review/Comment.php:83
+msgid "vote"
+msgstr "voto"
+
+#: IDF/Review/Comment.php:139 IDF/Review/Patch.php:151
+#, php-format
+msgid ""
+"Review %3$d, %4$s"
+msgstr ""
+"Revisión %3$d, "
+"%4$s"
+
+#: IDF/Review/Comment.php:141
+#, fuzzy, php-format
+msgid "Update of review %3$d, by %4$s"
+msgstr ""
+"Actualización de revisión %d, por %s"
+
+#: IDF/Review/Comment.php:151
+#, fuzzy, php-format
+msgid "%1$s: Updated review %2$d - %3$s"
+msgstr "%s: Revisión Actualizada %d - %s"
+
+#: IDF/Review/Comment.php:222
+#, fuzzy, php-format
+msgid "Updated Code Review %1$s - %2$s (%3$s)"
+msgstr "Revisión de código Actualizada %s - %s (%s)"
+
+#: IDF/Review/Patch.php:52
+msgid "review"
+msgstr "revisión"
+
+#: IDF/Review/Patch.php:67
+msgid "commit"
+msgstr "commit"
+
+#: IDF/Review/Patch.php:153
+#, fuzzy, php-format
+msgid "Creation of review %3$d, by %4$s"
+msgstr "Creación de revisión %d, por %s"
+
+#: IDF/Review/Patch.php:163
+#, fuzzy, php-format
+msgid "%1$s: Creation of Review %2$d - %3$s"
+msgstr "%s: Creación de Revisión %d - %s"
+
+#: IDF/Review/Patch.php:208
+#, fuzzy, php-format
+msgid "New Code Review %1$s - %2$s (%3$s)"
+msgstr "Nueva Revisión de Código %s - %s (%s)"
+
+#: IDF/Scm/Git.php:309 IDF/Scm/Mercurial.php:199
+#, php-format
+msgid "Folder %1$s not found in commit %2$s."
+msgstr "Directorio %1$s no encontrado in commit %2$s."
+
+#: IDF/Scm/Git.php:433 IDF/Scm/Mercurial.php:216
+#, php-format
+msgid "Not a valid tree: %s."
+msgstr "No es un árbol válido: %s."
+
+#: IDF/Scm/Monotone/Stdio.php:81
+msgid "Monotone client key name or hash not in project conf."
+msgstr ""
+"El nombre clave del cliente Monotone o el hash no está en la configuración "
+"del proyecto."
+
+#: IDF/Scm/Monotone/Stdio.php:89
+#, php-format
+msgid "The key directory %s could not be created."
+msgstr "El directorio clave %s no puede ser creado."
+
+#: IDF/Scm/Monotone/Stdio.php:100
+#, php-format
+msgid "Could not write client key \"%s\""
+msgstr "No se pudo escribir la clave del cliente \"%s\""
+
+#: IDF/Search/Occ.php:33
+#, fuzzy
+msgid "occurrence"
+msgstr "ocurrencia"
+
+#: IDF/Search/Occ.php:49
+msgid "word"
+msgstr "palabra"
+
+#: IDF/Search/Occ.php:75
+#, fuzzy
+msgid "occurrences"
+msgstr "ocurrencias"
+
+#: IDF/Search/Occ.php:81
+#, fuzzy
+msgid "ponderated occurrence"
+msgstr "ocurrencia ponderada"
+
+#: IDF/Tag.php:59
+msgid "tag class"
+msgstr "etiquetas de clase"
+
+#: IDF/Tag.php:60
+msgid "The class of the tag."
+msgstr "Clase de la etiqueta."
+
+#: IDF/Tag.php:73
+msgid "lcname"
+msgstr "lcname"
+
+#: IDF/Tag.php:74
+msgid "Lower case version of the name for fast searching."
+msgstr "Versión del nombre en minúscula para búsqueda rápida."
+
+#: IDF/Template/Markdown.php:84
+msgid "Create this documentation page"
+msgstr "Crear esta página de documentación"
+
+#: IDF/Template/Markdown.php:97
+msgid "You are not allowed to access the wiki."
+msgstr ""
+
+#: IDF/Template/Markdown.php:106
+#, fuzzy
+msgid "The wiki resource has not been found."
+msgstr "El proyecto ha sido actualizado."
+
+#: IDF/Template/Markdown.php:113
+msgid "The wiki resource has not been found. Create it!"
+msgstr ""
+
+#: IDF/Template/Markdown.php:146
+#, fuzzy
+msgid "This revision of the resource is no longer available."
+msgstr "Este proyecto no está disponible."
+
+#: IDF/Template/ShowUser.php:51
+msgid "Anonymous"
+msgstr "Anónimo"
+
+#: IDF/Template/ShowUser.php:54
+msgid "Me"
+msgstr "Yo"
+
+#: IDF/Timeline/Paginator.php:49
+msgid "Today"
+msgstr "Hoy"
+
+#: IDF/Upload.php:70
+msgid "file"
+msgstr "archivo"
+
+#: IDF/Upload.php:71
+msgid "The path is relative to the upload path."
+msgstr "La ruta es relativa al directorio de subidas."
+
+#: IDF/Upload.php:78 IDF/Wiki/ResourceRevision.php:71
+msgid "file size in bytes"
+msgstr "tamaño del archivo en bytes"
+
+#: IDF/Upload.php:84
+msgid "MD5"
+msgstr ""
+
+#: IDF/Upload.php:106
+msgid "number of downloads"
+msgstr "número de descargas"
+
+#: IDF/Upload.php:201
+#, php-format
+msgid "Download %2$d, %3$s"
+msgstr "Descarga %2$d, %3$s"
+
+#: IDF/Upload.php:204
+#, fuzzy, php-format
+msgid "Addition of download %2$d, by %3$s"
+msgstr "Agregada la descarga %d, por %s"
+
+#: IDF/Upload.php:214
+#, fuzzy, php-format
+msgid "%1$s: Download %2$d added - %3$s"
+msgstr "%s: Descarga %d agregada - %s"
+
+#: IDF/Upload.php:301
+#, fuzzy, php-format
+msgid "New download - %1$s (%2$s)"
+msgstr "Nueva descarga - %s (%s)"
+
+#: IDF/Upload.php:305
+#, fuzzy, php-format
+msgid "Updated download - %1$s (%2$s)"
+msgstr "Nueva descarga - %s (%s)"
+
+#: IDF/Views/Admin.php:47
+#, fuzzy
+msgid "The forge configuration has been saved."
+msgstr "La configuración de las descargas se ha guardado."
+
+#: IDF/Views/Admin.php:80
+msgid "This table shows the projects in the forge."
+msgstr "Esta tabla muestra los proyectos de la forja."
+
+#: IDF/Views/Admin.php:85
+msgid "Short Name"
+msgstr "Nombre corto"
+
+#: IDF/Views/Admin.php:87
+msgid "Repository Size"
+msgstr "Tamaño del Repositorio"
+
+#: IDF/Views/Admin.php:93
+msgid "No projects were found."
+msgstr "No se encontraron proyectos."
+
+#: IDF/Views/Admin.php:116
+#, fuzzy
+msgid "The label configuration has been saved."
+msgstr "La configuración de las descargas se ha guardado."
+
+#: IDF/Views/Admin.php:147 IDF/Views/Admin.php:314 IDF/Views/Wiki.php:484
+#: IDF/Views/Wiki.php:536
+#, php-format
+msgid "Update %s"
+msgstr "Actualizar %s"
+
+#: IDF/Views/Admin.php:155 IDF/Views/Project.php:304
+msgid "The project has been updated."
+msgstr "El proyecto ha sido actualizado."
+
+#: IDF/Views/Admin.php:192
+msgid "The project has been created."
+msgstr "El proyecto ha sido creado."
+
+#: IDF/Views/Admin.php:223
+#, php-format
+msgid "Delete %s Project"
+msgstr "Eliminar Proyecto %s"
+
+#: IDF/Views/Admin.php:230
+msgid "The project has been deleted."
+msgstr "El proyecto ha sido eliminado."
+
+#: IDF/Views/Admin.php:260
+msgid "Not Validated User List"
+msgstr "Lista de usuarios no validados"
+
+#: IDF/Views/Admin.php:268
+msgid "This table shows the users in the forge."
+msgstr "Esta tabla muestra los usuarios de la forja."
+
+#: IDF/Views/Admin.php:272
+msgid "login"
+msgstr "nombre de usuario"
+
+#: IDF/Views/Admin.php:275
+msgid "Admin"
+msgstr "Admin"
+
+#: IDF/Views/Admin.php:277
+msgid "Last Login"
+msgstr "Último inicio de sesión"
+
+#: IDF/Views/Admin.php:284
+msgid "No users were found."
+msgstr "No se han encontrado usuarios."
+
+#: IDF/Views/Admin.php:321
+msgid "You do not have the rights to update this user."
+msgstr "No tiene permisos para actualizar este usuario."
+
+#: IDF/Views/Admin.php:339
+msgid "The user has been updated."
+msgstr "El usuario se ha actualizado."
+
+#: IDF/Views/Admin.php:372
+#, php-format
+msgid "The user %s has been created."
+msgstr "El usuario %s se ha creado."
+
+#: IDF/Views/Admin.php:379
+msgid "Add User"
+msgstr "Agregar usuario"
+
+#: IDF/Views/Admin.php:395
+msgid "Usher management"
+msgstr "Configuración Usher"
+
+#: IDF/Views/Admin.php:432
+msgid "Usher configuration has been reloaded"
+msgstr "La configuración Usher ha sido recargada."
+
+#: IDF/Views/Admin.php:436
+msgid "Usher has been shut down"
+msgstr "Usher ha sido apagado."
+
+#: IDF/Views/Admin.php:441
+msgid "Usher has been started up"
+msgstr "Usher ha sido arrancado."
+
+#: IDF/Views/Admin.php:479
+#, php-format
+msgid "The server \"%s\" has been started"
+msgstr "El servidor \"%s\" se ha iniciado"
+
+#: IDF/Views/Admin.php:483
+#, php-format
+msgid "The server \"%s\" has been stopped"
+msgstr "El servidor \"%s\" ha sido detenido"
+
+#: IDF/Views/Admin.php:488
+#, php-format
+msgid "The server \"%s\" has been killed"
+msgstr "El servidor \"%s\" ha sido parado"
+
+#: IDF/Views/Admin.php:508
+#, php-format
+msgid "Open connections for \"%s\""
+msgstr "Conexiones abiertas de \"%s\""
+
+#: IDF/Views/Admin.php:513
+#, php-format
+msgid "no connections for server \"%s\""
+msgstr "Ninguna conexión para el servidor \"%s\""
+
+#: IDF/Views/Admin.php:534
+msgid "Yes"
+msgstr "Sí"
+
+#: IDF/Views/Admin.php:534
+msgid "No"
+msgstr "No"
+
+#: IDF/Views/Download.php:45
+#, php-format
+msgid "%s Downloads"
+msgstr "%s Descargas"
+
+#: IDF/Views/Download.php:51
+msgid "This table shows the files to download."
+msgstr "Esta tabla muestra los archivos para descargar."
+
+#: IDF/Views/Download.php:67 IDF/Views/Download.php:349
+msgid "Uploaded"
+msgstr "Subido"
+
+#: IDF/Views/Download.php:71 IDF/Views/Download.php:353
+msgid "No downloads were found."
+msgstr "No se encontraron descargas."
+
+#: IDF/Views/Download.php:94
+#, php-format
+msgid "Download %s"
+msgstr "Descargar %s"
+
+#: IDF/Views/Download.php:111
+#, php-format
+msgid "The file %2$s has been updated."
+msgstr "El archivo %2$s ha sido actualizado."
+
+#: IDF/Views/Download.php:144
+#, php-format
+msgid "Delete Download %s"
+msgstr "Eliminar Descarga %s"
+
+#: IDF/Views/Download.php:177
+msgid "The file has been deleted."
+msgstr "El archivo ha sido eliminado."
+
+#: IDF/Views/Download.php:244
+#, php-format
+msgid "The file has been uploaded."
+msgstr "El archivo ha sido subido."
+
+#: IDF/Views/Download.php:271
+#, fuzzy
+msgid "New Downloads from Archive"
+msgstr "Nueva descarga"
+
+#: IDF/Views/Download.php:278
+#, fuzzy
+msgid "The archive has been uploaded and processed."
+msgstr "El proyecto ha sido actualizado."
+
+#: IDF/Views/Download.php:331
+#, php-format
+msgid "%1$s Downloads with Label %2$s"
+msgstr "%1$s Descargas con Etiqueta %2$s"
+
+#: IDF/Views/Download.php:341
+#, php-format
+msgid "This table shows the downloads with label %s."
+msgstr "Esta tabla muestra las descargas con la etiqueta %s."
+
+#: IDF/Views/Issue.php:41
+#, php-format
+msgid "%s Open Issues"
+msgstr "%s Tickets abiertos"
+
+#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:382 IDF/Views/User.php:75
+msgid "This table shows the open issues."
+msgstr "Esta tabla muestra los tickets abiertos."
+
+#: IDF/Views/Issue.php:61 IDF/Views/Issue.php:220 IDF/Views/Issue.php:301
+#: IDF/Views/Issue.php:390 IDF/Views/Issue.php:542 IDF/Views/Issue.php:765
+#: IDF/Views/Issue.php:824 IDF/Views/Review.php:57 IDF/Views/User.php:81
+msgid "Id"
+msgstr "Id"
+
+#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:223 IDF/Views/Issue.php:305
+#: IDF/Views/Issue.php:393 IDF/Views/Issue.php:545 IDF/Views/Issue.php:768
+#: IDF/Views/Issue.php:827 IDF/Views/Review.php:60 IDF/Views/User.php:85
+msgid "Last Updated"
+msgstr "Última actualización"
+
+#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:227 IDF/Views/Issue.php:309
+#: IDF/Views/Issue.php:397 IDF/Views/Issue.php:549 IDF/Views/Issue.php:772
+#: IDF/Views/Issue.php:831
+msgid "No issues were found."
+msgstr "No se han encontrado tickets."
+
+#: IDF/Views/Issue.php:113
+msgid "Not assigned"
+msgstr ""
+
+#: IDF/Views/Issue.php:149
+#, php-format
+msgid "Summary of tracked issues in %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:194
+#, php-format
+msgid "Watch List: Closed Issues for %s"
+msgstr "Lista de mantenimiento: Tickets Cerrados por %s"
+
+#: IDF/Views/Issue.php:195
+#, php-format
+msgid "This table shows the closed issues in your watch list for %s project."
+msgstr ""
+"Esta tabla muestra los tickets cerrados en su lista de mantenimiento para el "
+"proyecto %s."
+
+#: IDF/Views/Issue.php:200
+#, php-format
+msgid "Watch List: Open Issues for %s"
+msgstr "Lista mantenimiento: Tickets Abiertos por %s"
+
+#: IDF/Views/Issue.php:201
+#, php-format
+msgid "This table shows the open issues in your watch list for %s project."
+msgstr ""
+"Esta tabla muestra los tickets abiertos en su lista de mantenimiento para el "
+"proyecto %s."
+
+#: IDF/Views/Issue.php:277
+msgid "Watch List: Closed Issues"
+msgstr "Lista mantenimiento: Tickets Cerrados"
+
+#: IDF/Views/Issue.php:278
+msgid "This table shows the closed issues in your watch list."
+msgstr "Esta tabla muestra los tickets cerrados en su lista de mantenimiento."
+
+#: IDF/Views/Issue.php:283
+msgid "Watch List: Open Issues"
+msgstr "Lista mantenimiento: Tickets Abiertos"
+
+#: IDF/Views/Issue.php:284
+msgid "This table shows the open issues in your watch list."
+msgstr "Esta tabla muestra los tickets abiertos en su lista de mantenimiento."
+
+#: IDF/Views/Issue.php:303 IDF/Views/User.php:82
+msgid "Project"
+msgstr "Proyecto"
+
+#: IDF/Views/Issue.php:344
+#, fuzzy, php-format
+msgid "%1$s %2$s Submitted %3$s Issues"
+msgstr "Tickets enviados:"
+
+#: IDF/Views/Issue.php:348
+#, php-format
+msgid "%1$s %2$s Closed Submitted %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:352
+#, fuzzy, php-format
+msgid "%1$s %2$s Closed Working %3$s Issues"
+msgstr "%s Tickets cerrados"
+
+#: IDF/Views/Issue.php:356
+#, php-format
+msgid "%1$s %2$s Working %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:417
+msgid "Submit a new issue"
+msgstr "Enviar nuevo Ticket"
+
+#: IDF/Views/Issue.php:433
+#, fuzzy, php-format
+msgid "Issue %2$d has been created."
+msgstr "El Ticket %d ha sido creado."
+
+#: IDF/Views/Issue.php:490
+#, php-format
+msgid "Search issues - %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:492
+#, php-format
+msgid "Search closed issues - %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:539
+msgid "This table shows the found issues."
+msgstr "Esta tabla muestra los tickets encontrados."
+
+#: IDF/Views/Issue.php:604
+#, fuzzy, php-format
+msgid "Issue %2$d: %3$s"
+msgstr "Ticket %d: %s"
+
+#: IDF/Views/Issue.php:628
+#, fuzzy, php-format
+msgid "Issue %2$d has been updated."
+msgstr "El Ticket %d ha sido actualizado."
+
+#: IDF/Views/Issue.php:718
+#, php-format
+msgid "View %s"
+msgstr "Ver %s"
+
+#: IDF/Views/Issue.php:745
+#, php-format
+msgid "%s Closed Issues"
+msgstr "%s Tickets cerrados"
+
+#: IDF/Views/Issue.php:755
+msgid "This table shows the closed issues."
+msgstr "Esta tabla muestra los tickets cerrados."
+
+#: IDF/Views/Issue.php:798
+#, php-format
+msgid "%1$s Issues with Label %2$s"
+msgstr "%1$s Tickets con la Etiqueta %2$s"
+
+#: IDF/Views/Issue.php:801
+#, php-format
+msgid "%1$s Closed Issues with Label %2$s"
+msgstr "%1$s Tickets cerrados con la Etiqueta %2$s"
+
+#: IDF/Views/Issue.php:814
+#, php-format
+msgid "This table shows the issues with label %s."
+msgstr "Esta tabla muestra los tickets con la etiqueta %s."
+
+#: IDF/Views/Issue.php:937
+msgid "The issue has been removed from your watch list."
+msgstr "El tickets se ha eliminado de su lista."
+
+#: IDF/Views/Issue.php:940
+msgid "The issue has been added to your watch list."
+msgstr "El ticket ha sido añadido a su lista."
+
+#: IDF/Views/Issue.php:1037
+msgid "On your watch list."
+msgstr "En su lista."
+
+#: IDF/Views/Project.php:95
+msgid "Issues and Comments"
+msgstr "Tickets y Comentarios"
+
+#: IDF/Views/Project.php:99
+msgid "Documents"
+msgstr "Documentos"
+
+#: IDF/Views/Project.php:101
+msgid "Reviews and Patches"
+msgstr "Revisiones y parches"
+
+#: IDF/Views/Project.php:180
+msgid "This table shows the project updates."
+msgstr "Esta tabla muestra las actualizaciones del proyecto."
+
+#: IDF/Views/Project.php:191
+msgid "Change"
+msgstr "Cambios"
+
+#: IDF/Views/Project.php:195
+msgid "No changes were found."
+msgstr "No se encontraron cambios."
+
+#: IDF/Views/Project.php:296
+#, php-format
+msgid "%s Project Summary"
+msgstr "Resumen del Proyecto %s"
+
+#: IDF/Views/Project.php:335
+#, php-format
+msgid "%s Issue Tracking Configuration"
+msgstr "Configuración de Seguimiento de Tickets %s"
+
+#: IDF/Views/Project.php:344
+msgid "The issue tracking configuration has been saved."
+msgstr "La configuración de seguimiento de Tickets se ha guardado."
+
+#: IDF/Views/Project.php:381
+#, php-format
+msgid "%s Downloads Configuration"
+msgstr "Configuración de descargas %s"
+
+#: IDF/Views/Project.php:393
+msgid "The downloads configuration has been saved."
+msgstr "La configuración de las descargas se ha guardado."
+
+#: IDF/Views/Project.php:428
+#, php-format
+msgid "%s Documentation Configuration"
+msgstr "Configuración de documentación %s"
+
+#: IDF/Views/Project.php:437
+msgid "The documentation configuration has been saved."
+msgstr "La configuración de la documentación ha sido guardada."
+
+#: IDF/Views/Project.php:471
+#, php-format
+msgid "%s Project Members"
+msgstr "Miembros del Proyecto %s"
+
+#: IDF/Views/Project.php:480
+msgid "The project membership has been saved."
+msgstr "Los miembros del proyecto se han guardado."
+
+#: IDF/Views/Project.php:503
+#, php-format
+msgid "%s Tabs Access Rights"
+msgstr "Pestaña de permisos de acceso %s "
+
+#: IDF/Views/Project.php:517
+#, fuzzy
+msgid ""
+"The project tabs access rights and notification settings have been saved."
+msgstr "La pestaña de permisos de acceso del proyecto se ha guardado."
+
+#: IDF/Views/Project.php:566
+#, php-format
+msgid "%s Source"
+msgstr "Fuente %s"
+
+#: IDF/Views/Project.php:580
+msgid "The project source configuration has been saved."
+msgstr "La configuración de la fuente del proyecto se ha guardado"
+
+#: IDF/Views/Review.php:41
+#, php-format
+msgid "%s Code Reviews"
+msgstr "Revisiones del Código %s"
+
+#: IDF/Views/Review.php:48
+msgid "This table shows the latest reviews."
+msgstr "Esta tabla muestra las últimas revisiones."
+
+#: IDF/Views/Review.php:64
+msgid "No reviews were found."
+msgstr "No se encontraron revisiones."
+
+#: IDF/Views/Review.php:94
+#, fuzzy, php-format
+msgid "The code review %2$d has been created."
+msgstr "El comentario del código %d ha sido creado."
+
+#: IDF/Views/Review.php:140
+#, fuzzy, php-format
+msgid "Review %2$d: %3$s"
+msgstr "Comentario %d: %s"
+
+#: IDF/Views/Review.php:160
+#, fuzzy, php-format
+msgid "Your code review %2$d has been published."
+msgstr "Tu comentario del código %d ha sido publicado."
+
+#: IDF/Views/Source.php:40
+#, php-format
+msgid "%s Source Help"
+msgstr "Ayuda de fuentes %s"
+
+#: IDF/Views/Source.php:58
+#, php-format
+msgid "%s Invalid Revision"
+msgstr "Revisión no válida %s "
+
+#: IDF/Views/Source.php:82
+#, php-format
+msgid "%s Ambiguous Revision"
+msgstr "Revisión ambigua %s"
+
+#: IDF/Views/Source.php:107
+#, php-format
+msgid "%1$s %2$s Change Log"
+msgstr "Cambios %2$s de %1$s"
+
+#: IDF/Views/Source.php:153 IDF/Views/Source.php:234 IDF/Views/Source.php:362
+#, php-format
+msgid "%1$s %2$s Source Tree"
+msgstr "Árbol de fuentes %2$s de %1$s"
+
+#: IDF/Views/Source.php:310
+#, php-format
+msgid "%s Commit Details"
+msgstr "Detalles del Commit %s"
+
+#: IDF/Views/Source.php:311
+#, fuzzy, php-format
+msgid "%1$s Commit Details - %2$s"
+msgstr "%s Detalles del Commit - %s"
+
+#: IDF/Views/User.php:59
+msgid "Your Dashboard - Working Issues"
+msgstr "Tu Panel de Control - Tickets en Proceso"
+
+#: IDF/Views/User.php:62
+msgid "Your Dashboard - Submitted Issues"
+msgstr "Tu Panel de Control - Tickets Enviados"
+
+#: IDF/Views/User.php:89
+msgid "No issues are assigned to you, yeah!"
+msgstr "No te han asignado tickets, ¡Yeah!"
+
+#: IDF/Views/User.php:89
+msgid "All the issues you submitted are fixed, yeah!"
+msgstr "Todos los tickets que enviastes han sido resueltos, ¡Yeah!"
+
+#: IDF/Views/User.php:121
+msgid "Your personal information has been updated."
+msgstr "Tu información personal se ha actualizado."
+
+#: IDF/Views/User.php:133
+msgid "Your Account"
+msgstr "Tu Cuenta"
+
+#: IDF/Views/User.php:157
+msgid "The public key has been deleted."
+msgstr "La clave pública ha sido eliminada."
+
+#: IDF/Views/User.php:177
+msgid "The address has been deleted."
+msgstr "La dirección ha sido eliminada."
+
+#: IDF/Views/User.php:200
+msgid "Confirm The Email Change"
+msgstr "Confirmar el cambio de correo electrónico"
+
+#: IDF/Views/User.php:232
+#, php-format
+msgid "Your new email address \"%s\" has been validated. Thank you!"
+msgstr ""
+"Tu nueva dirección de correo electrónico \"%s\" ha sido validada. ¡Gracias!"
+
+#: IDF/Views/Wiki.php:41
+#, php-format
+msgid "%s Documentation"
+msgstr "%s Documentación"
+
+#: IDF/Views/Wiki.php:48
+msgid "This table shows the documentation pages."
+msgstr "Esta tabla muestra las páginas de documentación."
+
+#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:144 IDF/Views/Wiki.php:185
+msgid "Page Title"
+msgstr "Título de la página"
+
+#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:103 IDF/Views/Wiki.php:146
+#: IDF/Views/Wiki.php:187
+msgid "Updated"
+msgstr "Actualizado"
+
+#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:191
+msgid "No documentation pages were found."
+msgstr "No se encontraron páginas de documentación."
+
+#: IDF/Views/Wiki.php:88
+#, fuzzy, php-format
+msgid "%s Documentation Resources"
+msgstr "%s Documentación"
+
+#: IDF/Views/Wiki.php:94
+#, fuzzy
+msgid "This table shows the resources that can be used on documentation pages."
+msgstr "Esta tabla muestra las páginas de documentación."
+
+#: IDF/Views/Wiki.php:100
+#, fuzzy
+msgid "Resource Title"
+msgstr "Árbol de las fuentes"
+
+#: IDF/Views/Wiki.php:107
+#, fuzzy
+msgid "No resources were found."
+msgstr "No se han encontrado tickets."
+
+#: IDF/Views/Wiki.php:128
+#, php-format
+msgid "Documentation Search - %s"
+msgstr "Búsqueda de documentación - %s"
+
+#: IDF/Views/Wiki.php:139
+msgid "This table shows the pages found."
+msgstr "Esta tabla muestra las páginas encontradas."
+
+#: IDF/Views/Wiki.php:150
+msgid "No pages were found."
+msgstr "No se encontraron páginas."
+
+#: IDF/Views/Wiki.php:169
+#, php-format
+msgid "%1$s Documentation Pages with Label %2$s"
+msgstr "%1$s Páginas de documentación con la etiqueta %2$s"
+
+#: IDF/Views/Wiki.php:179
+#, php-format
+msgid "This table shows the documentation pages with label %s."
+msgstr "Esta tabla muestra las páginas de documentación con la etiqueta %s."
+
+#: IDF/Views/Wiki.php:222
+#, fuzzy, php-format
+msgid "The page %2$s has been created."
+msgstr "La página %s se ha creado."
+
+#: IDF/Views/Wiki.php:265
+#, fuzzy, php-format
+msgid "The resource %2$s has been created."
+msgstr "La página %s se ha creado."
+
+#: IDF/Views/Wiki.php:409 IDF/Views/Wiki.php:448
+msgid "The old revision has been deleted."
+msgstr "La antigua revisión ha sido eliminado."
+
+#: IDF/Views/Wiki.php:415 IDF/Views/Wiki.php:454
+#, php-format
+msgid "Delete Old Revision of %s"
+msgstr "Eliminar Antigua revisión de %s"
+
+#: IDF/Views/Wiki.php:496
+#, fuzzy, php-format
+msgid "The page %2$s has been updated."
+msgstr "La página %s se ha actualizado."
+
+#: IDF/Views/Wiki.php:548
+#, fuzzy, php-format
+msgid "The resource %2$s has been updated."
+msgstr "El archivo %2$s ha sido actualizado."
+
+#: IDF/Views/Wiki.php:583
+msgid "The documentation page has been deleted."
+msgstr "La página de documentación se ha eliminado."
+
+#: IDF/Views/Wiki.php:591
+#, php-format
+msgid "Delete Page %s"
+msgstr "Eliminar Página %s"
+
+#: IDF/Views/Wiki.php:623
+#, fuzzy
+msgid "The documentation resource has been deleted."
+msgstr "La página de documentación se ha eliminado."
+
+#: IDF/Views/Wiki.php:631
+#, fuzzy, php-format
+msgid "Delete Resource %s"
+msgstr "Eliminar Página %s"
+
+#: IDF/Views.php:173 IDF/Views.php:199
+msgid "Confirm Your Account Creation"
+msgstr "Confirma la creación de tu cuenta"
+
+#: IDF/Views.php:219
+msgid "Welcome! You can now participate in the life of your project of choice."
+msgstr "¡Bienvenido! Ahora puedes participar en el proyecto elegido."
+
+#: IDF/Views.php:245 IDF/Views.php:269 IDF/Views.php:310
+msgid "Password Recovery"
+msgstr "Recuperación de la contraseña"
+
+#: IDF/Views.php:289
+msgid ""
+"Welcome back! Next time, you can use your broswer options to remember the "
+"password."
+msgstr ""
+"¡Bienvenido de nuevo! La próxima vez, puede utilizar la opcione de tu "
+"navegador para recordar la contraseña."
+
+#: IDF/Views.php:331
+msgid "Here to Help You!"
+msgstr "¡Aquí para ayudarte!"
+
+#: IDF/Views.php:347
+msgid "InDefero Upload Archive Format"
+msgstr ""
+
+#: IDF/Views.php:363
+msgid "InDefero API (Application Programming Interface)"
+msgstr "InDefero API (Interfaz de Programación de la Aplicación)"
+
+#: IDF/Wiki/Page.php:62 IDF/Wiki/Resource.php:64
+msgid "title"
+msgstr "título"
+
+#: IDF/Wiki/Page.php:63
+msgid ""
+"The title of the page must only contain letters, digits or the dash "
+"character. For example: My-new-Wiki-Page."
+msgstr ""
+"El título de la página sólo puede contener letras, dígitos o el carácter de "
+"guión. Por ejemplo: Mi-nueva-Página-Wiki."
+
+#: IDF/Wiki/Page.php:71
+msgid "A one line description of the page content."
+msgstr "Una línea que describa el contenido de la página."
+
+#: IDF/Wiki/Page.php:196 IDF/Wiki/PageRevision.php:196
+#, php-format
+msgid "%2$s, %3$s"
+msgstr "%2$s, %3$s"
+
+#: IDF/Wiki/Page.php:198
+#, fuzzy, php-format
+msgid "Creation of page %2$s, by %3$s"
+msgstr "Creación de la página %s, por %s"
+
+#: IDF/Wiki/Page.php:208
+#, fuzzy, php-format
+msgid "%1$s: Documentation page %2$s added - %3$s"
+msgstr "%s: Página de documentación %s añadida - %s"
+
+#: IDF/Wiki/PageRevision.php:48
+msgid "page"
+msgstr "página"
+
+#: IDF/Wiki/PageRevision.php:66 IDF/Wiki/ResourceRevision.php:64
+msgid "A one line description of the changes."
+msgstr "Una pequeña descripción de los cambios realizados."
+
+#: IDF/Wiki/PageRevision.php:72
+msgid "content"
+msgstr "contenido"
+
+#: IDF/Wiki/PageRevision.php:218 IDF/Wiki/ResourceRevision.php:311
+#, fuzzy, php-format
+msgid "Change of %2$s, by %3$s"
+msgstr "Cambio de %s, por %s"
+
+#: IDF/Wiki/PageRevision.php:231
+#, fuzzy, php-format
+msgid "%1$s: Documentation page %2$s updated - %3$s"
+msgstr "%s: Página de documentación %s actualizada - %s"
+
+#: IDF/Wiki/PageRevision.php:293
+#, fuzzy, php-format
+msgid "New Documentation Page %1$s - %2$s (%3$s)"
+msgstr "Nueva página de documentación %s - %s (%s)"
+
+#: IDF/Wiki/PageRevision.php:297
+#, fuzzy, php-format
+msgid "Documentation Page Changed %1$s - %2$s (%3$s)"
+msgstr "Cambios página de documentación %s - %s (%s)"
+
+#: IDF/Wiki/Resource.php:65
+#, fuzzy
+msgid ""
+"The title of the resource must only contain letters, digits, dots or the "
+"dash character. For example: my-resource.png."
+msgstr ""
+"El título de la página sólo puede contener letras, dígitos o el carácter de "
+"guión. Por ejemplo: Mi-nueva-Página-Wiki."
+
+#: IDF/Wiki/Resource.php:72
+msgid "MIME media type"
+msgstr ""
+
+#: IDF/Wiki/Resource.php:73
+msgid "The MIME media type of the resource."
+msgstr ""
+
+#: IDF/Wiki/Resource.php:81
+#, fuzzy
+msgid "A one line description of the resource."
+msgstr "Una línea de descripción del proyecto."
+
+#: IDF/Wiki/Resource.php:176 IDF/Wiki/ResourceRevision.php:308
+#, fuzzy, php-format
+msgid "%2$s, %3$s"
+msgstr "%2$s, %3$s"
+
+#: IDF/Wiki/Resource.php:178
+#, fuzzy, php-format
+msgid "Creation of resource %2$s, by %3$s"
+msgstr "Creación de la página %s, por %s"
+
+#: IDF/Wiki/Resource.php:188
+#, fuzzy, php-format
+msgid "%1$s: Documentation resource %2$s added - %3$s"
+msgstr "%s: Página de documentación %s añadida - %s"
+
+#: IDF/Wiki/ResourceRevision.php:47
+#, fuzzy
+msgid "resource"
+msgstr "Fuentes"
+
+#: IDF/Wiki/ResourceRevision.php:78
+#, fuzzy
+msgid "File extension"
+msgstr "Diferencias de archivos"
+
+#: IDF/Wiki/ResourceRevision.php:79
+msgid "The file extension of the uploaded resource."
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:94
+msgid "page usage"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:116
+#, php-format
+msgid "id %d: %s"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:263
+#, fuzzy, php-format
+msgid "Download (%s)"
+msgstr "Descargar %s"
+
+#: IDF/Wiki/ResourceRevision.php:270
+msgid "View resource details"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:324
+#, fuzzy, php-format
+msgid "%1$s: Documentation resource %2$s updated - %3$s"
+msgstr "%s: Página de documentación %s actualizada - %s"
+
+#~ msgid ""
+#~ "The master branch is empty or contains illegal characters, please use "
+#~ "only letters, digits, dashs and dots as separators."
+#~ msgstr ""
+#~ "El branch principal está vacío o contiene caracteres no válidos, por "
+#~ "favor utiliza solamente letras, digitos, guiones y puntos como "
+#~ "separadores."
+
+#~ msgid "Learn more about the post-commit web hooks."
+#~ msgstr "Saber más sobre WebHooks post-commit."
+
+#~ msgid "Your mail"
+#~ msgstr "Su correo electrónico"
+
+#~ msgid ""
+#~ "Notification emails will be sent from the %%from_email%% "
+#~ "address, if you send the email to a mailing list, you may need to "
+#~ "register this email address. Multiple email addresses must be separated "
+#~ "through commas (','). If you do not want to send emails for a given type "
+#~ "of changes, simply leave the corresponding field empty."
+#~ msgstr ""
+#~ "Las notificaciones de mensajes se enviarán desde la dirección %"
+#~ "%from_email%%, si envía el mensaje a una lista de correo, puede "
+#~ "que tenga que registrar esta dirección de correo electrónico. Varias "
+#~ "direcciones de correo electrónico deben separarse por comas (','). Si no "
+#~ "desea enviar mensajes de correo electrónico para un determinado tipo de "
+#~ "cambio, simplemente deje el correspondiente campo vacío."
+
+#~ msgid "You have here access to the administration of the forge."
+#~ msgstr "Tienes aquí el acceso a la administración de la forja."
+
+#~ msgid "Forge statistics"
+#~ msgstr "Estadísticas de la Forja"
+
+#~ msgid "Projects:"
+#~ msgstr "Proyectos:"
diff --git a/indefero/src/IDF/locale/fr/idf.po b/indefero/src/IDF/locale/fr/idf.po
new file mode 100644
index 0000000..c36084e
--- /dev/null
+++ b/indefero/src/IDF/locale/fr/idf.po
@@ -0,0 +1,6089 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+# Benjamin Danon , 2011.
+# Jean-Philippe Fleury , 2011.
+# tommyd , 2011.
+# , 2012.
+# William MARTIN , 2011, 2012.
+msgid ""
+msgstr ""
+"Project-Id-Version: Indefero\n"
+"Report-Msgid-Bugs-To: http://projects.ceondo.com/p/indefero/issues/\n"
+"POT-Creation-Date: 2012-03-22 01:16+0100\n"
+"PO-Revision-Date: 2012-04-21 08:44+0000\n"
+"Last-Translator: William MARTIN \n"
+"Language-Team: French (http://www.transifex.net/projects/p/indefero/language/"
+"fr/)\n"
+"Language: fr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
+
+#: IDF/Commit.php:55 IDF/Conf.php:54 IDF/Issue.php:52
+#: IDF/ProjectActivity.php:49 IDF/Review.php:65 IDF/Search/Occ.php:69
+#: IDF/Tag.php:52 IDF/Upload.php:49 IDF/Wiki/Page.php:54
+#: IDF/Wiki/Resource.php:56
+msgid "project"
+msgstr "projet"
+
+#: IDF/Commit.php:63 IDF/Issue.php:67 IDF/IssueComment.php:65
+#: IDF/IssueFile.php:57 IDF/IssueRelation.php:69 IDF/Review/Comment.php:69
+#: IDF/Review.php:80 IDF/Upload.php:91 IDF/Wiki/Page.php:78
+#: IDF/Wiki/PageRevision.php:79 IDF/Wiki/Resource.php:88
+#: IDF/Wiki/ResourceRevision.php:86
+msgid "submitter"
+msgstr "auteur"
+
+#: IDF/Commit.php:87 IDF/Issue.php:60 IDF/Review/Patch.php:60
+#: IDF/Review.php:73 IDF/Upload.php:57 IDF/Wiki/Page.php:70
+#: IDF/Wiki/PageRevision.php:65 IDF/Wiki/Resource.php:80
+#: IDF/Wiki/ResourceRevision.php:63
+msgid "summary"
+msgstr "résumé"
+
+#: IDF/Commit.php:93
+msgid "changelog"
+msgstr "journal des modifications"
+
+#: IDF/Commit.php:100 IDF/Issue.php:105 IDF/IssueComment.php:79
+#: IDF/IssueFile.php:96 IDF/IssueRelation.php:75 IDF/Review/Comment.php:90
+#: IDF/Review/FileComment.php:75 IDF/Review/Patch.php:87 IDF/Review.php:108
+#: IDF/Upload.php:112 IDF/Wiki/Page.php:100 IDF/Wiki/PageRevision.php:92
+#: IDF/Wiki/Resource.php:95 IDF/Wiki/ResourceRevision.php:101
+msgid "creation date"
+msgstr "date de création"
+
+#: IDF/Commit.php:238
+#, php-format
+msgid "Commit %1$s, by %2$s"
+msgstr "Commit %1$s, par %2$s"
+
+#: IDF/Commit.php:337
+#, php-format
+msgid "New Commit %1$s - %2$s (%3$s)"
+msgstr "Nouveau Commit %1$s - %2$s (%3$s)"
+
+#: IDF/Conf.php:61 IDF/Gconf.php:73
+msgid "key"
+msgstr "clé"
+
+#: IDF/Conf.php:67 IDF/Gconf.php:79 IDF/ProjectActivity.php:62
+msgid "value"
+msgstr "valeur"
+
+#: IDF/Diff.php:460
+msgid "Old"
+msgstr "Ancien"
+
+#: IDF/Diff.php:460
+msgid "New"
+msgstr "Nouveau"
+
+#: IDF/EmailAddress.php:49 IDF/Key.php:49
+msgid "user"
+msgstr "utilisateur"
+
+#: IDF/EmailAddress.php:55
+msgid "email"
+msgstr "email"
+
+#: IDF/Form/Admin/ForgeConf.php:34
+msgid "Custom forge page enabled"
+msgstr "Page personnalisée de la forge activée"
+
+#: IDF/Form/Admin/ForgeConf.php:39 IDF/Form/WikiPageCreate.php:80
+#: IDF/Form/WikiPageUpdate.php:72
+msgid "Content"
+msgstr "Contenu"
+
+#: IDF/Form/Admin/LabelConf.php:40
+msgid "Predefined project labels"
+msgstr "Étiquettes prédéfinies des projets"
+
+#: IDF/Form/Admin/LabelConf.php:55
+#, php-format
+msgid ""
+"The label \"%s\" is invalid: A label must only consist of alphanumeric "
+"characters and dashes, and can optionally contain a \":\" with a group "
+"prefix."
+msgstr ""
+"L'étiquette \"%s\" est invalide : Une étiquette ne peut être composée "
+"seulement que de caractères alphanumérique et de tirets, et peut "
+"éventuellement contenir un \":\" avec un préfixe de groupe."
+
+#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:600
+msgid "git"
+msgstr "git"
+
+#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:601
+msgid "Subversion"
+msgstr "Subversion"
+
+#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:602
+msgid "mercurial"
+msgstr "mercurial"
+
+#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:603
+msgid "monotone"
+msgstr "monotone"
+
+#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44
+#: IDF/Form/ProjectConf.php:39 IDF/Views/Admin.php:86 IDF/Views/Admin.php:273
+msgid "Name"
+msgstr "Nom"
+
+#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:101
+#: IDF/gettexttemplates/idf/base-full.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html~.php:5
+#: IDF/gettexttemplates/idf/base.html.php:5
+#: IDF/gettexttemplates/idf/base.html~.php:5
+#: IDF/gettexttemplates/idf/main-menu.html.php:9
+#: IDF/gettexttemplates/idf/project-list.html.php:5
+#: IDF/gettexttemplates/idf/project-list.html.php:7
+msgid "Private project"
+msgstr "Projet privé"
+
+#: IDF/Form/Admin/ProjectCreate.php:62
+msgid "Shortname"
+msgstr "Nom court"
+
+#: IDF/Form/Admin/ProjectCreate.php:64
+msgid ""
+"It must be unique for each project and composed only of letters, digits and "
+"dash (-) like \"my-project\"."
+msgstr ""
+"Il doit être unique pour chaque projet et ne doit contenir que des lettres, "
+"des chiffres et le tiret (-), par exemple «mon-projet»."
+
+#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50
+msgid "Short description"
+msgstr "Description courte"
+
+#: IDF/Form/Admin/ProjectCreate.php:70 IDF/Form/Admin/ProjectUpdate.php:51
+#: IDF/Project.php:79
+msgid "A one line description of the project."
+msgstr "Une description d'une ligne du projet."
+
+#: IDF/Form/Admin/ProjectCreate.php:77 IDF/Form/Admin/ProjectUpdate.php:58
+#: IDF/Form/ProjectConf.php:56
+msgid "External URL"
+msgstr "URL externe"
+
+#: IDF/Form/Admin/ProjectCreate.php:84
+msgid "Repository type"
+msgstr "Type de dépôt"
+
+#: IDF/Form/Admin/ProjectCreate.php:92
+msgid "Remote Subversion repository"
+msgstr "Dépôt Subversion distant"
+
+#: IDF/Form/Admin/ProjectCreate.php:99 IDF/Form/SourceConf.php:40
+msgid "Repository username"
+msgstr "Identifiant d'accès au dépôt"
+
+#: IDF/Form/Admin/ProjectCreate.php:106 IDF/Form/SourceConf.php:47
+msgid "Repository password"
+msgstr "Mot de passe du dépôt"
+
+#: IDF/Form/Admin/ProjectCreate.php:113 IDF/Form/Admin/ProjectUpdate.php:66
+msgid "Master branch"
+msgstr "Branche principale"
+
+#: IDF/Form/Admin/ProjectCreate.php:116 IDF/Form/Admin/ProjectUpdate.php:69
+msgid ""
+"This should be a world-wide unique identifier for your project. A reverse "
+"DNS notation like \"com.my-domain.my-project\" is a good idea."
+msgstr ""
+"Cela devrait être un identifiant unique au monde pour votre projet. Une "
+"notation DNS inverse comme «com.mon-domaine.mon-projet» est une bonne idée."
+
+#: IDF/Form/Admin/ProjectCreate.php:121 IDF/Form/Admin/ProjectUpdate.php:95
+#: IDF/Form/MembersConf.php:46 IDF/Form/TabsConf.php:53
+#: IDF/Form/TabsConf.php:72
+msgid "Project owners"
+msgstr "Propriétaires du projet"
+
+#: IDF/Form/Admin/ProjectCreate.php:130 IDF/Form/Admin/ProjectUpdate.php:103
+#: IDF/Form/MembersConf.php:54 IDF/Form/TabsConf.php:52
+#: IDF/Form/TabsConf.php:78
+msgid "Project members"
+msgstr "Membres du projet"
+
+#: IDF/Form/Admin/ProjectCreate.php:140 IDF/Form/Admin/ProjectUpdate.php:85
+#: IDF/Form/IssueCreate.php:168 IDF/Form/IssueUpdate.php:164
+#: IDF/Form/ProjectConf.php:73 IDF/Form/UpdateUpload.php:71
+#: IDF/Form/Upload.php:70 IDF/Form/WikiPageCreate.php:93
+#: IDF/Form/WikiPageUpdate.php:104
+msgid "Labels"
+msgstr "Étiquettes"
+
+#: IDF/Form/Admin/ProjectCreate.php:155
+msgid "Project template"
+msgstr "Modèle de projet"
+
+#: IDF/Form/Admin/ProjectCreate.php:157
+msgid ""
+"Use the given project to initialize the new project. Access rights and "
+"general configuration will be taken from the template project."
+msgstr ""
+"Utiliser le projet sélectionné pour démarrer le nouveau projet. Les droits "
+"d'accès et la configuration générale seront extraits du modèle de projet."
+
+#: IDF/Form/Admin/ProjectCreate.php:204
+msgid ""
+"Only a remote repository available through HTTP or HTTPS is allowed. For "
+"example \"http://somewhere.com/svn/trunk\"."
+msgstr ""
+"Seulement un dépôt distant utilisant HTTP ou HTTPS est autorisé, par exemple "
+"«http://exemple.com/svn/trunk»."
+
+#: IDF/Form/Admin/ProjectCreate.php:220 IDF/Form/Admin/ProjectUpdate.php:117
+msgid ""
+"The master branch is empty or contains illegal characters, please use only "
+"letters, digits, dashes and dots as separators."
+msgstr ""
+"La branche principale est vide ou contient des caractères non autorisés. "
+"Veuillez n'utiliser que des lettres, des chiffres, le tiret (-) et le point "
+"(.)."
+
+#: IDF/Form/Admin/ProjectCreate.php:230 IDF/Form/Admin/ProjectUpdate.php:128
+msgid "This master branch is already used. Please select another one."
+msgstr ""
+"Cette branche principale est déjà utilisée. Veuillez en sélectionner une "
+"autre."
+
+#: IDF/Form/Admin/ProjectCreate.php:241
+msgid ""
+"This shortname contains illegal characters, please use only letters, digits "
+"and dash (-)."
+msgstr ""
+"Ce nom court contient des caractères non autorisés. Veuillez n'utiliser que "
+"des lettres, des chiffres et le tiret (-)."
+
+#: IDF/Form/Admin/ProjectCreate.php:244
+msgid "The shortname cannot start with the dash (-) character."
+msgstr "Le nom court ne doit pas débuter par un tiret (-)."
+
+#: IDF/Form/Admin/ProjectCreate.php:247
+msgid "The shortname cannot end with the dash (-) character."
+msgstr "Le nom court ne doit pas se terminer par un tiret (-)."
+
+#: IDF/Form/Admin/ProjectCreate.php:252
+msgid "This shortname is already used. Please select another one."
+msgstr "Ce nom court est déjà utilisé. Veuillez en sélectionner un autre."
+
+#: IDF/Form/Admin/ProjectCreate.php:303 IDF/Form/Admin/ProjectDelete.php:78
+#: IDF/Form/Admin/ProjectUpdate.php:153 IDF/Form/Admin/UserCreate.php:106
+#: IDF/Form/Admin/UserUpdate.php:191 IDF/Form/IssueCreate.php:338
+#: IDF/Form/IssueUpdate.php:329 IDF/Form/MembersConf.php:64
+#: IDF/Form/Password.php:76 IDF/Form/Register.php:112
+#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:143
+#: IDF/Form/TabsConf.php:122 IDF/Form/UpdateUpload.php:126
+#: IDF/Form/Upload.php:149 IDF/Form/UploadArchive.php:137
+#: IDF/Form/UserAccount.php:216 IDF/Form/UserChangeEmail.php:80
+#: IDF/Form/WikiPageCreate.php:167 IDF/Form/WikiPageDelete.php:59
+#: IDF/Form/WikiPageUpdate.php:178 IDF/Form/WikiResourceCreate.php:123
+#: IDF/Form/WikiResourceDelete.php:59 IDF/Form/WikiResourceUpdate.php:124
+msgid "Cannot save the model from an invalid form."
+msgstr "Impossible de sauvegarder le modèle depuis un formulaire invalide."
+
+#: IDF/Form/Admin/ProjectCreate.php:341
+msgid ""
+"Click on the Project Management tab to set the description of your project."
+msgstr ""
+"Cliquez sur l'onglet d'administration du projet pour définir la description "
+"du projet."
+
+#: IDF/Form/Admin/ProjectCreate.php:426
+msgid "This project is not available."
+msgstr "Ce projet n'est pas disponible."
+
+#: IDF/Form/Admin/ProjectDelete.php:41
+msgid "Confirmation code"
+msgstr "Code de confirmation"
+
+#: IDF/Form/Admin/ProjectDelete.php:46
+msgid "I have made a backup of all the important data of this project."
+msgstr ""
+"J'ai réalisé une copie de sauvegarde des informations importantes de ce "
+"projet."
+
+#: IDF/Form/Admin/ProjectDelete.php:55
+msgid ""
+"The confirmation code does not match. Please provide a valid confirmation "
+"code to delete the project."
+msgstr ""
+"Le code de confirmation ne correspond pas. Merci de fournir un code de "
+"confirmation valide pour supprimer ce projet."
+
+#: IDF/Form/Admin/ProjectDelete.php:63
+msgid "Sorry, you really need to backup your data before deletion."
+msgstr ""
+"Désolé, vous devez vraiment faire une copie de sauvegarde des informations "
+"importantes avant de supprimer le projet."
+
+#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38
+#: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40
+msgid "First name"
+msgstr "Prénom"
+
+#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47
+#: IDF/Form/RegisterConfirmation.php:59 IDF/Form/UserAccount.php:49
+msgid "Last name"
+msgstr "Nom de famille"
+
+#: IDF/Form/Admin/UserCreate.php:56
+msgid "Login"
+msgstr "Identifiant"
+
+#: IDF/Form/Admin/UserCreate.php:60
+msgid ""
+"The login must be between 3 and 15 characters long and contains only letters "
+"and digits."
+msgstr ""
+"L'identifiant doit avoir entre 3 et 15 caractères et ne doit contenir que "
+"des lettres et des chiffres."
+
+#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57
+msgid "Email"
+msgstr "Email"
+
+#: IDF/Form/Admin/UserCreate.php:71
+msgid ""
+"Double check the email address as the password is sent directly to the user."
+msgstr ""
+"Vérifiez tout particulièrement l'adresse email, car le mot de passe est "
+"directement envoyé à l'utilisateur."
+
+#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67
+#: IDF/Form/UserAccount.php:66
+msgid "Language"
+msgstr "Langue"
+
+#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161
+msgid "Add a public key"
+msgstr "Ajouter une clé publique"
+
+#: IDF/Form/Admin/UserCreate.php:92
+msgid ""
+"Paste a SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+"Copiez une clé publique SSH ou monotone. Faites bien attention à ne pas y "
+"mettre votre clé privée!"
+
+#: IDF/Form/Admin/UserCreate.php:157
+msgid "Your details to access your forge."
+msgstr "Vos informations pour accéder à votre forge."
+
+#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:429
+#: IDF/Form/UserAccount.php:438
+#, php-format
+msgid "The email \"%s\" is already used."
+msgstr "L'adresse email «%s» est déjà utilisée."
+
+#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72
+#, php-format
+msgid "The login \"%s\" can only contain letters and digits."
+msgstr "L'identifiant «%s» ne doit contenir que des lettres et des chiffres."
+
+#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77
+#, php-format
+msgid "The login \"%s\" is already used, please find another one."
+msgstr "L'identifiant «%s» est déjà utilisé. Merci d'en choisir un autre."
+
+#: IDF/Form/Admin/UserUpdate.php:78
+msgid "Password"
+msgstr "Mot de passe"
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid "Leave blank if you do not want to change the password."
+msgstr "Laissez vide si vous ne voulez pas modifier le mot de passe."
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid ""
+"The password must be hard for other people to guess, but easy for the user "
+"to remember."
+msgstr ""
+"Le mot de passe doit être difficile à trouver par d'autres, mais simple à "
+"retenir pour l'utilisateur."
+
+#: IDF/Form/Admin/UserUpdate.php:89
+msgid "Confirm password"
+msgstr "Confirmer le mot de passe"
+
+#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/IssueCreate.php:66
+#: IDF/Form/ProjectConf.php:48 IDF/Form/ReviewCreate.php:54
+#: IDF/Form/UpdateUpload.php:51 IDF/Form/Upload.php:49
+#: IDF/Form/UserAccount.php:101 IDF/Form/WikiPageCreate.php:70
+#: IDF/Form/WikiPageUpdate.php:60 IDF/Form/WikiResourceCreate.php:54
+#: IDF/Form/WikiResourceUpdate.php:46 IDF/Views/Wiki.php:102
+msgid "Description"
+msgstr "Description"
+
+#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:110
+msgid "Twitter username"
+msgstr "Nom d'utilisateur Twitter"
+
+#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:120
+msgid "Public email address"
+msgstr "Adresse email publique"
+
+#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:130
+msgid "Website URL"
+msgstr "URL de site Web"
+
+#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:140
+msgid "Upload custom avatar"
+msgstr "Mettre en ligne un avatar personnalisé"
+
+#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:147
+msgid ""
+"An image file with a width and height not larger than 60 pixels (bigger "
+"images are scaled down)."
+msgstr ""
+"Un fichier image dont la largeur et la hauteur ne dépassent pas 60 pixels "
+"(les images plus grandes sont redimensionnées)."
+
+#: IDF/Form/Admin/UserUpdate.php:151 IDF/Form/UserAccount.php:152
+msgid "Remove custom avatar"
+msgstr "Supprimer l'avatar personnalisé"
+
+#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:156
+msgid "Tick this to delete the custom avatar."
+msgstr "Cochez cette option pour supprimer l'avatar personnalisé."
+
+#: IDF/Form/Admin/UserUpdate.php:161 IDF/Views/Admin.php:274
+msgid "Staff"
+msgstr "Gestionnaire"
+
+#: IDF/Form/Admin/UserUpdate.php:164
+msgid "If you give staff rights to a user, you really need to trust him."
+msgstr ""
+"Si vous donnez des droits de gestionnaire à un utilisateur, vous devez lui "
+"faire confiance."
+
+#: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:276
+msgid "Active"
+msgstr "Actif"
+
+#: IDF/Form/Admin/UserUpdate.php:176
+msgid ""
+"If the user is not getting the confirmation email or is abusing the system, "
+"you can directly enable or disable their account here."
+msgstr ""
+"Si l'utilisateur ne reçoit pas l'email de confirmation ou s'il abuse du "
+"système, vous pouvez directement activer ou désactiver son compte ici."
+
+#: IDF/Form/Admin/UserUpdate.php:274
+msgid "--- is not a valid first name."
+msgstr "--- n'est pas un prénom valide."
+
+#: IDF/Form/Admin/UserUpdate.php:290
+msgid ""
+"A user with this email already exists, please provide another email address."
+msgstr ""
+"Un utilisateur avec cet email existe déjà. Merci de fournir une autre "
+"adresse email."
+
+#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/UserAccount.php:398
+msgid "For security reason, you cannot upload a file with this extension."
+msgstr ""
+"Pour des raisons de sécurité, vous ne pouvez pas mettre en ligne un fichier "
+"ayant cette extension."
+
+#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:461
+msgid "The passwords do not match. Please give them again."
+msgstr ""
+"Les mots de passe ne sont pas identiques. Veuillez les saisir à nouveau."
+
+#: IDF/Form/Field/EmailList.php:45
+msgid "Please enter one or more valid email addresses."
+msgstr "Veuillez entrer une ou plusieurs adresses email valides."
+
+#: IDF/Form/IssueCreate.php:57 IDF/Form/IssueUpdate.php:46
+#: IDF/Form/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:73
+#: IDF/Form/UpdateUpload.php:42 IDF/Form/Upload.php:40
+#: IDF/gettexttemplates/idf/issues/base.html.php:3 IDF/Views/Download.php:65
+#: IDF/Views/Download.php:347 IDF/Views/Issue.php:62 IDF/Views/Issue.php:221
+#: IDF/Views/Issue.php:302 IDF/Views/Issue.php:391 IDF/Views/Issue.php:543
+#: IDF/Views/Issue.php:766 IDF/Views/Issue.php:825 IDF/Views/Review.php:58
+#: IDF/Views/User.php:83 IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:145
+#: IDF/Views/Wiki.php:186
+msgid "Summary"
+msgstr "Résumé"
+
+#: IDF/Form/IssueCreate.php:76 IDF/Form/IssueUpdate.php:66
+#: IDF/Form/ReviewCreate.php:83
+msgid "The \"upload_issue_path\" configuration variable was not set."
+msgstr "La variable de configuration «upload_issue_path» n'a pas été définie."
+
+#: IDF/Form/IssueCreate.php:86 IDF/Form/IssueUpdate.php:76
+msgid "Attach a file"
+msgstr "Joindre un fichier"
+
+#: IDF/Form/IssueCreate.php:99 IDF/Form/IssueUpdate.php:89
+#: IDF/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:83
+#: IDF/Views/Issue.php:63 IDF/Views/Issue.php:222 IDF/Views/Issue.php:304
+#: IDF/Views/Issue.php:392 IDF/Views/Issue.php:544 IDF/Views/Issue.php:767
+#: IDF/Views/Issue.php:826 IDF/Views/Review.php:59 IDF/Views/User.php:84
+msgid "Status"
+msgstr "Statut"
+
+#: IDF/Form/IssueCreate.php:108 IDF/Form/IssueUpdate.php:99
+msgid "Owner"
+msgstr "Propriétaire"
+
+#: IDF/Form/IssueCreate.php:118 IDF/Form/IssueUpdate.php:112
+#: IDF/Form/IssueUpdate.php:129
+msgid "This issue"
+msgstr "Ce ticket"
+
+#: IDF/Form/IssueCreate.php:210
+msgid "You cannot add a label with the \"Status\" prefix to an issue."
+msgstr ""
+"Vous ne pouvez pas ajouter à un ticket une étiquette ayant le préfixe "
+"«Status»."
+
+#: IDF/Form/IssueCreate.php:211 IDF/Form/IssueCreate.php:218
+#: IDF/Form/UpdateUpload.php:110 IDF/Form/Upload.php:121
+#: IDF/Form/WikiPageCreate.php:151 IDF/Form/WikiPageUpdate.php:162
+msgid "You provided an invalid label."
+msgstr "Vous avez fourni une étiquette invalide."
+
+#: IDF/Form/IssueCreate.php:217 IDF/Form/UpdateUpload.php:109
+#, php-format
+msgid "You cannot provide more than one label from the %s class to an issue."
+msgstr ""
+"Vous ne pouvez pas fournir plus d'une étiquette de la classe %s à un ticket."
+
+#: IDF/Form/IssueCreate.php:228 IDF/Form/IssueUpdate.php:194
+msgid "You need to provide a description of the issue."
+msgstr "Vous devez fournir une description du ticket."
+
+#: IDF/Form/IssueCreate.php:251 IDF/Form/ReviewCreate.php:159
+msgid "You provided an invalid status."
+msgstr "Vous avez fourni un statut invalide."
+
+#: IDF/Form/IssueCreate.php:272
+msgid "You provided an invalid relation type."
+msgstr "Vous avez fourni un type de relation invalide."
+
+#: IDF/Form/IssueCreate.php:294
+#, php-format
+msgid "The value \"%s\" is not a valid issue id."
+msgstr "La valeur «%s» n'est pas un numéro de ticket valide."
+
+#: IDF/Form/IssueCreate.php:300
+#, php-format
+msgid "The issue \"%s\" does not exist."
+msgstr "Le ticket «%s» n'existe pas."
+
+#: IDF/Form/IssueTrackingConf.php:86
+msgid "is related to"
+msgstr "est lié à"
+
+#: IDF/Form/IssueTrackingConf.php:87
+msgid "blocks"
+msgstr "bloque"
+
+#: IDF/Form/IssueTrackingConf.php:88
+msgid "is blocked by"
+msgstr "est bloqué par"
+
+#: IDF/Form/IssueTrackingConf.php:89
+msgid "duplicates"
+msgstr "doublons"
+
+#: IDF/Form/IssueTrackingConf.php:90
+msgid "is duplicated by"
+msgstr "est dupliqué par"
+
+#: IDF/Form/IssueTrackingConf.php:97
+msgid ""
+"Define an issue template to hint the reporter to provide certain information"
+msgstr ""
+"Définir un modèle de ticket pour suggérer au rapporteur certaines "
+"informations à fournir"
+
+#: IDF/Form/IssueTrackingConf.php:106
+msgid "Open issue status values"
+msgstr "Valeurs des statuts des tickets ouverts"
+
+#: IDF/Form/IssueTrackingConf.php:114
+msgid "Closed issue status values"
+msgstr "Valeurs des statuts des tickets fermés"
+
+#: IDF/Form/IssueTrackingConf.php:123
+msgid "Predefined issue labels"
+msgstr "Étiquettes prédéfinies des tickets"
+
+#: IDF/Form/IssueTrackingConf.php:125
+msgid ""
+"The first \"Type:\" and \"Priority:\" entries found in this list are "
+"automatically chosen as defaults for new issues."
+msgstr ""
+"Les premières entrées «Type:» et «Priorité:» de cette liste sont "
+"automatiquement choisies par défaut pour les nouveaux tickets."
+
+#: IDF/Form/IssueTrackingConf.php:133
+msgid "Each issue may have at most one label with each of these classes."
+msgstr ""
+"Chaque ticket ne peut avoir qu'une seule étiquette pour chacune de ces "
+"classes."
+
+#: IDF/Form/IssueTrackingConf.php:140
+msgid "Issue relations"
+msgstr "Relations entre les tickets"
+
+#: IDF/Form/IssueTrackingConf.php:142
+msgid ""
+"You can define bidirectional relations like \"is related to\" or \"blocks, "
+"is blocked by\". For standard relations pre-configured translations exist, "
+"new relations should however be defined in a language that is understood by "
+"all project members."
+msgstr ""
+"ous pouvez définir des relations bidirectionnelles comme « est lié "
+"à » ou « bloque, est bloqué par ». Pour des relations "
+"standards pré-configurées, il exite des traductions. De nouvelles relations "
+"peuvent cependant être définies dans un vocabulaire compris par tous les "
+"membres du projets."
+
+#: IDF/Form/IssueUpdate.php:56 IDF/Form/ReviewFileComment.php:45
+#: IDF/Form/WikiPageUpdate.php:82 IDF/Form/WikiResourceUpdate.php:66
+msgid "Comment"
+msgstr "Commentaire"
+
+#: IDF/Form/IssueUpdate.php:316
+msgid "No changes were entered."
+msgstr "Aucune modification n'a été effectuée."
+
+#: IDF/Form/MembersConf.php:104
+#, php-format
+msgid "The following login is invalid: %s."
+msgid_plural "The following logins are invalid: %s."
+msgstr[0] "L'identifiant suivant est invalide: %s."
+msgstr[1] "Les identifiants suivants sont invalides: %s."
+
+#: IDF/Form/Password.php:34
+msgid "Your login or email"
+msgstr "Votre identifiant ou email"
+
+#: IDF/Form/Password.php:35
+msgid "Provide either your login or your email to recover your password."
+msgstr ""
+"Fournissez votre identifiant ou votre email pour récupérer votre mot de "
+"passe."
+
+#: IDF/Form/Password.php:49 IDF/Form/Password.php:64
+msgid ""
+"Sorry, we cannot find a user with this email address or login. Feel free to "
+"try again."
+msgstr ""
+"Désolé, nous n'avons pas trouvé d'utilisateur avec cette adresse email ou "
+"cet identifiant. Vous pouvez essayer à nouveau."
+
+#: IDF/Form/Password.php:100
+msgid "Password Recovery - InDefero"
+msgstr "Récupération du mot de passe - InDefero"
+
+#: IDF/Form/PasswordInputKey.php:36 IDF/Form/PasswordReset.php:39
+#: IDF/Form/UserChangeEmail.php:36
+msgid "Your verification key"
+msgstr "Votre clé de vérification"
+
+#: IDF/Form/PasswordInputKey.php:50 IDF/Form/PasswordReset.php:89
+msgid ""
+"We are sorry but this validation key is not valid. Maybe you should directly "
+"copy/paste it from your validation email."
+msgstr ""
+"Nous sommes désolés, mais cette clé de validation est invalide. Peut-être "
+"devriez-vous faire directement un copier/coller depuis votre email de "
+"validation."
+
+#: IDF/Form/PasswordInputKey.php:61 IDF/Form/PasswordReset.php:100
+msgid ""
+"Sorry, but this verification key has expired, please restart the password "
+"recovery sequence. For security reasons, the verification key is only valid "
+"24h."
+msgstr ""
+"Désolé, cette clé de vérification a expiré. Merci de recommencer la "
+"procédure de récupération du mot de passe. Pour des raisons de sécurité, la "
+"clé de vérification n'est valide que 24 heures."
+
+#: IDF/Form/PasswordInputKey.php:76 IDF/Form/PasswordReset.php:108
+#: IDF/Form/RegisterConfirmation.php:137 IDF/Form/RegisterInputKey.php:72
+msgid "Cannot save an invalid form."
+msgstr "Impossible de sauvegarder un formulaire invalide."
+
+#: IDF/Form/PasswordReset.php:45 IDF/Form/RegisterConfirmation.php:69
+#: IDF/Form/UserAccount.php:77
+msgid "Your password"
+msgstr "Votre mot de passe"
+
+#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80
+msgid ""
+"Your password must be hard for other people to find it, but easy for you to "
+"remember."
+msgstr ""
+"Votre mot de passe doit être difficile à trouver par d'autres, mais simple à "
+"retenir pour vous."
+
+#: IDF/Form/PasswordReset.php:56 IDF/Form/RegisterConfirmation.php:80
+#: IDF/Form/UserAccount.php:89
+msgid "Confirm your password"
+msgstr "Confirmez votre mot de passe"
+
+#: IDF/Form/PasswordReset.php:74 IDF/Form/RegisterConfirmation.php:122
+msgid "The two passwords must be the same."
+msgstr "Les deux mots de passe doivent être identiques."
+
+#: IDF/Form/PasswordReset.php:77
+msgid ""
+"This account is not active. Please contact the forge administrator to "
+"activate it."
+msgstr ""
+"Ce compte n'est pas actif. Veuillez contacter l'administrateur de la forge "
+"pour l'activer."
+
+#: IDF/Form/ProjectConf.php:43
+msgid "Short Description"
+msgstr "Description courte"
+
+#: IDF/Form/ProjectConf.php:85
+msgid "The \"upload_path\" configuration variable was not set."
+msgstr "La variable de configuration «upload_path» n'a pas été définie."
+
+#: IDF/Form/ProjectConf.php:90
+msgid "Update the logo"
+msgstr "Mettre à jour le logo"
+
+#: IDF/Form/ProjectConf.php:92
+msgid "The logo must be a picture with a size of 32 by 32."
+msgstr "Le logo doit être une image de 32 × 32 pixels."
+
+#: IDF/Form/ProjectConf.php:103
+msgid "Remove the current logo"
+msgstr "Supprimer le logo actuel"
+
+#: IDF/Form/ProjectConf.php:139
+msgid "Could not determine the size of the uploaded picture."
+msgstr "Impossible de déterminer la taille de l'image mise en ligne."
+
+#: IDF/Form/ProjectConf.php:143
+msgid "The picture must have a size of 32 by 32."
+msgstr "L'image doit avoir une taille de 32 × 32 pixels."
+
+#: IDF/Form/ProjectConf.php:164
+msgid "The entered URL is invalid. Only http and https URLs are allowed."
+msgstr ""
+"L'adresse entrée est invalide. Seul les sites \"http\" et \"https\" sont "
+"autorisés."
+
+#: IDF/Form/Register.php:41
+msgid "Your login"
+msgstr "Votre identifiant"
+
+#: IDF/Form/Register.php:45
+msgid ""
+"The login must be between 3 and 15 characters long and contain only letters "
+"and digits."
+msgstr ""
+"L'identifiant doit avoir entre 3 et 15 caractères et ne doit contenir que "
+"des lettres et des chiffres."
+
+#: IDF/Form/Register.php:53 IDF/Form/UserAccount.php:59
+msgid "Your email"
+msgstr "Votre email"
+
+#: IDF/Form/Register.php:55
+msgid "We will never send you any unsolicited emails. We hate spam too!"
+msgstr ""
+"Nous ne vous enverrons aucun message non sollicité. Comme vous, nous avons "
+"ras-le-bol du spam."
+
+#: IDF/Form/Register.php:60
+msgid "I agree to the terms and conditions."
+msgstr "J'accepte les conditions d'usage du service."
+
+#: IDF/Form/Register.php:88
+msgid ""
+"We know, this is boring, but you need to agree with the terms and conditions."
+msgstr ""
+"Nous savons que c'est inintéressant, mais vous devez accepter les conditions "
+"d'usage du service."
+
+#: IDF/Form/Register.php:97
+#, php-format
+msgid ""
+"The email \"%1$s\" is already used. If you need to, you can recover your password."
+msgstr ""
+"L'email \"%1$s\" est déjà utilisé. Si vous le voulez, vous pouvez récupérer votre mot de passe."
+
+#: IDF/Form/Register.php:148
+msgid "Confirm the creation of your account."
+msgstr "Confirmez la création de votre compte."
+
+#: IDF/Form/RegisterConfirmation.php:40 IDF/Form/RegisterInputKey.php:36
+msgid "Your confirmation key"
+msgstr "Votre clé de confirmation"
+
+#: IDF/Form/RegisterConfirmation.php:72
+msgid ""
+"Your password must be hard for other people to guess, but easy for you to "
+"remember."
+msgstr ""
+"Votre mot de passe doit être difficile à trouver par d'autres, mais simple à "
+"retenir pour vous."
+
+#: IDF/Form/RegisterConfirmation.php:99 IDF/Form/RegisterInputKey.php:50
+msgid ""
+"We are sorry but this confirmation key is not valid. Maybe you should "
+"directly copy/paste it from your confirmation email."
+msgstr ""
+"Nous sommes désolés, mais cette clé de confirmation est invalide. Peut-être "
+"devriez-vous faire directement un copier/coller depuis votre email de "
+"confirmation."
+
+#: IDF/Form/RegisterConfirmation.php:110
+#, php-format
+msgid ""
+"This account has already been confirmed. Maybe should you try to recover your password."
+msgstr ""
+"Ce compte à déjà été validé. Vous voulez peut-être récupérer "
+"votre mot de passe."
+
+#: IDF/Form/ReviewCreate.php:74
+#: IDF/gettexttemplates/idf/source/base.html.php:5
+#: IDF/gettexttemplates/idf/source/changelog.html.php:7
+msgid "Commit"
+msgstr "Commit"
+
+#: IDF/Form/ReviewCreate.php:92
+msgid "Patch"
+msgstr "Patch"
+
+#: IDF/Form/ReviewCreate.php:119
+msgid "We were not able to parse your patch. Please provide a valid patch."
+msgstr ""
+"Nous n'avons pas réussi à interpréter votre patch. Merci de fournir un patch "
+"valide."
+
+#: IDF/Form/ReviewCreate.php:128
+msgid "You provided an invalid commit."
+msgstr "Vous avez fourni un commit invalide."
+
+#: IDF/Form/ReviewCreate.php:202
+msgid "Initial patch to be reviewed."
+msgstr "Patch initial à discuter."
+
+#: IDF/Form/ReviewFileComment.php:56
+msgid "General comment"
+msgstr "Commentaire général"
+
+#: IDF/Form/ReviewFileComment.php:113
+msgid ""
+"You need to provide your general comment about the proposal, or comments on "
+"at least one file."
+msgstr ""
+"Vous devez faire un commentaire général sur la revue de code, ou des "
+"commentaires sur au moins un des fichiers."
+
+#: IDF/Form/ReviewFileComment.php:124
+msgid "The status have been updated."
+msgstr "Le statut a été mis à jour."
+
+#: IDF/Form/ReviewFileComment.php:130
+msgid "This field is required."
+msgstr "Ce champ est obligatoire."
+
+#: IDF/Form/SourceConf.php:54 IDF/Form/UploadConf.php:70
+msgid "Webhook URL"
+msgstr "URL de notification"
+
+#: IDF/Form/TabsConf.php:38 IDF/gettexttemplates/idf/admin/base.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html.php:8
+#: IDF/gettexttemplates/idf/base-full.html~.php:7
+#: IDF/gettexttemplates/idf/base.html.php:8
+#: IDF/gettexttemplates/idf/base.html~.php:7
+#: IDF/gettexttemplates/idf/downloads/base.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:14
+#: IDF/Views/Project.php:97
+msgid "Downloads"
+msgstr "Téléchargements"
+
+#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.php:12
+#: IDF/gettexttemplates/idf/base-full.html~.php:11
+#: IDF/gettexttemplates/idf/base.html.php:12
+#: IDF/gettexttemplates/idf/base.html~.php:11
+msgid "Code Review"
+msgstr "Revue de code"
+
+#: IDF/Form/TabsConf.php:40 IDF/gettexttemplates/idf/admin/base.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html~.php:8
+#: IDF/gettexttemplates/idf/base.html.php:9
+#: IDF/gettexttemplates/idf/base.html~.php:8
+msgid "Documentation"
+msgstr "Documentation"
+
+#: IDF/Form/TabsConf.php:41 IDF/gettexttemplates/idf/admin/base.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html.php:11
+#: IDF/gettexttemplates/idf/base-full.html~.php:10
+#: IDF/gettexttemplates/idf/base.html.php:11
+#: IDF/gettexttemplates/idf/base.html~.php:10
+msgid "Source"
+msgstr "Source"
+
+#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.php:10
+#: IDF/gettexttemplates/idf/base-full.html~.php:9
+#: IDF/gettexttemplates/idf/base.html.php:10
+#: IDF/gettexttemplates/idf/base.html~.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:17
+msgid "Issues"
+msgstr "Tickets"
+
+#: IDF/Form/TabsConf.php:50
+msgid "Open to all"
+msgstr "Ouvert à tous"
+
+#: IDF/Form/TabsConf.php:51
+msgid "Signed in users"
+msgstr "Utilisateurs authentifiés"
+
+#: IDF/Form/TabsConf.php:54
+msgid "Closed"
+msgstr "Fermé"
+
+#: IDF/Form/TabsConf.php:84
+msgid "Others"
+msgstr "Autres"
+
+#: IDF/Form/TabsConf.php:107
+msgid "Extra authorized users"
+msgstr "Utilisateurs autorisés supplémentaires"
+
+#: IDF/Form/Upload.php:59 IDF/Form/WikiResourceCreate.php:65
+#: IDF/Form/WikiResourceUpdate.php:56
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7
+#: IDF/Views/Download.php:64 IDF/Views/Download.php:346
+msgid "File"
+msgstr "Fichier"
+
+#: IDF/Form/Upload.php:87 IDF/Form/WikiResourceCreate.php:96
+#: IDF/Form/WikiResourceUpdate.php:83
+msgid "For security reasons, you cannot upload a file with this extension."
+msgstr ""
+"Pour des raisons de sécurité, vous ne pouvez pas mettre en ligne un fichier "
+"ayant cette extension."
+
+#: IDF/Form/Upload.php:120
+#, php-format
+msgid "You cannot provide more than one label from the %s class to a download."
+msgstr ""
+"Vous ne pouvez pas fournir plus d'une étiquette de la classe %s pour un "
+"téléchargement."
+
+#: IDF/Form/UploadArchive.php:41
+msgid "Archive file"
+msgstr "Fichier archivé"
+
+#: IDF/Form/UploadArchive.php:67
+#, php-format
+msgid ""
+"For security reasons, you cannot upload a file (%s) with this extension."
+msgstr ""
+"Pour des raisons de sécurité, vous ne pouvez pas uploader une fichier (%s) "
+"sans son extension."
+
+#: IDF/Form/UploadArchive.php:98
+#, php-format
+msgid ""
+"You cannot provide more than label from the %1$s class to a download (%2$s)."
+msgstr ""
+"Vous ne pouvez pas fournir plus d'une étiquette de la classe %1$s pour un "
+"téléchargement (%2$s)."
+
+#: IDF/Form/UploadArchive.php:109
+#, php-format
+msgid ""
+"A file with the name \"%s\" has already been uploaded and is not marked to "
+"be replaced."
+msgstr ""
+"Un fichier avec ce nom \"%s\" à été déjà été envoyé et n'a pas été signalé "
+"comme un fichier qui devait être remplacé."
+
+#: IDF/Form/UploadArchiveHelper.php:41
+msgid "The archive does not exist."
+msgstr "L'archive n'existe pas."
+
+#: IDF/Form/UploadArchiveHelper.php:48
+#, php-format
+msgid "The archive could not be read (code %d)."
+msgstr "L'archive ne peut pas être lue (code %d)."
+
+#: IDF/Form/UploadArchiveHelper.php:53
+msgid "The archive does not contain a manifest.xml."
+msgstr "L'archive ne contient pas de fichier \"manifest.xml\"."
+
+#: IDF/Form/UploadArchiveHelper.php:61
+#, php-format
+msgid "The archive's manifest is invalid: %s"
+msgstr "Le manifeste de l'archive est invalide : %s."
+
+#: IDF/Form/UploadArchiveHelper.php:77
+#, php-format
+msgid "The entry %d in the manifest is missing a file name."
+msgstr "Il manque le nom du fichier dans l'entrée %d du manifeste."
+
+#: IDF/Form/UploadArchiveHelper.php:82
+#, php-format
+msgid "The entry %d in the manifest is missing a summary."
+msgstr "Il manque une résumé dans l'entrée %d du manifeste."
+
+#: IDF/Form/UploadArchiveHelper.php:86
+msgid "The manifest must not reference itself."
+msgstr "Le manifeste ne doit pas se faire référence à lui même."
+
+#: IDF/Form/UploadArchiveHelper.php:91
+#, php-format
+msgid "The entry %s in the manifest does not exist in the archive."
+msgstr "L'entrée %s du manifeste n'existe pas dans l'archive."
+
+#: IDF/Form/UploadArchiveHelper.php:96
+#, php-format
+msgid "The entry %s in the manifest is referenced more than once."
+msgstr "L'entrée %s du manifeste est référencée plus d'une fois."
+
+#: IDF/Form/UploadArchiveHelper.php:108
+#, php-format
+msgid "The entry %s in the manifest has more than the six allowed labels set."
+msgstr ""
+"L'entrée %s du manifeste contient plus que le maximum des 6 étiquettes "
+"autorisées."
+
+#: IDF/Form/UploadConf.php:53
+msgid "Predefined download labels"
+msgstr "Étiquettes prédéfinies des téléchargements"
+
+#: IDF/Form/UploadConf.php:62
+msgid "Each download may have at most one label with each of these classes"
+msgstr ""
+"Chaque téléchargement ne peut avoir qu'une seule étiquette pour chacune de "
+"ces classes"
+
+#: IDF/Form/UserAccount.php:61
+msgid ""
+"If you change your email address, an email will be sent to the new address "
+"to confirm it."
+msgstr ""
+"Si vous changez votre adresse email, un message sera envoyé à la nouvelle "
+"adresse pour confirmation."
+
+#: IDF/Form/UserAccount.php:80
+msgid "Leave blank if you do not want to change your password."
+msgstr "Laissez vide si vous ne voulez pas modifier votre mot de passe."
+
+#: IDF/Form/UserAccount.php:166
+msgid ""
+"Paste an SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+"Copiez une clé publique SSH ou monotone. Faites bien attention à ne pas y "
+"mettre votre clé privée!"
+
+#: IDF/Form/UserAccount.php:171
+msgid "Add a secondary email address"
+msgstr "Ajouter une adresse email secondaire"
+
+#: IDF/Form/UserAccount.php:173
+msgid "You will get an email to confirm that you own the address you specify."
+msgstr ""
+"Vous allez recevoir un email de confirmation à l'adresse que vous avez "
+"spécifié."
+
+#: IDF/Form/UserAccount.php:200
+msgid "Confirm your new email address."
+msgstr "Confirmez votre nouvelle adresse email."
+
+#: IDF/Form/UserAccount.php:203
+#, php-format
+msgid ""
+"A validation email has been sent to \"%s\" to validate the email address "
+"change."
+msgstr "Un email a été envoyé à «%s» pour valider le changement d'adresse."
+
+#: IDF/Form/UserAccount.php:341
+msgid ""
+"Please check the key as it does not appear to be a valid SSH public key."
+msgstr ""
+"Veuillez vérifier la clé, car elle ne semble pas être une clé publique SSH "
+"valide."
+
+#: IDF/Form/UserAccount.php:363
+msgid ""
+"Please check the key as it does not appear to be a valid monotone public key."
+msgstr ""
+"Veuillez vérifier la clé, car elle ne semble pas être une clé publique "
+"monotone valide."
+
+#: IDF/Form/UserAccount.php:371
+msgid "Public key looks like neither an SSH nor monotone public key."
+msgstr ""
+"La clé publique ne ressemble pas à une clé publique SSH ni à une clé "
+"publique monotone."
+
+#: IDF/Form/UserAccount.php:383
+msgid "You already have uploaded this key."
+msgstr "Vous avez déjà mis en ligne cette clé."
+
+#: IDF/Form/UserChangeEmail.php:63
+msgid ""
+"The validation key is not valid. Please copy/paste it from your confirmation "
+"email."
+msgstr ""
+"La clé de validation est invalide. Veuillez la copier/coller depuis votre "
+"email de confirmation."
+
+#: IDF/Form/WikiConf.php:49
+msgid "Predefined documentation page labels"
+msgstr "Étiquettes prédéfinies des pages de documentation"
+
+#: IDF/Form/WikiConf.php:58
+msgid ""
+"Each documentation page may have at most one label with each of these classes"
+msgstr ""
+"Chaque page de documentation ne peut avoir qu'une seule étiquette pour "
+"chacune de ces classes"
+
+#: IDF/Form/WikiPageCreate.php:38
+msgid ""
+"# Introduction\n"
+"\n"
+"Add your content here.\n"
+"\n"
+"\n"
+"# Details\n"
+"\n"
+"Add your content here. Format your content with:\n"
+"\n"
+"* Text in **bold** or *italic*.\n"
+"* Headings, paragraphs, and lists.\n"
+"* Links to other [[WikiPage]].\n"
+msgstr ""
+"# Introduction\n"
+"\n"
+"Ajoutez votre contenu ici.\n"
+"\n"
+"# Détails\n"
+"\n"
+"Ajoutez votre contenu ici. Vous pouvez utiliser:\n"
+"\n"
+"* du texte en **gras** ou en *italique*;\n"
+"* des titres, des paragraphes ou des listes;\n"
+"* des liens vers d'autres [[PageDeDocumentation]].\n"
+
+#: IDF/Form/WikiPageCreate.php:57
+msgid "PageName"
+msgstr "NomDeLaPage"
+
+#: IDF/Form/WikiPageCreate.php:60 IDF/Form/WikiPageUpdate.php:50
+msgid "Page title"
+msgstr "Titre de la page"
+
+#: IDF/Form/WikiPageCreate.php:66 IDF/Form/WikiPageUpdate.php:56
+msgid ""
+"The page name must contains only letters, digits and the dash (-) character."
+msgstr ""
+"Le nom de la page ne doit contenir que des lettres, des chiffres et le tiret "
+"(-)."
+
+#: IDF/Form/WikiPageCreate.php:71 IDF/Form/WikiPageUpdate.php:61
+msgid "This one line description is displayed in the list of pages."
+msgstr "Cette description d'une ligne est affichée dans la liste des pages."
+
+#: IDF/Form/WikiPageCreate.php:108 IDF/Form/WikiPageUpdate.php:119
+#: IDF/Form/WikiResourceCreate.php:78
+msgid "The title contains invalid characters."
+msgstr "Le titre contient des caractères invalides."
+
+#: IDF/Form/WikiPageCreate.php:114 IDF/Form/WikiPageUpdate.php:125
+msgid "A page with this title already exists."
+msgstr "Une page avec ce titre existe déjà."
+
+#: IDF/Form/WikiPageCreate.php:150 IDF/Form/WikiPageUpdate.php:161
+#, php-format
+msgid "You cannot provide more than one label from the %s class to a page."
+msgstr ""
+"Vous ne pouvez pas fournir plus d'une étiquette de la classe %s pour une "
+"page."
+
+#: IDF/Form/WikiPageCreate.php:200
+msgid "Initial page creation"
+msgstr "Création de la page initiale"
+
+#: IDF/Form/WikiPageDelete.php:39
+msgid "Yes, I understand that the page and all its revisions will be deleted."
+msgstr ""
+"Oui, je comprends que la page ainsi que toutes ses révisions vont être "
+"supprimées."
+
+#: IDF/Form/WikiPageDelete.php:50 IDF/Form/WikiResourceDelete.php:50
+msgid "You need to confirm the deletion."
+msgstr "Vous devez confirmer la suppression."
+
+#: IDF/Form/WikiPageUpdate.php:83 IDF/Form/WikiResourceUpdate.php:67
+msgid "One line to describe the changes you made."
+msgstr "Une ligne pour décrire les modifications que vous avez effectuées."
+
+#: IDF/Form/WikiResourceCreate.php:40
+msgid "ResourceName"
+msgstr "Nom de la ressource"
+
+#: IDF/Form/WikiResourceCreate.php:44
+msgid "Resource title"
+msgstr "Titre de la ressource"
+
+#: IDF/Form/WikiResourceCreate.php:50
+msgid ""
+"The resource name must contains only letters, digits and the dash (-) "
+"character."
+msgstr ""
+"Le nom de la ressource ne peut contenir que des lettre, des chiffres, et des "
+"tirets (-)."
+
+#: IDF/Form/WikiResourceCreate.php:55 IDF/Form/WikiResourceUpdate.php:47
+msgid "This one line description is displayed in the list of resources."
+msgstr "Cette ligne de description est affichée dans la liste des ressources."
+
+#: IDF/Form/WikiResourceCreate.php:84
+msgid "A resource with this title already exists."
+msgstr "Une ressource avec ce titre existe déjà."
+
+#: IDF/Form/WikiResourceCreate.php:142
+msgid "Initial resource creation"
+msgstr "Création initiale de la ressource"
+
+#: IDF/Form/WikiResourceDelete.php:39
+msgid ""
+"Yes, I understand that the resource and all its revisions will be deleted."
+msgstr "Oui, je comprend cette ressource et cette révision va être supprimée."
+
+#: IDF/Form/WikiResourceUpdate.php:89
+#, php-format
+msgid ""
+"The mime type of the uploaded file \"%1$s\" does not match the mime type of "
+"this resource \"%2$s\""
+msgstr ""
+"Le type MIME du fichier envoyé \"%1$s\" ne correspond pas avec le type MIME "
+"de cette ressource \"%2$s\""
+
+#: IDF/Form/WikiResourceUpdate.php:97
+msgid "The current version of the resource and the uploaded file are equal."
+msgstr ""
+"La version actuelle de la ressource et du fichier envoyé sont les mêmes"
+
+#: IDF/Gconf.php:60 IDF/Search/Occ.php:56
+msgid "model class"
+msgstr "classe du modèle"
+
+#: IDF/Gconf.php:66 IDF/Search/Occ.php:62
+msgid "model id"
+msgstr "id du modèle"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:3
+msgid "Project Summary"
+msgstr "Résumé du projet"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:6
+msgid "Issue Tracking"
+msgstr "Gestionnaire de tickets"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:8
+msgid "Project Members"
+msgstr "Membres du projet"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:9
+msgid "Tabs Access and Notifications"
+msgstr "Accès aux onglets et notifications"
+
+#: IDF/gettexttemplates/idf/admin/downloads.html.php:3
+#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3
+#: IDF/gettexttemplates/idf/admin/wiki.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/labels.html.php:3
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
List one status value per line in desired sort-order.
\n"
+"
Optionally, use an equals-sign to document the meaning of each status "
+"value.
\n"
+msgstr ""
+"\n"
+"
Instructions:
\n"
+"
Listez un statut par ligne dans l'ordre de tri désiré.
\n"
+"
Vous pouvez optionnellement utiliser le signe égal (=) pour ajouter la "
+"signification de chaque statut.
The webhook URL setting specifies an URL to which a HTTP PUT"
+"strong>\n"
+"request is sent after a new download has been added or to which a HTTP "
+"POST\n"
+"request is sent after an existing download has been updated.\n"
+"If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/upload
\n"
+"
http://domain.com/upload?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each download:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%d - download id
\n"
+"
\n"
+"\n"
+"
For example, updating download 123 of project 'my-project' with\n"
+"web hook URL http://mydomain.com/%p/%d would send a POST "
+"request to\n"
+"http://mydomain.com/my-project/123.
"
+msgstr ""
+"
Il est possible de mettre en place l'envoie de méta-information à l'aide "
+"d'une requête HTTP PUT lors de la création, ou POST lors de la mise a jour "
+"d'un téléchargement. Laisser ce champs vide pour désactiver les "
+"notifications.
\n"
+"\n"
+"
Le lien ne doit pas contenir de caractères spéciaux, par exemple :
\n"
+"\n"
+"
\n"
+"
http://domain.com/upload
\n"
+"
http://domain.com/upload?my%20param
\n"
+"
\n"
+"\n"
+"
De plus, il peut contenir les séquences suivantes qui seront remplacer "
+"par les valeurs spécifiques au projet et au téléchargement en question.
\n"
+"\n"
+"
\n"
+"
%p - le nom du projet
\n"
+"
%d - l'identifiant du téléchargement
\n"
+"
\n"
+"\n"
+"
Par exemple, la mise a jour du téléchargement 123 dans le projet 'my-"
+"project', avec le lien suivant http://mydomain.com/%p/%d\n"
+"enverra une requête POST à l’adresse suivante http://mydomain.com/my-"
+"project/123.
A project owner may make any change to this project, including removing "
+"other project owners. You need to be carefull when you give owner rights."
+"p>\n"
+"
A project member will not have access to the administration area but will "
+"have more options available in the use of the project.
\n"
+msgstr ""
+"\n"
+"
Notes:
\n"
+"
Le propriétaire d'un projet peut effectuer n'importe quelle modification "
+"au projet, incluant la suppression d'autres propriétaires. Soyez donc "
+"prudent quand vous ajoutez un propriétaire.
\n"
+"
Un membre du projet n'aura pas accès à la zone d'administration, mais "
+"aura plus d'options dans l'utilisation du projet.
\n"
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:3
+msgid "You can find here the current repository configuration of your project."
+msgstr "Vous trouverez ici la configuration du dépôt actuel de votre projet."
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:4
+msgid ""
+"
The webhook URL setting specifies an URL to which a HTTP \n"
+"%%hook_request_method%% request is sent after each "
+"repository\n"
+"commit. If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/commit
\n"
+"
http://domain.com/commit?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each commit:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%r - revision number
\n"
+"
\n"
+"\n"
+"
For example, committing revision 123 to project 'my-project' with\n"
+"post-commit URL http://mydomain.com/%p/%r would send a request "
+"to\n"
+"http://mydomain.com/my-project/123.
"
+msgstr ""
+"
Il est possible de mettre en place l'envoie de méta-information à l'aide "
+"d'une requête HTTP %%hook_request_method%% lors de la "
+"réception de commit dans le dépôt .Laisser ce champs vide pour désactiver "
+"les notifications.
\n"
+"\n"
+"
Le lien ne doit pas contenir de caractères spéciaux, par exemple :
\n"
+"\n"
+"
\n"
+"
http://domain.com/commit
\n"
+"
http://domain.com/commit?my%20param
\n"
+"
\n"
+"\n"
+"
De plus, il peut contenir les séquences suivantes qui seront remplacer "
+"par les valeurs spécifiques au projet et au téléchargement en question.
\n"
+"\n"
+"
\n"
+"
%p - le nom du projet
\n"
+"
%r - l'identifiant du commit
\n"
+"
\n"
+"\n"
+"
Par exemple, la réception du commit 123 dans le projet 'my-project', avec "
+"le lien suivant http://mydomain.com/%p/%renverra une requête à "
+"l’adresse suivante \n"
+"http://mydomain.com/my-project/123.
"
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:26
+msgid ""
+"The form contains some errors. Please correct them to update the source "
+"configuration."
+msgstr ""
+"Le formulaire contient des erreurs. Veuillez les corriger pour mettre à jour "
+"la configuration du code source."
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:27
+msgid "Repository type:"
+msgstr "Type de dépôt:"
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:28
+msgid "Repository access:"
+msgstr "Accès au dépôt:"
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:29
+msgid "Repository size:"
+msgstr "Taille du dépôt:"
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
The description of the project can be improved using the Markdown syntax.
\n"
+msgstr ""
+"\n"
+"
Instructions:
\n"
+"
La description du projet peut être enrichie à l'aide de la syntaxe Markdown.
\n"
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:7
+msgid ""
+"The form contains some errors. Please correct them to update the summary."
+msgstr ""
+"Le formulaire contient des erreurs. Veuillez les corriger pour mettre à jour "
+"le résumé."
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:8
+msgid "Current logo"
+msgstr "Logo actuel"
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html~.php:4
+#: IDF/gettexttemplates/idf/base.html.php:4
+#: IDF/gettexttemplates/idf/base.html~.php:4
+#: IDF/gettexttemplates/idf/main-menu.html.php:8
+#: IDF/gettexttemplates/idf/project-list.html.php:4
+msgid "Project logo"
+msgstr "Logo du projet"
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:10
+msgid "Your project does not have a logo configured yet."
+msgstr "Votre projet ne dispose pas encore d'un logo."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:3
+msgid ""
+"This section allows you to configure project tabs access rights and "
+"notifications."
+msgstr ""
+"Cette section vous autorise à configurer les droits d'accès et les "
+"notifications des onglets de projets."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:4
+msgid ""
+"Tab access controls whether a single user can navigate into a particular "
+"section of your project via the main menu or automatically generated object "
+"links."
+msgstr ""
+"L'onglet d'accès contrôle si un seul utilisateur peut naviguer dans une "
+"section particulière de votre projet à partir du menu principal où des liens "
+"d'objets automatiquement générés."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:5
+msgid ""
+"If you mark a project as private, only the project members and "
+"administrators, together with the extra authorized users you provide will "
+"have access to the project as a whole. You will still be able to define "
+"further access rights for the different tabs but the \"Open to all\" and "
+"\"Signed in users\" will default to authorized users only."
+msgstr ""
+"Si vous indiquer que votre projet est privé, seul les administrateurs et les "
+"membres du projet, ainsi que les autres utilisateurs auxquels vous en aurez "
+"donné l'accès, auront accès au projet dans son ensemble. Vous serez toujours "
+"capable de définir d'autres droits d'accès pour d'autres onglets, mais les "
+"onglets \"Ouvert à tous\" et \"Utilisateurs authentifiés\" ne seront, par "
+"défaut, accessible qu'aux utilisateur autorisés."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:6
+msgid ""
+"For the extra authorized user list, specify each person by its login. Each "
+"person must have already registered with the given login. Separate the "
+"logins with commas and/or new lines."
+msgstr ""
+"Pour remplir la liste des autres utilisateurs, spécifié chacun des "
+"utilisateurs par son identifiant. Chaque utilisateur doit déjà être "
+"enregistrer avec l'identifiant donné. Séparer chaque identifiant avec des "
+"virgules et/ou avec des nouvelles lignes."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:7
+msgid ""
+"Only project members and admins have write access to the source. If you "
+"restrict the access to the source, anonymous access is not provided and the "
+"users must authenticate themselves with their password or SSH key."
+msgstr ""
+"Seul les membres et les administrateurs ont les accès en écriture à cette "
+"ressource. Si vous restreignez l’accès à la source, les accès anonyme ne "
+"seront pas disponible et les utilisateurs devront s'authentifier avec leur "
+"mot de passe ou leur clé SSH."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
+#, php-format
+msgid ""
+"Here you can configure who should be notified about changes in a particular "
+"section. You can also configure additional addresses, like the one of a "
+"mailing list, that should be notified. (Keep in mind that you might have to "
+"register the sender address %%from_email%% to let the "
+"mailing list actually accept notification emails.) Multiple email addresses "
+"must be separated through commas (',')."
+msgstr ""
+"Ici, vous pouvez configurer qui va être notifier lors d'un changement dans "
+"une section spécifique. Vous pouvez aussi configurer des adresses "
+"supplémentaires, comme celle d'une liste de diffusion (mailling list), qui "
+"doit être avertie. (Rappelez vous que vous pouvez avoir enregistrer une "
+"adresse email d'envoi %%from_email%% pour que la liste de "
+"diffusion (mailling list) puisse accepter les mails de notifications.) Quand "
+"plusieurs adresses email sont spécifiés, elles doivent être séparées par des "
+"virgules (',')."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:9
+msgid ""
+"The form contains some errors. Please correct them to update the access "
+"rights."
+msgstr ""
+"Le formulaire contient des erreurs. Veuillez les corriger pour mettre à jour "
+"les droits d'accès."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
+msgid "Access Rights"
+msgstr "Droits d'accès"
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:11
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
+msgid "Notifications"
+msgstr "Notifications"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:3
+#: IDF/gettexttemplates/idf/base-full.html~.php:3
+#: IDF/gettexttemplates/idf/base.html.php:3
+#: IDF/gettexttemplates/idf/base.html~.php:3
+#, php-format
+msgid ""
+"Sign in or create your account to create issues or "
+"add comments"
+msgstr ""
+"Connectez-vous ou créez votre compte pour soumettre "
+"des tickets ou ajouter des commentaires"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:6
+#: IDF/gettexttemplates/idf/base.html.php:6
+#: IDF/gettexttemplates/idf/project-list.html.php:6
+msgid "External link to project"
+msgstr "Liens externe vers le projet"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html~.php:6
+#: IDF/gettexttemplates/idf/base.html.php:7
+#: IDF/gettexttemplates/idf/base.html~.php:6
+msgid "Project Home"
+msgstr "Page d'accueil"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:13
+#: IDF/gettexttemplates/idf/base-full.html~.php:12
+#: IDF/gettexttemplates/idf/base.html.php:13
+#: IDF/gettexttemplates/idf/base.html~.php:12
+msgid "Project Management"
+msgstr "Administration du projet"
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:4
+#: IDF/gettexttemplates/idf/downloads/index.html.php:4
+#: IDF/Views/Download.php:235
+msgid "New Download"
+msgstr "Nouveau téléchargement"
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:5
+msgid "Upload Archive"
+msgstr "Ajouter une archive"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:3
+msgid ""
+"Each file must have a distinct name and file contents\n"
+"cannot be changed, so be sure to include release numbers in each file\n"
+"name."
+msgstr ""
+"Chaque fichier doit avoir un nom unique et le contenu des fichiers\n"
+"ne peut pas être modifié. Faites attention de bien inclure le numéro\n"
+"de révision dans le nom de chaque fichier."
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:6
+#, php-format
+msgid ""
+"You can use the Markdown syntax for the description."
+msgstr ""
+"Vous pouvez utiliser la syntaxe Markdown pour la "
+"description."
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:7
+msgid "The form contains some errors. Please correct them to submit the file."
+msgstr ""
+"Le formulaire contient des erreurs. Veuillez les corriger pour envoyer le "
+"fichier."
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:8
+msgid "Submit File"
+msgstr "Envoyer le fichier"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:9
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:8
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:21
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:14
+#: IDF/gettexttemplates/idf/issues/create.html.php:14
+#: IDF/gettexttemplates/idf/issues/view.html.php:27
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:7
+#: IDF/gettexttemplates/idf/register/index.html.php:8
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:5
+#: IDF/gettexttemplates/idf/review/create.html.php:12
+#: IDF/gettexttemplates/idf/review/view.html.php:41
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:5
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:13
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:5
+msgid "Cancel"
+msgstr "Annuler"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:10
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:9
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:6
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:6
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:6
+msgid "Instructions"
+msgstr "Instructions"
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:3
+msgid ""
+"The archive must include a manifest.xml file with meta "
+"information about the\n"
+"files to process inside the archive. All processed files must be unique or "
+"replace existing files explicitely."
+msgstr ""
+"L'archive doit inclure un fichier manifest.xml comportant des "
+"méta-informations à propos du fichier à traiter à l’intérieur de l'archive.\n"
+"Tous les fichiers traiter doivent être unique ou doivent remplacer des "
+"fichiers existant explicitement."
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:5
+#, php-format
+msgid ""
+"You can learn more about the archive format here."
+msgstr ""
+"Vous pouvez en lire d'avantage à propos du format de l'archive ici."
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:6
+msgid ""
+"The form contains some errors. Please correct them to submit the archive."
+msgstr ""
+"La forme contient quelques erreurs. Corrigez les pour pouvoir soumettre "
+"l'archive."
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:7
+msgid "Submit Archive"
+msgstr "Soumettre archive"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:3
+msgid ""
+"Attention! If you want to delete a specific version of your "
+"software, maybe, someone is depending on this specific version to run his "
+"systems. Are you sure, you will not affect anybody when removing this file?"
+msgstr ""
+"Attention! Si vous voulez supprimer une version spécifique "
+"de votre logiciel, peut-être que quelqu'un dépend encore de cette version. "
+"Êtes-vous certain que supprimer ce fichier ne va pas importuner certaines "
+"personnes?"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:4
+#, php-format
+msgid ""
+"Instead of deleting the file, you could mark it as "
+"deprecated."
+msgstr ""
+"Au lieu de supprimer le fichier, vous pouvez le marquer "
+"comme obsolète."
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:5
+#: IDF/gettexttemplates/idf/downloads/view.html.php:4
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:4
+#: IDF/gettexttemplates/idf/issues/view.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:5
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:7
+#, php-format
+msgid "by %%submitter%%"
+msgstr "par %%submitter%%"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:6
+msgid "Delete File"
+msgstr "Supprimer le fichier"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:8
+#: IDF/gettexttemplates/idf/downloads/view.html.php:14
+msgid "Uploaded:"
+msgstr "Mis en ligne:"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:9
+#: IDF/gettexttemplates/idf/downloads/view.html.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:29
+#: IDF/gettexttemplates/idf/review/view.html.php:27
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:14
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:15
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:17
+msgid "Updated:"
+msgstr "Mis à jour:"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6
+#: IDF/gettexttemplates/idf/listProjects.html.php:17
+msgid "Downloads:"
+msgstr "Téléchargements:"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:11
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:17
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml~.php:6
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:10
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:21
+#: IDF/gettexttemplates/idf/issues/view.html.php:33
+#: IDF/gettexttemplates/idf/project-list.html.php:8
+#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:13
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:16
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:12
+#: IDF/IssueComment.php:157 IDF/Wiki/PageRevision.php:204
+msgid "Labels:"
+msgstr "Étiquettes:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3
+msgid "A new file is available for download:"
+msgstr "Un nouveau fichier est disponible en téléchargement:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:4
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:5
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:8
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:4
+msgid "Hello,"
+msgstr "Bonjour,"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:5
+msgid "Project:"
+msgstr "Projet:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:6
+msgid "Submitted by:"
+msgstr "Soumis par:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:8
+msgid "Download:"
+msgstr "Téléchargement:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:10
+#: IDF/gettexttemplates/idf/review/view.html.php:31
+#: IDF/gettexttemplates/idf/user/public.html.php:4
+msgid "Description:"
+msgstr "Description:"
+
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:3
+msgid "A file download was updated:"
+msgstr "Un fichier télécharger à été mis à jour :"
+
+#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3
+msgid "Details"
+msgstr "Détails"
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:3
+#, php-format
+msgid "See the deprecated files."
+msgstr "Voir les fichiers obsolètes."
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:5
+msgid "Number of files:"
+msgstr "Nombre de fichiers:"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:3
+msgid ""
+"Attention! This file is marked as deprecated, download it "
+"only if you are sure you need this specific version."
+msgstr ""
+"Attention! Ce fichier est marqué comme obsolète. "
+"Téléchargez-le uniquement si vous avez vraiment besoin de cette version."
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:5
+msgid "md5:"
+msgstr "md5:"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:6
+msgid "Changes"
+msgstr "Modifications"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:7
+msgid "The form contains some errors. Please correct them to update the file."
+msgstr ""
+"Le formulaire contient des erreurs. Veuillez les corriger pour mettre à jour "
+"le fichier."
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:8
+msgid "Update File"
+msgstr "Mettre à jour le fichier"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:12
+msgid "Remove this file"
+msgstr "Supprimer ce fichier"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:18
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:12
+msgid "Trash"
+msgstr "Corbeille"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:13
+msgid "Delete this file"
+msgstr "Supprimer ce fichier"
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:3
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:3
+#: IDF/gettexttemplates/idf/faq.html.php:65
+msgid "Here we are, just to help you."
+msgstr "Nous sommes là, juste pour vous aider."
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:4
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:4
+#: IDF/gettexttemplates/idf/faq.html.php:66
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:4
+#: IDF/gettexttemplates/idf/index.html.php:4 IDF/Views/Admin.php:77
+#: IDF/Views.php:91
+msgid "Projects"
+msgstr "Projets"
+
+#: IDF/gettexttemplates/idf/faq.html.php:3
+msgid ""
+"
This is simple:
\n"
+"\n"
+"
Write in the comments \"This is a duplicate of issue 123\" or - if you "
+"are a member of the crew -\n"
+"directly add the \"duplicates\" relation with the value \"123\" below the "
+"comment field. Change \"123\"\n"
+"with the corresponding issue number.
\n"
+"
Change the status of the current issue to Duplicate.
\n"
+"
Submit the changes.
\n"
+""
+msgstr ""
+"
C'est simple :
\n"
+"\n"
+"
Ajouter un commentaire \"C'est un doublon du ticket 123\" ou - si vous "
+"faite partit de l'équipe - ajouter la relation \"Duplicates\" avec "
+"l'identifiant du ticket en question.
"
+
+#: IDF/gettexttemplates/idf/faq.html.php:36
+#, php-format
+msgid "Learn more about the archive format."
+msgstr ""
+"En apprendre d'avantage à propos du format des archives"
+"a>."
+
+#: IDF/gettexttemplates/idf/faq.html.php:37
+msgid ""
+"The API (Application Programming Interface) is used to interact with "
+"InDefero with another program. For example, this can be used to create a "
+"desktop program to submit new tickets easily."
+msgstr ""
+"L'API (interface de programmation applicative) est utilisée pour communiquer "
+"avec InDefero depuis d'autres programmes. Par exemple, cela peut être "
+"utilisé pour créer une application de bureau permettant de soumettre "
+"facilement de nouveaux tickets."
+
+#: IDF/gettexttemplates/idf/faq.html.php:38
+#, php-format
+msgid "Learn more about the API."
+msgstr "En apprendre plus à propos de l'API."
+
+#: IDF/gettexttemplates/idf/faq.html.php:39
+#: IDF/gettexttemplates/idf/faq.html.php:45
+msgid "What are the keyboard shortcuts?"
+msgstr "Quels sont les raccourcis clavier?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:40
+#: IDF/gettexttemplates/idf/faq.html.php:60
+msgid "How to mark an issue as duplicate?"
+msgstr "Comment marquer un ticket comme doublon?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:41
+#: IDF/gettexttemplates/idf/faq.html.php:61
+msgid "How can I display my head next to my comments?"
+msgstr "Comment puis-je afficher mon visage à côté de mes commentaires?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:42
+#: IDF/gettexttemplates/idf/faq.html.php:62
+msgid "How can I embed images and other resources in my documentation pages?"
+msgstr ""
+"Comment puis-je intégrés des images et d'autres ressources dans ma page de "
+"documentations ?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:43
+#: IDF/gettexttemplates/idf/faq.html.php:63
+msgid "What is this \"Upload Archive\" functionality about?"
+msgstr "Quelle est l’utilité de cette \"Archive envoyée\" ?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:44
+#: IDF/gettexttemplates/idf/faq.html.php:64
+msgid "What is the API and how is it used?"
+msgstr "Qu'est-ce que l'API et comment l'utiliser?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:46
+msgid "Shift+h: This help page."
+msgstr "Maj+h: cette page d'aide."
+
+#: IDF/gettexttemplates/idf/faq.html.php:47
+msgid "If you are in a project, you have the following shortcuts:"
+msgstr "Si vous êtes dans un projet, vous disposez des raccourcis suivants:"
+
+#: IDF/gettexttemplates/idf/faq.html.php:48
+msgid "Shift+u: Project updates."
+msgstr "Maj+u: mises à jour du projet."
+
+#: IDF/gettexttemplates/idf/faq.html.php:49
+msgid "Shift+d: Downloads."
+msgstr "Maj+d: téléchargements."
+
+#: IDF/gettexttemplates/idf/faq.html.php:50
+msgid "Shift+o: Documentation."
+msgstr "Maj+o: documentation."
+
+#: IDF/gettexttemplates/idf/faq.html.php:51
+msgid "Shift+a: Create a new issue."
+msgstr "Maj+a: créer un nouveau ticket."
+
+#: IDF/gettexttemplates/idf/faq.html.php:52
+msgid "Shift+i: List of open issues."
+msgstr "Maj+i: liste des tickets ouverts."
+
+#: IDF/gettexttemplates/idf/faq.html.php:53
+msgid "Shift+m: The issues you submitted."
+msgstr "Maj+m: les tickets que vous avez soumis."
+
+#: IDF/gettexttemplates/idf/faq.html.php:54
+msgid "Shift+w: The issues assigned to you."
+msgstr "Maj+w: les tickets qui vous sont assignés."
+
+#: IDF/gettexttemplates/idf/faq.html.php:55
+msgid "Shift+s: Source."
+msgstr "Maj+s: source."
+
+#: IDF/gettexttemplates/idf/faq.html.php:56
+msgid "You also have the standard access keys:"
+msgstr "Vous avez aussi les touches d'accès standard:"
+
+#: IDF/gettexttemplates/idf/faq.html.php:57
+msgid "Alt+1: Home."
+msgstr "Alt+1: accueil."
+
+#: IDF/gettexttemplates/idf/faq.html.php:58
+msgid "Alt+2: Skip the menus."
+msgstr "Alt+2: aller au contenu."
+
+#: IDF/gettexttemplates/idf/faq.html.php:59
+msgid "Alt+4: Search (when available)."
+msgstr "Alt+4: rechercher (si disponible)."
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
+msgid "Forge"
+msgstr "Forge"
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:5
+msgid "People"
+msgstr "Utilisateurs"
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:6
+msgid "Usher"
+msgstr "Usher"
+
+#: IDF/gettexttemplates/idf/gadmin/forge/base.html.php:3
+msgid "Frontpage"
+msgstr "Frontpage"
+
+#: IDF/gettexttemplates/idf/gadmin/forge/index.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
You can set up a custom forge page that is used as entry page for the "
+"forge instead of the plain project listing. This page is then also "
+"accessible via the 'Home' link in main menu bar.
Additionally, the following macros are available: \n"
+"
\n"
+"
{projectlist, label=..., order=(name|activity), limit=...}"
+"code> - Renders a project list that can optionally be filtered by label, "
+"ordered by 'name' or 'activity' and / or limited to a specific number of "
+"projects.
\n"
+"
\n"
+"\n"
+msgstr ""
+"\n"
+"
Procédure :
\n"
+"
Vous pouvez définir une page personnalisée qui sera utilisé à la place de "
+"la page ou sont listés les projets.Cette page est aussi accessible par le "
+"lien 'Home', dans la bar de menu principale.
Les macros suivantes sont aussi disponibles : \n"
+"
\n"
+"
{projectlist, label=..., order=(name|activity), limit=...}"
+"code> - Affiche la liste des projets qui peut être filtrée par labels, et "
+"ordonnées par nom ou activité, le nombre de résultat affiché peut être "
+"limité.
\n"
+"
\n"
+"\n"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:7
+msgid "Project List"
+msgstr "Liste des projets"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4
+#: IDF/Views/Admin.php:110
+msgid "Project Labels"
+msgstr "Étiquettes de projet."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:16
+#: IDF/gettexttemplates/idf/listProjects.html.php:6 IDF/Views/Admin.php:186
+msgid "Create Project"
+msgstr "Créer un projet"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:6
+msgid "Change Project Details"
+msgstr "Modifier les détails du projet"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3
+msgid ""
+"You can select the type of repository you want. In the case of subversion, "
+"you can use optionally a remote repository instead of the local one."
+msgstr ""
+"Vous pouvez sélectionner le type de dépôt souhaité. Dans le cas d'un dépôt "
+"Subversion, vous pouvez optionnellement choisir un dépôt distant au lieu de "
+"celui local."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:4
+msgid ""
+"Once you have defined the repository type, you cannot change it"
+"strong>."
+msgstr ""
+"Une fois que vous avez défini le type de dépôt, vous ne pouvez pas "
+"le modifier."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:5
+msgid ""
+"\n"
+"
Specify each person by its login. Each person must have already "
+"registered with the given login.
\n"
+"
Separate the logins with commas and/or new lines.
\n"
+msgstr ""
+"\n"
+"
Indiquez chaque personne à l'aide de son identifiant. Chaque personne "
+"doit avoir préalablement créé son compte.
\n"
+"
Séparez les identifiants par des virgules ou des sauts de ligne.
\n"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:14
+msgid ""
+"The form contains some errors. Please correct them to create the project."
+msgstr ""
+"Le formulaire contient des erreurs. Veuillez les corriger pour créer le "
+"projet."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:15
+msgid "Provide at least one owner for the project or use a template."
+msgstr ""
+"Fournissez au moins un propriétaire pour le projet ou utilisez un modèle."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:15
+msgid "Instructions:"
+msgstr "Instructions:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:3
+#, php-format
+msgid ""
+"Confirmation code to confirm the deletion of the project: \n"
+"%%code%%."
+msgstr ""
+"Code de confirmation pour supprimer le projet:\n"
+"%%code%%."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:5
+msgid ""
+"\n"
+"Attention! Deleting a project is a one second operation\n"
+"with the consequences that all the data related to the \n"
+"project will be deleted.\n"
+msgstr ""
+"\n"
+"Attention! Supprimer un projet est une opération\n"
+"rapide qui a pour conséquence la suppression de toutes les données\n"
+"relatives au projet.\n"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:10
+msgid ""
+"The form contains some errors. Please correct them to delete the project."
+msgstr ""
+"Le formulaire contient des erreurs. Veuillez les corriger pour supprimer le "
+"projet."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:11
+msgid "Project Statistics"
+msgstr "Statistiques du projet"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:12
+msgid "Tab"
+msgstr "Onglet"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:13
+msgid "Number"
+msgstr "Nombre"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:15
+msgid "Code reviews"
+msgstr "Revues de code"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:16
+#: IDF/Views/Project.php:93
+msgid "Commits"
+msgstr "Commits"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:18
+msgid "Documentation pages"
+msgstr "Pages de documentation"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:20
+msgid "Delete Project"
+msgstr "Supprimer le projet"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:22
+msgid ""
+"For large projects, the suppression can take a while, please be patient."
+msgstr ""
+"Pour de gros projets, la suppression peut durer un moment. Merci de "
+"patienter."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:3
+msgid "Space Usage Statistics"
+msgstr "Statistiques d'utilisation de l'espace disque"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:4
+msgid "Repositories:"
+msgstr "Dépôts:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:18
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:16
+msgid "Attachments:"
+msgstr "Pièces jointes:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7
+msgid "Database:"
+msgstr "Base de données:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:8
+msgid "Total Forge:"
+msgstr "Total de la forge:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:13
+msgid ""
+"The form contains some errors. Please correct them to update the project."
+msgstr ""
+"Le formulaire contient des erreurs. Veuillez les corriger pour mettre à jour "
+"le projet."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:14
+msgid "Provide at least one owner for the project."
+msgstr "Fournissez au moins un propriétaire pour le projet."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:15
+msgid "Update Project"
+msgstr "Mettre à jour le projet"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:20
+msgid "Delete this project"
+msgstr "Supprimer ce projet"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:21
+msgid "You will be asked to confirm."
+msgstr "Confirmation demandée."
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3
+#: IDF/Views/Admin.php:264
+msgid "User List"
+msgstr "Liste des utilisateurs"
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:13
+msgid "Update User"
+msgstr "Mettre à jour l'utilisateur"
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4
+msgid "Create User"
+msgstr "Créer un utilisateur"
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3
+msgid "The form contains some errors. Please correct them to create the user."
+msgstr ""
+"Le formulaire contient des erreurs. Veuillez les corriger pour créer "
+"l'utilisateur."
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:6
+msgid "The user password will be sent by email to the user."
+msgstr "Le mot de passe sera envoyé par email à l'utilisateur."
+
+#: IDF/gettexttemplates/idf/gadmin/users/createuser-email.txt.php:3
+#, php-format
+msgid ""
+"Hello %%user%%,\n"
+"\n"
+"An account on the forge has been created for you by\n"
+"the administrator %%admin%%.\n"
+"\n"
+"Please find here your details to access the forge:\n"
+"\n"
+" Address: %%url%%\n"
+" Login: %%user.login%%\n"
+" Password: %%password%%\n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+"Bonjour %%user%%,\n"
+"\n"
+"Un compte a été créé pour vous sur la forge par\n"
+"l'administrateur %%admin%%.\n"
+"\n"
+"Vous trouverez ci-dessous les informations pour\n"
+"vous connecter:\n"
+"\n"
+" Adresse: %%url%%\n"
+" Identifiant: %%user.login%%\n"
+" Mot de passe: %%password%%\n"
+"\n"
+"Cordialement,\n"
+"\n"
+"L'équipe de développement\n"
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:3
+#, php-format
+msgid "See not validated users."
+msgstr "Voir les utilisateurs non confirmés."
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:4
+msgid "
You have here an overview of the users registered in the forge.
"
+msgstr ""
+"
Vous avez ici une vue d'ensemble des utilisateurs enregistrés sur la "
+"forge.
"
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:5
+msgid "Number of users:"
+msgstr "Nombre d'utilisateurs:"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:3
+msgid ""
+"If you are changing the email address of the user, you\n"
+"need to ensure that you are providing a valid email\n"
+"address"
+msgstr ""
+"Si vous changez l'adresse email de l'utilisateur,\n"
+"vous devez vous assurer que l'adresse est bien valide."
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:6
+msgid ""
+"If you give the user staff rights, the user will be\n"
+"able to create new projects and update other non staff users.\n"
+msgstr ""
+"Si vous donnez des droits de gestionnaire à l'utilisateur,\n"
+"ce dernier pourra créer de nouveaux projets et éditer les\n"
+"informations des utilisateurs non gestionnaires.\n"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:9
+msgid "The form contains some errors. Please correct them to update the user."
+msgstr ""
+"Le formulaire contient des erreurs. Veuillez les corriger pour mettre à jour "
+"l'utilisateur."
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:4
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:4
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4
+msgid "Login:"
+msgstr "Identifiant:"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:11
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:5
+msgid "Public Profile"
+msgstr "Profil public"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:12
+msgid "Administrative"
+msgstr "Administratif"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3
+msgid "Configured servers"
+msgstr "Serveurs configurés"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:4
+#: IDF/Views/Admin.php:421
+msgid "Usher control"
+msgstr "Contrôle d'usher"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:3
+msgid "address"
+msgstr "adresse"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:4
+msgid "port"
+msgstr "port"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:5
+msgid "No connections found."
+msgstr "Aucune connexion trouvée."
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3
+msgid "current server status:"
+msgstr "statut actuel du serveur:"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:4
+msgid "startup"
+msgstr "démarrage"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:5
+msgid "shutdown"
+msgstr "arrêt"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:6
+msgid "reload server configuration:"
+msgstr "recharger la configuration du serveur:"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:7
+msgid "reload"
+msgstr "recharger"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:11
+msgid "Status explanation"
+msgstr "Explication du statut"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:9
+msgid "active with n total open connections"
+msgstr "actif avec n connexions actives au total"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:10
+msgid "waiting for new connections"
+msgstr "en attente de nouvelles connexions"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:11
+msgid "usher is being shut down, not accepting connections"
+msgstr "usher est en cours d'arrêt, n'acceptant plus de connexion"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:12
+msgid ""
+"usher is shut down, all local servers are stopped and not accepting "
+"connections"
+msgstr ""
+"usher est éteint, tous les serveurs locaux sont arrêtés et n'acceptent "
+"aucune connexion"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:3
+msgid "server name"
+msgstr "nom du serveur"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:4 IDF/Issue.php:99
+#: IDF/Review.php:102
+msgid "status"
+msgstr "statut"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:5
+msgid "action"
+msgstr "action"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:6
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:6
+msgid "No monotone servers configured."
+msgstr "Aucun serveur monotone configuré."
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:7
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:7
+msgid "stop"
+msgstr "arrêter"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:8
+msgid "start"
+msgstr "démarrer"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:9
+msgid "kill"
+msgstr "tuer"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:10
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:10
+msgid "active connections"
+msgstr "connexions actives"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:12
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:12
+msgid "remote server without open connections"
+msgstr "serveur distant sans connexion active"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:13
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:13
+msgid "server with n open connections"
+msgstr "serveur avec n connexions actives"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:14
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:14
+msgid "local server running, without open connections"
+msgstr "serveur local en service, sans connexion active"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:15
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:15
+msgid "local server not running, waiting for connections"
+msgstr "serveur local non en service, en attente de connexions"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:16
+msgid "local server is about to stop, n connections still open"
+msgstr "serveur local sur le point d'arrêter, n connexions encore ouvertes"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:17
+msgid "local server not running, not accepting connections"
+msgstr "serveur local non en service, n'acceptant aucune connexion"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:18
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:18
+msgid "usher is shut down, not running and not accepting connections"
+msgstr "usher éteint, non en service et n'acceptant aucune connexion"
+
+#: IDF/gettexttemplates/idf/index.atom.php:3
+#, php-format
+msgid "Personal project feed for %%user%%."
+msgstr "Flux personnel de %%user%% pour ce projet."
+
+#: IDF/gettexttemplates/idf/index.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:6
+msgid "Home"
+msgstr "Accueil"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:3
+#, php-format
+msgid "Attachment to issue %%issue.id%%"
+msgstr "Pièce jointe au ticket %%issue.id%%"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:5
+#: IDF/gettexttemplates/idf/review/view.html.php:35
+#: IDF/gettexttemplates/idf/source/commit.html.php:23
+#: IDF/gettexttemplates/idf/source/commit.html~.php:22
+#: IDF/gettexttemplates/idf/source/git/file.html.php:6
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:12
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:7
+msgid "Archive"
+msgstr "Archive"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:6
+#: IDF/gettexttemplates/idf/source/git/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:10
+msgid "Download this file"
+msgstr "Télécharger ce fichier"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:7
+#: IDF/gettexttemplates/idf/issues/view.html.php:28
+#: IDF/gettexttemplates/idf/review/view.html.php:26
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:13
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:16
+msgid "Created:"
+msgstr "Créé:"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:4
+msgid "All Issues"
+msgstr "Tous les tickets"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:5
+msgid "My Issues"
+msgstr "Mes tickets"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:6
+msgid "My watch list"
+msgstr "Ma liste de surveillance"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:7
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:6
+#: IDF/gettexttemplates/idf/issues/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:5
+#: IDF/gettexttemplates/idf/issues/search.html.php:8
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:5
+msgid "New Issue"
+msgstr "Nouveau ticket"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:8
+#: IDF/gettexttemplates/idf/wiki/base.html.php:9
+msgid "Search"
+msgstr "Rechercher"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:9
+msgid "Back to the issue"
+msgstr "Retour au ticket"
+
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:3
+#, php-format
+msgid ""
+"
"
+
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:3
+msgid "A new issue has been created and assigned to you:"
+msgstr "Un nouveau ticket à été crée et vous à été assigné :"
+
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:4
+msgid "A new issue has been created:"
+msgstr "Un nouveau ticket à été crée :"
+
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:8
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:8
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:11
+msgid "Reported by:"
+msgstr "Rapporté par:"
+
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:19
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:17
+msgid "Issue:"
+msgstr "Ticket:"
+
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:3
+msgid "The following issue you are owning has been updated:"
+msgstr "Ce ticket que vous avez crée à été mis à jour :"
+
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:4
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:3
+msgid "The following issue has been updated:"
+msgstr "Le ticket suivant a été mis à jour:"
+
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:4
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:4
+#, php-format
+msgid "By %%who%%, %%c.creation_dtime%%:"
+msgstr "Par %%who%%, %%c.creation_dtime%%"
+
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:10
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:9
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:8
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:12
+msgid "URL:"
+msgstr "URL:"
+
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:12
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:11
+msgid "Comments (last first):"
+msgstr "Commentaires (le plus récent en premier):"
+
+#: IDF/gettexttemplates/idf/issues/search.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
"
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:3
+msgid "View all open issues."
+msgstr "Voir tous les tickets ouvert."
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:4
+msgid "Create an issue."
+msgstr "Créer un ticket."
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:5
+#, php-format
+msgid ""
+"The issue tracker is empty. Create your "
+"first issue."
+msgstr ""
+"Le répertoire des tickets est vide. Créer "
+"votre premier ticket."
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:6
+#: IDF/gettexttemplates/idf/issues/summary.html~.php:4
+#, php-format
+msgid "Unresolved: By %%key%%"
+msgstr "Non résolus: par %%key%%"
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:7
+#: IDF/gettexttemplates/idf/issues/summary.html~.php:5
+msgid "Status Summary"
+msgstr "Résumé par statut"
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:8
+#: IDF/gettexttemplates/idf/issues/summary.html~.php:6
+msgid "Unresolved: By Assignee"
+msgstr "Non résolus: par assignation"
+
+#: IDF/gettexttemplates/idf/issues/summary.html~.php:3
+#, php-format
+msgid ""
+"The issue tracker is empty. You can create your first issue here."
+msgstr ""
+"Le gestionnaire de tickets est vide. Vous pouvez créer votre premier "
+"ticket ici."
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:3
+#, php-format
+msgid ""
+"See the %%nb_submit_closed%% closed."
+msgid_plural ""
+"See the %%nb_submit_closed%% closed."
+msgstr[0] "Voir le ticket fermé."
+msgstr[1] ""
+"Voir les %%nb_submit_closed%% fermés."
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:4
+#, php-format
+msgid ""
+"See the %%nb_owner_closed%% closed."
+msgid_plural ""
+"See the %%nb_owner_closed%% closed."
+msgstr[0] "Voir le ticket fermé."
+msgstr[1] ""
+"Voir les %%nb_owner_closed%% fermés."
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:6
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:7
+msgid "Submitted issues:"
+msgstr "Tickets soumis:"
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:7
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:6
+msgid "Working issues:"
+msgstr "Tickets assignés:"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:3
+#, php-format
+msgid "Reported by %%submitter%%, %%c.creation_dtime%%"
+msgstr "Soumis par %%submitter%%, %%c.creation_dtime%%"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:4
+#: IDF/gettexttemplates/idf/review/view.html.php:22
+#, php-format
+msgid ""
+"Comment %%i%% by %%submitter%%, %%c.creation_dtime%%"
+msgstr ""
+"Commentaire %%i%% par %%submitter%%, %%c."
+"creation_dtime%%"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:5
+#, php-format
+msgid "Sign in to reply to this comment."
+msgstr "Connectez-vous pour répondre à ce commentaire."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:6
+msgid ""
+"This issue is marked as closed, add a comment only if you think this issue "
+"is still valid and more work is needed to fully fix it."
+msgstr ""
+"Ce ticket est marqué comme fermé. N'ajoutez un commentaire que si vous "
+"pensez que ce ticket est toujours valide et qu'un travail supplémentaire est "
+"nécessaire pour corriger le problème."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:8
+#, php-format
+msgid "%%interested%% person"
+msgid_plural "%%interested%% persons"
+msgstr[0] "%%interested%% personne"
+msgstr[1] "%%interested%% personnes"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:9
+#, php-format
+msgid "This issue %%verb%%"
+msgstr "Ce ticket %%verb%%"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:10
+msgid "Remove this issue from your watch list"
+msgstr "Supprimer ce ticket de votre liste de surveillance"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:11
+msgid "Add this issue to your watch list"
+msgstr "Ajouter ce ticket à votre liste de surveillance"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:12
+msgid "View the previous closed issue"
+msgstr "Voir le dernier ticket fermée"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:13
+msgid "View the previous open issue"
+msgstr "Voir le dernier ticket ouvert"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:14
+msgid "View the next closed issue"
+msgstr "Voir le ticket fermé suivant."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:15
+msgid "View the next open issue"
+msgstr "Voir le ticket ouvert suivant."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:16
+msgid "download"
+msgstr "télécharger"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:17
+msgid "view"
+msgstr "voir"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:23
+msgid "The form contains some errors. Please correct them to change the issue."
+msgstr ""
+"Le formulaire contient des erreurs. Veuillez les corriger pour modifier le "
+"ticket."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:25
+msgid "Submit Changes"
+msgstr "Soumettre les modifications"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:32
+msgid "Followed by:"
+msgstr "Suivi par:"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:3
+#, php-format
+msgid "1 project"
+msgid_plural "%%label.project_count%% projects"
+msgstr[0] "1 projet"
+msgstr[1] "%%label.project_count%% projets"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:4
+#, php-format
+msgid "Remove filter for %%tag%%"
+msgstr "Enlever le filtre pour %%tag%%"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:5
+msgid "No projects managed with InDefero were found."
+msgstr "Aucun projet géré avec InDefero n'a été trouvé."
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:7
+msgid "Filter projects by label"
+msgstr "Filtrer les projet par étiquettes"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:8
+msgid "No projects with labels found."
+msgstr "Aucun projet possédant une étiquette n'a été trouvé."
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:9
+msgid "Order"
+msgstr "Ordre"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:10
+msgid "By name"
+msgstr "Par nom"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:11
+msgid "By activity"
+msgstr "Par activité"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:12
+msgid "Filtered project stats"
+msgstr "Statistiques du projet filtrée. "
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:13
+msgid "Members:"
+msgstr "Membres:"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:14
+msgid "Issues:"
+msgstr "Tickets:"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:15
+msgid "Commits:"
+msgstr "Commits:"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:16
+msgid "Documentations:"
+msgstr "Documentation:"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:18
+msgid "Code reviews:"
+msgstr "Revues de code:"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:3
+#, php-format
+msgid ""
+"You can create an account if you don't have one yet."
+msgstr ""
+"Vous pouvez crée un compte si vous n'en n'avez pas."
+
+#: IDF/gettexttemplates/idf/login_form.html.php:4
+msgid "What is your account information?"
+msgstr "Quelles sont les informations relatives à votre compte?"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:5
+msgid "My login is"
+msgstr "Mon identifiant est"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:6
+msgid "My password is"
+msgstr "Mon mot de passe est"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:7
+msgid "Sign in"
+msgstr "Vous identifier"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:8
+msgid "I lost my password!"
+msgstr "J'ai perdu mon mot de passe!"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:9
+msgid "Welcome."
+msgstr "Bienvenue."
+
+#: IDF/gettexttemplates/idf/login_form.html.php:10
+msgid "It takes less than a minute to create your account."
+msgstr "La création d'un compte prend moins d'une minute."
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:3
+#, php-format
+msgid ""
+"Welcome, %%user%%."
+msgstr ""
+"Bienvenue, %%user%%."
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:4
+msgid "Sign Out"
+msgstr "Se déconnecter"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:5
+msgid "Sign in or create your account"
+msgstr "Identifiez-vous ou créez votre compte"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:10 IDF/Views/Admin.php:40
+msgid "Forge Management"
+msgstr "Administration de la forge"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:11
+msgid "Help and accessibility features"
+msgstr "Aide et accessibilité"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:12
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:14
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:14
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:15
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13
+msgid "Help"
+msgstr "Aide"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:3
+#: IDF/gettexttemplates/idf/project/timeline.html.php:4 IDF/Views.php:46
+msgid "Welcome"
+msgstr "Bienvenue"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:4
+#: IDF/gettexttemplates/idf/project/timeline.html.php:5
+msgid "Latest Updates"
+msgstr "Dernières mises à jour"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:5
+msgid "Featured Downloads"
+msgstr "Téléchargements recommandés"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:6
+msgid "Show more featured downloads"
+msgstr "Montrer plus de téléchargements."
+
+#: IDF/gettexttemplates/idf/project/home.html.php:7
+#: IDF/gettexttemplates/idf/project/home.html.php:10
+msgid "show more..."
+msgstr "plus..."
+
+#: IDF/gettexttemplates/idf/project/home.html.php:8
+msgid "Featured Documentation"
+msgstr "Documentation recommandée"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:9
+msgid "Show more featured documentation"
+msgstr "Montrer plus de documentations."
+
+#: IDF/gettexttemplates/idf/project/home.html.php:11
+msgid "Development Team"
+msgstr "Équipe de développement"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:12
+msgid "Admins"
+msgstr "Administrateurs"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:13
+msgid "Happy Crew"
+msgstr "Équipe sympa"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:3
+msgid "Latest updates"
+msgstr "Dernières mises à jour"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:6
+#: IDF/Views/Project.php:90
+msgid "All Updates"
+msgstr "Toutes les mises à jour"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:7
+msgid "Filter by type"
+msgstr "Filtrer par type"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:8
+msgid "Subscribe to this timeline"
+msgstr "Abonnez-vous à ce flux"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:9
+msgid "RSS"
+msgstr "RSS"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:10
+msgid "Atom feed"
+msgstr "Atom"
+
+#: IDF/gettexttemplates/idf/project-list.html.php:3
+msgid "Project activity: %%activity%%%"
+msgstr "Activité du projet : %%activity%%%"
+
+#: IDF/gettexttemplates/idf/project-list.html.php:9
+msgid "n/a"
+msgstr "n/d"
+
+#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"You have requested the creation of an account to\n"
+"participate in the life of a software project.\n"
+"\n"
+"To confirm the account please follow this link:\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Alternatively, go to this page:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"and provide the following confirmation key:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"If you are not interested any longer in taking\n"
+"part in the life of the software project or if\n"
+"you can't remember having requested the creation\n"
+"of an account, please excuse us and simply ignore\n"
+"this email. \n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+"Bonjour,\n"
+"\n"
+"Vous avez demandé la création d'un compte pour\n"
+"participer à la vie d'un projet logiciel.\n"
+"\n"
+"Pour confirmer votre compte, suivez ce lien:\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Vous pouvez également vous rendre sur cette page:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"et fournir la clé de confirmation suivante:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"Si vous n'êtes plus intéressé à participer\n"
+"à la vie de ce projet logiciel ou si vous ne\n"
+"vous souvenez pas d'avoir fait cette demande,\n"
+"veuillez accepter nos excuses et ignorer ce\n"
+"message.\n"
+"\n"
+"Cordialement,\n"
+"\n"
+"L'équipe de développement\n"
+
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:3
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:3
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:3
+msgid "Oops, please check the form for errors."
+msgstr "Oups, veuillez corriger les erreurs dans le formulaire."
+
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5
+msgid "Email:"
+msgstr "Email:"
+
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:6
+msgid "Enable Your Account"
+msgstr "Activez votre compte"
+
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:8
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:8
+msgid ""
+"This is the last step, but just be sure to have the cookies enabled"
+"strong> to log in afterwards."
+msgstr ""
+"C'est la dernière étape, mais assurez-vous que les témoins (cookies) "
+"soient activés dans votre navigateur pour vous connecter par la "
+"suite."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:3
+msgid ""
+"Read the terms and conditions – "
+"basically \"Please be nice, we respect you\"."
+msgstr ""
+"Lire les <a id=\"showterms\" href=\"#theterms\">conditions "
+"d'utilisation –</a>en gros <em>Soyez sympa, on vous respecte</"
+"em>."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:4
+#, php-format
+msgid ""
+"If you have just forgotten your login information, then there is no need to "
+"create a new account. You can just recover your login "
+"name and password."
+msgstr ""
+"Si vous avez oublié vos informations de connexions, alors il n'y as pas "
+"besoin de créer un nouveau compte. Vous pouvez juste récupérer votre identifiant et votre mot de passe."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:5
+#, php-format
+msgid ""
+"With your account, you will able to participate in the life of all the "
+"projects hosted here. Participating in a software project must be fun, so if "
+"you have troubles, you can let us know about your issues "
+"at anytime!"
+msgstr ""
+"Avec votre compte, vous pourrez participer à la vie de tous les projets "
+"administrés ici. Participer à la vie d'un logiciel doit être sympa, alors si "
+"vous rencontrez des problèmes, vous pouvez nous le faire "
+"savoir à tout instant!"
+
+#: IDF/gettexttemplates/idf/register/index.html.php:6
+msgid "Oops, please check the provided login and email address to register."
+msgstr ""
+"Oups, veuillez vérifier l'identifiant et l'adresse email pour vous "
+"enregistrer."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:7 IDF/Views.php:137
+msgid "Create Your Account"
+msgstr "Créez votre compte"
+
+#: IDF/gettexttemplates/idf/register/index.html.php:9
+msgid ""
+"Be sure to provide a valid email address, as we are sending a validation "
+"link by email."
+msgstr ""
+"Faites attention de bien fournir une adresse email valide, car nous vous "
+"enverrons un email de confirmation."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:10
+msgid "Did you know?"
+msgstr "Le saviez-vous?"
+
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:3
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:3
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:3
+msgid "Oops, we found an error in the form."
+msgstr "Oups, nous avons trouvé une erreur dans le formulaire."
+
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:4
+msgid "Confirm Your Account"
+msgstr "Confirmez votre compte"
+
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:7
+msgid ""
+"Use your email software to read your emails and open your confirmation "
+"email. Either click directly on the confirmation link or copy/paste the "
+"confirmation key in the box and submit the form."
+msgstr ""
+"Utilisez votre logiciel de messagerie pour lire votre email de confirmation. "
+"Vous pouvez cliquer sur le lien fourni ou copier/coller la clé de "
+"confirmation dans le formulaire et le soumettre."
+
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:8
+msgid ""
+"Just after providing the confirmation key, you will be able to set your "
+"password and start using this website fully."
+msgstr ""
+"Tout de suite après avoir fourni la clé de confirmation, vous pourrez "
+"définir votre mot de passe et utiliser pleinement le site."
+
+#: IDF/gettexttemplates/idf/review/base-full.html.php:3
+#: IDF/gettexttemplates/idf/review/base.html.php:3
+msgid "Open Reviews"
+msgstr "Revues ouvertes"
+
+#: IDF/gettexttemplates/idf/review/base.html.php:4
+#: IDF/gettexttemplates/idf/review/create.html.php:11
+#: IDF/gettexttemplates/idf/review/index.html.php:3 IDF/Views/Review.php:83
+msgid "Start Code Review"
+msgstr "Nouvelle revue de code"
+
+#: IDF/gettexttemplates/idf/review/create.html.php:3
+msgid ""
+"
To start a code review, you need to provide:
\n"
+"
\n"
+"
A commit or revision of the current code in the repository from which "
+"you started your work.
\n"
+"
A patch describing your changes with respect to the reference commit."
+"li>\n"
+"
Check your patch does not provide any password or confidential "
+"information!
\n"
+"
"
+msgstr ""
+"
Pour démarrer une revue de code, vous devez fournir:
\n"
+"
\n"
+"
La révision ou le commit de référence qui a servi de base à votre "
+"travail.
\n"
+"
Un patch décrivant les modifications par rapport à la référence.
\n"
+"
Vérifiez votre patch pour ne fournir aucun mot de passe ou "
+"information confidentielle!
\n"
+"
"
+
+#: IDF/gettexttemplates/idf/review/create.html.php:9
+msgid ""
+"The form contains some errors. Please correct them to submit the code review."
+msgstr ""
+"Le formulaire contient des erreurs. Veuillez les corriger pour soumettre la "
+"revue de code."
+
+#: IDF/gettexttemplates/idf/review/create.html.php:10
+msgid ""
+"Select the commit against which you created your patch to be sure it applies "
+"correctly."
+msgstr ""
+"Sélectionnez le commit correspondant à votre patch pour être certain qu'il "
+"puisse s'appliquer correctement."
+
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:3
+msgid "The following review has been created:"
+msgstr "La revue suivante a été créée:"
+
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:10
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:16
+msgid "Review:"
+msgstr "Revue:"
+
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:3
+msgid "The following review has been updated:"
+msgstr "La revue suivante a été mise à jour:"
+
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:5
+#, php-format
+msgid ""
+"By %%who%%, %%c.creation_dtime%%, on file:\n"
+"%%c.cfile%%\n"
+msgstr ""
+"Par %%who%%, %%c.creation_dtime%%, à propos\n"
+"du fichier:\n"
+"%%c.cfile%%\n"
+
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:14
+msgid "General comments (last first):"
+msgstr "Commentaires généraux (le plus récent en premier):"
+
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:15
+msgid "Detailed file comments (last first):"
+msgstr "Commentaires détaillés des fichiers (le plus récent en premier):"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:3
+msgid ""
+"Code review is a process in which\n"
+"after or before changes are commited into the code repository,\n"
+"different people discuss the code changes. The goal is\n"
+"to improve the quality of the code and the\n"
+"contributions, as such, you must be pragmatic when writing\n"
+"your review. Correctly mention the line numbers (in the old or in the\n"
+"new file) and try to keep a good balance between seriousness and fun.\n"
+msgstr ""
+"La revue de code est une discussion\n"
+"sur des modifications du code (déjà intégrées ou non dans le dépôt).\n"
+"Le but est d'améliorer la qualité du code et des\n"
+"contributions. Pour cela, vous devez être pragmatique quand\n"
+"vous écrivez votre analyse. Mentionnez bien les numéros de ligne\n"
+"(dans l'ancien ou le nouveau fichier) et essayez de garder un bon\n"
+"équilibre entre sérieux et humour dans vos remarques.\n"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:11
+msgid ""
+"\n"
+"Proposing code for review is intimidating, you know\n"
+"you will receive critics, so please, as a reviewer, keep this\n"
+"process fun, use it to help your contributor learn your\n"
+"coding standards and the structure of the code and make them want\n"
+"to propose more contributions.\n"
+msgstr ""
+"\n"
+"Proposer du code pour revue est intimidant, vous savez\n"
+"que vous allez recevoir des critiques. Comme participant à la revue,\n"
+"gardez une bonne ambiance et aidez le contributeur à\n"
+"apprendre la structure de votre code et vos exigences de qualité.\n"
+"Donnez-lui envie de proposer de nouvelles contributions.\n"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:18
+#: IDF/gettexttemplates/idf/source/commit.html.php:3
+#: IDF/gettexttemplates/idf/source/commit.html~.php:3
+#, php-format
+msgid "%%ndiff%% diff"
+msgid_plural "%%ndiff%% diffs"
+msgstr[0] "%%ndiff%% diff"
+msgstr[1] "%%ndiff%% diffs"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:19
+#, php-format
+msgid "%%nc%% comment"
+msgid_plural "%%nc%% comments"
+msgstr[0] "%%nc%% commentaire"
+msgstr[1] "%%nc%% commentaires"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:20
+#, php-format
+msgid ""
+"Comment %%i%% by %%who%%, "
+"%%c.creation_dtime%%"
+msgstr ""
+"Commentaire %%i%% par %%who"
+"%%, %%c.creation_dtime%%"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:21
+#, php-format
+msgid "Your comments on the changes in file %%file%%:"
+msgstr "Vos commentaires sur les modifications du fichier %%file%%:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:23
+#, php-format
+msgid "Sign in to participate in the review."
+msgstr "Connectez-vous pour participer à la revue."
+
+#: IDF/gettexttemplates/idf/review/view.html.php:24
+msgid ""
+"The form contains some errors. Please correct them to submit your review."
+msgstr ""
+"Le formulaire contient des erreurs. Veuillez les corriger pour soumettre "
+"votre revue."
+
+#: IDF/gettexttemplates/idf/review/view.html.php:25
+msgid "How to Participate in a Code Review"
+msgstr "Comment participer à une revue de code"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:28
+#: IDF/gettexttemplates/idf/source/commit.html.php:5
+#: IDF/gettexttemplates/idf/source/commit.html~.php:5
+msgid "Author:"
+msgstr "Auteur:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:29
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/source/commit.html.php:7
+#: IDF/gettexttemplates/idf/source/commit.html~.php:7
+msgid "Commit:"
+msgstr "Commit:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:30
+#: IDF/gettexttemplates/idf/source/commit.html.php:8
+#: IDF/gettexttemplates/idf/source/commit.html~.php:8
+msgid "View corresponding source tree"
+msgstr "Voir l'arbre des sources correspondant"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:32
+msgid "Reviewers:"
+msgstr "Participants:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:33
+msgid "No reviewers at the moment."
+msgstr "Aucun participant à la revue pour le moment."
+
+#: IDF/gettexttemplates/idf/review/view.html.php:34
+msgid "Files:"
+msgstr "Fichiers:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:36
+#: IDF/gettexttemplates/idf/source/commit.html.php:24
+#: IDF/gettexttemplates/idf/source/commit.html~.php:23
+msgid "Download the corresponding diff file"
+msgstr "Télécharger le fichier diff correspondant"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:37
+msgid "General Comments"
+msgstr "Commentaires généraux"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:40
+msgid "Submit Code Review"
+msgstr "Soumettre la revue de code"
+
+#: IDF/gettexttemplates/idf/source/base.html.php:3
+msgid "Source Tree"
+msgstr "Arbre des sources"
+
+#: IDF/gettexttemplates/idf/source/base.html.php:4
+msgid "Change Log"
+msgstr "Journal des modifications"
+
+#: IDF/gettexttemplates/idf/source/base.html.php:6
+msgid "How To Get The Code"
+msgstr "Comment obtenir le code"
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:3
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:7
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8
+#: IDF/Views/Project.php:190
+msgid "Age"
+msgstr "Âge"
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:4
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:8
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:8
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:9
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10
+msgid "Message"
+msgstr "Message"
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:5
+msgid "Parent:"
+msgstr "Parent:"
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:6
+#: IDF/gettexttemplates/idf/source/commit.html.php:10
+#: IDF/gettexttemplates/idf/source/commit.html~.php:10
+msgid "View corresponding commit"
+msgstr "Voir le commit correspondant"
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:8
+msgid "by"
+msgstr "par"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:3
+msgid "A new commit has been created:"
+msgstr "Un nouveau commit a été créée:"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:8
+msgid "Created by:"
+msgstr "Créé par:"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8
+msgid "Created at:"
+msgstr "Créé le:"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:8
+msgid "Content:"
+msgstr "Contenu:"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10
+msgid "Commit details:"
+msgstr "Détails du commit:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:4
+#: IDF/gettexttemplates/idf/source/commit.html~.php:4
+msgid "Date:"
+msgstr "Date:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:6
+#: IDF/gettexttemplates/idf/source/commit.html~.php:6
+msgid "Branch:"
+msgstr "Branche:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:9
+#: IDF/gettexttemplates/idf/source/commit.html~.php:9
+msgid "Parents:"
+msgstr "Parents:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:11
+#: IDF/gettexttemplates/idf/source/commit.html~.php:11
+msgid "Message:"
+msgstr "Message:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:12
+#: IDF/gettexttemplates/idf/source/commit.html~.php:12
+#: IDF/gettexttemplates/idf/wiki/feedfragment-page.xml.php:3
+#: IDF/gettexttemplates/idf/wiki/feedfragment-resource.xml.php:3
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:10
+msgid "Changes:"
+msgstr "Modifications:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:13
+#: IDF/gettexttemplates/idf/source/commit.html~.php:13
+msgid "deleted"
+msgstr "supprimé"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:14
+#: IDF/gettexttemplates/idf/source/commit.html.php:18
+#: IDF/gettexttemplates/idf/source/commit.html~.php:14
+#: IDF/gettexttemplates/idf/source/commit.html~.php:17
+msgid "full"
+msgstr "complet"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:15
+#: IDF/gettexttemplates/idf/source/commit.html~.php:15
+msgid "renamed"
+msgstr "renommé"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:16
+msgid "copied"
+msgstr "copié"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:17
+#: IDF/gettexttemplates/idf/source/commit.html~.php:16
+msgid "added"
+msgstr "ajouté"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:19
+#: IDF/gettexttemplates/idf/source/commit.html~.php:18
+msgid "modified"
+msgstr "modifié"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:20
+msgid "properties changed"
+msgstr "Propriétés changées."
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:21
+#: IDF/gettexttemplates/idf/source/commit.html~.php:20
+msgid "removed"
+msgstr "supprimé"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:22
+#: IDF/gettexttemplates/idf/source/commit.html~.php:21
+msgid "File differences"
+msgstr "Différences entre fichiers"
+
+#: IDF/gettexttemplates/idf/source/commit.html~.php:19
+msgid "properies changed"
+msgstr "propriétés modifiées"
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:3
+#, php-format
+msgid ""
+"The revision identifier %%commit%% is ambiguous and can be\n"
+"expanded to multiple valid revisions - please choose one:"
+msgstr ""
+"L'identifiant de révision %%commit%% est ambigu et peut être\n"
+"associé à différentes révisions valides. Choisissez-en une:"
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:5
+msgid "Title"
+msgstr "Titre"
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:6
+msgid "Author"
+msgstr "Auteur"
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:7
+msgid "Date"
+msgstr "Date"
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:8
+msgid "Branch"
+msgstr "Branche"
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:9
+msgid "Revision"
+msgstr "Révision"
+
+#: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3
+#, php-format
+msgid "%%cproject.name%%: Commit %%c.scm_id%%"
+msgstr "%%cproject.name%%: commit %%c.scm_id%%"
+
+#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:3
+#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:3
+#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:3
+msgid "Branches"
+msgstr "Branches"
+
+#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:4
+#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:4
+#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:4
+msgid "filter branches"
+msgstr "filtrer les branches"
+
+#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:5
+#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:5
+#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:5
+msgid "Tags"
+msgstr "Étiquettes"
+
+#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:6
+#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:6
+msgid "filter tags"
+msgstr "filtrer les étiquettes"
+
+#: IDF/gettexttemplates/idf/source/git/file.html.php:3
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:3
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:3
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:3
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:4
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:4
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:4
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:4
+#, php-format
+msgid ""
+"Source at commit %%commit%% created "
+"%%cobject.date%%."
+msgstr ""
+"Source au commit %%commit%% créé "
+"%%cobject.date%%."
+
+#: IDF/gettexttemplates/idf/source/git/file.html.php:4
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:4
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:4
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:4
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:5
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:5
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:5
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:5
+#, php-format
+msgid "By %%cobject.author%%, %%cobject.title%%"
+msgstr "Par %%cobject.author%%, %%cobject.title%%"
+
+#: IDF/gettexttemplates/idf/source/git/file.html.php:5
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:5
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:5
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:5
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:6
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:6
+msgid "Root"
+msgstr "Racine"
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:3
+#, php-format
+msgid ""
+"The team behind %%project%% is using\n"
+"the git software to manage the source\n"
+"code."
+msgstr ""
+"L'équipe de développement du projet %%project%%\n"
+"utilise Git pour gérer le code source."
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:6
+#, php-format
+msgid ""
+"You may need to provide your SSH key. The "
+"synchronization of your SSH key can take a couple of minutes. You can learn "
+"more about SSH key authentication."
+msgstr ""
+"Vous devrez peut-être fournir votre clé SSH. La "
+"synchronisation de votre clé SSH peut prendre quelques minutes. Vous pouvez "
+"en apprendre plus sur l'authentification avec une clé "
+"SSH publique."
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:6
+msgid "To make a first commit in the repository, perform the following steps:"
+msgstr "Pour effectuer le premier commit dans le dépôt, procédez comme suit:"
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:8
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:7
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:7
+#, php-format
+msgid "Find here more details on how to access %%project%% source code."
+msgstr ""
+"Trouvez ici plus de détails pour accéder au code du projet %%project%%."
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:9
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:8
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:8
+msgid "Command-Line Access"
+msgstr "Accès en ligne de commande"
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:10
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9
+msgid "First Commit"
+msgstr "Premier commit"
+
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:9
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:9
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:10
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:11
+#: IDF/Views/Download.php:66 IDF/Views/Download.php:348
+msgid "Size"
+msgstr "Taille"
+
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:10
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:10
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:12
+msgid ":"
+msgstr ":"
+
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:12
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:12
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:13
+msgid "Download this version"
+msgstr "Téléchargez cette version"
+
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:13
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:13
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:14
+msgid "or"
+msgstr "ou"
+
+#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:3
+#: IDF/gettexttemplates/idf/source/invalid_revision.html~.php:3
+#, php-format
+msgid ""
+"The branch or revision %%commit%% is not valid or does not exist\n"
+"in this repository."
+msgstr ""
+"La branche ou la révision %%commit%% n'est pas valide ou n'existe "
+"pas\n"
+"dans le dépôt."
+
+#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:5
+#: IDF/gettexttemplates/idf/source/invalid_revision.html~.php:5
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html.php:5
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html~.php:5
+msgid "The following list shows all available branches:"
+msgstr "Les branches disponibles sont listées ci-dessous:"
+
+#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:6
+#: IDF/gettexttemplates/idf/source/invalid_revision.html~.php:6
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html.php:6
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html~.php:6
+#, php-format
+msgid ""
+"If this is a new repository, the reason for this error\n"
+"could be that you have not committed and / or pushed any change so far.\n"
+"In this case please take a look at the Help page\n"
+"how to access your repository."
+msgstr ""
+"S'il s'agit d'un nouveau dépôt, la raison de cette erreur peut être\n"
+"que vous n'avez pas encore effectué de commit ou envoyé de modification.\n"
+"Dans ce cas, veuillez lire la page d'aide sur\n"
+"comment accéder au dépôt."
+
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:3
+#, php-format
+msgid ""
+"The team behind %%project%% is using\n"
+"the Mercurial software to manage the source\n"
+"code."
+msgstr ""
+"L'équipe de développement du projet %%project%%\n"
+"utilise Mercurial pour gérer le code source."
+
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:6
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:6
+#, php-format
+msgid ""
+"To get write access to the repository, you need to use your username and "
+"your extra password."
+msgstr ""
+"Pour avoir accès en écriture au dépôt, vous devez utiliser votre identifiant "
+"et votre mot de passe supplémentaire."
+
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:9
+msgid "Write Access Authentication"
+msgstr "Authentification d'accès en écriture"
+
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:3
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:3
+#, php-format
+msgid "Property %%prop%% set to %%val%%"
+msgstr "Propriété %%prop%% définie à %%val%%"
+
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:3
+#, php-format
+msgid ""
+"The team behind %%project%% is using\n"
+"the monotone software to manage the source\n"
+"code."
+msgstr ""
+"L'équipe de développement du projet %%project%%\n"
+"utilise Monotone pour gérer le code source."
+
+#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/commit.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/commit.html~.php:3
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:9
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:14
+msgid "Revision:"
+msgstr "Révision:"
+
+#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:4
+#: IDF/gettexttemplates/idf/source/svn/commit.html.php:4
+#: IDF/gettexttemplates/idf/source/svn/commit.html~.php:4
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:10
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15
+msgid "Switch"
+msgstr "Basculer"
+
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:3
+#, php-format
+msgid ""
+"The team behind %%project%% is using\n"
+"the subversion software to manage the source\n"
+"code."
+msgstr ""
+"L'équipe de développement du projet %%project%%\n"
+"utilise Subversion pour gérer le code source."
+
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html~.php:3
+#, php-format
+msgid ""
+"The revision %%commit%% is not valid or does not exist\n"
+"in this repository."
+msgstr ""
+"La révision %%commit%% n'est pas valide ou n'existe pas\n"
+"dans ce dépôt."
+
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9
+msgid "Rev"
+msgstr "Rév"
+
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16
+msgid "Branches:"
+msgstr "Branches:"
+
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17
+msgid "Tags:"
+msgstr "Étiquettes:"
+
+#: IDF/gettexttemplates/idf/user/changeemail-email.txt.php:3
+#, php-format
+msgid ""
+"Hello %%user%%,\n"
+"\n"
+"To confirm that you want %%email%%\n"
+"to be your new email address, just follow this link:\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Alternatively, go to this page:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"and provide the following verification key:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"If you do not want to change your email address, \n"
+"just ignore this message.\n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+"Bonjour %%user%%,\n"
+"\n"
+"Pour confirmer l'utilisation de %%email%%\n"
+"comme nouvelle adresse email, suivez le lien suivant:\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Vous pouvez également vous rendre sur cette page:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"et fournir la clé de vérification suivante:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"Si vous ne voulez pas changer votre adresse email,\n"
+"ignorez simplement ce message.\n"
+"\n"
+"Cordialement,\n"
+"\n"
+"L'équipe de développement\n"
+
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:4
+msgid "Confirm Your New Email Address"
+msgstr "Confirmez votre nouvelle adresse email"
+
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:7
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:7
+msgid ""
+"Use your email software to read your emails and open your verification "
+"email. Either click directly on the verification link or copy/paste the "
+"verification key in the box and submit the form."
+msgstr ""
+"Utilisez votre logiciel de messagerie pour lire votre email de vérification. "
+"Vous pouvez cliquer sur le lien fourni ou copier/coller la clé de "
+"vérification dans le formulaire et le soumettre."
+
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:3
+#, php-format
+msgid "Update your account."
+msgstr "Mettre à jour votre compte."
+
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:4
+#, php-format
+msgid "See your public profile."
+msgstr "Voir votre profil public."
+
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:5
+#, php-format
+msgid "See your forge issue watch list."
+msgstr ""
+"Voir votre liste de surveillance de tickets sur la "
+"forge."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:6
+msgid "Key Management"
+msgstr "Administration des clés"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:7
+msgid "Secondary Emails"
+msgstr "Emails secondaires"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:8
+msgid "Extra password"
+msgstr "Mot de passe supplémentaire"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:9
+msgid ""
+"This password is used to access some of the external systems managed by our "
+"infrastructure. It will be regenerated if you change your password."
+msgstr ""
+"Ce mot de passe est utilisé pour accéder à certains systèmes externes gérés "
+"par notre infrastructure. Il sera régénéré si vous modifiez votre mot de "
+"passe."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:10
+msgid "API key"
+msgstr "Clé d'API"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:11
+msgid ""
+"Your API key will be regenerated automatically if you change your password."
+msgstr ""
+"Votre clé d'API sera régénérée automatiquement si vous modifiez votre mot de "
+"passe."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:12
+msgid "Update Your Account"
+msgstr "Mettre à jour votre compte"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:14
+msgid "Your Current Public Keys"
+msgstr "Vos clés publiques actuelles"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:15
+msgid "Delete this key"
+msgstr "Supprimer cette clé"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:16
+msgid "Your additional email addresses"
+msgstr "Vos adresses emails secondaires"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:17
+msgid "Delete this address"
+msgstr "Supprimer cette adresse"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:18
+msgid ""
+"If possible, use your real name. By using your real name, people will have "
+"more trust in your comments and remarks."
+msgstr ""
+"Si possible, utilisez votre vrai nom. En utilisant votre vrai nom, les "
+"personnes participant à ce site auront naturellement plus confiance en vos "
+"commentaires et remarques."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:19
+msgid ""
+"The extra password is used to access some of the external systems and the "
+"API key is used to interact with this website using a program."
+msgstr ""
+"Le mot de passe supplémentaire est utilisé pour accéder à certains systèmes "
+"externes et la clé d'API est utilisée pour communiquer avec le site au moyen "
+"d'un programme."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:20
+msgid "Show API key and extra password"
+msgstr "Montrer la clé d'API et le mot de passe supplémentaire"
+
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3
+msgid ""
+"Oops, please check the provided login or email address to recover your "
+"password."
+msgstr ""
+"Oups, veuillez vérifier l'identifiant ou l'adresse email pour récupérer "
+"votre mot de passe."
+
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:4
+msgid "Recover My Password"
+msgstr "Récupérer mon mot de passe"
+
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:6
+msgid ""
+"Provide either your login or email address, if a corresponding user is found "
+"in the database, we will send you an email with the details on how to reset "
+"your password."
+msgstr ""
+"Fournissez votre identifiant ou votre adresse email. Si un utilisateur "
+"correspondant est trouvé dans la base de données, nous vous enverrons un "
+"email avec les informations nécessaires pour réinitialiser votre mot de "
+"passe."
+
+#: IDF/gettexttemplates/idf/user/passrecovery-email.txt.php:3
+#, php-format
+msgid ""
+"Hello %%user%%,\n"
+"\n"
+"You lost your password and wanted to recover it.\n"
+"To provide a new password for your account, you\n"
+"just have to follow the provided link. You will\n"
+"get a simple form to provide a new password.\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Alternatively, go to this page:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"and provide the following verification key:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"If you are not the one who requested to reset\n"
+"your password, simply ignore this email, your\n"
+"password will not be changed.\n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+"Bonjour %%user%%,\n"
+"\n"
+"Vous avez perdu votre mot de passe et voulez le retrouver.\n"
+"Pour définir un nouveau mot de passe pour votre compte, vous\n"
+"devez simplement suivre le lien suivant, et un formulaire\n"
+"vous permettra de fournir un nouveau mot de passe:\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Vous pouvez également vous rendre sur cette page:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"et fournir la clé de vérification suivante:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"Si vous n'êtes pas la personne ayant fait la demande de\n"
+"réinitialisation de votre mot de passe, ignorez simplement\n"
+"cet email et votre mot de passe restera inchangé.\n"
+"\n"
+"Cordialement,\n"
+"\n"
+"L'équipe de développement\n"
+
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:4
+msgid "Recover Your Password"
+msgstr "Récupérer votre mot de passe"
+
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:8
+msgid ""
+"Just after providing the confirmation key, you will be able to reset your "
+"password and use this website fully."
+msgstr ""
+"Tout de suite après avoir fourni la clé de confirmation, vous pourrez "
+"réinitialiser votre mot de passe et utiliser pleinement le site."
+
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:6
+msgid "Reset Your Password"
+msgstr "Réinitialiser votre mot de passe"
+
+#: IDF/gettexttemplates/idf/user/public.html.php:3
+#, php-format
+msgid "You are looking at the public profile of %%member%%."
+msgstr "Vous consultez le profil public de %%member%%."
+
+#: IDF/gettexttemplates/idf/user/public.html.php:5
+msgid "Twitter:"
+msgstr "Twitter:"
+
+#: IDF/gettexttemplates/idf/user/public.html.php:6
+msgid "Public Email:"
+msgstr "Email public:"
+
+#: IDF/gettexttemplates/idf/user/public.html.php:7
+msgid "Website:"
+msgstr "Site Web:"
+
+#: IDF/gettexttemplates/idf/user/public.html.php:8
+msgid "Last time seen:"
+msgstr "Vu la dernière fois:"
+
+#: IDF/gettexttemplates/idf/user/public.html.php:9
+msgid "Member since:"
+msgstr "Membre depuis:"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:3
+msgid "List Pages"
+msgstr "Liste des pages"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:4
+msgid "List Resources"
+msgstr "Liste des ressources"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:5
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:4
+#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:211
+msgid "New Page"
+msgstr "Nouvelle page"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:6
+#: IDF/gettexttemplates/idf/wiki/listResources.html.php:3
+#: IDF/Views/Wiki.php:256
+msgid "New Resource"
+msgstr "Nouvelle ressource"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:7
+msgid "Update This Page"
+msgstr "Mettre à jour cette page"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:8
+msgid "Update This Resource"
+msgstr "Mettre à jour cette ressource"
+
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:3
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:3
+msgid "Preview of the Page"
+msgstr "Prévisualisation de la page"
+
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:7
+msgid "The form contains some errors. Please correct them to create the page."
+msgstr ""
+"Le formulaire contient des erreurs. Veuillez les corriger pour créer la page."
+
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:6
+msgid "Create Page"
+msgstr "Créer une page"
+
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:3
+msgid ""
+"\n"
+"Wiki resources are later addressed in wiki pages by their title, so ensure "
+"that you\n"
+"give your resource a unique and an easy to remember name.\n"
+msgstr ""
+"\n"
+"Les ressources du Wiki sont accessibles par leurs titres. Utilisez des "
+"titres simple et unique.\n"
+
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:8
+msgid "Create Resource"
+msgstr "Créer une ressource"
+
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:3
+msgid ""
+"If you delete this documentation page, it will be removed from the database "
+"with all the associated revisions and you will not be able to "
+"recover it."
+msgstr ""
+"Si vous supprimez cette page de documentation, elle sera supprimée de la "
+"base de données tout comme les révisions associées, et vous ne "
+"pourrez pas les récupérer ultérieurement."
+
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:6
+msgid "Delete Page"
+msgstr "Supprimer la page"
+
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:14
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:15
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:15
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:17
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:18
+msgid "Old Revisions"
+msgstr "Anciennes révisions"
+
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:3
+#, php-format
+msgid ""
+"You are looking at an old revision (%%oldrev.summary%%) of the "
+"page \n"
+"%%page.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+"Vous consultez une ancienne révision (%%oldrev.summary%%) de la "
+"page\n"
+"%%page.title%%. Cette révision a été créée\n"
+"par %%submitter%%."
+
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:5
+msgid ""
+"If you delete this old revision, it will be removed from the database and "
+"you will not be able to recover it."
+msgstr ""
+"Si vous supprimez cette ancienne révision, elle sera supprimée de la base de "
+"données et vous ne pourrez pas la récupérer ultérieurement."
+
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:8
+msgid "Delete Revision"
+msgstr "Supprimer cette révision"
+
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:3
+msgid ""
+"If you delete this documentation resource, it will be removed from the "
+"database with all the associated revisions \n"
+"and you will not be able to recover it. Any documentation "
+"pages that reference this resource,\n"
+"will no longer be able to render it, but won't be deleted."
+msgstr ""
+"Si vous supprimer cette documentation de ressource, elle sera enlever de la "
+"basse de donnée avec toutes les versions qui lui sont associées\n"
+"et vous ne pourrez pas les récupérer. Caque page de "
+"documentation qui fait référence à cette ressource ne seront plus capable de "
+"s'y rendre, mais elles ne seront pas supprimé."
+
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:8
+msgid "Delete Resource"
+msgstr "Supprimer une ressource."
+
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:10
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:8
+msgid "File size"
+msgstr "Taille du fichier"
+
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:9
+#: IDF/Views/Wiki.php:101
+msgid "MIME type"
+msgstr "Type MIME"
+
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:3
+#, php-format
+msgid ""
+"You are looking at an old revision (%%oldrev.summary%%) of the "
+"resource \n"
+"%%resource.title%%. This revision was created by "
+"%%submitter%%."
+msgstr ""
+"Vous être en train de consulter une vielle version (%%oldrev.summary%%"
+"em>) de la ressource \n"
+"%%resource.title%%. Cette version à été créée par "
+"%%submitter%%."
+
+#: IDF/gettexttemplates/idf/wiki/edit-info.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
Website addresses are automatically linked and you can link to another "
+"page in the documentation using double square brackets like that "
+"[[AnotherPage]].
\n"
+"
If you want to embed uploaded resources, use the [[!ResourceName]]"
+"code> syntax for that. This is described more in detail in the FAQ.
\n"
+"
To directly include a file content from the repository, embrace its path "
+"with triple square brackets: [[[my/file.txt]]].
Les adresses de site internet sont automatiquement liées et vous pouvez "
+"définir un lien vers une autre page dans la documentation en utilisant des "
+"doubles crochets, comme ceci [[AnotherPage]].
\n"
+"
Si vous voulez embarquer des ressources envoyées, utilisez cette [[!"
+"ResourceName]] syntaxe. Pour plus de détails, consulter la FAQ.
\n"
+"
Pour inclure directement un fichier dans le dépôt, indiquez son chemin "
+"entre triples : [[[my/file.txt]]].
\n"
+
+#: IDF/gettexttemplates/idf/wiki/feedfragment-resource.xml.php:4
+msgid "Initial creation"
+msgstr "Création initiale"
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:3
+#, php-format
+msgid "See the deprecated pages."
+msgstr "Voir les pages obsolètes."
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:5
+msgid "Number of pages:"
+msgstr "Nombre de pages:"
+
+#: IDF/gettexttemplates/idf/wiki/listResources.html.php:4
+msgid "Number of resources:"
+msgstr "Nombre de ressources :"
+
+#: IDF/gettexttemplates/idf/wiki/search.html.php:4
+msgid "Pages found:"
+msgstr "Pages trouvées:"
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:3
+msgid "The form contains some errors. Please correct them to update the page."
+msgstr ""
+"Le formulaire contient des erreurs. Veuillez les corriger pour mettre à jour "
+"la page."
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:6
+msgid "Update Page"
+msgstr "Mettre à jour la page"
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:11
+msgid "Delete this page"
+msgstr "Supprimer cette page"
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:4
+msgid "Update Resource"
+msgstr "Mettre à jour la ressource"
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:9
+msgid "Delete this resource"
+msgstr "Supprimer cette ressource"
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:3
+msgid ""
+"Attention! This page is marked as deprecated, \n"
+"use it as reference only if you are sure you need these specific information."
+msgstr ""
+"Attention! Cette page est marquée comme obsolète.\n"
+"Utilisez ces informations comme référence uniquement si vous avez vraiment\n"
+"besoin de cette version."
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:5
+#, php-format
+msgid ""
+"You are looking at an old revision of the page \n"
+"%%page.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+"Vous consultez une ancienne révision de la page\n"
+"%%page.title%%. Cette révision a été créée\n"
+"par %%submitter%%."
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:10
+msgid "Table of Content"
+msgstr "Sommaire"
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:13
+msgid "Delete this revision"
+msgstr "Supprimer cette révision"
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:3
+#, php-format
+msgid ""
+"You are looking at an old revision of the resource \n"
+"%%resource.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+"Vous consultez actuellement une ancienne version de la ressource \n"
+"%%resource.title%%. Cette version à été créée par "
+"%%submitter%%."
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:14
+msgid "Page Usage"
+msgstr "Utilisation de la page"
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:15
+msgid "This resource is not used on any pages yet."
+msgstr "Cette ressource n'est toujours pas utilisée sur une page."
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:3
+msgid "A new documentation page has been created:"
+msgstr "Une nouvelle page de documentation a été créée:"
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:14
+msgid "Documentation page:"
+msgstr "Page de documentation:"
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3
+msgid "The following documentation page has been updated:"
+msgstr "La page de documentation suivante a été mise à jour:"
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7
+msgid "Updated by:"
+msgstr "Mise à jour par:"
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13
+msgid "New content:"
+msgstr "Nouveau contenu:"
+
+#: IDF/Issue.php:76
+msgid "owner"
+msgstr "propriétaire"
+
+#: IDF/Issue.php:84 IDF/Wiki/Page.php:86
+msgid "interested users"
+msgstr "utilisateurs intéressés"
+
+#: IDF/Issue.php:85
+msgid ""
+"Interested users will get an email notification when the issue is changed."
+msgstr ""
+"Les utilisateurs intéressés vont recevoir une notification par email lorsque "
+"le ticket est modifié."
+
+#: IDF/Issue.php:92 IDF/Project.php:94 IDF/Review.php:95 IDF/Upload.php:99
+#: IDF/Wiki/Page.php:94
+msgid "labels"
+msgstr "étiquettes"
+
+#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114
+#: IDF/Upload.php:118 IDF/Wiki/Page.php:106 IDF/Wiki/Resource.php:101
+msgid "modification date"
+msgstr "date de modification"
+
+#: IDF/Issue.php:212 IDF/IssueComment.php:143
+#, php-format
+msgid ""
+"Issue %3$d, %4$s"
+msgstr ""
+"Ticket %3$d, "
+"%4$s"
+
+#: IDF/Issue.php:214
+#, php-format
+msgid "Creation of issue %3$d, by %4$s"
+msgstr "Création du ticket %3$d, par %4$s"
+
+#: IDF/Issue.php:224
+#, php-format
+msgid "%1$s: Issue %2$d created - %3$s"
+msgstr "%1$s: Création du ticket %2$d - %3$s"
+
+#: IDF/Issue.php:307
+#, php-format
+msgid "Issue %1$s - %2$s (%3$s)"
+msgstr "Ticket %1$s - %2$s (%3$s)"
+
+#: IDF/Issue.php:311
+#, php-format
+msgid "Updated Issue %1$s - %2$s (%3$s)"
+msgstr "Ticket mis à jour %1$s - %2$s (%3$s)"
+
+#: IDF/IssueComment.php:51 IDF/IssueRelation.php:47
+msgid "issue"
+msgstr "ticket"
+
+#: IDF/IssueComment.php:58 IDF/IssueFile.php:49 IDF/Review/Comment.php:62
+#: IDF/Review/FileComment.php:49 IDF/Review/FileComment.php:69
+msgid "comment"
+msgstr "commentaire"
+
+#: IDF/IssueComment.php:72 IDF/Review/Comment.php:75 IDF/Upload.php:63
+#: IDF/Wiki/PageRevision.php:85
+msgid "changes"
+msgstr "modifications"
+
+#: IDF/IssueComment.php:73
+msgid "Serialized array of the changes in the issue."
+msgstr "Tableau sérialisé des modifications du ticket."
+
+#: IDF/IssueComment.php:180
+#, php-format
+msgid "Comment on issue %3$d, by %4$s"
+msgstr ""
+"Commentaire sur le ticket %3$d, par %4$s"
+
+#: IDF/IssueComment.php:191
+#, php-format
+msgid "%1$s: Comment on issue %2$d - %3$s"
+msgstr "%1$s: Commentaire sur le ticket %2$d - %3$s"
+
+#: IDF/IssueFile.php:64
+msgid "file name"
+msgstr "nom du fichier"
+
+#: IDF/IssueFile.php:70
+msgid "the file"
+msgstr "le fichier"
+
+#: IDF/IssueFile.php:76
+msgid "file size"
+msgstr "taille du fichier"
+
+#: IDF/IssueFile.php:84
+msgid "type"
+msgstr "type"
+
+#: IDF/IssueFile.php:86
+msgid "Image"
+msgstr "Image"
+
+#: IDF/IssueFile.php:87
+msgid "Other"
+msgstr "Autre"
+
+#: IDF/IssueRelation.php:54
+msgid "verb"
+msgstr "verbe"
+
+#: IDF/IssueRelation.php:61
+msgid "other issue"
+msgstr "autre ticket"
+
+#: IDF/Key.php:55
+msgid "public key"
+msgstr "clé publique"
+
+#: IDF/Key.php:90
+msgid "Invalid or unknown key data detected."
+msgstr "Format de clé invalide ou inconnu."
+
+#: IDF/Plugin/SyncMercurial.php:78 IDF/Plugin/SyncSvn.php:81
+#, php-format
+msgid "The repository %s already exists."
+msgstr "Le dépôt %s existe déjà."
+
+#: IDF/Plugin/SyncMercurial.php:142
+#, php-format
+msgid "%s does not exist or is not writable."
+msgstr "%s n'existe pas ou n'est pas accessible en écriture."
+
+#: IDF/Plugin/SyncMonotone.php:107 IDF/Plugin/SyncMonotone.php:492
+msgid "\"mtn_repositories\" must be defined in your configuration file"
+msgstr ""
+"«mtn_repositories» doit être défini dans votre fichier de configuration"
+
+#: IDF/Plugin/SyncMonotone.php:114 IDF/Plugin/SyncMonotone.php:482
+msgid "\"mtn_usher_conf\" does not exist or is not writable"
+msgstr "«mtn_usher_conf» n'existe pas ou n'est pas accessible en écriture"
+
+#: IDF/Plugin/SyncMonotone.php:121
+#, php-format
+msgid "Could not find mtn-post-push script \"%s\""
+msgstr "Impossible de trouver le script mtn-post-push «%s»"
+
+#: IDF/Plugin/SyncMonotone.php:155
+#, php-format
+msgid "The configuration file \"%s\" is missing"
+msgstr "Le fichier de configuration «%s» est manquant"
+
+#: IDF/Plugin/SyncMonotone.php:164
+#, php-format
+msgid "The project path \"%s\" already exists"
+msgstr "Le chemin de projet «%s» existe déjà"
+
+#: IDF/Plugin/SyncMonotone.php:170
+#, php-format
+msgid "The project path \"%s\" could not be created"
+msgstr "Impossible de créer le chemin de projet «%s»"
+
+#: IDF/Plugin/SyncMonotone.php:208
+#, php-format
+msgid "The key directory \"%s\" could not be created"
+msgstr "Impossible de créer le dossier des clés «%s»"
+
+#: IDF/Plugin/SyncMonotone.php:227
+#, php-format
+msgid "Could not parse key information: %s"
+msgstr "Impossible de parcourir l'information de la clé: %s"
+
+#: IDF/Plugin/SyncMonotone.php:265
+#, php-format
+msgid "Could not create configuration directory \"%s\""
+msgstr "Impossible de créer le dossier de configuration «%s»"
+
+#: IDF/Plugin/SyncMonotone.php:275
+#, php-format
+msgid "Could not create symlink for configuration file \"%s\""
+msgstr ""
+"Impossible de créer un lien symbolique pour le fichier de configuration «%s»"
+
+#: IDF/Plugin/SyncMonotone.php:293
+#, php-format
+msgid "Could not write configuration file \"%s\""
+msgstr "Impossible d'écrire le fichier de configuration «%s»"
+
+#: IDF/Plugin/SyncMonotone.php:309 IDF/Plugin/SyncMonotone.php:525
+#, php-format
+msgid "Could not parse usher configuration in \"%1$s\": %2$s"
+msgstr "Impossible de parcourir la configuration d'usher dans «%1$s»: %2$s"
+
+#: IDF/Plugin/SyncMonotone.php:320
+#, php-format
+msgid "usher configuration already contains a server entry named \"%s\""
+msgstr "La configuration d'usher contient déjà une entrée serveur nommée «%s»"
+
+#: IDF/Plugin/SyncMonotone.php:345 IDF/Plugin/SyncMonotone.php:546
+#, php-format
+msgid "Could not write usher configuration file \"%s\""
+msgstr "Impossible d'écrire le fichier de configuration d'usher «%s»"
+
+#: IDF/Plugin/SyncMonotone.php:395
+#, php-format
+msgid "Could not write write-permissions file \"%s\""
+msgstr "Impossible d'écrire le fichier de permissions en écriture «%s»"
+
+#: IDF/Plugin/SyncMonotone.php:420
+#, php-format
+msgid "Could not write read-permissions file \"%s\""
+msgstr "Impossible d'écrire le fichier de permissions en lecture «%s»"
+
+#: IDF/Plugin/SyncMonotone.php:438
+#, php-format
+msgid "Could not remove symlink \"%s\""
+msgstr "Impossible de supprimer le lien symbolique «%s»"
+
+#: IDF/Plugin/SyncMonotone.php:446
+#, php-format
+msgid "Could not create symlink \"%s\""
+msgstr "Impossible de créer le lien symbolique «%s»"
+
+#: IDF/Plugin/SyncMonotone.php:500
+#, php-format
+msgid "One or more paths underneath %s could not be deleted"
+msgstr "Un ou plusieurs chemins sous %s n'ont pu être supprimés"
+
+#: IDF/Plugin/SyncMonotone.php:512
+#, php-format
+msgid "Could not delete client private key \"%s\""
+msgstr "Impossible de supprimer la clé privée cliente «%s»"
+
+#: IDF/Plugin/SyncMonotone.php:599 IDF/Plugin/SyncMonotone.php:718
+#, php-format
+msgid "Could not parse read-permissions for project \"%1$s\": %2$s"
+msgstr ""
+"N'a pas pu consulter les permissions de lecture pour le projet \"%1$s\": %2$s"
+
+#: IDF/Plugin/SyncMonotone.php:643 IDF/Plugin/SyncMonotone.php:741
+#, php-format
+msgid "Could not write read-permissions for project \"%s\""
+msgstr "Impossible d'écrire les permissions en lecture pour le projet «%s»"
+
+#: IDF/Plugin/SyncMonotone.php:657 IDF/Plugin/SyncMonotone.php:760
+#, php-format
+msgid "Could not write write-permissions file for project \"%s\""
+msgstr "Impossible d'écrire les permissions en écriture pour le projet «%s»"
+
+#: IDF/Plugin/SyncMonotone.php:813
+msgid "\"mtn_repositories\" must be defined in your configuration file."
+msgstr ""
+"«mtn_repositories» doit être défini dans votre fichier de configuration."
+
+#: IDF/Plugin/SyncMonotone.php:820
+#, php-format
+msgid "The project path %s does not exists."
+msgstr "Le chemin de projet %s n'existe pas."
+
+#: IDF/Plugin/SyncMonotone.php:838
+#, php-format
+msgid "The command \"%s\" could not be executed."
+msgstr "La commande «%s» n'a pu être exécutée."
+
+#: IDF/Project.php:62 IDF/Tag.php:66
+msgid "name"
+msgstr "nom"
+
+#: IDF/Project.php:69
+msgid "short name"
+msgstr "nom court"
+
+#: IDF/Project.php:70
+msgid ""
+"Used in the URL to access the project, must be short with only letters and "
+"numbers."
+msgstr ""
+"Utilisé dans l'adresse URL pour accéder au projet, doit être court et ne "
+"comportant que des lettres et des chiffres."
+
+#: IDF/Project.php:78
+msgid "short description"
+msgstr "Description courte"
+
+#: IDF/Project.php:86 IDF/Review/Patch.php:74
+msgid "description"
+msgstr "description"
+
+#: IDF/Project.php:87
+msgid "The description can be extended using the Markdown syntax."
+msgstr "La description peut être complété en utilisant la syntaxe Markdown."
+
+#: IDF/Project.php:100
+msgid "private"
+msgstr "privé"
+
+#: IDF/Project.php:108
+msgid "current project activity"
+msgstr "Activité du projet actuel"
+
+#: IDF/Project.php:159
+#, php-format
+msgid "Project \"%s\" not found."
+msgstr "Projet «%s» non trouvé."
+
+#: IDF/ProjectActivity.php:56
+msgid "date"
+msgstr "Date"
+
+#: IDF/Review/Comment.php:55 IDF/Review/Patch.php:80
+msgid "patch"
+msgstr "patch"
+
+#: IDF/Review/Comment.php:83
+msgid "vote"
+msgstr "vote"
+
+#: IDF/Review/Comment.php:139 IDF/Review/Patch.php:151
+#, php-format
+msgid ""
+"Review %3$d, %4$s"
+msgstr ""
+"Revue %3$d, %4$s"
+
+#: IDF/Review/Comment.php:141
+#, php-format
+msgid "Update of review %3$d, by %4$s"
+msgstr ""
+"Mis à jour de la revue %3$d, par %4$s"
+
+#: IDF/Review/Comment.php:151
+#, php-format
+msgid "%1$s: Updated review %2$d - %3$s"
+msgstr "%1$s : Mise à jour de la ressource %2$d - %3$s"
+
+#: IDF/Review/Comment.php:222
+#, php-format
+msgid "Updated Code Review %1$s - %2$s (%3$s)"
+msgstr "Mettre à jour la revue de code %1$s - %2$s (%3$s)"
+
+#: IDF/Review/Patch.php:52
+msgid "review"
+msgstr "revue"
+
+#: IDF/Review/Patch.php:67
+msgid "commit"
+msgstr "commit"
+
+#: IDF/Review/Patch.php:153
+#, php-format
+msgid "Creation of review %3$d, by %4$s"
+msgstr ""
+"Création de la revue %3$d, par %4$s"
+
+#: IDF/Review/Patch.php:163
+#, php-format
+msgid "%1$s: Creation of Review %2$d - %3$s"
+msgstr "%1$s: Création de la revue %2$d - %3$s"
+
+#: IDF/Review/Patch.php:208
+#, php-format
+msgid "New Code Review %1$s - %2$s (%3$s)"
+msgstr "Nouvelle revue de code %1$s - %2$s (%3$s)"
+
+#: IDF/Scm/Git.php:309 IDF/Scm/Mercurial.php:199
+#, php-format
+msgid "Folder %1$s not found in commit %2$s."
+msgstr "Dossier %1$s non trouvé dans le commit %2$s."
+
+#: IDF/Scm/Git.php:433 IDF/Scm/Mercurial.php:216
+#, php-format
+msgid "Not a valid tree: %s."
+msgstr "Arbre invalide: %s."
+
+#: IDF/Scm/Monotone/Stdio.php:81
+msgid "Monotone client key name or hash not in project conf."
+msgstr ""
+"Le nom ou le hash de la clé cliente monotone ne figure pas dans la "
+"configuration du projet."
+
+#: IDF/Scm/Monotone/Stdio.php:89
+#, php-format
+msgid "The key directory %s could not be created."
+msgstr "Le dossier des clés %s n'a pu être créé."
+
+#: IDF/Scm/Monotone/Stdio.php:100
+#, php-format
+msgid "Could not write client key \"%s\""
+msgstr "Impossible d'écrire la clé cliente «%s»"
+
+#: IDF/Search/Occ.php:33
+msgid "occurrence"
+msgstr "Occurrence"
+
+#: IDF/Search/Occ.php:49
+msgid "word"
+msgstr "mot"
+
+#: IDF/Search/Occ.php:75
+msgid "occurrences"
+msgstr "Occurrences"
+
+#: IDF/Search/Occ.php:81
+msgid "ponderated occurrence"
+msgstr "Occurrence pondérée"
+
+#: IDF/Tag.php:59
+msgid "tag class"
+msgstr "classe d'étiquette"
+
+#: IDF/Tag.php:60
+msgid "The class of the tag."
+msgstr "La classe de l'étiquette."
+
+#: IDF/Tag.php:73
+msgid "lcname"
+msgstr "lcname"
+
+#: IDF/Tag.php:74
+msgid "Lower case version of the name for fast searching."
+msgstr "Version du nom en minuscules pour recherche rapide."
+
+#: IDF/Template/Markdown.php:84
+msgid "Create this documentation page"
+msgstr "Créer cette page de documentation"
+
+#: IDF/Template/Markdown.php:97
+msgid "You are not allowed to access the wiki."
+msgstr "Vous n'êtes pas autorisé à accéder au wiki."
+
+#: IDF/Template/Markdown.php:106
+msgid "The wiki resource has not been found."
+msgstr "La ressource du wiki n'a pas été trouvé."
+
+#: IDF/Template/Markdown.php:113
+msgid "The wiki resource has not been found. Create it!"
+msgstr "La ressource du wiki n'a pas été trouvé. Créez-la !"
+
+#: IDF/Template/Markdown.php:146
+msgid "This revision of the resource is no longer available."
+msgstr "La version de cette ressource n'est plus disponible."
+
+#: IDF/Template/ShowUser.php:51
+msgid "Anonymous"
+msgstr "Anonyme"
+
+#: IDF/Template/ShowUser.php:54
+msgid "Me"
+msgstr "Moi"
+
+#: IDF/Timeline/Paginator.php:49
+msgid "Today"
+msgstr "Aujourd'hui"
+
+#: IDF/Upload.php:70
+msgid "file"
+msgstr "fichier"
+
+#: IDF/Upload.php:71
+msgid "The path is relative to the upload path."
+msgstr "Le chemin est relatif au dossier de mise en ligne."
+
+#: IDF/Upload.php:78 IDF/Wiki/ResourceRevision.php:71
+msgid "file size in bytes"
+msgstr "taille du fichier en octets"
+
+#: IDF/Upload.php:84
+msgid "MD5"
+msgstr "MD5"
+
+#: IDF/Upload.php:106
+msgid "number of downloads"
+msgstr "nombre de téléchargements"
+
+#: IDF/Upload.php:201
+#, php-format
+msgid "Download %2$d, %3$s"
+msgstr ""
+"Téléchargement %2$d, "
+"%3$s"
+
+#: IDF/Upload.php:204
+#, php-format
+msgid "Addition of download %2$d, by %3$s"
+msgstr "Somme des téléchargements %2$d, par %3$s"
+
+#: IDF/Upload.php:214
+#, php-format
+msgid "%1$s: Download %2$d added - %3$s"
+msgstr "%1$s: Téléchargement %2$d ajouté - %3$s"
+
+#: IDF/Upload.php:301
+#, php-format
+msgid "New download - %1$s (%2$s)"
+msgstr "Nouveau téléchargement - %1$s (%2$s)"
+
+#: IDF/Upload.php:305
+#, php-format
+msgid "Updated download - %1$s (%2$s)"
+msgstr "Téléchargement mis à jour - %1$s (%2$s)"
+
+#: IDF/Views/Admin.php:47
+msgid "The forge configuration has been saved."
+msgstr "La configuration de la forge à été sauvegardée."
+
+#: IDF/Views/Admin.php:80
+msgid "This table shows the projects in the forge."
+msgstr "Ce tableau affiche les projets de la forge."
+
+#: IDF/Views/Admin.php:85
+msgid "Short Name"
+msgstr "Nom court"
+
+#: IDF/Views/Admin.php:87
+msgid "Repository Size"
+msgstr "Taille du dépôt"
+
+#: IDF/Views/Admin.php:93
+msgid "No projects were found."
+msgstr "Aucun projet n'a été trouvé."
+
+#: IDF/Views/Admin.php:116
+msgid "The label configuration has been saved."
+msgstr "La configuration des étiquettes à été sauvegardée."
+
+#: IDF/Views/Admin.php:147 IDF/Views/Admin.php:314 IDF/Views/Wiki.php:484
+#: IDF/Views/Wiki.php:536
+#, php-format
+msgid "Update %s"
+msgstr "Mettre à jour %s"
+
+#: IDF/Views/Admin.php:155 IDF/Views/Project.php:304
+msgid "The project has been updated."
+msgstr "Le projet a été mis à jour."
+
+#: IDF/Views/Admin.php:192
+msgid "The project has been created."
+msgstr "Le projet a été créé."
+
+#: IDF/Views/Admin.php:223
+#, php-format
+msgid "Delete %s Project"
+msgstr "Supprimer le projet %s"
+
+#: IDF/Views/Admin.php:230
+msgid "The project has been deleted."
+msgstr "Le projet a été supprimé."
+
+#: IDF/Views/Admin.php:260
+msgid "Not Validated User List"
+msgstr "Liste des utilisateurs non confirmés"
+
+#: IDF/Views/Admin.php:268
+msgid "This table shows the users in the forge."
+msgstr "Ce tableau affiche les utilisateurs de la forge."
+
+#: IDF/Views/Admin.php:272
+msgid "login"
+msgstr "identifiant"
+
+#: IDF/Views/Admin.php:275
+msgid "Admin"
+msgstr "Admin"
+
+#: IDF/Views/Admin.php:277
+msgid "Last Login"
+msgstr "Dernière connexion"
+
+#: IDF/Views/Admin.php:284
+msgid "No users were found."
+msgstr "Aucun utilisateur trouvé."
+
+#: IDF/Views/Admin.php:321
+msgid "You do not have the rights to update this user."
+msgstr "Vous n'avez pas les droits pour mettre à jour cet utilisateur."
+
+#: IDF/Views/Admin.php:339
+msgid "The user has been updated."
+msgstr "L'utilisateur a été mis à jour."
+
+#: IDF/Views/Admin.php:372
+#, php-format
+msgid "The user %s has been created."
+msgstr "L'utilisateur %s a été créé."
+
+#: IDF/Views/Admin.php:379
+msgid "Add User"
+msgstr "Ajouter un utilisateur"
+
+#: IDF/Views/Admin.php:395
+msgid "Usher management"
+msgstr "Administration d'usher"
+
+#: IDF/Views/Admin.php:432
+msgid "Usher configuration has been reloaded"
+msgstr "La configuration d'usher a été rechargée"
+
+#: IDF/Views/Admin.php:436
+msgid "Usher has been shut down"
+msgstr "Usher a été éteint"
+
+#: IDF/Views/Admin.php:441
+msgid "Usher has been started up"
+msgstr "Usher a été démarré"
+
+#: IDF/Views/Admin.php:479
+#, php-format
+msgid "The server \"%s\" has been started"
+msgstr "Le serveur «%s» a été démarré"
+
+#: IDF/Views/Admin.php:483
+#, php-format
+msgid "The server \"%s\" has been stopped"
+msgstr "Le serveur «%s» a été arrêté"
+
+#: IDF/Views/Admin.php:488
+#, php-format
+msgid "The server \"%s\" has been killed"
+msgstr "Le serveur «%s» a été tué"
+
+#: IDF/Views/Admin.php:508
+#, php-format
+msgid "Open connections for \"%s\""
+msgstr "Connexions actives pour «%s»"
+
+#: IDF/Views/Admin.php:513
+#, php-format
+msgid "no connections for server \"%s\""
+msgstr "aucune connexion pour le serveur «%s»"
+
+#: IDF/Views/Admin.php:534
+msgid "Yes"
+msgstr "Oui"
+
+#: IDF/Views/Admin.php:534
+msgid "No"
+msgstr "Non"
+
+#: IDF/Views/Download.php:45
+#, php-format
+msgid "%s Downloads"
+msgstr "Téléchargements de %s"
+
+#: IDF/Views/Download.php:51
+msgid "This table shows the files to download."
+msgstr "Ce tableau affiche la liste des fichiers à télécharger."
+
+#: IDF/Views/Download.php:67 IDF/Views/Download.php:349
+msgid "Uploaded"
+msgstr "Mis en ligne"
+
+#: IDF/Views/Download.php:71 IDF/Views/Download.php:353
+msgid "No downloads were found."
+msgstr "Aucun téléchargement n'a été trouvé."
+
+#: IDF/Views/Download.php:94
+#, php-format
+msgid "Download %s"
+msgstr "Télécharger %s"
+
+#: IDF/Views/Download.php:111
+#, php-format
+msgid "The file %2$s has been updated."
+msgstr "Le fichier %2$s a été mis à jour."
+
+#: IDF/Views/Download.php:144
+#, php-format
+msgid "Delete Download %s"
+msgstr "Supprimer le téléchargement %s"
+
+#: IDF/Views/Download.php:177
+msgid "The file has been deleted."
+msgstr "Le fichier a été supprimé."
+
+#: IDF/Views/Download.php:244
+#, php-format
+msgid "The file has been uploaded."
+msgstr "Le fichier a été mis en ligne."
+
+#: IDF/Views/Download.php:271
+msgid "New Downloads from Archive"
+msgstr "Nouveau téléchargements depuis l'archive"
+
+#: IDF/Views/Download.php:278
+msgid "The archive has been uploaded and processed."
+msgstr "L'archive à été envoyée et traitée."
+
+#: IDF/Views/Download.php:331
+#, php-format
+msgid "%1$s Downloads with Label %2$s"
+msgstr "Téléchargements de %1$s avec l'étiquette %2$s"
+
+#: IDF/Views/Download.php:341
+#, php-format
+msgid "This table shows the downloads with label %s."
+msgstr "Ce tableau affiche les téléchargements avec l'étiquette %s."
+
+#: IDF/Views/Issue.php:41
+#, php-format
+msgid "%s Open Issues"
+msgstr "Tickets ouverts de %s"
+
+#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:382 IDF/Views/User.php:75
+msgid "This table shows the open issues."
+msgstr "Ce tableau affiche les tickets ouverts."
+
+#: IDF/Views/Issue.php:61 IDF/Views/Issue.php:220 IDF/Views/Issue.php:301
+#: IDF/Views/Issue.php:390 IDF/Views/Issue.php:542 IDF/Views/Issue.php:765
+#: IDF/Views/Issue.php:824 IDF/Views/Review.php:57 IDF/Views/User.php:81
+msgid "Id"
+msgstr "Id"
+
+#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:223 IDF/Views/Issue.php:305
+#: IDF/Views/Issue.php:393 IDF/Views/Issue.php:545 IDF/Views/Issue.php:768
+#: IDF/Views/Issue.php:827 IDF/Views/Review.php:60 IDF/Views/User.php:85
+msgid "Last Updated"
+msgstr "Dernière mise à jour"
+
+#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:227 IDF/Views/Issue.php:309
+#: IDF/Views/Issue.php:397 IDF/Views/Issue.php:549 IDF/Views/Issue.php:772
+#: IDF/Views/Issue.php:831
+msgid "No issues were found."
+msgstr "Aucun ticket n'a été trouvé."
+
+#: IDF/Views/Issue.php:113
+msgid "Not assigned"
+msgstr "Non assigné"
+
+#: IDF/Views/Issue.php:149
+#, php-format
+msgid "Summary of tracked issues in %s."
+msgstr "Résumé des tickets du projet %s."
+
+#: IDF/Views/Issue.php:194
+#, php-format
+msgid "Watch List: Closed Issues for %s"
+msgstr "Liste de surveillance: tickets fermés pour %s"
+
+#: IDF/Views/Issue.php:195
+#, php-format
+msgid "This table shows the closed issues in your watch list for %s project."
+msgstr ""
+"Ce tableau affiche les tickets fermés dans votre liste de surveillance pour "
+"le projet %s."
+
+#: IDF/Views/Issue.php:200
+#, php-format
+msgid "Watch List: Open Issues for %s"
+msgstr "Liste de surveillance: tickets ouverts pour %s"
+
+#: IDF/Views/Issue.php:201
+#, php-format
+msgid "This table shows the open issues in your watch list for %s project."
+msgstr ""
+"Ce tableau affiche les tickets ouverts dans votre liste de surveillance pour "
+"le projet %s."
+
+#: IDF/Views/Issue.php:277
+msgid "Watch List: Closed Issues"
+msgstr "Liste de surveillance: tickets fermés"
+
+#: IDF/Views/Issue.php:278
+msgid "This table shows the closed issues in your watch list."
+msgstr ""
+"Ce tableau affiche les tickets fermés dans votre liste de surveillance."
+
+#: IDF/Views/Issue.php:283
+msgid "Watch List: Open Issues"
+msgstr "Liste de surveillance: tickets ouverts"
+
+#: IDF/Views/Issue.php:284
+msgid "This table shows the open issues in your watch list."
+msgstr ""
+"Ce tableau affiche les tickets ouverts dans votre liste de surveillance."
+
+#: IDF/Views/Issue.php:303 IDF/Views/User.php:82
+msgid "Project"
+msgstr "Projet"
+
+#: IDF/Views/Issue.php:344
+#, php-format
+msgid "%1$s %2$s Submitted %3$s Issues"
+msgstr "Tickets soumis par %1$s %2$s pour %3$s"
+
+#: IDF/Views/Issue.php:348
+#, php-format
+msgid "%1$s %2$s Closed Submitted %3$s Issues"
+msgstr "Tickets fermés et soumis par %1$s %2$s pour %3$s"
+
+#: IDF/Views/Issue.php:352
+#, php-format
+msgid "%1$s %2$s Closed Working %3$s Issues"
+msgstr "Tickets fermés et assignés à %1$s %2$s pour %3$s"
+
+#: IDF/Views/Issue.php:356
+#, php-format
+msgid "%1$s %2$s Working %3$s Issues"
+msgstr "Tickets assignés à %1$s %2$s pour %3$s"
+
+#: IDF/Views/Issue.php:417
+msgid "Submit a new issue"
+msgstr "Soumettre un nouveau ticket"
+
+#: IDF/Views/Issue.php:433
+#, php-format
+msgid "Issue %2$d has been created."
+msgstr "Ticket %2$d à été créé."
+
+#: IDF/Views/Issue.php:490
+#, php-format
+msgid "Search issues - %s"
+msgstr "Recherche de tickets - %s"
+
+#: IDF/Views/Issue.php:492
+#, php-format
+msgid "Search closed issues - %s"
+msgstr "Recherche de tickets fermés - %s"
+
+#: IDF/Views/Issue.php:539
+msgid "This table shows the found issues."
+msgstr "Ce tableau affiche les tickets trouvés."
+
+#: IDF/Views/Issue.php:604
+#, php-format
+msgid "Issue %2$d: %3$s"
+msgstr "Ticket %2$d : %3$s"
+
+#: IDF/Views/Issue.php:628
+#, php-format
+msgid "Issue %2$d has been updated."
+msgstr "Ticket %2$d à été mis à jour."
+
+#: IDF/Views/Issue.php:718
+#, php-format
+msgid "View %s"
+msgstr "Voir %s"
+
+#: IDF/Views/Issue.php:745
+#, php-format
+msgid "%s Closed Issues"
+msgstr "Tickets fermés de %s"
+
+#: IDF/Views/Issue.php:755
+msgid "This table shows the closed issues."
+msgstr "Ce tableau affiche les tickets fermés."
+
+#: IDF/Views/Issue.php:798
+#, php-format
+msgid "%1$s Issues with Label %2$s"
+msgstr "Tickets de %1$s avec l'étiquette %2$s"
+
+#: IDF/Views/Issue.php:801
+#, php-format
+msgid "%1$s Closed Issues with Label %2$s"
+msgstr "Tickets fermés de %1$s avec l'étiquette %2$s"
+
+#: IDF/Views/Issue.php:814
+#, php-format
+msgid "This table shows the issues with label %s."
+msgstr "Ce tableau affiche les tickets avec l'étiquette %s."
+
+#: IDF/Views/Issue.php:937
+msgid "The issue has been removed from your watch list."
+msgstr "Le ticket a été supprimé de votre liste de surveillance."
+
+#: IDF/Views/Issue.php:940
+msgid "The issue has been added to your watch list."
+msgstr "Le ticket a été ajouté à votre liste de surveillance."
+
+#: IDF/Views/Issue.php:1037
+msgid "On your watch list."
+msgstr "Dans votre liste de surveillance."
+
+#: IDF/Views/Project.php:95
+msgid "Issues and Comments"
+msgstr "Tickets et commentaires"
+
+#: IDF/Views/Project.php:99
+msgid "Documents"
+msgstr "Documents"
+
+#: IDF/Views/Project.php:101
+msgid "Reviews and Patches"
+msgstr "Revues et patchs"
+
+#: IDF/Views/Project.php:180
+msgid "This table shows the project updates."
+msgstr "Ce tableau affiche les mises à jour du projet."
+
+#: IDF/Views/Project.php:191
+msgid "Change"
+msgstr "Modification"
+
+#: IDF/Views/Project.php:195
+msgid "No changes were found."
+msgstr "Aucune modification n'a été trouvée."
+
+#: IDF/Views/Project.php:296
+#, php-format
+msgid "%s Project Summary"
+msgstr "Résumé du projet %s"
+
+#: IDF/Views/Project.php:335
+#, php-format
+msgid "%s Issue Tracking Configuration"
+msgstr "Configuration du gestionnaire de tickets de %s"
+
+#: IDF/Views/Project.php:344
+msgid "The issue tracking configuration has been saved."
+msgstr "La configuration du gestionnaire de tickets a été sauvegardée."
+
+#: IDF/Views/Project.php:381
+#, php-format
+msgid "%s Downloads Configuration"
+msgstr "Configuration des téléchargements de %s"
+
+#: IDF/Views/Project.php:393
+msgid "The downloads configuration has been saved."
+msgstr "La configuration des téléchargements a été sauvegardée."
+
+#: IDF/Views/Project.php:428
+#, php-format
+msgid "%s Documentation Configuration"
+msgstr "Configuration de la documentation de %s"
+
+#: IDF/Views/Project.php:437
+msgid "The documentation configuration has been saved."
+msgstr "La configuration de la documentation a été sauvegardée."
+
+#: IDF/Views/Project.php:471
+#, php-format
+msgid "%s Project Members"
+msgstr "Membres du projet %s"
+
+#: IDF/Views/Project.php:480
+msgid "The project membership has been saved."
+msgstr "Les membres du projet ont été sauvegardés."
+
+#: IDF/Views/Project.php:503
+#, php-format
+msgid "%s Tabs Access Rights"
+msgstr "Droits d'accès aux onglets de %s"
+
+#: IDF/Views/Project.php:517
+msgid ""
+"The project tabs access rights and notification settings have been saved."
+msgstr ""
+"Les paramètres de l'onglet de droit d'accès et de notifications on été "
+"sauvegardés."
+
+#: IDF/Views/Project.php:566
+#, php-format
+msgid "%s Source"
+msgstr "Source de %s"
+
+#: IDF/Views/Project.php:580
+msgid "The project source configuration has been saved."
+msgstr "La configuration de la source du projet a été sauvegardée."
+
+#: IDF/Views/Review.php:41
+#, php-format
+msgid "%s Code Reviews"
+msgstr "Revues de code de %s"
+
+#: IDF/Views/Review.php:48
+msgid "This table shows the latest reviews."
+msgstr "Ce tableau affiche les dernières revues."
+
+#: IDF/Views/Review.php:64
+msgid "No reviews were found."
+msgstr "Aucune revue n'a été trouvée."
+
+#: IDF/Views/Review.php:94
+#, php-format
+msgid "The code review %2$d has been created."
+msgstr "La revue de code %2$d à été crée."
+
+#: IDF/Views/Review.php:140
+#, php-format
+msgid "Review %2$d: %3$s"
+msgstr "Revue %2$d : %3$s"
+
+#: IDF/Views/Review.php:160
+#, php-format
+msgid "Your code review %2$d has been published."
+msgstr "Votre revue de code %2$d à été publiée."
+
+#: IDF/Views/Source.php:40
+#, php-format
+msgid "%s Source Help"
+msgstr "Aide sur la source de %s"
+
+#: IDF/Views/Source.php:58
+#, php-format
+msgid "%s Invalid Revision"
+msgstr "Révision invalide de %s"
+
+#: IDF/Views/Source.php:82
+#, php-format
+msgid "%s Ambiguous Revision"
+msgstr "Révision ambiguë de %s"
+
+#: IDF/Views/Source.php:107
+#, php-format
+msgid "%1$s %2$s Change Log"
+msgstr "Journal des modifications %2$s de %1$s"
+
+#: IDF/Views/Source.php:153 IDF/Views/Source.php:234 IDF/Views/Source.php:362
+#, php-format
+msgid "%1$s %2$s Source Tree"
+msgstr "Arbre des sources %2$s de %1$s"
+
+#: IDF/Views/Source.php:310
+#, php-format
+msgid "%s Commit Details"
+msgstr "Détails d'un commit de %s"
+
+#: IDF/Views/Source.php:311
+#, php-format
+msgid "%1$s Commit Details - %2$s"
+msgstr "%1$s Détails du commit - %2$s"
+
+#: IDF/Views/User.php:59
+msgid "Your Dashboard - Working Issues"
+msgstr "Votre tableau de bord - Tickets assignés"
+
+#: IDF/Views/User.php:62
+msgid "Your Dashboard - Submitted Issues"
+msgstr "Votre tableau de bord - Tickets soumis"
+
+#: IDF/Views/User.php:89
+msgid "No issues are assigned to you, yeah!"
+msgstr "Aucun ticket ne vous est assigné, youpi!"
+
+#: IDF/Views/User.php:89
+msgid "All the issues you submitted are fixed, yeah!"
+msgstr "Tous les tickets que vous avez soumis ont été résolus, youpi!"
+
+#: IDF/Views/User.php:121
+msgid "Your personal information has been updated."
+msgstr "Vos informations personnelles ont été mises à jour."
+
+#: IDF/Views/User.php:133
+msgid "Your Account"
+msgstr "Votre compte"
+
+#: IDF/Views/User.php:157
+msgid "The public key has been deleted."
+msgstr "La clé publique a été supprimée."
+
+#: IDF/Views/User.php:177
+msgid "The address has been deleted."
+msgstr "L'adresse a été supprimée."
+
+#: IDF/Views/User.php:200
+msgid "Confirm The Email Change"
+msgstr "Confirmez le changement d'email"
+
+#: IDF/Views/User.php:232
+#, php-format
+msgid "Your new email address \"%s\" has been validated. Thank you!"
+msgstr "Votre nouvelle adresse email «%s» a été validée. Merci!"
+
+#: IDF/Views/Wiki.php:41
+#, php-format
+msgid "%s Documentation"
+msgstr "Documentation de %s"
+
+#: IDF/Views/Wiki.php:48
+msgid "This table shows the documentation pages."
+msgstr "Ce tableau liste les pages de documentation."
+
+#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:144 IDF/Views/Wiki.php:185
+msgid "Page Title"
+msgstr "Titre de la page"
+
+#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:103 IDF/Views/Wiki.php:146
+#: IDF/Views/Wiki.php:187
+msgid "Updated"
+msgstr "Mise à jour"
+
+#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:191
+msgid "No documentation pages were found."
+msgstr "Aucune page de documentation n'a été trouvée."
+
+#: IDF/Views/Wiki.php:88
+#, php-format
+msgid "%s Documentation Resources"
+msgstr "%s Documentation de la ressource"
+
+#: IDF/Views/Wiki.php:94
+msgid "This table shows the resources that can be used on documentation pages."
+msgstr ""
+"Ce tableau montre quelles ressources peuvent être utilisé dans les pages de "
+"documentations."
+
+#: IDF/Views/Wiki.php:100
+msgid "Resource Title"
+msgstr "Titre de la ressource"
+
+#: IDF/Views/Wiki.php:107
+msgid "No resources were found."
+msgstr "Aucune ressource n'a été trouvée."
+
+#: IDF/Views/Wiki.php:128
+#, php-format
+msgid "Documentation Search - %s"
+msgstr "Recherche dans la documentation - %s"
+
+#: IDF/Views/Wiki.php:139
+msgid "This table shows the pages found."
+msgstr "Ce tableau liste les pages trouvées."
+
+#: IDF/Views/Wiki.php:150
+msgid "No pages were found."
+msgstr "Aucune page n'a été trouvée."
+
+#: IDF/Views/Wiki.php:169
+#, php-format
+msgid "%1$s Documentation Pages with Label %2$s"
+msgstr "Pages de documentation de %1$s avec l'étiquette %2$s"
+
+#: IDF/Views/Wiki.php:179
+#, php-format
+msgid "This table shows the documentation pages with label %s."
+msgstr "Ce tableau liste les pages de documentation avec l'étiquette %s."
+
+#: IDF/Views/Wiki.php:222
+#, php-format
+msgid "The page %2$s has been created."
+msgstr "La page %2$s à été créée."
+
+#: IDF/Views/Wiki.php:265
+#, php-format
+msgid "The resource %2$s has been created."
+msgstr "La ressource %2$s à été créée."
+
+#: IDF/Views/Wiki.php:409 IDF/Views/Wiki.php:448
+msgid "The old revision has been deleted."
+msgstr "L'ancienne révision a été supprimée."
+
+#: IDF/Views/Wiki.php:415 IDF/Views/Wiki.php:454
+#, php-format
+msgid "Delete Old Revision of %s"
+msgstr "Supprimer l'ancienne révision de %s"
+
+#: IDF/Views/Wiki.php:496
+#, php-format
+msgid "The page %2$s has been updated."
+msgstr "La page %2$s à été mise à jour."
+
+#: IDF/Views/Wiki.php:548
+#, php-format
+msgid "The resource %2$s has been updated."
+msgstr "La ressource %2$s à été mise à jour."
+
+#: IDF/Views/Wiki.php:583
+msgid "The documentation page has been deleted."
+msgstr "La page de documentation a été supprimée."
+
+#: IDF/Views/Wiki.php:591
+#, php-format
+msgid "Delete Page %s"
+msgstr "Supprimer la page %s"
+
+#: IDF/Views/Wiki.php:623
+msgid "The documentation resource has been deleted."
+msgstr "La documentation de la ressource à été supprimée."
+
+#: IDF/Views/Wiki.php:631
+#, php-format
+msgid "Delete Resource %s"
+msgstr "Ressource supprimée %s"
+
+#: IDF/Views.php:173 IDF/Views.php:199
+msgid "Confirm Your Account Creation"
+msgstr "Confirmez la création de votre compte"
+
+#: IDF/Views.php:219
+msgid "Welcome! You can now participate in the life of your project of choice."
+msgstr ""
+"Bienvenue! Vous pouvez maintenant prendre part à la vie du projet de votre "
+"choix."
+
+#: IDF/Views.php:245 IDF/Views.php:269 IDF/Views.php:310
+msgid "Password Recovery"
+msgstr "Récupération du mot de passe"
+
+#: IDF/Views.php:289
+msgid ""
+"Welcome back! Next time, you can use your broswer options to remember the "
+"password."
+msgstr ""
+"Bienvenue à nouveau! La prochaine fois, vous pouvez utiliser les options de "
+"votre navigateur pour qu'il se souvienne de votre mot de passe."
+
+#: IDF/Views.php:331
+msgid "Here to Help You!"
+msgstr "Ici pour vous aider!"
+
+#: IDF/Views.php:347
+msgid "InDefero Upload Archive Format"
+msgstr "Format de l'archive envoyé : InDefero"
+
+#: IDF/Views.php:363
+msgid "InDefero API (Application Programming Interface)"
+msgstr "API d'InDefero (interface de programmation applicative)"
+
+#: IDF/Wiki/Page.php:62 IDF/Wiki/Resource.php:64
+msgid "title"
+msgstr "titre"
+
+#: IDF/Wiki/Page.php:63
+msgid ""
+"The title of the page must only contain letters, digits or the dash "
+"character. For example: My-new-Wiki-Page."
+msgstr ""
+"Le titre de la page ne doit contenir que des lettres, des chiffres ou le "
+"tiret (-). Exemple: Ma-nouvelle-page."
+
+#: IDF/Wiki/Page.php:71
+msgid "A one line description of the page content."
+msgstr "Une description d'une ligne du contenu de la page."
+
+#: IDF/Wiki/Page.php:196 IDF/Wiki/PageRevision.php:196
+#, php-format
+msgid "%2$s, %3$s"
+msgstr "%2$s, %3$s"
+
+#: IDF/Wiki/Page.php:198
+#, php-format
+msgid "Creation of page %2$s, by %3$s"
+msgstr "Création de le page %2$s, par %3$s"
+
+#: IDF/Wiki/Page.php:208
+#, php-format
+msgid "%1$s: Documentation page %2$s added - %3$s"
+msgstr "%1$s: Page de documentation %2$s ajouté - %3$s"
+
+#: IDF/Wiki/PageRevision.php:48
+msgid "page"
+msgstr "page"
+
+#: IDF/Wiki/PageRevision.php:66 IDF/Wiki/ResourceRevision.php:64
+msgid "A one line description of the changes."
+msgstr "Une description d'une ligne des modifications effectuées."
+
+#: IDF/Wiki/PageRevision.php:72
+msgid "content"
+msgstr "contenu"
+
+#: IDF/Wiki/PageRevision.php:218 IDF/Wiki/ResourceRevision.php:311
+#, php-format
+msgid "Change of %2$s, by %3$s"
+msgstr "Changement de %2$s, par %3$s"
+
+#: IDF/Wiki/PageRevision.php:231
+#, php-format
+msgid "%1$s: Documentation page %2$s updated - %3$s"
+msgstr "%1$s: Page de documentation %2$s mise à jjour - %3$s"
+
+#: IDF/Wiki/PageRevision.php:293
+#, php-format
+msgid "New Documentation Page %1$s - %2$s (%3$s)"
+msgstr "Nouvelle page de documentation %1$s - %2$s (%3$s)"
+
+#: IDF/Wiki/PageRevision.php:297
+#, php-format
+msgid "Documentation Page Changed %1$s - %2$s (%3$s)"
+msgstr "Page de documentation changée %1$s - %2$s (%3$s)"
+
+#: IDF/Wiki/Resource.php:65
+msgid ""
+"The title of the resource must only contain letters, digits, dots or the "
+"dash character. For example: my-resource.png."
+msgstr ""
+"Le titre de la ressource ne peut seulement contenir que des lettres, des "
+"chiffres, des points, ou des tirets. Par exemple : my-resource.png."
+
+#: IDF/Wiki/Resource.php:72
+msgid "MIME media type"
+msgstr "Type média MIME"
+
+#: IDF/Wiki/Resource.php:73
+msgid "The MIME media type of the resource."
+msgstr "Le type média MIME de la ressource."
+
+#: IDF/Wiki/Resource.php:81
+msgid "A one line description of the resource."
+msgstr "Une description en une ligne de la ressource."
+
+#: IDF/Wiki/Resource.php:176 IDF/Wiki/ResourceRevision.php:308
+#, php-format
+msgid "%2$s, %3$s"
+msgstr "%2$s, %3$s"
+
+#: IDF/Wiki/Resource.php:178
+#, php-format
+msgid "Creation of resource %2$s, by %3$s"
+msgstr "Création de la ressource %2$s, par %3$s"
+
+#: IDF/Wiki/Resource.php:188
+#, php-format
+msgid "%1$s: Documentation resource %2$s added - %3$s"
+msgstr "%1$s: Documentation de la ressource %2$s ajoutée - %3$s"
+
+#: IDF/Wiki/ResourceRevision.php:47
+msgid "resource"
+msgstr "Ressource"
+
+#: IDF/Wiki/ResourceRevision.php:78
+msgid "File extension"
+msgstr "Extension du fichier"
+
+#: IDF/Wiki/ResourceRevision.php:79
+msgid "The file extension of the uploaded resource."
+msgstr "L'extension du fichier de la ressource envoyée."
+
+#: IDF/Wiki/ResourceRevision.php:94
+msgid "page usage"
+msgstr "Utilisation de la page"
+
+#: IDF/Wiki/ResourceRevision.php:116
+#, php-format
+msgid "id %d: %s"
+msgstr "ID %d: %s"
+
+#: IDF/Wiki/ResourceRevision.php:263
+#, php-format
+msgid "Download (%s)"
+msgstr "Téléchargements (%s)"
+
+#: IDF/Wiki/ResourceRevision.php:270
+msgid "View resource details"
+msgstr "Voir les détails de la ressource"
+
+#: IDF/Wiki/ResourceRevision.php:324
+#, php-format
+msgid "%1$s: Documentation resource %2$s updated - %3$s"
+msgstr "%1$s: Documentation de la ressource %2$s mis à jour - %3$s"
diff --git a/indefero/src/IDF/locale/idf.pot b/indefero/src/IDF/locale/idf.pot
new file mode 100644
index 0000000..a1ce29b
--- /dev/null
+++ b/indefero/src/IDF/locale/idf.pot
@@ -0,0 +1,5385 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2012-03-22 01:16+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+
+#: IDF/Commit.php:55 IDF/Conf.php:54 IDF/Issue.php:52
+#: IDF/ProjectActivity.php:49 IDF/Review.php:65 IDF/Search/Occ.php:69
+#: IDF/Tag.php:52 IDF/Upload.php:49 IDF/Wiki/Page.php:54
+#: IDF/Wiki/Resource.php:56
+msgid "project"
+msgstr ""
+
+#: IDF/Commit.php:63 IDF/Issue.php:67 IDF/IssueComment.php:65
+#: IDF/IssueFile.php:57 IDF/IssueRelation.php:69 IDF/Review/Comment.php:69
+#: IDF/Review.php:80 IDF/Upload.php:91 IDF/Wiki/Page.php:78
+#: IDF/Wiki/PageRevision.php:79 IDF/Wiki/Resource.php:88
+#: IDF/Wiki/ResourceRevision.php:86
+msgid "submitter"
+msgstr ""
+
+#: IDF/Commit.php:87 IDF/Issue.php:60 IDF/Review/Patch.php:60
+#: IDF/Review.php:73 IDF/Upload.php:57 IDF/Wiki/Page.php:70
+#: IDF/Wiki/PageRevision.php:65 IDF/Wiki/Resource.php:80
+#: IDF/Wiki/ResourceRevision.php:63
+msgid "summary"
+msgstr ""
+
+#: IDF/Commit.php:93
+msgid "changelog"
+msgstr ""
+
+#: IDF/Commit.php:100 IDF/Issue.php:105 IDF/IssueComment.php:79
+#: IDF/IssueFile.php:96 IDF/IssueRelation.php:75 IDF/Review/Comment.php:90
+#: IDF/Review/FileComment.php:75 IDF/Review/Patch.php:87 IDF/Review.php:108
+#: IDF/Upload.php:112 IDF/Wiki/Page.php:100 IDF/Wiki/PageRevision.php:92
+#: IDF/Wiki/Resource.php:95 IDF/Wiki/ResourceRevision.php:101
+msgid "creation date"
+msgstr ""
+
+#: IDF/Commit.php:238
+#, php-format
+msgid "Commit %1$s, by %2$s"
+msgstr ""
+
+#: IDF/Commit.php:337
+#, php-format
+msgid "New Commit %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Conf.php:61 IDF/Gconf.php:73
+msgid "key"
+msgstr ""
+
+#: IDF/Conf.php:67 IDF/Gconf.php:79 IDF/ProjectActivity.php:62
+msgid "value"
+msgstr ""
+
+#: IDF/Diff.php:460
+msgid "Old"
+msgstr ""
+
+#: IDF/Diff.php:460
+msgid "New"
+msgstr ""
+
+#: IDF/EmailAddress.php:49 IDF/Key.php:49
+msgid "user"
+msgstr ""
+
+#: IDF/EmailAddress.php:55
+msgid "email"
+msgstr ""
+
+#: IDF/Form/Admin/ForgeConf.php:34
+msgid "Custom forge page enabled"
+msgstr ""
+
+#: IDF/Form/Admin/ForgeConf.php:39 IDF/Form/WikiPageCreate.php:80
+#: IDF/Form/WikiPageUpdate.php:72
+msgid "Content"
+msgstr ""
+
+#: IDF/Form/Admin/LabelConf.php:40
+msgid "Predefined project labels"
+msgstr ""
+
+#: IDF/Form/Admin/LabelConf.php:55
+#, php-format
+msgid ""
+"The label \"%s\" is invalid: A label must only consist of alphanumeric "
+"characters and dashes, and can optionally contain a \":\" with a group "
+"prefix."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:600
+msgid "git"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:601
+msgid "Subversion"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:602
+msgid "mercurial"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:603
+msgid "monotone"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44
+#: IDF/Form/ProjectConf.php:39 IDF/Views/Admin.php:86 IDF/Views/Admin.php:273
+msgid "Name"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:101
+#: IDF/gettexttemplates/idf/base-full.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html~.php:5
+#: IDF/gettexttemplates/idf/base.html.php:5
+#: IDF/gettexttemplates/idf/base.html~.php:5
+#: IDF/gettexttemplates/idf/main-menu.html.php:9
+#: IDF/gettexttemplates/idf/project-list.html.php:5
+#: IDF/gettexttemplates/idf/project-list.html.php:7
+msgid "Private project"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:62
+msgid "Shortname"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:64
+msgid ""
+"It must be unique for each project and composed only of letters, digits and "
+"dash (-) like \"my-project\"."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50
+msgid "Short description"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:70 IDF/Form/Admin/ProjectUpdate.php:51
+#: IDF/Project.php:79
+msgid "A one line description of the project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:77 IDF/Form/Admin/ProjectUpdate.php:58
+#: IDF/Form/ProjectConf.php:56
+msgid "External URL"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:84
+msgid "Repository type"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:92
+msgid "Remote Subversion repository"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:99 IDF/Form/SourceConf.php:40
+msgid "Repository username"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:106 IDF/Form/SourceConf.php:47
+msgid "Repository password"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:113 IDF/Form/Admin/ProjectUpdate.php:66
+msgid "Master branch"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:116 IDF/Form/Admin/ProjectUpdate.php:69
+msgid ""
+"This should be a world-wide unique identifier for your project. A reverse "
+"DNS notation like \"com.my-domain.my-project\" is a good idea."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:121 IDF/Form/Admin/ProjectUpdate.php:95
+#: IDF/Form/MembersConf.php:46 IDF/Form/TabsConf.php:53
+#: IDF/Form/TabsConf.php:72
+msgid "Project owners"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:130 IDF/Form/Admin/ProjectUpdate.php:103
+#: IDF/Form/MembersConf.php:54 IDF/Form/TabsConf.php:52
+#: IDF/Form/TabsConf.php:78
+msgid "Project members"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:140 IDF/Form/Admin/ProjectUpdate.php:85
+#: IDF/Form/IssueCreate.php:168 IDF/Form/IssueUpdate.php:164
+#: IDF/Form/ProjectConf.php:73 IDF/Form/UpdateUpload.php:71
+#: IDF/Form/Upload.php:70 IDF/Form/WikiPageCreate.php:93
+#: IDF/Form/WikiPageUpdate.php:104
+msgid "Labels"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:155
+msgid "Project template"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:157
+msgid ""
+"Use the given project to initialize the new project. Access rights and "
+"general configuration will be taken from the template project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:204
+msgid ""
+"Only a remote repository available through HTTP or HTTPS is allowed. For "
+"example \"http://somewhere.com/svn/trunk\"."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:220 IDF/Form/Admin/ProjectUpdate.php:117
+msgid ""
+"The master branch is empty or contains illegal characters, please use only "
+"letters, digits, dashes and dots as separators."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:230 IDF/Form/Admin/ProjectUpdate.php:128
+msgid "This master branch is already used. Please select another one."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:241
+msgid ""
+"This shortname contains illegal characters, please use only letters, digits "
+"and dash (-)."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:244
+msgid "The shortname cannot start with the dash (-) character."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:247
+msgid "The shortname cannot end with the dash (-) character."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:252
+msgid "This shortname is already used. Please select another one."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:303 IDF/Form/Admin/ProjectDelete.php:78
+#: IDF/Form/Admin/ProjectUpdate.php:153 IDF/Form/Admin/UserCreate.php:106
+#: IDF/Form/Admin/UserUpdate.php:191 IDF/Form/IssueCreate.php:338
+#: IDF/Form/IssueUpdate.php:329 IDF/Form/MembersConf.php:64
+#: IDF/Form/Password.php:76 IDF/Form/Register.php:112
+#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:143
+#: IDF/Form/TabsConf.php:122 IDF/Form/UpdateUpload.php:126
+#: IDF/Form/Upload.php:149 IDF/Form/UploadArchive.php:137
+#: IDF/Form/UserAccount.php:216 IDF/Form/UserChangeEmail.php:80
+#: IDF/Form/WikiPageCreate.php:167 IDF/Form/WikiPageDelete.php:59
+#: IDF/Form/WikiPageUpdate.php:178 IDF/Form/WikiResourceCreate.php:123
+#: IDF/Form/WikiResourceDelete.php:59 IDF/Form/WikiResourceUpdate.php:124
+msgid "Cannot save the model from an invalid form."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:341
+msgid ""
+"Click on the Project Management tab to set the description of your project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:426
+msgid "This project is not available."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:41
+msgid "Confirmation code"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:46
+msgid "I have made a backup of all the important data of this project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:55
+msgid ""
+"The confirmation code does not match. Please provide a valid confirmation "
+"code to delete the project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:63
+msgid "Sorry, you really need to backup your data before deletion."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38
+#: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40
+msgid "First name"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47
+#: IDF/Form/RegisterConfirmation.php:59 IDF/Form/UserAccount.php:49
+msgid "Last name"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:56
+msgid "Login"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:60
+msgid ""
+"The login must be between 3 and 15 characters long and contains only letters "
+"and digits."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57
+msgid "Email"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:71
+msgid ""
+"Double check the email address as the password is sent directly to the user."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67
+#: IDF/Form/UserAccount.php:66
+msgid "Language"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161
+msgid "Add a public key"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:92
+msgid ""
+"Paste a SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:157
+msgid "Your details to access your forge."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:429
+#: IDF/Form/UserAccount.php:438
+#, php-format
+msgid "The email \"%s\" is already used."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72
+#, php-format
+msgid "The login \"%s\" can only contain letters and digits."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77
+#, php-format
+msgid "The login \"%s\" is already used, please find another one."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:78
+msgid "Password"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid "Leave blank if you do not want to change the password."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid ""
+"The password must be hard for other people to guess, but easy for the user "
+"to remember."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:89
+msgid "Confirm password"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/IssueCreate.php:66
+#: IDF/Form/ProjectConf.php:48 IDF/Form/ReviewCreate.php:54
+#: IDF/Form/UpdateUpload.php:51 IDF/Form/Upload.php:49
+#: IDF/Form/UserAccount.php:101 IDF/Form/WikiPageCreate.php:70
+#: IDF/Form/WikiPageUpdate.php:60 IDF/Form/WikiResourceCreate.php:54
+#: IDF/Form/WikiResourceUpdate.php:46 IDF/Views/Wiki.php:102
+msgid "Description"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:110
+msgid "Twitter username"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:120
+msgid "Public email address"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:130
+msgid "Website URL"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:140
+msgid "Upload custom avatar"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:147
+msgid ""
+"An image file with a width and height not larger than 60 pixels (bigger "
+"images are scaled down)."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:151 IDF/Form/UserAccount.php:152
+msgid "Remove custom avatar"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:156
+msgid "Tick this to delete the custom avatar."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:161 IDF/Views/Admin.php:274
+msgid "Staff"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:164
+msgid "If you give staff rights to a user, you really need to trust him."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:276
+msgid "Active"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:176
+msgid ""
+"If the user is not getting the confirmation email or is abusing the system, "
+"you can directly enable or disable their account here."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:274
+msgid "--- is not a valid first name."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:290
+msgid ""
+"A user with this email already exists, please provide another email address."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/UserAccount.php:398
+msgid "For security reason, you cannot upload a file with this extension."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:461
+msgid "The passwords do not match. Please give them again."
+msgstr ""
+
+#: IDF/Form/Field/EmailList.php:45
+msgid "Please enter one or more valid email addresses."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:57 IDF/Form/IssueUpdate.php:46
+#: IDF/Form/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:73
+#: IDF/Form/UpdateUpload.php:42 IDF/Form/Upload.php:40
+#: IDF/gettexttemplates/idf/issues/base.html.php:3 IDF/Views/Download.php:65
+#: IDF/Views/Download.php:347 IDF/Views/Issue.php:62 IDF/Views/Issue.php:221
+#: IDF/Views/Issue.php:302 IDF/Views/Issue.php:391 IDF/Views/Issue.php:543
+#: IDF/Views/Issue.php:766 IDF/Views/Issue.php:825 IDF/Views/Review.php:58
+#: IDF/Views/User.php:83 IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:145
+#: IDF/Views/Wiki.php:186
+msgid "Summary"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:76 IDF/Form/IssueUpdate.php:66
+#: IDF/Form/ReviewCreate.php:83
+msgid "The \"upload_issue_path\" configuration variable was not set."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:86 IDF/Form/IssueUpdate.php:76
+msgid "Attach a file"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:99 IDF/Form/IssueUpdate.php:89
+#: IDF/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:83
+#: IDF/Views/Issue.php:63 IDF/Views/Issue.php:222 IDF/Views/Issue.php:304
+#: IDF/Views/Issue.php:392 IDF/Views/Issue.php:544 IDF/Views/Issue.php:767
+#: IDF/Views/Issue.php:826 IDF/Views/Review.php:59 IDF/Views/User.php:84
+msgid "Status"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:108 IDF/Form/IssueUpdate.php:99
+msgid "Owner"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:118 IDF/Form/IssueUpdate.php:112
+#: IDF/Form/IssueUpdate.php:129
+msgid "This issue"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:210
+msgid "You cannot add a label with the \"Status\" prefix to an issue."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:211 IDF/Form/IssueCreate.php:218
+#: IDF/Form/UpdateUpload.php:110 IDF/Form/Upload.php:121
+#: IDF/Form/WikiPageCreate.php:151 IDF/Form/WikiPageUpdate.php:162
+msgid "You provided an invalid label."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:217 IDF/Form/UpdateUpload.php:109
+#, php-format
+msgid "You cannot provide more than one label from the %s class to an issue."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:228 IDF/Form/IssueUpdate.php:194
+msgid "You need to provide a description of the issue."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:251 IDF/Form/ReviewCreate.php:159
+msgid "You provided an invalid status."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:272
+msgid "You provided an invalid relation type."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:294
+#, php-format
+msgid "The value \"%s\" is not a valid issue id."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:300
+#, php-format
+msgid "The issue \"%s\" does not exist."
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:86
+msgid "is related to"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:87
+msgid "blocks"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:88
+msgid "is blocked by"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:89
+msgid "duplicates"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:90
+msgid "is duplicated by"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:97
+msgid ""
+"Define an issue template to hint the reporter to provide certain information"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:106
+msgid "Open issue status values"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:114
+msgid "Closed issue status values"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:123
+msgid "Predefined issue labels"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:125
+msgid ""
+"The first \"Type:\" and \"Priority:\" entries found in this list are "
+"automatically chosen as defaults for new issues."
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:133
+msgid "Each issue may have at most one label with each of these classes."
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:140
+msgid "Issue relations"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:142
+msgid ""
+"You can define bidirectional relations like \"is related to\" or \"blocks, "
+"is blocked by\". For standard relations pre-configured translations exist, "
+"new relations should however be defined in a language that is understood by "
+"all project members."
+msgstr ""
+
+#: IDF/Form/IssueUpdate.php:56 IDF/Form/ReviewFileComment.php:45
+#: IDF/Form/WikiPageUpdate.php:82 IDF/Form/WikiResourceUpdate.php:66
+msgid "Comment"
+msgstr ""
+
+#: IDF/Form/IssueUpdate.php:316
+msgid "No changes were entered."
+msgstr ""
+
+#: IDF/Form/MembersConf.php:104
+#, php-format
+msgid "The following login is invalid: %s."
+msgid_plural "The following logins are invalid: %s."
+msgstr[0] ""
+msgstr[1] ""
+
+#: IDF/Form/Password.php:34
+msgid "Your login or email"
+msgstr ""
+
+#: IDF/Form/Password.php:35
+msgid "Provide either your login or your email to recover your password."
+msgstr ""
+
+#: IDF/Form/Password.php:49 IDF/Form/Password.php:64
+msgid ""
+"Sorry, we cannot find a user with this email address or login. Feel free to "
+"try again."
+msgstr ""
+
+#: IDF/Form/Password.php:100
+msgid "Password Recovery - InDefero"
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:36 IDF/Form/PasswordReset.php:39
+#: IDF/Form/UserChangeEmail.php:36
+msgid "Your verification key"
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:50 IDF/Form/PasswordReset.php:89
+msgid ""
+"We are sorry but this validation key is not valid. Maybe you should directly "
+"copy/paste it from your validation email."
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:61 IDF/Form/PasswordReset.php:100
+msgid ""
+"Sorry, but this verification key has expired, please restart the password "
+"recovery sequence. For security reasons, the verification key is only valid "
+"24h."
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:76 IDF/Form/PasswordReset.php:108
+#: IDF/Form/RegisterConfirmation.php:137 IDF/Form/RegisterInputKey.php:72
+msgid "Cannot save an invalid form."
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:45 IDF/Form/RegisterConfirmation.php:69
+#: IDF/Form/UserAccount.php:77
+msgid "Your password"
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80
+msgid ""
+"Your password must be hard for other people to find it, but easy for you to "
+"remember."
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:56 IDF/Form/RegisterConfirmation.php:80
+#: IDF/Form/UserAccount.php:89
+msgid "Confirm your password"
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:74 IDF/Form/RegisterConfirmation.php:122
+msgid "The two passwords must be the same."
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:77
+msgid ""
+"This account is not active. Please contact the forge administrator to "
+"activate it."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:43
+msgid "Short Description"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:85
+msgid "The \"upload_path\" configuration variable was not set."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:90
+msgid "Update the logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:92
+msgid "The logo must be a picture with a size of 32 by 32."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:103
+msgid "Remove the current logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:139
+msgid "Could not determine the size of the uploaded picture."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:143
+msgid "The picture must have a size of 32 by 32."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:164
+msgid "The entered URL is invalid. Only http and https URLs are allowed."
+msgstr ""
+
+#: IDF/Form/Register.php:41
+msgid "Your login"
+msgstr ""
+
+#: IDF/Form/Register.php:45
+msgid ""
+"The login must be between 3 and 15 characters long and contain only letters "
+"and digits."
+msgstr ""
+
+#: IDF/Form/Register.php:53 IDF/Form/UserAccount.php:59
+msgid "Your email"
+msgstr ""
+
+#: IDF/Form/Register.php:55
+msgid "We will never send you any unsolicited emails. We hate spam too!"
+msgstr ""
+
+#: IDF/Form/Register.php:60
+msgid "I agree to the terms and conditions."
+msgstr ""
+
+#: IDF/Form/Register.php:88
+msgid ""
+"We know, this is boring, but you need to agree with the terms and conditions."
+msgstr ""
+
+#: IDF/Form/Register.php:97
+#, php-format
+msgid ""
+"The email \"%1$s\" is already used. If you need to, you can recover your password."
+msgstr ""
+
+#: IDF/Form/Register.php:148
+msgid "Confirm the creation of your account."
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:40 IDF/Form/RegisterInputKey.php:36
+msgid "Your confirmation key"
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:72
+msgid ""
+"Your password must be hard for other people to guess, but easy for you to "
+"remember."
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:99 IDF/Form/RegisterInputKey.php:50
+msgid ""
+"We are sorry but this confirmation key is not valid. Maybe you should "
+"directly copy/paste it from your confirmation email."
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:110
+#, php-format
+msgid ""
+"This account has already been confirmed. Maybe should you try to recover your password."
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:74
+#: IDF/gettexttemplates/idf/source/base.html.php:5
+#: IDF/gettexttemplates/idf/source/changelog.html.php:7
+msgid "Commit"
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:92
+msgid "Patch"
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:119
+msgid "We were not able to parse your patch. Please provide a valid patch."
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:128
+msgid "You provided an invalid commit."
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:202
+msgid "Initial patch to be reviewed."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:56
+msgid "General comment"
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:113
+msgid ""
+"You need to provide your general comment about the proposal, or comments on "
+"at least one file."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:124
+msgid "The status have been updated."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:130
+msgid "This field is required."
+msgstr ""
+
+#: IDF/Form/SourceConf.php:54 IDF/Form/UploadConf.php:70
+msgid "Webhook URL"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:38 IDF/gettexttemplates/idf/admin/base.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html.php:8
+#: IDF/gettexttemplates/idf/base-full.html~.php:7
+#: IDF/gettexttemplates/idf/base.html.php:8
+#: IDF/gettexttemplates/idf/base.html~.php:7
+#: IDF/gettexttemplates/idf/downloads/base.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:14
+#: IDF/Views/Project.php:97
+msgid "Downloads"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.php:12
+#: IDF/gettexttemplates/idf/base-full.html~.php:11
+#: IDF/gettexttemplates/idf/base.html.php:12
+#: IDF/gettexttemplates/idf/base.html~.php:11
+msgid "Code Review"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:40 IDF/gettexttemplates/idf/admin/base.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html~.php:8
+#: IDF/gettexttemplates/idf/base.html.php:9
+#: IDF/gettexttemplates/idf/base.html~.php:8
+msgid "Documentation"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:41 IDF/gettexttemplates/idf/admin/base.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html.php:11
+#: IDF/gettexttemplates/idf/base-full.html~.php:10
+#: IDF/gettexttemplates/idf/base.html.php:11
+#: IDF/gettexttemplates/idf/base.html~.php:10
+msgid "Source"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.php:10
+#: IDF/gettexttemplates/idf/base-full.html~.php:9
+#: IDF/gettexttemplates/idf/base.html.php:10
+#: IDF/gettexttemplates/idf/base.html~.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:17
+msgid "Issues"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:50
+msgid "Open to all"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:51
+msgid "Signed in users"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:54
+msgid "Closed"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:84
+msgid "Others"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:107
+msgid "Extra authorized users"
+msgstr ""
+
+#: IDF/Form/Upload.php:59 IDF/Form/WikiResourceCreate.php:65
+#: IDF/Form/WikiResourceUpdate.php:56
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7
+#: IDF/Views/Download.php:64 IDF/Views/Download.php:346
+msgid "File"
+msgstr ""
+
+#: IDF/Form/Upload.php:87 IDF/Form/WikiResourceCreate.php:96
+#: IDF/Form/WikiResourceUpdate.php:83
+msgid "For security reasons, you cannot upload a file with this extension."
+msgstr ""
+
+#: IDF/Form/Upload.php:120
+#, php-format
+msgid "You cannot provide more than one label from the %s class to a download."
+msgstr ""
+
+#: IDF/Form/UploadArchive.php:41
+msgid "Archive file"
+msgstr ""
+
+#: IDF/Form/UploadArchive.php:67
+#, php-format
+msgid ""
+"For security reasons, you cannot upload a file (%s) with this extension."
+msgstr ""
+
+#: IDF/Form/UploadArchive.php:98
+#, php-format
+msgid ""
+"You cannot provide more than label from the %1$s class to a download (%2$s)."
+msgstr ""
+
+#: IDF/Form/UploadArchive.php:109
+#, php-format
+msgid ""
+"A file with the name \"%s\" has already been uploaded and is not marked to "
+"be replaced."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:41
+msgid "The archive does not exist."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:48
+#, php-format
+msgid "The archive could not be read (code %d)."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:53
+msgid "The archive does not contain a manifest.xml."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:61
+#, php-format
+msgid "The archive's manifest is invalid: %s"
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:77
+#, php-format
+msgid "The entry %d in the manifest is missing a file name."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:82
+#, php-format
+msgid "The entry %d in the manifest is missing a summary."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:86
+msgid "The manifest must not reference itself."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:91
+#, php-format
+msgid "The entry %s in the manifest does not exist in the archive."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:96
+#, php-format
+msgid "The entry %s in the manifest is referenced more than once."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:108
+#, php-format
+msgid "The entry %s in the manifest has more than the six allowed labels set."
+msgstr ""
+
+#: IDF/Form/UploadConf.php:53
+msgid "Predefined download labels"
+msgstr ""
+
+#: IDF/Form/UploadConf.php:62
+msgid "Each download may have at most one label with each of these classes"
+msgstr ""
+
+#: IDF/Form/UserAccount.php:61
+msgid ""
+"If you change your email address, an email will be sent to the new address "
+"to confirm it."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:80
+msgid "Leave blank if you do not want to change your password."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:166
+msgid ""
+"Paste an SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+
+#: IDF/Form/UserAccount.php:171
+msgid "Add a secondary email address"
+msgstr ""
+
+#: IDF/Form/UserAccount.php:173
+msgid "You will get an email to confirm that you own the address you specify."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:200
+msgid "Confirm your new email address."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:203
+#, php-format
+msgid ""
+"A validation email has been sent to \"%s\" to validate the email address "
+"change."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:341
+msgid ""
+"Please check the key as it does not appear to be a valid SSH public key."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:363
+msgid ""
+"Please check the key as it does not appear to be a valid monotone public key."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:371
+msgid "Public key looks like neither an SSH nor monotone public key."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:383
+msgid "You already have uploaded this key."
+msgstr ""
+
+#: IDF/Form/UserChangeEmail.php:63
+msgid ""
+"The validation key is not valid. Please copy/paste it from your confirmation "
+"email."
+msgstr ""
+
+#: IDF/Form/WikiConf.php:49
+msgid "Predefined documentation page labels"
+msgstr ""
+
+#: IDF/Form/WikiConf.php:58
+msgid ""
+"Each documentation page may have at most one label with each of these classes"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:38
+msgid ""
+"# Introduction\n"
+"\n"
+"Add your content here.\n"
+"\n"
+"\n"
+"# Details\n"
+"\n"
+"Add your content here. Format your content with:\n"
+"\n"
+"* Text in **bold** or *italic*.\n"
+"* Headings, paragraphs, and lists.\n"
+"* Links to other [[WikiPage]].\n"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:57
+msgid "PageName"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:60 IDF/Form/WikiPageUpdate.php:50
+msgid "Page title"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:66 IDF/Form/WikiPageUpdate.php:56
+msgid ""
+"The page name must contains only letters, digits and the dash (-) character."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:71 IDF/Form/WikiPageUpdate.php:61
+msgid "This one line description is displayed in the list of pages."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:108 IDF/Form/WikiPageUpdate.php:119
+#: IDF/Form/WikiResourceCreate.php:78
+msgid "The title contains invalid characters."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:114 IDF/Form/WikiPageUpdate.php:125
+msgid "A page with this title already exists."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:150 IDF/Form/WikiPageUpdate.php:161
+#, php-format
+msgid "You cannot provide more than one label from the %s class to a page."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:200
+msgid "Initial page creation"
+msgstr ""
+
+#: IDF/Form/WikiPageDelete.php:39
+msgid "Yes, I understand that the page and all its revisions will be deleted."
+msgstr ""
+
+#: IDF/Form/WikiPageDelete.php:50 IDF/Form/WikiResourceDelete.php:50
+msgid "You need to confirm the deletion."
+msgstr ""
+
+#: IDF/Form/WikiPageUpdate.php:83 IDF/Form/WikiResourceUpdate.php:67
+msgid "One line to describe the changes you made."
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:40
+msgid "ResourceName"
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:44
+msgid "Resource title"
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:50
+msgid ""
+"The resource name must contains only letters, digits and the dash (-) "
+"character."
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:55 IDF/Form/WikiResourceUpdate.php:47
+msgid "This one line description is displayed in the list of resources."
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:84
+msgid "A resource with this title already exists."
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:142
+msgid "Initial resource creation"
+msgstr ""
+
+#: IDF/Form/WikiResourceDelete.php:39
+msgid ""
+"Yes, I understand that the resource and all its revisions will be deleted."
+msgstr ""
+
+#: IDF/Form/WikiResourceUpdate.php:89
+#, php-format
+msgid ""
+"The mime type of the uploaded file \"%1$s\" does not match the mime type of "
+"this resource \"%2$s\""
+msgstr ""
+
+#: IDF/Form/WikiResourceUpdate.php:97
+msgid "The current version of the resource and the uploaded file are equal."
+msgstr ""
+
+#: IDF/Gconf.php:60 IDF/Search/Occ.php:56
+msgid "model class"
+msgstr ""
+
+#: IDF/Gconf.php:66 IDF/Search/Occ.php:62
+msgid "model id"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:3
+msgid "Project Summary"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:6
+msgid "Issue Tracking"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:8
+msgid "Project Members"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:9
+msgid "Tabs Access and Notifications"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/downloads.html.php:3
+#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3
+#: IDF/gettexttemplates/idf/admin/wiki.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/labels.html.php:3
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
List one status value per line in desired sort-order.
\n"
+"
Optionally, use an equals-sign to document the meaning of each status "
+"value.
The webhook URL setting specifies an URL to which a HTTP PUT"
+"strong>\n"
+"request is sent after a new download has been added or to which a HTTP "
+"POST\n"
+"request is sent after an existing download has been updated.\n"
+"If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/upload
\n"
+"
http://domain.com/upload?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each download:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%d - download id
\n"
+"
\n"
+"\n"
+"
For example, updating download 123 of project 'my-project' with\n"
+"web hook URL http://mydomain.com/%p/%d would send a POST "
+"request to\n"
+"http://mydomain.com/my-project/123.
A project owner may make any change to this project, including removing "
+"other project owners. You need to be carefull when you give owner rights."
+"p>\n"
+"
A project member will not have access to the administration area but will "
+"have more options available in the use of the project.
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:3
+msgid "You can find here the current repository configuration of your project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:4
+msgid ""
+"
The webhook URL setting specifies an URL to which a HTTP \n"
+"%%hook_request_method%% request is sent after each "
+"repository\n"
+"commit. If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/commit
\n"
+"
http://domain.com/commit?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each commit:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%r - revision number
\n"
+"
\n"
+"\n"
+"
For example, committing revision 123 to project 'my-project' with\n"
+"post-commit URL http://mydomain.com/%p/%r would send a request "
+"to\n"
+"http://mydomain.com/my-project/123.
The description of the project can be improved using the Markdown syntax.
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:7
+msgid ""
+"The form contains some errors. Please correct them to update the summary."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:8
+msgid "Current logo"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html~.php:4
+#: IDF/gettexttemplates/idf/base.html.php:4
+#: IDF/gettexttemplates/idf/base.html~.php:4
+#: IDF/gettexttemplates/idf/main-menu.html.php:8
+#: IDF/gettexttemplates/idf/project-list.html.php:4
+msgid "Project logo"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:10
+msgid "Your project does not have a logo configured yet."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:3
+msgid ""
+"This section allows you to configure project tabs access rights and "
+"notifications."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:4
+msgid ""
+"Tab access controls whether a single user can navigate into a particular "
+"section of your project via the main menu or automatically generated object "
+"links."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:5
+msgid ""
+"If you mark a project as private, only the project members and "
+"administrators, together with the extra authorized users you provide will "
+"have access to the project as a whole. You will still be able to define "
+"further access rights for the different tabs but the \"Open to all\" and "
+"\"Signed in users\" will default to authorized users only."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:6
+msgid ""
+"For the extra authorized user list, specify each person by its login. Each "
+"person must have already registered with the given login. Separate the "
+"logins with commas and/or new lines."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:7
+msgid ""
+"Only project members and admins have write access to the source. If you "
+"restrict the access to the source, anonymous access is not provided and the "
+"users must authenticate themselves with their password or SSH key."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
+#, php-format
+msgid ""
+"Here you can configure who should be notified about changes in a particular "
+"section. You can also configure additional addresses, like the one of a "
+"mailing list, that should be notified. (Keep in mind that you might have to "
+"register the sender address %%from_email%% to let the "
+"mailing list actually accept notification emails.) Multiple email addresses "
+"must be separated through commas (',')."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:9
+msgid ""
+"The form contains some errors. Please correct them to update the access "
+"rights."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
+msgid "Access Rights"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:11
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
+msgid "Notifications"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:3
+#: IDF/gettexttemplates/idf/base-full.html~.php:3
+#: IDF/gettexttemplates/idf/base.html.php:3
+#: IDF/gettexttemplates/idf/base.html~.php:3
+#, php-format
+msgid ""
+"Sign in or create your account to create issues or "
+"add comments"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:6
+#: IDF/gettexttemplates/idf/base.html.php:6
+#: IDF/gettexttemplates/idf/project-list.html.php:6
+msgid "External link to project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html~.php:6
+#: IDF/gettexttemplates/idf/base.html.php:7
+#: IDF/gettexttemplates/idf/base.html~.php:6
+msgid "Project Home"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:13
+#: IDF/gettexttemplates/idf/base-full.html~.php:12
+#: IDF/gettexttemplates/idf/base.html.php:13
+#: IDF/gettexttemplates/idf/base.html~.php:12
+msgid "Project Management"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:4
+#: IDF/gettexttemplates/idf/downloads/index.html.php:4
+#: IDF/Views/Download.php:235
+msgid "New Download"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:5
+msgid "Upload Archive"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:3
+msgid ""
+"Each file must have a distinct name and file contents\n"
+"cannot be changed, so be sure to include release numbers in each file\n"
+"name."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:6
+#, php-format
+msgid ""
+"You can use the Markdown syntax for the description."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:7
+msgid "The form contains some errors. Please correct them to submit the file."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:8
+msgid "Submit File"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:9
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:8
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:21
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:14
+#: IDF/gettexttemplates/idf/issues/create.html.php:14
+#: IDF/gettexttemplates/idf/issues/view.html.php:27
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:7
+#: IDF/gettexttemplates/idf/register/index.html.php:8
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:5
+#: IDF/gettexttemplates/idf/review/create.html.php:12
+#: IDF/gettexttemplates/idf/review/view.html.php:41
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:5
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:13
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:5
+msgid "Cancel"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:10
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:9
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:6
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:6
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:6
+msgid "Instructions"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:3
+msgid ""
+"The archive must include a manifest.xml file with meta "
+"information about the\n"
+"files to process inside the archive. All processed files must be unique or "
+"replace existing files explicitely."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:5
+#, php-format
+msgid ""
+"You can learn more about the archive format here."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:6
+msgid ""
+"The form contains some errors. Please correct them to submit the archive."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:7
+msgid "Submit Archive"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:3
+msgid ""
+"Attention! If you want to delete a specific version of your "
+"software, maybe, someone is depending on this specific version to run his "
+"systems. Are you sure, you will not affect anybody when removing this file?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:4
+#, php-format
+msgid ""
+"Instead of deleting the file, you could mark it as "
+"deprecated."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:5
+#: IDF/gettexttemplates/idf/downloads/view.html.php:4
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:4
+#: IDF/gettexttemplates/idf/issues/view.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:5
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:7
+#, php-format
+msgid "by %%submitter%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:6
+msgid "Delete File"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:8
+#: IDF/gettexttemplates/idf/downloads/view.html.php:14
+msgid "Uploaded:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:9
+#: IDF/gettexttemplates/idf/downloads/view.html.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:29
+#: IDF/gettexttemplates/idf/review/view.html.php:27
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:14
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:15
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:17
+msgid "Updated:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6
+#: IDF/gettexttemplates/idf/listProjects.html.php:17
+msgid "Downloads:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:11
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:17
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml~.php:6
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:10
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:21
+#: IDF/gettexttemplates/idf/issues/view.html.php:33
+#: IDF/gettexttemplates/idf/project-list.html.php:8
+#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:13
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:16
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:12
+#: IDF/IssueComment.php:157 IDF/Wiki/PageRevision.php:204
+msgid "Labels:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3
+msgid "A new file is available for download:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:4
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:5
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:8
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:4
+msgid "Hello,"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:5
+msgid "Project:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:6
+msgid "Submitted by:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:8
+msgid "Download:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:10
+#: IDF/gettexttemplates/idf/review/view.html.php:31
+#: IDF/gettexttemplates/idf/user/public.html.php:4
+msgid "Description:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:3
+msgid "A file download was updated:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3
+msgid "Details"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:3
+#, php-format
+msgid "See the deprecated files."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:5
+msgid "Number of files:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:3
+msgid ""
+"Attention! This file is marked as deprecated, download it "
+"only if you are sure you need this specific version."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:5
+msgid "md5:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:6
+msgid "Changes"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:7
+msgid "The form contains some errors. Please correct them to update the file."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:8
+msgid "Update File"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:12
+msgid "Remove this file"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:18
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:12
+msgid "Trash"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:13
+msgid "Delete this file"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:3
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:3
+#: IDF/gettexttemplates/idf/faq.html.php:65
+msgid "Here we are, just to help you."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:4
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:4
+#: IDF/gettexttemplates/idf/faq.html.php:66
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:4
+#: IDF/gettexttemplates/idf/index.html.php:4 IDF/Views/Admin.php:77
+#: IDF/Views.php:91
+msgid "Projects"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:3
+msgid ""
+"
This is simple:
\n"
+"\n"
+"
Write in the comments \"This is a duplicate of issue 123\" or - if you "
+"are a member of the crew -\n"
+"directly add the \"duplicates\" relation with the value \"123\" below the "
+"comment field. Change \"123\"\n"
+"with the corresponding issue number.
\n"
+"
Change the status of the current issue to Duplicate.
\n"
+"
Submit the changes.
\n"
+""
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:11
+msgid ""
+"You need to create an account on Gravatar, this takes about 5 minutes and is free."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:12
+msgid ""
+"\n"
+"
To embed any previously uploaded resource into your wiki page, you can "
+"use the [[!ResourceName]] syntax.
\n"
+"\n"
+"
The rendering of the resource can then be further fine-tuned:\n"
+"
\n"
+"
[[!ImageResource, align=right, width=200]] renders "
+"\"ImageResource\" right-aligned and scale its width to 200
\n"
+"
[[!TextResource, align=center, width=300, height=300]] "
+"renders \"TextResource\" in a centered, 300 by 300 px iframe
\n"
+"
[[!AnyResource, preview=no]] does not render a preview of "
+"the resource, but only provides a download link (default for binary "
+"resources)
\n"
+"
[[!BinaryResource, title=Download]] renders the download "
+"link of \"BinaryResource\" with an alternative title
\n"
+"
\n"
+"\n"
+"\n"
+"Resources are versioned, just like wiki pages. If you update a resource, old "
+"wiki pages still show the state of the resource\n"
+"at the time when the wiki page was edited. If you specifically want to "
+"update a resource on a page, you therefor need to update\n"
+"the resource at first and then also the page where it is referenced, "
+"otherwise the change won't be visible until the next regular edit. \n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:28
+msgid ""
+"
If you have to publish many files at once for a new release, it is a very "
+"tedious task\n"
+"to upload them one after another and enter meta information like a summary, "
+"a description or additional\n"
+"labels for each of them.
\n"
+"
InDefero therefore supports a special archive format that is basically a "
+"standard zip file which comes with\n"
+"some meta information. These meta information are kept in a special manifest "
+"file, which is distinctly kept from\n"
+"the rest of the files in the archive that should be published.
\n"
+"
Once this archive has been uploaded, InDefero reads in the meta "
+"information, unpacks the other files from\n"
+"the archive and creates new individual downloads for each of them.
"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:36
+#, php-format
+msgid "Learn more about the archive format."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:37
+msgid ""
+"The API (Application Programming Interface) is used to interact with "
+"InDefero with another program. For example, this can be used to create a "
+"desktop program to submit new tickets easily."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:38
+#, php-format
+msgid "Learn more about the API."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:39
+#: IDF/gettexttemplates/idf/faq.html.php:45
+msgid "What are the keyboard shortcuts?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:40
+#: IDF/gettexttemplates/idf/faq.html.php:60
+msgid "How to mark an issue as duplicate?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:41
+#: IDF/gettexttemplates/idf/faq.html.php:61
+msgid "How can I display my head next to my comments?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:42
+#: IDF/gettexttemplates/idf/faq.html.php:62
+msgid "How can I embed images and other resources in my documentation pages?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:43
+#: IDF/gettexttemplates/idf/faq.html.php:63
+msgid "What is this \"Upload Archive\" functionality about?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:44
+#: IDF/gettexttemplates/idf/faq.html.php:64
+msgid "What is the API and how is it used?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:46
+msgid "Shift+h: This help page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:47
+msgid "If you are in a project, you have the following shortcuts:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:48
+msgid "Shift+u: Project updates."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:49
+msgid "Shift+d: Downloads."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:50
+msgid "Shift+o: Documentation."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:51
+msgid "Shift+a: Create a new issue."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:52
+msgid "Shift+i: List of open issues."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:53
+msgid "Shift+m: The issues you submitted."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:54
+msgid "Shift+w: The issues assigned to you."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:55
+msgid "Shift+s: Source."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:56
+msgid "You also have the standard access keys:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:57
+msgid "Alt+1: Home."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:58
+msgid "Alt+2: Skip the menus."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:59
+msgid "Alt+4: Search (when available)."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
+msgid "Forge"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:5
+msgid "People"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:6
+msgid "Usher"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/forge/base.html.php:3
+msgid "Frontpage"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/forge/index.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
You can set up a custom forge page that is used as entry page for the "
+"forge instead of the plain project listing. This page is then also "
+"accessible via the 'Home' link in main menu bar.
Additionally, the following macros are available: \n"
+"
\n"
+"
{projectlist, label=..., order=(name|activity), limit=...}"
+"code> - Renders a project list that can optionally be filtered by label, "
+"ordered by 'name' or 'activity' and / or limited to a specific number of "
+"projects.
\n"
+"
\n"
+"\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:7
+msgid "Project List"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4
+#: IDF/Views/Admin.php:110
+msgid "Project Labels"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:16
+#: IDF/gettexttemplates/idf/listProjects.html.php:6 IDF/Views/Admin.php:186
+msgid "Create Project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:6
+msgid "Change Project Details"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3
+msgid ""
+"You can select the type of repository you want. In the case of subversion, "
+"you can use optionally a remote repository instead of the local one."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:4
+msgid ""
+"Once you have defined the repository type, you cannot change it"
+"strong>."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:5
+msgid ""
+"\n"
+"
Specify each person by its login. Each person must have already "
+"registered with the given login.
\n"
+"
Separate the logins with commas and/or new lines.
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:14
+msgid ""
+"The form contains some errors. Please correct them to create the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:15
+msgid "Provide at least one owner for the project or use a template."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:15
+msgid "Instructions:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:3
+#, php-format
+msgid ""
+"Confirmation code to confirm the deletion of the project: \n"
+"%%code%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:5
+msgid ""
+"\n"
+"Attention! Deleting a project is a one second operation\n"
+"with the consequences that all the data related to the \n"
+"project will be deleted.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:10
+msgid ""
+"The form contains some errors. Please correct them to delete the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:11
+msgid "Project Statistics"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:12
+msgid "Tab"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:13
+msgid "Number"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:15
+msgid "Code reviews"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:16
+#: IDF/Views/Project.php:93
+msgid "Commits"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:18
+msgid "Documentation pages"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:20
+msgid "Delete Project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:22
+msgid ""
+"For large projects, the suppression can take a while, please be patient."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:3
+msgid "Space Usage Statistics"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:4
+msgid "Repositories:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:18
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:16
+msgid "Attachments:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7
+msgid "Database:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:8
+msgid "Total Forge:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:13
+msgid ""
+"The form contains some errors. Please correct them to update the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:14
+msgid "Provide at least one owner for the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:15
+msgid "Update Project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:20
+msgid "Delete this project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:21
+msgid "You will be asked to confirm."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3
+#: IDF/Views/Admin.php:264
+msgid "User List"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:13
+msgid "Update User"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4
+msgid "Create User"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3
+msgid "The form contains some errors. Please correct them to create the user."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:6
+msgid "The user password will be sent by email to the user."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/createuser-email.txt.php:3
+#, php-format
+msgid ""
+"Hello %%user%%,\n"
+"\n"
+"An account on the forge has been created for you by\n"
+"the administrator %%admin%%.\n"
+"\n"
+"Please find here your details to access the forge:\n"
+"\n"
+" Address: %%url%%\n"
+" Login: %%user.login%%\n"
+" Password: %%password%%\n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:3
+#, php-format
+msgid "See not validated users."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:4
+msgid "
You have here an overview of the users registered in the forge.
"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:5
+msgid "Number of users:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:3
+msgid ""
+"If you are changing the email address of the user, you\n"
+"need to ensure that you are providing a valid email\n"
+"address"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:6
+msgid ""
+"If you give the user staff rights, the user will be\n"
+"able to create new projects and update other non staff users.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:9
+msgid "The form contains some errors. Please correct them to update the user."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:4
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:4
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4
+msgid "Login:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:11
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:5
+msgid "Public Profile"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:12
+msgid "Administrative"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3
+msgid "Configured servers"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:4
+#: IDF/Views/Admin.php:421
+msgid "Usher control"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:3
+msgid "address"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:4
+msgid "port"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:5
+msgid "No connections found."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3
+msgid "current server status:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:4
+msgid "startup"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:5
+msgid "shutdown"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:6
+msgid "reload server configuration:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:7
+msgid "reload"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:11
+msgid "Status explanation"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:9
+msgid "active with n total open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:10
+msgid "waiting for new connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:11
+msgid "usher is being shut down, not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:12
+msgid ""
+"usher is shut down, all local servers are stopped and not accepting "
+"connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:3
+msgid "server name"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:4 IDF/Issue.php:99
+#: IDF/Review.php:102
+msgid "status"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:5
+msgid "action"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:6
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:6
+msgid "No monotone servers configured."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:7
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:7
+msgid "stop"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:8
+msgid "start"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:9
+msgid "kill"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:10
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:10
+msgid "active connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:12
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:12
+msgid "remote server without open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:13
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:13
+msgid "server with n open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:14
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:14
+msgid "local server running, without open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:15
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:15
+msgid "local server not running, waiting for connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:16
+msgid "local server is about to stop, n connections still open"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:17
+msgid "local server not running, not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:18
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:18
+msgid "usher is shut down, not running and not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.atom.php:3
+#, php-format
+msgid "Personal project feed for %%user%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:6
+msgid "Home"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:3
+#, php-format
+msgid "Attachment to issue %%issue.id%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:5
+#: IDF/gettexttemplates/idf/review/view.html.php:35
+#: IDF/gettexttemplates/idf/source/commit.html.php:23
+#: IDF/gettexttemplates/idf/source/commit.html~.php:22
+#: IDF/gettexttemplates/idf/source/git/file.html.php:6
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:12
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:7
+msgid "Archive"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:6
+#: IDF/gettexttemplates/idf/source/git/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:10
+msgid "Download this file"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:7
+#: IDF/gettexttemplates/idf/issues/view.html.php:28
+#: IDF/gettexttemplates/idf/review/view.html.php:26
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:13
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:16
+msgid "Created:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:4
+msgid "All Issues"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:5
+msgid "My Issues"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:6
+msgid "My watch list"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:7
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:6
+#: IDF/gettexttemplates/idf/issues/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:5
+#: IDF/gettexttemplates/idf/issues/search.html.php:8
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:5
+msgid "New Issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:8
+#: IDF/gettexttemplates/idf/wiki/base.html.php:9
+msgid "Search"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:9
+msgid "Back to the issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:3
+#, php-format
+msgid ""
+"
Website addresses are automatically linked and you can link to another "
+"page in the documentation using double square brackets like that "
+"[[AnotherPage]].
\n"
+"
If you want to embed uploaded resources, use the [[!ResourceName]]"
+"code> syntax for that. This is described more in detail in the FAQ.
\n"
+"
To directly include a file content from the repository, embrace its path "
+"with triple square brackets: [[[my/file.txt]]].
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/feedfragment-resource.xml.php:4
+msgid "Initial creation"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:3
+#, php-format
+msgid "See the deprecated pages."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:5
+msgid "Number of pages:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/listResources.html.php:4
+msgid "Number of resources:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/search.html.php:4
+msgid "Pages found:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:3
+msgid "The form contains some errors. Please correct them to update the page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:6
+msgid "Update Page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:11
+msgid "Delete this page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:4
+msgid "Update Resource"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:9
+msgid "Delete this resource"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:3
+msgid ""
+"Attention! This page is marked as deprecated, \n"
+"use it as reference only if you are sure you need these specific information."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:5
+#, php-format
+msgid ""
+"You are looking at an old revision of the page \n"
+"%%page.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:10
+msgid "Table of Content"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:13
+msgid "Delete this revision"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:3
+#, php-format
+msgid ""
+"You are looking at an old revision of the resource \n"
+"%%resource.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:14
+msgid "Page Usage"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:15
+msgid "This resource is not used on any pages yet."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:3
+msgid "A new documentation page has been created:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:14
+msgid "Documentation page:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3
+msgid "The following documentation page has been updated:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7
+msgid "Updated by:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13
+msgid "New content:"
+msgstr ""
+
+#: IDF/Issue.php:76
+msgid "owner"
+msgstr ""
+
+#: IDF/Issue.php:84 IDF/Wiki/Page.php:86
+msgid "interested users"
+msgstr ""
+
+#: IDF/Issue.php:85
+msgid ""
+"Interested users will get an email notification when the issue is changed."
+msgstr ""
+
+#: IDF/Issue.php:92 IDF/Project.php:94 IDF/Review.php:95 IDF/Upload.php:99
+#: IDF/Wiki/Page.php:94
+msgid "labels"
+msgstr ""
+
+#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114
+#: IDF/Upload.php:118 IDF/Wiki/Page.php:106 IDF/Wiki/Resource.php:101
+msgid "modification date"
+msgstr ""
+
+#: IDF/Issue.php:212 IDF/IssueComment.php:143
+#, php-format
+msgid ""
+"Issue %3$d, %4$s"
+msgstr ""
+
+#: IDF/Issue.php:214
+#, php-format
+msgid "Creation of issue %3$d, by %4$s"
+msgstr ""
+
+#: IDF/Issue.php:224
+#, php-format
+msgid "%1$s: Issue %2$d created - %3$s"
+msgstr ""
+
+#: IDF/Issue.php:307
+#, php-format
+msgid "Issue %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Issue.php:311
+#, php-format
+msgid "Updated Issue %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/IssueComment.php:51 IDF/IssueRelation.php:47
+msgid "issue"
+msgstr ""
+
+#: IDF/IssueComment.php:58 IDF/IssueFile.php:49 IDF/Review/Comment.php:62
+#: IDF/Review/FileComment.php:49 IDF/Review/FileComment.php:69
+msgid "comment"
+msgstr ""
+
+#: IDF/IssueComment.php:72 IDF/Review/Comment.php:75 IDF/Upload.php:63
+#: IDF/Wiki/PageRevision.php:85
+msgid "changes"
+msgstr ""
+
+#: IDF/IssueComment.php:73
+msgid "Serialized array of the changes in the issue."
+msgstr ""
+
+#: IDF/IssueComment.php:180
+#, php-format
+msgid "Comment on issue %3$d, by %4$s"
+msgstr ""
+
+#: IDF/IssueComment.php:191
+#, php-format
+msgid "%1$s: Comment on issue %2$d - %3$s"
+msgstr ""
+
+#: IDF/IssueFile.php:64
+msgid "file name"
+msgstr ""
+
+#: IDF/IssueFile.php:70
+msgid "the file"
+msgstr ""
+
+#: IDF/IssueFile.php:76
+msgid "file size"
+msgstr ""
+
+#: IDF/IssueFile.php:84
+msgid "type"
+msgstr ""
+
+#: IDF/IssueFile.php:86
+msgid "Image"
+msgstr ""
+
+#: IDF/IssueFile.php:87
+msgid "Other"
+msgstr ""
+
+#: IDF/IssueRelation.php:54
+msgid "verb"
+msgstr ""
+
+#: IDF/IssueRelation.php:61
+msgid "other issue"
+msgstr ""
+
+#: IDF/Key.php:55
+msgid "public key"
+msgstr ""
+
+#: IDF/Key.php:90
+msgid "Invalid or unknown key data detected."
+msgstr ""
+
+#: IDF/Plugin/SyncMercurial.php:78 IDF/Plugin/SyncSvn.php:81
+#, php-format
+msgid "The repository %s already exists."
+msgstr ""
+
+#: IDF/Plugin/SyncMercurial.php:142
+#, php-format
+msgid "%s does not exist or is not writable."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:107 IDF/Plugin/SyncMonotone.php:492
+msgid "\"mtn_repositories\" must be defined in your configuration file"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:114 IDF/Plugin/SyncMonotone.php:482
+msgid "\"mtn_usher_conf\" does not exist or is not writable"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:121
+#, php-format
+msgid "Could not find mtn-post-push script \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:155
+#, php-format
+msgid "The configuration file \"%s\" is missing"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:164
+#, php-format
+msgid "The project path \"%s\" already exists"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:170
+#, php-format
+msgid "The project path \"%s\" could not be created"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:208
+#, php-format
+msgid "The key directory \"%s\" could not be created"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:227
+#, php-format
+msgid "Could not parse key information: %s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:265
+#, php-format
+msgid "Could not create configuration directory \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:275
+#, php-format
+msgid "Could not create symlink for configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:293
+#, php-format
+msgid "Could not write configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:309 IDF/Plugin/SyncMonotone.php:525
+#, php-format
+msgid "Could not parse usher configuration in \"%1$s\": %2$s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:320
+#, php-format
+msgid "usher configuration already contains a server entry named \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:345 IDF/Plugin/SyncMonotone.php:546
+#, php-format
+msgid "Could not write usher configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:395
+#, php-format
+msgid "Could not write write-permissions file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:420
+#, php-format
+msgid "Could not write read-permissions file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:438
+#, php-format
+msgid "Could not remove symlink \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:446
+#, php-format
+msgid "Could not create symlink \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:500
+#, php-format
+msgid "One or more paths underneath %s could not be deleted"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:512
+#, php-format
+msgid "Could not delete client private key \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:599 IDF/Plugin/SyncMonotone.php:718
+#, php-format
+msgid "Could not parse read-permissions for project \"%1$s\": %2$s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:643 IDF/Plugin/SyncMonotone.php:741
+#, php-format
+msgid "Could not write read-permissions for project \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:657 IDF/Plugin/SyncMonotone.php:760
+#, php-format
+msgid "Could not write write-permissions file for project \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:813
+msgid "\"mtn_repositories\" must be defined in your configuration file."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:820
+#, php-format
+msgid "The project path %s does not exists."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:838
+#, php-format
+msgid "The command \"%s\" could not be executed."
+msgstr ""
+
+#: IDF/Project.php:62 IDF/Tag.php:66
+msgid "name"
+msgstr ""
+
+#: IDF/Project.php:69
+msgid "short name"
+msgstr ""
+
+#: IDF/Project.php:70
+msgid ""
+"Used in the URL to access the project, must be short with only letters and "
+"numbers."
+msgstr ""
+
+#: IDF/Project.php:78
+msgid "short description"
+msgstr ""
+
+#: IDF/Project.php:86 IDF/Review/Patch.php:74
+msgid "description"
+msgstr ""
+
+#: IDF/Project.php:87
+msgid "The description can be extended using the Markdown syntax."
+msgstr ""
+
+#: IDF/Project.php:100
+msgid "private"
+msgstr ""
+
+#: IDF/Project.php:108
+msgid "current project activity"
+msgstr ""
+
+#: IDF/Project.php:159
+#, php-format
+msgid "Project \"%s\" not found."
+msgstr ""
+
+#: IDF/ProjectActivity.php:56
+msgid "date"
+msgstr ""
+
+#: IDF/Review/Comment.php:55 IDF/Review/Patch.php:80
+msgid "patch"
+msgstr ""
+
+#: IDF/Review/Comment.php:83
+msgid "vote"
+msgstr ""
+
+#: IDF/Review/Comment.php:139 IDF/Review/Patch.php:151
+#, php-format
+msgid ""
+"Review %3$d, %4$s"
+msgstr ""
+
+#: IDF/Review/Comment.php:141
+#, php-format
+msgid "Update of review %3$d, by %4$s"
+msgstr ""
+
+#: IDF/Review/Comment.php:151
+#, php-format
+msgid "%1$s: Updated review %2$d - %3$s"
+msgstr ""
+
+#: IDF/Review/Comment.php:222
+#, php-format
+msgid "Updated Code Review %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Review/Patch.php:52
+msgid "review"
+msgstr ""
+
+#: IDF/Review/Patch.php:67
+msgid "commit"
+msgstr ""
+
+#: IDF/Review/Patch.php:153
+#, php-format
+msgid "Creation of review %3$d, by %4$s"
+msgstr ""
+
+#: IDF/Review/Patch.php:163
+#, php-format
+msgid "%1$s: Creation of Review %2$d - %3$s"
+msgstr ""
+
+#: IDF/Review/Patch.php:208
+#, php-format
+msgid "New Code Review %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Scm/Git.php:309 IDF/Scm/Mercurial.php:199
+#, php-format
+msgid "Folder %1$s not found in commit %2$s."
+msgstr ""
+
+#: IDF/Scm/Git.php:433 IDF/Scm/Mercurial.php:216
+#, php-format
+msgid "Not a valid tree: %s."
+msgstr ""
+
+#: IDF/Scm/Monotone/Stdio.php:81
+msgid "Monotone client key name or hash not in project conf."
+msgstr ""
+
+#: IDF/Scm/Monotone/Stdio.php:89
+#, php-format
+msgid "The key directory %s could not be created."
+msgstr ""
+
+#: IDF/Scm/Monotone/Stdio.php:100
+#, php-format
+msgid "Could not write client key \"%s\""
+msgstr ""
+
+#: IDF/Search/Occ.php:33
+msgid "occurrence"
+msgstr ""
+
+#: IDF/Search/Occ.php:49
+msgid "word"
+msgstr ""
+
+#: IDF/Search/Occ.php:75
+msgid "occurrences"
+msgstr ""
+
+#: IDF/Search/Occ.php:81
+msgid "ponderated occurrence"
+msgstr ""
+
+#: IDF/Tag.php:59
+msgid "tag class"
+msgstr ""
+
+#: IDF/Tag.php:60
+msgid "The class of the tag."
+msgstr ""
+
+#: IDF/Tag.php:73
+msgid "lcname"
+msgstr ""
+
+#: IDF/Tag.php:74
+msgid "Lower case version of the name for fast searching."
+msgstr ""
+
+#: IDF/Template/Markdown.php:84
+msgid "Create this documentation page"
+msgstr ""
+
+#: IDF/Template/Markdown.php:97
+msgid "You are not allowed to access the wiki."
+msgstr ""
+
+#: IDF/Template/Markdown.php:106
+msgid "The wiki resource has not been found."
+msgstr ""
+
+#: IDF/Template/Markdown.php:113
+msgid "The wiki resource has not been found. Create it!"
+msgstr ""
+
+#: IDF/Template/Markdown.php:146
+msgid "This revision of the resource is no longer available."
+msgstr ""
+
+#: IDF/Template/ShowUser.php:51
+msgid "Anonymous"
+msgstr ""
+
+#: IDF/Template/ShowUser.php:54
+msgid "Me"
+msgstr ""
+
+#: IDF/Timeline/Paginator.php:49
+msgid "Today"
+msgstr ""
+
+#: IDF/Upload.php:70
+msgid "file"
+msgstr ""
+
+#: IDF/Upload.php:71
+msgid "The path is relative to the upload path."
+msgstr ""
+
+#: IDF/Upload.php:78 IDF/Wiki/ResourceRevision.php:71
+msgid "file size in bytes"
+msgstr ""
+
+#: IDF/Upload.php:84
+msgid "MD5"
+msgstr ""
+
+#: IDF/Upload.php:106
+msgid "number of downloads"
+msgstr ""
+
+#: IDF/Upload.php:201
+#, php-format
+msgid "Download %2$d, %3$s"
+msgstr ""
+
+#: IDF/Upload.php:204
+#, php-format
+msgid "Addition of download %2$d, by %3$s"
+msgstr ""
+
+#: IDF/Upload.php:214
+#, php-format
+msgid "%1$s: Download %2$d added - %3$s"
+msgstr ""
+
+#: IDF/Upload.php:301
+#, php-format
+msgid "New download - %1$s (%2$s)"
+msgstr ""
+
+#: IDF/Upload.php:305
+#, php-format
+msgid "Updated download - %1$s (%2$s)"
+msgstr ""
+
+#: IDF/Views/Admin.php:47
+msgid "The forge configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Admin.php:80
+msgid "This table shows the projects in the forge."
+msgstr ""
+
+#: IDF/Views/Admin.php:85
+msgid "Short Name"
+msgstr ""
+
+#: IDF/Views/Admin.php:87
+msgid "Repository Size"
+msgstr ""
+
+#: IDF/Views/Admin.php:93
+msgid "No projects were found."
+msgstr ""
+
+#: IDF/Views/Admin.php:116
+msgid "The label configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Admin.php:147 IDF/Views/Admin.php:314 IDF/Views/Wiki.php:484
+#: IDF/Views/Wiki.php:536
+#, php-format
+msgid "Update %s"
+msgstr ""
+
+#: IDF/Views/Admin.php:155 IDF/Views/Project.php:304
+msgid "The project has been updated."
+msgstr ""
+
+#: IDF/Views/Admin.php:192
+msgid "The project has been created."
+msgstr ""
+
+#: IDF/Views/Admin.php:223
+#, php-format
+msgid "Delete %s Project"
+msgstr ""
+
+#: IDF/Views/Admin.php:230
+msgid "The project has been deleted."
+msgstr ""
+
+#: IDF/Views/Admin.php:260
+msgid "Not Validated User List"
+msgstr ""
+
+#: IDF/Views/Admin.php:268
+msgid "This table shows the users in the forge."
+msgstr ""
+
+#: IDF/Views/Admin.php:272
+msgid "login"
+msgstr ""
+
+#: IDF/Views/Admin.php:275
+msgid "Admin"
+msgstr ""
+
+#: IDF/Views/Admin.php:277
+msgid "Last Login"
+msgstr ""
+
+#: IDF/Views/Admin.php:284
+msgid "No users were found."
+msgstr ""
+
+#: IDF/Views/Admin.php:321
+msgid "You do not have the rights to update this user."
+msgstr ""
+
+#: IDF/Views/Admin.php:339
+msgid "The user has been updated."
+msgstr ""
+
+#: IDF/Views/Admin.php:372
+#, php-format
+msgid "The user %s has been created."
+msgstr ""
+
+#: IDF/Views/Admin.php:379
+msgid "Add User"
+msgstr ""
+
+#: IDF/Views/Admin.php:395
+msgid "Usher management"
+msgstr ""
+
+#: IDF/Views/Admin.php:432
+msgid "Usher configuration has been reloaded"
+msgstr ""
+
+#: IDF/Views/Admin.php:436
+msgid "Usher has been shut down"
+msgstr ""
+
+#: IDF/Views/Admin.php:441
+msgid "Usher has been started up"
+msgstr ""
+
+#: IDF/Views/Admin.php:479
+#, php-format
+msgid "The server \"%s\" has been started"
+msgstr ""
+
+#: IDF/Views/Admin.php:483
+#, php-format
+msgid "The server \"%s\" has been stopped"
+msgstr ""
+
+#: IDF/Views/Admin.php:488
+#, php-format
+msgid "The server \"%s\" has been killed"
+msgstr ""
+
+#: IDF/Views/Admin.php:508
+#, php-format
+msgid "Open connections for \"%s\""
+msgstr ""
+
+#: IDF/Views/Admin.php:513
+#, php-format
+msgid "no connections for server \"%s\""
+msgstr ""
+
+#: IDF/Views/Admin.php:534
+msgid "Yes"
+msgstr ""
+
+#: IDF/Views/Admin.php:534
+msgid "No"
+msgstr ""
+
+#: IDF/Views/Download.php:45
+#, php-format
+msgid "%s Downloads"
+msgstr ""
+
+#: IDF/Views/Download.php:51
+msgid "This table shows the files to download."
+msgstr ""
+
+#: IDF/Views/Download.php:67 IDF/Views/Download.php:349
+msgid "Uploaded"
+msgstr ""
+
+#: IDF/Views/Download.php:71 IDF/Views/Download.php:353
+msgid "No downloads were found."
+msgstr ""
+
+#: IDF/Views/Download.php:94
+#, php-format
+msgid "Download %s"
+msgstr ""
+
+#: IDF/Views/Download.php:111
+#, php-format
+msgid "The file %2$s has been updated."
+msgstr ""
+
+#: IDF/Views/Download.php:144
+#, php-format
+msgid "Delete Download %s"
+msgstr ""
+
+#: IDF/Views/Download.php:177
+msgid "The file has been deleted."
+msgstr ""
+
+#: IDF/Views/Download.php:244
+#, php-format
+msgid "The file has been uploaded."
+msgstr ""
+
+#: IDF/Views/Download.php:271
+msgid "New Downloads from Archive"
+msgstr ""
+
+#: IDF/Views/Download.php:278
+msgid "The archive has been uploaded and processed."
+msgstr ""
+
+#: IDF/Views/Download.php:331
+#, php-format
+msgid "%1$s Downloads with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Download.php:341
+#, php-format
+msgid "This table shows the downloads with label %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:41
+#, php-format
+msgid "%s Open Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:382 IDF/Views/User.php:75
+msgid "This table shows the open issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:61 IDF/Views/Issue.php:220 IDF/Views/Issue.php:301
+#: IDF/Views/Issue.php:390 IDF/Views/Issue.php:542 IDF/Views/Issue.php:765
+#: IDF/Views/Issue.php:824 IDF/Views/Review.php:57 IDF/Views/User.php:81
+msgid "Id"
+msgstr ""
+
+#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:223 IDF/Views/Issue.php:305
+#: IDF/Views/Issue.php:393 IDF/Views/Issue.php:545 IDF/Views/Issue.php:768
+#: IDF/Views/Issue.php:827 IDF/Views/Review.php:60 IDF/Views/User.php:85
+msgid "Last Updated"
+msgstr ""
+
+#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:227 IDF/Views/Issue.php:309
+#: IDF/Views/Issue.php:397 IDF/Views/Issue.php:549 IDF/Views/Issue.php:772
+#: IDF/Views/Issue.php:831
+msgid "No issues were found."
+msgstr ""
+
+#: IDF/Views/Issue.php:113
+msgid "Not assigned"
+msgstr ""
+
+#: IDF/Views/Issue.php:149
+#, php-format
+msgid "Summary of tracked issues in %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:194
+#, php-format
+msgid "Watch List: Closed Issues for %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:195
+#, php-format
+msgid "This table shows the closed issues in your watch list for %s project."
+msgstr ""
+
+#: IDF/Views/Issue.php:200
+#, php-format
+msgid "Watch List: Open Issues for %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:201
+#, php-format
+msgid "This table shows the open issues in your watch list for %s project."
+msgstr ""
+
+#: IDF/Views/Issue.php:277
+msgid "Watch List: Closed Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:278
+msgid "This table shows the closed issues in your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:283
+msgid "Watch List: Open Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:284
+msgid "This table shows the open issues in your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:303 IDF/Views/User.php:82
+msgid "Project"
+msgstr ""
+
+#: IDF/Views/Issue.php:344
+#, php-format
+msgid "%1$s %2$s Submitted %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:348
+#, php-format
+msgid "%1$s %2$s Closed Submitted %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:352
+#, php-format
+msgid "%1$s %2$s Closed Working %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:356
+#, php-format
+msgid "%1$s %2$s Working %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:417
+msgid "Submit a new issue"
+msgstr ""
+
+#: IDF/Views/Issue.php:433
+#, php-format
+msgid "Issue %2$d has been created."
+msgstr ""
+
+#: IDF/Views/Issue.php:490
+#, php-format
+msgid "Search issues - %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:492
+#, php-format
+msgid "Search closed issues - %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:539
+msgid "This table shows the found issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:604
+#, php-format
+msgid "Issue %2$d: %3$s"
+msgstr ""
+
+#: IDF/Views/Issue.php:628
+#, php-format
+msgid "Issue %2$d has been updated."
+msgstr ""
+
+#: IDF/Views/Issue.php:718
+#, php-format
+msgid "View %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:745
+#, php-format
+msgid "%s Closed Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:755
+msgid "This table shows the closed issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:798
+#, php-format
+msgid "%1$s Issues with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Issue.php:801
+#, php-format
+msgid "%1$s Closed Issues with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Issue.php:814
+#, php-format
+msgid "This table shows the issues with label %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:937
+msgid "The issue has been removed from your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:940
+msgid "The issue has been added to your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:1037
+msgid "On your watch list."
+msgstr ""
+
+#: IDF/Views/Project.php:95
+msgid "Issues and Comments"
+msgstr ""
+
+#: IDF/Views/Project.php:99
+msgid "Documents"
+msgstr ""
+
+#: IDF/Views/Project.php:101
+msgid "Reviews and Patches"
+msgstr ""
+
+#: IDF/Views/Project.php:180
+msgid "This table shows the project updates."
+msgstr ""
+
+#: IDF/Views/Project.php:191
+msgid "Change"
+msgstr ""
+
+#: IDF/Views/Project.php:195
+msgid "No changes were found."
+msgstr ""
+
+#: IDF/Views/Project.php:296
+#, php-format
+msgid "%s Project Summary"
+msgstr ""
+
+#: IDF/Views/Project.php:335
+#, php-format
+msgid "%s Issue Tracking Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:344
+msgid "The issue tracking configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:381
+#, php-format
+msgid "%s Downloads Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:393
+msgid "The downloads configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:428
+#, php-format
+msgid "%s Documentation Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:437
+msgid "The documentation configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:471
+#, php-format
+msgid "%s Project Members"
+msgstr ""
+
+#: IDF/Views/Project.php:480
+msgid "The project membership has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:503
+#, php-format
+msgid "%s Tabs Access Rights"
+msgstr ""
+
+#: IDF/Views/Project.php:517
+msgid ""
+"The project tabs access rights and notification settings have been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:566
+#, php-format
+msgid "%s Source"
+msgstr ""
+
+#: IDF/Views/Project.php:580
+msgid "The project source configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Review.php:41
+#, php-format
+msgid "%s Code Reviews"
+msgstr ""
+
+#: IDF/Views/Review.php:48
+msgid "This table shows the latest reviews."
+msgstr ""
+
+#: IDF/Views/Review.php:64
+msgid "No reviews were found."
+msgstr ""
+
+#: IDF/Views/Review.php:94
+#, php-format
+msgid "The code review %2$d has been created."
+msgstr ""
+
+#: IDF/Views/Review.php:140
+#, php-format
+msgid "Review %2$d: %3$s"
+msgstr ""
+
+#: IDF/Views/Review.php:160
+#, php-format
+msgid "Your code review %2$d has been published."
+msgstr ""
+
+#: IDF/Views/Source.php:40
+#, php-format
+msgid "%s Source Help"
+msgstr ""
+
+#: IDF/Views/Source.php:58
+#, php-format
+msgid "%s Invalid Revision"
+msgstr ""
+
+#: IDF/Views/Source.php:82
+#, php-format
+msgid "%s Ambiguous Revision"
+msgstr ""
+
+#: IDF/Views/Source.php:107
+#, php-format
+msgid "%1$s %2$s Change Log"
+msgstr ""
+
+#: IDF/Views/Source.php:153 IDF/Views/Source.php:234 IDF/Views/Source.php:362
+#, php-format
+msgid "%1$s %2$s Source Tree"
+msgstr ""
+
+#: IDF/Views/Source.php:310
+#, php-format
+msgid "%s Commit Details"
+msgstr ""
+
+#: IDF/Views/Source.php:311
+#, php-format
+msgid "%1$s Commit Details - %2$s"
+msgstr ""
+
+#: IDF/Views/User.php:59
+msgid "Your Dashboard - Working Issues"
+msgstr ""
+
+#: IDF/Views/User.php:62
+msgid "Your Dashboard - Submitted Issues"
+msgstr ""
+
+#: IDF/Views/User.php:89
+msgid "No issues are assigned to you, yeah!"
+msgstr ""
+
+#: IDF/Views/User.php:89
+msgid "All the issues you submitted are fixed, yeah!"
+msgstr ""
+
+#: IDF/Views/User.php:121
+msgid "Your personal information has been updated."
+msgstr ""
+
+#: IDF/Views/User.php:133
+msgid "Your Account"
+msgstr ""
+
+#: IDF/Views/User.php:157
+msgid "The public key has been deleted."
+msgstr ""
+
+#: IDF/Views/User.php:177
+msgid "The address has been deleted."
+msgstr ""
+
+#: IDF/Views/User.php:200
+msgid "Confirm The Email Change"
+msgstr ""
+
+#: IDF/Views/User.php:232
+#, php-format
+msgid "Your new email address \"%s\" has been validated. Thank you!"
+msgstr ""
+
+#: IDF/Views/Wiki.php:41
+#, php-format
+msgid "%s Documentation"
+msgstr ""
+
+#: IDF/Views/Wiki.php:48
+msgid "This table shows the documentation pages."
+msgstr ""
+
+#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:144 IDF/Views/Wiki.php:185
+msgid "Page Title"
+msgstr ""
+
+#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:103 IDF/Views/Wiki.php:146
+#: IDF/Views/Wiki.php:187
+msgid "Updated"
+msgstr ""
+
+#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:191
+msgid "No documentation pages were found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:88
+#, php-format
+msgid "%s Documentation Resources"
+msgstr ""
+
+#: IDF/Views/Wiki.php:94
+msgid "This table shows the resources that can be used on documentation pages."
+msgstr ""
+
+#: IDF/Views/Wiki.php:100
+msgid "Resource Title"
+msgstr ""
+
+#: IDF/Views/Wiki.php:107
+msgid "No resources were found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:128
+#, php-format
+msgid "Documentation Search - %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:139
+msgid "This table shows the pages found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:150
+msgid "No pages were found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:169
+#, php-format
+msgid "%1$s Documentation Pages with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:179
+#, php-format
+msgid "This table shows the documentation pages with label %s."
+msgstr ""
+
+#: IDF/Views/Wiki.php:222
+#, php-format
+msgid "The page %2$s has been created."
+msgstr ""
+
+#: IDF/Views/Wiki.php:265
+#, php-format
+msgid "The resource %2$s has been created."
+msgstr ""
+
+#: IDF/Views/Wiki.php:409 IDF/Views/Wiki.php:448
+msgid "The old revision has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:415 IDF/Views/Wiki.php:454
+#, php-format
+msgid "Delete Old Revision of %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:496
+#, php-format
+msgid "The page %2$s has been updated."
+msgstr ""
+
+#: IDF/Views/Wiki.php:548
+#, php-format
+msgid "The resource %2$s has been updated."
+msgstr ""
+
+#: IDF/Views/Wiki.php:583
+msgid "The documentation page has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:591
+#, php-format
+msgid "Delete Page %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:623
+msgid "The documentation resource has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:631
+#, php-format
+msgid "Delete Resource %s"
+msgstr ""
+
+#: IDF/Views.php:173 IDF/Views.php:199
+msgid "Confirm Your Account Creation"
+msgstr ""
+
+#: IDF/Views.php:219
+msgid "Welcome! You can now participate in the life of your project of choice."
+msgstr ""
+
+#: IDF/Views.php:245 IDF/Views.php:269 IDF/Views.php:310
+msgid "Password Recovery"
+msgstr ""
+
+#: IDF/Views.php:289
+msgid ""
+"Welcome back! Next time, you can use your broswer options to remember the "
+"password."
+msgstr ""
+
+#: IDF/Views.php:331
+msgid "Here to Help You!"
+msgstr ""
+
+#: IDF/Views.php:347
+msgid "InDefero Upload Archive Format"
+msgstr ""
+
+#: IDF/Views.php:363
+msgid "InDefero API (Application Programming Interface)"
+msgstr ""
+
+#: IDF/Wiki/Page.php:62 IDF/Wiki/Resource.php:64
+msgid "title"
+msgstr ""
+
+#: IDF/Wiki/Page.php:63
+msgid ""
+"The title of the page must only contain letters, digits or the dash "
+"character. For example: My-new-Wiki-Page."
+msgstr ""
+
+#: IDF/Wiki/Page.php:71
+msgid "A one line description of the page content."
+msgstr ""
+
+#: IDF/Wiki/Page.php:196 IDF/Wiki/PageRevision.php:196
+#, php-format
+msgid "%2$s, %3$s"
+msgstr ""
+
+#: IDF/Wiki/Page.php:198
+#, php-format
+msgid "Creation of page %2$s, by %3$s"
+msgstr ""
+
+#: IDF/Wiki/Page.php:208
+#, php-format
+msgid "%1$s: Documentation page %2$s added - %3$s"
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:48
+msgid "page"
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:66 IDF/Wiki/ResourceRevision.php:64
+msgid "A one line description of the changes."
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:72
+msgid "content"
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:218 IDF/Wiki/ResourceRevision.php:311
+#, php-format
+msgid "Change of %2$s, by %3$s"
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:231
+#, php-format
+msgid "%1$s: Documentation page %2$s updated - %3$s"
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:293
+#, php-format
+msgid "New Documentation Page %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:297
+#, php-format
+msgid "Documentation Page Changed %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Wiki/Resource.php:65
+msgid ""
+"The title of the resource must only contain letters, digits, dots or the "
+"dash character. For example: my-resource.png."
+msgstr ""
+
+#: IDF/Wiki/Resource.php:72
+msgid "MIME media type"
+msgstr ""
+
+#: IDF/Wiki/Resource.php:73
+msgid "The MIME media type of the resource."
+msgstr ""
+
+#: IDF/Wiki/Resource.php:81
+msgid "A one line description of the resource."
+msgstr ""
+
+#: IDF/Wiki/Resource.php:176 IDF/Wiki/ResourceRevision.php:308
+#, php-format
+msgid "%2$s, %3$s"
+msgstr ""
+
+#: IDF/Wiki/Resource.php:178
+#, php-format
+msgid "Creation of resource %2$s, by %3$s"
+msgstr ""
+
+#: IDF/Wiki/Resource.php:188
+#, php-format
+msgid "%1$s: Documentation resource %2$s added - %3$s"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:47
+msgid "resource"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:78
+msgid "File extension"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:79
+msgid "The file extension of the uploaded resource."
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:94
+msgid "page usage"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:116
+#, php-format
+msgid "id %d: %s"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:263
+#, php-format
+msgid "Download (%s)"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:270
+msgid "View resource details"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:324
+#, php-format
+msgid "%1$s: Documentation resource %2$s updated - %3$s"
+msgstr ""
diff --git a/indefero/src/IDF/locale/pt_BR/idf.po b/indefero/src/IDF/locale/pt_BR/idf.po
new file mode 100644
index 0000000..5af095c
--- /dev/null
+++ b/indefero/src/IDF/locale/pt_BR/idf.po
@@ -0,0 +1,5398 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+# pkiefer , 2011.
+msgid ""
+msgstr ""
+"Project-Id-Version: Indefero\n"
+"Report-Msgid-Bugs-To: http://projects.ceondo.com/p/indefero/issues/\n"
+"POT-Creation-Date: 2012-03-22 01:16+0100\n"
+"PO-Revision-Date: 2011-10-31 00:19+0000\n"
+"Last-Translator: tommyd \n"
+"Language-Team: LANGUAGE \n"
+"Language: pt_BR\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
+
+#: IDF/Commit.php:55 IDF/Conf.php:54 IDF/Issue.php:52
+#: IDF/ProjectActivity.php:49 IDF/Review.php:65 IDF/Search/Occ.php:69
+#: IDF/Tag.php:52 IDF/Upload.php:49 IDF/Wiki/Page.php:54
+#: IDF/Wiki/Resource.php:56
+msgid "project"
+msgstr "projeto"
+
+#: IDF/Commit.php:63 IDF/Issue.php:67 IDF/IssueComment.php:65
+#: IDF/IssueFile.php:57 IDF/IssueRelation.php:69 IDF/Review/Comment.php:69
+#: IDF/Review.php:80 IDF/Upload.php:91 IDF/Wiki/Page.php:78
+#: IDF/Wiki/PageRevision.php:79 IDF/Wiki/Resource.php:88
+#: IDF/Wiki/ResourceRevision.php:86
+msgid "submitter"
+msgstr ""
+
+#: IDF/Commit.php:87 IDF/Issue.php:60 IDF/Review/Patch.php:60
+#: IDF/Review.php:73 IDF/Upload.php:57 IDF/Wiki/Page.php:70
+#: IDF/Wiki/PageRevision.php:65 IDF/Wiki/Resource.php:80
+#: IDF/Wiki/ResourceRevision.php:63
+msgid "summary"
+msgstr "sumário"
+
+#: IDF/Commit.php:93
+msgid "changelog"
+msgstr ""
+
+#: IDF/Commit.php:100 IDF/Issue.php:105 IDF/IssueComment.php:79
+#: IDF/IssueFile.php:96 IDF/IssueRelation.php:75 IDF/Review/Comment.php:90
+#: IDF/Review/FileComment.php:75 IDF/Review/Patch.php:87 IDF/Review.php:108
+#: IDF/Upload.php:112 IDF/Wiki/Page.php:100 IDF/Wiki/PageRevision.php:92
+#: IDF/Wiki/Resource.php:95 IDF/Wiki/ResourceRevision.php:101
+msgid "creation date"
+msgstr "data de criação"
+
+#: IDF/Commit.php:238
+#, php-format
+msgid "Commit %1$s, by %2$s"
+msgstr ""
+
+#: IDF/Commit.php:337
+#, php-format
+msgid "New Commit %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Conf.php:61 IDF/Gconf.php:73
+msgid "key"
+msgstr "chave"
+
+#: IDF/Conf.php:67 IDF/Gconf.php:79 IDF/ProjectActivity.php:62
+msgid "value"
+msgstr "valor"
+
+#: IDF/Diff.php:460
+msgid "Old"
+msgstr ""
+
+#: IDF/Diff.php:460
+msgid "New"
+msgstr ""
+
+#: IDF/EmailAddress.php:49 IDF/Key.php:49
+msgid "user"
+msgstr "usuário"
+
+#: IDF/EmailAddress.php:55
+msgid "email"
+msgstr ""
+
+#: IDF/Form/Admin/ForgeConf.php:34
+msgid "Custom forge page enabled"
+msgstr ""
+
+#: IDF/Form/Admin/ForgeConf.php:39 IDF/Form/WikiPageCreate.php:80
+#: IDF/Form/WikiPageUpdate.php:72
+msgid "Content"
+msgstr ""
+
+#: IDF/Form/Admin/LabelConf.php:40
+msgid "Predefined project labels"
+msgstr ""
+
+#: IDF/Form/Admin/LabelConf.php:55
+#, php-format
+msgid ""
+"The label \"%s\" is invalid: A label must only consist of alphanumeric "
+"characters and dashes, and can optionally contain a \":\" with a group "
+"prefix."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:600
+msgid "git"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:601
+msgid "Subversion"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:602
+msgid "mercurial"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:603
+msgid "monotone"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44
+#: IDF/Form/ProjectConf.php:39 IDF/Views/Admin.php:86 IDF/Views/Admin.php:273
+msgid "Name"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:101
+#: IDF/gettexttemplates/idf/base-full.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html~.php:5
+#: IDF/gettexttemplates/idf/base.html.php:5
+#: IDF/gettexttemplates/idf/base.html~.php:5
+#: IDF/gettexttemplates/idf/main-menu.html.php:9
+#: IDF/gettexttemplates/idf/project-list.html.php:5
+#: IDF/gettexttemplates/idf/project-list.html.php:7
+msgid "Private project"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:62
+msgid "Shortname"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:64
+msgid ""
+"It must be unique for each project and composed only of letters, digits and "
+"dash (-) like \"my-project\"."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50
+msgid "Short description"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:70 IDF/Form/Admin/ProjectUpdate.php:51
+#: IDF/Project.php:79
+msgid "A one line description of the project."
+msgstr "Descrição do projeto em uma linha."
+
+#: IDF/Form/Admin/ProjectCreate.php:77 IDF/Form/Admin/ProjectUpdate.php:58
+#: IDF/Form/ProjectConf.php:56
+msgid "External URL"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:84
+msgid "Repository type"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:92
+msgid "Remote Subversion repository"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:99 IDF/Form/SourceConf.php:40
+msgid "Repository username"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:106 IDF/Form/SourceConf.php:47
+msgid "Repository password"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:113 IDF/Form/Admin/ProjectUpdate.php:66
+msgid "Master branch"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:116 IDF/Form/Admin/ProjectUpdate.php:69
+msgid ""
+"This should be a world-wide unique identifier for your project. A reverse "
+"DNS notation like \"com.my-domain.my-project\" is a good idea."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:121 IDF/Form/Admin/ProjectUpdate.php:95
+#: IDF/Form/MembersConf.php:46 IDF/Form/TabsConf.php:53
+#: IDF/Form/TabsConf.php:72
+msgid "Project owners"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:130 IDF/Form/Admin/ProjectUpdate.php:103
+#: IDF/Form/MembersConf.php:54 IDF/Form/TabsConf.php:52
+#: IDF/Form/TabsConf.php:78
+msgid "Project members"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:140 IDF/Form/Admin/ProjectUpdate.php:85
+#: IDF/Form/IssueCreate.php:168 IDF/Form/IssueUpdate.php:164
+#: IDF/Form/ProjectConf.php:73 IDF/Form/UpdateUpload.php:71
+#: IDF/Form/Upload.php:70 IDF/Form/WikiPageCreate.php:93
+#: IDF/Form/WikiPageUpdate.php:104
+msgid "Labels"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:155
+msgid "Project template"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:157
+msgid ""
+"Use the given project to initialize the new project. Access rights and "
+"general configuration will be taken from the template project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:204
+msgid ""
+"Only a remote repository available through HTTP or HTTPS is allowed. For "
+"example \"http://somewhere.com/svn/trunk\"."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:220 IDF/Form/Admin/ProjectUpdate.php:117
+msgid ""
+"The master branch is empty or contains illegal characters, please use only "
+"letters, digits, dashes and dots as separators."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:230 IDF/Form/Admin/ProjectUpdate.php:128
+msgid "This master branch is already used. Please select another one."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:241
+msgid ""
+"This shortname contains illegal characters, please use only letters, digits "
+"and dash (-)."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:244
+msgid "The shortname cannot start with the dash (-) character."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:247
+msgid "The shortname cannot end with the dash (-) character."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:252
+msgid "This shortname is already used. Please select another one."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:303 IDF/Form/Admin/ProjectDelete.php:78
+#: IDF/Form/Admin/ProjectUpdate.php:153 IDF/Form/Admin/UserCreate.php:106
+#: IDF/Form/Admin/UserUpdate.php:191 IDF/Form/IssueCreate.php:338
+#: IDF/Form/IssueUpdate.php:329 IDF/Form/MembersConf.php:64
+#: IDF/Form/Password.php:76 IDF/Form/Register.php:112
+#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:143
+#: IDF/Form/TabsConf.php:122 IDF/Form/UpdateUpload.php:126
+#: IDF/Form/Upload.php:149 IDF/Form/UploadArchive.php:137
+#: IDF/Form/UserAccount.php:216 IDF/Form/UserChangeEmail.php:80
+#: IDF/Form/WikiPageCreate.php:167 IDF/Form/WikiPageDelete.php:59
+#: IDF/Form/WikiPageUpdate.php:178 IDF/Form/WikiResourceCreate.php:123
+#: IDF/Form/WikiResourceDelete.php:59 IDF/Form/WikiResourceUpdate.php:124
+msgid "Cannot save the model from an invalid form."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:341
+msgid ""
+"Click on the Project Management tab to set the description of your project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:426
+msgid "This project is not available."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:41
+msgid "Confirmation code"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:46
+msgid "I have made a backup of all the important data of this project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:55
+msgid ""
+"The confirmation code does not match. Please provide a valid confirmation "
+"code to delete the project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:63
+msgid "Sorry, you really need to backup your data before deletion."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38
+#: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40
+msgid "First name"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47
+#: IDF/Form/RegisterConfirmation.php:59 IDF/Form/UserAccount.php:49
+msgid "Last name"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:56
+msgid "Login"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:60
+msgid ""
+"The login must be between 3 and 15 characters long and contains only letters "
+"and digits."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57
+msgid "Email"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:71
+msgid ""
+"Double check the email address as the password is sent directly to the user."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67
+#: IDF/Form/UserAccount.php:66
+msgid "Language"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161
+msgid "Add a public key"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:92
+msgid ""
+"Paste a SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:157
+msgid "Your details to access your forge."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:429
+#: IDF/Form/UserAccount.php:438
+#, php-format
+msgid "The email \"%s\" is already used."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72
+#, php-format
+msgid "The login \"%s\" can only contain letters and digits."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77
+#, php-format
+msgid "The login \"%s\" is already used, please find another one."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:78
+msgid "Password"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid "Leave blank if you do not want to change the password."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid ""
+"The password must be hard for other people to guess, but easy for the user "
+"to remember."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:89
+msgid "Confirm password"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/IssueCreate.php:66
+#: IDF/Form/ProjectConf.php:48 IDF/Form/ReviewCreate.php:54
+#: IDF/Form/UpdateUpload.php:51 IDF/Form/Upload.php:49
+#: IDF/Form/UserAccount.php:101 IDF/Form/WikiPageCreate.php:70
+#: IDF/Form/WikiPageUpdate.php:60 IDF/Form/WikiResourceCreate.php:54
+#: IDF/Form/WikiResourceUpdate.php:46 IDF/Views/Wiki.php:102
+msgid "Description"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:110
+msgid "Twitter username"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:120
+msgid "Public email address"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:130
+msgid "Website URL"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:140
+msgid "Upload custom avatar"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:147
+msgid ""
+"An image file with a width and height not larger than 60 pixels (bigger "
+"images are scaled down)."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:151 IDF/Form/UserAccount.php:152
+msgid "Remove custom avatar"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:156
+msgid "Tick this to delete the custom avatar."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:161 IDF/Views/Admin.php:274
+msgid "Staff"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:164
+msgid "If you give staff rights to a user, you really need to trust him."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:276
+msgid "Active"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:176
+msgid ""
+"If the user is not getting the confirmation email or is abusing the system, "
+"you can directly enable or disable their account here."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:274
+msgid "--- is not a valid first name."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:290
+msgid ""
+"A user with this email already exists, please provide another email address."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/UserAccount.php:398
+msgid "For security reason, you cannot upload a file with this extension."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:461
+msgid "The passwords do not match. Please give them again."
+msgstr ""
+
+#: IDF/Form/Field/EmailList.php:45
+msgid "Please enter one or more valid email addresses."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:57 IDF/Form/IssueUpdate.php:46
+#: IDF/Form/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:73
+#: IDF/Form/UpdateUpload.php:42 IDF/Form/Upload.php:40
+#: IDF/gettexttemplates/idf/issues/base.html.php:3 IDF/Views/Download.php:65
+#: IDF/Views/Download.php:347 IDF/Views/Issue.php:62 IDF/Views/Issue.php:221
+#: IDF/Views/Issue.php:302 IDF/Views/Issue.php:391 IDF/Views/Issue.php:543
+#: IDF/Views/Issue.php:766 IDF/Views/Issue.php:825 IDF/Views/Review.php:58
+#: IDF/Views/User.php:83 IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:145
+#: IDF/Views/Wiki.php:186
+msgid "Summary"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:76 IDF/Form/IssueUpdate.php:66
+#: IDF/Form/ReviewCreate.php:83
+msgid "The \"upload_issue_path\" configuration variable was not set."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:86 IDF/Form/IssueUpdate.php:76
+msgid "Attach a file"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:99 IDF/Form/IssueUpdate.php:89
+#: IDF/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:83
+#: IDF/Views/Issue.php:63 IDF/Views/Issue.php:222 IDF/Views/Issue.php:304
+#: IDF/Views/Issue.php:392 IDF/Views/Issue.php:544 IDF/Views/Issue.php:767
+#: IDF/Views/Issue.php:826 IDF/Views/Review.php:59 IDF/Views/User.php:84
+msgid "Status"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:108 IDF/Form/IssueUpdate.php:99
+msgid "Owner"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:118 IDF/Form/IssueUpdate.php:112
+#: IDF/Form/IssueUpdate.php:129
+msgid "This issue"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:210
+msgid "You cannot add a label with the \"Status\" prefix to an issue."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:211 IDF/Form/IssueCreate.php:218
+#: IDF/Form/UpdateUpload.php:110 IDF/Form/Upload.php:121
+#: IDF/Form/WikiPageCreate.php:151 IDF/Form/WikiPageUpdate.php:162
+msgid "You provided an invalid label."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:217 IDF/Form/UpdateUpload.php:109
+#, php-format
+msgid "You cannot provide more than one label from the %s class to an issue."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:228 IDF/Form/IssueUpdate.php:194
+msgid "You need to provide a description of the issue."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:251 IDF/Form/ReviewCreate.php:159
+msgid "You provided an invalid status."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:272
+msgid "You provided an invalid relation type."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:294
+#, php-format
+msgid "The value \"%s\" is not a valid issue id."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:300
+#, php-format
+msgid "The issue \"%s\" does not exist."
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:86
+msgid "is related to"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:87
+msgid "blocks"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:88
+msgid "is blocked by"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:89
+msgid "duplicates"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:90
+msgid "is duplicated by"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:97
+msgid ""
+"Define an issue template to hint the reporter to provide certain information"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:106
+msgid "Open issue status values"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:114
+msgid "Closed issue status values"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:123
+msgid "Predefined issue labels"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:125
+msgid ""
+"The first \"Type:\" and \"Priority:\" entries found in this list are "
+"automatically chosen as defaults for new issues."
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:133
+msgid "Each issue may have at most one label with each of these classes."
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:140
+msgid "Issue relations"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:142
+msgid ""
+"You can define bidirectional relations like \"is related to\" or \"blocks, "
+"is blocked by\". For standard relations pre-configured translations exist, "
+"new relations should however be defined in a language that is understood by "
+"all project members."
+msgstr ""
+
+#: IDF/Form/IssueUpdate.php:56 IDF/Form/ReviewFileComment.php:45
+#: IDF/Form/WikiPageUpdate.php:82 IDF/Form/WikiResourceUpdate.php:66
+msgid "Comment"
+msgstr ""
+
+#: IDF/Form/IssueUpdate.php:316
+msgid "No changes were entered."
+msgstr ""
+
+#: IDF/Form/MembersConf.php:104
+#, php-format
+msgid "The following login is invalid: %s."
+msgid_plural "The following logins are invalid: %s."
+msgstr[0] ""
+msgstr[1] ""
+
+#: IDF/Form/Password.php:34
+msgid "Your login or email"
+msgstr ""
+
+#: IDF/Form/Password.php:35
+msgid "Provide either your login or your email to recover your password."
+msgstr ""
+
+#: IDF/Form/Password.php:49 IDF/Form/Password.php:64
+msgid ""
+"Sorry, we cannot find a user with this email address or login. Feel free to "
+"try again."
+msgstr ""
+
+#: IDF/Form/Password.php:100
+msgid "Password Recovery - InDefero"
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:36 IDF/Form/PasswordReset.php:39
+#: IDF/Form/UserChangeEmail.php:36
+msgid "Your verification key"
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:50 IDF/Form/PasswordReset.php:89
+msgid ""
+"We are sorry but this validation key is not valid. Maybe you should directly "
+"copy/paste it from your validation email."
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:61 IDF/Form/PasswordReset.php:100
+msgid ""
+"Sorry, but this verification key has expired, please restart the password "
+"recovery sequence. For security reasons, the verification key is only valid "
+"24h."
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:76 IDF/Form/PasswordReset.php:108
+#: IDF/Form/RegisterConfirmation.php:137 IDF/Form/RegisterInputKey.php:72
+msgid "Cannot save an invalid form."
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:45 IDF/Form/RegisterConfirmation.php:69
+#: IDF/Form/UserAccount.php:77
+msgid "Your password"
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80
+msgid ""
+"Your password must be hard for other people to find it, but easy for you to "
+"remember."
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:56 IDF/Form/RegisterConfirmation.php:80
+#: IDF/Form/UserAccount.php:89
+msgid "Confirm your password"
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:74 IDF/Form/RegisterConfirmation.php:122
+msgid "The two passwords must be the same."
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:77
+msgid ""
+"This account is not active. Please contact the forge administrator to "
+"activate it."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:43
+msgid "Short Description"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:85
+msgid "The \"upload_path\" configuration variable was not set."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:90
+msgid "Update the logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:92
+msgid "The logo must be a picture with a size of 32 by 32."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:103
+msgid "Remove the current logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:139
+msgid "Could not determine the size of the uploaded picture."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:143
+msgid "The picture must have a size of 32 by 32."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:164
+msgid "The entered URL is invalid. Only http and https URLs are allowed."
+msgstr ""
+
+#: IDF/Form/Register.php:41
+msgid "Your login"
+msgstr ""
+
+#: IDF/Form/Register.php:45
+msgid ""
+"The login must be between 3 and 15 characters long and contain only letters "
+"and digits."
+msgstr ""
+
+#: IDF/Form/Register.php:53 IDF/Form/UserAccount.php:59
+msgid "Your email"
+msgstr ""
+
+#: IDF/Form/Register.php:55
+msgid "We will never send you any unsolicited emails. We hate spam too!"
+msgstr ""
+
+#: IDF/Form/Register.php:60
+msgid "I agree to the terms and conditions."
+msgstr ""
+
+#: IDF/Form/Register.php:88
+msgid ""
+"We know, this is boring, but you need to agree with the terms and conditions."
+msgstr ""
+
+#: IDF/Form/Register.php:97
+#, php-format
+msgid ""
+"The email \"%1$s\" is already used. If you need to, you can recover your password."
+msgstr ""
+
+#: IDF/Form/Register.php:148
+msgid "Confirm the creation of your account."
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:40 IDF/Form/RegisterInputKey.php:36
+msgid "Your confirmation key"
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:72
+msgid ""
+"Your password must be hard for other people to guess, but easy for you to "
+"remember."
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:99 IDF/Form/RegisterInputKey.php:50
+msgid ""
+"We are sorry but this confirmation key is not valid. Maybe you should "
+"directly copy/paste it from your confirmation email."
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:110
+#, php-format
+msgid ""
+"This account has already been confirmed. Maybe should you try to recover your password."
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:74
+#: IDF/gettexttemplates/idf/source/base.html.php:5
+#: IDF/gettexttemplates/idf/source/changelog.html.php:7
+msgid "Commit"
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:92
+msgid "Patch"
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:119
+msgid "We were not able to parse your patch. Please provide a valid patch."
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:128
+msgid "You provided an invalid commit."
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:202
+msgid "Initial patch to be reviewed."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:56
+msgid "General comment"
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:113
+msgid ""
+"You need to provide your general comment about the proposal, or comments on "
+"at least one file."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:124
+msgid "The status have been updated."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:130
+msgid "This field is required."
+msgstr ""
+
+#: IDF/Form/SourceConf.php:54 IDF/Form/UploadConf.php:70
+msgid "Webhook URL"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:38 IDF/gettexttemplates/idf/admin/base.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html.php:8
+#: IDF/gettexttemplates/idf/base-full.html~.php:7
+#: IDF/gettexttemplates/idf/base.html.php:8
+#: IDF/gettexttemplates/idf/base.html~.php:7
+#: IDF/gettexttemplates/idf/downloads/base.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:14
+#: IDF/Views/Project.php:97
+msgid "Downloads"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.php:12
+#: IDF/gettexttemplates/idf/base-full.html~.php:11
+#: IDF/gettexttemplates/idf/base.html.php:12
+#: IDF/gettexttemplates/idf/base.html~.php:11
+msgid "Code Review"
+msgstr "Revisão de Código"
+
+#: IDF/Form/TabsConf.php:40 IDF/gettexttemplates/idf/admin/base.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html~.php:8
+#: IDF/gettexttemplates/idf/base.html.php:9
+#: IDF/gettexttemplates/idf/base.html~.php:8
+msgid "Documentation"
+msgstr "Documentação"
+
+#: IDF/Form/TabsConf.php:41 IDF/gettexttemplates/idf/admin/base.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html.php:11
+#: IDF/gettexttemplates/idf/base-full.html~.php:10
+#: IDF/gettexttemplates/idf/base.html.php:11
+#: IDF/gettexttemplates/idf/base.html~.php:10
+msgid "Source"
+msgstr "Código Fonte"
+
+#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.php:10
+#: IDF/gettexttemplates/idf/base-full.html~.php:9
+#: IDF/gettexttemplates/idf/base.html.php:10
+#: IDF/gettexttemplates/idf/base.html~.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:17
+msgid "Issues"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:50
+msgid "Open to all"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:51
+msgid "Signed in users"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:54
+msgid "Closed"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:84
+#, fuzzy
+msgid "Others"
+msgstr "Outro"
+
+#: IDF/Form/TabsConf.php:107
+msgid "Extra authorized users"
+msgstr ""
+
+#: IDF/Form/Upload.php:59 IDF/Form/WikiResourceCreate.php:65
+#: IDF/Form/WikiResourceUpdate.php:56
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7
+#: IDF/Views/Download.php:64 IDF/Views/Download.php:346
+msgid "File"
+msgstr ""
+
+#: IDF/Form/Upload.php:87 IDF/Form/WikiResourceCreate.php:96
+#: IDF/Form/WikiResourceUpdate.php:83
+msgid "For security reasons, you cannot upload a file with this extension."
+msgstr ""
+
+#: IDF/Form/Upload.php:120
+#, php-format
+msgid "You cannot provide more than one label from the %s class to a download."
+msgstr ""
+
+#: IDF/Form/UploadArchive.php:41
+#, fuzzy
+msgid "Archive file"
+msgstr "o arquivo"
+
+#: IDF/Form/UploadArchive.php:67
+#, php-format
+msgid ""
+"For security reasons, you cannot upload a file (%s) with this extension."
+msgstr ""
+
+#: IDF/Form/UploadArchive.php:98
+#, php-format
+msgid ""
+"You cannot provide more than label from the %1$s class to a download (%2$s)."
+msgstr ""
+
+#: IDF/Form/UploadArchive.php:109
+#, php-format
+msgid ""
+"A file with the name \"%s\" has already been uploaded and is not marked to "
+"be replaced."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:41
+msgid "The archive does not exist."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:48
+#, php-format
+msgid "The archive could not be read (code %d)."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:53
+msgid "The archive does not contain a manifest.xml."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:61
+#, php-format
+msgid "The archive's manifest is invalid: %s"
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:77
+#, php-format
+msgid "The entry %d in the manifest is missing a file name."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:82
+#, php-format
+msgid "The entry %d in the manifest is missing a summary."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:86
+msgid "The manifest must not reference itself."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:91
+#, php-format
+msgid "The entry %s in the manifest does not exist in the archive."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:96
+#, php-format
+msgid "The entry %s in the manifest is referenced more than once."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:108
+#, php-format
+msgid "The entry %s in the manifest has more than the six allowed labels set."
+msgstr ""
+
+#: IDF/Form/UploadConf.php:53
+msgid "Predefined download labels"
+msgstr ""
+
+#: IDF/Form/UploadConf.php:62
+msgid "Each download may have at most one label with each of these classes"
+msgstr ""
+
+#: IDF/Form/UserAccount.php:61
+msgid ""
+"If you change your email address, an email will be sent to the new address "
+"to confirm it."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:80
+msgid "Leave blank if you do not want to change your password."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:166
+msgid ""
+"Paste an SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+
+#: IDF/Form/UserAccount.php:171
+msgid "Add a secondary email address"
+msgstr ""
+
+#: IDF/Form/UserAccount.php:173
+msgid "You will get an email to confirm that you own the address you specify."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:200
+msgid "Confirm your new email address."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:203
+#, php-format
+msgid ""
+"A validation email has been sent to \"%s\" to validate the email address "
+"change."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:341
+msgid ""
+"Please check the key as it does not appear to be a valid SSH public key."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:363
+msgid ""
+"Please check the key as it does not appear to be a valid monotone public key."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:371
+msgid "Public key looks like neither an SSH nor monotone public key."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:383
+msgid "You already have uploaded this key."
+msgstr ""
+
+#: IDF/Form/UserChangeEmail.php:63
+msgid ""
+"The validation key is not valid. Please copy/paste it from your confirmation "
+"email."
+msgstr ""
+
+#: IDF/Form/WikiConf.php:49
+msgid "Predefined documentation page labels"
+msgstr ""
+
+#: IDF/Form/WikiConf.php:58
+msgid ""
+"Each documentation page may have at most one label with each of these classes"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:38
+msgid ""
+"# Introduction\n"
+"\n"
+"Add your content here.\n"
+"\n"
+"\n"
+"# Details\n"
+"\n"
+"Add your content here. Format your content with:\n"
+"\n"
+"* Text in **bold** or *italic*.\n"
+"* Headings, paragraphs, and lists.\n"
+"* Links to other [[WikiPage]].\n"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:57
+msgid "PageName"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:60 IDF/Form/WikiPageUpdate.php:50
+msgid "Page title"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:66 IDF/Form/WikiPageUpdate.php:56
+msgid ""
+"The page name must contains only letters, digits and the dash (-) character."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:71 IDF/Form/WikiPageUpdate.php:61
+msgid "This one line description is displayed in the list of pages."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:108 IDF/Form/WikiPageUpdate.php:119
+#: IDF/Form/WikiResourceCreate.php:78
+msgid "The title contains invalid characters."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:114 IDF/Form/WikiPageUpdate.php:125
+msgid "A page with this title already exists."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:150 IDF/Form/WikiPageUpdate.php:161
+#, php-format
+msgid "You cannot provide more than one label from the %s class to a page."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:200
+msgid "Initial page creation"
+msgstr ""
+
+#: IDF/Form/WikiPageDelete.php:39
+msgid "Yes, I understand that the page and all its revisions will be deleted."
+msgstr ""
+
+#: IDF/Form/WikiPageDelete.php:50 IDF/Form/WikiResourceDelete.php:50
+msgid "You need to confirm the deletion."
+msgstr ""
+
+#: IDF/Form/WikiPageUpdate.php:83 IDF/Form/WikiResourceUpdate.php:67
+msgid "One line to describe the changes you made."
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:40
+msgid "ResourceName"
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:44
+msgid "Resource title"
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:50
+msgid ""
+"The resource name must contains only letters, digits and the dash (-) "
+"character."
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:55 IDF/Form/WikiResourceUpdate.php:47
+#, fuzzy
+msgid "This one line description is displayed in the list of resources."
+msgstr "Descrição do projeto em uma linha."
+
+#: IDF/Form/WikiResourceCreate.php:84
+msgid "A resource with this title already exists."
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:142
+msgid "Initial resource creation"
+msgstr ""
+
+#: IDF/Form/WikiResourceDelete.php:39
+msgid ""
+"Yes, I understand that the resource and all its revisions will be deleted."
+msgstr ""
+
+#: IDF/Form/WikiResourceUpdate.php:89
+#, php-format
+msgid ""
+"The mime type of the uploaded file \"%1$s\" does not match the mime type of "
+"this resource \"%2$s\""
+msgstr ""
+
+#: IDF/Form/WikiResourceUpdate.php:97
+msgid "The current version of the resource and the uploaded file are equal."
+msgstr ""
+
+#: IDF/Gconf.php:60 IDF/Search/Occ.php:56
+msgid "model class"
+msgstr ""
+
+#: IDF/Gconf.php:66 IDF/Search/Occ.php:62
+msgid "model id"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:3
+msgid "Project Summary"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:6
+msgid "Issue Tracking"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:8
+msgid "Project Members"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:9
+msgid "Tabs Access and Notifications"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/downloads.html.php:3
+#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3
+#: IDF/gettexttemplates/idf/admin/wiki.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/labels.html.php:3
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
List one status value per line in desired sort-order.
\n"
+"
Optionally, use an equals-sign to document the meaning of each status "
+"value.
The webhook URL setting specifies an URL to which a HTTP PUT"
+"strong>\n"
+"request is sent after a new download has been added or to which a HTTP "
+"POST\n"
+"request is sent after an existing download has been updated.\n"
+"If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/upload
\n"
+"
http://domain.com/upload?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each download:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%d - download id
\n"
+"
\n"
+"\n"
+"
For example, updating download 123 of project 'my-project' with\n"
+"web hook URL http://mydomain.com/%p/%d would send a POST "
+"request to\n"
+"http://mydomain.com/my-project/123.
A project owner may make any change to this project, including removing "
+"other project owners. You need to be carefull when you give owner rights."
+"p>\n"
+"
A project member will not have access to the administration area but will "
+"have more options available in the use of the project.
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:3
+msgid "You can find here the current repository configuration of your project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:4
+msgid ""
+"
The webhook URL setting specifies an URL to which a HTTP \n"
+"%%hook_request_method%% request is sent after each "
+"repository\n"
+"commit. If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/commit
\n"
+"
http://domain.com/commit?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each commit:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%r - revision number
\n"
+"
\n"
+"\n"
+"
For example, committing revision 123 to project 'my-project' with\n"
+"post-commit URL http://mydomain.com/%p/%r would send a request "
+"to\n"
+"http://mydomain.com/my-project/123.
The description of the project can be improved using the Markdown syntax.
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:7
+msgid ""
+"The form contains some errors. Please correct them to update the summary."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:8
+msgid "Current logo"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html~.php:4
+#: IDF/gettexttemplates/idf/base.html.php:4
+#: IDF/gettexttemplates/idf/base.html~.php:4
+#: IDF/gettexttemplates/idf/main-menu.html.php:8
+#: IDF/gettexttemplates/idf/project-list.html.php:4
+msgid "Project logo"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:10
+msgid "Your project does not have a logo configured yet."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:3
+msgid ""
+"This section allows you to configure project tabs access rights and "
+"notifications."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:4
+msgid ""
+"Tab access controls whether a single user can navigate into a particular "
+"section of your project via the main menu or automatically generated object "
+"links."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:5
+msgid ""
+"If you mark a project as private, only the project members and "
+"administrators, together with the extra authorized users you provide will "
+"have access to the project as a whole. You will still be able to define "
+"further access rights for the different tabs but the \"Open to all\" and "
+"\"Signed in users\" will default to authorized users only."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:6
+msgid ""
+"For the extra authorized user list, specify each person by its login. Each "
+"person must have already registered with the given login. Separate the "
+"logins with commas and/or new lines."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:7
+msgid ""
+"Only project members and admins have write access to the source. If you "
+"restrict the access to the source, anonymous access is not provided and the "
+"users must authenticate themselves with their password or SSH key."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
+#, php-format
+msgid ""
+"Here you can configure who should be notified about changes in a particular "
+"section. You can also configure additional addresses, like the one of a "
+"mailing list, that should be notified. (Keep in mind that you might have to "
+"register the sender address %%from_email%% to let the "
+"mailing list actually accept notification emails.) Multiple email addresses "
+"must be separated through commas (',')."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:9
+msgid ""
+"The form contains some errors. Please correct them to update the access "
+"rights."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
+msgid "Access Rights"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:11
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
+#, fuzzy
+msgid "Notifications"
+msgstr "data de modificação"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:3
+#: IDF/gettexttemplates/idf/base-full.html~.php:3
+#: IDF/gettexttemplates/idf/base.html.php:3
+#: IDF/gettexttemplates/idf/base.html~.php:3
+#, php-format
+msgid ""
+"Sign in or create your account to create issues or "
+"add comments"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:6
+#: IDF/gettexttemplates/idf/base.html.php:6
+#: IDF/gettexttemplates/idf/project-list.html.php:6
+msgid "External link to project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html~.php:6
+#: IDF/gettexttemplates/idf/base.html.php:7
+#: IDF/gettexttemplates/idf/base.html~.php:6
+msgid "Project Home"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:13
+#: IDF/gettexttemplates/idf/base-full.html~.php:12
+#: IDF/gettexttemplates/idf/base.html.php:13
+#: IDF/gettexttemplates/idf/base.html~.php:12
+msgid "Project Management"
+msgstr "Gerência de Projeto"
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:4
+#: IDF/gettexttemplates/idf/downloads/index.html.php:4
+#: IDF/Views/Download.php:235
+msgid "New Download"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:5
+msgid "Upload Archive"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:3
+msgid ""
+"Each file must have a distinct name and file contents\n"
+"cannot be changed, so be sure to include release numbers in each file\n"
+"name."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:6
+#, php-format
+msgid ""
+"You can use the Markdown syntax for the description."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:7
+msgid "The form contains some errors. Please correct them to submit the file."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:8
+msgid "Submit File"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:9
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:8
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:21
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:14
+#: IDF/gettexttemplates/idf/issues/create.html.php:14
+#: IDF/gettexttemplates/idf/issues/view.html.php:27
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:7
+#: IDF/gettexttemplates/idf/register/index.html.php:8
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:5
+#: IDF/gettexttemplates/idf/review/create.html.php:12
+#: IDF/gettexttemplates/idf/review/view.html.php:41
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:5
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:13
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:5
+msgid "Cancel"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:10
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:9
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:6
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:6
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:6
+msgid "Instructions"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:3
+msgid ""
+"The archive must include a manifest.xml file with meta "
+"information about the\n"
+"files to process inside the archive. All processed files must be unique or "
+"replace existing files explicitely."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:5
+#, php-format
+msgid ""
+"You can learn more about the archive format here."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:6
+msgid ""
+"The form contains some errors. Please correct them to submit the archive."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:7
+msgid "Submit Archive"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:3
+msgid ""
+"Attention! If you want to delete a specific version of your "
+"software, maybe, someone is depending on this specific version to run his "
+"systems. Are you sure, you will not affect anybody when removing this file?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:4
+#, php-format
+msgid ""
+"Instead of deleting the file, you could mark it as "
+"deprecated."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:5
+#: IDF/gettexttemplates/idf/downloads/view.html.php:4
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:4
+#: IDF/gettexttemplates/idf/issues/view.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:5
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:7
+#, php-format
+msgid "by %%submitter%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:6
+msgid "Delete File"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:8
+#: IDF/gettexttemplates/idf/downloads/view.html.php:14
+msgid "Uploaded:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:9
+#: IDF/gettexttemplates/idf/downloads/view.html.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:29
+#: IDF/gettexttemplates/idf/review/view.html.php:27
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:14
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:15
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:17
+msgid "Updated:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6
+#: IDF/gettexttemplates/idf/listProjects.html.php:17
+msgid "Downloads:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:11
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:17
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml~.php:6
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:10
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:21
+#: IDF/gettexttemplates/idf/issues/view.html.php:33
+#: IDF/gettexttemplates/idf/project-list.html.php:8
+#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:13
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:16
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:12
+#: IDF/IssueComment.php:157 IDF/Wiki/PageRevision.php:204
+msgid "Labels:"
+msgstr "Marcadores:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3
+msgid "A new file is available for download:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:4
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:5
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:8
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:4
+msgid "Hello,"
+msgstr "Olá,"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:5
+msgid "Project:"
+msgstr "Projeto:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:6
+msgid "Submitted by:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:8
+msgid "Download:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:10
+#: IDF/gettexttemplates/idf/review/view.html.php:31
+#: IDF/gettexttemplates/idf/user/public.html.php:4
+msgid "Description:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:3
+msgid "A file download was updated:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3
+msgid "Details"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:3
+#, php-format
+msgid "See the deprecated files."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:5
+msgid "Number of files:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:3
+msgid ""
+"Attention! This file is marked as deprecated, download it "
+"only if you are sure you need this specific version."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:5
+msgid "md5:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:6
+msgid "Changes"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:7
+msgid "The form contains some errors. Please correct them to update the file."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:8
+msgid "Update File"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:12
+msgid "Remove this file"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:18
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:12
+msgid "Trash"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:13
+msgid "Delete this file"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:3
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:3
+#: IDF/gettexttemplates/idf/faq.html.php:65
+msgid "Here we are, just to help you."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:4
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:4
+#: IDF/gettexttemplates/idf/faq.html.php:66
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:4
+#: IDF/gettexttemplates/idf/index.html.php:4 IDF/Views/Admin.php:77
+#: IDF/Views.php:91
+msgid "Projects"
+msgstr "Projetos"
+
+#: IDF/gettexttemplates/idf/faq.html.php:3
+msgid ""
+"
This is simple:
\n"
+"\n"
+"
Write in the comments \"This is a duplicate of issue 123\" or - if you "
+"are a member of the crew -\n"
+"directly add the \"duplicates\" relation with the value \"123\" below the "
+"comment field. Change \"123\"\n"
+"with the corresponding issue number.
\n"
+"
Change the status of the current issue to Duplicate.
\n"
+"
Submit the changes.
\n"
+""
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:11
+msgid ""
+"You need to create an account on Gravatar, this takes about 5 minutes and is free."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:12
+msgid ""
+"\n"
+"
To embed any previously uploaded resource into your wiki page, you can "
+"use the [[!ResourceName]] syntax.
\n"
+"\n"
+"
The rendering of the resource can then be further fine-tuned:\n"
+"
\n"
+"
[[!ImageResource, align=right, width=200]] renders "
+"\"ImageResource\" right-aligned and scale its width to 200
\n"
+"
[[!TextResource, align=center, width=300, height=300]] "
+"renders \"TextResource\" in a centered, 300 by 300 px iframe
\n"
+"
[[!AnyResource, preview=no]] does not render a preview of "
+"the resource, but only provides a download link (default for binary "
+"resources)
\n"
+"
[[!BinaryResource, title=Download]] renders the download "
+"link of \"BinaryResource\" with an alternative title
\n"
+"
\n"
+"\n"
+"\n"
+"Resources are versioned, just like wiki pages. If you update a resource, old "
+"wiki pages still show the state of the resource\n"
+"at the time when the wiki page was edited. If you specifically want to "
+"update a resource on a page, you therefor need to update\n"
+"the resource at first and then also the page where it is referenced, "
+"otherwise the change won't be visible until the next regular edit. \n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:28
+msgid ""
+"
If you have to publish many files at once for a new release, it is a very "
+"tedious task\n"
+"to upload them one after another and enter meta information like a summary, "
+"a description or additional\n"
+"labels for each of them.
\n"
+"
InDefero therefore supports a special archive format that is basically a "
+"standard zip file which comes with\n"
+"some meta information. These meta information are kept in a special manifest "
+"file, which is distinctly kept from\n"
+"the rest of the files in the archive that should be published.
\n"
+"
Once this archive has been uploaded, InDefero reads in the meta "
+"information, unpacks the other files from\n"
+"the archive and creates new individual downloads for each of them.
"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:36
+#, php-format
+msgid "Learn more about the archive format."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:37
+msgid ""
+"The API (Application Programming Interface) is used to interact with "
+"InDefero with another program. For example, this can be used to create a "
+"desktop program to submit new tickets easily."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:38
+#, php-format
+msgid "Learn more about the API."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:39
+#: IDF/gettexttemplates/idf/faq.html.php:45
+msgid "What are the keyboard shortcuts?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:40
+#: IDF/gettexttemplates/idf/faq.html.php:60
+msgid "How to mark an issue as duplicate?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:41
+#: IDF/gettexttemplates/idf/faq.html.php:61
+msgid "How can I display my head next to my comments?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:42
+#: IDF/gettexttemplates/idf/faq.html.php:62
+msgid "How can I embed images and other resources in my documentation pages?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:43
+#: IDF/gettexttemplates/idf/faq.html.php:63
+msgid "What is this \"Upload Archive\" functionality about?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:44
+#: IDF/gettexttemplates/idf/faq.html.php:64
+msgid "What is the API and how is it used?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:46
+msgid "Shift+h: This help page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:47
+msgid "If you are in a project, you have the following shortcuts:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:48
+msgid "Shift+u: Project updates."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:49
+msgid "Shift+d: Downloads."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:50
+msgid "Shift+o: Documentation."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:51
+msgid "Shift+a: Create a new issue."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:52
+msgid "Shift+i: List of open issues."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:53
+msgid "Shift+m: The issues you submitted."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:54
+msgid "Shift+w: The issues assigned to you."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:55
+msgid "Shift+s: Source."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:56
+msgid "You also have the standard access keys:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:57
+msgid "Alt+1: Home."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:58
+msgid "Alt+2: Skip the menus."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:59
+msgid "Alt+4: Search (when available)."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
+msgid "Forge"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:5
+msgid "People"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:6
+msgid "Usher"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/forge/base.html.php:3
+#, fuzzy
+msgid "Frontpage"
+msgstr "página"
+
+#: IDF/gettexttemplates/idf/gadmin/forge/index.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
You can set up a custom forge page that is used as entry page for the "
+"forge instead of the plain project listing. This page is then also "
+"accessible via the 'Home' link in main menu bar.
Additionally, the following macros are available: \n"
+"
\n"
+"
{projectlist, label=..., order=(name|activity), limit=...}"
+"code> - Renders a project list that can optionally be filtered by label, "
+"ordered by 'name' or 'activity' and / or limited to a specific number of "
+"projects.
\n"
+"
\n"
+"\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:7
+msgid "Project List"
+msgstr "Lista de Projetos"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4
+#: IDF/Views/Admin.php:110
+#, fuzzy
+msgid "Project Labels"
+msgstr "Lista de Projetos"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:16
+#: IDF/gettexttemplates/idf/listProjects.html.php:6 IDF/Views/Admin.php:186
+msgid "Create Project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:6
+msgid "Change Project Details"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3
+msgid ""
+"You can select the type of repository you want. In the case of subversion, "
+"you can use optionally a remote repository instead of the local one."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:4
+msgid ""
+"Once you have defined the repository type, you cannot change it"
+"strong>."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:5
+msgid ""
+"\n"
+"
Specify each person by its login. Each person must have already "
+"registered with the given login.
\n"
+"
Separate the logins with commas and/or new lines.
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:14
+msgid ""
+"The form contains some errors. Please correct them to create the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:15
+msgid "Provide at least one owner for the project or use a template."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:15
+msgid "Instructions:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:3
+#, php-format
+msgid ""
+"Confirmation code to confirm the deletion of the project: \n"
+"%%code%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:5
+msgid ""
+"\n"
+"Attention! Deleting a project is a one second operation\n"
+"with the consequences that all the data related to the \n"
+"project will be deleted.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:10
+msgid ""
+"The form contains some errors. Please correct them to delete the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:11
+msgid "Project Statistics"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:12
+msgid "Tab"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:13
+msgid "Number"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:15
+msgid "Code reviews"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:16
+#: IDF/Views/Project.php:93
+msgid "Commits"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:18
+msgid "Documentation pages"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:20
+msgid "Delete Project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:22
+msgid ""
+"For large projects, the suppression can take a while, please be patient."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:3
+msgid "Space Usage Statistics"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:4
+msgid "Repositories:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:18
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:16
+msgid "Attachments:"
+msgstr "Anexos:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7
+msgid "Database:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:8
+msgid "Total Forge:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:13
+msgid ""
+"The form contains some errors. Please correct them to update the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:14
+msgid "Provide at least one owner for the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:15
+msgid "Update Project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:20
+msgid "Delete this project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:21
+msgid "You will be asked to confirm."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3
+#: IDF/Views/Admin.php:264
+msgid "User List"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:13
+msgid "Update User"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4
+msgid "Create User"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3
+msgid "The form contains some errors. Please correct them to create the user."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:6
+msgid "The user password will be sent by email to the user."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/createuser-email.txt.php:3
+#, php-format
+msgid ""
+"Hello %%user%%,\n"
+"\n"
+"An account on the forge has been created for you by\n"
+"the administrator %%admin%%.\n"
+"\n"
+"Please find here your details to access the forge:\n"
+"\n"
+" Address: %%url%%\n"
+" Login: %%user.login%%\n"
+" Password: %%password%%\n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:3
+#, php-format
+msgid "See not validated users."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:4
+msgid "
You have here an overview of the users registered in the forge.
"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:5
+msgid "Number of users:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:3
+msgid ""
+"If you are changing the email address of the user, you\n"
+"need to ensure that you are providing a valid email\n"
+"address"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:6
+msgid ""
+"If you give the user staff rights, the user will be\n"
+"able to create new projects and update other non staff users.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:9
+msgid "The form contains some errors. Please correct them to update the user."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:4
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:4
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4
+msgid "Login:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:11
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:5
+msgid "Public Profile"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:12
+msgid "Administrative"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3
+msgid "Configured servers"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:4
+#: IDF/Views/Admin.php:421
+msgid "Usher control"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:3
+msgid "address"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:4
+msgid "port"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:5
+msgid "No connections found."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3
+msgid "current server status:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:4
+msgid "startup"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:5
+msgid "shutdown"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:6
+msgid "reload server configuration:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:7
+msgid "reload"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:11
+msgid "Status explanation"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:9
+msgid "active with n total open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:10
+msgid "waiting for new connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:11
+msgid "usher is being shut down, not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:12
+msgid ""
+"usher is shut down, all local servers are stopped and not accepting "
+"connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:3
+msgid "server name"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:4 IDF/Issue.php:99
+#: IDF/Review.php:102
+msgid "status"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:5
+msgid "action"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:6
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:6
+msgid "No monotone servers configured."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:7
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:7
+msgid "stop"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:8
+msgid "start"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:9
+msgid "kill"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:10
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:10
+msgid "active connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:12
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:12
+msgid "remote server without open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:13
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:13
+msgid "server with n open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:14
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:14
+msgid "local server running, without open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:15
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:15
+msgid "local server not running, waiting for connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:16
+msgid "local server is about to stop, n connections still open"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:17
+msgid "local server not running, not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:18
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:18
+msgid "usher is shut down, not running and not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.atom.php:3
+#, php-format
+msgid "Personal project feed for %%user%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:6
+msgid "Home"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:3
+#, php-format
+msgid "Attachment to issue %%issue.id%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:5
+#: IDF/gettexttemplates/idf/review/view.html.php:35
+#: IDF/gettexttemplates/idf/source/commit.html.php:23
+#: IDF/gettexttemplates/idf/source/commit.html~.php:22
+#: IDF/gettexttemplates/idf/source/git/file.html.php:6
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:12
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:7
+msgid "Archive"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:6
+#: IDF/gettexttemplates/idf/source/git/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:10
+msgid "Download this file"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:7
+#: IDF/gettexttemplates/idf/issues/view.html.php:28
+#: IDF/gettexttemplates/idf/review/view.html.php:26
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:13
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:16
+msgid "Created:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:4
+msgid "All Issues"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:5
+msgid "My Issues"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:6
+msgid "My watch list"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:7
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:6
+#: IDF/gettexttemplates/idf/issues/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:5
+#: IDF/gettexttemplates/idf/issues/search.html.php:8
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:5
+msgid "New Issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:8
+#: IDF/gettexttemplates/idf/wiki/base.html.php:9
+msgid "Search"
+msgstr "Pesquisar"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:9
+msgid "Back to the issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:3
+#, php-format
+msgid ""
+"
Website addresses are automatically linked and you can link to another "
+"page in the documentation using double square brackets like that "
+"[[AnotherPage]].
\n"
+"
If you want to embed uploaded resources, use the [[!ResourceName]]"
+"code> syntax for that. This is described more in detail in the FAQ.
\n"
+"
To directly include a file content from the repository, embrace its path "
+"with triple square brackets: [[[my/file.txt]]].
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/feedfragment-resource.xml.php:4
+msgid "Initial creation"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:3
+#, php-format
+msgid "See the deprecated pages."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:5
+msgid "Number of pages:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/listResources.html.php:4
+msgid "Number of resources:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/search.html.php:4
+msgid "Pages found:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:3
+msgid "The form contains some errors. Please correct them to update the page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:6
+msgid "Update Page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:11
+msgid "Delete this page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:4
+msgid "Update Resource"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:9
+msgid "Delete this resource"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:3
+msgid ""
+"Attention! This page is marked as deprecated, \n"
+"use it as reference only if you are sure you need these specific information."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:5
+#, php-format
+msgid ""
+"You are looking at an old revision of the page \n"
+"%%page.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:10
+msgid "Table of Content"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:13
+msgid "Delete this revision"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:3
+#, php-format
+msgid ""
+"You are looking at an old revision of the resource \n"
+"%%resource.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:14
+msgid "Page Usage"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:15
+msgid "This resource is not used on any pages yet."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:3
+msgid "A new documentation page has been created:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:14
+msgid "Documentation page:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3
+msgid "The following documentation page has been updated:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7
+msgid "Updated by:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13
+msgid "New content:"
+msgstr ""
+
+#: IDF/Issue.php:76
+msgid "owner"
+msgstr "proprietário"
+
+#: IDF/Issue.php:84 IDF/Wiki/Page.php:86
+msgid "interested users"
+msgstr ""
+
+#: IDF/Issue.php:85
+msgid ""
+"Interested users will get an email notification when the issue is changed."
+msgstr ""
+
+#: IDF/Issue.php:92 IDF/Project.php:94 IDF/Review.php:95 IDF/Upload.php:99
+#: IDF/Wiki/Page.php:94
+msgid "labels"
+msgstr ""
+
+#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114
+#: IDF/Upload.php:118 IDF/Wiki/Page.php:106 IDF/Wiki/Resource.php:101
+msgid "modification date"
+msgstr "data de modificação"
+
+#: IDF/Issue.php:212 IDF/IssueComment.php:143
+#, php-format
+msgid ""
+"Issue %3$d, %4$s"
+msgstr ""
+
+#: IDF/Issue.php:214
+#, fuzzy, php-format
+msgid "Creation of issue %3$d, by %4$s"
+msgstr "Comentário sobre problema %d, por %s"
+
+#: IDF/Issue.php:224
+#, php-format
+msgid "%1$s: Issue %2$d created - %3$s"
+msgstr ""
+
+#: IDF/Issue.php:307
+#, php-format
+msgid "Issue %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Issue.php:311
+#, php-format
+msgid "Updated Issue %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/IssueComment.php:51 IDF/IssueRelation.php:47
+msgid "issue"
+msgstr ""
+
+#: IDF/IssueComment.php:58 IDF/IssueFile.php:49 IDF/Review/Comment.php:62
+#: IDF/Review/FileComment.php:49 IDF/Review/FileComment.php:69
+msgid "comment"
+msgstr "comentário"
+
+#: IDF/IssueComment.php:72 IDF/Review/Comment.php:75 IDF/Upload.php:63
+#: IDF/Wiki/PageRevision.php:85
+msgid "changes"
+msgstr "alterações"
+
+#: IDF/IssueComment.php:73
+msgid "Serialized array of the changes in the issue."
+msgstr ""
+
+#: IDF/IssueComment.php:180
+#, fuzzy, php-format
+msgid "Comment on issue %3$d, by %4$s"
+msgstr "Comentário sobre problema %d, por %s"
+
+#: IDF/IssueComment.php:191
+#, fuzzy, php-format
+msgid "%1$s: Comment on issue %2$d - %3$s"
+msgstr "%s: Comenta sobre problema %d - %s"
+
+#: IDF/IssueFile.php:64
+msgid "file name"
+msgstr "nome do arquivo"
+
+#: IDF/IssueFile.php:70
+msgid "the file"
+msgstr "o arquivo"
+
+#: IDF/IssueFile.php:76
+msgid "file size"
+msgstr "tamanho do arquivo"
+
+#: IDF/IssueFile.php:84
+msgid "type"
+msgstr "tipo"
+
+#: IDF/IssueFile.php:86
+msgid "Image"
+msgstr "Imagem"
+
+#: IDF/IssueFile.php:87
+msgid "Other"
+msgstr "Outro"
+
+#: IDF/IssueRelation.php:54
+msgid "verb"
+msgstr ""
+
+#: IDF/IssueRelation.php:61
+msgid "other issue"
+msgstr ""
+
+#: IDF/Key.php:55
+msgid "public key"
+msgstr ""
+
+#: IDF/Key.php:90
+msgid "Invalid or unknown key data detected."
+msgstr ""
+
+#: IDF/Plugin/SyncMercurial.php:78 IDF/Plugin/SyncSvn.php:81
+#, php-format
+msgid "The repository %s already exists."
+msgstr ""
+
+#: IDF/Plugin/SyncMercurial.php:142
+#, php-format
+msgid "%s does not exist or is not writable."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:107 IDF/Plugin/SyncMonotone.php:492
+msgid "\"mtn_repositories\" must be defined in your configuration file"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:114 IDF/Plugin/SyncMonotone.php:482
+msgid "\"mtn_usher_conf\" does not exist or is not writable"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:121
+#, php-format
+msgid "Could not find mtn-post-push script \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:155
+#, php-format
+msgid "The configuration file \"%s\" is missing"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:164
+#, php-format
+msgid "The project path \"%s\" already exists"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:170
+#, php-format
+msgid "The project path \"%s\" could not be created"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:208
+#, php-format
+msgid "The key directory \"%s\" could not be created"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:227
+#, php-format
+msgid "Could not parse key information: %s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:265
+#, php-format
+msgid "Could not create configuration directory \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:275
+#, php-format
+msgid "Could not create symlink for configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:293
+#, php-format
+msgid "Could not write configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:309 IDF/Plugin/SyncMonotone.php:525
+#, php-format
+msgid "Could not parse usher configuration in \"%1$s\": %2$s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:320
+#, php-format
+msgid "usher configuration already contains a server entry named \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:345 IDF/Plugin/SyncMonotone.php:546
+#, php-format
+msgid "Could not write usher configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:395
+#, php-format
+msgid "Could not write write-permissions file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:420
+#, php-format
+msgid "Could not write read-permissions file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:438
+#, php-format
+msgid "Could not remove symlink \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:446
+#, php-format
+msgid "Could not create symlink \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:500
+#, php-format
+msgid "One or more paths underneath %s could not be deleted"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:512
+#, php-format
+msgid "Could not delete client private key \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:599 IDF/Plugin/SyncMonotone.php:718
+#, php-format
+msgid "Could not parse read-permissions for project \"%1$s\": %2$s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:643 IDF/Plugin/SyncMonotone.php:741
+#, php-format
+msgid "Could not write read-permissions for project \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:657 IDF/Plugin/SyncMonotone.php:760
+#, php-format
+msgid "Could not write write-permissions file for project \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:813
+msgid "\"mtn_repositories\" must be defined in your configuration file."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:820
+#, php-format
+msgid "The project path %s does not exists."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:838
+#, php-format
+msgid "The command \"%s\" could not be executed."
+msgstr ""
+
+#: IDF/Project.php:62 IDF/Tag.php:66
+msgid "name"
+msgstr "nome"
+
+#: IDF/Project.php:69
+msgid "short name"
+msgstr "abreviatura"
+
+#: IDF/Project.php:70
+msgid ""
+"Used in the URL to access the project, must be short with only letters and "
+"numbers."
+msgstr ""
+
+#: IDF/Project.php:78
+msgid "short description"
+msgstr "descrição curta"
+
+#: IDF/Project.php:86 IDF/Review/Patch.php:74
+msgid "description"
+msgstr "descrição"
+
+#: IDF/Project.php:87
+msgid "The description can be extended using the Markdown syntax."
+msgstr ""
+
+#: IDF/Project.php:100
+msgid "private"
+msgstr "privado"
+
+#: IDF/Project.php:108
+msgid "current project activity"
+msgstr ""
+
+#: IDF/Project.php:159
+#, php-format
+msgid "Project \"%s\" not found."
+msgstr "Projeto \"%s\" não encontrado."
+
+#: IDF/ProjectActivity.php:56
+msgid "date"
+msgstr ""
+
+#: IDF/Review/Comment.php:55 IDF/Review/Patch.php:80
+msgid "patch"
+msgstr ""
+
+#: IDF/Review/Comment.php:83
+msgid "vote"
+msgstr ""
+
+#: IDF/Review/Comment.php:139 IDF/Review/Patch.php:151
+#, php-format
+msgid ""
+"Review %3$d, %4$s"
+msgstr ""
+
+#: IDF/Review/Comment.php:141
+#, fuzzy, php-format
+msgid "Update of review %3$d, by %4$s"
+msgstr "Comentário sobre problema %d, por %s"
+
+#: IDF/Review/Comment.php:151
+#, php-format
+msgid "%1$s: Updated review %2$d - %3$s"
+msgstr ""
+
+#: IDF/Review/Comment.php:222
+#, php-format
+msgid "Updated Code Review %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Review/Patch.php:52
+msgid "review"
+msgstr ""
+
+#: IDF/Review/Patch.php:67
+msgid "commit"
+msgstr ""
+
+#: IDF/Review/Patch.php:153
+#, fuzzy, php-format
+msgid "Creation of review %3$d, by %4$s"
+msgstr "Comentário sobre problema %d, por %s"
+
+#: IDF/Review/Patch.php:163
+#, fuzzy, php-format
+msgid "%1$s: Creation of Review %2$d - %3$s"
+msgstr "%s: Comenta sobre problema %d - %s"
+
+#: IDF/Review/Patch.php:208
+#, php-format
+msgid "New Code Review %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Scm/Git.php:309 IDF/Scm/Mercurial.php:199
+#, php-format
+msgid "Folder %1$s not found in commit %2$s."
+msgstr ""
+
+#: IDF/Scm/Git.php:433 IDF/Scm/Mercurial.php:216
+#, php-format
+msgid "Not a valid tree: %s."
+msgstr ""
+
+#: IDF/Scm/Monotone/Stdio.php:81
+msgid "Monotone client key name or hash not in project conf."
+msgstr ""
+
+#: IDF/Scm/Monotone/Stdio.php:89
+#, php-format
+msgid "The key directory %s could not be created."
+msgstr ""
+
+#: IDF/Scm/Monotone/Stdio.php:100
+#, php-format
+msgid "Could not write client key \"%s\""
+msgstr ""
+
+#: IDF/Search/Occ.php:33
+msgid "occurrence"
+msgstr ""
+
+#: IDF/Search/Occ.php:49
+msgid "word"
+msgstr ""
+
+#: IDF/Search/Occ.php:75
+msgid "occurrences"
+msgstr ""
+
+#: IDF/Search/Occ.php:81
+msgid "ponderated occurrence"
+msgstr ""
+
+#: IDF/Tag.php:59
+msgid "tag class"
+msgstr ""
+
+#: IDF/Tag.php:60
+msgid "The class of the tag."
+msgstr ""
+
+#: IDF/Tag.php:73
+msgid "lcname"
+msgstr ""
+
+#: IDF/Tag.php:74
+msgid "Lower case version of the name for fast searching."
+msgstr ""
+
+#: IDF/Template/Markdown.php:84
+msgid "Create this documentation page"
+msgstr ""
+
+#: IDF/Template/Markdown.php:97
+msgid "You are not allowed to access the wiki."
+msgstr ""
+
+#: IDF/Template/Markdown.php:106
+msgid "The wiki resource has not been found."
+msgstr ""
+
+#: IDF/Template/Markdown.php:113
+msgid "The wiki resource has not been found. Create it!"
+msgstr ""
+
+#: IDF/Template/Markdown.php:146
+msgid "This revision of the resource is no longer available."
+msgstr ""
+
+#: IDF/Template/ShowUser.php:51
+msgid "Anonymous"
+msgstr ""
+
+#: IDF/Template/ShowUser.php:54
+msgid "Me"
+msgstr ""
+
+#: IDF/Timeline/Paginator.php:49
+msgid "Today"
+msgstr ""
+
+#: IDF/Upload.php:70
+msgid "file"
+msgstr "arquivo"
+
+#: IDF/Upload.php:71
+msgid "The path is relative to the upload path."
+msgstr ""
+
+#: IDF/Upload.php:78 IDF/Wiki/ResourceRevision.php:71
+msgid "file size in bytes"
+msgstr "tamanho do arquivo em bytes"
+
+#: IDF/Upload.php:84
+msgid "MD5"
+msgstr ""
+
+#: IDF/Upload.php:106
+msgid "number of downloads"
+msgstr "número de downloads"
+
+#: IDF/Upload.php:201
+#, php-format
+msgid "Download %2$d, %3$s"
+msgstr ""
+
+#: IDF/Upload.php:204
+#, fuzzy, php-format
+msgid "Addition of download %2$d, by %3$s"
+msgstr "Criação da página %s, por %s"
+
+#: IDF/Upload.php:214
+#, fuzzy, php-format
+msgid "%1$s: Download %2$d added - %3$s"
+msgstr "%s: Página de documentação %s adicionada - %s"
+
+#: IDF/Upload.php:301
+#, php-format
+msgid "New download - %1$s (%2$s)"
+msgstr ""
+
+#: IDF/Upload.php:305
+#, php-format
+msgid "Updated download - %1$s (%2$s)"
+msgstr ""
+
+#: IDF/Views/Admin.php:47
+msgid "The forge configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Admin.php:80
+msgid "This table shows the projects in the forge."
+msgstr ""
+
+#: IDF/Views/Admin.php:85
+msgid "Short Name"
+msgstr ""
+
+#: IDF/Views/Admin.php:87
+msgid "Repository Size"
+msgstr ""
+
+#: IDF/Views/Admin.php:93
+msgid "No projects were found."
+msgstr ""
+
+#: IDF/Views/Admin.php:116
+msgid "The label configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Admin.php:147 IDF/Views/Admin.php:314 IDF/Views/Wiki.php:484
+#: IDF/Views/Wiki.php:536
+#, php-format
+msgid "Update %s"
+msgstr ""
+
+#: IDF/Views/Admin.php:155 IDF/Views/Project.php:304
+msgid "The project has been updated."
+msgstr ""
+
+#: IDF/Views/Admin.php:192
+msgid "The project has been created."
+msgstr ""
+
+#: IDF/Views/Admin.php:223
+#, php-format
+msgid "Delete %s Project"
+msgstr ""
+
+#: IDF/Views/Admin.php:230
+msgid "The project has been deleted."
+msgstr ""
+
+#: IDF/Views/Admin.php:260
+msgid "Not Validated User List"
+msgstr ""
+
+#: IDF/Views/Admin.php:268
+msgid "This table shows the users in the forge."
+msgstr ""
+
+#: IDF/Views/Admin.php:272
+msgid "login"
+msgstr ""
+
+#: IDF/Views/Admin.php:275
+msgid "Admin"
+msgstr ""
+
+#: IDF/Views/Admin.php:277
+msgid "Last Login"
+msgstr ""
+
+#: IDF/Views/Admin.php:284
+msgid "No users were found."
+msgstr ""
+
+#: IDF/Views/Admin.php:321
+msgid "You do not have the rights to update this user."
+msgstr ""
+
+#: IDF/Views/Admin.php:339
+msgid "The user has been updated."
+msgstr ""
+
+#: IDF/Views/Admin.php:372
+#, php-format
+msgid "The user %s has been created."
+msgstr ""
+
+#: IDF/Views/Admin.php:379
+msgid "Add User"
+msgstr ""
+
+#: IDF/Views/Admin.php:395
+msgid "Usher management"
+msgstr ""
+
+#: IDF/Views/Admin.php:432
+msgid "Usher configuration has been reloaded"
+msgstr ""
+
+#: IDF/Views/Admin.php:436
+msgid "Usher has been shut down"
+msgstr ""
+
+#: IDF/Views/Admin.php:441
+msgid "Usher has been started up"
+msgstr ""
+
+#: IDF/Views/Admin.php:479
+#, php-format
+msgid "The server \"%s\" has been started"
+msgstr ""
+
+#: IDF/Views/Admin.php:483
+#, php-format
+msgid "The server \"%s\" has been stopped"
+msgstr ""
+
+#: IDF/Views/Admin.php:488
+#, php-format
+msgid "The server \"%s\" has been killed"
+msgstr ""
+
+#: IDF/Views/Admin.php:508
+#, php-format
+msgid "Open connections for \"%s\""
+msgstr ""
+
+#: IDF/Views/Admin.php:513
+#, php-format
+msgid "no connections for server \"%s\""
+msgstr ""
+
+#: IDF/Views/Admin.php:534
+msgid "Yes"
+msgstr "Sim"
+
+#: IDF/Views/Admin.php:534
+msgid "No"
+msgstr ""
+
+#: IDF/Views/Download.php:45
+#, php-format
+msgid "%s Downloads"
+msgstr ""
+
+#: IDF/Views/Download.php:51
+msgid "This table shows the files to download."
+msgstr ""
+
+#: IDF/Views/Download.php:67 IDF/Views/Download.php:349
+msgid "Uploaded"
+msgstr ""
+
+#: IDF/Views/Download.php:71 IDF/Views/Download.php:353
+msgid "No downloads were found."
+msgstr ""
+
+#: IDF/Views/Download.php:94
+#, php-format
+msgid "Download %s"
+msgstr ""
+
+#: IDF/Views/Download.php:111
+#, php-format
+msgid "The file %2$s has been updated."
+msgstr ""
+
+#: IDF/Views/Download.php:144
+#, php-format
+msgid "Delete Download %s"
+msgstr ""
+
+#: IDF/Views/Download.php:177
+msgid "The file has been deleted."
+msgstr ""
+
+#: IDF/Views/Download.php:244
+#, php-format
+msgid "The file has been uploaded."
+msgstr ""
+
+#: IDF/Views/Download.php:271
+msgid "New Downloads from Archive"
+msgstr ""
+
+#: IDF/Views/Download.php:278
+msgid "The archive has been uploaded and processed."
+msgstr ""
+
+#: IDF/Views/Download.php:331
+#, php-format
+msgid "%1$s Downloads with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Download.php:341
+#, php-format
+msgid "This table shows the downloads with label %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:41
+#, php-format
+msgid "%s Open Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:382 IDF/Views/User.php:75
+msgid "This table shows the open issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:61 IDF/Views/Issue.php:220 IDF/Views/Issue.php:301
+#: IDF/Views/Issue.php:390 IDF/Views/Issue.php:542 IDF/Views/Issue.php:765
+#: IDF/Views/Issue.php:824 IDF/Views/Review.php:57 IDF/Views/User.php:81
+msgid "Id"
+msgstr ""
+
+#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:223 IDF/Views/Issue.php:305
+#: IDF/Views/Issue.php:393 IDF/Views/Issue.php:545 IDF/Views/Issue.php:768
+#: IDF/Views/Issue.php:827 IDF/Views/Review.php:60 IDF/Views/User.php:85
+msgid "Last Updated"
+msgstr ""
+
+#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:227 IDF/Views/Issue.php:309
+#: IDF/Views/Issue.php:397 IDF/Views/Issue.php:549 IDF/Views/Issue.php:772
+#: IDF/Views/Issue.php:831
+msgid "No issues were found."
+msgstr ""
+
+#: IDF/Views/Issue.php:113
+msgid "Not assigned"
+msgstr ""
+
+#: IDF/Views/Issue.php:149
+#, php-format
+msgid "Summary of tracked issues in %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:194
+#, php-format
+msgid "Watch List: Closed Issues for %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:195
+#, php-format
+msgid "This table shows the closed issues in your watch list for %s project."
+msgstr ""
+
+#: IDF/Views/Issue.php:200
+#, php-format
+msgid "Watch List: Open Issues for %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:201
+#, php-format
+msgid "This table shows the open issues in your watch list for %s project."
+msgstr ""
+
+#: IDF/Views/Issue.php:277
+msgid "Watch List: Closed Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:278
+msgid "This table shows the closed issues in your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:283
+msgid "Watch List: Open Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:284
+msgid "This table shows the open issues in your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:303 IDF/Views/User.php:82
+msgid "Project"
+msgstr ""
+
+#: IDF/Views/Issue.php:344
+#, php-format
+msgid "%1$s %2$s Submitted %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:348
+#, php-format
+msgid "%1$s %2$s Closed Submitted %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:352
+#, php-format
+msgid "%1$s %2$s Closed Working %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:356
+#, php-format
+msgid "%1$s %2$s Working %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:417
+msgid "Submit a new issue"
+msgstr ""
+
+#: IDF/Views/Issue.php:433
+#, php-format
+msgid "Issue %2$d has been created."
+msgstr ""
+
+#: IDF/Views/Issue.php:490
+#, php-format
+msgid "Search issues - %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:492
+#, php-format
+msgid "Search closed issues - %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:539
+msgid "This table shows the found issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:604
+#, php-format
+msgid "Issue %2$d: %3$s"
+msgstr ""
+
+#: IDF/Views/Issue.php:628
+#, php-format
+msgid "Issue %2$d has been updated."
+msgstr ""
+
+#: IDF/Views/Issue.php:718
+#, php-format
+msgid "View %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:745
+#, php-format
+msgid "%s Closed Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:755
+msgid "This table shows the closed issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:798
+#, php-format
+msgid "%1$s Issues with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Issue.php:801
+#, php-format
+msgid "%1$s Closed Issues with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Issue.php:814
+#, php-format
+msgid "This table shows the issues with label %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:937
+msgid "The issue has been removed from your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:940
+msgid "The issue has been added to your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:1037
+msgid "On your watch list."
+msgstr ""
+
+#: IDF/Views/Project.php:95
+msgid "Issues and Comments"
+msgstr ""
+
+#: IDF/Views/Project.php:99
+msgid "Documents"
+msgstr ""
+
+#: IDF/Views/Project.php:101
+msgid "Reviews and Patches"
+msgstr ""
+
+#: IDF/Views/Project.php:180
+msgid "This table shows the project updates."
+msgstr ""
+
+#: IDF/Views/Project.php:191
+msgid "Change"
+msgstr ""
+
+#: IDF/Views/Project.php:195
+msgid "No changes were found."
+msgstr ""
+
+#: IDF/Views/Project.php:296
+#, php-format
+msgid "%s Project Summary"
+msgstr ""
+
+#: IDF/Views/Project.php:335
+#, php-format
+msgid "%s Issue Tracking Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:344
+msgid "The issue tracking configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:381
+#, php-format
+msgid "%s Downloads Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:393
+msgid "The downloads configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:428
+#, php-format
+msgid "%s Documentation Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:437
+msgid "The documentation configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:471
+#, php-format
+msgid "%s Project Members"
+msgstr ""
+
+#: IDF/Views/Project.php:480
+msgid "The project membership has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:503
+#, php-format
+msgid "%s Tabs Access Rights"
+msgstr ""
+
+#: IDF/Views/Project.php:517
+msgid ""
+"The project tabs access rights and notification settings have been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:566
+#, php-format
+msgid "%s Source"
+msgstr ""
+
+#: IDF/Views/Project.php:580
+msgid "The project source configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Review.php:41
+#, php-format
+msgid "%s Code Reviews"
+msgstr ""
+
+#: IDF/Views/Review.php:48
+msgid "This table shows the latest reviews."
+msgstr ""
+
+#: IDF/Views/Review.php:64
+msgid "No reviews were found."
+msgstr ""
+
+#: IDF/Views/Review.php:94
+#, php-format
+msgid "The code review %2$d has been created."
+msgstr ""
+
+#: IDF/Views/Review.php:140
+#, php-format
+msgid "Review %2$d: %3$s"
+msgstr ""
+
+#: IDF/Views/Review.php:160
+#, php-format
+msgid "Your code review %2$d has been published."
+msgstr ""
+
+#: IDF/Views/Source.php:40
+#, php-format
+msgid "%s Source Help"
+msgstr ""
+
+#: IDF/Views/Source.php:58
+#, php-format
+msgid "%s Invalid Revision"
+msgstr ""
+
+#: IDF/Views/Source.php:82
+#, php-format
+msgid "%s Ambiguous Revision"
+msgstr ""
+
+#: IDF/Views/Source.php:107
+#, php-format
+msgid "%1$s %2$s Change Log"
+msgstr ""
+
+#: IDF/Views/Source.php:153 IDF/Views/Source.php:234 IDF/Views/Source.php:362
+#, php-format
+msgid "%1$s %2$s Source Tree"
+msgstr ""
+
+#: IDF/Views/Source.php:310
+#, php-format
+msgid "%s Commit Details"
+msgstr ""
+
+#: IDF/Views/Source.php:311
+#, php-format
+msgid "%1$s Commit Details - %2$s"
+msgstr ""
+
+#: IDF/Views/User.php:59
+msgid "Your Dashboard - Working Issues"
+msgstr ""
+
+#: IDF/Views/User.php:62
+msgid "Your Dashboard - Submitted Issues"
+msgstr ""
+
+#: IDF/Views/User.php:89
+msgid "No issues are assigned to you, yeah!"
+msgstr ""
+
+#: IDF/Views/User.php:89
+msgid "All the issues you submitted are fixed, yeah!"
+msgstr ""
+
+#: IDF/Views/User.php:121
+msgid "Your personal information has been updated."
+msgstr ""
+
+#: IDF/Views/User.php:133
+msgid "Your Account"
+msgstr ""
+
+#: IDF/Views/User.php:157
+msgid "The public key has been deleted."
+msgstr ""
+
+#: IDF/Views/User.php:177
+msgid "The address has been deleted."
+msgstr ""
+
+#: IDF/Views/User.php:200
+msgid "Confirm The Email Change"
+msgstr ""
+
+#: IDF/Views/User.php:232
+#, php-format
+msgid "Your new email address \"%s\" has been validated. Thank you!"
+msgstr ""
+
+#: IDF/Views/Wiki.php:41
+#, php-format
+msgid "%s Documentation"
+msgstr ""
+
+#: IDF/Views/Wiki.php:48
+msgid "This table shows the documentation pages."
+msgstr ""
+
+#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:144 IDF/Views/Wiki.php:185
+msgid "Page Title"
+msgstr ""
+
+#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:103 IDF/Views/Wiki.php:146
+#: IDF/Views/Wiki.php:187
+msgid "Updated"
+msgstr ""
+
+#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:191
+msgid "No documentation pages were found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:88
+#, fuzzy, php-format
+msgid "%s Documentation Resources"
+msgstr "%s: Página de documentação %s adicionada - %s"
+
+#: IDF/Views/Wiki.php:94
+msgid "This table shows the resources that can be used on documentation pages."
+msgstr ""
+
+#: IDF/Views/Wiki.php:100
+msgid "Resource Title"
+msgstr ""
+
+#: IDF/Views/Wiki.php:107
+msgid "No resources were found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:128
+#, php-format
+msgid "Documentation Search - %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:139
+msgid "This table shows the pages found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:150
+msgid "No pages were found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:169
+#, php-format
+msgid "%1$s Documentation Pages with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:179
+#, php-format
+msgid "This table shows the documentation pages with label %s."
+msgstr ""
+
+#: IDF/Views/Wiki.php:222
+#, php-format
+msgid "The page %2$s has been created."
+msgstr ""
+
+#: IDF/Views/Wiki.php:265
+#, php-format
+msgid "The resource %2$s has been created."
+msgstr ""
+
+#: IDF/Views/Wiki.php:409 IDF/Views/Wiki.php:448
+msgid "The old revision has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:415 IDF/Views/Wiki.php:454
+#, php-format
+msgid "Delete Old Revision of %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:496
+#, php-format
+msgid "The page %2$s has been updated."
+msgstr ""
+
+#: IDF/Views/Wiki.php:548
+#, php-format
+msgid "The resource %2$s has been updated."
+msgstr ""
+
+#: IDF/Views/Wiki.php:583
+msgid "The documentation page has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:591
+#, php-format
+msgid "Delete Page %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:623
+msgid "The documentation resource has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:631
+#, php-format
+msgid "Delete Resource %s"
+msgstr ""
+
+#: IDF/Views.php:173 IDF/Views.php:199
+msgid "Confirm Your Account Creation"
+msgstr "Confirme a criação de sua conta"
+
+#: IDF/Views.php:219
+msgid "Welcome! You can now participate in the life of your project of choice."
+msgstr ""
+
+#: IDF/Views.php:245 IDF/Views.php:269 IDF/Views.php:310
+msgid "Password Recovery"
+msgstr "Recuperação de Senha"
+
+#: IDF/Views.php:289
+msgid ""
+"Welcome back! Next time, you can use your broswer options to remember the "
+"password."
+msgstr ""
+
+#: IDF/Views.php:331
+msgid "Here to Help You!"
+msgstr ""
+
+#: IDF/Views.php:347
+msgid "InDefero Upload Archive Format"
+msgstr ""
+
+#: IDF/Views.php:363
+msgid "InDefero API (Application Programming Interface)"
+msgstr "InDefero API (Application Programming Interface)"
+
+#: IDF/Wiki/Page.php:62 IDF/Wiki/Resource.php:64
+msgid "title"
+msgstr "título"
+
+#: IDF/Wiki/Page.php:63
+msgid ""
+"The title of the page must only contain letters, digits or the dash "
+"character. For example: My-new-Wiki-Page."
+msgstr ""
+
+#: IDF/Wiki/Page.php:71
+msgid "A one line description of the page content."
+msgstr ""
+
+#: IDF/Wiki/Page.php:196 IDF/Wiki/PageRevision.php:196
+#, php-format
+msgid "%2$s, %3$s"
+msgstr ""
+
+#: IDF/Wiki/Page.php:198
+#, fuzzy, php-format
+msgid "Creation of page %2$s, by %3$s"
+msgstr "Criação da página %s, por %s"
+
+#: IDF/Wiki/Page.php:208
+#, fuzzy, php-format
+msgid "%1$s: Documentation page %2$s added - %3$s"
+msgstr "%s: Página de documentação %s adicionada - %s"
+
+#: IDF/Wiki/PageRevision.php:48
+msgid "page"
+msgstr "página"
+
+#: IDF/Wiki/PageRevision.php:66 IDF/Wiki/ResourceRevision.php:64
+msgid "A one line description of the changes."
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:72
+msgid "content"
+msgstr "conteúdo"
+
+#: IDF/Wiki/PageRevision.php:218 IDF/Wiki/ResourceRevision.php:311
+#, fuzzy, php-format
+msgid "Change of %2$s, by %3$s"
+msgstr "Criação da página %s, por %s"
+
+#: IDF/Wiki/PageRevision.php:231
+#, fuzzy, php-format
+msgid "%1$s: Documentation page %2$s updated - %3$s"
+msgstr "%s: Página de documentação %s adicionada - %s"
+
+#: IDF/Wiki/PageRevision.php:293
+#, fuzzy, php-format
+msgid "New Documentation Page %1$s - %2$s (%3$s)"
+msgstr "%s: Página de documentação %s adicionada - %s"
+
+#: IDF/Wiki/PageRevision.php:297
+#, fuzzy, php-format
+msgid "Documentation Page Changed %1$s - %2$s (%3$s)"
+msgstr "%s: Página de documentação %s adicionada - %s"
+
+#: IDF/Wiki/Resource.php:65
+msgid ""
+"The title of the resource must only contain letters, digits, dots or the "
+"dash character. For example: my-resource.png."
+msgstr ""
+
+#: IDF/Wiki/Resource.php:72
+msgid "MIME media type"
+msgstr ""
+
+#: IDF/Wiki/Resource.php:73
+msgid "The MIME media type of the resource."
+msgstr ""
+
+#: IDF/Wiki/Resource.php:81
+#, fuzzy
+msgid "A one line description of the resource."
+msgstr "Descrição do projeto em uma linha."
+
+#: IDF/Wiki/Resource.php:176 IDF/Wiki/ResourceRevision.php:308
+#, php-format
+msgid "%2$s, %3$s"
+msgstr ""
+
+#: IDF/Wiki/Resource.php:178
+#, fuzzy, php-format
+msgid "Creation of resource %2$s, by %3$s"
+msgstr "Criação da página %s, por %s"
+
+#: IDF/Wiki/Resource.php:188
+#, fuzzy, php-format
+msgid "%1$s: Documentation resource %2$s added - %3$s"
+msgstr "%s: Página de documentação %s adicionada - %s"
+
+#: IDF/Wiki/ResourceRevision.php:47
+#, fuzzy
+msgid "resource"
+msgstr "Código Fonte"
+
+#: IDF/Wiki/ResourceRevision.php:78
+msgid "File extension"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:79
+msgid "The file extension of the uploaded resource."
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:94
+msgid "page usage"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:116
+#, php-format
+msgid "id %d: %s"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:263
+#, php-format
+msgid "Download (%s)"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:270
+msgid "View resource details"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:324
+#, fuzzy, php-format
+msgid "%1$s: Documentation resource %2$s updated - %3$s"
+msgstr "%s: Página de documentação %s adicionada - %s"
diff --git a/indefero/src/IDF/locale/ru/idf.po b/indefero/src/IDF/locale/ru/idf.po
new file mode 100644
index 0000000..e5cb1bf
--- /dev/null
+++ b/indefero/src/IDF/locale/ru/idf.po
@@ -0,0 +1,5874 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+# Denis , 2011.
+# , 2011.
+# , 2011.
+# William MARTIN , 2011.
+msgid ""
+msgstr ""
+"Project-Id-Version: Indefero\n"
+"Report-Msgid-Bugs-To: http://projects.ceondo.com/p/indefero/issues/\n"
+"POT-Creation-Date: 2012-03-22 01:16+0100\n"
+"PO-Revision-Date: 2011-11-01 07:10+0000\n"
+"Last-Translator: Denis \n"
+"Language-Team: Russian (http://www.transifex.net/projects/p/indefero/team/"
+"ru/)\n"
+"Language: ru\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
+
+#: IDF/Commit.php:55 IDF/Conf.php:54 IDF/Issue.php:52
+#: IDF/ProjectActivity.php:49 IDF/Review.php:65 IDF/Search/Occ.php:69
+#: IDF/Tag.php:52 IDF/Upload.php:49 IDF/Wiki/Page.php:54
+#: IDF/Wiki/Resource.php:56
+msgid "project"
+msgstr "проект"
+
+#: IDF/Commit.php:63 IDF/Issue.php:67 IDF/IssueComment.php:65
+#: IDF/IssueFile.php:57 IDF/IssueRelation.php:69 IDF/Review/Comment.php:69
+#: IDF/Review.php:80 IDF/Upload.php:91 IDF/Wiki/Page.php:78
+#: IDF/Wiki/PageRevision.php:79 IDF/Wiki/Resource.php:88
+#: IDF/Wiki/ResourceRevision.php:86
+msgid "submitter"
+msgstr "отправитель"
+
+#: IDF/Commit.php:87 IDF/Issue.php:60 IDF/Review/Patch.php:60
+#: IDF/Review.php:73 IDF/Upload.php:57 IDF/Wiki/Page.php:70
+#: IDF/Wiki/PageRevision.php:65 IDF/Wiki/Resource.php:80
+#: IDF/Wiki/ResourceRevision.php:63
+msgid "summary"
+msgstr "краткое описание"
+
+#: IDF/Commit.php:93
+msgid "changelog"
+msgstr "история изменений"
+
+#: IDF/Commit.php:100 IDF/Issue.php:105 IDF/IssueComment.php:79
+#: IDF/IssueFile.php:96 IDF/IssueRelation.php:75 IDF/Review/Comment.php:90
+#: IDF/Review/FileComment.php:75 IDF/Review/Patch.php:87 IDF/Review.php:108
+#: IDF/Upload.php:112 IDF/Wiki/Page.php:100 IDF/Wiki/PageRevision.php:92
+#: IDF/Wiki/Resource.php:95 IDF/Wiki/ResourceRevision.php:101
+msgid "creation date"
+msgstr "дата создания"
+
+#: IDF/Commit.php:238
+#, fuzzy, php-format
+msgid "Commit %1$s, by %2$s"
+msgstr "Комит %s, %s"
+
+#: IDF/Commit.php:337
+#, fuzzy, php-format
+msgid "New Commit %1$s - %2$s (%3$s)"
+msgstr "Новый комит %s - %s (%s)"
+
+#: IDF/Conf.php:61 IDF/Gconf.php:73
+msgid "key"
+msgstr "ключ"
+
+#: IDF/Conf.php:67 IDF/Gconf.php:79 IDF/ProjectActivity.php:62
+msgid "value"
+msgstr "значение"
+
+#: IDF/Diff.php:460
+msgid "Old"
+msgstr "Старый"
+
+#: IDF/Diff.php:460
+msgid "New"
+msgstr "Новый"
+
+#: IDF/EmailAddress.php:49 IDF/Key.php:49
+msgid "user"
+msgstr "пользователь"
+
+#: IDF/EmailAddress.php:55
+msgid "email"
+msgstr ""
+
+#: IDF/Form/Admin/ForgeConf.php:34
+msgid "Custom forge page enabled"
+msgstr ""
+
+#: IDF/Form/Admin/ForgeConf.php:39 IDF/Form/WikiPageCreate.php:80
+#: IDF/Form/WikiPageUpdate.php:72
+msgid "Content"
+msgstr "Содержание"
+
+#: IDF/Form/Admin/LabelConf.php:40
+#, fuzzy
+msgid "Predefined project labels"
+msgstr "Предопределенные ярлыки для проблемы"
+
+#: IDF/Form/Admin/LabelConf.php:55
+#, php-format
+msgid ""
+"The label \"%s\" is invalid: A label must only consist of alphanumeric "
+"characters and dashes, and can optionally contain a \":\" with a group "
+"prefix."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:600
+msgid "git"
+msgstr "git"
+
+#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:601
+msgid "Subversion"
+msgstr "Subversion"
+
+#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:602
+msgid "mercurial"
+msgstr "mercurial"
+
+#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:603
+msgid "monotone"
+msgstr "monotone"
+
+#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44
+#: IDF/Form/ProjectConf.php:39 IDF/Views/Admin.php:86 IDF/Views/Admin.php:273
+msgid "Name"
+msgstr "Имя"
+
+#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:101
+#: IDF/gettexttemplates/idf/base-full.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html~.php:5
+#: IDF/gettexttemplates/idf/base.html.php:5
+#: IDF/gettexttemplates/idf/base.html~.php:5
+#: IDF/gettexttemplates/idf/main-menu.html.php:9
+#: IDF/gettexttemplates/idf/project-list.html.php:5
+#: IDF/gettexttemplates/idf/project-list.html.php:7
+msgid "Private project"
+msgstr "Частный проект"
+
+#: IDF/Form/Admin/ProjectCreate.php:62
+msgid "Shortname"
+msgstr "Краткое имя"
+
+#: IDF/Form/Admin/ProjectCreate.php:64
+msgid ""
+"It must be unique for each project and composed only of letters, digits and "
+"dash (-) like \"my-project\"."
+msgstr ""
+"Должно быть уникальным для каждого проекта и состоять только из латинских "
+"букв, цифр и дефиса (-), например \"my-project\"."
+
+#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50
+msgid "Short description"
+msgstr "Краткое описание"
+
+#: IDF/Form/Admin/ProjectCreate.php:70 IDF/Form/Admin/ProjectUpdate.php:51
+#: IDF/Project.php:79
+msgid "A one line description of the project."
+msgstr "Краткое описание проекта."
+
+#: IDF/Form/Admin/ProjectCreate.php:77 IDF/Form/Admin/ProjectUpdate.php:58
+#: IDF/Form/ProjectConf.php:56
+msgid "External URL"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:84
+msgid "Repository type"
+msgstr "Тип репозитория"
+
+#: IDF/Form/Admin/ProjectCreate.php:92
+msgid "Remote Subversion repository"
+msgstr "Удаленная репозитория Subversion"
+
+#: IDF/Form/Admin/ProjectCreate.php:99 IDF/Form/SourceConf.php:40
+msgid "Repository username"
+msgstr "Логин репозитории"
+
+#: IDF/Form/Admin/ProjectCreate.php:106 IDF/Form/SourceConf.php:47
+msgid "Repository password"
+msgstr "Пароль репозитории"
+
+#: IDF/Form/Admin/ProjectCreate.php:113 IDF/Form/Admin/ProjectUpdate.php:66
+msgid "Master branch"
+msgstr "Основная ветка"
+
+#: IDF/Form/Admin/ProjectCreate.php:116 IDF/Form/Admin/ProjectUpdate.php:69
+msgid ""
+"This should be a world-wide unique identifier for your project. A reverse "
+"DNS notation like \"com.my-domain.my-project\" is a good idea."
+msgstr ""
+"Это должен быть уникальный в мировом маштабе идентификатор проекта. Обратная "
+"запись DNS как \"com.my-domain.my-проект\" является хорошей идеей."
+
+#: IDF/Form/Admin/ProjectCreate.php:121 IDF/Form/Admin/ProjectUpdate.php:95
+#: IDF/Form/MembersConf.php:46 IDF/Form/TabsConf.php:53
+#: IDF/Form/TabsConf.php:72
+msgid "Project owners"
+msgstr "Владельцы проекта"
+
+#: IDF/Form/Admin/ProjectCreate.php:130 IDF/Form/Admin/ProjectUpdate.php:103
+#: IDF/Form/MembersConf.php:54 IDF/Form/TabsConf.php:52
+#: IDF/Form/TabsConf.php:78
+msgid "Project members"
+msgstr "Участники проекта"
+
+#: IDF/Form/Admin/ProjectCreate.php:140 IDF/Form/Admin/ProjectUpdate.php:85
+#: IDF/Form/IssueCreate.php:168 IDF/Form/IssueUpdate.php:164
+#: IDF/Form/ProjectConf.php:73 IDF/Form/UpdateUpload.php:71
+#: IDF/Form/Upload.php:70 IDF/Form/WikiPageCreate.php:93
+#: IDF/Form/WikiPageUpdate.php:104
+msgid "Labels"
+msgstr "Ярлыки"
+
+#: IDF/Form/Admin/ProjectCreate.php:155
+msgid "Project template"
+msgstr "Шаблон проекта"
+
+#: IDF/Form/Admin/ProjectCreate.php:157
+msgid ""
+"Use the given project to initialize the new project. Access rights and "
+"general configuration will be taken from the template project."
+msgstr ""
+"Использовать указанный проект для инициализации нового проекта. Права "
+"доступа и общая конфигурация будут взяты из исходного проекта."
+
+#: IDF/Form/Admin/ProjectCreate.php:204
+msgid ""
+"Only a remote repository available through HTTP or HTTPS is allowed. For "
+"example \"http://somewhere.com/svn/trunk\"."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:220 IDF/Form/Admin/ProjectUpdate.php:117
+msgid ""
+"The master branch is empty or contains illegal characters, please use only "
+"letters, digits, dashes and dots as separators."
+msgstr ""
+"Мастер бранч пустой или содержит недопустимые символы, пожалуйста, "
+"используйте только латинские буквы, цифры, дефисы и точки в качестве "
+"разделителей."
+
+#: IDF/Form/Admin/ProjectCreate.php:230 IDF/Form/Admin/ProjectUpdate.php:128
+msgid "This master branch is already used. Please select another one."
+msgstr "Этот мастер бранч уже используется. Пожалуйста, выберите другой."
+
+#: IDF/Form/Admin/ProjectCreate.php:241
+msgid ""
+"This shortname contains illegal characters, please use only letters, digits "
+"and dash (-)."
+msgstr ""
+"Краткое имя содержит недопустимые символы. Пожалуйста, используйте только "
+"буквы, цифры и дефис (-)."
+
+#: IDF/Form/Admin/ProjectCreate.php:244
+msgid "The shortname cannot start with the dash (-) character."
+msgstr "Краткое имя не может начинаться с прочерка (-)."
+
+#: IDF/Form/Admin/ProjectCreate.php:247
+msgid "The shortname cannot end with the dash (-) character."
+msgstr "Краткое имя не может заканчиваться прочером (-)."
+
+#: IDF/Form/Admin/ProjectCreate.php:252
+msgid "This shortname is already used. Please select another one."
+msgstr "Краткое имя уже используется. Пожалуйста, выберите другое."
+
+#: IDF/Form/Admin/ProjectCreate.php:303 IDF/Form/Admin/ProjectDelete.php:78
+#: IDF/Form/Admin/ProjectUpdate.php:153 IDF/Form/Admin/UserCreate.php:106
+#: IDF/Form/Admin/UserUpdate.php:191 IDF/Form/IssueCreate.php:338
+#: IDF/Form/IssueUpdate.php:329 IDF/Form/MembersConf.php:64
+#: IDF/Form/Password.php:76 IDF/Form/Register.php:112
+#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:143
+#: IDF/Form/TabsConf.php:122 IDF/Form/UpdateUpload.php:126
+#: IDF/Form/Upload.php:149 IDF/Form/UploadArchive.php:137
+#: IDF/Form/UserAccount.php:216 IDF/Form/UserChangeEmail.php:80
+#: IDF/Form/WikiPageCreate.php:167 IDF/Form/WikiPageDelete.php:59
+#: IDF/Form/WikiPageUpdate.php:178 IDF/Form/WikiResourceCreate.php:123
+#: IDF/Form/WikiResourceDelete.php:59 IDF/Form/WikiResourceUpdate.php:124
+msgid "Cannot save the model from an invalid form."
+msgstr "Не удается сохранить модель из недействительной формы."
+
+#: IDF/Form/Admin/ProjectCreate.php:341
+msgid ""
+"Click on the Project Management tab to set the description of your project."
+msgstr ""
+"Кликните на закладку Управление проектом, чтобы задать описание Вашего "
+"проекта."
+
+#: IDF/Form/Admin/ProjectCreate.php:426
+msgid "This project is not available."
+msgstr "Этот проект не доступен."
+
+#: IDF/Form/Admin/ProjectDelete.php:41
+msgid "Confirmation code"
+msgstr "Код подтверждения"
+
+#: IDF/Form/Admin/ProjectDelete.php:46
+msgid "I have made a backup of all the important data of this project."
+msgstr "Я сделал резервную копию всех важных данных этого проекта."
+
+#: IDF/Form/Admin/ProjectDelete.php:55
+msgid ""
+"The confirmation code does not match. Please provide a valid confirmation "
+"code to delete the project."
+msgstr ""
+"Код проверки не совпадает. Пожалуйста, укажите правильный код проверки для "
+"удаления проекта."
+
+#: IDF/Form/Admin/ProjectDelete.php:63
+msgid "Sorry, you really need to backup your data before deletion."
+msgstr ""
+"Извините, но вы действительно должны сделать резервную копию всех важных "
+"данных перед удалением."
+
+#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38
+#: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40
+msgid "First name"
+msgstr "Имя"
+
+#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47
+#: IDF/Form/RegisterConfirmation.php:59 IDF/Form/UserAccount.php:49
+msgid "Last name"
+msgstr "Фамилия"
+
+#: IDF/Form/Admin/UserCreate.php:56
+msgid "Login"
+msgstr "Логин"
+
+#: IDF/Form/Admin/UserCreate.php:60
+msgid ""
+"The login must be between 3 and 15 characters long and contains only letters "
+"and digits."
+msgstr ""
+"Логин должен быть от 3-х до 15-ти символов и содержать только латинские "
+"буквы и цифры."
+
+#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57
+msgid "Email"
+msgstr "Эл. адрес"
+
+#: IDF/Form/Admin/UserCreate.php:71
+msgid ""
+"Double check the email address as the password is sent directly to the user."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67
+#: IDF/Form/UserAccount.php:66
+msgid "Language"
+msgstr "Язык"
+
+#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161
+msgid "Add a public key"
+msgstr "Добавить открытый ключ."
+
+#: IDF/Form/Admin/UserCreate.php:92
+msgid ""
+"Paste a SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+"Вставьте публичный ключ SSH или monotone. Будьте внимательны и не "
+"перепутайте с Вашим личным ключом!"
+
+#: IDF/Form/Admin/UserCreate.php:157
+msgid "Your details to access your forge."
+msgstr "Ваши данные для доступа к хранилищу."
+
+#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:429
+#: IDF/Form/UserAccount.php:438
+#, php-format
+msgid "The email \"%s\" is already used."
+msgstr "Эл. адрес \"%s\" уже используется."
+
+#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72
+#, php-format
+msgid "The login \"%s\" can only contain letters and digits."
+msgstr "Логин \"%s\" может содержать только латинские буквы и цифры."
+
+#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77
+#, php-format
+msgid "The login \"%s\" is already used, please find another one."
+msgstr "Логин \"%s\" уже используется. Пожалуйста, выберите другой логин."
+
+#: IDF/Form/Admin/UserUpdate.php:78
+msgid "Password"
+msgstr "Пароль"
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid "Leave blank if you do not want to change the password."
+msgstr "Оставьте пустым если Вы не хотите менять пароль."
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid ""
+"The password must be hard for other people to guess, but easy for the user "
+"to remember."
+msgstr ""
+"Пароль должен быть сложен для угадывания другими, но легок для запоминания "
+"пользователем."
+
+#: IDF/Form/Admin/UserUpdate.php:89
+msgid "Confirm password"
+msgstr "Подтверждение пароля"
+
+#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/IssueCreate.php:66
+#: IDF/Form/ProjectConf.php:48 IDF/Form/ReviewCreate.php:54
+#: IDF/Form/UpdateUpload.php:51 IDF/Form/Upload.php:49
+#: IDF/Form/UserAccount.php:101 IDF/Form/WikiPageCreate.php:70
+#: IDF/Form/WikiPageUpdate.php:60 IDF/Form/WikiResourceCreate.php:54
+#: IDF/Form/WikiResourceUpdate.php:46 IDF/Views/Wiki.php:102
+msgid "Description"
+msgstr "Описание"
+
+#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:110
+msgid "Twitter username"
+msgstr "Имя пользователя Twitter."
+
+#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:120
+msgid "Public email address"
+msgstr "Публичный адрес эл. почты"
+
+#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:130
+msgid "Website URL"
+msgstr "Веб-сайт"
+
+#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:140
+msgid "Upload custom avatar"
+msgstr "Загрузить свой аватар"
+
+#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:147
+msgid ""
+"An image file with a width and height not larger than 60 pixels (bigger "
+"images are scaled down)."
+msgstr ""
+"Графический файл с шириной и высотой не более 60 пикселов (большое "
+"изображение маштабируется автоматически)."
+
+#: IDF/Form/Admin/UserUpdate.php:151 IDF/Form/UserAccount.php:152
+msgid "Remove custom avatar"
+msgstr "Удалить свой аватар"
+
+#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:156
+msgid "Tick this to delete the custom avatar."
+msgstr "Выберите для удаления аватара."
+
+#: IDF/Form/Admin/UserUpdate.php:161 IDF/Views/Admin.php:274
+msgid "Staff"
+msgstr "Персонал"
+
+#: IDF/Form/Admin/UserUpdate.php:164
+msgid "If you give staff rights to a user, you really need to trust him."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:276
+msgid "Active"
+msgstr "Активный"
+
+#: IDF/Form/Admin/UserUpdate.php:176
+msgid ""
+"If the user is not getting the confirmation email or is abusing the system, "
+"you can directly enable or disable their account here."
+msgstr ""
+"Если пользователь не получает подтверждение по электронной почте или "
+"злоупотребляет системой, вы можете напрямую включить или отключить его "
+"учетную запись здесь."
+
+#: IDF/Form/Admin/UserUpdate.php:274
+msgid "--- is not a valid first name."
+msgstr "--- неправильное имя."
+
+#: IDF/Form/Admin/UserUpdate.php:290
+msgid ""
+"A user with this email already exists, please provide another email address."
+msgstr ""
+"Пользователь с таким адресом эл. почты уже существует. Пожалуйста, укажите "
+"другой адрес."
+
+#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/UserAccount.php:398
+msgid "For security reason, you cannot upload a file with this extension."
+msgstr "В целях безопасности, вы не можете загрузить файл с таким расширением."
+
+#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:461
+msgid "The passwords do not match. Please give them again."
+msgstr "Пароли не совпадают. Пожалуйста, повторите ввод."
+
+#: IDF/Form/Field/EmailList.php:45
+msgid "Please enter one or more valid email addresses."
+msgstr ""
+"Пожалуйста, введите один или несколько правильных адресов электронной почты."
+
+#: IDF/Form/IssueCreate.php:57 IDF/Form/IssueUpdate.php:46
+#: IDF/Form/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:73
+#: IDF/Form/UpdateUpload.php:42 IDF/Form/Upload.php:40
+#: IDF/gettexttemplates/idf/issues/base.html.php:3 IDF/Views/Download.php:65
+#: IDF/Views/Download.php:347 IDF/Views/Issue.php:62 IDF/Views/Issue.php:221
+#: IDF/Views/Issue.php:302 IDF/Views/Issue.php:391 IDF/Views/Issue.php:543
+#: IDF/Views/Issue.php:766 IDF/Views/Issue.php:825 IDF/Views/Review.php:58
+#: IDF/Views/User.php:83 IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:145
+#: IDF/Views/Wiki.php:186
+msgid "Summary"
+msgstr "Краткое описание"
+
+#: IDF/Form/IssueCreate.php:76 IDF/Form/IssueUpdate.php:66
+#: IDF/Form/ReviewCreate.php:83
+msgid "The \"upload_issue_path\" configuration variable was not set."
+msgstr "Переменная конфигурации \"upload_issue_path\" не была задана."
+
+#: IDF/Form/IssueCreate.php:86 IDF/Form/IssueUpdate.php:76
+msgid "Attach a file"
+msgstr "Приложить файл"
+
+#: IDF/Form/IssueCreate.php:99 IDF/Form/IssueUpdate.php:89
+#: IDF/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:83
+#: IDF/Views/Issue.php:63 IDF/Views/Issue.php:222 IDF/Views/Issue.php:304
+#: IDF/Views/Issue.php:392 IDF/Views/Issue.php:544 IDF/Views/Issue.php:767
+#: IDF/Views/Issue.php:826 IDF/Views/Review.php:59 IDF/Views/User.php:84
+msgid "Status"
+msgstr "Статус"
+
+#: IDF/Form/IssueCreate.php:108 IDF/Form/IssueUpdate.php:99
+msgid "Owner"
+msgstr "Владелец"
+
+#: IDF/Form/IssueCreate.php:118 IDF/Form/IssueUpdate.php:112
+#: IDF/Form/IssueUpdate.php:129
+msgid "This issue"
+msgstr "Эта проблема"
+
+#: IDF/Form/IssueCreate.php:210
+msgid "You cannot add a label with the \"Status\" prefix to an issue."
+msgstr "Вы не можете добавить ярлык с префиксом \"Статус\" к проблеме."
+
+#: IDF/Form/IssueCreate.php:211 IDF/Form/IssueCreate.php:218
+#: IDF/Form/UpdateUpload.php:110 IDF/Form/Upload.php:121
+#: IDF/Form/WikiPageCreate.php:151 IDF/Form/WikiPageUpdate.php:162
+msgid "You provided an invalid label."
+msgstr "Вы ввели недопустимый ярлык."
+
+#: IDF/Form/IssueCreate.php:217 IDF/Form/UpdateUpload.php:109
+#, fuzzy, php-format
+msgid "You cannot provide more than one label from the %s class to an issue."
+msgstr "Вы не можете указать больше чем метку из класса %s к проблеме."
+
+#: IDF/Form/IssueCreate.php:228 IDF/Form/IssueUpdate.php:194
+msgid "You need to provide a description of the issue."
+msgstr "Вам необходимо ввести описание проблемы."
+
+#: IDF/Form/IssueCreate.php:251 IDF/Form/ReviewCreate.php:159
+msgid "You provided an invalid status."
+msgstr "Вы ввели неверный статус."
+
+#: IDF/Form/IssueCreate.php:272
+msgid "You provided an invalid relation type."
+msgstr "Вы ввели неверный тип отношений."
+
+#: IDF/Form/IssueCreate.php:294
+#, php-format
+msgid "The value \"%s\" is not a valid issue id."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:300
+#, php-format
+msgid "The issue \"%s\" does not exist."
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:86
+msgid "is related to"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:87
+msgid "blocks"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:88
+msgid "is blocked by"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:89
+msgid "duplicates"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:90
+msgid "is duplicated by"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:97
+msgid ""
+"Define an issue template to hint the reporter to provide certain information"
+msgstr "Определите шаблон для предоставления детального описания проблемы."
+
+#: IDF/Form/IssueTrackingConf.php:106
+msgid "Open issue status values"
+msgstr "Значения статуса открытой проблемы"
+
+#: IDF/Form/IssueTrackingConf.php:114
+msgid "Closed issue status values"
+msgstr "Значения статуса закрытой проблемы"
+
+#: IDF/Form/IssueTrackingConf.php:123
+msgid "Predefined issue labels"
+msgstr "Предопределенные ярлыки для проблемы"
+
+#: IDF/Form/IssueTrackingConf.php:125
+msgid ""
+"The first \"Type:\" and \"Priority:\" entries found in this list are "
+"automatically chosen as defaults for new issues."
+msgstr ""
+"Первые записи \"Тип:\" и \"Приоритет:\", найденные в этом листе, "
+"автоматически выбраны как значения по умолчанию для новых проблем."
+
+#: IDF/Form/IssueTrackingConf.php:133
+#, fuzzy
+msgid "Each issue may have at most one label with each of these classes."
+msgstr ""
+"Каждая проблема может иметь не более одной метки c каждым из этих классов"
+
+#: IDF/Form/IssueTrackingConf.php:140
+msgid "Issue relations"
+msgstr "Связи проблемы"
+
+#: IDF/Form/IssueTrackingConf.php:142
+msgid ""
+"You can define bidirectional relations like \"is related to\" or \"blocks, "
+"is blocked by\". For standard relations pre-configured translations exist, "
+"new relations should however be defined in a language that is understood by "
+"all project members."
+msgstr ""
+
+#: IDF/Form/IssueUpdate.php:56 IDF/Form/ReviewFileComment.php:45
+#: IDF/Form/WikiPageUpdate.php:82 IDF/Form/WikiResourceUpdate.php:66
+msgid "Comment"
+msgstr "Комментарий"
+
+#: IDF/Form/IssueUpdate.php:316
+msgid "No changes were entered."
+msgstr "Никакие изменения не были введены."
+
+#: IDF/Form/MembersConf.php:104
+#, php-format
+msgid "The following login is invalid: %s."
+msgid_plural "The following logins are invalid: %s."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: IDF/Form/Password.php:34
+msgid "Your login or email"
+msgstr "Ваш логин или эл. адрес"
+
+#: IDF/Form/Password.php:35
+msgid "Provide either your login or your email to recover your password."
+msgstr "Для восстановления пароля введите ваш логин или адреса эл. почты."
+
+#: IDF/Form/Password.php:49 IDF/Form/Password.php:64
+msgid ""
+"Sorry, we cannot find a user with this email address or login. Feel free to "
+"try again."
+msgstr ""
+"К сожалению мы не можем найти пользователя с этим адресом электронной почты "
+"или логином. Не стесняйтесь попробовать еще раз."
+
+#: IDF/Form/Password.php:100
+msgid "Password Recovery - InDefero"
+msgstr "Восстановение пароля - InDefero"
+
+#: IDF/Form/PasswordInputKey.php:36 IDF/Form/PasswordReset.php:39
+#: IDF/Form/UserChangeEmail.php:36
+msgid "Your verification key"
+msgstr "Код подтверждения"
+
+#: IDF/Form/PasswordInputKey.php:50 IDF/Form/PasswordReset.php:89
+msgid ""
+"We are sorry but this validation key is not valid. Maybe you should directly "
+"copy/paste it from your validation email."
+msgstr ""
+"Мы сожалеем но этот проверочный ключ не действителен. Возможно Вам нужно "
+"скопировать его из проверочного письма."
+
+#: IDF/Form/PasswordInputKey.php:61 IDF/Form/PasswordReset.php:100
+msgid ""
+"Sorry, but this verification key has expired, please restart the password "
+"recovery sequence. For security reasons, the verification key is only valid "
+"24h."
+msgstr ""
+"Извините, но проверочный ключ больше не действителен. Пожалуйста начните с "
+"восстановления пароля. В целях безопасности проверочный ключ действителен "
+"только 24 часа."
+
+#: IDF/Form/PasswordInputKey.php:76 IDF/Form/PasswordReset.php:108
+#: IDF/Form/RegisterConfirmation.php:137 IDF/Form/RegisterInputKey.php:72
+msgid "Cannot save an invalid form."
+msgstr "Немогу сохранить неправильную форму."
+
+#: IDF/Form/PasswordReset.php:45 IDF/Form/RegisterConfirmation.php:69
+#: IDF/Form/UserAccount.php:77
+msgid "Your password"
+msgstr "Пароль"
+
+#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80
+msgid ""
+"Your password must be hard for other people to find it, but easy for you to "
+"remember."
+msgstr ""
+"Ваш пароль должен быть сложен для угадывания другими, но легок для "
+"запоминания Вами."
+
+#: IDF/Form/PasswordReset.php:56 IDF/Form/RegisterConfirmation.php:80
+#: IDF/Form/UserAccount.php:89
+msgid "Confirm your password"
+msgstr "Подтверждение пароля"
+
+#: IDF/Form/PasswordReset.php:74 IDF/Form/RegisterConfirmation.php:122
+msgid "The two passwords must be the same."
+msgstr "Пароли должны совпадать."
+
+#: IDF/Form/PasswordReset.php:77
+msgid ""
+"This account is not active. Please contact the forge administrator to "
+"activate it."
+msgstr ""
+"Эта учетная запись не активна. Пожалуйста, свяжитесь с администратором "
+"хранилища, чтобы активировать его."
+
+#: IDF/Form/ProjectConf.php:43
+msgid "Short Description"
+msgstr "Краткое описание"
+
+#: IDF/Form/ProjectConf.php:85
+msgid "The \"upload_path\" configuration variable was not set."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:90
+msgid "Update the logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:92
+msgid "The logo must be a picture with a size of 32 by 32."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:103
+msgid "Remove the current logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:139
+msgid "Could not determine the size of the uploaded picture."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:143
+msgid "The picture must have a size of 32 by 32."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:164
+msgid "The entered URL is invalid. Only http and https URLs are allowed."
+msgstr ""
+
+#: IDF/Form/Register.php:41
+msgid "Your login"
+msgstr "Ваш логин"
+
+#: IDF/Form/Register.php:45
+msgid ""
+"The login must be between 3 and 15 characters long and contain only letters "
+"and digits."
+msgstr ""
+"Логин должен быть длиной от 3 до 15 символов и содержать только буквы и "
+"цифры."
+
+#: IDF/Form/Register.php:53 IDF/Form/UserAccount.php:59
+msgid "Your email"
+msgstr "Ваш эл. адрес"
+
+#: IDF/Form/Register.php:55
+msgid "We will never send you any unsolicited emails. We hate spam too!"
+msgstr ""
+
+#: IDF/Form/Register.php:60
+msgid "I agree to the terms and conditions."
+msgstr "Я согласен с правилами и условиями."
+
+#: IDF/Form/Register.php:88
+msgid ""
+"We know, this is boring, but you need to agree with the terms and conditions."
+msgstr ""
+"Мы знаем, что это скучно, но вы должны согласиться с правилами и условиями."
+
+#: IDF/Form/Register.php:97
+#, php-format
+msgid ""
+"The email \"%1$s\" is already used. If you need to, you can recover your password."
+msgstr ""
+
+#: IDF/Form/Register.php:148
+msgid "Confirm the creation of your account."
+msgstr "Подтвердите создание вашей учетной записи."
+
+#: IDF/Form/RegisterConfirmation.php:40 IDF/Form/RegisterInputKey.php:36
+msgid "Your confirmation key"
+msgstr "Ваш код подтверждения"
+
+#: IDF/Form/RegisterConfirmation.php:72
+msgid ""
+"Your password must be hard for other people to guess, but easy for you to "
+"remember."
+msgstr ""
+"Ваш пароль должен быть сложен для угадывания другими, но легок для "
+"запоминания Вами."
+
+#: IDF/Form/RegisterConfirmation.php:99 IDF/Form/RegisterInputKey.php:50
+msgid ""
+"We are sorry but this confirmation key is not valid. Maybe you should "
+"directly copy/paste it from your confirmation email."
+msgstr ""
+"Мы сожалеем но этот проверочный ключ не действителен. Возможно Вам нужно "
+"скопировать его из проверочного письма."
+
+#: IDF/Form/RegisterConfirmation.php:110
+#, fuzzy, php-format
+msgid ""
+"This account has already been confirmed. Maybe should you try to recover your password."
+msgstr ""
+"Эта учетная запись уже была подтверждена. Может быть, вы должны попытаться "
+"восстановить свой пароль, используя ссылку на помощь."
+
+#: IDF/Form/ReviewCreate.php:74
+#: IDF/gettexttemplates/idf/source/base.html.php:5
+#: IDF/gettexttemplates/idf/source/changelog.html.php:7
+msgid "Commit"
+msgstr "Комит"
+
+#: IDF/Form/ReviewCreate.php:92
+msgid "Patch"
+msgstr "Патч"
+
+#: IDF/Form/ReviewCreate.php:119
+msgid "We were not able to parse your patch. Please provide a valid patch."
+msgstr "Мы были не в состоянии разобрать ваш патч. Укажите правильный патч."
+
+#: IDF/Form/ReviewCreate.php:128
+msgid "You provided an invalid commit."
+msgstr "Вы ввели неверный комит."
+
+#: IDF/Form/ReviewCreate.php:202
+msgid "Initial patch to be reviewed."
+msgstr "Первоначальный патч для рецензирования."
+
+#: IDF/Form/ReviewFileComment.php:56
+msgid "General comment"
+msgstr "Общий комментарий"
+
+#: IDF/Form/ReviewFileComment.php:113
+msgid ""
+"You need to provide your general comment about the proposal, or comments on "
+"at least one file."
+msgstr ""
+"Вы должны предоставить Ваши общие замечания по поводу предложения или "
+"комментарии по крайней мере на один файл."
+
+#: IDF/Form/ReviewFileComment.php:124
+msgid "The status have been updated."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:130
+msgid "This field is required."
+msgstr ""
+
+#: IDF/Form/SourceConf.php:54 IDF/Form/UploadConf.php:70
+msgid "Webhook URL"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:38 IDF/gettexttemplates/idf/admin/base.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html.php:8
+#: IDF/gettexttemplates/idf/base-full.html~.php:7
+#: IDF/gettexttemplates/idf/base.html.php:8
+#: IDF/gettexttemplates/idf/base.html~.php:7
+#: IDF/gettexttemplates/idf/downloads/base.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:14
+#: IDF/Views/Project.php:97
+msgid "Downloads"
+msgstr "Файлы"
+
+#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.php:12
+#: IDF/gettexttemplates/idf/base-full.html~.php:11
+#: IDF/gettexttemplates/idf/base.html.php:12
+#: IDF/gettexttemplates/idf/base.html~.php:11
+msgid "Code Review"
+msgstr "Рецензирование кода"
+
+#: IDF/Form/TabsConf.php:40 IDF/gettexttemplates/idf/admin/base.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html~.php:8
+#: IDF/gettexttemplates/idf/base.html.php:9
+#: IDF/gettexttemplates/idf/base.html~.php:8
+msgid "Documentation"
+msgstr "Документация"
+
+#: IDF/Form/TabsConf.php:41 IDF/gettexttemplates/idf/admin/base.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html.php:11
+#: IDF/gettexttemplates/idf/base-full.html~.php:10
+#: IDF/gettexttemplates/idf/base.html.php:11
+#: IDF/gettexttemplates/idf/base.html~.php:10
+msgid "Source"
+msgstr "Исходный код"
+
+#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.php:10
+#: IDF/gettexttemplates/idf/base-full.html~.php:9
+#: IDF/gettexttemplates/idf/base.html.php:10
+#: IDF/gettexttemplates/idf/base.html~.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:17
+msgid "Issues"
+msgstr "Проблемы"
+
+#: IDF/Form/TabsConf.php:50
+msgid "Open to all"
+msgstr "Открыто для всех"
+
+#: IDF/Form/TabsConf.php:51
+msgid "Signed in users"
+msgstr "Вошедшие пользователи"
+
+#: IDF/Form/TabsConf.php:54
+msgid "Closed"
+msgstr "Закрытый"
+
+#: IDF/Form/TabsConf.php:84
+#, fuzzy
+msgid "Others"
+msgstr "Другой"
+
+#: IDF/Form/TabsConf.php:107
+msgid "Extra authorized users"
+msgstr "Дополнительные авторизованные пользователи"
+
+#: IDF/Form/Upload.php:59 IDF/Form/WikiResourceCreate.php:65
+#: IDF/Form/WikiResourceUpdate.php:56
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7
+#: IDF/Views/Download.php:64 IDF/Views/Download.php:346
+msgid "File"
+msgstr "Файл"
+
+#: IDF/Form/Upload.php:87 IDF/Form/WikiResourceCreate.php:96
+#: IDF/Form/WikiResourceUpdate.php:83
+msgid "For security reasons, you cannot upload a file with this extension."
+msgstr "В целях безопасности нельзя загружать файлы с данным расширением."
+
+#: IDF/Form/Upload.php:120
+#, fuzzy, php-format
+msgid "You cannot provide more than one label from the %s class to a download."
+msgstr "Вы не может указать больше чем метки из %s класса страницы."
+
+#: IDF/Form/UploadArchive.php:41
+#, fuzzy
+msgid "Archive file"
+msgstr "Архив"
+
+#: IDF/Form/UploadArchive.php:67
+#, fuzzy, php-format
+msgid ""
+"For security reasons, you cannot upload a file (%s) with this extension."
+msgstr "В целях безопасности нельзя загружать файлы с данным расширением."
+
+#: IDF/Form/UploadArchive.php:98
+#, fuzzy, php-format
+msgid ""
+"You cannot provide more than label from the %1$s class to a download (%2$s)."
+msgstr "Вы не можете указать больше чем метку из класса %s к проблеме."
+
+#: IDF/Form/UploadArchive.php:109
+#, php-format
+msgid ""
+"A file with the name \"%s\" has already been uploaded and is not marked to "
+"be replaced."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:41
+msgid "The archive does not exist."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:48
+#, php-format
+msgid "The archive could not be read (code %d)."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:53
+msgid "The archive does not contain a manifest.xml."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:61
+#, php-format
+msgid "The archive's manifest is invalid: %s"
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:77
+#, php-format
+msgid "The entry %d in the manifest is missing a file name."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:82
+#, php-format
+msgid "The entry %d in the manifest is missing a summary."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:86
+msgid "The manifest must not reference itself."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:91
+#, php-format
+msgid "The entry %s in the manifest does not exist in the archive."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:96
+#, php-format
+msgid "The entry %s in the manifest is referenced more than once."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:108
+#, php-format
+msgid "The entry %s in the manifest has more than the six allowed labels set."
+msgstr ""
+
+#: IDF/Form/UploadConf.php:53
+msgid "Predefined download labels"
+msgstr "Предопределенные метки скачивания"
+
+#: IDF/Form/UploadConf.php:62
+msgid "Each download may have at most one label with each of these classes"
+msgstr "Каждый файл может иметь не более одной метки с каждым из этих классов"
+
+#: IDF/Form/UserAccount.php:61
+msgid ""
+"If you change your email address, an email will be sent to the new address "
+"to confirm it."
+msgstr ""
+"Если Вы измените адрес эл. почты, то на него будет выслано письмо для "
+"подтверждения адреса."
+
+#: IDF/Form/UserAccount.php:80
+msgid "Leave blank if you do not want to change your password."
+msgstr "Оставьте поле пустым, если Вы не хотите менять пароль."
+
+#: IDF/Form/UserAccount.php:166
+msgid ""
+"Paste an SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+"Вставьте публичный ключ SSH или monotone. Будьте внимательны и не "
+"перепутайте с Вашим личным ключом!"
+
+#: IDF/Form/UserAccount.php:171
+#, fuzzy
+msgid "Add a secondary email address"
+msgstr "Добавить дополнительный e-mail"
+
+#: IDF/Form/UserAccount.php:173
+#, fuzzy
+msgid "You will get an email to confirm that you own the address you specify."
+msgstr "Вы получите письмо для подтверждения введенного адреса."
+
+#: IDF/Form/UserAccount.php:200
+msgid "Confirm your new email address."
+msgstr "Подтвердите ваш новый адрес электронной почты."
+
+#: IDF/Form/UserAccount.php:203
+#, php-format
+msgid ""
+"A validation email has been sent to \"%s\" to validate the email address "
+"change."
+msgstr ""
+"Проверочное письмо было отправлено на адрес \"%s\" для подтверждения "
+"изменения адреса."
+
+#: IDF/Form/UserAccount.php:341
+msgid ""
+"Please check the key as it does not appear to be a valid SSH public key."
+msgstr ""
+"Пожалуйста, проверьте ключ, поскольку он не выглядит как публичный SSH ключ."
+
+#: IDF/Form/UserAccount.php:363
+msgid ""
+"Please check the key as it does not appear to be a valid monotone public key."
+msgstr ""
+"Пожалуйста, проверьте ключ, поскольку он не выглядит действительным открытым "
+"ключом monotone."
+
+#: IDF/Form/UserAccount.php:371
+msgid "Public key looks like neither an SSH nor monotone public key."
+msgstr "Публичный ключ не выглядит ни как SSH, ни как monotone ключ."
+
+#: IDF/Form/UserAccount.php:383
+msgid "You already have uploaded this key."
+msgstr "Вы уже загружали это ключ."
+
+#: IDF/Form/UserChangeEmail.php:63
+msgid ""
+"The validation key is not valid. Please copy/paste it from your confirmation "
+"email."
+msgstr ""
+"Неверный проверочный ключ. Пожалуйста, скопируйте / вставьте его из письма с "
+"подтверждением."
+
+#: IDF/Form/WikiConf.php:49
+msgid "Predefined documentation page labels"
+msgstr "Предопределенные метки страницы документации"
+
+#: IDF/Form/WikiConf.php:58
+msgid ""
+"Each documentation page may have at most one label with each of these classes"
+msgstr ""
+"Каждая страница документации может иметь не более одной метки с каждым из "
+"этих классов"
+
+#: IDF/Form/WikiPageCreate.php:38
+msgid ""
+"# Introduction\n"
+"\n"
+"Add your content here.\n"
+"\n"
+"\n"
+"# Details\n"
+"\n"
+"Add your content here. Format your content with:\n"
+"\n"
+"* Text in **bold** or *italic*.\n"
+"* Headings, paragraphs, and lists.\n"
+"* Links to other [[WikiPage]].\n"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:57
+msgid "PageName"
+msgstr "ИмяСтраницы"
+
+#: IDF/Form/WikiPageCreate.php:60 IDF/Form/WikiPageUpdate.php:50
+msgid "Page title"
+msgstr "Заголовок страницы"
+
+#: IDF/Form/WikiPageCreate.php:66 IDF/Form/WikiPageUpdate.php:56
+msgid ""
+"The page name must contains only letters, digits and the dash (-) character."
+msgstr "Имя страницы должно содержать только буквы, цифры и прочерк (-)."
+
+#: IDF/Form/WikiPageCreate.php:71 IDF/Form/WikiPageUpdate.php:61
+msgid "This one line description is displayed in the list of pages."
+msgstr "Это однострочное описание отображается в списке страниц ."
+
+#: IDF/Form/WikiPageCreate.php:108 IDF/Form/WikiPageUpdate.php:119
+#: IDF/Form/WikiResourceCreate.php:78
+msgid "The title contains invalid characters."
+msgstr "Название содержит недопустимые символы."
+
+#: IDF/Form/WikiPageCreate.php:114 IDF/Form/WikiPageUpdate.php:125
+msgid "A page with this title already exists."
+msgstr "Страница с таким заголовком уже существует."
+
+#: IDF/Form/WikiPageCreate.php:150 IDF/Form/WikiPageUpdate.php:161
+#, fuzzy, php-format
+msgid "You cannot provide more than one label from the %s class to a page."
+msgstr "Вы не может указать больше чем метки из %s класса страницы."
+
+#: IDF/Form/WikiPageCreate.php:200
+msgid "Initial page creation"
+msgstr "Создание первоначальной страницы"
+
+#: IDF/Form/WikiPageDelete.php:39
+msgid "Yes, I understand that the page and all its revisions will be deleted."
+msgstr "Да, я понимаю, что страница и все ее версии будут удалены."
+
+#: IDF/Form/WikiPageDelete.php:50 IDF/Form/WikiResourceDelete.php:50
+msgid "You need to confirm the deletion."
+msgstr "Вам необходимо подтвердить удаление."
+
+#: IDF/Form/WikiPageUpdate.php:83 IDF/Form/WikiResourceUpdate.php:67
+msgid "One line to describe the changes you made."
+msgstr "Одна строка для описания внесенных изменений."
+
+#: IDF/Form/WikiResourceCreate.php:40
+msgid "ResourceName"
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:44
+msgid "Resource title"
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:50
+#, fuzzy
+msgid ""
+"The resource name must contains only letters, digits and the dash (-) "
+"character."
+msgstr "Имя страницы должно содержать только буквы, цифры и прочерк (-)."
+
+#: IDF/Form/WikiResourceCreate.php:55 IDF/Form/WikiResourceUpdate.php:47
+#, fuzzy
+msgid "This one line description is displayed in the list of resources."
+msgstr "Это однострочное описание отображается в списке страниц ."
+
+#: IDF/Form/WikiResourceCreate.php:84
+#, fuzzy
+msgid "A resource with this title already exists."
+msgstr "Страница с таким заголовком уже существует."
+
+#: IDF/Form/WikiResourceCreate.php:142
+#, fuzzy
+msgid "Initial resource creation"
+msgstr "Создание первоначальной страницы"
+
+#: IDF/Form/WikiResourceDelete.php:39
+#, fuzzy
+msgid ""
+"Yes, I understand that the resource and all its revisions will be deleted."
+msgstr "Да, я понимаю, что страница и все ее версии будут удалены."
+
+#: IDF/Form/WikiResourceUpdate.php:89
+#, php-format
+msgid ""
+"The mime type of the uploaded file \"%1$s\" does not match the mime type of "
+"this resource \"%2$s\""
+msgstr ""
+
+#: IDF/Form/WikiResourceUpdate.php:97
+msgid "The current version of the resource and the uploaded file are equal."
+msgstr ""
+
+#: IDF/Gconf.php:60 IDF/Search/Occ.php:56
+msgid "model class"
+msgstr "класс модели"
+
+#: IDF/Gconf.php:66 IDF/Search/Occ.php:62
+msgid "model id"
+msgstr "ID модели"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:3
+msgid "Project Summary"
+msgstr "Краткое описание проекта"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:6
+msgid "Issue Tracking"
+msgstr "Слежение за проблемами"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:8
+msgid "Project Members"
+msgstr "Участники проекта"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:9
+msgid "Tabs Access and Notifications"
+msgstr "Права и уведомления"
+
+#: IDF/gettexttemplates/idf/admin/downloads.html.php:3
+#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3
+#: IDF/gettexttemplates/idf/admin/wiki.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/labels.html.php:3
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
List one status value per line in desired sort-order.
\n"
+"
Optionally, use an equals-sign to document the meaning of each status "
+"value.
\n"
+msgstr ""
+"\n"
+"
Инструкции:
\n"
+"
Указывайте значение статуса по одному на строку в нужном порядке.
\n"
+"
При необходимости, используйте знак равенства для описания значение "
+"каждого статуса.
The webhook URL setting specifies an URL to which a HTTP PUT"
+"strong>\n"
+"request is sent after a new download has been added or to which a HTTP "
+"POST\n"
+"request is sent after an existing download has been updated.\n"
+"If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/upload
\n"
+"
http://domain.com/upload?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each download:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%d - download id
\n"
+"
\n"
+"\n"
+"
For example, updating download 123 of project 'my-project' with\n"
+"web hook URL http://mydomain.com/%p/%d would send a POST "
+"request to\n"
+"http://mydomain.com/my-project/123.
A project owner may make any change to this project, including removing "
+"other project owners. You need to be carefull when you give owner rights."
+"p>\n"
+"
A project member will not have access to the administration area but will "
+"have more options available in the use of the project.
\n"
+msgstr ""
+"\n"
+"
Замечание:
\n"
+"
Владелец проекта может вносить любые изменения в проект, включая удаление "
+"других владельцев проекта.
\n"
+"
Участники проекта не будут иметь доступа к администрированию но будут "
+"иметь расширенные права при пользовании проектом.
\n"
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:3
+msgid "You can find here the current repository configuration of your project."
+msgstr "Вы можете найти здесь текущую конфигурацию репозитория вашего проекта."
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:4
+msgid ""
+"
The webhook URL setting specifies an URL to which a HTTP \n"
+"%%hook_request_method%% request is sent after each "
+"repository\n"
+"commit. If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/commit
\n"
+"
http://domain.com/commit?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each commit:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%r - revision number
\n"
+"
\n"
+"\n"
+"
For example, committing revision 123 to project 'my-project' with\n"
+"post-commit URL http://mydomain.com/%p/%r would send a request "
+"to\n"
+"http://mydomain.com/my-project/123.
"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:26
+msgid ""
+"The form contains some errors. Please correct them to update the source "
+"configuration."
+msgstr ""
+"Форма содержит ошибки. Пожалуйста исправте их чтобы обновить настройки "
+"исходного кода."
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:27
+msgid "Repository type:"
+msgstr "Тип репозитория:"
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:28
+msgid "Repository access:"
+msgstr "Доступ к репозиторию:"
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:29
+msgid "Repository size:"
+msgstr "Размер репозитория:"
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
The description of the project can be improved using the Markdown syntax.
\n"
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:7
+msgid ""
+"The form contains some errors. Please correct them to update the summary."
+msgstr ""
+"Форма содержит ошибки. Пожалуйста исправте их чтобы обновить краткое "
+"описание."
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:8
+msgid "Current logo"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html~.php:4
+#: IDF/gettexttemplates/idf/base.html.php:4
+#: IDF/gettexttemplates/idf/base.html~.php:4
+#: IDF/gettexttemplates/idf/main-menu.html.php:8
+#: IDF/gettexttemplates/idf/project-list.html.php:4
+msgid "Project logo"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:10
+msgid "Your project does not have a logo configured yet."
+msgstr "Ваш проект не имеет настроеного логотипа."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:3
+#, fuzzy
+msgid ""
+"This section allows you to configure project tabs access rights and "
+"notifications."
+msgstr ""
+"Вы можете настроить здесь права доступа к вкладкам проекта и уведомлений."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:4
+msgid ""
+"Tab access controls whether a single user can navigate into a particular "
+"section of your project via the main menu or automatically generated object "
+"links."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:5
+#, fuzzy
+msgid ""
+"If you mark a project as private, only the project members and "
+"administrators, together with the extra authorized users you provide will "
+"have access to the project as a whole. You will still be able to define "
+"further access rights for the different tabs but the \"Open to all\" and "
+"\"Signed in users\" will default to authorized users only."
+msgstr ""
+"Если вы отметите проект как частный, только участники проекта и "
+"администраторы, а также дополнительные авторизованные пользователи будут "
+"иметь доступ к проекту. Вы по-прежнему сможете изменить права доступа для "
+"разных вкладок, но \"Открыто для всех\" и \"Зарегистрированные участники\" "
+"по умолчанию будет доступно только авторизованным пользователям."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:6
+#, fuzzy
+msgid ""
+"For the extra authorized user list, specify each person by its login. Each "
+"person must have already registered with the given login. Separate the "
+"logins with commas and/or new lines."
+msgstr ""
+"Укажите логин каждого участника. Каждый участник должен быть уже "
+"зарегистрирован с этим логином. Разделяйте логины запятыми и/или новой "
+"строкой."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:7
+#, fuzzy
+msgid ""
+"Only project members and admins have write access to the source. If you "
+"restrict the access to the source, anonymous access is not provided and the "
+"users must authenticate themselves with their password or SSH key."
+msgstr ""
+"\n"
+"Только участники и администраторы проекта имеют возможность изменять "
+"исходный код.\n"
+"Если Вы ограничили доступ к исходному коду, анонимный доступ закрыт. Для "
+"получения доступа к исходному коду пользователи должны авторизоваться "
+"используя пароль или SSH ключ."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
+#, php-format
+msgid ""
+"Here you can configure who should be notified about changes in a particular "
+"section. You can also configure additional addresses, like the one of a "
+"mailing list, that should be notified. (Keep in mind that you might have to "
+"register the sender address %%from_email%% to let the "
+"mailing list actually accept notification emails.) Multiple email addresses "
+"must be separated through commas (',')."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:9
+msgid ""
+"The form contains some errors. Please correct them to update the access "
+"rights."
+msgstr ""
+"Форма содержит ошибки. Пожалуйста исправте их чтобы обновить права доступа."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
+msgid "Access Rights"
+msgstr "Права доступа"
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:11
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
+#, fuzzy
+msgid "Notifications"
+msgstr "Уведомление по электронной почте"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:3
+#: IDF/gettexttemplates/idf/base-full.html~.php:3
+#: IDF/gettexttemplates/idf/base.html.php:3
+#: IDF/gettexttemplates/idf/base.html~.php:3
+#, php-format
+msgid ""
+"Sign in or create your account to create issues or "
+"add comments"
+msgstr ""
+"Войдите или зарегистрируйтесь что бы добавить "
+"проблему или комментарий"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:6
+#: IDF/gettexttemplates/idf/base.html.php:6
+#: IDF/gettexttemplates/idf/project-list.html.php:6
+msgid "External link to project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html~.php:6
+#: IDF/gettexttemplates/idf/base.html.php:7
+#: IDF/gettexttemplates/idf/base.html~.php:6
+msgid "Project Home"
+msgstr "Проект"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:13
+#: IDF/gettexttemplates/idf/base-full.html~.php:12
+#: IDF/gettexttemplates/idf/base.html.php:13
+#: IDF/gettexttemplates/idf/base.html~.php:12
+msgid "Project Management"
+msgstr "Управление проектом"
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:4
+#: IDF/gettexttemplates/idf/downloads/index.html.php:4
+#: IDF/Views/Download.php:235
+msgid "New Download"
+msgstr "Добавить файл"
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:5
+#, fuzzy
+msgid "Upload Archive"
+msgstr "Архив"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:3
+msgid ""
+"Each file must have a distinct name and file contents\n"
+"cannot be changed, so be sure to include release numbers in each file\n"
+"name."
+msgstr ""
+"Каждый файл должен иметь уникальное имя. Содержимое файла не может быть "
+"изменено, так что не забудьте включить номер релиза в имя файла."
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:6
+#, php-format
+msgid ""
+"You can use the Markdown syntax for the description."
+msgstr ""
+"В описании Вы можете использовать Markdown синтаксис."
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:7
+msgid "The form contains some errors. Please correct them to submit the file."
+msgstr "Форма содержит ошибки. Пожалуйста исправте их чтобы отправить файл."
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:8
+msgid "Submit File"
+msgstr "Послать файл"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:9
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:8
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:21
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:14
+#: IDF/gettexttemplates/idf/issues/create.html.php:14
+#: IDF/gettexttemplates/idf/issues/view.html.php:27
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:7
+#: IDF/gettexttemplates/idf/register/index.html.php:8
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:5
+#: IDF/gettexttemplates/idf/review/create.html.php:12
+#: IDF/gettexttemplates/idf/review/view.html.php:41
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:5
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:13
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:5
+msgid "Cancel"
+msgstr "Отмена"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:10
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:9
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:6
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:6
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:6
+msgid "Instructions"
+msgstr "Инструкции"
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:3
+msgid ""
+"The archive must include a manifest.xml file with meta "
+"information about the\n"
+"files to process inside the archive. All processed files must be unique or "
+"replace existing files explicitely."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:5
+#, fuzzy, php-format
+msgid ""
+"You can learn more about the archive format here."
+msgstr ""
+"Если у Вас еще нет учетной записи Вы можете создать ее здесь."
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:6
+#, fuzzy
+msgid ""
+"The form contains some errors. Please correct them to submit the archive."
+msgstr "Форма содержит ошибки. Пожалуйста исправте их чтобы отправить файл."
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:7
+#, fuzzy
+msgid "Submit Archive"
+msgstr "Послать файл"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:3
+msgid ""
+"Attention! If you want to delete a specific version of your "
+"software, maybe, someone is depending on this specific version to run his "
+"systems. Are you sure, you will not affect anybody when removing this file?"
+msgstr ""
+"Внимание! Если вы хотите удалить определенную версию "
+"программного обеспечения, имейте ввиду, что может быть работоспособность чей-"
+"то системы зависит от этой определенной версии. Вы уверены, что удаление "
+"этого файла не повлияет на чью-то систему?"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:4
+#, php-format
+msgid ""
+"Instead of deleting the file, you could mark it as "
+"deprecated."
+msgstr ""
+"Вместо удаление файла, вы можете пометь его как "
+"устаревший."
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:5
+#: IDF/gettexttemplates/idf/downloads/view.html.php:4
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:4
+#: IDF/gettexttemplates/idf/issues/view.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:5
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:7
+#, php-format
+msgid "by %%submitter%%"
+msgstr "%%submitter%%"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:6
+msgid "Delete File"
+msgstr "Удалить файл"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:8
+#: IDF/gettexttemplates/idf/downloads/view.html.php:14
+msgid "Uploaded:"
+msgstr "Загружено:"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:9
+#: IDF/gettexttemplates/idf/downloads/view.html.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:29
+#: IDF/gettexttemplates/idf/review/view.html.php:27
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:14
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:15
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:17
+msgid "Updated:"
+msgstr "Обновлено:"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6
+#: IDF/gettexttemplates/idf/listProjects.html.php:17
+msgid "Downloads:"
+msgstr "Файлы:"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:11
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:17
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml~.php:6
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:10
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:21
+#: IDF/gettexttemplates/idf/issues/view.html.php:33
+#: IDF/gettexttemplates/idf/project-list.html.php:8
+#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:13
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:16
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:12
+#: IDF/IssueComment.php:157 IDF/Wiki/PageRevision.php:204
+msgid "Labels:"
+msgstr "Ярлыки:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3
+msgid "A new file is available for download:"
+msgstr "Новый файл доступен для скачивания:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:4
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:5
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:8
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:4
+msgid "Hello,"
+msgstr "Привет,"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:5
+msgid "Project:"
+msgstr "Проект: "
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:6
+msgid "Submitted by:"
+msgstr "Размещен:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:8
+msgid "Download:"
+msgstr "Загрузить:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:10
+#: IDF/gettexttemplates/idf/review/view.html.php:31
+#: IDF/gettexttemplates/idf/user/public.html.php:4
+msgid "Description:"
+msgstr "Описание:"
+
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:3
+msgid "A file download was updated:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3
+msgid "Details"
+msgstr "Детали"
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:3
+#, php-format
+msgid "See the deprecated files."
+msgstr "Смотреть устаревшие файлы."
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:5
+msgid "Number of files:"
+msgstr "Количество файлов:"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:3
+msgid ""
+"Attention! This file is marked as deprecated, download it "
+"only if you are sure you need this specific version."
+msgstr ""
+"Внимание! Этот файл помечен как устаревший. Скачивайте его, "
+"только если вы уверены, что вам необходима именно эта конкретная версия."
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:5
+msgid "md5:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:6
+msgid "Changes"
+msgstr "Изменения"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:7
+msgid "The form contains some errors. Please correct them to update the file."
+msgstr "Форма содержит ошибки. Пожалуйста исправьте их для обновления файла."
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:8
+msgid "Update File"
+msgstr "Обновить файл"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:12
+msgid "Remove this file"
+msgstr "Удалить этот файл"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:18
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:12
+msgid "Trash"
+msgstr "Мусор"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:13
+msgid "Delete this file"
+msgstr "Удалить этот файл"
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:3
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:3
+#: IDF/gettexttemplates/idf/faq.html.php:65
+msgid "Here we are, just to help you."
+msgstr "Мы здесь, чтобы помогать Вам."
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:4
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:4
+#: IDF/gettexttemplates/idf/faq.html.php:66
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:4
+#: IDF/gettexttemplates/idf/index.html.php:4 IDF/Views/Admin.php:77
+#: IDF/Views.php:91
+msgid "Projects"
+msgstr "Проекты"
+
+#: IDF/gettexttemplates/idf/faq.html.php:3
+#, fuzzy
+msgid ""
+"
This is simple:
\n"
+"\n"
+"
Write in the comments \"This is a duplicate of issue 123\" or - if you "
+"are a member of the crew -\n"
+"directly add the \"duplicates\" relation with the value \"123\" below the "
+"comment field. Change \"123\"\n"
+"with the corresponding issue number.
\n"
+"
Change the status of the current issue to Duplicate.
\n"
+"
Submit the changes.
\n"
+""
+msgstr ""
+"
Это просто:
\n"
+"
Напишите в комментарии \"Это дубликат проблемы 123\", замените 123 "
+"на соответствующий номер проблемы.
\n"
+"
Измените статус текущей проблемы на Дубликат.
\n"
+"
Отправьте изменения.
"
+
+#: IDF/gettexttemplates/idf/faq.html.php:11
+msgid ""
+"You need to create an account on Gravatar, this takes about 5 minutes and is free."
+msgstr ""
+"Вам необходимо создать учетную запись на Gravatar, это займет около 5 минут и это бесплатно."
+
+#: IDF/gettexttemplates/idf/faq.html.php:12
+msgid ""
+"\n"
+"
To embed any previously uploaded resource into your wiki page, you can "
+"use the [[!ResourceName]] syntax.
\n"
+"\n"
+"
The rendering of the resource can then be further fine-tuned:\n"
+"
\n"
+"
[[!ImageResource, align=right, width=200]] renders "
+"\"ImageResource\" right-aligned and scale its width to 200
\n"
+"
[[!TextResource, align=center, width=300, height=300]] "
+"renders \"TextResource\" in a centered, 300 by 300 px iframe
\n"
+"
[[!AnyResource, preview=no]] does not render a preview of "
+"the resource, but only provides a download link (default for binary "
+"resources)
\n"
+"
[[!BinaryResource, title=Download]] renders the download "
+"link of \"BinaryResource\" with an alternative title
\n"
+"
\n"
+"\n"
+"\n"
+"Resources are versioned, just like wiki pages. If you update a resource, old "
+"wiki pages still show the state of the resource\n"
+"at the time when the wiki page was edited. If you specifically want to "
+"update a resource on a page, you therefor need to update\n"
+"the resource at first and then also the page where it is referenced, "
+"otherwise the change won't be visible until the next regular edit. \n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:28
+msgid ""
+"
If you have to publish many files at once for a new release, it is a very "
+"tedious task\n"
+"to upload them one after another and enter meta information like a summary, "
+"a description or additional\n"
+"labels for each of them.
\n"
+"
InDefero therefore supports a special archive format that is basically a "
+"standard zip file which comes with\n"
+"some meta information. These meta information are kept in a special manifest "
+"file, which is distinctly kept from\n"
+"the rest of the files in the archive that should be published.
\n"
+"
Once this archive has been uploaded, InDefero reads in the meta "
+"information, unpacks the other files from\n"
+"the archive and creates new individual downloads for each of them.
"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:36
+#, fuzzy, php-format
+msgid "Learn more about the archive format."
+msgstr "Узнать больше об API."
+
+#: IDF/gettexttemplates/idf/faq.html.php:37
+msgid ""
+"The API (Application Programming Interface) is used to interact with "
+"InDefero with another program. For example, this can be used to create a "
+"desktop program to submit new tickets easily."
+msgstr ""
+"API (Application Programming Interface) используется для взаимодействия "
+"InDefero с другой программой. Например, это может быть использовано для "
+"создания пользовательских программ для легкого добавления проблем в трекер."
+
+#: IDF/gettexttemplates/idf/faq.html.php:38
+#, php-format
+msgid "Learn more about the API."
+msgstr "Узнать больше об API."
+
+#: IDF/gettexttemplates/idf/faq.html.php:39
+#: IDF/gettexttemplates/idf/faq.html.php:45
+msgid "What are the keyboard shortcuts?"
+msgstr "Какие есть сочетания клавиш?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:40
+#: IDF/gettexttemplates/idf/faq.html.php:60
+msgid "How to mark an issue as duplicate?"
+msgstr "Как пометить проблему как дублирующую?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:41
+#: IDF/gettexttemplates/idf/faq.html.php:61
+msgid "How can I display my head next to my comments?"
+msgstr "Как я могу вставить мое лицо рядом с моими комментариями?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:42
+#: IDF/gettexttemplates/idf/faq.html.php:62
+msgid "How can I embed images and other resources in my documentation pages?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:43
+#: IDF/gettexttemplates/idf/faq.html.php:63
+msgid "What is this \"Upload Archive\" functionality about?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:44
+#: IDF/gettexttemplates/idf/faq.html.php:64
+msgid "What is the API and how is it used?"
+msgstr "Что такое API и как это используется?"
+
+#: IDF/gettexttemplates/idf/faq.html.php:46
+msgid "Shift+h: This help page."
+msgstr "Shift+h: Эта помощь."
+
+#: IDF/gettexttemplates/idf/faq.html.php:47
+msgid "If you are in a project, you have the following shortcuts:"
+msgstr "Находясь в проекте можете использовать следующие клавиши:"
+
+#: IDF/gettexttemplates/idf/faq.html.php:48
+msgid "Shift+u: Project updates."
+msgstr "Shift+u: Обновления проекта."
+
+#: IDF/gettexttemplates/idf/faq.html.php:49
+msgid "Shift+d: Downloads."
+msgstr "Shift+d: Файлы."
+
+#: IDF/gettexttemplates/idf/faq.html.php:50
+msgid "Shift+o: Documentation."
+msgstr "Shift+o: Документация."
+
+#: IDF/gettexttemplates/idf/faq.html.php:51
+msgid "Shift+a: Create a new issue."
+msgstr "Shift+a: Добавить новую проблему."
+
+#: IDF/gettexttemplates/idf/faq.html.php:52
+msgid "Shift+i: List of open issues."
+msgstr "Shift+i: Список открытых проблем."
+
+#: IDF/gettexttemplates/idf/faq.html.php:53
+msgid "Shift+m: The issues you submitted."
+msgstr "Shift+m: Проблемы добавленные Вами."
+
+#: IDF/gettexttemplates/idf/faq.html.php:54
+msgid "Shift+w: The issues assigned to you."
+msgstr "Shift+w: Проблемы назначенные на Вас."
+
+#: IDF/gettexttemplates/idf/faq.html.php:55
+msgid "Shift+s: Source."
+msgstr "Shift+s: Исходный код."
+
+#: IDF/gettexttemplates/idf/faq.html.php:56
+msgid "You also have the standard access keys:"
+msgstr "У вас также есть стандартные клавиши:"
+
+#: IDF/gettexttemplates/idf/faq.html.php:57
+msgid "Alt+1: Home."
+msgstr "Alt+1: Домой."
+
+#: IDF/gettexttemplates/idf/faq.html.php:58
+msgid "Alt+2: Skip the menus."
+msgstr "Alt+2: Пропустить меню."
+
+#: IDF/gettexttemplates/idf/faq.html.php:59
+msgid "Alt+4: Search (when available)."
+msgstr "Alt+4: Поиск (если доступен)."
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
+msgid "Forge"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:5
+msgid "People"
+msgstr "Люди"
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:6
+msgid "Usher"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/forge/base.html.php:3
+#, fuzzy
+msgid "Frontpage"
+msgstr "страница"
+
+#: IDF/gettexttemplates/idf/gadmin/forge/index.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
You can set up a custom forge page that is used as entry page for the "
+"forge instead of the plain project listing. This page is then also "
+"accessible via the 'Home' link in main menu bar.
Additionally, the following macros are available: \n"
+"
\n"
+"
{projectlist, label=..., order=(name|activity), limit=...}"
+"code> - Renders a project list that can optionally be filtered by label, "
+"ordered by 'name' or 'activity' and / or limited to a specific number of "
+"projects.
\n"
+"
\n"
+"\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:7
+msgid "Project List"
+msgstr "Список проектов"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4
+#: IDF/Views/Admin.php:110
+#, fuzzy
+msgid "Project Labels"
+msgstr "Список проектов"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:16
+#: IDF/gettexttemplates/idf/listProjects.html.php:6 IDF/Views/Admin.php:186
+msgid "Create Project"
+msgstr "Создать проект"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:6
+msgid "Change Project Details"
+msgstr "Изменить данные о проекте"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3
+msgid ""
+"You can select the type of repository you want. In the case of subversion, "
+"you can use optionally a remote repository instead of the local one."
+msgstr ""
+"Вы можете выбрать желаемый тип хранилища. В случае subversion, вы можете "
+"использовать удаленное хранилище вместо локального."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:4
+msgid ""
+"Once you have defined the repository type, you cannot change it"
+"strong>."
+msgstr ""
+"После того как вы определили тип репозитория, вы не сможете его "
+"изменить."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:5
+msgid ""
+"\n"
+"
Specify each person by its login. Each person must have already "
+"registered with the given login.
\n"
+"
Separate the logins with commas and/or new lines.
\n"
+msgstr ""
+"\n"
+"
Укажите пользователя используя его логин. Каждый пользователь должен быть "
+"уже зарегистрирован с этим логином.
\n"
+"
Разделяйте логины запятыми и/или новой строкой.
\n"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:14
+msgid ""
+"The form contains some errors. Please correct them to create the project."
+msgstr "Форма содержит ошибки. Пожалуйста исправте их чтобы создать проект."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:15
+msgid "Provide at least one owner for the project or use a template."
+msgstr "Укажите как минимум одного владельца проекта или используйте шаблон."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:15
+msgid "Instructions:"
+msgstr "Инструкции:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:3
+#, php-format
+msgid ""
+"Confirmation code to confirm the deletion of the project: \n"
+"%%code%%."
+msgstr ""
+"Код подтверждения для удаления проекта:\n"
+"%%code%%."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:5
+msgid ""
+"\n"
+"Attention! Deleting a project is a one second operation\n"
+"with the consequences that all the data related to the \n"
+"project will be deleted.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:10
+msgid ""
+"The form contains some errors. Please correct them to delete the project."
+msgstr "Форма содержит ошибки. Пожалуйста исправте их чтобы удалить проект."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:11
+msgid "Project Statistics"
+msgstr "Статистика проекта"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:12
+msgid "Tab"
+msgstr "Табуляция"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:13
+msgid "Number"
+msgstr "Номер"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:15
+msgid "Code reviews"
+msgstr "Рецензировании кода"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:16
+#: IDF/Views/Project.php:93
+msgid "Commits"
+msgstr "Коммиты"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:18
+msgid "Documentation pages"
+msgstr "Страница документации"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:20
+msgid "Delete Project"
+msgstr "Удалить проект"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:22
+msgid ""
+"For large projects, the suppression can take a while, please be patient."
+msgstr ""
+"Для больших проектов, подавление может занять некоторое время, пожалуйста, "
+"будьте терпеливы."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:3
+msgid "Space Usage Statistics"
+msgstr "Статистика использования простанства"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:4
+msgid "Repositories:"
+msgstr "Репозитории:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:18
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:16
+msgid "Attachments:"
+msgstr "Вложения:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7
+msgid "Database:"
+msgstr "Базы данных:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:8
+msgid "Total Forge:"
+msgstr "Всего в хранилище:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:13
+msgid ""
+"The form contains some errors. Please correct them to update the project."
+msgstr "Форма содержит ошибки. Пожалуйста исправте их чтобы обновить проект."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:14
+msgid "Provide at least one owner for the project."
+msgstr "Укажите по крайней мере одного владельца проекта."
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:15
+msgid "Update Project"
+msgstr "Обновить проект"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:20
+msgid "Delete this project"
+msgstr "Удалить этот проект"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:21
+msgid "You will be asked to confirm."
+msgstr "Будет выдан запрос для подтвеждения."
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3
+#: IDF/Views/Admin.php:264
+msgid "User List"
+msgstr "Список пользователей"
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:13
+msgid "Update User"
+msgstr "Обновить пользователя"
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4
+msgid "Create User"
+msgstr "Создать пользователя"
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3
+msgid "The form contains some errors. Please correct them to create the user."
+msgstr ""
+"Форма содержит некоторые ошибки. Пожалуйста, исправьте их, чтобы создать "
+"пользователя."
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:6
+msgid "The user password will be sent by email to the user."
+msgstr "Пароль пользователя будет выслан ему по электронной почте."
+
+#: IDF/gettexttemplates/idf/gadmin/users/createuser-email.txt.php:3
+#, php-format
+msgid ""
+"Hello %%user%%,\n"
+"\n"
+"An account on the forge has been created for you by\n"
+"the administrator %%admin%%.\n"
+"\n"
+"Please find here your details to access the forge:\n"
+"\n"
+" Address: %%url%%\n"
+" Login: %%user.login%%\n"
+" Password: %%password%%\n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+"Здравствуйте %%user%%,\n"
+"\n"
+"Учетная запись в хранилище была создана для Вас\n"
+"администратором %%admin%%.\n"
+"\n"
+"Данные для доступа в хранилище:\n"
+"\n"
+" Адрес: %%url%%\n"
+" Логин: %%user.login%%\n"
+" Пароль: %%password%%\n"
+"\n"
+"С уважением,\n"
+"Команда разработчиков\n"
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:3
+#, php-format
+msgid "See not validated users."
+msgstr "Смотреть не проверенных пользователей."
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:4
+msgid "
You have here an overview of the users registered in the forge.
"
+msgstr "
Обзор всех пользователей, зарегистрированных на сервере.
"
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:5
+msgid "Number of users:"
+msgstr "Количество пользователей:"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:3
+msgid ""
+"If you are changing the email address of the user, you\n"
+"need to ensure that you are providing a valid email\n"
+"address"
+msgstr ""
+"Если вы хотите изменить адрес электронной почты\n"
+"пользователя, вы должны убедиться, что\n"
+"предоставляете действительный адрес."
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:6
+msgid ""
+"If you give the user staff rights, the user will be\n"
+"able to create new projects and update other non staff users.\n"
+msgstr ""
+"Если вы даете пользователю права персонала, пользователь сможет\n"
+"создавать новые проекты и обновлять других пользователей не имеющих права "
+"персонала.\n"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:9
+msgid "The form contains some errors. Please correct them to update the user."
+msgstr ""
+"Форма содержит ошибки. Пожалуйста исправте их чтобы обновить пользователя."
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:4
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:4
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4
+msgid "Login:"
+msgstr "Логин:"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:11
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:5
+msgid "Public Profile"
+msgstr "Публичный профиль"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:12
+msgid "Administrative"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3
+msgid "Configured servers"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:4
+#: IDF/Views/Admin.php:421
+msgid "Usher control"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:3
+msgid "address"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:4
+msgid "port"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:5
+msgid "No connections found."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3
+msgid "current server status:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:4
+msgid "startup"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:5
+msgid "shutdown"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:6
+msgid "reload server configuration:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:7
+msgid "reload"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:11
+msgid "Status explanation"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:9
+msgid "active with n total open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:10
+msgid "waiting for new connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:11
+msgid "usher is being shut down, not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:12
+msgid ""
+"usher is shut down, all local servers are stopped and not accepting "
+"connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:3
+msgid "server name"
+msgstr "имя сервера"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:4 IDF/Issue.php:99
+#: IDF/Review.php:102
+msgid "status"
+msgstr "статус"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:5
+msgid "action"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:6
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:6
+msgid "No monotone servers configured."
+msgstr "Monotone сервера не сконфигурированы."
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:7
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:7
+msgid "stop"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:8
+msgid "start"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:9
+msgid "kill"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:10
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:10
+msgid "active connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:12
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:12
+msgid "remote server without open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:13
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:13
+msgid "server with n open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:14
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:14
+msgid "local server running, without open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:15
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:15
+msgid "local server not running, waiting for connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:16
+msgid "local server is about to stop, n connections still open"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:17
+msgid "local server not running, not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:18
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:18
+msgid "usher is shut down, not running and not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.atom.php:3
+#, php-format
+msgid "Personal project feed for %%user%%."
+msgstr "Personal project feed for %%user%%."
+
+#: IDF/gettexttemplates/idf/index.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:6
+msgid "Home"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:3
+#, php-format
+msgid "Attachment to issue %%issue.id%%"
+msgstr "Вложение к тикету %%issue.id%%"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:5
+#: IDF/gettexttemplates/idf/review/view.html.php:35
+#: IDF/gettexttemplates/idf/source/commit.html.php:23
+#: IDF/gettexttemplates/idf/source/commit.html~.php:22
+#: IDF/gettexttemplates/idf/source/git/file.html.php:6
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:12
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:7
+msgid "Archive"
+msgstr "Архив"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:6
+#: IDF/gettexttemplates/idf/source/git/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:10
+msgid "Download this file"
+msgstr "Скачать этот файл"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:7
+#: IDF/gettexttemplates/idf/issues/view.html.php:28
+#: IDF/gettexttemplates/idf/review/view.html.php:26
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:13
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:16
+msgid "Created:"
+msgstr "Создан:"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:4
+msgid "All Issues"
+msgstr "Все проблемы"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:5
+msgid "My Issues"
+msgstr "Мои проблемы"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:6
+msgid "My watch list"
+msgstr "Мой список слежения"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:7
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:6
+#: IDF/gettexttemplates/idf/issues/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:5
+#: IDF/gettexttemplates/idf/issues/search.html.php:8
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:5
+msgid "New Issue"
+msgstr "Новая проблема"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:8
+#: IDF/gettexttemplates/idf/wiki/base.html.php:9
+msgid "Search"
+msgstr "Искать"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:9
+msgid "Back to the issue"
+msgstr "Назад к проблеме"
+
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:3
+#, php-format
+msgid ""
+"
"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:3
+#, fuzzy
+msgid "View all open issues."
+msgstr "Таблица показывает открытые проблемы."
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:4
+#, fuzzy
+msgid "Create an issue."
+msgstr "Создать пользователя"
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:5
+#, php-format
+msgid ""
+"The issue tracker is empty. Create your "
+"first issue."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:6
+#: IDF/gettexttemplates/idf/issues/summary.html~.php:4
+#, php-format
+msgid "Unresolved: By %%key%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:7
+#: IDF/gettexttemplates/idf/issues/summary.html~.php:5
+msgid "Status Summary"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:8
+#: IDF/gettexttemplates/idf/issues/summary.html~.php:6
+msgid "Unresolved: By Assignee"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html~.php:3
+#, php-format
+msgid ""
+"The issue tracker is empty. You can create your first issue here."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:3
+#, php-format
+msgid ""
+"See the %%nb_submit_closed%% closed."
+msgid_plural ""
+"See the %%nb_submit_closed%% closed."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:4
+#, php-format
+msgid ""
+"See the %%nb_owner_closed%% closed."
+msgid_plural ""
+"See the %%nb_owner_closed%% closed."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:6
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:7
+msgid "Submitted issues:"
+msgstr "Отправленные проблемы:"
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:7
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:6
+msgid "Working issues:"
+msgstr "Проблемы в работе:"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:3
+#, php-format
+msgid "Reported by %%submitter%%, %%c.creation_dtime%%"
+msgstr "Сообщено %%submitter%%, %%c.creation_dtime%%"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:4
+#: IDF/gettexttemplates/idf/review/view.html.php:22
+#, php-format
+msgid ""
+"Comment %%i%% by %%submitter%%, %%c.creation_dtime%%"
+msgstr ""
+"Комментированно %%i%% %%submitter%%, %%c."
+"creation_dtime%%"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:5
+#, php-format
+msgid "Sign in to reply to this comment."
+msgstr "Войдите, чтобы ответить на комментарий."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:6
+msgid ""
+"This issue is marked as closed, add a comment only if you think this issue "
+"is still valid and more work is needed to fully fix it."
+msgstr ""
+"Эта проблема отмечена как закрытая. Добавляйте комментарий, только если вы "
+"думаете, что этот вопрос остается в силе и многое еще предстоит сделать, "
+"чтобы полностью исправить ее."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:8
+#, php-format
+msgid "%%interested%% person"
+msgid_plural "%%interested%% persons"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:9
+#, php-format
+msgid "This issue %%verb%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:10
+msgid "Remove this issue from your watch list"
+msgstr "Удалить проблему из Вашего листа слежения."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:11
+msgid "Add this issue to your watch list"
+msgstr "Добавить проблему в Ваш лист слежения."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:12
+#, fuzzy
+msgid "View the previous closed issue"
+msgstr "Таблица показывает закрытые проблемы."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:13
+msgid "View the previous open issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:14
+#, fuzzy
+msgid "View the next closed issue"
+msgstr "Таблица показывает закрытые проблемы."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:15
+#, fuzzy
+msgid "View the next open issue"
+msgstr "Таблица показывает открытые проблемы."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:16
+msgid "download"
+msgstr "скачать"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:17
+msgid "view"
+msgstr "просмотр"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:23
+msgid "The form contains some errors. Please correct them to change the issue."
+msgstr "Форма содержит ошибки. Пожалуйста исправте их чтобы изменить проблему."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:25
+msgid "Submit Changes"
+msgstr "Сохранить изменения"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:32
+msgid "Followed by:"
+msgstr "Наблюдатели:"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:3
+#, fuzzy, php-format
+msgid "1 project"
+msgid_plural "%%label.project_count%% projects"
+msgstr[0] "проект"
+msgstr[1] "проект"
+msgstr[2] "проект"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:4
+#, php-format
+msgid "Remove filter for %%tag%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:5
+msgid "No projects managed with InDefero were found."
+msgstr "Проектов под управлением InDefero не найдено."
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:7
+msgid "Filter projects by label"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:8
+#, fuzzy
+msgid "No projects with labels found."
+msgstr "Проектов не найдено."
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:9
+msgid "Order"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:10
+#, fuzzy
+msgid "By name"
+msgstr "имя"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:11
+msgid "By activity"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:12
+msgid "Filtered project stats"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:13
+msgid "Members:"
+msgstr "Участников:"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:14
+msgid "Issues:"
+msgstr "Проблем:"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:15
+msgid "Commits:"
+msgstr "Коммитов:"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:16
+msgid "Documentations:"
+msgstr "Документаций:"
+
+#: IDF/gettexttemplates/idf/listProjects.html.php:18
+msgid "Code reviews:"
+msgstr "Рецензий кода:"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:3
+#, fuzzy, php-format
+msgid ""
+"You can create an account if you don't have one yet."
+msgstr ""
+"В описании Вы можете использовать Markdown синтаксис."
+
+#: IDF/gettexttemplates/idf/login_form.html.php:4
+msgid "What is your account information?"
+msgstr "Каковы данные Вашей учетной записи?"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:5
+msgid "My login is"
+msgstr "Мой логин"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:6
+msgid "My password is"
+msgstr "Мой пароль"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:7
+msgid "Sign in"
+msgstr "Войти"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:8
+msgid "I lost my password!"
+msgstr "Я забыл пароль!"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:9
+msgid "Welcome."
+msgstr "Добро пожаловать."
+
+#: IDF/gettexttemplates/idf/login_form.html.php:10
+msgid "It takes less than a minute to create your account."
+msgstr "Создание учетной записи займет меньше минуты."
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:3
+#, php-format
+msgid ""
+"Welcome, %%user%%."
+msgstr ""
+"Привет, %%user%%."
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:4
+msgid "Sign Out"
+msgstr "Выход"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:5
+msgid "Sign in or create your account"
+msgstr "Войти или создать учетную запись"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:10 IDF/Views/Admin.php:40
+msgid "Forge Management"
+msgstr "Управление хранилищем"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:11
+msgid "Help and accessibility features"
+msgstr "Справка и специальные возможности"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:12
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:14
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:14
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:15
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13
+msgid "Help"
+msgstr "Помощь"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:3
+#: IDF/gettexttemplates/idf/project/timeline.html.php:4 IDF/Views.php:46
+msgid "Welcome"
+msgstr "Добро пожаловать"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:4
+#: IDF/gettexttemplates/idf/project/timeline.html.php:5
+msgid "Latest Updates"
+msgstr "Последние изменения"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:5
+msgid "Featured Downloads"
+msgstr "Рекомендуемые загрузки"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:6
+#, fuzzy
+msgid "Show more featured downloads"
+msgstr "Рекомендуемые загрузки"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:7
+#: IDF/gettexttemplates/idf/project/home.html.php:10
+msgid "show more..."
+msgstr "еще..."
+
+#: IDF/gettexttemplates/idf/project/home.html.php:8
+msgid "Featured Documentation"
+msgstr "Рекомендуемая документация"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:9
+#, fuzzy
+msgid "Show more featured documentation"
+msgstr "Рекомендуемая документация"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:11
+msgid "Development Team"
+msgstr "Команда разработчиков"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:12
+msgid "Admins"
+msgstr "Администраторы"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:13
+msgid "Happy Crew"
+msgstr "Счастливая комманда"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:3
+msgid "Latest updates"
+msgstr "Последние изменения"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:6
+#: IDF/Views/Project.php:90
+msgid "All Updates"
+msgstr "Обновления"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:7
+msgid "Filter by type"
+msgstr "Фильтр по типу"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:8
+msgid "Subscribe to this timeline"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:9
+msgid "RSS"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:10
+msgid "Atom feed"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/project-list.html.php:3
+msgid "Project activity: %%activity%%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/project-list.html.php:9
+msgid "n/a"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3
+#, php-format
+msgid ""
+"Hello,\n"
+"\n"
+"You have requested the creation of an account to\n"
+"participate in the life of a software project.\n"
+"\n"
+"To confirm the account please follow this link:\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Alternatively, go to this page:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"and provide the following confirmation key:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"If you are not interested any longer in taking\n"
+"part in the life of the software project or if\n"
+"you can't remember having requested the creation\n"
+"of an account, please excuse us and simply ignore\n"
+"this email. \n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+"Здравствуйте,\n"
+"\n"
+"Вы запросили создание учетной записи для\n"
+"участия в жизни проекта.\n"
+"\n"
+"Для подтверждения учетной записи пожалуйста перейдите по ссылке:\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Или перейдите на страницу:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"и введите следующий ключ:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"Если вы больше не заинтересованы в\n"
+"участии в жизни проекта или если\n"
+"вы не можете вспомнить подобного запроса\n"
+"пожалуйста извините нас и просто игнорируйте\n"
+"это сообщение.\n"
+"\n"
+"С уважением,\n"
+"Команда разработчиков.\n"
+
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:3
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:3
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:3
+msgid "Oops, please check the form for errors."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5
+msgid "Email:"
+msgstr "Эл. почта:"
+
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:6
+msgid "Enable Your Account"
+msgstr "Включите Вашу учетную запись"
+
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:8
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:8
+msgid ""
+"This is the last step, but just be sure to have the cookies enabled"
+"strong> to log in afterwards."
+msgstr ""
+"Это последний шаг, но убедитесь, что включены cookies чтобы "
+"войдите потом."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:3
+#, fuzzy
+msgid ""
+"Read the terms and conditions – "
+"basically \"Please be nice, we respect you\"."
+msgstr ""
+"Прочитайте условия – "
+"основательно \"Будьте хорошими, мы Вас уважаем\"."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:4
+#, fuzzy, php-format
+msgid ""
+"If you have just forgotten your login information, then there is no need to "
+"create a new account. You can just recover your login "
+"name and password."
+msgstr ""
+"Если Вы просто забыли данные для входа нет необходимости создавать новую "
+"учетную запись. Просто перейдите сюда для "
+"восстановления логина и пароля."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:5
+#, php-format
+msgid ""
+"With your account, you will able to participate in the life of all the "
+"projects hosted here. Participating in a software project must be fun, so if "
+"you have troubles, you can let us know about your issues "
+"at anytime!"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/register/index.html.php:6
+msgid "Oops, please check the provided login and email address to register."
+msgstr ""
+"Ой, пожалуйста, проверьте логин и адрес электронной почты для регистрации."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:7 IDF/Views.php:137
+msgid "Create Your Account"
+msgstr "Создайте Вашу учетную запись"
+
+#: IDF/gettexttemplates/idf/register/index.html.php:9
+msgid ""
+"Be sure to provide a valid email address, as we are sending a validation "
+"link by email."
+msgstr ""
+"Не забудьте указать действительный адрес электронной почты, т.к. на него "
+"будет оправлена ссылка для подтверждения регистрации."
+
+#: IDF/gettexttemplates/idf/register/index.html.php:10
+msgid "Did you know?"
+msgstr "Знаете ли Вы?"
+
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:3
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:3
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:3
+msgid "Oops, we found an error in the form."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:4
+msgid "Confirm Your Account"
+msgstr "Подтвердить Вашу учетную запись"
+
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:7
+msgid ""
+"Use your email software to read your emails and open your confirmation "
+"email. Either click directly on the confirmation link or copy/paste the "
+"confirmation key in the box and submit the form."
+msgstr ""
+"Используйте клиента электронной почты для открытия письма с подтверждением. "
+"Либо щелкните на ссылку для подтверждения или скопируйте / вставьте ключ "
+"подтверждения в форму."
+
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:8
+msgid ""
+"Just after providing the confirmation key, you will be able to set your "
+"password and start using this website fully."
+msgstr ""
+"Сразу после предоставления ключа подтверждения вы сможете установить пароль "
+"и начать работу с этим сайтом в полном объеме."
+
+#: IDF/gettexttemplates/idf/review/base-full.html.php:3
+#: IDF/gettexttemplates/idf/review/base.html.php:3
+msgid "Open Reviews"
+msgstr "Открытые рецензии"
+
+#: IDF/gettexttemplates/idf/review/base.html.php:4
+#: IDF/gettexttemplates/idf/review/create.html.php:11
+#: IDF/gettexttemplates/idf/review/index.html.php:3 IDF/Views/Review.php:83
+msgid "Start Code Review"
+msgstr "Начать рецензирование кода"
+
+#: IDF/gettexttemplates/idf/review/create.html.php:3
+msgid ""
+"
To start a code review, you need to provide:
\n"
+"
\n"
+"
A commit or revision of the current code in the repository from which "
+"you started your work.
\n"
+"
A patch describing your changes with respect to the reference commit."
+"li>\n"
+"
Check your patch does not provide any password or confidential "
+"information!
\n"
+"
"
+msgstr ""
+"
Для начала аудита кода Вам необходимо указать:
\n"
+"
\n"
+"
Комит или ревизию исходного кода в репозитории над котором вы работали."
+"li>\n"
+"
Патч описывающий Ваши изменения с учетом исходного комита.
\n"
+"
Проверьте, что Вы не указали в патче какие-либо пароли или "
+"другую конфиденциальную информацияю!
\n"
+"
"
+
+#: IDF/gettexttemplates/idf/review/create.html.php:9
+msgid ""
+"The form contains some errors. Please correct them to submit the code review."
+msgstr ""
+"Форма содержит ошибки. Пожалуйста исправьте их чтобы отправить вашу рецензию."
+
+#: IDF/gettexttemplates/idf/review/create.html.php:10
+msgid ""
+"Select the commit against which you created your patch to be sure it applies "
+"correctly."
+msgstr ""
+"Выберите комит для которого вы создали свой патч, чтобы убедиться, что он "
+"применяется правильно."
+
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:3
+msgid "The following review has been created:"
+msgstr "Следующая рецензия была создана:"
+
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:10
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:16
+msgid "Review:"
+msgstr "Рецензия:"
+
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:3
+msgid "The following review has been updated:"
+msgstr "Следющая рецензия была обновлена:"
+
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:5
+#, php-format
+msgid ""
+"By %%who%%, %%c.creation_dtime%%, on file:\n"
+"%%c.cfile%%\n"
+msgstr ""
+"By %%who%%, %%c.creation_dtime%%, on file:\n"
+"%%c.cfile%%\n"
+
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:14
+msgid "General comments (last first):"
+msgstr "Общие комментарии (последние в начале):"
+
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:15
+msgid "Detailed file comments (last first):"
+msgstr "Подробные комментарии файла (новые в начале):"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:3
+msgid ""
+"Code review is a process in which\n"
+"after or before changes are commited into the code repository,\n"
+"different people discuss the code changes. The goal is\n"
+"to improve the quality of the code and the\n"
+"contributions, as such, you must be pragmatic when writing\n"
+"your review. Correctly mention the line numbers (in the old or in the\n"
+"new file) and try to keep a good balance between seriousness and fun.\n"
+msgstr ""
+"Рецензирование кода - это процесс, при котором до или после комитов "
+"отправленых в репозиторий, разные люди обсуждают изменения в коде. Целью "
+"является улучшение качества кода и участия, таким образом, "
+"вы должны быть прагматичными при написании обзора. Правильно отметить номера "
+"строк (в старом или в новом файле) и попытаться сохранить хороший баланс "
+"между серьезностью и шуткой.\n"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:11
+msgid ""
+"\n"
+"Proposing code for review is intimidating, you know\n"
+"you will receive critics, so please, as a reviewer, keep this\n"
+"process fun, use it to help your contributor learn your\n"
+"coding standards and the structure of the code and make them want\n"
+"to propose more contributions.\n"
+msgstr ""
+"\n"
+"Предложение кода для рецензирования пугает. Знайте, вы "
+"будете получать критику, поэтому, пожалуйста, как рецензент, "
+"воспринимать этот процесс с улыбкой, использовать его, "
+"чтобы помочь вашей команде узнать ваши стандарты кодирования и структуры "
+"кода и сделать так, что бы они продолжили участие в проекте"
+"strong> .\n"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:18
+#: IDF/gettexttemplates/idf/source/commit.html.php:3
+#: IDF/gettexttemplates/idf/source/commit.html~.php:3
+#, php-format
+msgid "%%ndiff%% diff"
+msgid_plural "%%ndiff%% diffs"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:19
+#, php-format
+msgid "%%nc%% comment"
+msgid_plural "%%nc%% comments"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:20
+#, php-format
+msgid ""
+"Comment %%i%% by %%who%%, "
+"%%c.creation_dtime%%"
+msgstr ""
+"Комментарий %%i%%%%who%%"
+"a>, %%c.creation_dtime%%"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:21
+#, php-format
+msgid "Your comments on the changes in file %%file%%:"
+msgstr "Ваши комментарии на изменения в файле %%file%%:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:23
+#, php-format
+msgid "Sign in to participate in the review."
+msgstr "Войдите что бы учавствовать в рецензировании."
+
+#: IDF/gettexttemplates/idf/review/view.html.php:24
+msgid ""
+"The form contains some errors. Please correct them to submit your review."
+msgstr ""
+"Форма содержит ошибки. Пожалуйста исправьте их чтобы отправить вашу рецензию."
+
+#: IDF/gettexttemplates/idf/review/view.html.php:25
+msgid "How to Participate in a Code Review"
+msgstr "Как принять участие в рецензировании кода"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:28
+#: IDF/gettexttemplates/idf/source/commit.html.php:5
+#: IDF/gettexttemplates/idf/source/commit.html~.php:5
+msgid "Author:"
+msgstr "Автор:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:29
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/source/commit.html.php:7
+#: IDF/gettexttemplates/idf/source/commit.html~.php:7
+msgid "Commit:"
+msgstr "Комит:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:30
+#: IDF/gettexttemplates/idf/source/commit.html.php:8
+#: IDF/gettexttemplates/idf/source/commit.html~.php:8
+msgid "View corresponding source tree"
+msgstr "Просмотреть соответствующие дерево исходных текстов"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:32
+msgid "Reviewers:"
+msgstr "Рецензенты:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:33
+msgid "No reviewers at the moment."
+msgstr "Нет рецензентов в данный момент."
+
+#: IDF/gettexttemplates/idf/review/view.html.php:34
+msgid "Files:"
+msgstr "Файлов:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:36
+#: IDF/gettexttemplates/idf/source/commit.html.php:24
+#: IDF/gettexttemplates/idf/source/commit.html~.php:23
+msgid "Download the corresponding diff file"
+msgstr "Скачать соответствующий diff файл."
+
+#: IDF/gettexttemplates/idf/review/view.html.php:37
+msgid "General Comments"
+msgstr "Общие комментарии"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:40
+msgid "Submit Code Review"
+msgstr "Отправить рецензию на код"
+
+#: IDF/gettexttemplates/idf/source/base.html.php:3
+msgid "Source Tree"
+msgstr "Исходный код"
+
+#: IDF/gettexttemplates/idf/source/base.html.php:4
+msgid "Change Log"
+msgstr "История изменений"
+
+#: IDF/gettexttemplates/idf/source/base.html.php:6
+msgid "How To Get The Code"
+msgstr "Как получить код"
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:3
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:7
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8
+#: IDF/Views/Project.php:190
+msgid "Age"
+msgstr "Возраст"
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:4
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:8
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:8
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:9
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10
+msgid "Message"
+msgstr "Сообщение"
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:5
+msgid "Parent:"
+msgstr "Родитель:"
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:6
+#: IDF/gettexttemplates/idf/source/commit.html.php:10
+#: IDF/gettexttemplates/idf/source/commit.html~.php:10
+msgid "View corresponding commit"
+msgstr "Открыть соответствующий коммит."
+
+#: IDF/gettexttemplates/idf/source/changelog.html.php:8
+msgid "by"
+msgstr " "
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:3
+msgid "A new commit has been created:"
+msgstr "Новые комит был создан:"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:8
+msgid "Created by:"
+msgstr "Создатель:"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8
+msgid "Created at:"
+msgstr "Создан:"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:8
+msgid "Content:"
+msgstr "Содежимое:"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10
+msgid "Commit details:"
+msgstr "Детали комита:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:4
+#: IDF/gettexttemplates/idf/source/commit.html~.php:4
+msgid "Date:"
+msgstr "Дата:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:6
+#: IDF/gettexttemplates/idf/source/commit.html~.php:6
+msgid "Branch:"
+msgstr "Ветка:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:9
+#: IDF/gettexttemplates/idf/source/commit.html~.php:9
+msgid "Parents:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:11
+#: IDF/gettexttemplates/idf/source/commit.html~.php:11
+msgid "Message:"
+msgstr "Сообщение:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:12
+#: IDF/gettexttemplates/idf/source/commit.html~.php:12
+#: IDF/gettexttemplates/idf/wiki/feedfragment-page.xml.php:3
+#: IDF/gettexttemplates/idf/wiki/feedfragment-resource.xml.php:3
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:10
+msgid "Changes:"
+msgstr "Изменения:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:13
+#: IDF/gettexttemplates/idf/source/commit.html~.php:13
+msgid "deleted"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:14
+#: IDF/gettexttemplates/idf/source/commit.html.php:18
+#: IDF/gettexttemplates/idf/source/commit.html~.php:14
+#: IDF/gettexttemplates/idf/source/commit.html~.php:17
+msgid "full"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:15
+#: IDF/gettexttemplates/idf/source/commit.html~.php:15
+msgid "renamed"
+msgstr "переименовано"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:16
+msgid "copied"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:17
+#: IDF/gettexttemplates/idf/source/commit.html~.php:16
+msgid "added"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:19
+#: IDF/gettexttemplates/idf/source/commit.html~.php:18
+msgid "modified"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:20
+msgid "properties changed"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:21
+#: IDF/gettexttemplates/idf/source/commit.html~.php:20
+msgid "removed"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:22
+#: IDF/gettexttemplates/idf/source/commit.html~.php:21
+msgid "File differences"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html~.php:19
+msgid "properies changed"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:3
+#, php-format
+msgid ""
+"The revision identifier %%commit%% is ambiguous and can be\n"
+"expanded to multiple valid revisions - please choose one:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:5
+msgid "Title"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:6
+msgid "Author"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:7
+msgid "Date"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:8
+msgid "Branch"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:9
+msgid "Revision"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3
+#, php-format
+msgid "%%cproject.name%%: Commit %%c.scm_id%%"
+msgstr "%%cproject.name%%: Комит %%c.scm_id%%"
+
+#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:3
+#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:3
+#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:3
+msgid "Branches"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:4
+#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:4
+#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:4
+msgid "filter branches"
+msgstr "фильтровать бранчи"
+
+#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:5
+#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:5
+#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:5
+msgid "Tags"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:6
+#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:6
+msgid "filter tags"
+msgstr "фильтровать метки"
+
+#: IDF/gettexttemplates/idf/source/git/file.html.php:3
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:3
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:3
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:3
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:4
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:4
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:4
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:4
+#, php-format
+msgid ""
+"Source at commit %%commit%% created "
+"%%cobject.date%%."
+msgstr ""
+"Исходный код в комите %%commit%% "
+"создан %%cobject.date%%."
+
+#: IDF/gettexttemplates/idf/source/git/file.html.php:4
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:4
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:4
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:4
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:5
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:5
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:5
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:5
+#, php-format
+msgid "By %%cobject.author%%, %%cobject.title%%"
+msgstr "%%cobject.author%%, %%cobject.title%%"
+
+#: IDF/gettexttemplates/idf/source/git/file.html.php:5
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:5
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:5
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:5
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:6
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:6
+msgid "Root"
+msgstr "Корень"
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:3
+#, php-format
+msgid ""
+"The team behind %%project%% is using\n"
+"the git software to manage the source\n"
+"code."
+msgstr ""
+"Команда проекта %%project%% использует\n"
+"git для управления исходным кодом."
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:6
+#, php-format
+msgid ""
+"You may need to provide your SSH key. The "
+"synchronization of your SSH key can take a couple of minutes. You can learn "
+"more about SSH key authentication."
+msgstr ""
+"Возможно Вам потребуется указать ваш SSH ключ. "
+"Синхронизация ключа может занять некоторое время. Вы можете найти больше "
+"информации про авторизацию по SSH ключу."
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:6
+msgid "To make a first commit in the repository, perform the following steps:"
+msgstr ""
+"Чтобы сделать первый комит в репозиторий, выполните следующие действия:"
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:8
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:7
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:7
+#, php-format
+msgid "Find here more details on how to access %%project%% source code."
+msgstr ""
+"Найти здесь более подробную информацию о том, как получить доступ к "
+"исходному коду проекта %%project%%."
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:9
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:8
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:8
+msgid "Command-Line Access"
+msgstr "Доступ из командной строки"
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:10
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9
+msgid "First Commit"
+msgstr "Первый комит"
+
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:9
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:9
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:10
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:11
+#: IDF/Views/Download.php:66 IDF/Views/Download.php:348
+msgid "Size"
+msgstr "Размер"
+
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:10
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:10
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:12
+msgid ":"
+msgstr ":"
+
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:12
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:12
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:13
+msgid "Download this version"
+msgstr "Скачать эту версию"
+
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:13
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:13
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:14
+msgid "or"
+msgstr "или"
+
+#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:3
+#: IDF/gettexttemplates/idf/source/invalid_revision.html~.php:3
+#, php-format
+msgid ""
+"The branch or revision %%commit%% is not valid or does not exist\n"
+"in this repository."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:5
+#: IDF/gettexttemplates/idf/source/invalid_revision.html~.php:5
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html.php:5
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html~.php:5
+msgid "The following list shows all available branches:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:6
+#: IDF/gettexttemplates/idf/source/invalid_revision.html~.php:6
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html.php:6
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html~.php:6
+#, php-format
+msgid ""
+"If this is a new repository, the reason for this error\n"
+"could be that you have not committed and / or pushed any change so far.\n"
+"In this case please take a look at the Help page\n"
+"how to access your repository."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:3
+#, php-format
+msgid ""
+"The team behind %%project%% is using\n"
+"the Mercurial software to manage the source\n"
+"code."
+msgstr ""
+"Команда %%project%% использует Mercurial для управления "
+"исходным кодом."
+
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:6
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:6
+#, php-format
+msgid ""
+"To get write access to the repository, you need to use your username and "
+"your extra password."
+msgstr ""
+"Чтобы получить доступ на запись в репозиторий, вам необходимо использовать "
+"свое имя пользователя и дополнительный пароль."
+
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:9
+msgid "Write Access Authentication"
+msgstr "Аутентификация для возможности записи"
+
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:3
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:3
+#, php-format
+msgid "Property %%prop%% set to %%val%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:3
+#, php-format
+msgid ""
+"The team behind %%project%% is using\n"
+"the monotone software to manage the source\n"
+"code."
+msgstr ""
+"Команда прокета %%project%% использует\n"
+"monotone для управления исходным\n"
+"кодом."
+
+#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/commit.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/commit.html~.php:3
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:9
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:14
+msgid "Revision:"
+msgstr "Ревизия:"
+
+#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:4
+#: IDF/gettexttemplates/idf/source/svn/commit.html.php:4
+#: IDF/gettexttemplates/idf/source/svn/commit.html~.php:4
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:10
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15
+msgid "Switch"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:3
+#, php-format
+msgid ""
+"The team behind %%project%% is using\n"
+"the subversion software to manage the source\n"
+"code."
+msgstr ""
+"Команда проекта %%project%% использует\n"
+"subversion для управления исходным кодом."
+
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html.php:3
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html~.php:3
+#, php-format
+msgid ""
+"The revision %%commit%% is not valid or does not exist\n"
+"in this repository."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9
+msgid "Rev"
+msgstr "Рев"
+
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16
+msgid "Branches:"
+msgstr "Бранчи:"
+
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17
+msgid "Tags:"
+msgstr "Теги:"
+
+#: IDF/gettexttemplates/idf/user/changeemail-email.txt.php:3
+#, php-format
+msgid ""
+"Hello %%user%%,\n"
+"\n"
+"To confirm that you want %%email%%\n"
+"to be your new email address, just follow this link:\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Alternatively, go to this page:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"and provide the following verification key:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"If you do not want to change your email address, \n"
+"just ignore this message.\n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+"Здравствуйте %%user%%.\n"
+"\n"
+"Чтобы подтвердить смену эл. адреса на %%email%% проследуйте по следующей "
+"ссылке:\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Или пройдите по этой ссылке:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"и введите ключ подтверждения:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"Если смена адреса вам не требуется, то просто проигнорируйте это письмо.\n"
+"\n"
+"С уважением,\n"
+"Команда разработчиков.\n"
+
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:4
+msgid "Confirm Your New Email Address"
+msgstr "Подтвердите Ваш новый эл. адрес"
+
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:7
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:7
+msgid ""
+"Use your email software to read your emails and open your verification "
+"email. Either click directly on the verification link or copy/paste the "
+"verification key in the box and submit the form."
+msgstr ""
+"Запустите ваше ПО для чтения электронной почты и откройте письмо с "
+"подтверждением. Либо нажмите непосредственно на ссылку подтверждения или "
+"скопируйте и вставьте проверочный ключ в форму и нажмите Отправить."
+
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:3
+#, php-format
+msgid "Update your account."
+msgstr "Изменить Вашу учетную запись."
+
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:4
+#, php-format
+msgid "See your public profile."
+msgstr "Посмотреть Ваш публичный профиль."
+
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:5
+#, php-format
+msgid "See your forge issue watch list."
+msgstr "Смотреть ваш список слежения для хранилища."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:6
+msgid "Key Management"
+msgstr "Управление ключами"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:7
+msgid "Secondary Emails"
+msgstr "Дополнительный e-mail"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:8
+msgid "Extra password"
+msgstr "Дополнительный пароль"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:9
+msgid ""
+"This password is used to access some of the external systems managed by our "
+"infrastructure. It will be regenerated if you change your password."
+msgstr ""
+"Этот пароль служит для доступа с внешних систем, управляемых нашей "
+"инфраструктурой. Он будет сгенерирован при смене Вашего пароля."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:10
+msgid "API key"
+msgstr "API ключ"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:11
+msgid ""
+"Your API key will be regenerated automatically if you change your password."
+msgstr "API ключ будет сгенерирован автоматически при смене Вашего пароль."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:12
+msgid "Update Your Account"
+msgstr "Обновить учетную запись"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:14
+msgid "Your Current Public Keys"
+msgstr "Ваши текущие публичные ключи"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:15
+msgid "Delete this key"
+msgstr "Удалить этот ключ"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:16
+msgid "Your additional email addresses"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:17
+msgid "Delete this address"
+msgstr "Удалить этот адрес"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:18
+msgid ""
+"If possible, use your real name. By using your real name, people will have "
+"more trust in your comments and remarks."
+msgstr ""
+"Если возможно, используйте свое настоящее имя. При использовании свое "
+"настоящего имени, люди будут больше доверять вашим комментариям и замечаниям."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:19
+msgid ""
+"The extra password is used to access some of the external systems and the "
+"API key is used to interact with this website using a program."
+msgstr ""
+"Дополнительный пароль используется для доступа с некоторых внешних систем и "
+"ключ API используется для взаимодействия с этим веб-сайтом из внешней "
+"программы."
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:20
+msgid "Show API key and extra password"
+msgstr "Показать ключ API и дополнительный пароль"
+
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3
+msgid ""
+"Oops, please check the provided login or email address to recover your "
+"password."
+msgstr ""
+"Ой, пожалуйста, проверьте логин или адрес электронной почты для "
+"восстановления пароля."
+
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:4
+msgid "Recover My Password"
+msgstr "Восстановить мой пароль"
+
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:6
+msgid ""
+"Provide either your login or email address, if a corresponding user is found "
+"in the database, we will send you an email with the details on how to reset "
+"your password."
+msgstr ""
+"Введите ваш Логин или адрес электронной почты. Если соответствующий "
+"пользователь найден в базе данных, мы вышлем Вам письмо с информацией о том, "
+"как сменить пароль."
+
+#: IDF/gettexttemplates/idf/user/passrecovery-email.txt.php:3
+#, php-format
+msgid ""
+"Hello %%user%%,\n"
+"\n"
+"You lost your password and wanted to recover it.\n"
+"To provide a new password for your account, you\n"
+"just have to follow the provided link. You will\n"
+"get a simple form to provide a new password.\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Alternatively, go to this page:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"and provide the following verification key:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"If you are not the one who requested to reset\n"
+"your password, simply ignore this email, your\n"
+"password will not be changed.\n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+"Здравствуйте, %%user%%,\n"
+"\n"
+"Вы потеряли пароль и хотите восстановить его.\n"
+"Для задания нового пароля Вам необходимо перейти по ссылке и заполнить "
+"небольшую форму.\n"
+"\n"
+"%%url%%\n"
+"\n"
+"Так же вы можете перейти на следующую страницу:\n"
+"\n"
+"%%urlik%%\n"
+"\n"
+"А ввести следующий проверочный ключ:\n"
+"\n"
+"%%key%%\n"
+"\n"
+"Если вы не запрашивали смену пароля можете просто проигнорировать это "
+"письмо.\n"
+"\n"
+"С уважением,\n"
+"Команда разработчиков\n"
+
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:4
+msgid "Recover Your Password"
+msgstr "Восстановить пароль"
+
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:8
+msgid ""
+"Just after providing the confirmation key, you will be able to reset your "
+"password and use this website fully."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:6
+msgid "Reset Your Password"
+msgstr "Сбросить пароль"
+
+#: IDF/gettexttemplates/idf/user/public.html.php:3
+#, php-format
+msgid "You are looking at the public profile of %%member%%."
+msgstr "Вы просматриваете публичный профиль %%member%%."
+
+#: IDF/gettexttemplates/idf/user/public.html.php:5
+msgid "Twitter:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/user/public.html.php:6
+msgid "Public Email:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/user/public.html.php:7
+msgid "Website:"
+msgstr "Веб-сайт:"
+
+#: IDF/gettexttemplates/idf/user/public.html.php:8
+msgid "Last time seen:"
+msgstr "Последний раз был здесь:"
+
+#: IDF/gettexttemplates/idf/user/public.html.php:9
+msgid "Member since:"
+msgstr "Участник с:"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:3
+msgid "List Pages"
+msgstr "Список страниц"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:4
+#, fuzzy
+msgid "List Resources"
+msgstr "Исходный код %s"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:5
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:4
+#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:211
+msgid "New Page"
+msgstr "Новая страница"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:6
+#: IDF/gettexttemplates/idf/wiki/listResources.html.php:3
+#: IDF/Views/Wiki.php:256
+#, fuzzy
+msgid "New Resource"
+msgstr "Новая проблема"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:7
+msgid "Update This Page"
+msgstr "Обновить эту страницу"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:8
+#, fuzzy
+msgid "Update This Resource"
+msgstr "Обновить эту страницу"
+
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:3
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:3
+msgid "Preview of the Page"
+msgstr "Предпросмотр страницы"
+
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:7
+msgid "The form contains some errors. Please correct them to create the page."
+msgstr "Форма содержит ошибки. Пожалуйста исправтье их чтобы создать страницу."
+
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:6
+msgid "Create Page"
+msgstr "Создать страницу"
+
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:3
+msgid ""
+"\n"
+"Wiki resources are later addressed in wiki pages by their title, so ensure "
+"that you\n"
+"give your resource a unique and an easy to remember name.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:8
+#, fuzzy
+msgid "Create Resource"
+msgstr "Создать пользователя"
+
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:3
+msgid ""
+"If you delete this documentation page, it will be removed from the database "
+"with all the associated revisions and you will not be able to "
+"recover it."
+msgstr ""
+"Если вы удалите эту страницу документации, она будет удалена из базы данных "
+"со всеми сопутствующими изменениями и вы не сможете ее восстановить."
+""
+
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:6
+msgid "Delete Page"
+msgstr "Удалить страницу"
+
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:14
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:15
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:15
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:17
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:18
+msgid "Old Revisions"
+msgstr "Старые ревизии"
+
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:3
+#, php-format
+msgid ""
+"You are looking at an old revision (%%oldrev.summary%%) of the "
+"page \n"
+"%%page.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+"Вы открыли старую версию (%%oldrev.summary%%) страницы\n"
+"%%page.title%%. Эта версия была создана\n"
+"%%submitter%%."
+
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:5
+msgid ""
+"If you delete this old revision, it will be removed from the database and "
+"you will not be able to recover it."
+msgstr ""
+"Если вы удалите эту старую версию, она будет удалена из базы данных, и "
+"вы не сможете ее восстановить."
+
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:8
+msgid "Delete Revision"
+msgstr "Удалить ревизию"
+
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:3
+#, fuzzy
+msgid ""
+"If you delete this documentation resource, it will be removed from the "
+"database with all the associated revisions \n"
+"and you will not be able to recover it. Any documentation "
+"pages that reference this resource,\n"
+"will no longer be able to render it, but won't be deleted."
+msgstr ""
+"Если вы удалите эту страницу документации, она будет удалена из базы данных "
+"со всеми сопутствующими изменениями и вы не сможете ее восстановить."
+""
+
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:8
+#, fuzzy
+msgid "Delete Resource"
+msgstr "Удалить ревизию"
+
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:10
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:8
+#, fuzzy
+msgid "File size"
+msgstr "размер файла"
+
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:9
+#: IDF/Views/Wiki.php:101
+#, fuzzy
+msgid "MIME type"
+msgstr "тип"
+
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:3
+#, fuzzy, php-format
+msgid ""
+"You are looking at an old revision (%%oldrev.summary%%) of the "
+"resource \n"
+"%%resource.title%%. This revision was created by "
+"%%submitter%%."
+msgstr ""
+"Вы открыли старую версию (%%oldrev.summary%%) страницы\n"
+"%%page.title%%. Эта версия была создана\n"
+"%%submitter%%."
+
+#: IDF/gettexttemplates/idf/wiki/edit-info.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
Website addresses are automatically linked and you can link to another "
+"page in the documentation using double square brackets like that "
+"[[AnotherPage]].
\n"
+"
If you want to embed uploaded resources, use the [[!ResourceName]]"
+"code> syntax for that. This is described more in detail in the FAQ.
\n"
+"
To directly include a file content from the repository, embrace its path "
+"with triple square brackets: [[[my/file.txt]]].
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/feedfragment-resource.xml.php:4
+#, fuzzy
+msgid "Initial creation"
+msgstr "Создание первоначальной страницы"
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:3
+#, php-format
+msgid "See the deprecated pages."
+msgstr "Смотреть устаревшие страницы."
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:5
+msgid "Number of pages:"
+msgstr "Количество страниц:"
+
+#: IDF/gettexttemplates/idf/wiki/listResources.html.php:4
+#, fuzzy
+msgid "Number of resources:"
+msgstr "Количество пользователей:"
+
+#: IDF/gettexttemplates/idf/wiki/search.html.php:4
+msgid "Pages found:"
+msgstr "Страниц найдено:"
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:3
+msgid "The form contains some errors. Please correct them to update the page."
+msgstr "Форма содержит ошибки. Пожалуйста исправте их чтобы обновить страницу."
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:6
+msgid "Update Page"
+msgstr "Обновить страницу"
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:11
+msgid "Delete this page"
+msgstr "Удалить эту страницу"
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:4
+#, fuzzy
+msgid "Update Resource"
+msgstr "Обновить пользователя"
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:9
+#, fuzzy
+msgid "Delete this resource"
+msgstr "Удалить эту ревизию"
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:3
+msgid ""
+"Attention! This page is marked as deprecated, \n"
+"use it as reference only if you are sure you need these specific information."
+msgstr ""
+"Внимание! Эта страница помечена как устаревшая. Ссылайтесь "
+"на нее, только если вы уверены, что нужна именно она."
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:5
+#, php-format
+msgid ""
+"You are looking at an old revision of the page \n"
+"%%page.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+"Вы смотрите на старую версию страницы \n"
+"%%page.title%%. Эта версия была создана\n"
+"%%submitter%%."
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:10
+msgid "Table of Content"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:13
+msgid "Delete this revision"
+msgstr "Удалить эту ревизию"
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:3
+#, fuzzy, php-format
+msgid ""
+"You are looking at an old revision of the resource \n"
+"%%resource.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+"Вы смотрите на старую версию страницы \n"
+"%%page.title%%. Эта версия была создана\n"
+"%%submitter%%."
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:14
+#, fuzzy
+msgid "Page Usage"
+msgstr "ИмяСтраницы"
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:15
+msgid "This resource is not used on any pages yet."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:3
+msgid "A new documentation page has been created:"
+msgstr "Новая страница документации была создана:"
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:14
+msgid "Documentation page:"
+msgstr "Страница документации:"
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3
+msgid "The following documentation page has been updated:"
+msgstr "Следующая страница документации была обновлена:"
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7
+msgid "Updated by:"
+msgstr "Обновлена:"
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13
+msgid "New content:"
+msgstr "Новое содержимое:"
+
+#: IDF/Issue.php:76
+msgid "owner"
+msgstr "владелец"
+
+#: IDF/Issue.php:84 IDF/Wiki/Page.php:86
+msgid "interested users"
+msgstr "наблюдающие пользователи"
+
+#: IDF/Issue.php:85
+msgid ""
+"Interested users will get an email notification when the issue is changed."
+msgstr ""
+"Наблюдающие пользователи получат сообщение, когда проблема будем изменена."
+
+#: IDF/Issue.php:92 IDF/Project.php:94 IDF/Review.php:95 IDF/Upload.php:99
+#: IDF/Wiki/Page.php:94
+msgid "labels"
+msgstr "метки"
+
+#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114
+#: IDF/Upload.php:118 IDF/Wiki/Page.php:106 IDF/Wiki/Resource.php:101
+msgid "modification date"
+msgstr "дата модификации"
+
+#: IDF/Issue.php:212 IDF/IssueComment.php:143
+#, php-format
+msgid ""
+"Issue %3$d, %4$s"
+msgstr ""
+"Проблема %3$d"
+"a>, %4$s"
+
+#: IDF/Issue.php:214
+#, fuzzy, php-format
+msgid "Creation of issue %3$d, by %4$s"
+msgstr "Создание проблемы %d, %s"
+
+#: IDF/Issue.php:224
+#, fuzzy, php-format
+msgid "%1$s: Issue %2$d created - %3$s"
+msgstr "%s: Проблема %d создана - %s"
+
+#: IDF/Issue.php:307
+#, fuzzy, php-format
+msgid "Issue %1$s - %2$s (%3$s)"
+msgstr "Проблема %s - %s (%s)"
+
+#: IDF/Issue.php:311
+#, fuzzy, php-format
+msgid "Updated Issue %1$s - %2$s (%3$s)"
+msgstr "Обновить проблему %s - %s (%s)"
+
+#: IDF/IssueComment.php:51 IDF/IssueRelation.php:47
+msgid "issue"
+msgstr "проблема"
+
+#: IDF/IssueComment.php:58 IDF/IssueFile.php:49 IDF/Review/Comment.php:62
+#: IDF/Review/FileComment.php:49 IDF/Review/FileComment.php:69
+msgid "comment"
+msgstr "комментарий"
+
+#: IDF/IssueComment.php:72 IDF/Review/Comment.php:75 IDF/Upload.php:63
+#: IDF/Wiki/PageRevision.php:85
+msgid "changes"
+msgstr "изменения"
+
+#: IDF/IssueComment.php:73
+msgid "Serialized array of the changes in the issue."
+msgstr "Сериализованный массив изменений в этой проблеме."
+
+#: IDF/IssueComment.php:180
+#, fuzzy, php-format
+msgid "Comment on issue %3$d, by %4$s"
+msgstr "Комментарий на проблему %d, %s"
+
+#: IDF/IssueComment.php:191
+#, fuzzy, php-format
+msgid "%1$s: Comment on issue %2$d - %3$s"
+msgstr "%s: Комментарий на проблему %d - %s"
+
+#: IDF/IssueFile.php:64
+msgid "file name"
+msgstr "имя файла"
+
+#: IDF/IssueFile.php:70
+msgid "the file"
+msgstr "файл"
+
+#: IDF/IssueFile.php:76
+msgid "file size"
+msgstr "размер файла"
+
+#: IDF/IssueFile.php:84
+msgid "type"
+msgstr "тип"
+
+#: IDF/IssueFile.php:86
+msgid "Image"
+msgstr "Изображение"
+
+#: IDF/IssueFile.php:87
+msgid "Other"
+msgstr "Другой"
+
+#: IDF/IssueRelation.php:54
+msgid "verb"
+msgstr ""
+
+#: IDF/IssueRelation.php:61
+msgid "other issue"
+msgstr "другие проблемы"
+
+#: IDF/Key.php:55
+msgid "public key"
+msgstr "Открытый ключ"
+
+#: IDF/Key.php:90
+msgid "Invalid or unknown key data detected."
+msgstr "Обнаружены неверные или неизвестные данные ключа."
+
+#: IDF/Plugin/SyncMercurial.php:78 IDF/Plugin/SyncSvn.php:81
+#, php-format
+msgid "The repository %s already exists."
+msgstr "Репозиторий %s уже существует."
+
+#: IDF/Plugin/SyncMercurial.php:142
+#, php-format
+msgid "%s does not exist or is not writable."
+msgstr "%s не существует или нет прав на запись."
+
+#: IDF/Plugin/SyncMonotone.php:107 IDF/Plugin/SyncMonotone.php:492
+msgid "\"mtn_repositories\" must be defined in your configuration file"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:114 IDF/Plugin/SyncMonotone.php:482
+msgid "\"mtn_usher_conf\" does not exist or is not writable"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:121
+#, php-format
+msgid "Could not find mtn-post-push script \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:155
+#, php-format
+msgid "The configuration file \"%s\" is missing"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:164
+#, php-format
+msgid "The project path \"%s\" already exists"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:170
+#, php-format
+msgid "The project path \"%s\" could not be created"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:208
+#, php-format
+msgid "The key directory \"%s\" could not be created"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:227
+#, php-format
+msgid "Could not parse key information: %s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:265
+#, php-format
+msgid "Could not create configuration directory \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:275
+#, php-format
+msgid "Could not create symlink for configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:293
+#, php-format
+msgid "Could not write configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:309 IDF/Plugin/SyncMonotone.php:525
+#, php-format
+msgid "Could not parse usher configuration in \"%1$s\": %2$s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:320
+#, php-format
+msgid "usher configuration already contains a server entry named \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:345 IDF/Plugin/SyncMonotone.php:546
+#, php-format
+msgid "Could not write usher configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:395
+#, php-format
+msgid "Could not write write-permissions file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:420
+#, php-format
+msgid "Could not write read-permissions file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:438
+#, php-format
+msgid "Could not remove symlink \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:446
+#, php-format
+msgid "Could not create symlink \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:500
+#, php-format
+msgid "One or more paths underneath %s could not be deleted"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:512
+#, php-format
+msgid "Could not delete client private key \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:599 IDF/Plugin/SyncMonotone.php:718
+#, php-format
+msgid "Could not parse read-permissions for project \"%1$s\": %2$s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:643 IDF/Plugin/SyncMonotone.php:741
+#, php-format
+msgid "Could not write read-permissions for project \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:657 IDF/Plugin/SyncMonotone.php:760
+#, php-format
+msgid "Could not write write-permissions file for project \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:813
+msgid "\"mtn_repositories\" must be defined in your configuration file."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:820
+#, php-format
+msgid "The project path %s does not exists."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:838
+#, php-format
+msgid "The command \"%s\" could not be executed."
+msgstr ""
+
+#: IDF/Project.php:62 IDF/Tag.php:66
+msgid "name"
+msgstr "имя"
+
+#: IDF/Project.php:69
+msgid "short name"
+msgstr "краткое имя"
+
+#: IDF/Project.php:70
+#, fuzzy
+msgid ""
+"Used in the URL to access the project, must be short with only letters and "
+"numbers."
+msgstr "Используется в адресе для доступа к проекту. Только буквы и цифры."
+
+#: IDF/Project.php:78
+msgid "short description"
+msgstr "краткое описание"
+
+#: IDF/Project.php:86 IDF/Review/Patch.php:74
+msgid "description"
+msgstr "описание"
+
+#: IDF/Project.php:87
+#, fuzzy
+msgid "The description can be extended using the Markdown syntax."
+msgstr "Описание может быть расширенно с использованием markdown синтакса."
+
+#: IDF/Project.php:100
+msgid "private"
+msgstr "частный"
+
+#: IDF/Project.php:108
+msgid "current project activity"
+msgstr ""
+
+#: IDF/Project.php:159
+#, php-format
+msgid "Project \"%s\" not found."
+msgstr "Проект \"%s\" не найден."
+
+#: IDF/ProjectActivity.php:56
+#, fuzzy
+msgid "date"
+msgstr "Обновлено"
+
+#: IDF/Review/Comment.php:55 IDF/Review/Patch.php:80
+msgid "patch"
+msgstr "патч"
+
+#: IDF/Review/Comment.php:83
+msgid "vote"
+msgstr "голос"
+
+#: IDF/Review/Comment.php:139 IDF/Review/Patch.php:151
+#, php-format
+msgid ""
+"Review %3$d, %4$s"
+msgstr ""
+"Аудит %3$d, "
+"%4$s"
+
+#: IDF/Review/Comment.php:141
+#, fuzzy, php-format
+msgid "Update of review %3$d, by %4$s"
+msgstr "Обновление рецензии %d, %s"
+
+#: IDF/Review/Comment.php:151
+#, fuzzy, php-format
+msgid "%1$s: Updated review %2$d - %3$s"
+msgstr "%s: Обновленная рецензия %d - %s"
+
+#: IDF/Review/Comment.php:222
+#, fuzzy, php-format
+msgid "Updated Code Review %1$s - %2$s (%3$s)"
+msgstr "Обновленная рецензия кода %s - %s (%s)"
+
+#: IDF/Review/Patch.php:52
+msgid "review"
+msgstr "рецензия"
+
+#: IDF/Review/Patch.php:67
+msgid "commit"
+msgstr "комит"
+
+#: IDF/Review/Patch.php:153
+#, fuzzy, php-format
+msgid "Creation of review %3$d, by %4$s"
+msgstr "Создание проблемы %d, %s"
+
+#: IDF/Review/Patch.php:163
+#, fuzzy, php-format
+msgid "%1$s: Creation of Review %2$d - %3$s"
+msgstr "%s: Создание рецензии %d - %s"
+
+#: IDF/Review/Patch.php:208
+#, fuzzy, php-format
+msgid "New Code Review %1$s - %2$s (%3$s)"
+msgstr "Новая рецензия кода %s - %s (%s)"
+
+#: IDF/Scm/Git.php:309 IDF/Scm/Mercurial.php:199
+#, php-format
+msgid "Folder %1$s not found in commit %2$s."
+msgstr "Директория %1$s не найдена в комите %2$s."
+
+#: IDF/Scm/Git.php:433 IDF/Scm/Mercurial.php:216
+#, php-format
+msgid "Not a valid tree: %s."
+msgstr "Не действительное дерево: %s."
+
+#: IDF/Scm/Monotone/Stdio.php:81
+msgid "Monotone client key name or hash not in project conf."
+msgstr "Клиентский ключ monotone или хэш не в настройках проекта."
+
+#: IDF/Scm/Monotone/Stdio.php:89
+#, php-format
+msgid "The key directory %s could not be created."
+msgstr ""
+
+#: IDF/Scm/Monotone/Stdio.php:100
+#, php-format
+msgid "Could not write client key \"%s\""
+msgstr ""
+
+#: IDF/Search/Occ.php:33
+#, fuzzy
+msgid "occurrence"
+msgstr "вхождение"
+
+#: IDF/Search/Occ.php:49
+msgid "word"
+msgstr "слово"
+
+#: IDF/Search/Occ.php:75
+#, fuzzy
+msgid "occurrences"
+msgstr "вхождений"
+
+#: IDF/Search/Occ.php:81
+#, fuzzy
+msgid "ponderated occurrence"
+msgstr "ponderated вхождение"
+
+#: IDF/Tag.php:59
+msgid "tag class"
+msgstr "пометить класс"
+
+#: IDF/Tag.php:60
+msgid "The class of the tag."
+msgstr "Класс метки."
+
+#: IDF/Tag.php:73
+msgid "lcname"
+msgstr "lcname"
+
+#: IDF/Tag.php:74
+msgid "Lower case version of the name for fast searching."
+msgstr "Имя в нижнем регистре для быстрого поиска."
+
+#: IDF/Template/Markdown.php:84
+msgid "Create this documentation page"
+msgstr "Создать эту страницу документации"
+
+#: IDF/Template/Markdown.php:97
+msgid "You are not allowed to access the wiki."
+msgstr ""
+
+#: IDF/Template/Markdown.php:106
+#, fuzzy
+msgid "The wiki resource has not been found."
+msgstr "Проект был обновлен."
+
+#: IDF/Template/Markdown.php:113
+msgid "The wiki resource has not been found. Create it!"
+msgstr ""
+
+#: IDF/Template/Markdown.php:146
+#, fuzzy
+msgid "This revision of the resource is no longer available."
+msgstr "Этот проект не доступен."
+
+#: IDF/Template/ShowUser.php:51
+msgid "Anonymous"
+msgstr "Аноним"
+
+#: IDF/Template/ShowUser.php:54
+msgid "Me"
+msgstr "Я"
+
+#: IDF/Timeline/Paginator.php:49
+msgid "Today"
+msgstr "Сегодня"
+
+#: IDF/Upload.php:70
+msgid "file"
+msgstr "файл"
+
+#: IDF/Upload.php:71
+msgid "The path is relative to the upload path."
+msgstr "Путь относителен пути загрузки."
+
+#: IDF/Upload.php:78 IDF/Wiki/ResourceRevision.php:71
+msgid "file size in bytes"
+msgstr "размер файла в байтах"
+
+#: IDF/Upload.php:84
+msgid "MD5"
+msgstr ""
+
+#: IDF/Upload.php:106
+msgid "number of downloads"
+msgstr "количество файлов"
+
+#: IDF/Upload.php:201
+#, php-format
+msgid "Download %2$d, %3$s"
+msgstr "Загрузка %2$d, %3$s"
+
+#: IDF/Upload.php:204
+#, fuzzy, php-format
+msgid "Addition of download %2$d, by %3$s"
+msgstr "Добавление загрузки %d, %s"
+
+#: IDF/Upload.php:214
+#, fuzzy, php-format
+msgid "%1$s: Download %2$d added - %3$s"
+msgstr "%s: Файл %d добавлен - %s"
+
+#: IDF/Upload.php:301
+#, fuzzy, php-format
+msgid "New download - %1$s (%2$s)"
+msgstr "Новый файл - %s (%s)"
+
+#: IDF/Upload.php:305
+#, fuzzy, php-format
+msgid "Updated download - %1$s (%2$s)"
+msgstr "Новый файл - %s (%s)"
+
+#: IDF/Views/Admin.php:47
+#, fuzzy
+msgid "The forge configuration has been saved."
+msgstr "Конфигурации загрузки сохранены."
+
+#: IDF/Views/Admin.php:80
+msgid "This table shows the projects in the forge."
+msgstr "Таблица показывает проекты в хранилище."
+
+#: IDF/Views/Admin.php:85
+msgid "Short Name"
+msgstr "Краткое имя"
+
+#: IDF/Views/Admin.php:87
+msgid "Repository Size"
+msgstr "Размер репозитория"
+
+#: IDF/Views/Admin.php:93
+msgid "No projects were found."
+msgstr "Проектов не найдено."
+
+#: IDF/Views/Admin.php:116
+#, fuzzy
+msgid "The label configuration has been saved."
+msgstr "Конфигурации загрузки сохранены."
+
+#: IDF/Views/Admin.php:147 IDF/Views/Admin.php:314 IDF/Views/Wiki.php:484
+#: IDF/Views/Wiki.php:536
+#, php-format
+msgid "Update %s"
+msgstr "Обновление %s"
+
+#: IDF/Views/Admin.php:155 IDF/Views/Project.php:304
+msgid "The project has been updated."
+msgstr "Проект был обновлен."
+
+#: IDF/Views/Admin.php:192
+msgid "The project has been created."
+msgstr "Проект был создан."
+
+#: IDF/Views/Admin.php:223
+#, php-format
+msgid "Delete %s Project"
+msgstr "Удалить проект %s"
+
+#: IDF/Views/Admin.php:230
+msgid "The project has been deleted."
+msgstr "Проект удалён."
+
+#: IDF/Views/Admin.php:260
+msgid "Not Validated User List"
+msgstr "Список не проверенных пользователей"
+
+#: IDF/Views/Admin.php:268
+msgid "This table shows the users in the forge."
+msgstr "Таблица показывает пользователей хранилища."
+
+#: IDF/Views/Admin.php:272
+msgid "login"
+msgstr "логин"
+
+#: IDF/Views/Admin.php:275
+msgid "Admin"
+msgstr "Админ"
+
+#: IDF/Views/Admin.php:277
+msgid "Last Login"
+msgstr "Последний вход"
+
+#: IDF/Views/Admin.php:284
+msgid "No users were found."
+msgstr "Пользователей не найдено."
+
+#: IDF/Views/Admin.php:321
+msgid "You do not have the rights to update this user."
+msgstr "У вас нет прав для обновления этого пользователя."
+
+#: IDF/Views/Admin.php:339
+msgid "The user has been updated."
+msgstr "Пользователь был обновлен."
+
+#: IDF/Views/Admin.php:372
+#, php-format
+msgid "The user %s has been created."
+msgstr "Пользователь %s создан."
+
+#: IDF/Views/Admin.php:379
+msgid "Add User"
+msgstr "Добавить пользователя."
+
+#: IDF/Views/Admin.php:395
+msgid "Usher management"
+msgstr ""
+
+#: IDF/Views/Admin.php:432
+msgid "Usher configuration has been reloaded"
+msgstr ""
+
+#: IDF/Views/Admin.php:436
+msgid "Usher has been shut down"
+msgstr ""
+
+#: IDF/Views/Admin.php:441
+msgid "Usher has been started up"
+msgstr ""
+
+#: IDF/Views/Admin.php:479
+#, php-format
+msgid "The server \"%s\" has been started"
+msgstr ""
+
+#: IDF/Views/Admin.php:483
+#, php-format
+msgid "The server \"%s\" has been stopped"
+msgstr ""
+
+#: IDF/Views/Admin.php:488
+#, php-format
+msgid "The server \"%s\" has been killed"
+msgstr ""
+
+#: IDF/Views/Admin.php:508
+#, php-format
+msgid "Open connections for \"%s\""
+msgstr ""
+
+#: IDF/Views/Admin.php:513
+#, php-format
+msgid "no connections for server \"%s\""
+msgstr ""
+
+#: IDF/Views/Admin.php:534
+msgid "Yes"
+msgstr "Да"
+
+#: IDF/Views/Admin.php:534
+msgid "No"
+msgstr "Нет"
+
+#: IDF/Views/Download.php:45
+#, php-format
+msgid "%s Downloads"
+msgstr "Файлы для %s"
+
+#: IDF/Views/Download.php:51
+msgid "This table shows the files to download."
+msgstr "Таблица показывает файлы для скачивания."
+
+#: IDF/Views/Download.php:67 IDF/Views/Download.php:349
+msgid "Uploaded"
+msgstr "Загружено"
+
+#: IDF/Views/Download.php:71 IDF/Views/Download.php:353
+msgid "No downloads were found."
+msgstr "Файлов не найдено"
+
+#: IDF/Views/Download.php:94
+#, php-format
+msgid "Download %s"
+msgstr "Скачать %s"
+
+#: IDF/Views/Download.php:111
+#, php-format
+msgid "The file %2$s has been updated."
+msgstr "Файл %2$s обновлен."
+
+#: IDF/Views/Download.php:144
+#, php-format
+msgid "Delete Download %s"
+msgstr "Удалить файл %s"
+
+#: IDF/Views/Download.php:177
+msgid "The file has been deleted."
+msgstr "Файл был удален."
+
+#: IDF/Views/Download.php:244
+#, php-format
+msgid "The file has been uploaded."
+msgstr "Файл загружен."
+
+#: IDF/Views/Download.php:271
+#, fuzzy
+msgid "New Downloads from Archive"
+msgstr "Добавить файл"
+
+#: IDF/Views/Download.php:278
+#, fuzzy
+msgid "The archive has been uploaded and processed."
+msgstr "Проект был обновлен."
+
+#: IDF/Views/Download.php:331
+#, php-format
+msgid "%1$s Downloads with Label %2$s"
+msgstr "%1$s загрузок с меткой %2$s"
+
+#: IDF/Views/Download.php:341
+#, php-format
+msgid "This table shows the downloads with label %s."
+msgstr "Таблица показывает файлы с меткой %s."
+
+#: IDF/Views/Issue.php:41
+#, php-format
+msgid "%s Open Issues"
+msgstr "Открытые проблемы для %s"
+
+#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:382 IDF/Views/User.php:75
+msgid "This table shows the open issues."
+msgstr "Таблица показывает открытые проблемы."
+
+#: IDF/Views/Issue.php:61 IDF/Views/Issue.php:220 IDF/Views/Issue.php:301
+#: IDF/Views/Issue.php:390 IDF/Views/Issue.php:542 IDF/Views/Issue.php:765
+#: IDF/Views/Issue.php:824 IDF/Views/Review.php:57 IDF/Views/User.php:81
+msgid "Id"
+msgstr "Id"
+
+#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:223 IDF/Views/Issue.php:305
+#: IDF/Views/Issue.php:393 IDF/Views/Issue.php:545 IDF/Views/Issue.php:768
+#: IDF/Views/Issue.php:827 IDF/Views/Review.php:60 IDF/Views/User.php:85
+msgid "Last Updated"
+msgstr "Последнее обновление"
+
+#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:227 IDF/Views/Issue.php:309
+#: IDF/Views/Issue.php:397 IDF/Views/Issue.php:549 IDF/Views/Issue.php:772
+#: IDF/Views/Issue.php:831
+msgid "No issues were found."
+msgstr "Проблем на найдено."
+
+#: IDF/Views/Issue.php:113
+msgid "Not assigned"
+msgstr ""
+
+#: IDF/Views/Issue.php:149
+#, php-format
+msgid "Summary of tracked issues in %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:194
+#, php-format
+msgid "Watch List: Closed Issues for %s"
+msgstr "Лист слежения: закрытые проблемы для %s"
+
+#: IDF/Views/Issue.php:195
+#, php-format
+msgid "This table shows the closed issues in your watch list for %s project."
+msgstr ""
+"Таблица показывает закрытые проблемы в вашем листе слежения для проекта %s."
+
+#: IDF/Views/Issue.php:200
+#, php-format
+msgid "Watch List: Open Issues for %s"
+msgstr "Лист слежения: открытые проблемы для %s"
+
+#: IDF/Views/Issue.php:201
+#, php-format
+msgid "This table shows the open issues in your watch list for %s project."
+msgstr ""
+"Таблица показывает открытые проблемы в вашем листе слежения для проекта %s."
+
+#: IDF/Views/Issue.php:277
+msgid "Watch List: Closed Issues"
+msgstr "Лист слежения: закрытые проблемы"
+
+#: IDF/Views/Issue.php:278
+msgid "This table shows the closed issues in your watch list."
+msgstr "Таблица показывает закрытые проблемы в вашем листе слежения."
+
+#: IDF/Views/Issue.php:283
+msgid "Watch List: Open Issues"
+msgstr "Лист слежения: открытые проблемы"
+
+#: IDF/Views/Issue.php:284
+msgid "This table shows the open issues in your watch list."
+msgstr "Таблица показывает открытые проблемы в Вашем листе слежения."
+
+#: IDF/Views/Issue.php:303 IDF/Views/User.php:82
+msgid "Project"
+msgstr "Проект"
+
+#: IDF/Views/Issue.php:344
+#, fuzzy, php-format
+msgid "%1$s %2$s Submitted %3$s Issues"
+msgstr "Отправленные проблемы:"
+
+#: IDF/Views/Issue.php:348
+#, php-format
+msgid "%1$s %2$s Closed Submitted %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:352
+#, fuzzy, php-format
+msgid "%1$s %2$s Closed Working %3$s Issues"
+msgstr "%s закрытых проблем"
+
+#: IDF/Views/Issue.php:356
+#, php-format
+msgid "%1$s %2$s Working %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:417
+msgid "Submit a new issue"
+msgstr "Добавить проблему"
+
+#: IDF/Views/Issue.php:433
+#, fuzzy, php-format
+msgid "Issue %2$d has been created."
+msgstr "Проблема %d создана."
+
+#: IDF/Views/Issue.php:490
+#, php-format
+msgid "Search issues - %s"
+msgstr "Поиск проблем - %s"
+
+#: IDF/Views/Issue.php:492
+#, php-format
+msgid "Search closed issues - %s"
+msgstr "Поиск закрытых проблем - %s"
+
+#: IDF/Views/Issue.php:539
+msgid "This table shows the found issues."
+msgstr "Таблица показывает найденные проблемы."
+
+#: IDF/Views/Issue.php:604
+#, fuzzy, php-format
+msgid "Issue %2$d: %3$s"
+msgstr "Проблема %d: %s"
+
+#: IDF/Views/Issue.php:628
+#, fuzzy, php-format
+msgid "Issue %2$d has been updated."
+msgstr "Проблема %d обновлена."
+
+#: IDF/Views/Issue.php:718
+#, php-format
+msgid "View %s"
+msgstr "Смотреть %s"
+
+#: IDF/Views/Issue.php:745
+#, php-format
+msgid "%s Closed Issues"
+msgstr "%s закрытых проблем"
+
+#: IDF/Views/Issue.php:755
+msgid "This table shows the closed issues."
+msgstr "Таблица показывает закрытые проблемы."
+
+#: IDF/Views/Issue.php:798
+#, php-format
+msgid "%1$s Issues with Label %2$s"
+msgstr "%1$s проблем с меткой %2$s"
+
+#: IDF/Views/Issue.php:801
+#, php-format
+msgid "%1$s Closed Issues with Label %2$s"
+msgstr "%1$s закрытых проблем с меткой %2$s"
+
+#: IDF/Views/Issue.php:814
+#, php-format
+msgid "This table shows the issues with label %s."
+msgstr "Таблица показывает проблемы с меткой %s."
+
+#: IDF/Views/Issue.php:937
+msgid "The issue has been removed from your watch list."
+msgstr "Проблема выла удалена и вашего листа слежения."
+
+#: IDF/Views/Issue.php:940
+msgid "The issue has been added to your watch list."
+msgstr "Проблема была добавлена в Ваш лист слежения."
+
+#: IDF/Views/Issue.php:1037
+msgid "On your watch list."
+msgstr "В Вашем списке наблюдения."
+
+#: IDF/Views/Project.php:95
+msgid "Issues and Comments"
+msgstr "Проблемы и Комментарии"
+
+#: IDF/Views/Project.php:99
+msgid "Documents"
+msgstr "Документы"
+
+#: IDF/Views/Project.php:101
+msgid "Reviews and Patches"
+msgstr "Рецензии и патчи"
+
+#: IDF/Views/Project.php:180
+msgid "This table shows the project updates."
+msgstr "Таблица показывает обновления проекта."
+
+#: IDF/Views/Project.php:191
+msgid "Change"
+msgstr "Изменить"
+
+#: IDF/Views/Project.php:195
+msgid "No changes were found."
+msgstr "Изменений не найдено."
+
+#: IDF/Views/Project.php:296
+#, php-format
+msgid "%s Project Summary"
+msgstr "Краткое описание %s"
+
+#: IDF/Views/Project.php:335
+#, php-format
+msgid "%s Issue Tracking Configuration"
+msgstr "Настройка слежения за проблемами %s"
+
+#: IDF/Views/Project.php:344
+msgid "The issue tracking configuration has been saved."
+msgstr "Настройки слежения за проблемами сохранены."
+
+#: IDF/Views/Project.php:381
+#, php-format
+msgid "%s Downloads Configuration"
+msgstr "Настройка загрузок %s"
+
+#: IDF/Views/Project.php:393
+msgid "The downloads configuration has been saved."
+msgstr "Конфигурации загрузки сохранены."
+
+#: IDF/Views/Project.php:428
+#, php-format
+msgid "%s Documentation Configuration"
+msgstr "Настройка документации %s"
+
+#: IDF/Views/Project.php:437
+msgid "The documentation configuration has been saved."
+msgstr "Настройки документации сохранены."
+
+#: IDF/Views/Project.php:471
+#, php-format
+msgid "%s Project Members"
+msgstr "Участники проекта %s"
+
+#: IDF/Views/Project.php:480
+msgid "The project membership has been saved."
+msgstr "Участие в проекте сохранено."
+
+#: IDF/Views/Project.php:503
+#, php-format
+msgid "%s Tabs Access Rights"
+msgstr "права доступа к вкладкам для %s"
+
+#: IDF/Views/Project.php:517
+#, fuzzy
+msgid ""
+"The project tabs access rights and notification settings have been saved."
+msgstr "Права доступа к вкладкам для проекта сохранены."
+
+#: IDF/Views/Project.php:566
+#, php-format
+msgid "%s Source"
+msgstr "Исходный код %s"
+
+#: IDF/Views/Project.php:580
+msgid "The project source configuration has been saved."
+msgstr "Настройки исходного кода проекта сохранены."
+
+#: IDF/Views/Review.php:41
+#, php-format
+msgid "%s Code Reviews"
+msgstr "Рецензии кода для %s"
+
+#: IDF/Views/Review.php:48
+msgid "This table shows the latest reviews."
+msgstr "Таблица показывает последние аудиты."
+
+#: IDF/Views/Review.php:64
+msgid "No reviews were found."
+msgstr "Рецензий не найдено."
+
+#: IDF/Views/Review.php:94
+#, fuzzy, php-format
+msgid "The code review %2$d has been created."
+msgstr "Аудит кода %d создан."
+
+#: IDF/Views/Review.php:140
+#, fuzzy, php-format
+msgid "Review %2$d: %3$s"
+msgstr "Обзор %d: %s"
+
+#: IDF/Views/Review.php:160
+#, fuzzy, php-format
+msgid "Your code review %2$d has been published."
+msgstr "Ваша рецензия %d была опубликована."
+
+#: IDF/Views/Source.php:40
+#, php-format
+msgid "%s Source Help"
+msgstr "Помощь по исходному коду для %s"
+
+#: IDF/Views/Source.php:58
+#, php-format
+msgid "%s Invalid Revision"
+msgstr ""
+
+#: IDF/Views/Source.php:82
+#, php-format
+msgid "%s Ambiguous Revision"
+msgstr ""
+
+#: IDF/Views/Source.php:107
+#, php-format
+msgid "%1$s %2$s Change Log"
+msgstr "история изменений %1$s %2$s"
+
+#: IDF/Views/Source.php:153 IDF/Views/Source.php:234 IDF/Views/Source.php:362
+#, php-format
+msgid "%1$s %2$s Source Tree"
+msgstr "%1$s %2$s дерево исходного кода"
+
+#: IDF/Views/Source.php:310
+#, php-format
+msgid "%s Commit Details"
+msgstr "Детали комита %s"
+
+#: IDF/Views/Source.php:311
+#, fuzzy, php-format
+msgid "%1$s Commit Details - %2$s"
+msgstr "Детали комита %s - %s"
+
+#: IDF/Views/User.php:59
+msgid "Your Dashboard - Working Issues"
+msgstr "Сводная информация - Проблемы в работе"
+
+#: IDF/Views/User.php:62
+msgid "Your Dashboard - Submitted Issues"
+msgstr "Сводная информация - Отправленные проблемы"
+
+#: IDF/Views/User.php:89
+msgid "No issues are assigned to you, yeah!"
+msgstr "На Вас не назначена ни одна проблема, ура!"
+
+#: IDF/Views/User.php:89
+msgid "All the issues you submitted are fixed, yeah!"
+msgstr "Все отправленные Вами проблемы решены, ура!"
+
+#: IDF/Views/User.php:121
+msgid "Your personal information has been updated."
+msgstr "Информация о вас обновлена."
+
+#: IDF/Views/User.php:133
+msgid "Your Account"
+msgstr "Ваша учетная запись"
+
+#: IDF/Views/User.php:157
+msgid "The public key has been deleted."
+msgstr ""
+
+#: IDF/Views/User.php:177
+msgid "The address has been deleted."
+msgstr "Адрес был удалён."
+
+#: IDF/Views/User.php:200
+msgid "Confirm The Email Change"
+msgstr "Подтвердите изменения эл. адреса"
+
+#: IDF/Views/User.php:232
+#, php-format
+msgid "Your new email address \"%s\" has been validated. Thank you!"
+msgstr "Ваш новый электронный адрес \"%s\" подтвержден. Спасибо!"
+
+#: IDF/Views/Wiki.php:41
+#, php-format
+msgid "%s Documentation"
+msgstr "Документация для %s"
+
+#: IDF/Views/Wiki.php:48
+msgid "This table shows the documentation pages."
+msgstr "Таблица показывает страницы документации."
+
+#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:144 IDF/Views/Wiki.php:185
+msgid "Page Title"
+msgstr "Заголовок страницы"
+
+#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:103 IDF/Views/Wiki.php:146
+#: IDF/Views/Wiki.php:187
+msgid "Updated"
+msgstr "Обновлено"
+
+#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:191
+msgid "No documentation pages were found."
+msgstr "Страниц документации не найдено."
+
+#: IDF/Views/Wiki.php:88
+#, fuzzy, php-format
+msgid "%s Documentation Resources"
+msgstr "Документация для %s"
+
+#: IDF/Views/Wiki.php:94
+#, fuzzy
+msgid "This table shows the resources that can be used on documentation pages."
+msgstr "Таблица показывает страницы документации."
+
+#: IDF/Views/Wiki.php:100
+#, fuzzy
+msgid "Resource Title"
+msgstr "Исходный код"
+
+#: IDF/Views/Wiki.php:107
+#, fuzzy
+msgid "No resources were found."
+msgstr "Проблем на найдено."
+
+#: IDF/Views/Wiki.php:128
+#, php-format
+msgid "Documentation Search - %s"
+msgstr "Поиск документации - %s"
+
+#: IDF/Views/Wiki.php:139
+msgid "This table shows the pages found."
+msgstr "Таблица показывает найденные страницы."
+
+#: IDF/Views/Wiki.php:150
+msgid "No pages were found."
+msgstr "Страниц не найдено."
+
+#: IDF/Views/Wiki.php:169
+#, php-format
+msgid "%1$s Documentation Pages with Label %2$s"
+msgstr "%1$s Страниц документации с меткой %2$s"
+
+#: IDF/Views/Wiki.php:179
+#, php-format
+msgid "This table shows the documentation pages with label %s."
+msgstr "Таблица показывает страницы документации с меткой %s."
+
+#: IDF/Views/Wiki.php:222
+#, fuzzy, php-format
+msgid "The page %2$s has been created."
+msgstr "Страница%s создана."
+
+#: IDF/Views/Wiki.php:265
+#, fuzzy, php-format
+msgid "The resource %2$s has been created."
+msgstr "Страница%s создана."
+
+#: IDF/Views/Wiki.php:409 IDF/Views/Wiki.php:448
+msgid "The old revision has been deleted."
+msgstr "Старая версия удалена."
+
+#: IDF/Views/Wiki.php:415 IDF/Views/Wiki.php:454
+#, php-format
+msgid "Delete Old Revision of %s"
+msgstr "Удалить старую ревизию of %s"
+
+#: IDF/Views/Wiki.php:496
+#, fuzzy, php-format
+msgid "The page %2$s has been updated."
+msgstr "Страница %s обновлена."
+
+#: IDF/Views/Wiki.php:548
+#, fuzzy, php-format
+msgid "The resource %2$s has been updated."
+msgstr "Файл %2$s обновлен."
+
+#: IDF/Views/Wiki.php:583
+msgid "The documentation page has been deleted."
+msgstr "Страница документации удалена."
+
+#: IDF/Views/Wiki.php:591
+#, php-format
+msgid "Delete Page %s"
+msgstr "Удалить страницу %s"
+
+#: IDF/Views/Wiki.php:623
+#, fuzzy
+msgid "The documentation resource has been deleted."
+msgstr "Страница документации удалена."
+
+#: IDF/Views/Wiki.php:631
+#, fuzzy, php-format
+msgid "Delete Resource %s"
+msgstr "Удалить страницу %s"
+
+#: IDF/Views.php:173 IDF/Views.php:199
+msgid "Confirm Your Account Creation"
+msgstr "Подтвердите создание учетной записи"
+
+#: IDF/Views.php:219
+msgid "Welcome! You can now participate in the life of your project of choice."
+msgstr ""
+"Добро пожаловать! Теперь Вы можете учавствовать в жизни выбранного проекта."
+
+#: IDF/Views.php:245 IDF/Views.php:269 IDF/Views.php:310
+msgid "Password Recovery"
+msgstr "Восстановление пароля"
+
+#: IDF/Views.php:289
+msgid ""
+"Welcome back! Next time, you can use your broswer options to remember the "
+"password."
+msgstr ""
+"Рады Вас снова видеть! Следующий раз Вы можете использовать функцию "
+"сохранения пароля в Вашем браузере."
+
+#: IDF/Views.php:331
+msgid "Here to Help You!"
+msgstr "Здесь чтобы помогать Вам!"
+
+#: IDF/Views.php:347
+msgid "InDefero Upload Archive Format"
+msgstr ""
+
+#: IDF/Views.php:363
+msgid "InDefero API (Application Programming Interface)"
+msgstr "InDefero API (Application Programming Interface)"
+
+#: IDF/Wiki/Page.php:62 IDF/Wiki/Resource.php:64
+msgid "title"
+msgstr "заголовок"
+
+#: IDF/Wiki/Page.php:63
+msgid ""
+"The title of the page must only contain letters, digits or the dash "
+"character. For example: My-new-Wiki-Page."
+msgstr ""
+"Заголовок страницы должен содержать только буквы, цифры или дефис. Например: "
+"Моя-новая-вики-страница."
+
+#: IDF/Wiki/Page.php:71
+msgid "A one line description of the page content."
+msgstr "Описание содержимого страницы в одну строчку."
+
+#: IDF/Wiki/Page.php:196 IDF/Wiki/PageRevision.php:196
+#, php-format
+msgid "%2$s, %3$s"
+msgstr "%2$s, %3$s"
+
+#: IDF/Wiki/Page.php:198
+#, fuzzy, php-format
+msgid "Creation of page %2$s, by %3$s"
+msgstr "Создание страницы %s, %s"
+
+#: IDF/Wiki/Page.php:208
+#, fuzzy, php-format
+msgid "%1$s: Documentation page %2$s added - %3$s"
+msgstr "%s: Страницы документации %s добавлена - %s"
+
+#: IDF/Wiki/PageRevision.php:48
+msgid "page"
+msgstr "страница"
+
+#: IDF/Wiki/PageRevision.php:66 IDF/Wiki/ResourceRevision.php:64
+msgid "A one line description of the changes."
+msgstr "Описание изменений в одну строку."
+
+#: IDF/Wiki/PageRevision.php:72
+msgid "content"
+msgstr "содержание"
+
+#: IDF/Wiki/PageRevision.php:218 IDF/Wiki/ResourceRevision.php:311
+#, fuzzy, php-format
+msgid "Change of %2$s, by %3$s"
+msgstr "Изменение %s, %s"
+
+#: IDF/Wiki/PageRevision.php:231
+#, fuzzy, php-format
+msgid "%1$s: Documentation page %2$s updated - %3$s"
+msgstr "%s: Страница документации %s обновлена - %s"
+
+#: IDF/Wiki/PageRevision.php:293
+#, fuzzy, php-format
+msgid "New Documentation Page %1$s - %2$s (%3$s)"
+msgstr "Новая страница документации %s - %s (%s)"
+
+#: IDF/Wiki/PageRevision.php:297
+#, fuzzy, php-format
+msgid "Documentation Page Changed %1$s - %2$s (%3$s)"
+msgstr "Страница документации изменена %s - %s (%s)"
+
+#: IDF/Wiki/Resource.php:65
+#, fuzzy
+msgid ""
+"The title of the resource must only contain letters, digits, dots or the "
+"dash character. For example: my-resource.png."
+msgstr ""
+"Заголовок страницы должен содержать только буквы, цифры или дефис. Например: "
+"Моя-новая-вики-страница."
+
+#: IDF/Wiki/Resource.php:72
+msgid "MIME media type"
+msgstr ""
+
+#: IDF/Wiki/Resource.php:73
+msgid "The MIME media type of the resource."
+msgstr ""
+
+#: IDF/Wiki/Resource.php:81
+#, fuzzy
+msgid "A one line description of the resource."
+msgstr "Краткое описание проекта."
+
+#: IDF/Wiki/Resource.php:176 IDF/Wiki/ResourceRevision.php:308
+#, fuzzy, php-format
+msgid "%2$s, %3$s"
+msgstr "%2$s, %3$s"
+
+#: IDF/Wiki/Resource.php:178
+#, fuzzy, php-format
+msgid "Creation of resource %2$s, by %3$s"
+msgstr "Создание страницы %s, %s"
+
+#: IDF/Wiki/Resource.php:188
+#, fuzzy, php-format
+msgid "%1$s: Documentation resource %2$s added - %3$s"
+msgstr "%s: Страницы документации %s добавлена - %s"
+
+#: IDF/Wiki/ResourceRevision.php:47
+#, fuzzy
+msgid "resource"
+msgstr "Исходный код"
+
+#: IDF/Wiki/ResourceRevision.php:78
+msgid "File extension"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:79
+msgid "The file extension of the uploaded resource."
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:94
+msgid "page usage"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:116
+#, php-format
+msgid "id %d: %s"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:263
+#, fuzzy, php-format
+msgid "Download (%s)"
+msgstr "Скачать %s"
+
+#: IDF/Wiki/ResourceRevision.php:270
+msgid "View resource details"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:324
+#, fuzzy, php-format
+msgid "%1$s: Documentation resource %2$s updated - %3$s"
+msgstr "%s: Страница документации %s обновлена - %s"
+
+#~ msgid ""
+#~ "The master branch is empty or contains illegal characters, please use "
+#~ "only letters, digits, dashs and dots as separators."
+#~ msgstr ""
+#~ "Мастер бранч пустой или содержит недопустимые символы, пожалуйста, "
+#~ "используйте только латинские буквы, цифры, дефисы и точки в качестве "
+#~ "разделителей."
+
+#~ msgid "Learn more about the post-commit web hooks."
+#~ msgstr "Прочитать больше про post-commit web hooks."
+
+#~ msgid "Your mail"
+#~ msgstr "Ваша почта"
+
+#~ msgid ""
+#~ "Notification emails will be sent from the %%from_email%% "
+#~ "address, if you send the email to a mailing list, you may need to "
+#~ "register this email address. Multiple email addresses must be separated "
+#~ "through commas (','). If you do not want to send emails for a given type "
+#~ "of changes, simply leave the corresponding field empty."
+#~ msgstr ""
+#~ "Уведомления по электронной почте будут отправлены с адреса %"
+#~ "%from_email%%. Если Вы отправляете письма на адрес рассылки "
+#~ "возможно Вам понадобиться зарегистрировать этот адрес. Несколько адресов "
+#~ "должны разделяться запятой (','). Если Вы не хотите отправлять сообщения "
+#~ "на выбранное действие просто оставьте соотвествующее поле пустым."
+
+#~ msgid "You have here access to the administration of the forge."
+#~ msgstr "Вы здесь имеете доступ к администрированию хранилища."
+
+#~ msgid "Forge statistics"
+#~ msgstr "Статистика хранилища"
+
+#~ msgid "Projects:"
+#~ msgstr "Проектов:"
diff --git a/indefero/src/IDF/locale/sl/idf.po b/indefero/src/IDF/locale/sl/idf.po
new file mode 100644
index 0000000..ea113a4
--- /dev/null
+++ b/indefero/src/IDF/locale/sl/idf.po
@@ -0,0 +1,5436 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+# William MARTIN , 2011.
+msgid ""
+msgstr ""
+"Project-Id-Version: Indefero\n"
+"Report-Msgid-Bugs-To: http://projects.ceondo.com/p/indefero/issues/\n"
+"POT-Creation-Date: 2012-03-22 01:16+0100\n"
+"PO-Revision-Date: 2011-10-31 00:19+0000\n"
+"Last-Translator: tommyd \n"
+"Language-Team: LANGUAGE \n"
+"Language: sl\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
+"%100==4 ? 2 : 3)\n"
+
+#: IDF/Commit.php:55 IDF/Conf.php:54 IDF/Issue.php:52
+#: IDF/ProjectActivity.php:49 IDF/Review.php:65 IDF/Search/Occ.php:69
+#: IDF/Tag.php:52 IDF/Upload.php:49 IDF/Wiki/Page.php:54
+#: IDF/Wiki/Resource.php:56
+msgid "project"
+msgstr "projekt"
+
+#: IDF/Commit.php:63 IDF/Issue.php:67 IDF/IssueComment.php:65
+#: IDF/IssueFile.php:57 IDF/IssueRelation.php:69 IDF/Review/Comment.php:69
+#: IDF/Review.php:80 IDF/Upload.php:91 IDF/Wiki/Page.php:78
+#: IDF/Wiki/PageRevision.php:79 IDF/Wiki/Resource.php:88
+#: IDF/Wiki/ResourceRevision.php:86
+msgid "submitter"
+msgstr "pošiljatelj"
+
+#: IDF/Commit.php:87 IDF/Issue.php:60 IDF/Review/Patch.php:60
+#: IDF/Review.php:73 IDF/Upload.php:57 IDF/Wiki/Page.php:70
+#: IDF/Wiki/PageRevision.php:65 IDF/Wiki/Resource.php:80
+#: IDF/Wiki/ResourceRevision.php:63
+msgid "summary"
+msgstr "povzetek"
+
+#: IDF/Commit.php:93
+msgid "changelog"
+msgstr "dnevnik sprememb"
+
+#: IDF/Commit.php:100 IDF/Issue.php:105 IDF/IssueComment.php:79
+#: IDF/IssueFile.php:96 IDF/IssueRelation.php:75 IDF/Review/Comment.php:90
+#: IDF/Review/FileComment.php:75 IDF/Review/Patch.php:87 IDF/Review.php:108
+#: IDF/Upload.php:112 IDF/Wiki/Page.php:100 IDF/Wiki/PageRevision.php:92
+#: IDF/Wiki/Resource.php:95 IDF/Wiki/ResourceRevision.php:101
+msgid "creation date"
+msgstr "datum nastanka"
+
+#: IDF/Commit.php:238
+#, php-format
+msgid "Commit %1$s, by %2$s"
+msgstr ""
+
+#: IDF/Commit.php:337
+#, php-format
+msgid "New Commit %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Conf.php:61 IDF/Gconf.php:73
+msgid "key"
+msgstr "ključ"
+
+#: IDF/Conf.php:67 IDF/Gconf.php:79 IDF/ProjectActivity.php:62
+msgid "value"
+msgstr "vrednost"
+
+#: IDF/Diff.php:460
+msgid "Old"
+msgstr "Staro "
+
+#: IDF/Diff.php:460
+msgid "New"
+msgstr "Novo"
+
+#: IDF/EmailAddress.php:49 IDF/Key.php:49
+msgid "user"
+msgstr "uporabnik"
+
+#: IDF/EmailAddress.php:55
+msgid "email"
+msgstr ""
+
+#: IDF/Form/Admin/ForgeConf.php:34
+msgid "Custom forge page enabled"
+msgstr ""
+
+#: IDF/Form/Admin/ForgeConf.php:39 IDF/Form/WikiPageCreate.php:80
+#: IDF/Form/WikiPageUpdate.php:72
+msgid "Content"
+msgstr "Vsebina"
+
+#: IDF/Form/Admin/LabelConf.php:40
+#, fuzzy
+msgid "Predefined project labels"
+msgstr "Zaseben projekt"
+
+#: IDF/Form/Admin/LabelConf.php:55
+#, php-format
+msgid ""
+"The label \"%s\" is invalid: A label must only consist of alphanumeric "
+"characters and dashes, and can optionally contain a \":\" with a group "
+"prefix."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:600
+msgid "git"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:601
+msgid "Subversion"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:602
+msgid "mercurial"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:603
+msgid "monotone"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44
+#: IDF/Form/ProjectConf.php:39 IDF/Views/Admin.php:86 IDF/Views/Admin.php:273
+msgid "Name"
+msgstr "Ime"
+
+#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:101
+#: IDF/gettexttemplates/idf/base-full.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html~.php:5
+#: IDF/gettexttemplates/idf/base.html.php:5
+#: IDF/gettexttemplates/idf/base.html~.php:5
+#: IDF/gettexttemplates/idf/main-menu.html.php:9
+#: IDF/gettexttemplates/idf/project-list.html.php:5
+#: IDF/gettexttemplates/idf/project-list.html.php:7
+msgid "Private project"
+msgstr "Zaseben projekt"
+
+#: IDF/Form/Admin/ProjectCreate.php:62
+msgid "Shortname"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:64
+msgid ""
+"It must be unique for each project and composed only of letters, digits and "
+"dash (-) like \"my-project\"."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50
+msgid "Short description"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:70 IDF/Form/Admin/ProjectUpdate.php:51
+#: IDF/Project.php:79
+msgid "A one line description of the project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:77 IDF/Form/Admin/ProjectUpdate.php:58
+#: IDF/Form/ProjectConf.php:56
+msgid "External URL"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:84
+msgid "Repository type"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:92
+msgid "Remote Subversion repository"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:99 IDF/Form/SourceConf.php:40
+msgid "Repository username"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:106 IDF/Form/SourceConf.php:47
+msgid "Repository password"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:113 IDF/Form/Admin/ProjectUpdate.php:66
+msgid "Master branch"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:116 IDF/Form/Admin/ProjectUpdate.php:69
+msgid ""
+"This should be a world-wide unique identifier for your project. A reverse "
+"DNS notation like \"com.my-domain.my-project\" is a good idea."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:121 IDF/Form/Admin/ProjectUpdate.php:95
+#: IDF/Form/MembersConf.php:46 IDF/Form/TabsConf.php:53
+#: IDF/Form/TabsConf.php:72
+msgid "Project owners"
+msgstr "Lastniki projekta"
+
+#: IDF/Form/Admin/ProjectCreate.php:130 IDF/Form/Admin/ProjectUpdate.php:103
+#: IDF/Form/MembersConf.php:54 IDF/Form/TabsConf.php:52
+#: IDF/Form/TabsConf.php:78
+msgid "Project members"
+msgstr "Člani projekta"
+
+#: IDF/Form/Admin/ProjectCreate.php:140 IDF/Form/Admin/ProjectUpdate.php:85
+#: IDF/Form/IssueCreate.php:168 IDF/Form/IssueUpdate.php:164
+#: IDF/Form/ProjectConf.php:73 IDF/Form/UpdateUpload.php:71
+#: IDF/Form/Upload.php:70 IDF/Form/WikiPageCreate.php:93
+#: IDF/Form/WikiPageUpdate.php:104
+msgid "Labels"
+msgstr "Oznake"
+
+#: IDF/Form/Admin/ProjectCreate.php:155
+msgid "Project template"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:157
+msgid ""
+"Use the given project to initialize the new project. Access rights and "
+"general configuration will be taken from the template project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:204
+msgid ""
+"Only a remote repository available through HTTP or HTTPS is allowed. For "
+"example \"http://somewhere.com/svn/trunk\"."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:220 IDF/Form/Admin/ProjectUpdate.php:117
+msgid ""
+"The master branch is empty or contains illegal characters, please use only "
+"letters, digits, dashes and dots as separators."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:230 IDF/Form/Admin/ProjectUpdate.php:128
+msgid "This master branch is already used. Please select another one."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:241
+msgid ""
+"This shortname contains illegal characters, please use only letters, digits "
+"and dash (-)."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:244
+msgid "The shortname cannot start with the dash (-) character."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:247
+msgid "The shortname cannot end with the dash (-) character."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:252
+msgid "This shortname is already used. Please select another one."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:303 IDF/Form/Admin/ProjectDelete.php:78
+#: IDF/Form/Admin/ProjectUpdate.php:153 IDF/Form/Admin/UserCreate.php:106
+#: IDF/Form/Admin/UserUpdate.php:191 IDF/Form/IssueCreate.php:338
+#: IDF/Form/IssueUpdate.php:329 IDF/Form/MembersConf.php:64
+#: IDF/Form/Password.php:76 IDF/Form/Register.php:112
+#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:143
+#: IDF/Form/TabsConf.php:122 IDF/Form/UpdateUpload.php:126
+#: IDF/Form/Upload.php:149 IDF/Form/UploadArchive.php:137
+#: IDF/Form/UserAccount.php:216 IDF/Form/UserChangeEmail.php:80
+#: IDF/Form/WikiPageCreate.php:167 IDF/Form/WikiPageDelete.php:59
+#: IDF/Form/WikiPageUpdate.php:178 IDF/Form/WikiResourceCreate.php:123
+#: IDF/Form/WikiResourceDelete.php:59 IDF/Form/WikiResourceUpdate.php:124
+msgid "Cannot save the model from an invalid form."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:341
+msgid ""
+"Click on the Project Management tab to set the description of your project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:426
+msgid "This project is not available."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:41
+msgid "Confirmation code"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:46
+msgid "I have made a backup of all the important data of this project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:55
+msgid ""
+"The confirmation code does not match. Please provide a valid confirmation "
+"code to delete the project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:63
+msgid "Sorry, you really need to backup your data before deletion."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38
+#: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40
+msgid "First name"
+msgstr "Ime"
+
+#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47
+#: IDF/Form/RegisterConfirmation.php:59 IDF/Form/UserAccount.php:49
+msgid "Last name"
+msgstr "Priimek"
+
+#: IDF/Form/Admin/UserCreate.php:56
+msgid "Login"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:60
+msgid ""
+"The login must be between 3 and 15 characters long and contains only letters "
+"and digits."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57
+msgid "Email"
+msgstr "E-naslov"
+
+#: IDF/Form/Admin/UserCreate.php:71
+msgid ""
+"Double check the email address as the password is sent directly to the user."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67
+#: IDF/Form/UserAccount.php:66
+msgid "Language"
+msgstr "Jezik"
+
+#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161
+msgid "Add a public key"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:92
+msgid ""
+"Paste a SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:157
+msgid "Your details to access your forge."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:429
+#: IDF/Form/UserAccount.php:438
+#, php-format
+msgid "The email \"%s\" is already used."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72
+#, php-format
+msgid "The login \"%s\" can only contain letters and digits."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77
+#, php-format
+msgid "The login \"%s\" is already used, please find another one."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:78
+msgid "Password"
+msgstr "Geslo"
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid "Leave blank if you do not want to change the password."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid ""
+"The password must be hard for other people to guess, but easy for the user "
+"to remember."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:89
+msgid "Confirm password"
+msgstr "Potrditev gesla"
+
+#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/IssueCreate.php:66
+#: IDF/Form/ProjectConf.php:48 IDF/Form/ReviewCreate.php:54
+#: IDF/Form/UpdateUpload.php:51 IDF/Form/Upload.php:49
+#: IDF/Form/UserAccount.php:101 IDF/Form/WikiPageCreate.php:70
+#: IDF/Form/WikiPageUpdate.php:60 IDF/Form/WikiResourceCreate.php:54
+#: IDF/Form/WikiResourceUpdate.php:46 IDF/Views/Wiki.php:102
+msgid "Description"
+msgstr "Opis"
+
+#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:110
+msgid "Twitter username"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:120
+msgid "Public email address"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:130
+msgid "Website URL"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:140
+msgid "Upload custom avatar"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:147
+msgid ""
+"An image file with a width and height not larger than 60 pixels (bigger "
+"images are scaled down)."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:151 IDF/Form/UserAccount.php:152
+msgid "Remove custom avatar"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:156
+msgid "Tick this to delete the custom avatar."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:161 IDF/Views/Admin.php:274
+msgid "Staff"
+msgstr "Osebje"
+
+#: IDF/Form/Admin/UserUpdate.php:164
+msgid "If you give staff rights to a user, you really need to trust him."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:276
+msgid "Active"
+msgstr "Aktiven"
+
+#: IDF/Form/Admin/UserUpdate.php:176
+msgid ""
+"If the user is not getting the confirmation email or is abusing the system, "
+"you can directly enable or disable their account here."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:274
+msgid "--- is not a valid first name."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:290
+msgid ""
+"A user with this email already exists, please provide another email address."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/UserAccount.php:398
+msgid "For security reason, you cannot upload a file with this extension."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:461
+msgid "The passwords do not match. Please give them again."
+msgstr ""
+
+#: IDF/Form/Field/EmailList.php:45
+msgid "Please enter one or more valid email addresses."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:57 IDF/Form/IssueUpdate.php:46
+#: IDF/Form/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:73
+#: IDF/Form/UpdateUpload.php:42 IDF/Form/Upload.php:40
+#: IDF/gettexttemplates/idf/issues/base.html.php:3 IDF/Views/Download.php:65
+#: IDF/Views/Download.php:347 IDF/Views/Issue.php:62 IDF/Views/Issue.php:221
+#: IDF/Views/Issue.php:302 IDF/Views/Issue.php:391 IDF/Views/Issue.php:543
+#: IDF/Views/Issue.php:766 IDF/Views/Issue.php:825 IDF/Views/Review.php:58
+#: IDF/Views/User.php:83 IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:145
+#: IDF/Views/Wiki.php:186
+msgid "Summary"
+msgstr "Povzetek"
+
+#: IDF/Form/IssueCreate.php:76 IDF/Form/IssueUpdate.php:66
+#: IDF/Form/ReviewCreate.php:83
+msgid "The \"upload_issue_path\" configuration variable was not set."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:86 IDF/Form/IssueUpdate.php:76
+msgid "Attach a file"
+msgstr "Izberi datoteko"
+
+#: IDF/Form/IssueCreate.php:99 IDF/Form/IssueUpdate.php:89
+#: IDF/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:83
+#: IDF/Views/Issue.php:63 IDF/Views/Issue.php:222 IDF/Views/Issue.php:304
+#: IDF/Views/Issue.php:392 IDF/Views/Issue.php:544 IDF/Views/Issue.php:767
+#: IDF/Views/Issue.php:826 IDF/Views/Review.php:59 IDF/Views/User.php:84
+msgid "Status"
+msgstr "Stanje"
+
+#: IDF/Form/IssueCreate.php:108 IDF/Form/IssueUpdate.php:99
+msgid "Owner"
+msgstr "Lastnik"
+
+#: IDF/Form/IssueCreate.php:118 IDF/Form/IssueUpdate.php:112
+#: IDF/Form/IssueUpdate.php:129
+msgid "This issue"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:210
+msgid "You cannot add a label with the \"Status\" prefix to an issue."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:211 IDF/Form/IssueCreate.php:218
+#: IDF/Form/UpdateUpload.php:110 IDF/Form/Upload.php:121
+#: IDF/Form/WikiPageCreate.php:151 IDF/Form/WikiPageUpdate.php:162
+msgid "You provided an invalid label."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:217 IDF/Form/UpdateUpload.php:109
+#, php-format
+msgid "You cannot provide more than one label from the %s class to an issue."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:228 IDF/Form/IssueUpdate.php:194
+msgid "You need to provide a description of the issue."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:251 IDF/Form/ReviewCreate.php:159
+msgid "You provided an invalid status."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:272
+msgid "You provided an invalid relation type."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:294
+#, php-format
+msgid "The value \"%s\" is not a valid issue id."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:300
+#, php-format
+msgid "The issue \"%s\" does not exist."
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:86
+msgid "is related to"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:87
+msgid "blocks"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:88
+msgid "is blocked by"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:89
+msgid "duplicates"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:90
+msgid "is duplicated by"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:97
+msgid ""
+"Define an issue template to hint the reporter to provide certain information"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:106
+msgid "Open issue status values"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:114
+msgid "Closed issue status values"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:123
+msgid "Predefined issue labels"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:125
+msgid ""
+"The first \"Type:\" and \"Priority:\" entries found in this list are "
+"automatically chosen as defaults for new issues."
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:133
+msgid "Each issue may have at most one label with each of these classes."
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:140
+msgid "Issue relations"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:142
+msgid ""
+"You can define bidirectional relations like \"is related to\" or \"blocks, "
+"is blocked by\". For standard relations pre-configured translations exist, "
+"new relations should however be defined in a language that is understood by "
+"all project members."
+msgstr ""
+
+#: IDF/Form/IssueUpdate.php:56 IDF/Form/ReviewFileComment.php:45
+#: IDF/Form/WikiPageUpdate.php:82 IDF/Form/WikiResourceUpdate.php:66
+msgid "Comment"
+msgstr "Komentar"
+
+#: IDF/Form/IssueUpdate.php:316
+msgid "No changes were entered."
+msgstr ""
+
+#: IDF/Form/MembersConf.php:104
+#, php-format
+msgid "The following login is invalid: %s."
+msgid_plural "The following logins are invalid: %s."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: IDF/Form/Password.php:34
+msgid "Your login or email"
+msgstr ""
+
+#: IDF/Form/Password.php:35
+msgid "Provide either your login or your email to recover your password."
+msgstr ""
+
+#: IDF/Form/Password.php:49 IDF/Form/Password.php:64
+msgid ""
+"Sorry, we cannot find a user with this email address or login. Feel free to "
+"try again."
+msgstr ""
+
+#: IDF/Form/Password.php:100
+msgid "Password Recovery - InDefero"
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:36 IDF/Form/PasswordReset.php:39
+#: IDF/Form/UserChangeEmail.php:36
+msgid "Your verification key"
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:50 IDF/Form/PasswordReset.php:89
+msgid ""
+"We are sorry but this validation key is not valid. Maybe you should directly "
+"copy/paste it from your validation email."
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:61 IDF/Form/PasswordReset.php:100
+msgid ""
+"Sorry, but this verification key has expired, please restart the password "
+"recovery sequence. For security reasons, the verification key is only valid "
+"24h."
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:76 IDF/Form/PasswordReset.php:108
+#: IDF/Form/RegisterConfirmation.php:137 IDF/Form/RegisterInputKey.php:72
+msgid "Cannot save an invalid form."
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:45 IDF/Form/RegisterConfirmation.php:69
+#: IDF/Form/UserAccount.php:77
+msgid "Your password"
+msgstr "Vaše geslo"
+
+#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80
+msgid ""
+"Your password must be hard for other people to find it, but easy for you to "
+"remember."
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:56 IDF/Form/RegisterConfirmation.php:80
+#: IDF/Form/UserAccount.php:89
+msgid "Confirm your password"
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:74 IDF/Form/RegisterConfirmation.php:122
+msgid "The two passwords must be the same."
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:77
+msgid ""
+"This account is not active. Please contact the forge administrator to "
+"activate it."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:43
+msgid "Short Description"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:85
+msgid "The \"upload_path\" configuration variable was not set."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:90
+msgid "Update the logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:92
+msgid "The logo must be a picture with a size of 32 by 32."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:103
+msgid "Remove the current logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:139
+msgid "Could not determine the size of the uploaded picture."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:143
+msgid "The picture must have a size of 32 by 32."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:164
+msgid "The entered URL is invalid. Only http and https URLs are allowed."
+msgstr ""
+
+#: IDF/Form/Register.php:41
+msgid "Your login"
+msgstr ""
+
+#: IDF/Form/Register.php:45
+msgid ""
+"The login must be between 3 and 15 characters long and contain only letters "
+"and digits."
+msgstr ""
+
+#: IDF/Form/Register.php:53 IDF/Form/UserAccount.php:59
+msgid "Your email"
+msgstr "E-naslov"
+
+#: IDF/Form/Register.php:55
+msgid "We will never send you any unsolicited emails. We hate spam too!"
+msgstr ""
+
+#: IDF/Form/Register.php:60
+msgid "I agree to the terms and conditions."
+msgstr ""
+
+#: IDF/Form/Register.php:88
+msgid ""
+"We know, this is boring, but you need to agree with the terms and conditions."
+msgstr ""
+
+#: IDF/Form/Register.php:97
+#, php-format
+msgid ""
+"The email \"%1$s\" is already used. If you need to, you can recover your password."
+msgstr ""
+
+#: IDF/Form/Register.php:148
+msgid "Confirm the creation of your account."
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:40 IDF/Form/RegisterInputKey.php:36
+msgid "Your confirmation key"
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:72
+msgid ""
+"Your password must be hard for other people to guess, but easy for you to "
+"remember."
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:99 IDF/Form/RegisterInputKey.php:50
+msgid ""
+"We are sorry but this confirmation key is not valid. Maybe you should "
+"directly copy/paste it from your confirmation email."
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:110
+#, php-format
+msgid ""
+"This account has already been confirmed. Maybe should you try to recover your password."
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:74
+#: IDF/gettexttemplates/idf/source/base.html.php:5
+#: IDF/gettexttemplates/idf/source/changelog.html.php:7
+msgid "Commit"
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:92
+msgid "Patch"
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:119
+msgid "We were not able to parse your patch. Please provide a valid patch."
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:128
+msgid "You provided an invalid commit."
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:202
+msgid "Initial patch to be reviewed."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:56
+msgid "General comment"
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:113
+msgid ""
+"You need to provide your general comment about the proposal, or comments on "
+"at least one file."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:124
+msgid "The status have been updated."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:130
+msgid "This field is required."
+msgstr ""
+
+#: IDF/Form/SourceConf.php:54 IDF/Form/UploadConf.php:70
+msgid "Webhook URL"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:38 IDF/gettexttemplates/idf/admin/base.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html.php:8
+#: IDF/gettexttemplates/idf/base-full.html~.php:7
+#: IDF/gettexttemplates/idf/base.html.php:8
+#: IDF/gettexttemplates/idf/base.html~.php:7
+#: IDF/gettexttemplates/idf/downloads/base.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:14
+#: IDF/Views/Project.php:97
+msgid "Downloads"
+msgstr "Prenosi"
+
+#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.php:12
+#: IDF/gettexttemplates/idf/base-full.html~.php:11
+#: IDF/gettexttemplates/idf/base.html.php:12
+#: IDF/gettexttemplates/idf/base.html~.php:11
+msgid "Code Review"
+msgstr "Revizije Izvorne kode"
+
+#: IDF/Form/TabsConf.php:40 IDF/gettexttemplates/idf/admin/base.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html~.php:8
+#: IDF/gettexttemplates/idf/base.html.php:9
+#: IDF/gettexttemplates/idf/base.html~.php:8
+msgid "Documentation"
+msgstr "Dokumentacija"
+
+#: IDF/Form/TabsConf.php:41 IDF/gettexttemplates/idf/admin/base.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html.php:11
+#: IDF/gettexttemplates/idf/base-full.html~.php:10
+#: IDF/gettexttemplates/idf/base.html.php:11
+#: IDF/gettexttemplates/idf/base.html~.php:10
+msgid "Source"
+msgstr "Izvorna koda"
+
+#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.php:10
+#: IDF/gettexttemplates/idf/base-full.html~.php:9
+#: IDF/gettexttemplates/idf/base.html.php:10
+#: IDF/gettexttemplates/idf/base.html~.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:17
+msgid "Issues"
+msgstr "Napake/Predlogi"
+
+#: IDF/Form/TabsConf.php:50
+msgid "Open to all"
+msgstr "Odprto za vse"
+
+#: IDF/Form/TabsConf.php:51
+msgid "Signed in users"
+msgstr "Prijavljeni uporabniki"
+
+#: IDF/Form/TabsConf.php:54
+msgid "Closed"
+msgstr "Zaprta"
+
+#: IDF/Form/TabsConf.php:84
+#, fuzzy
+msgid "Others"
+msgstr "Ostalo"
+
+#: IDF/Form/TabsConf.php:107
+msgid "Extra authorized users"
+msgstr "Ostali odobreni uporabniki"
+
+#: IDF/Form/Upload.php:59 IDF/Form/WikiResourceCreate.php:65
+#: IDF/Form/WikiResourceUpdate.php:56
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7
+#: IDF/Views/Download.php:64 IDF/Views/Download.php:346
+msgid "File"
+msgstr "Datoteka"
+
+#: IDF/Form/Upload.php:87 IDF/Form/WikiResourceCreate.php:96
+#: IDF/Form/WikiResourceUpdate.php:83
+msgid "For security reasons, you cannot upload a file with this extension."
+msgstr ""
+
+#: IDF/Form/Upload.php:120
+#, php-format
+msgid "You cannot provide more than one label from the %s class to a download."
+msgstr ""
+
+#: IDF/Form/UploadArchive.php:41
+#, fuzzy
+msgid "Archive file"
+msgstr "Arhiv"
+
+#: IDF/Form/UploadArchive.php:67
+#, php-format
+msgid ""
+"For security reasons, you cannot upload a file (%s) with this extension."
+msgstr ""
+
+#: IDF/Form/UploadArchive.php:98
+#, php-format
+msgid ""
+"You cannot provide more than label from the %1$s class to a download (%2$s)."
+msgstr ""
+
+#: IDF/Form/UploadArchive.php:109
+#, php-format
+msgid ""
+"A file with the name \"%s\" has already been uploaded and is not marked to "
+"be replaced."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:41
+msgid "The archive does not exist."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:48
+#, php-format
+msgid "The archive could not be read (code %d)."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:53
+msgid "The archive does not contain a manifest.xml."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:61
+#, php-format
+msgid "The archive's manifest is invalid: %s"
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:77
+#, php-format
+msgid "The entry %d in the manifest is missing a file name."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:82
+#, php-format
+msgid "The entry %d in the manifest is missing a summary."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:86
+msgid "The manifest must not reference itself."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:91
+#, php-format
+msgid "The entry %s in the manifest does not exist in the archive."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:96
+#, php-format
+msgid "The entry %s in the manifest is referenced more than once."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:108
+#, php-format
+msgid "The entry %s in the manifest has more than the six allowed labels set."
+msgstr ""
+
+#: IDF/Form/UploadConf.php:53
+msgid "Predefined download labels"
+msgstr ""
+
+#: IDF/Form/UploadConf.php:62
+msgid "Each download may have at most one label with each of these classes"
+msgstr ""
+
+#: IDF/Form/UserAccount.php:61
+msgid ""
+"If you change your email address, an email will be sent to the new address "
+"to confirm it."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:80
+msgid "Leave blank if you do not want to change your password."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:166
+msgid ""
+"Paste an SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+
+#: IDF/Form/UserAccount.php:171
+msgid "Add a secondary email address"
+msgstr ""
+
+#: IDF/Form/UserAccount.php:173
+msgid "You will get an email to confirm that you own the address you specify."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:200
+msgid "Confirm your new email address."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:203
+#, php-format
+msgid ""
+"A validation email has been sent to \"%s\" to validate the email address "
+"change."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:341
+msgid ""
+"Please check the key as it does not appear to be a valid SSH public key."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:363
+msgid ""
+"Please check the key as it does not appear to be a valid monotone public key."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:371
+msgid "Public key looks like neither an SSH nor monotone public key."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:383
+msgid "You already have uploaded this key."
+msgstr ""
+
+#: IDF/Form/UserChangeEmail.php:63
+msgid ""
+"The validation key is not valid. Please copy/paste it from your confirmation "
+"email."
+msgstr ""
+
+#: IDF/Form/WikiConf.php:49
+msgid "Predefined documentation page labels"
+msgstr ""
+
+#: IDF/Form/WikiConf.php:58
+msgid ""
+"Each documentation page may have at most one label with each of these classes"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:38
+msgid ""
+"# Introduction\n"
+"\n"
+"Add your content here.\n"
+"\n"
+"\n"
+"# Details\n"
+"\n"
+"Add your content here. Format your content with:\n"
+"\n"
+"* Text in **bold** or *italic*.\n"
+"* Headings, paragraphs, and lists.\n"
+"* Links to other [[WikiPage]].\n"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:57
+msgid "PageName"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:60 IDF/Form/WikiPageUpdate.php:50
+msgid "Page title"
+msgstr "Naslov strani"
+
+#: IDF/Form/WikiPageCreate.php:66 IDF/Form/WikiPageUpdate.php:56
+msgid ""
+"The page name must contains only letters, digits and the dash (-) character."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:71 IDF/Form/WikiPageUpdate.php:61
+msgid "This one line description is displayed in the list of pages."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:108 IDF/Form/WikiPageUpdate.php:119
+#: IDF/Form/WikiResourceCreate.php:78
+msgid "The title contains invalid characters."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:114 IDF/Form/WikiPageUpdate.php:125
+msgid "A page with this title already exists."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:150 IDF/Form/WikiPageUpdate.php:161
+#, php-format
+msgid "You cannot provide more than one label from the %s class to a page."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:200
+msgid "Initial page creation"
+msgstr ""
+
+#: IDF/Form/WikiPageDelete.php:39
+msgid "Yes, I understand that the page and all its revisions will be deleted."
+msgstr ""
+
+#: IDF/Form/WikiPageDelete.php:50 IDF/Form/WikiResourceDelete.php:50
+msgid "You need to confirm the deletion."
+msgstr ""
+
+#: IDF/Form/WikiPageUpdate.php:83 IDF/Form/WikiResourceUpdate.php:67
+msgid "One line to describe the changes you made."
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:40
+msgid "ResourceName"
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:44
+msgid "Resource title"
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:50
+msgid ""
+"The resource name must contains only letters, digits and the dash (-) "
+"character."
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:55 IDF/Form/WikiResourceUpdate.php:47
+msgid "This one line description is displayed in the list of resources."
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:84
+msgid "A resource with this title already exists."
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:142
+msgid "Initial resource creation"
+msgstr ""
+
+#: IDF/Form/WikiResourceDelete.php:39
+msgid ""
+"Yes, I understand that the resource and all its revisions will be deleted."
+msgstr ""
+
+#: IDF/Form/WikiResourceUpdate.php:89
+#, php-format
+msgid ""
+"The mime type of the uploaded file \"%1$s\" does not match the mime type of "
+"this resource \"%2$s\""
+msgstr ""
+
+#: IDF/Form/WikiResourceUpdate.php:97
+msgid "The current version of the resource and the uploaded file are equal."
+msgstr ""
+
+#: IDF/Gconf.php:60 IDF/Search/Occ.php:56
+msgid "model class"
+msgstr ""
+
+#: IDF/Gconf.php:66 IDF/Search/Occ.php:62
+msgid "model id"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:3
+msgid "Project Summary"
+msgstr "Splošno o projektu"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:6
+msgid "Issue Tracking"
+msgstr "Sledenje zadevam"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:8
+msgid "Project Members"
+msgstr "Osebje Projekta"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:9
+msgid "Tabs Access and Notifications"
+msgstr "Dostop in obvestila"
+
+#: IDF/gettexttemplates/idf/admin/downloads.html.php:3
+#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3
+#: IDF/gettexttemplates/idf/admin/wiki.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/labels.html.php:3
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
List one status value per line in desired sort-order.
\n"
+"
Optionally, use an equals-sign to document the meaning of each status "
+"value.
The webhook URL setting specifies an URL to which a HTTP PUT"
+"strong>\n"
+"request is sent after a new download has been added or to which a HTTP "
+"POST\n"
+"request is sent after an existing download has been updated.\n"
+"If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/upload
\n"
+"
http://domain.com/upload?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each download:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%d - download id
\n"
+"
\n"
+"\n"
+"
For example, updating download 123 of project 'my-project' with\n"
+"web hook URL http://mydomain.com/%p/%d would send a POST "
+"request to\n"
+"http://mydomain.com/my-project/123.
A project owner may make any change to this project, including removing "
+"other project owners. You need to be carefull when you give owner rights."
+"p>\n"
+"
A project member will not have access to the administration area but will "
+"have more options available in the use of the project.
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:3
+msgid "You can find here the current repository configuration of your project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:4
+msgid ""
+"
The webhook URL setting specifies an URL to which a HTTP \n"
+"%%hook_request_method%% request is sent after each "
+"repository\n"
+"commit. If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/commit
\n"
+"
http://domain.com/commit?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each commit:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%r - revision number
\n"
+"
\n"
+"\n"
+"
For example, committing revision 123 to project 'my-project' with\n"
+"post-commit URL http://mydomain.com/%p/%r would send a request "
+"to\n"
+"http://mydomain.com/my-project/123.
The description of the project can be improved using the Markdown syntax.
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:7
+msgid ""
+"The form contains some errors. Please correct them to update the summary."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:8
+msgid "Current logo"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html~.php:4
+#: IDF/gettexttemplates/idf/base.html.php:4
+#: IDF/gettexttemplates/idf/base.html~.php:4
+#: IDF/gettexttemplates/idf/main-menu.html.php:8
+#: IDF/gettexttemplates/idf/project-list.html.php:4
+msgid "Project logo"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:10
+msgid "Your project does not have a logo configured yet."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:3
+msgid ""
+"This section allows you to configure project tabs access rights and "
+"notifications."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:4
+msgid ""
+"Tab access controls whether a single user can navigate into a particular "
+"section of your project via the main menu or automatically generated object "
+"links."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:5
+msgid ""
+"If you mark a project as private, only the project members and "
+"administrators, together with the extra authorized users you provide will "
+"have access to the project as a whole. You will still be able to define "
+"further access rights for the different tabs but the \"Open to all\" and "
+"\"Signed in users\" will default to authorized users only."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:6
+msgid ""
+"For the extra authorized user list, specify each person by its login. Each "
+"person must have already registered with the given login. Separate the "
+"logins with commas and/or new lines."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:7
+msgid ""
+"Only project members and admins have write access to the source. If you "
+"restrict the access to the source, anonymous access is not provided and the "
+"users must authenticate themselves with their password or SSH key."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
+#, php-format
+msgid ""
+"Here you can configure who should be notified about changes in a particular "
+"section. You can also configure additional addresses, like the one of a "
+"mailing list, that should be notified. (Keep in mind that you might have to "
+"register the sender address %%from_email%% to let the "
+"mailing list actually accept notification emails.) Multiple email addresses "
+"must be separated through commas (',')."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:9
+msgid ""
+"The form contains some errors. Please correct them to update the access "
+"rights."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
+msgid "Access Rights"
+msgstr "Pravice dostopa"
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:11
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
+#, fuzzy
+msgid "Notifications"
+msgstr "Potrditvena e-pošta"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:3
+#: IDF/gettexttemplates/idf/base-full.html~.php:3
+#: IDF/gettexttemplates/idf/base.html.php:3
+#: IDF/gettexttemplates/idf/base.html~.php:3
+#, php-format
+msgid ""
+"Sign in or create your account to create issues or "
+"add comments"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:6
+#: IDF/gettexttemplates/idf/base.html.php:6
+#: IDF/gettexttemplates/idf/project-list.html.php:6
+msgid "External link to project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html~.php:6
+#: IDF/gettexttemplates/idf/base.html.php:7
+#: IDF/gettexttemplates/idf/base.html~.php:6
+msgid "Project Home"
+msgstr "Projekt"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:13
+#: IDF/gettexttemplates/idf/base-full.html~.php:12
+#: IDF/gettexttemplates/idf/base.html.php:13
+#: IDF/gettexttemplates/idf/base.html~.php:12
+msgid "Project Management"
+msgstr "Upravljanje Projekta"
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:4
+#: IDF/gettexttemplates/idf/downloads/index.html.php:4
+#: IDF/Views/Download.php:235
+msgid "New Download"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:5
+#, fuzzy
+msgid "Upload Archive"
+msgstr "Arhiv"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:3
+msgid ""
+"Each file must have a distinct name and file contents\n"
+"cannot be changed, so be sure to include release numbers in each file\n"
+"name."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:6
+#, php-format
+msgid ""
+"You can use the Markdown syntax for the description."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:7
+msgid "The form contains some errors. Please correct them to submit the file."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:8
+msgid "Submit File"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:9
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:8
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:21
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:14
+#: IDF/gettexttemplates/idf/issues/create.html.php:14
+#: IDF/gettexttemplates/idf/issues/view.html.php:27
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:7
+#: IDF/gettexttemplates/idf/register/index.html.php:8
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:5
+#: IDF/gettexttemplates/idf/review/create.html.php:12
+#: IDF/gettexttemplates/idf/review/view.html.php:41
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:5
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:13
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:5
+msgid "Cancel"
+msgstr "Prekliči"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:10
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:9
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:6
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:6
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:6
+msgid "Instructions"
+msgstr "Navodila"
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:3
+msgid ""
+"The archive must include a manifest.xml file with meta "
+"information about the\n"
+"files to process inside the archive. All processed files must be unique or "
+"replace existing files explicitely."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:5
+#, php-format
+msgid ""
+"You can learn more about the archive format here."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:6
+msgid ""
+"The form contains some errors. Please correct them to submit the archive."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:7
+#, fuzzy
+msgid "Submit Archive"
+msgstr "Arhiv"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:3
+msgid ""
+"Attention! If you want to delete a specific version of your "
+"software, maybe, someone is depending on this specific version to run his "
+"systems. Are you sure, you will not affect anybody when removing this file?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:4
+#, php-format
+msgid ""
+"Instead of deleting the file, you could mark it as "
+"deprecated."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:5
+#: IDF/gettexttemplates/idf/downloads/view.html.php:4
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:4
+#: IDF/gettexttemplates/idf/issues/view.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:5
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:7
+#, php-format
+msgid "by %%submitter%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:6
+msgid "Delete File"
+msgstr "Izbriši datoteko"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:8
+#: IDF/gettexttemplates/idf/downloads/view.html.php:14
+msgid "Uploaded:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:9
+#: IDF/gettexttemplates/idf/downloads/view.html.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:29
+#: IDF/gettexttemplates/idf/review/view.html.php:27
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:14
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:15
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:17
+msgid "Updated:"
+msgstr "Zadnjič osveženo:"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6
+#: IDF/gettexttemplates/idf/listProjects.html.php:17
+msgid "Downloads:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:11
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:17
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml~.php:6
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:10
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:21
+#: IDF/gettexttemplates/idf/issues/view.html.php:33
+#: IDF/gettexttemplates/idf/project-list.html.php:8
+#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:13
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:16
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:12
+#: IDF/IssueComment.php:157 IDF/Wiki/PageRevision.php:204
+msgid "Labels:"
+msgstr "Oznake:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3
+msgid "A new file is available for download:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:4
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:5
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:8
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:4
+msgid "Hello,"
+msgstr "Živjo,"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:5
+msgid "Project:"
+msgstr "Projekt:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:6
+msgid "Submitted by:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:8
+msgid "Download:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:10
+#: IDF/gettexttemplates/idf/review/view.html.php:31
+#: IDF/gettexttemplates/idf/user/public.html.php:4
+msgid "Description:"
+msgstr "Opis:"
+
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:3
+msgid "A file download was updated:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3
+msgid "Details"
+msgstr "Podrobnosti"
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:3
+#, php-format
+msgid "See the deprecated files."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:5
+msgid "Number of files:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:3
+msgid ""
+"Attention! This file is marked as deprecated, download it "
+"only if you are sure you need this specific version."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:5
+msgid "md5:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:6
+msgid "Changes"
+msgstr "Spremembe"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:7
+msgid "The form contains some errors. Please correct them to update the file."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:8
+msgid "Update File"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:12
+msgid "Remove this file"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:18
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:12
+msgid "Trash"
+msgstr "Smeti"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:13
+msgid "Delete this file"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:3
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:3
+#: IDF/gettexttemplates/idf/faq.html.php:65
+msgid "Here we are, just to help you."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:4
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:4
+#: IDF/gettexttemplates/idf/faq.html.php:66
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:4
+#: IDF/gettexttemplates/idf/index.html.php:4 IDF/Views/Admin.php:77
+#: IDF/Views.php:91
+msgid "Projects"
+msgstr "Projekti"
+
+#: IDF/gettexttemplates/idf/faq.html.php:3
+msgid ""
+"
This is simple:
\n"
+"\n"
+"
Write in the comments \"This is a duplicate of issue 123\" or - if you "
+"are a member of the crew -\n"
+"directly add the \"duplicates\" relation with the value \"123\" below the "
+"comment field. Change \"123\"\n"
+"with the corresponding issue number.
\n"
+"
Change the status of the current issue to Duplicate.
\n"
+"
Submit the changes.
\n"
+""
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:11
+msgid ""
+"You need to create an account on Gravatar, this takes about 5 minutes and is free."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:12
+msgid ""
+"\n"
+"
To embed any previously uploaded resource into your wiki page, you can "
+"use the [[!ResourceName]] syntax.
\n"
+"\n"
+"
The rendering of the resource can then be further fine-tuned:\n"
+"
\n"
+"
[[!ImageResource, align=right, width=200]] renders "
+"\"ImageResource\" right-aligned and scale its width to 200
\n"
+"
[[!TextResource, align=center, width=300, height=300]] "
+"renders \"TextResource\" in a centered, 300 by 300 px iframe
\n"
+"
[[!AnyResource, preview=no]] does not render a preview of "
+"the resource, but only provides a download link (default for binary "
+"resources)
\n"
+"
[[!BinaryResource, title=Download]] renders the download "
+"link of \"BinaryResource\" with an alternative title
\n"
+"
\n"
+"\n"
+"\n"
+"Resources are versioned, just like wiki pages. If you update a resource, old "
+"wiki pages still show the state of the resource\n"
+"at the time when the wiki page was edited. If you specifically want to "
+"update a resource on a page, you therefor need to update\n"
+"the resource at first and then also the page where it is referenced, "
+"otherwise the change won't be visible until the next regular edit. \n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:28
+msgid ""
+"
If you have to publish many files at once for a new release, it is a very "
+"tedious task\n"
+"to upload them one after another and enter meta information like a summary, "
+"a description or additional\n"
+"labels for each of them.
\n"
+"
InDefero therefore supports a special archive format that is basically a "
+"standard zip file which comes with\n"
+"some meta information. These meta information are kept in a special manifest "
+"file, which is distinctly kept from\n"
+"the rest of the files in the archive that should be published.
\n"
+"
Once this archive has been uploaded, InDefero reads in the meta "
+"information, unpacks the other files from\n"
+"the archive and creates new individual downloads for each of them.
"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:36
+#, php-format
+msgid "Learn more about the archive format."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:37
+msgid ""
+"The API (Application Programming Interface) is used to interact with "
+"InDefero with another program. For example, this can be used to create a "
+"desktop program to submit new tickets easily."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:38
+#, php-format
+msgid "Learn more about the API."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:39
+#: IDF/gettexttemplates/idf/faq.html.php:45
+msgid "What are the keyboard shortcuts?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:40
+#: IDF/gettexttemplates/idf/faq.html.php:60
+msgid "How to mark an issue as duplicate?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:41
+#: IDF/gettexttemplates/idf/faq.html.php:61
+msgid "How can I display my head next to my comments?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:42
+#: IDF/gettexttemplates/idf/faq.html.php:62
+msgid "How can I embed images and other resources in my documentation pages?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:43
+#: IDF/gettexttemplates/idf/faq.html.php:63
+msgid "What is this \"Upload Archive\" functionality about?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:44
+#: IDF/gettexttemplates/idf/faq.html.php:64
+msgid "What is the API and how is it used?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:46
+msgid "Shift+h: This help page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:47
+msgid "If you are in a project, you have the following shortcuts:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:48
+msgid "Shift+u: Project updates."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:49
+msgid "Shift+d: Downloads."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:50
+msgid "Shift+o: Documentation."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:51
+msgid "Shift+a: Create a new issue."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:52
+msgid "Shift+i: List of open issues."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:53
+msgid "Shift+m: The issues you submitted."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:54
+msgid "Shift+w: The issues assigned to you."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:55
+msgid "Shift+s: Source."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:56
+msgid "You also have the standard access keys:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:57
+msgid "Alt+1: Home."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:58
+msgid "Alt+2: Skip the menus."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:59
+msgid "Alt+4: Search (when available)."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
+msgid "Forge"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:5
+msgid "People"
+msgstr "Ljudje"
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:6
+msgid "Usher"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/forge/base.html.php:3
+#, fuzzy
+msgid "Frontpage"
+msgstr "stran"
+
+#: IDF/gettexttemplates/idf/gadmin/forge/index.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
You can set up a custom forge page that is used as entry page for the "
+"forge instead of the plain project listing. This page is then also "
+"accessible via the 'Home' link in main menu bar.
Additionally, the following macros are available: \n"
+"
\n"
+"
{projectlist, label=..., order=(name|activity), limit=...}"
+"code> - Renders a project list that can optionally be filtered by label, "
+"ordered by 'name' or 'activity' and / or limited to a specific number of "
+"projects.
\n"
+"
\n"
+"\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:7
+msgid "Project List"
+msgstr "Seznam projektov"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4
+#: IDF/Views/Admin.php:110
+#, fuzzy
+msgid "Project Labels"
+msgstr "Seznam projektov"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:16
+#: IDF/gettexttemplates/idf/listProjects.html.php:6 IDF/Views/Admin.php:186
+msgid "Create Project"
+msgstr "Ustvari nov projekt"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:6
+msgid "Change Project Details"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3
+msgid ""
+"You can select the type of repository you want. In the case of subversion, "
+"you can use optionally a remote repository instead of the local one."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:4
+msgid ""
+"Once you have defined the repository type, you cannot change it"
+"strong>."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:5
+msgid ""
+"\n"
+"
Specify each person by its login. Each person must have already "
+"registered with the given login.
\n"
+"
Separate the logins with commas and/or new lines.
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:14
+msgid ""
+"The form contains some errors. Please correct them to create the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:15
+msgid "Provide at least one owner for the project or use a template."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:15
+msgid "Instructions:"
+msgstr "Navodila:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:3
+#, php-format
+msgid ""
+"Confirmation code to confirm the deletion of the project: \n"
+"%%code%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:5
+msgid ""
+"\n"
+"Attention! Deleting a project is a one second operation\n"
+"with the consequences that all the data related to the \n"
+"project will be deleted.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:10
+msgid ""
+"The form contains some errors. Please correct them to delete the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:11
+msgid "Project Statistics"
+msgstr "Statistika Projekta"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:12
+msgid "Tab"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:13
+msgid "Number"
+msgstr "Številka"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:15
+msgid "Code reviews"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:16
+#: IDF/Views/Project.php:93
+msgid "Commits"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:18
+msgid "Documentation pages"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:20
+msgid "Delete Project"
+msgstr "Izbriši projekt"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:22
+msgid ""
+"For large projects, the suppression can take a while, please be patient."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:3
+msgid "Space Usage Statistics"
+msgstr "Statistika porabe prostora"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:4
+msgid "Repositories:"
+msgstr "Repozitoriji:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:18
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:16
+msgid "Attachments:"
+msgstr "Priponke:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7
+msgid "Database:"
+msgstr "Zbirka podatkov:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:8
+msgid "Total Forge:"
+msgstr "Skupaj razvoj:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:13
+msgid ""
+"The form contains some errors. Please correct them to update the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:14
+msgid "Provide at least one owner for the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:15
+msgid "Update Project"
+msgstr "Uredi projekt"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:20
+msgid "Delete this project"
+msgstr "Izbriši ta projekt"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:21
+msgid "You will be asked to confirm."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3
+#: IDF/Views/Admin.php:264
+msgid "User List"
+msgstr "Seznam uporabnikov"
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:13
+msgid "Update User"
+msgstr "Osveži uporabnika"
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4
+msgid "Create User"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3
+msgid "The form contains some errors. Please correct them to create the user."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:6
+msgid "The user password will be sent by email to the user."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/createuser-email.txt.php:3
+#, php-format
+msgid ""
+"Hello %%user%%,\n"
+"\n"
+"An account on the forge has been created for you by\n"
+"the administrator %%admin%%.\n"
+"\n"
+"Please find here your details to access the forge:\n"
+"\n"
+" Address: %%url%%\n"
+" Login: %%user.login%%\n"
+" Password: %%password%%\n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:3
+#, php-format
+msgid "See not validated users."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:4
+msgid "
You have here an overview of the users registered in the forge.
"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:5
+msgid "Number of users:"
+msgstr "Število uporabnikov:"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:3
+msgid ""
+"If you are changing the email address of the user, you\n"
+"need to ensure that you are providing a valid email\n"
+"address"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:6
+msgid ""
+"If you give the user staff rights, the user will be\n"
+"able to create new projects and update other non staff users.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:9
+msgid "The form contains some errors. Please correct them to update the user."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:4
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:4
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4
+msgid "Login:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:11
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:5
+msgid "Public Profile"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:12
+msgid "Administrative"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3
+msgid "Configured servers"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:4
+#: IDF/Views/Admin.php:421
+msgid "Usher control"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:3
+msgid "address"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:4
+msgid "port"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:5
+msgid "No connections found."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3
+msgid "current server status:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:4
+msgid "startup"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:5
+msgid "shutdown"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:6
+msgid "reload server configuration:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:7
+msgid "reload"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:11
+msgid "Status explanation"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:9
+msgid "active with n total open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:10
+msgid "waiting for new connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:11
+msgid "usher is being shut down, not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:12
+msgid ""
+"usher is shut down, all local servers are stopped and not accepting "
+"connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:3
+msgid "server name"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:4 IDF/Issue.php:99
+#: IDF/Review.php:102
+msgid "status"
+msgstr "stanje"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:5
+msgid "action"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:6
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:6
+msgid "No monotone servers configured."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:7
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:7
+msgid "stop"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:8
+msgid "start"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:9
+msgid "kill"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:10
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:10
+msgid "active connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:12
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:12
+msgid "remote server without open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:13
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:13
+msgid "server with n open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:14
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:14
+msgid "local server running, without open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:15
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:15
+msgid "local server not running, waiting for connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:16
+msgid "local server is about to stop, n connections still open"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:17
+msgid "local server not running, not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:18
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:18
+msgid "usher is shut down, not running and not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.atom.php:3
+#, php-format
+msgid "Personal project feed for %%user%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:6
+msgid "Home"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:3
+#, php-format
+msgid "Attachment to issue %%issue.id%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:5
+#: IDF/gettexttemplates/idf/review/view.html.php:35
+#: IDF/gettexttemplates/idf/source/commit.html.php:23
+#: IDF/gettexttemplates/idf/source/commit.html~.php:22
+#: IDF/gettexttemplates/idf/source/git/file.html.php:6
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:12
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:7
+msgid "Archive"
+msgstr "Arhiv"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:6
+#: IDF/gettexttemplates/idf/source/git/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:10
+msgid "Download this file"
+msgstr "Prenesi to datoteko"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:7
+#: IDF/gettexttemplates/idf/issues/view.html.php:28
+#: IDF/gettexttemplates/idf/review/view.html.php:26
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:13
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:16
+msgid "Created:"
+msgstr "Ustvarjeno:"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:4
+msgid "All Issues"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:5
+msgid "My Issues"
+msgstr "Moje zadeve"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:6
+msgid "My watch list"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:7
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:6
+#: IDF/gettexttemplates/idf/issues/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:5
+#: IDF/gettexttemplates/idf/issues/search.html.php:8
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:5
+msgid "New Issue"
+msgstr "Nova zadeva"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:8
+#: IDF/gettexttemplates/idf/wiki/base.html.php:9
+msgid "Search"
+msgstr "Iskanje"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:9
+msgid "Back to the issue"
+msgstr "Nazaj na zadevo"
+
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:3
+#, php-format
+msgid ""
+"
Website addresses are automatically linked and you can link to another "
+"page in the documentation using double square brackets like that "
+"[[AnotherPage]].
\n"
+"
If you want to embed uploaded resources, use the [[!ResourceName]]"
+"code> syntax for that. This is described more in detail in the FAQ.
\n"
+"
To directly include a file content from the repository, embrace its path "
+"with triple square brackets: [[[my/file.txt]]].
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/feedfragment-resource.xml.php:4
+msgid "Initial creation"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:3
+#, php-format
+msgid "See the deprecated pages."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:5
+msgid "Number of pages:"
+msgstr "Število strani:"
+
+#: IDF/gettexttemplates/idf/wiki/listResources.html.php:4
+#, fuzzy
+msgid "Number of resources:"
+msgstr "Število uporabnikov:"
+
+#: IDF/gettexttemplates/idf/wiki/search.html.php:4
+msgid "Pages found:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:3
+msgid "The form contains some errors. Please correct them to update the page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:6
+msgid "Update Page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:11
+msgid "Delete this page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:4
+#, fuzzy
+msgid "Update Resource"
+msgstr "Osveži uporabnika"
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:9
+#, fuzzy
+msgid "Delete this resource"
+msgstr "Izbriši ta projekt"
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:3
+msgid ""
+"Attention! This page is marked as deprecated, \n"
+"use it as reference only if you are sure you need these specific information."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:5
+#, php-format
+msgid ""
+"You are looking at an old revision of the page \n"
+"%%page.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:10
+msgid "Table of Content"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:13
+msgid "Delete this revision"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:3
+#, php-format
+msgid ""
+"You are looking at an old revision of the resource \n"
+"%%resource.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:14
+#, fuzzy
+msgid "Page Usage"
+msgstr "Naslov strani"
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:15
+msgid "This resource is not used on any pages yet."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:3
+msgid "A new documentation page has been created:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:14
+msgid "Documentation page:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3
+msgid "The following documentation page has been updated:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7
+msgid "Updated by:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13
+msgid "New content:"
+msgstr ""
+
+#: IDF/Issue.php:76
+msgid "owner"
+msgstr "lastnik"
+
+#: IDF/Issue.php:84 IDF/Wiki/Page.php:86
+msgid "interested users"
+msgstr ""
+
+#: IDF/Issue.php:85
+msgid ""
+"Interested users will get an email notification when the issue is changed."
+msgstr ""
+
+#: IDF/Issue.php:92 IDF/Project.php:94 IDF/Review.php:95 IDF/Upload.php:99
+#: IDF/Wiki/Page.php:94
+msgid "labels"
+msgstr "oznake"
+
+#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114
+#: IDF/Upload.php:118 IDF/Wiki/Page.php:106 IDF/Wiki/Resource.php:101
+msgid "modification date"
+msgstr "datum spremembe"
+
+#: IDF/Issue.php:212 IDF/IssueComment.php:143
+#, php-format
+msgid ""
+"Issue %3$d, %4$s"
+msgstr ""
+
+#: IDF/Issue.php:214
+#, php-format
+msgid "Creation of issue %3$d, by %4$s"
+msgstr ""
+
+#: IDF/Issue.php:224
+#, php-format
+msgid "%1$s: Issue %2$d created - %3$s"
+msgstr ""
+
+#: IDF/Issue.php:307
+#, php-format
+msgid "Issue %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Issue.php:311
+#, php-format
+msgid "Updated Issue %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/IssueComment.php:51 IDF/IssueRelation.php:47
+msgid "issue"
+msgstr "zadeva"
+
+#: IDF/IssueComment.php:58 IDF/IssueFile.php:49 IDF/Review/Comment.php:62
+#: IDF/Review/FileComment.php:49 IDF/Review/FileComment.php:69
+msgid "comment"
+msgstr "komentar"
+
+#: IDF/IssueComment.php:72 IDF/Review/Comment.php:75 IDF/Upload.php:63
+#: IDF/Wiki/PageRevision.php:85
+msgid "changes"
+msgstr "spremembe"
+
+#: IDF/IssueComment.php:73
+msgid "Serialized array of the changes in the issue."
+msgstr ""
+
+#: IDF/IssueComment.php:180
+#, php-format
+msgid "Comment on issue %3$d, by %4$s"
+msgstr ""
+
+#: IDF/IssueComment.php:191
+#, php-format
+msgid "%1$s: Comment on issue %2$d - %3$s"
+msgstr ""
+
+#: IDF/IssueFile.php:64
+msgid "file name"
+msgstr "ime datoteke"
+
+#: IDF/IssueFile.php:70
+msgid "the file"
+msgstr "Datoteka "
+
+#: IDF/IssueFile.php:76
+msgid "file size"
+msgstr "velikost datoteke"
+
+#: IDF/IssueFile.php:84
+msgid "type"
+msgstr "tip"
+
+#: IDF/IssueFile.php:86
+msgid "Image"
+msgstr "Slika"
+
+#: IDF/IssueFile.php:87
+msgid "Other"
+msgstr "Ostalo"
+
+#: IDF/IssueRelation.php:54
+msgid "verb"
+msgstr ""
+
+#: IDF/IssueRelation.php:61
+msgid "other issue"
+msgstr ""
+
+#: IDF/Key.php:55
+msgid "public key"
+msgstr ""
+
+#: IDF/Key.php:90
+msgid "Invalid or unknown key data detected."
+msgstr ""
+
+#: IDF/Plugin/SyncMercurial.php:78 IDF/Plugin/SyncSvn.php:81
+#, php-format
+msgid "The repository %s already exists."
+msgstr ""
+
+#: IDF/Plugin/SyncMercurial.php:142
+#, php-format
+msgid "%s does not exist or is not writable."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:107 IDF/Plugin/SyncMonotone.php:492
+msgid "\"mtn_repositories\" must be defined in your configuration file"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:114 IDF/Plugin/SyncMonotone.php:482
+msgid "\"mtn_usher_conf\" does not exist or is not writable"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:121
+#, php-format
+msgid "Could not find mtn-post-push script \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:155
+#, php-format
+msgid "The configuration file \"%s\" is missing"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:164
+#, php-format
+msgid "The project path \"%s\" already exists"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:170
+#, php-format
+msgid "The project path \"%s\" could not be created"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:208
+#, php-format
+msgid "The key directory \"%s\" could not be created"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:227
+#, php-format
+msgid "Could not parse key information: %s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:265
+#, php-format
+msgid "Could not create configuration directory \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:275
+#, php-format
+msgid "Could not create symlink for configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:293
+#, php-format
+msgid "Could not write configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:309 IDF/Plugin/SyncMonotone.php:525
+#, php-format
+msgid "Could not parse usher configuration in \"%1$s\": %2$s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:320
+#, php-format
+msgid "usher configuration already contains a server entry named \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:345 IDF/Plugin/SyncMonotone.php:546
+#, php-format
+msgid "Could not write usher configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:395
+#, php-format
+msgid "Could not write write-permissions file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:420
+#, php-format
+msgid "Could not write read-permissions file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:438
+#, php-format
+msgid "Could not remove symlink \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:446
+#, php-format
+msgid "Could not create symlink \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:500
+#, php-format
+msgid "One or more paths underneath %s could not be deleted"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:512
+#, php-format
+msgid "Could not delete client private key \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:599 IDF/Plugin/SyncMonotone.php:718
+#, php-format
+msgid "Could not parse read-permissions for project \"%1$s\": %2$s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:643 IDF/Plugin/SyncMonotone.php:741
+#, php-format
+msgid "Could not write read-permissions for project \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:657 IDF/Plugin/SyncMonotone.php:760
+#, php-format
+msgid "Could not write write-permissions file for project \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:813
+msgid "\"mtn_repositories\" must be defined in your configuration file."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:820
+#, php-format
+msgid "The project path %s does not exists."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:838
+#, php-format
+msgid "The command \"%s\" could not be executed."
+msgstr ""
+
+#: IDF/Project.php:62 IDF/Tag.php:66
+msgid "name"
+msgstr "ime"
+
+#: IDF/Project.php:69
+msgid "short name"
+msgstr "kratko ime"
+
+#: IDF/Project.php:70
+msgid ""
+"Used in the URL to access the project, must be short with only letters and "
+"numbers."
+msgstr ""
+
+#: IDF/Project.php:78
+msgid "short description"
+msgstr "Dostopen opis"
+
+#: IDF/Project.php:86 IDF/Review/Patch.php:74
+msgid "description"
+msgstr "opis"
+
+#: IDF/Project.php:87
+msgid "The description can be extended using the Markdown syntax."
+msgstr ""
+
+#: IDF/Project.php:100
+msgid "private"
+msgstr "zasebno"
+
+#: IDF/Project.php:108
+msgid "current project activity"
+msgstr ""
+
+#: IDF/Project.php:159
+#, php-format
+msgid "Project \"%s\" not found."
+msgstr ""
+
+#: IDF/ProjectActivity.php:56
+#, fuzzy
+msgid "date"
+msgstr "Zadnjič posodobljeno"
+
+#: IDF/Review/Comment.php:55 IDF/Review/Patch.php:80
+msgid "patch"
+msgstr ""
+
+#: IDF/Review/Comment.php:83
+msgid "vote"
+msgstr ""
+
+#: IDF/Review/Comment.php:139 IDF/Review/Patch.php:151
+#, php-format
+msgid ""
+"Review %3$d, %4$s"
+msgstr ""
+
+#: IDF/Review/Comment.php:141
+#, php-format
+msgid "Update of review %3$d, by %4$s"
+msgstr ""
+
+#: IDF/Review/Comment.php:151
+#, php-format
+msgid "%1$s: Updated review %2$d - %3$s"
+msgstr ""
+
+#: IDF/Review/Comment.php:222
+#, php-format
+msgid "Updated Code Review %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Review/Patch.php:52
+msgid "review"
+msgstr ""
+
+#: IDF/Review/Patch.php:67
+msgid "commit"
+msgstr ""
+
+#: IDF/Review/Patch.php:153
+#, php-format
+msgid "Creation of review %3$d, by %4$s"
+msgstr ""
+
+#: IDF/Review/Patch.php:163
+#, php-format
+msgid "%1$s: Creation of Review %2$d - %3$s"
+msgstr ""
+
+#: IDF/Review/Patch.php:208
+#, php-format
+msgid "New Code Review %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Scm/Git.php:309 IDF/Scm/Mercurial.php:199
+#, php-format
+msgid "Folder %1$s not found in commit %2$s."
+msgstr ""
+
+#: IDF/Scm/Git.php:433 IDF/Scm/Mercurial.php:216
+#, php-format
+msgid "Not a valid tree: %s."
+msgstr ""
+
+#: IDF/Scm/Monotone/Stdio.php:81
+msgid "Monotone client key name or hash not in project conf."
+msgstr ""
+
+#: IDF/Scm/Monotone/Stdio.php:89
+#, php-format
+msgid "The key directory %s could not be created."
+msgstr ""
+
+#: IDF/Scm/Monotone/Stdio.php:100
+#, php-format
+msgid "Could not write client key \"%s\""
+msgstr ""
+
+#: IDF/Search/Occ.php:33
+msgid "occurrence"
+msgstr ""
+
+#: IDF/Search/Occ.php:49
+msgid "word"
+msgstr ""
+
+#: IDF/Search/Occ.php:75
+msgid "occurrences"
+msgstr ""
+
+#: IDF/Search/Occ.php:81
+msgid "ponderated occurrence"
+msgstr ""
+
+#: IDF/Tag.php:59
+msgid "tag class"
+msgstr ""
+
+#: IDF/Tag.php:60
+msgid "The class of the tag."
+msgstr ""
+
+#: IDF/Tag.php:73
+msgid "lcname"
+msgstr ""
+
+#: IDF/Tag.php:74
+msgid "Lower case version of the name for fast searching."
+msgstr ""
+
+#: IDF/Template/Markdown.php:84
+msgid "Create this documentation page"
+msgstr ""
+
+#: IDF/Template/Markdown.php:97
+msgid "You are not allowed to access the wiki."
+msgstr ""
+
+#: IDF/Template/Markdown.php:106
+msgid "The wiki resource has not been found."
+msgstr ""
+
+#: IDF/Template/Markdown.php:113
+msgid "The wiki resource has not been found. Create it!"
+msgstr ""
+
+#: IDF/Template/Markdown.php:146
+msgid "This revision of the resource is no longer available."
+msgstr ""
+
+#: IDF/Template/ShowUser.php:51
+msgid "Anonymous"
+msgstr ""
+
+#: IDF/Template/ShowUser.php:54
+msgid "Me"
+msgstr "Jaz"
+
+#: IDF/Timeline/Paginator.php:49
+msgid "Today"
+msgstr "Danes"
+
+#: IDF/Upload.php:70
+msgid "file"
+msgstr "datoteka"
+
+#: IDF/Upload.php:71
+msgid "The path is relative to the upload path."
+msgstr ""
+
+#: IDF/Upload.php:78 IDF/Wiki/ResourceRevision.php:71
+msgid "file size in bytes"
+msgstr "Velikost v bajtih"
+
+#: IDF/Upload.php:84
+msgid "MD5"
+msgstr ""
+
+#: IDF/Upload.php:106
+msgid "number of downloads"
+msgstr "število prenosov"
+
+#: IDF/Upload.php:201
+#, php-format
+msgid "Download %2$d, %3$s"
+msgstr ""
+
+#: IDF/Upload.php:204
+#, php-format
+msgid "Addition of download %2$d, by %3$s"
+msgstr ""
+
+#: IDF/Upload.php:214
+#, php-format
+msgid "%1$s: Download %2$d added - %3$s"
+msgstr ""
+
+#: IDF/Upload.php:301
+#, php-format
+msgid "New download - %1$s (%2$s)"
+msgstr ""
+
+#: IDF/Upload.php:305
+#, php-format
+msgid "Updated download - %1$s (%2$s)"
+msgstr ""
+
+#: IDF/Views/Admin.php:47
+msgid "The forge configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Admin.php:80
+msgid "This table shows the projects in the forge."
+msgstr ""
+
+#: IDF/Views/Admin.php:85
+msgid "Short Name"
+msgstr "Kratko ime"
+
+#: IDF/Views/Admin.php:87
+msgid "Repository Size"
+msgstr "Velikost repozitorija"
+
+#: IDF/Views/Admin.php:93
+msgid "No projects were found."
+msgstr ""
+
+#: IDF/Views/Admin.php:116
+msgid "The label configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Admin.php:147 IDF/Views/Admin.php:314 IDF/Views/Wiki.php:484
+#: IDF/Views/Wiki.php:536
+#, php-format
+msgid "Update %s"
+msgstr ""
+
+#: IDF/Views/Admin.php:155 IDF/Views/Project.php:304
+msgid "The project has been updated."
+msgstr ""
+
+#: IDF/Views/Admin.php:192
+msgid "The project has been created."
+msgstr ""
+
+#: IDF/Views/Admin.php:223
+#, php-format
+msgid "Delete %s Project"
+msgstr ""
+
+#: IDF/Views/Admin.php:230
+msgid "The project has been deleted."
+msgstr ""
+
+#: IDF/Views/Admin.php:260
+msgid "Not Validated User List"
+msgstr ""
+
+#: IDF/Views/Admin.php:268
+msgid "This table shows the users in the forge."
+msgstr ""
+
+#: IDF/Views/Admin.php:272
+msgid "login"
+msgstr ""
+
+#: IDF/Views/Admin.php:275
+msgid "Admin"
+msgstr "Administrator"
+
+#: IDF/Views/Admin.php:277
+msgid "Last Login"
+msgstr "Zadnja prijava"
+
+#: IDF/Views/Admin.php:284
+msgid "No users were found."
+msgstr "Nisem našel uporabnikov!"
+
+#: IDF/Views/Admin.php:321
+msgid "You do not have the rights to update this user."
+msgstr ""
+
+#: IDF/Views/Admin.php:339
+msgid "The user has been updated."
+msgstr ""
+
+#: IDF/Views/Admin.php:372
+#, php-format
+msgid "The user %s has been created."
+msgstr ""
+
+#: IDF/Views/Admin.php:379
+msgid "Add User"
+msgstr ""
+
+#: IDF/Views/Admin.php:395
+msgid "Usher management"
+msgstr ""
+
+#: IDF/Views/Admin.php:432
+msgid "Usher configuration has been reloaded"
+msgstr ""
+
+#: IDF/Views/Admin.php:436
+msgid "Usher has been shut down"
+msgstr ""
+
+#: IDF/Views/Admin.php:441
+msgid "Usher has been started up"
+msgstr ""
+
+#: IDF/Views/Admin.php:479
+#, php-format
+msgid "The server \"%s\" has been started"
+msgstr ""
+
+#: IDF/Views/Admin.php:483
+#, php-format
+msgid "The server \"%s\" has been stopped"
+msgstr ""
+
+#: IDF/Views/Admin.php:488
+#, php-format
+msgid "The server \"%s\" has been killed"
+msgstr ""
+
+#: IDF/Views/Admin.php:508
+#, php-format
+msgid "Open connections for \"%s\""
+msgstr ""
+
+#: IDF/Views/Admin.php:513
+#, php-format
+msgid "no connections for server \"%s\""
+msgstr ""
+
+#: IDF/Views/Admin.php:534
+msgid "Yes"
+msgstr "Da"
+
+#: IDF/Views/Admin.php:534
+msgid "No"
+msgstr "Ne"
+
+#: IDF/Views/Download.php:45
+#, php-format
+msgid "%s Downloads"
+msgstr ""
+
+#: IDF/Views/Download.php:51
+msgid "This table shows the files to download."
+msgstr ""
+
+#: IDF/Views/Download.php:67 IDF/Views/Download.php:349
+msgid "Uploaded"
+msgstr ""
+
+#: IDF/Views/Download.php:71 IDF/Views/Download.php:353
+msgid "No downloads were found."
+msgstr ""
+
+#: IDF/Views/Download.php:94
+#, php-format
+msgid "Download %s"
+msgstr ""
+
+#: IDF/Views/Download.php:111
+#, php-format
+msgid "The file %2$s has been updated."
+msgstr ""
+
+#: IDF/Views/Download.php:144
+#, php-format
+msgid "Delete Download %s"
+msgstr ""
+
+#: IDF/Views/Download.php:177
+msgid "The file has been deleted."
+msgstr ""
+
+#: IDF/Views/Download.php:244
+#, php-format
+msgid "The file has been uploaded."
+msgstr ""
+
+#: IDF/Views/Download.php:271
+msgid "New Downloads from Archive"
+msgstr ""
+
+#: IDF/Views/Download.php:278
+msgid "The archive has been uploaded and processed."
+msgstr ""
+
+#: IDF/Views/Download.php:331
+#, php-format
+msgid "%1$s Downloads with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Download.php:341
+#, php-format
+msgid "This table shows the downloads with label %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:41
+#, php-format
+msgid "%s Open Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:382 IDF/Views/User.php:75
+msgid "This table shows the open issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:61 IDF/Views/Issue.php:220 IDF/Views/Issue.php:301
+#: IDF/Views/Issue.php:390 IDF/Views/Issue.php:542 IDF/Views/Issue.php:765
+#: IDF/Views/Issue.php:824 IDF/Views/Review.php:57 IDF/Views/User.php:81
+msgid "Id"
+msgstr "Id"
+
+#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:223 IDF/Views/Issue.php:305
+#: IDF/Views/Issue.php:393 IDF/Views/Issue.php:545 IDF/Views/Issue.php:768
+#: IDF/Views/Issue.php:827 IDF/Views/Review.php:60 IDF/Views/User.php:85
+msgid "Last Updated"
+msgstr ""
+
+#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:227 IDF/Views/Issue.php:309
+#: IDF/Views/Issue.php:397 IDF/Views/Issue.php:549 IDF/Views/Issue.php:772
+#: IDF/Views/Issue.php:831
+msgid "No issues were found."
+msgstr ""
+
+#: IDF/Views/Issue.php:113
+msgid "Not assigned"
+msgstr ""
+
+#: IDF/Views/Issue.php:149
+#, php-format
+msgid "Summary of tracked issues in %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:194
+#, php-format
+msgid "Watch List: Closed Issues for %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:195
+#, php-format
+msgid "This table shows the closed issues in your watch list for %s project."
+msgstr ""
+
+#: IDF/Views/Issue.php:200
+#, php-format
+msgid "Watch List: Open Issues for %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:201
+#, php-format
+msgid "This table shows the open issues in your watch list for %s project."
+msgstr ""
+
+#: IDF/Views/Issue.php:277
+msgid "Watch List: Closed Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:278
+msgid "This table shows the closed issues in your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:283
+msgid "Watch List: Open Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:284
+msgid "This table shows the open issues in your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:303 IDF/Views/User.php:82
+msgid "Project"
+msgstr "Projekt"
+
+#: IDF/Views/Issue.php:344
+#, fuzzy, php-format
+msgid "%1$s %2$s Submitted %3$s Issues"
+msgstr "Poslanih zadev:"
+
+#: IDF/Views/Issue.php:348
+#, php-format
+msgid "%1$s %2$s Closed Submitted %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:352
+#, php-format
+msgid "%1$s %2$s Closed Working %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:356
+#, php-format
+msgid "%1$s %2$s Working %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:417
+msgid "Submit a new issue"
+msgstr "Pošiljanje nove zadeve"
+
+#: IDF/Views/Issue.php:433
+#, php-format
+msgid "Issue %2$d has been created."
+msgstr ""
+
+#: IDF/Views/Issue.php:490
+#, php-format
+msgid "Search issues - %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:492
+#, php-format
+msgid "Search closed issues - %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:539
+msgid "This table shows the found issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:604
+#, php-format
+msgid "Issue %2$d: %3$s"
+msgstr ""
+
+#: IDF/Views/Issue.php:628
+#, php-format
+msgid "Issue %2$d has been updated."
+msgstr ""
+
+#: IDF/Views/Issue.php:718
+#, php-format
+msgid "View %s"
+msgstr "Poglej %s"
+
+#: IDF/Views/Issue.php:745
+#, php-format
+msgid "%s Closed Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:755
+msgid "This table shows the closed issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:798
+#, php-format
+msgid "%1$s Issues with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Issue.php:801
+#, php-format
+msgid "%1$s Closed Issues with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Issue.php:814
+#, php-format
+msgid "This table shows the issues with label %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:937
+msgid "The issue has been removed from your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:940
+msgid "The issue has been added to your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:1037
+msgid "On your watch list."
+msgstr ""
+
+#: IDF/Views/Project.php:95
+msgid "Issues and Comments"
+msgstr ""
+
+#: IDF/Views/Project.php:99
+msgid "Documents"
+msgstr ""
+
+#: IDF/Views/Project.php:101
+msgid "Reviews and Patches"
+msgstr ""
+
+#: IDF/Views/Project.php:180
+msgid "This table shows the project updates."
+msgstr ""
+
+#: IDF/Views/Project.php:191
+msgid "Change"
+msgstr "Spremeni"
+
+#: IDF/Views/Project.php:195
+msgid "No changes were found."
+msgstr ""
+
+#: IDF/Views/Project.php:296
+#, php-format
+msgid "%s Project Summary"
+msgstr ""
+
+#: IDF/Views/Project.php:335
+#, php-format
+msgid "%s Issue Tracking Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:344
+msgid "The issue tracking configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:381
+#, php-format
+msgid "%s Downloads Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:393
+msgid "The downloads configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:428
+#, php-format
+msgid "%s Documentation Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:437
+msgid "The documentation configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:471
+#, php-format
+msgid "%s Project Members"
+msgstr ""
+
+#: IDF/Views/Project.php:480
+msgid "The project membership has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:503
+#, php-format
+msgid "%s Tabs Access Rights"
+msgstr ""
+
+#: IDF/Views/Project.php:517
+msgid ""
+"The project tabs access rights and notification settings have been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:566
+#, php-format
+msgid "%s Source"
+msgstr ""
+
+#: IDF/Views/Project.php:580
+msgid "The project source configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Review.php:41
+#, php-format
+msgid "%s Code Reviews"
+msgstr ""
+
+#: IDF/Views/Review.php:48
+msgid "This table shows the latest reviews."
+msgstr ""
+
+#: IDF/Views/Review.php:64
+msgid "No reviews were found."
+msgstr ""
+
+#: IDF/Views/Review.php:94
+#, php-format
+msgid "The code review %2$d has been created."
+msgstr ""
+
+#: IDF/Views/Review.php:140
+#, php-format
+msgid "Review %2$d: %3$s"
+msgstr ""
+
+#: IDF/Views/Review.php:160
+#, php-format
+msgid "Your code review %2$d has been published."
+msgstr ""
+
+#: IDF/Views/Source.php:40
+#, php-format
+msgid "%s Source Help"
+msgstr ""
+
+#: IDF/Views/Source.php:58
+#, php-format
+msgid "%s Invalid Revision"
+msgstr ""
+
+#: IDF/Views/Source.php:82
+#, php-format
+msgid "%s Ambiguous Revision"
+msgstr ""
+
+#: IDF/Views/Source.php:107
+#, php-format
+msgid "%1$s %2$s Change Log"
+msgstr ""
+
+#: IDF/Views/Source.php:153 IDF/Views/Source.php:234 IDF/Views/Source.php:362
+#, php-format
+msgid "%1$s %2$s Source Tree"
+msgstr ""
+
+#: IDF/Views/Source.php:310
+#, php-format
+msgid "%s Commit Details"
+msgstr ""
+
+#: IDF/Views/Source.php:311
+#, php-format
+msgid "%1$s Commit Details - %2$s"
+msgstr ""
+
+#: IDF/Views/User.php:59
+msgid "Your Dashboard - Working Issues"
+msgstr ""
+
+#: IDF/Views/User.php:62
+msgid "Your Dashboard - Submitted Issues"
+msgstr ""
+
+#: IDF/Views/User.php:89
+msgid "No issues are assigned to you, yeah!"
+msgstr ""
+
+#: IDF/Views/User.php:89
+msgid "All the issues you submitted are fixed, yeah!"
+msgstr ""
+
+#: IDF/Views/User.php:121
+msgid "Your personal information has been updated."
+msgstr ""
+
+#: IDF/Views/User.php:133
+msgid "Your Account"
+msgstr "Vaš račun"
+
+#: IDF/Views/User.php:157
+msgid "The public key has been deleted."
+msgstr ""
+
+#: IDF/Views/User.php:177
+msgid "The address has been deleted."
+msgstr ""
+
+#: IDF/Views/User.php:200
+msgid "Confirm The Email Change"
+msgstr ""
+
+#: IDF/Views/User.php:232
+#, php-format
+msgid "Your new email address \"%s\" has been validated. Thank you!"
+msgstr ""
+
+#: IDF/Views/Wiki.php:41
+#, php-format
+msgid "%s Documentation"
+msgstr ""
+
+#: IDF/Views/Wiki.php:48
+msgid "This table shows the documentation pages."
+msgstr ""
+
+#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:144 IDF/Views/Wiki.php:185
+msgid "Page Title"
+msgstr "Naslov strani"
+
+#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:103 IDF/Views/Wiki.php:146
+#: IDF/Views/Wiki.php:187
+msgid "Updated"
+msgstr "Zadnjič posodobljeno"
+
+#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:191
+msgid "No documentation pages were found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:88
+#, fuzzy, php-format
+msgid "%s Documentation Resources"
+msgstr "Dokumentacija"
+
+#: IDF/Views/Wiki.php:94
+msgid "This table shows the resources that can be used on documentation pages."
+msgstr ""
+
+#: IDF/Views/Wiki.php:100
+#, fuzzy
+msgid "Resource Title"
+msgstr "Drevo izvorne kode"
+
+#: IDF/Views/Wiki.php:107
+#, fuzzy
+msgid "No resources were found."
+msgstr "Nisem našel uporabnikov!"
+
+#: IDF/Views/Wiki.php:128
+#, php-format
+msgid "Documentation Search - %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:139
+msgid "This table shows the pages found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:150
+msgid "No pages were found."
+msgstr "Nisem našel strani."
+
+#: IDF/Views/Wiki.php:169
+#, php-format
+msgid "%1$s Documentation Pages with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:179
+#, php-format
+msgid "This table shows the documentation pages with label %s."
+msgstr ""
+
+#: IDF/Views/Wiki.php:222
+#, php-format
+msgid "The page %2$s has been created."
+msgstr ""
+
+#: IDF/Views/Wiki.php:265
+#, php-format
+msgid "The resource %2$s has been created."
+msgstr ""
+
+#: IDF/Views/Wiki.php:409 IDF/Views/Wiki.php:448
+msgid "The old revision has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:415 IDF/Views/Wiki.php:454
+#, php-format
+msgid "Delete Old Revision of %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:496
+#, php-format
+msgid "The page %2$s has been updated."
+msgstr ""
+
+#: IDF/Views/Wiki.php:548
+#, php-format
+msgid "The resource %2$s has been updated."
+msgstr ""
+
+#: IDF/Views/Wiki.php:583
+msgid "The documentation page has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:591
+#, php-format
+msgid "Delete Page %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:623
+msgid "The documentation resource has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:631
+#, php-format
+msgid "Delete Resource %s"
+msgstr ""
+
+#: IDF/Views.php:173 IDF/Views.php:199
+msgid "Confirm Your Account Creation"
+msgstr ""
+
+#: IDF/Views.php:219
+msgid "Welcome! You can now participate in the life of your project of choice."
+msgstr ""
+
+#: IDF/Views.php:245 IDF/Views.php:269 IDF/Views.php:310
+msgid "Password Recovery"
+msgstr "Ponastavitev gesla"
+
+#: IDF/Views.php:289
+msgid ""
+"Welcome back! Next time, you can use your broswer options to remember the "
+"password."
+msgstr ""
+
+#: IDF/Views.php:331
+msgid "Here to Help You!"
+msgstr "Tukaj da pomagamo!"
+
+#: IDF/Views.php:347
+msgid "InDefero Upload Archive Format"
+msgstr ""
+
+#: IDF/Views.php:363
+msgid "InDefero API (Application Programming Interface)"
+msgstr ""
+
+#: IDF/Wiki/Page.php:62 IDF/Wiki/Resource.php:64
+msgid "title"
+msgstr "naslov"
+
+#: IDF/Wiki/Page.php:63
+msgid ""
+"The title of the page must only contain letters, digits or the dash "
+"character. For example: My-new-Wiki-Page."
+msgstr ""
+
+#: IDF/Wiki/Page.php:71
+msgid "A one line description of the page content."
+msgstr ""
+
+#: IDF/Wiki/Page.php:196 IDF/Wiki/PageRevision.php:196
+#, php-format
+msgid "%2$s, %3$s"
+msgstr ""
+
+#: IDF/Wiki/Page.php:198
+#, php-format
+msgid "Creation of page %2$s, by %3$s"
+msgstr ""
+
+#: IDF/Wiki/Page.php:208
+#, php-format
+msgid "%1$s: Documentation page %2$s added - %3$s"
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:48
+msgid "page"
+msgstr "stran"
+
+#: IDF/Wiki/PageRevision.php:66 IDF/Wiki/ResourceRevision.php:64
+msgid "A one line description of the changes."
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:72
+msgid "content"
+msgstr "vsebina"
+
+#: IDF/Wiki/PageRevision.php:218 IDF/Wiki/ResourceRevision.php:311
+#, php-format
+msgid "Change of %2$s, by %3$s"
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:231
+#, php-format
+msgid "%1$s: Documentation page %2$s updated - %3$s"
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:293
+#, php-format
+msgid "New Documentation Page %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:297
+#, php-format
+msgid "Documentation Page Changed %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Wiki/Resource.php:65
+msgid ""
+"The title of the resource must only contain letters, digits, dots or the "
+"dash character. For example: my-resource.png."
+msgstr ""
+
+#: IDF/Wiki/Resource.php:72
+msgid "MIME media type"
+msgstr ""
+
+#: IDF/Wiki/Resource.php:73
+msgid "The MIME media type of the resource."
+msgstr ""
+
+#: IDF/Wiki/Resource.php:81
+msgid "A one line description of the resource."
+msgstr ""
+
+#: IDF/Wiki/Resource.php:176 IDF/Wiki/ResourceRevision.php:308
+#, php-format
+msgid "%2$s, %3$s"
+msgstr ""
+
+#: IDF/Wiki/Resource.php:178
+#, php-format
+msgid "Creation of resource %2$s, by %3$s"
+msgstr ""
+
+#: IDF/Wiki/Resource.php:188
+#, php-format
+msgid "%1$s: Documentation resource %2$s added - %3$s"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:47
+#, fuzzy
+msgid "resource"
+msgstr "Izvorna koda"
+
+#: IDF/Wiki/ResourceRevision.php:78
+msgid "File extension"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:79
+msgid "The file extension of the uploaded resource."
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:94
+msgid "page usage"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:116
+#, php-format
+msgid "id %d: %s"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:263
+#, fuzzy, php-format
+msgid "Download (%s)"
+msgstr "Prenosi"
+
+#: IDF/Wiki/ResourceRevision.php:270
+msgid "View resource details"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:324
+#, php-format
+msgid "%1$s: Documentation resource %2$s updated - %3$s"
+msgstr ""
+
+#~ msgid "Your mail"
+#~ msgstr "Vaš e-naslov"
diff --git a/indefero/src/IDF/locale/tr/idf.po b/indefero/src/IDF/locale/tr/idf.po
new file mode 100644
index 0000000..acd40c8
--- /dev/null
+++ b/indefero/src/IDF/locale/tr/idf.po
@@ -0,0 +1,5396 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+# Ozan , 2011.
+msgid ""
+msgstr ""
+"Project-Id-Version: Indefero\n"
+"Report-Msgid-Bugs-To: http://projects.ceondo.com/p/indefero/issues/\n"
+"POT-Creation-Date: 2012-03-22 01:16+0100\n"
+"PO-Revision-Date: 2011-10-31 14:56+0000\n"
+"Last-Translator: uobasar \n"
+"Language-Team: LANGUAGE \n"
+"Language: tr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0\n"
+
+#: IDF/Commit.php:55 IDF/Conf.php:54 IDF/Issue.php:52
+#: IDF/ProjectActivity.php:49 IDF/Review.php:65 IDF/Search/Occ.php:69
+#: IDF/Tag.php:52 IDF/Upload.php:49 IDF/Wiki/Page.php:54
+#: IDF/Wiki/Resource.php:56
+msgid "project"
+msgstr "proje"
+
+#: IDF/Commit.php:63 IDF/Issue.php:67 IDF/IssueComment.php:65
+#: IDF/IssueFile.php:57 IDF/IssueRelation.php:69 IDF/Review/Comment.php:69
+#: IDF/Review.php:80 IDF/Upload.php:91 IDF/Wiki/Page.php:78
+#: IDF/Wiki/PageRevision.php:79 IDF/Wiki/Resource.php:88
+#: IDF/Wiki/ResourceRevision.php:86
+msgid "submitter"
+msgstr ""
+
+#: IDF/Commit.php:87 IDF/Issue.php:60 IDF/Review/Patch.php:60
+#: IDF/Review.php:73 IDF/Upload.php:57 IDF/Wiki/Page.php:70
+#: IDF/Wiki/PageRevision.php:65 IDF/Wiki/Resource.php:80
+#: IDF/Wiki/ResourceRevision.php:63
+msgid "summary"
+msgstr "özet"
+
+#: IDF/Commit.php:93
+msgid "changelog"
+msgstr ""
+
+#: IDF/Commit.php:100 IDF/Issue.php:105 IDF/IssueComment.php:79
+#: IDF/IssueFile.php:96 IDF/IssueRelation.php:75 IDF/Review/Comment.php:90
+#: IDF/Review/FileComment.php:75 IDF/Review/Patch.php:87 IDF/Review.php:108
+#: IDF/Upload.php:112 IDF/Wiki/Page.php:100 IDF/Wiki/PageRevision.php:92
+#: IDF/Wiki/Resource.php:95 IDF/Wiki/ResourceRevision.php:101
+msgid "creation date"
+msgstr "oluşturulma tarihi"
+
+#: IDF/Commit.php:238
+#, php-format
+msgid "Commit %1$s, by %2$s"
+msgstr ""
+
+#: IDF/Commit.php:337
+#, php-format
+msgid "New Commit %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Conf.php:61 IDF/Gconf.php:73
+msgid "key"
+msgstr "anahtar"
+
+#: IDF/Conf.php:67 IDF/Gconf.php:79 IDF/ProjectActivity.php:62
+msgid "value"
+msgstr "değer"
+
+#: IDF/Diff.php:460
+msgid "Old"
+msgstr ""
+
+#: IDF/Diff.php:460
+msgid "New"
+msgstr ""
+
+#: IDF/EmailAddress.php:49 IDF/Key.php:49
+msgid "user"
+msgstr "kullanıcı"
+
+#: IDF/EmailAddress.php:55
+msgid "email"
+msgstr ""
+
+#: IDF/Form/Admin/ForgeConf.php:34
+msgid "Custom forge page enabled"
+msgstr ""
+
+#: IDF/Form/Admin/ForgeConf.php:39 IDF/Form/WikiPageCreate.php:80
+#: IDF/Form/WikiPageUpdate.php:72
+msgid "Content"
+msgstr ""
+
+#: IDF/Form/Admin/LabelConf.php:40
+msgid "Predefined project labels"
+msgstr ""
+
+#: IDF/Form/Admin/LabelConf.php:55
+#, php-format
+msgid ""
+"The label \"%s\" is invalid: A label must only consist of alphanumeric "
+"characters and dashes, and can optionally contain a \":\" with a group "
+"prefix."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:600
+msgid "git"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:601
+msgid "Subversion"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:602
+msgid "mercurial"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:603
+msgid "monotone"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44
+#: IDF/Form/ProjectConf.php:39 IDF/Views/Admin.php:86 IDF/Views/Admin.php:273
+msgid "Name"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:101
+#: IDF/gettexttemplates/idf/base-full.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html~.php:5
+#: IDF/gettexttemplates/idf/base.html.php:5
+#: IDF/gettexttemplates/idf/base.html~.php:5
+#: IDF/gettexttemplates/idf/main-menu.html.php:9
+#: IDF/gettexttemplates/idf/project-list.html.php:5
+#: IDF/gettexttemplates/idf/project-list.html.php:7
+msgid "Private project"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:62
+msgid "Shortname"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:64
+msgid ""
+"It must be unique for each project and composed only of letters, digits and "
+"dash (-) like \"my-project\"."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50
+msgid "Short description"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:70 IDF/Form/Admin/ProjectUpdate.php:51
+#: IDF/Project.php:79
+msgid "A one line description of the project."
+msgstr "Projenin tek satırlık tanımı."
+
+#: IDF/Form/Admin/ProjectCreate.php:77 IDF/Form/Admin/ProjectUpdate.php:58
+#: IDF/Form/ProjectConf.php:56
+msgid "External URL"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:84
+msgid "Repository type"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:92
+msgid "Remote Subversion repository"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:99 IDF/Form/SourceConf.php:40
+msgid "Repository username"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:106 IDF/Form/SourceConf.php:47
+msgid "Repository password"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:113 IDF/Form/Admin/ProjectUpdate.php:66
+msgid "Master branch"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:116 IDF/Form/Admin/ProjectUpdate.php:69
+msgid ""
+"This should be a world-wide unique identifier for your project. A reverse "
+"DNS notation like \"com.my-domain.my-project\" is a good idea."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:121 IDF/Form/Admin/ProjectUpdate.php:95
+#: IDF/Form/MembersConf.php:46 IDF/Form/TabsConf.php:53
+#: IDF/Form/TabsConf.php:72
+msgid "Project owners"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:130 IDF/Form/Admin/ProjectUpdate.php:103
+#: IDF/Form/MembersConf.php:54 IDF/Form/TabsConf.php:52
+#: IDF/Form/TabsConf.php:78
+msgid "Project members"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:140 IDF/Form/Admin/ProjectUpdate.php:85
+#: IDF/Form/IssueCreate.php:168 IDF/Form/IssueUpdate.php:164
+#: IDF/Form/ProjectConf.php:73 IDF/Form/UpdateUpload.php:71
+#: IDF/Form/Upload.php:70 IDF/Form/WikiPageCreate.php:93
+#: IDF/Form/WikiPageUpdate.php:104
+msgid "Labels"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:155
+msgid "Project template"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:157
+msgid ""
+"Use the given project to initialize the new project. Access rights and "
+"general configuration will be taken from the template project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:204
+msgid ""
+"Only a remote repository available through HTTP or HTTPS is allowed. For "
+"example \"http://somewhere.com/svn/trunk\"."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:220 IDF/Form/Admin/ProjectUpdate.php:117
+msgid ""
+"The master branch is empty or contains illegal characters, please use only "
+"letters, digits, dashes and dots as separators."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:230 IDF/Form/Admin/ProjectUpdate.php:128
+msgid "This master branch is already used. Please select another one."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:241
+msgid ""
+"This shortname contains illegal characters, please use only letters, digits "
+"and dash (-)."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:244
+msgid "The shortname cannot start with the dash (-) character."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:247
+msgid "The shortname cannot end with the dash (-) character."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:252
+msgid "This shortname is already used. Please select another one."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:303 IDF/Form/Admin/ProjectDelete.php:78
+#: IDF/Form/Admin/ProjectUpdate.php:153 IDF/Form/Admin/UserCreate.php:106
+#: IDF/Form/Admin/UserUpdate.php:191 IDF/Form/IssueCreate.php:338
+#: IDF/Form/IssueUpdate.php:329 IDF/Form/MembersConf.php:64
+#: IDF/Form/Password.php:76 IDF/Form/Register.php:112
+#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:143
+#: IDF/Form/TabsConf.php:122 IDF/Form/UpdateUpload.php:126
+#: IDF/Form/Upload.php:149 IDF/Form/UploadArchive.php:137
+#: IDF/Form/UserAccount.php:216 IDF/Form/UserChangeEmail.php:80
+#: IDF/Form/WikiPageCreate.php:167 IDF/Form/WikiPageDelete.php:59
+#: IDF/Form/WikiPageUpdate.php:178 IDF/Form/WikiResourceCreate.php:123
+#: IDF/Form/WikiResourceDelete.php:59 IDF/Form/WikiResourceUpdate.php:124
+msgid "Cannot save the model from an invalid form."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:341
+msgid ""
+"Click on the Project Management tab to set the description of your project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:426
+msgid "This project is not available."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:41
+msgid "Confirmation code"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:46
+msgid "I have made a backup of all the important data of this project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:55
+msgid ""
+"The confirmation code does not match. Please provide a valid confirmation "
+"code to delete the project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:63
+msgid "Sorry, you really need to backup your data before deletion."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38
+#: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40
+msgid "First name"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47
+#: IDF/Form/RegisterConfirmation.php:59 IDF/Form/UserAccount.php:49
+msgid "Last name"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:56
+msgid "Login"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:60
+msgid ""
+"The login must be between 3 and 15 characters long and contains only letters "
+"and digits."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57
+msgid "Email"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:71
+msgid ""
+"Double check the email address as the password is sent directly to the user."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67
+#: IDF/Form/UserAccount.php:66
+msgid "Language"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161
+msgid "Add a public key"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:92
+msgid ""
+"Paste a SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:157
+msgid "Your details to access your forge."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:429
+#: IDF/Form/UserAccount.php:438
+#, php-format
+msgid "The email \"%s\" is already used."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72
+#, php-format
+msgid "The login \"%s\" can only contain letters and digits."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77
+#, php-format
+msgid "The login \"%s\" is already used, please find another one."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:78
+msgid "Password"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid "Leave blank if you do not want to change the password."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid ""
+"The password must be hard for other people to guess, but easy for the user "
+"to remember."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:89
+msgid "Confirm password"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/IssueCreate.php:66
+#: IDF/Form/ProjectConf.php:48 IDF/Form/ReviewCreate.php:54
+#: IDF/Form/UpdateUpload.php:51 IDF/Form/Upload.php:49
+#: IDF/Form/UserAccount.php:101 IDF/Form/WikiPageCreate.php:70
+#: IDF/Form/WikiPageUpdate.php:60 IDF/Form/WikiResourceCreate.php:54
+#: IDF/Form/WikiResourceUpdate.php:46 IDF/Views/Wiki.php:102
+msgid "Description"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:110
+msgid "Twitter username"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:120
+msgid "Public email address"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:130
+msgid "Website URL"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:140
+msgid "Upload custom avatar"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:147
+msgid ""
+"An image file with a width and height not larger than 60 pixels (bigger "
+"images are scaled down)."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:151 IDF/Form/UserAccount.php:152
+msgid "Remove custom avatar"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:156
+msgid "Tick this to delete the custom avatar."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:161 IDF/Views/Admin.php:274
+msgid "Staff"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:164
+msgid "If you give staff rights to a user, you really need to trust him."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:276
+msgid "Active"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:176
+msgid ""
+"If the user is not getting the confirmation email or is abusing the system, "
+"you can directly enable or disable their account here."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:274
+msgid "--- is not a valid first name."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:290
+msgid ""
+"A user with this email already exists, please provide another email address."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/UserAccount.php:398
+msgid "For security reason, you cannot upload a file with this extension."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:461
+msgid "The passwords do not match. Please give them again."
+msgstr ""
+
+#: IDF/Form/Field/EmailList.php:45
+msgid "Please enter one or more valid email addresses."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:57 IDF/Form/IssueUpdate.php:46
+#: IDF/Form/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:73
+#: IDF/Form/UpdateUpload.php:42 IDF/Form/Upload.php:40
+#: IDF/gettexttemplates/idf/issues/base.html.php:3 IDF/Views/Download.php:65
+#: IDF/Views/Download.php:347 IDF/Views/Issue.php:62 IDF/Views/Issue.php:221
+#: IDF/Views/Issue.php:302 IDF/Views/Issue.php:391 IDF/Views/Issue.php:543
+#: IDF/Views/Issue.php:766 IDF/Views/Issue.php:825 IDF/Views/Review.php:58
+#: IDF/Views/User.php:83 IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:145
+#: IDF/Views/Wiki.php:186
+msgid "Summary"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:76 IDF/Form/IssueUpdate.php:66
+#: IDF/Form/ReviewCreate.php:83
+msgid "The \"upload_issue_path\" configuration variable was not set."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:86 IDF/Form/IssueUpdate.php:76
+msgid "Attach a file"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:99 IDF/Form/IssueUpdate.php:89
+#: IDF/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:83
+#: IDF/Views/Issue.php:63 IDF/Views/Issue.php:222 IDF/Views/Issue.php:304
+#: IDF/Views/Issue.php:392 IDF/Views/Issue.php:544 IDF/Views/Issue.php:767
+#: IDF/Views/Issue.php:826 IDF/Views/Review.php:59 IDF/Views/User.php:84
+msgid "Status"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:108 IDF/Form/IssueUpdate.php:99
+msgid "Owner"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:118 IDF/Form/IssueUpdate.php:112
+#: IDF/Form/IssueUpdate.php:129
+msgid "This issue"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:210
+msgid "You cannot add a label with the \"Status\" prefix to an issue."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:211 IDF/Form/IssueCreate.php:218
+#: IDF/Form/UpdateUpload.php:110 IDF/Form/Upload.php:121
+#: IDF/Form/WikiPageCreate.php:151 IDF/Form/WikiPageUpdate.php:162
+msgid "You provided an invalid label."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:217 IDF/Form/UpdateUpload.php:109
+#, php-format
+msgid "You cannot provide more than one label from the %s class to an issue."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:228 IDF/Form/IssueUpdate.php:194
+msgid "You need to provide a description of the issue."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:251 IDF/Form/ReviewCreate.php:159
+msgid "You provided an invalid status."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:272
+msgid "You provided an invalid relation type."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:294
+#, php-format
+msgid "The value \"%s\" is not a valid issue id."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:300
+#, php-format
+msgid "The issue \"%s\" does not exist."
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:86
+msgid "is related to"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:87
+msgid "blocks"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:88
+msgid "is blocked by"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:89
+msgid "duplicates"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:90
+msgid "is duplicated by"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:97
+msgid ""
+"Define an issue template to hint the reporter to provide certain information"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:106
+msgid "Open issue status values"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:114
+msgid "Closed issue status values"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:123
+msgid "Predefined issue labels"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:125
+msgid ""
+"The first \"Type:\" and \"Priority:\" entries found in this list are "
+"automatically chosen as defaults for new issues."
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:133
+msgid "Each issue may have at most one label with each of these classes."
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:140
+msgid "Issue relations"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:142
+msgid ""
+"You can define bidirectional relations like \"is related to\" or \"blocks, "
+"is blocked by\". For standard relations pre-configured translations exist, "
+"new relations should however be defined in a language that is understood by "
+"all project members."
+msgstr ""
+
+#: IDF/Form/IssueUpdate.php:56 IDF/Form/ReviewFileComment.php:45
+#: IDF/Form/WikiPageUpdate.php:82 IDF/Form/WikiResourceUpdate.php:66
+msgid "Comment"
+msgstr ""
+
+#: IDF/Form/IssueUpdate.php:316
+msgid "No changes were entered."
+msgstr ""
+
+#: IDF/Form/MembersConf.php:104
+#, php-format
+msgid "The following login is invalid: %s."
+msgid_plural "The following logins are invalid: %s."
+msgstr[0] ""
+
+#: IDF/Form/Password.php:34
+msgid "Your login or email"
+msgstr ""
+
+#: IDF/Form/Password.php:35
+msgid "Provide either your login or your email to recover your password."
+msgstr ""
+
+#: IDF/Form/Password.php:49 IDF/Form/Password.php:64
+msgid ""
+"Sorry, we cannot find a user with this email address or login. Feel free to "
+"try again."
+msgstr ""
+
+#: IDF/Form/Password.php:100
+msgid "Password Recovery - InDefero"
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:36 IDF/Form/PasswordReset.php:39
+#: IDF/Form/UserChangeEmail.php:36
+msgid "Your verification key"
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:50 IDF/Form/PasswordReset.php:89
+msgid ""
+"We are sorry but this validation key is not valid. Maybe you should directly "
+"copy/paste it from your validation email."
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:61 IDF/Form/PasswordReset.php:100
+msgid ""
+"Sorry, but this verification key has expired, please restart the password "
+"recovery sequence. For security reasons, the verification key is only valid "
+"24h."
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:76 IDF/Form/PasswordReset.php:108
+#: IDF/Form/RegisterConfirmation.php:137 IDF/Form/RegisterInputKey.php:72
+msgid "Cannot save an invalid form."
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:45 IDF/Form/RegisterConfirmation.php:69
+#: IDF/Form/UserAccount.php:77
+msgid "Your password"
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80
+msgid ""
+"Your password must be hard for other people to find it, but easy for you to "
+"remember."
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:56 IDF/Form/RegisterConfirmation.php:80
+#: IDF/Form/UserAccount.php:89
+msgid "Confirm your password"
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:74 IDF/Form/RegisterConfirmation.php:122
+msgid "The two passwords must be the same."
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:77
+msgid ""
+"This account is not active. Please contact the forge administrator to "
+"activate it."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:43
+msgid "Short Description"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:85
+msgid "The \"upload_path\" configuration variable was not set."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:90
+msgid "Update the logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:92
+msgid "The logo must be a picture with a size of 32 by 32."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:103
+msgid "Remove the current logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:139
+msgid "Could not determine the size of the uploaded picture."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:143
+msgid "The picture must have a size of 32 by 32."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:164
+msgid "The entered URL is invalid. Only http and https URLs are allowed."
+msgstr ""
+
+#: IDF/Form/Register.php:41
+msgid "Your login"
+msgstr ""
+
+#: IDF/Form/Register.php:45
+msgid ""
+"The login must be between 3 and 15 characters long and contain only letters "
+"and digits."
+msgstr ""
+
+#: IDF/Form/Register.php:53 IDF/Form/UserAccount.php:59
+msgid "Your email"
+msgstr ""
+
+#: IDF/Form/Register.php:55
+msgid "We will never send you any unsolicited emails. We hate spam too!"
+msgstr ""
+
+#: IDF/Form/Register.php:60
+msgid "I agree to the terms and conditions."
+msgstr ""
+
+#: IDF/Form/Register.php:88
+msgid ""
+"We know, this is boring, but you need to agree with the terms and conditions."
+msgstr ""
+
+#: IDF/Form/Register.php:97
+#, php-format
+msgid ""
+"The email \"%1$s\" is already used. If you need to, you can recover your password."
+msgstr ""
+
+#: IDF/Form/Register.php:148
+msgid "Confirm the creation of your account."
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:40 IDF/Form/RegisterInputKey.php:36
+msgid "Your confirmation key"
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:72
+msgid ""
+"Your password must be hard for other people to guess, but easy for you to "
+"remember."
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:99 IDF/Form/RegisterInputKey.php:50
+msgid ""
+"We are sorry but this confirmation key is not valid. Maybe you should "
+"directly copy/paste it from your confirmation email."
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:110
+#, php-format
+msgid ""
+"This account has already been confirmed. Maybe should you try to recover your password."
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:74
+#: IDF/gettexttemplates/idf/source/base.html.php:5
+#: IDF/gettexttemplates/idf/source/changelog.html.php:7
+msgid "Commit"
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:92
+msgid "Patch"
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:119
+msgid "We were not able to parse your patch. Please provide a valid patch."
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:128
+msgid "You provided an invalid commit."
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:202
+msgid "Initial patch to be reviewed."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:56
+msgid "General comment"
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:113
+msgid ""
+"You need to provide your general comment about the proposal, or comments on "
+"at least one file."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:124
+msgid "The status have been updated."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:130
+msgid "This field is required."
+msgstr ""
+
+#: IDF/Form/SourceConf.php:54 IDF/Form/UploadConf.php:70
+msgid "Webhook URL"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:38 IDF/gettexttemplates/idf/admin/base.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html.php:8
+#: IDF/gettexttemplates/idf/base-full.html~.php:7
+#: IDF/gettexttemplates/idf/base.html.php:8
+#: IDF/gettexttemplates/idf/base.html~.php:7
+#: IDF/gettexttemplates/idf/downloads/base.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:14
+#: IDF/Views/Project.php:97
+msgid "Downloads"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.php:12
+#: IDF/gettexttemplates/idf/base-full.html~.php:11
+#: IDF/gettexttemplates/idf/base.html.php:12
+#: IDF/gettexttemplates/idf/base.html~.php:11
+msgid "Code Review"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:40 IDF/gettexttemplates/idf/admin/base.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html~.php:8
+#: IDF/gettexttemplates/idf/base.html.php:9
+#: IDF/gettexttemplates/idf/base.html~.php:8
+msgid "Documentation"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:41 IDF/gettexttemplates/idf/admin/base.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html.php:11
+#: IDF/gettexttemplates/idf/base-full.html~.php:10
+#: IDF/gettexttemplates/idf/base.html.php:11
+#: IDF/gettexttemplates/idf/base.html~.php:10
+msgid "Source"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.php:10
+#: IDF/gettexttemplates/idf/base-full.html~.php:9
+#: IDF/gettexttemplates/idf/base.html.php:10
+#: IDF/gettexttemplates/idf/base.html~.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:17
+msgid "Issues"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:50
+msgid "Open to all"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:51
+msgid "Signed in users"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:54
+msgid "Closed"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:84
+#, fuzzy
+msgid "Others"
+msgstr "Diğer"
+
+#: IDF/Form/TabsConf.php:107
+msgid "Extra authorized users"
+msgstr ""
+
+#: IDF/Form/Upload.php:59 IDF/Form/WikiResourceCreate.php:65
+#: IDF/Form/WikiResourceUpdate.php:56
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7
+#: IDF/Views/Download.php:64 IDF/Views/Download.php:346
+msgid "File"
+msgstr ""
+
+#: IDF/Form/Upload.php:87 IDF/Form/WikiResourceCreate.php:96
+#: IDF/Form/WikiResourceUpdate.php:83
+msgid "For security reasons, you cannot upload a file with this extension."
+msgstr ""
+
+#: IDF/Form/Upload.php:120
+#, php-format
+msgid "You cannot provide more than one label from the %s class to a download."
+msgstr ""
+
+#: IDF/Form/UploadArchive.php:41
+#, fuzzy
+msgid "Archive file"
+msgstr "Arşiv"
+
+#: IDF/Form/UploadArchive.php:67
+#, php-format
+msgid ""
+"For security reasons, you cannot upload a file (%s) with this extension."
+msgstr ""
+
+#: IDF/Form/UploadArchive.php:98
+#, php-format
+msgid ""
+"You cannot provide more than label from the %1$s class to a download (%2$s)."
+msgstr ""
+
+#: IDF/Form/UploadArchive.php:109
+#, php-format
+msgid ""
+"A file with the name \"%s\" has already been uploaded and is not marked to "
+"be replaced."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:41
+msgid "The archive does not exist."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:48
+#, php-format
+msgid "The archive could not be read (code %d)."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:53
+msgid "The archive does not contain a manifest.xml."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:61
+#, php-format
+msgid "The archive's manifest is invalid: %s"
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:77
+#, php-format
+msgid "The entry %d in the manifest is missing a file name."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:82
+#, php-format
+msgid "The entry %d in the manifest is missing a summary."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:86
+msgid "The manifest must not reference itself."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:91
+#, php-format
+msgid "The entry %s in the manifest does not exist in the archive."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:96
+#, php-format
+msgid "The entry %s in the manifest is referenced more than once."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:108
+#, php-format
+msgid "The entry %s in the manifest has more than the six allowed labels set."
+msgstr ""
+
+#: IDF/Form/UploadConf.php:53
+msgid "Predefined download labels"
+msgstr ""
+
+#: IDF/Form/UploadConf.php:62
+msgid "Each download may have at most one label with each of these classes"
+msgstr ""
+
+#: IDF/Form/UserAccount.php:61
+msgid ""
+"If you change your email address, an email will be sent to the new address "
+"to confirm it."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:80
+msgid "Leave blank if you do not want to change your password."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:166
+msgid ""
+"Paste an SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+
+#: IDF/Form/UserAccount.php:171
+msgid "Add a secondary email address"
+msgstr ""
+
+#: IDF/Form/UserAccount.php:173
+msgid "You will get an email to confirm that you own the address you specify."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:200
+msgid "Confirm your new email address."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:203
+#, php-format
+msgid ""
+"A validation email has been sent to \"%s\" to validate the email address "
+"change."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:341
+msgid ""
+"Please check the key as it does not appear to be a valid SSH public key."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:363
+msgid ""
+"Please check the key as it does not appear to be a valid monotone public key."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:371
+msgid "Public key looks like neither an SSH nor monotone public key."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:383
+msgid "You already have uploaded this key."
+msgstr ""
+
+#: IDF/Form/UserChangeEmail.php:63
+msgid ""
+"The validation key is not valid. Please copy/paste it from your confirmation "
+"email."
+msgstr ""
+
+#: IDF/Form/WikiConf.php:49
+msgid "Predefined documentation page labels"
+msgstr ""
+
+#: IDF/Form/WikiConf.php:58
+msgid ""
+"Each documentation page may have at most one label with each of these classes"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:38
+msgid ""
+"# Introduction\n"
+"\n"
+"Add your content here.\n"
+"\n"
+"\n"
+"# Details\n"
+"\n"
+"Add your content here. Format your content with:\n"
+"\n"
+"* Text in **bold** or *italic*.\n"
+"* Headings, paragraphs, and lists.\n"
+"* Links to other [[WikiPage]].\n"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:57
+msgid "PageName"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:60 IDF/Form/WikiPageUpdate.php:50
+msgid "Page title"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:66 IDF/Form/WikiPageUpdate.php:56
+msgid ""
+"The page name must contains only letters, digits and the dash (-) character."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:71 IDF/Form/WikiPageUpdate.php:61
+msgid "This one line description is displayed in the list of pages."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:108 IDF/Form/WikiPageUpdate.php:119
+#: IDF/Form/WikiResourceCreate.php:78
+msgid "The title contains invalid characters."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:114 IDF/Form/WikiPageUpdate.php:125
+msgid "A page with this title already exists."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:150 IDF/Form/WikiPageUpdate.php:161
+#, php-format
+msgid "You cannot provide more than one label from the %s class to a page."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:200
+msgid "Initial page creation"
+msgstr ""
+
+#: IDF/Form/WikiPageDelete.php:39
+msgid "Yes, I understand that the page and all its revisions will be deleted."
+msgstr ""
+
+#: IDF/Form/WikiPageDelete.php:50 IDF/Form/WikiResourceDelete.php:50
+msgid "You need to confirm the deletion."
+msgstr ""
+
+#: IDF/Form/WikiPageUpdate.php:83 IDF/Form/WikiResourceUpdate.php:67
+msgid "One line to describe the changes you made."
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:40
+msgid "ResourceName"
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:44
+msgid "Resource title"
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:50
+msgid ""
+"The resource name must contains only letters, digits and the dash (-) "
+"character."
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:55 IDF/Form/WikiResourceUpdate.php:47
+#, fuzzy
+msgid "This one line description is displayed in the list of resources."
+msgstr "Projenin tek satırlık tanımı."
+
+#: IDF/Form/WikiResourceCreate.php:84
+msgid "A resource with this title already exists."
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:142
+msgid "Initial resource creation"
+msgstr ""
+
+#: IDF/Form/WikiResourceDelete.php:39
+msgid ""
+"Yes, I understand that the resource and all its revisions will be deleted."
+msgstr ""
+
+#: IDF/Form/WikiResourceUpdate.php:89
+#, php-format
+msgid ""
+"The mime type of the uploaded file \"%1$s\" does not match the mime type of "
+"this resource \"%2$s\""
+msgstr ""
+
+#: IDF/Form/WikiResourceUpdate.php:97
+msgid "The current version of the resource and the uploaded file are equal."
+msgstr ""
+
+#: IDF/Gconf.php:60 IDF/Search/Occ.php:56
+msgid "model class"
+msgstr ""
+
+#: IDF/Gconf.php:66 IDF/Search/Occ.php:62
+msgid "model id"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:3
+msgid "Project Summary"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:6
+msgid "Issue Tracking"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:8
+msgid "Project Members"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:9
+msgid "Tabs Access and Notifications"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/downloads.html.php:3
+#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3
+#: IDF/gettexttemplates/idf/admin/wiki.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/labels.html.php:3
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
List one status value per line in desired sort-order.
\n"
+"
Optionally, use an equals-sign to document the meaning of each status "
+"value.
The webhook URL setting specifies an URL to which a HTTP PUT"
+"strong>\n"
+"request is sent after a new download has been added or to which a HTTP "
+"POST\n"
+"request is sent after an existing download has been updated.\n"
+"If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/upload
\n"
+"
http://domain.com/upload?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each download:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%d - download id
\n"
+"
\n"
+"\n"
+"
For example, updating download 123 of project 'my-project' with\n"
+"web hook URL http://mydomain.com/%p/%d would send a POST "
+"request to\n"
+"http://mydomain.com/my-project/123.
A project owner may make any change to this project, including removing "
+"other project owners. You need to be carefull when you give owner rights."
+"p>\n"
+"
A project member will not have access to the administration area but will "
+"have more options available in the use of the project.
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:3
+msgid "You can find here the current repository configuration of your project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:4
+msgid ""
+"
The webhook URL setting specifies an URL to which a HTTP \n"
+"%%hook_request_method%% request is sent after each "
+"repository\n"
+"commit. If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/commit
\n"
+"
http://domain.com/commit?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each commit:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%r - revision number
\n"
+"
\n"
+"\n"
+"
For example, committing revision 123 to project 'my-project' with\n"
+"post-commit URL http://mydomain.com/%p/%r would send a request "
+"to\n"
+"http://mydomain.com/my-project/123.
The description of the project can be improved using the Markdown syntax.
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:7
+msgid ""
+"The form contains some errors. Please correct them to update the summary."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:8
+msgid "Current logo"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html~.php:4
+#: IDF/gettexttemplates/idf/base.html.php:4
+#: IDF/gettexttemplates/idf/base.html~.php:4
+#: IDF/gettexttemplates/idf/main-menu.html.php:8
+#: IDF/gettexttemplates/idf/project-list.html.php:4
+msgid "Project logo"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:10
+msgid "Your project does not have a logo configured yet."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:3
+msgid ""
+"This section allows you to configure project tabs access rights and "
+"notifications."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:4
+msgid ""
+"Tab access controls whether a single user can navigate into a particular "
+"section of your project via the main menu or automatically generated object "
+"links."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:5
+msgid ""
+"If you mark a project as private, only the project members and "
+"administrators, together with the extra authorized users you provide will "
+"have access to the project as a whole. You will still be able to define "
+"further access rights for the different tabs but the \"Open to all\" and "
+"\"Signed in users\" will default to authorized users only."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:6
+msgid ""
+"For the extra authorized user list, specify each person by its login. Each "
+"person must have already registered with the given login. Separate the "
+"logins with commas and/or new lines."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:7
+msgid ""
+"Only project members and admins have write access to the source. If you "
+"restrict the access to the source, anonymous access is not provided and the "
+"users must authenticate themselves with their password or SSH key."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
+#, php-format
+msgid ""
+"Here you can configure who should be notified about changes in a particular "
+"section. You can also configure additional addresses, like the one of a "
+"mailing list, that should be notified. (Keep in mind that you might have to "
+"register the sender address %%from_email%% to let the "
+"mailing list actually accept notification emails.) Multiple email addresses "
+"must be separated through commas (',')."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:9
+msgid ""
+"The form contains some errors. Please correct them to update the access "
+"rights."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
+msgid "Access Rights"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:11
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
+#, fuzzy
+msgid "Notifications"
+msgstr "düzenlenme tarihi"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:3
+#: IDF/gettexttemplates/idf/base-full.html~.php:3
+#: IDF/gettexttemplates/idf/base.html.php:3
+#: IDF/gettexttemplates/idf/base.html~.php:3
+#, php-format
+msgid ""
+"Sign in or create your account to create issues or "
+"add comments"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:6
+#: IDF/gettexttemplates/idf/base.html.php:6
+#: IDF/gettexttemplates/idf/project-list.html.php:6
+msgid "External link to project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html~.php:6
+#: IDF/gettexttemplates/idf/base.html.php:7
+#: IDF/gettexttemplates/idf/base.html~.php:6
+msgid "Project Home"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:13
+#: IDF/gettexttemplates/idf/base-full.html~.php:12
+#: IDF/gettexttemplates/idf/base.html.php:13
+#: IDF/gettexttemplates/idf/base.html~.php:12
+msgid "Project Management"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:4
+#: IDF/gettexttemplates/idf/downloads/index.html.php:4
+#: IDF/Views/Download.php:235
+msgid "New Download"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:5
+#, fuzzy
+msgid "Upload Archive"
+msgstr "Arşiv"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:3
+msgid ""
+"Each file must have a distinct name and file contents\n"
+"cannot be changed, so be sure to include release numbers in each file\n"
+"name."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:6
+#, php-format
+msgid ""
+"You can use the Markdown syntax for the description."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:7
+msgid "The form contains some errors. Please correct them to submit the file."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:8
+msgid "Submit File"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:9
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:8
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:21
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:14
+#: IDF/gettexttemplates/idf/issues/create.html.php:14
+#: IDF/gettexttemplates/idf/issues/view.html.php:27
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:7
+#: IDF/gettexttemplates/idf/register/index.html.php:8
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:5
+#: IDF/gettexttemplates/idf/review/create.html.php:12
+#: IDF/gettexttemplates/idf/review/view.html.php:41
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:5
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:13
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:5
+msgid "Cancel"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:10
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:9
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:6
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:6
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:6
+msgid "Instructions"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:3
+msgid ""
+"The archive must include a manifest.xml file with meta "
+"information about the\n"
+"files to process inside the archive. All processed files must be unique or "
+"replace existing files explicitely."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:5
+#, php-format
+msgid ""
+"You can learn more about the archive format here."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:6
+msgid ""
+"The form contains some errors. Please correct them to submit the archive."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:7
+#, fuzzy
+msgid "Submit Archive"
+msgstr "Arşiv"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:3
+msgid ""
+"Attention! If you want to delete a specific version of your "
+"software, maybe, someone is depending on this specific version to run his "
+"systems. Are you sure, you will not affect anybody when removing this file?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:4
+#, php-format
+msgid ""
+"Instead of deleting the file, you could mark it as "
+"deprecated."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:5
+#: IDF/gettexttemplates/idf/downloads/view.html.php:4
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:4
+#: IDF/gettexttemplates/idf/issues/view.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:5
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:7
+#, php-format
+msgid "by %%submitter%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:6
+msgid "Delete File"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:8
+#: IDF/gettexttemplates/idf/downloads/view.html.php:14
+msgid "Uploaded:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:9
+#: IDF/gettexttemplates/idf/downloads/view.html.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:29
+#: IDF/gettexttemplates/idf/review/view.html.php:27
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:14
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:15
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:17
+msgid "Updated:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6
+#: IDF/gettexttemplates/idf/listProjects.html.php:17
+msgid "Downloads:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:11
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:17
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml~.php:6
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:10
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:21
+#: IDF/gettexttemplates/idf/issues/view.html.php:33
+#: IDF/gettexttemplates/idf/project-list.html.php:8
+#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:13
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:16
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:12
+#: IDF/IssueComment.php:157 IDF/Wiki/PageRevision.php:204
+msgid "Labels:"
+msgstr "Etiketler:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3
+msgid "A new file is available for download:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:4
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:5
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:8
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:4
+msgid "Hello,"
+msgstr "Merhaba,"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:5
+msgid "Project:"
+msgstr "Proje:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:6
+msgid "Submitted by:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:8
+msgid "Download:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:10
+#: IDF/gettexttemplates/idf/review/view.html.php:31
+#: IDF/gettexttemplates/idf/user/public.html.php:4
+msgid "Description:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:3
+msgid "A file download was updated:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3
+msgid "Details"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:3
+#, php-format
+msgid "See the deprecated files."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:5
+msgid "Number of files:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:3
+msgid ""
+"Attention! This file is marked as deprecated, download it "
+"only if you are sure you need this specific version."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:5
+msgid "md5:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:6
+msgid "Changes"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:7
+msgid "The form contains some errors. Please correct them to update the file."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:8
+msgid "Update File"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:12
+msgid "Remove this file"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:18
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:12
+msgid "Trash"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:13
+msgid "Delete this file"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:3
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:3
+#: IDF/gettexttemplates/idf/faq.html.php:65
+msgid "Here we are, just to help you."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:4
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:4
+#: IDF/gettexttemplates/idf/faq.html.php:66
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:4
+#: IDF/gettexttemplates/idf/index.html.php:4 IDF/Views/Admin.php:77
+#: IDF/Views.php:91
+msgid "Projects"
+msgstr "Projeler"
+
+#: IDF/gettexttemplates/idf/faq.html.php:3
+msgid ""
+"
This is simple:
\n"
+"\n"
+"
Write in the comments \"This is a duplicate of issue 123\" or - if you "
+"are a member of the crew -\n"
+"directly add the \"duplicates\" relation with the value \"123\" below the "
+"comment field. Change \"123\"\n"
+"with the corresponding issue number.
\n"
+"
Change the status of the current issue to Duplicate.
\n"
+"
Submit the changes.
\n"
+""
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:11
+msgid ""
+"You need to create an account on Gravatar, this takes about 5 minutes and is free."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:12
+msgid ""
+"\n"
+"
To embed any previously uploaded resource into your wiki page, you can "
+"use the [[!ResourceName]] syntax.
\n"
+"\n"
+"
The rendering of the resource can then be further fine-tuned:\n"
+"
\n"
+"
[[!ImageResource, align=right, width=200]] renders "
+"\"ImageResource\" right-aligned and scale its width to 200
\n"
+"
[[!TextResource, align=center, width=300, height=300]] "
+"renders \"TextResource\" in a centered, 300 by 300 px iframe
\n"
+"
[[!AnyResource, preview=no]] does not render a preview of "
+"the resource, but only provides a download link (default for binary "
+"resources)
\n"
+"
[[!BinaryResource, title=Download]] renders the download "
+"link of \"BinaryResource\" with an alternative title
\n"
+"
\n"
+"\n"
+"\n"
+"Resources are versioned, just like wiki pages. If you update a resource, old "
+"wiki pages still show the state of the resource\n"
+"at the time when the wiki page was edited. If you specifically want to "
+"update a resource on a page, you therefor need to update\n"
+"the resource at first and then also the page where it is referenced, "
+"otherwise the change won't be visible until the next regular edit. \n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:28
+msgid ""
+"
If you have to publish many files at once for a new release, it is a very "
+"tedious task\n"
+"to upload them one after another and enter meta information like a summary, "
+"a description or additional\n"
+"labels for each of them.
\n"
+"
InDefero therefore supports a special archive format that is basically a "
+"standard zip file which comes with\n"
+"some meta information. These meta information are kept in a special manifest "
+"file, which is distinctly kept from\n"
+"the rest of the files in the archive that should be published.
\n"
+"
Once this archive has been uploaded, InDefero reads in the meta "
+"information, unpacks the other files from\n"
+"the archive and creates new individual downloads for each of them.
"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:36
+#, php-format
+msgid "Learn more about the archive format."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:37
+msgid ""
+"The API (Application Programming Interface) is used to interact with "
+"InDefero with another program. For example, this can be used to create a "
+"desktop program to submit new tickets easily."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:38
+#, php-format
+msgid "Learn more about the API."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:39
+#: IDF/gettexttemplates/idf/faq.html.php:45
+msgid "What are the keyboard shortcuts?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:40
+#: IDF/gettexttemplates/idf/faq.html.php:60
+msgid "How to mark an issue as duplicate?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:41
+#: IDF/gettexttemplates/idf/faq.html.php:61
+msgid "How can I display my head next to my comments?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:42
+#: IDF/gettexttemplates/idf/faq.html.php:62
+msgid "How can I embed images and other resources in my documentation pages?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:43
+#: IDF/gettexttemplates/idf/faq.html.php:63
+msgid "What is this \"Upload Archive\" functionality about?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:44
+#: IDF/gettexttemplates/idf/faq.html.php:64
+msgid "What is the API and how is it used?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:46
+msgid "Shift+h: This help page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:47
+msgid "If you are in a project, you have the following shortcuts:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:48
+msgid "Shift+u: Project updates."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:49
+msgid "Shift+d: Downloads."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:50
+msgid "Shift+o: Documentation."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:51
+msgid "Shift+a: Create a new issue."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:52
+msgid "Shift+i: List of open issues."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:53
+msgid "Shift+m: The issues you submitted."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:54
+msgid "Shift+w: The issues assigned to you."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:55
+msgid "Shift+s: Source."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:56
+msgid "You also have the standard access keys:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:57
+msgid "Alt+1: Home."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:58
+msgid "Alt+2: Skip the menus."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:59
+msgid "Alt+4: Search (when available)."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
+msgid "Forge"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:5
+msgid "People"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:6
+msgid "Usher"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/forge/base.html.php:3
+#, fuzzy
+msgid "Frontpage"
+msgstr "sayfa"
+
+#: IDF/gettexttemplates/idf/gadmin/forge/index.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
You can set up a custom forge page that is used as entry page for the "
+"forge instead of the plain project listing. This page is then also "
+"accessible via the 'Home' link in main menu bar.
Additionally, the following macros are available: \n"
+"
\n"
+"
{projectlist, label=..., order=(name|activity), limit=...}"
+"code> - Renders a project list that can optionally be filtered by label, "
+"ordered by 'name' or 'activity' and / or limited to a specific number of "
+"projects.
\n"
+"
\n"
+"\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:7
+msgid "Project List"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4
+#: IDF/Views/Admin.php:110
+#, fuzzy
+msgid "Project Labels"
+msgstr "Projeler"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:16
+#: IDF/gettexttemplates/idf/listProjects.html.php:6 IDF/Views/Admin.php:186
+msgid "Create Project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:6
+msgid "Change Project Details"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3
+msgid ""
+"You can select the type of repository you want. In the case of subversion, "
+"you can use optionally a remote repository instead of the local one."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:4
+msgid ""
+"Once you have defined the repository type, you cannot change it"
+"strong>."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:5
+msgid ""
+"\n"
+"
Specify each person by its login. Each person must have already "
+"registered with the given login.
\n"
+"
Separate the logins with commas and/or new lines.
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:14
+msgid ""
+"The form contains some errors. Please correct them to create the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:15
+msgid "Provide at least one owner for the project or use a template."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:15
+msgid "Instructions:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:3
+#, php-format
+msgid ""
+"Confirmation code to confirm the deletion of the project: \n"
+"%%code%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:5
+msgid ""
+"\n"
+"Attention! Deleting a project is a one second operation\n"
+"with the consequences that all the data related to the \n"
+"project will be deleted.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:10
+msgid ""
+"The form contains some errors. Please correct them to delete the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:11
+msgid "Project Statistics"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:12
+msgid "Tab"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:13
+msgid "Number"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:15
+msgid "Code reviews"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:16
+#: IDF/Views/Project.php:93
+msgid "Commits"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:18
+msgid "Documentation pages"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:20
+msgid "Delete Project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:22
+msgid ""
+"For large projects, the suppression can take a while, please be patient."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:3
+msgid "Space Usage Statistics"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:4
+msgid "Repositories:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:18
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:16
+msgid "Attachments:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7
+msgid "Database:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:8
+msgid "Total Forge:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:13
+msgid ""
+"The form contains some errors. Please correct them to update the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:14
+msgid "Provide at least one owner for the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:15
+msgid "Update Project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:20
+msgid "Delete this project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:21
+msgid "You will be asked to confirm."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3
+#: IDF/Views/Admin.php:264
+msgid "User List"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:13
+msgid "Update User"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4
+msgid "Create User"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3
+msgid "The form contains some errors. Please correct them to create the user."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:6
+msgid "The user password will be sent by email to the user."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/createuser-email.txt.php:3
+#, php-format
+msgid ""
+"Hello %%user%%,\n"
+"\n"
+"An account on the forge has been created for you by\n"
+"the administrator %%admin%%.\n"
+"\n"
+"Please find here your details to access the forge:\n"
+"\n"
+" Address: %%url%%\n"
+" Login: %%user.login%%\n"
+" Password: %%password%%\n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:3
+#, php-format
+msgid "See not validated users."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:4
+msgid "
You have here an overview of the users registered in the forge.
"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:5
+msgid "Number of users:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:3
+msgid ""
+"If you are changing the email address of the user, you\n"
+"need to ensure that you are providing a valid email\n"
+"address"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:6
+msgid ""
+"If you give the user staff rights, the user will be\n"
+"able to create new projects and update other non staff users.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:9
+msgid "The form contains some errors. Please correct them to update the user."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:4
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:4
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4
+msgid "Login:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:11
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:5
+msgid "Public Profile"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:12
+msgid "Administrative"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3
+msgid "Configured servers"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:4
+#: IDF/Views/Admin.php:421
+msgid "Usher control"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:3
+msgid "address"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:4
+msgid "port"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:5
+msgid "No connections found."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3
+msgid "current server status:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:4
+msgid "startup"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:5
+msgid "shutdown"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:6
+msgid "reload server configuration:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:7
+msgid "reload"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:11
+msgid "Status explanation"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:9
+msgid "active with n total open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:10
+msgid "waiting for new connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:11
+msgid "usher is being shut down, not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:12
+msgid ""
+"usher is shut down, all local servers are stopped and not accepting "
+"connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:3
+msgid "server name"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:4 IDF/Issue.php:99
+#: IDF/Review.php:102
+msgid "status"
+msgstr "durum"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:5
+msgid "action"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:6
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:6
+msgid "No monotone servers configured."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:7
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:7
+msgid "stop"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:8
+msgid "start"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:9
+msgid "kill"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:10
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:10
+msgid "active connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:12
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:12
+msgid "remote server without open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:13
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:13
+msgid "server with n open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:14
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:14
+msgid "local server running, without open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:15
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:15
+msgid "local server not running, waiting for connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:16
+msgid "local server is about to stop, n connections still open"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:17
+msgid "local server not running, not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:18
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:18
+msgid "usher is shut down, not running and not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.atom.php:3
+#, php-format
+msgid "Personal project feed for %%user%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:6
+msgid "Home"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:3
+#, php-format
+msgid "Attachment to issue %%issue.id%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:5
+#: IDF/gettexttemplates/idf/review/view.html.php:35
+#: IDF/gettexttemplates/idf/source/commit.html.php:23
+#: IDF/gettexttemplates/idf/source/commit.html~.php:22
+#: IDF/gettexttemplates/idf/source/git/file.html.php:6
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:12
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:7
+msgid "Archive"
+msgstr "Arşiv"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:6
+#: IDF/gettexttemplates/idf/source/git/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:10
+msgid "Download this file"
+msgstr "Bu dosyayı indir"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:7
+#: IDF/gettexttemplates/idf/issues/view.html.php:28
+#: IDF/gettexttemplates/idf/review/view.html.php:26
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:13
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:16
+msgid "Created:"
+msgstr "Oluşturulma tarihi:"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:4
+msgid "All Issues"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:5
+msgid "My Issues"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:6
+msgid "My watch list"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:7
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:6
+#: IDF/gettexttemplates/idf/issues/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:5
+#: IDF/gettexttemplates/idf/issues/search.html.php:8
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:5
+msgid "New Issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:8
+#: IDF/gettexttemplates/idf/wiki/base.html.php:9
+msgid "Search"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:9
+msgid "Back to the issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:3
+#, php-format
+msgid ""
+"
Website addresses are automatically linked and you can link to another "
+"page in the documentation using double square brackets like that "
+"[[AnotherPage]].
\n"
+"
If you want to embed uploaded resources, use the [[!ResourceName]]"
+"code> syntax for that. This is described more in detail in the FAQ.
\n"
+"
To directly include a file content from the repository, embrace its path "
+"with triple square brackets: [[[my/file.txt]]].
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/feedfragment-resource.xml.php:4
+msgid "Initial creation"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:3
+#, php-format
+msgid "See the deprecated pages."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:5
+msgid "Number of pages:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/listResources.html.php:4
+msgid "Number of resources:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/search.html.php:4
+msgid "Pages found:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:3
+msgid "The form contains some errors. Please correct them to update the page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:6
+msgid "Update Page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:11
+msgid "Delete this page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:4
+msgid "Update Resource"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:9
+msgid "Delete this resource"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:3
+msgid ""
+"Attention! This page is marked as deprecated, \n"
+"use it as reference only if you are sure you need these specific information."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:5
+#, php-format
+msgid ""
+"You are looking at an old revision of the page \n"
+"%%page.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:10
+msgid "Table of Content"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:13
+msgid "Delete this revision"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:3
+#, php-format
+msgid ""
+"You are looking at an old revision of the resource \n"
+"%%resource.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:14
+msgid "Page Usage"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:15
+msgid "This resource is not used on any pages yet."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:3
+msgid "A new documentation page has been created:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:14
+msgid "Documentation page:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3
+msgid "The following documentation page has been updated:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7
+msgid "Updated by:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13
+msgid "New content:"
+msgstr ""
+
+#: IDF/Issue.php:76
+msgid "owner"
+msgstr "sahip"
+
+#: IDF/Issue.php:84 IDF/Wiki/Page.php:86
+msgid "interested users"
+msgstr "ilgilenen kullanıcılar"
+
+#: IDF/Issue.php:85
+msgid ""
+"Interested users will get an email notification when the issue is changed."
+msgstr ""
+
+#: IDF/Issue.php:92 IDF/Project.php:94 IDF/Review.php:95 IDF/Upload.php:99
+#: IDF/Wiki/Page.php:94
+msgid "labels"
+msgstr "etiketler"
+
+#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114
+#: IDF/Upload.php:118 IDF/Wiki/Page.php:106 IDF/Wiki/Resource.php:101
+msgid "modification date"
+msgstr "düzenlenme tarihi"
+
+#: IDF/Issue.php:212 IDF/IssueComment.php:143
+#, php-format
+msgid ""
+"Issue %3$d, %4$s"
+msgstr ""
+
+#: IDF/Issue.php:214
+#, php-format
+msgid "Creation of issue %3$d, by %4$s"
+msgstr ""
+
+#: IDF/Issue.php:224
+#, php-format
+msgid "%1$s: Issue %2$d created - %3$s"
+msgstr ""
+
+#: IDF/Issue.php:307
+#, php-format
+msgid "Issue %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Issue.php:311
+#, php-format
+msgid "Updated Issue %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/IssueComment.php:51 IDF/IssueRelation.php:47
+msgid "issue"
+msgstr "sorun"
+
+#: IDF/IssueComment.php:58 IDF/IssueFile.php:49 IDF/Review/Comment.php:62
+#: IDF/Review/FileComment.php:49 IDF/Review/FileComment.php:69
+msgid "comment"
+msgstr "yorum"
+
+#: IDF/IssueComment.php:72 IDF/Review/Comment.php:75 IDF/Upload.php:63
+#: IDF/Wiki/PageRevision.php:85
+msgid "changes"
+msgstr "değişiklikler"
+
+#: IDF/IssueComment.php:73
+msgid "Serialized array of the changes in the issue."
+msgstr ""
+
+#: IDF/IssueComment.php:180
+#, php-format
+msgid "Comment on issue %3$d, by %4$s"
+msgstr ""
+
+#: IDF/IssueComment.php:191
+#, php-format
+msgid "%1$s: Comment on issue %2$d - %3$s"
+msgstr ""
+
+#: IDF/IssueFile.php:64
+msgid "file name"
+msgstr "dosya adı"
+
+#: IDF/IssueFile.php:70
+msgid "the file"
+msgstr "dosya"
+
+#: IDF/IssueFile.php:76
+msgid "file size"
+msgstr "dosya boyutu"
+
+#: IDF/IssueFile.php:84
+msgid "type"
+msgstr "tip"
+
+#: IDF/IssueFile.php:86
+msgid "Image"
+msgstr "Resim"
+
+#: IDF/IssueFile.php:87
+msgid "Other"
+msgstr "Diğer"
+
+#: IDF/IssueRelation.php:54
+msgid "verb"
+msgstr ""
+
+#: IDF/IssueRelation.php:61
+msgid "other issue"
+msgstr ""
+
+#: IDF/Key.php:55
+msgid "public key"
+msgstr ""
+
+#: IDF/Key.php:90
+msgid "Invalid or unknown key data detected."
+msgstr ""
+
+#: IDF/Plugin/SyncMercurial.php:78 IDF/Plugin/SyncSvn.php:81
+#, php-format
+msgid "The repository %s already exists."
+msgstr ""
+
+#: IDF/Plugin/SyncMercurial.php:142
+#, php-format
+msgid "%s does not exist or is not writable."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:107 IDF/Plugin/SyncMonotone.php:492
+msgid "\"mtn_repositories\" must be defined in your configuration file"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:114 IDF/Plugin/SyncMonotone.php:482
+msgid "\"mtn_usher_conf\" does not exist or is not writable"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:121
+#, php-format
+msgid "Could not find mtn-post-push script \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:155
+#, php-format
+msgid "The configuration file \"%s\" is missing"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:164
+#, php-format
+msgid "The project path \"%s\" already exists"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:170
+#, php-format
+msgid "The project path \"%s\" could not be created"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:208
+#, php-format
+msgid "The key directory \"%s\" could not be created"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:227
+#, php-format
+msgid "Could not parse key information: %s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:265
+#, php-format
+msgid "Could not create configuration directory \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:275
+#, php-format
+msgid "Could not create symlink for configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:293
+#, php-format
+msgid "Could not write configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:309 IDF/Plugin/SyncMonotone.php:525
+#, php-format
+msgid "Could not parse usher configuration in \"%1$s\": %2$s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:320
+#, php-format
+msgid "usher configuration already contains a server entry named \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:345 IDF/Plugin/SyncMonotone.php:546
+#, php-format
+msgid "Could not write usher configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:395
+#, php-format
+msgid "Could not write write-permissions file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:420
+#, php-format
+msgid "Could not write read-permissions file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:438
+#, php-format
+msgid "Could not remove symlink \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:446
+#, php-format
+msgid "Could not create symlink \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:500
+#, php-format
+msgid "One or more paths underneath %s could not be deleted"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:512
+#, php-format
+msgid "Could not delete client private key \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:599 IDF/Plugin/SyncMonotone.php:718
+#, php-format
+msgid "Could not parse read-permissions for project \"%1$s\": %2$s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:643 IDF/Plugin/SyncMonotone.php:741
+#, php-format
+msgid "Could not write read-permissions for project \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:657 IDF/Plugin/SyncMonotone.php:760
+#, php-format
+msgid "Could not write write-permissions file for project \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:813
+msgid "\"mtn_repositories\" must be defined in your configuration file."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:820
+#, php-format
+msgid "The project path %s does not exists."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:838
+#, php-format
+msgid "The command \"%s\" could not be executed."
+msgstr ""
+
+#: IDF/Project.php:62 IDF/Tag.php:66
+msgid "name"
+msgstr "isim"
+
+#: IDF/Project.php:69
+msgid "short name"
+msgstr "kısa isim"
+
+#: IDF/Project.php:70
+msgid ""
+"Used in the URL to access the project, must be short with only letters and "
+"numbers."
+msgstr ""
+
+#: IDF/Project.php:78
+msgid "short description"
+msgstr "kısa tanım"
+
+#: IDF/Project.php:86 IDF/Review/Patch.php:74
+msgid "description"
+msgstr "tanım"
+
+#: IDF/Project.php:87
+msgid "The description can be extended using the Markdown syntax."
+msgstr ""
+
+#: IDF/Project.php:100
+msgid "private"
+msgstr "özel"
+
+#: IDF/Project.php:108
+msgid "current project activity"
+msgstr ""
+
+#: IDF/Project.php:159
+#, php-format
+msgid "Project \"%s\" not found."
+msgstr "\"%s\" isimli proje bulunamadı."
+
+#: IDF/ProjectActivity.php:56
+msgid "date"
+msgstr ""
+
+#: IDF/Review/Comment.php:55 IDF/Review/Patch.php:80
+msgid "patch"
+msgstr ""
+
+#: IDF/Review/Comment.php:83
+msgid "vote"
+msgstr ""
+
+#: IDF/Review/Comment.php:139 IDF/Review/Patch.php:151
+#, php-format
+msgid ""
+"Review %3$d, %4$s"
+msgstr ""
+
+#: IDF/Review/Comment.php:141
+#, php-format
+msgid "Update of review %3$d, by %4$s"
+msgstr ""
+
+#: IDF/Review/Comment.php:151
+#, php-format
+msgid "%1$s: Updated review %2$d - %3$s"
+msgstr ""
+
+#: IDF/Review/Comment.php:222
+#, php-format
+msgid "Updated Code Review %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Review/Patch.php:52
+msgid "review"
+msgstr ""
+
+#: IDF/Review/Patch.php:67
+msgid "commit"
+msgstr ""
+
+#: IDF/Review/Patch.php:153
+#, php-format
+msgid "Creation of review %3$d, by %4$s"
+msgstr ""
+
+#: IDF/Review/Patch.php:163
+#, php-format
+msgid "%1$s: Creation of Review %2$d - %3$s"
+msgstr ""
+
+#: IDF/Review/Patch.php:208
+#, php-format
+msgid "New Code Review %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Scm/Git.php:309 IDF/Scm/Mercurial.php:199
+#, php-format
+msgid "Folder %1$s not found in commit %2$s."
+msgstr ""
+
+#: IDF/Scm/Git.php:433 IDF/Scm/Mercurial.php:216
+#, php-format
+msgid "Not a valid tree: %s."
+msgstr ""
+
+#: IDF/Scm/Monotone/Stdio.php:81
+msgid "Monotone client key name or hash not in project conf."
+msgstr ""
+
+#: IDF/Scm/Monotone/Stdio.php:89
+#, php-format
+msgid "The key directory %s could not be created."
+msgstr ""
+
+#: IDF/Scm/Monotone/Stdio.php:100
+#, php-format
+msgid "Could not write client key \"%s\""
+msgstr ""
+
+#: IDF/Search/Occ.php:33
+msgid "occurrence"
+msgstr ""
+
+#: IDF/Search/Occ.php:49
+msgid "word"
+msgstr ""
+
+#: IDF/Search/Occ.php:75
+msgid "occurrences"
+msgstr ""
+
+#: IDF/Search/Occ.php:81
+msgid "ponderated occurrence"
+msgstr ""
+
+#: IDF/Tag.php:59
+msgid "tag class"
+msgstr "etiket sınıfı"
+
+#: IDF/Tag.php:60
+msgid "The class of the tag."
+msgstr "Etiketin sınıfı."
+
+#: IDF/Tag.php:73
+msgid "lcname"
+msgstr ""
+
+#: IDF/Tag.php:74
+msgid "Lower case version of the name for fast searching."
+msgstr "Hızlı arama için ismin küçük harf hali."
+
+#: IDF/Template/Markdown.php:84
+msgid "Create this documentation page"
+msgstr ""
+
+#: IDF/Template/Markdown.php:97
+msgid "You are not allowed to access the wiki."
+msgstr ""
+
+#: IDF/Template/Markdown.php:106
+msgid "The wiki resource has not been found."
+msgstr ""
+
+#: IDF/Template/Markdown.php:113
+msgid "The wiki resource has not been found. Create it!"
+msgstr ""
+
+#: IDF/Template/Markdown.php:146
+msgid "This revision of the resource is no longer available."
+msgstr ""
+
+#: IDF/Template/ShowUser.php:51
+msgid "Anonymous"
+msgstr ""
+
+#: IDF/Template/ShowUser.php:54
+msgid "Me"
+msgstr ""
+
+#: IDF/Timeline/Paginator.php:49
+msgid "Today"
+msgstr ""
+
+#: IDF/Upload.php:70
+msgid "file"
+msgstr "dosya"
+
+#: IDF/Upload.php:71
+msgid "The path is relative to the upload path."
+msgstr ""
+
+#: IDF/Upload.php:78 IDF/Wiki/ResourceRevision.php:71
+msgid "file size in bytes"
+msgstr "bayt cinsinden dosya boyutu"
+
+#: IDF/Upload.php:84
+msgid "MD5"
+msgstr ""
+
+#: IDF/Upload.php:106
+msgid "number of downloads"
+msgstr "indirme sayısı"
+
+#: IDF/Upload.php:201
+#, php-format
+msgid "Download %2$d, %3$s"
+msgstr ""
+
+#: IDF/Upload.php:204
+#, php-format
+msgid "Addition of download %2$d, by %3$s"
+msgstr ""
+
+#: IDF/Upload.php:214
+#, php-format
+msgid "%1$s: Download %2$d added - %3$s"
+msgstr ""
+
+#: IDF/Upload.php:301
+#, php-format
+msgid "New download - %1$s (%2$s)"
+msgstr ""
+
+#: IDF/Upload.php:305
+#, php-format
+msgid "Updated download - %1$s (%2$s)"
+msgstr ""
+
+#: IDF/Views/Admin.php:47
+msgid "The forge configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Admin.php:80
+msgid "This table shows the projects in the forge."
+msgstr ""
+
+#: IDF/Views/Admin.php:85
+msgid "Short Name"
+msgstr ""
+
+#: IDF/Views/Admin.php:87
+msgid "Repository Size"
+msgstr ""
+
+#: IDF/Views/Admin.php:93
+msgid "No projects were found."
+msgstr ""
+
+#: IDF/Views/Admin.php:116
+msgid "The label configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Admin.php:147 IDF/Views/Admin.php:314 IDF/Views/Wiki.php:484
+#: IDF/Views/Wiki.php:536
+#, php-format
+msgid "Update %s"
+msgstr ""
+
+#: IDF/Views/Admin.php:155 IDF/Views/Project.php:304
+msgid "The project has been updated."
+msgstr ""
+
+#: IDF/Views/Admin.php:192
+msgid "The project has been created."
+msgstr ""
+
+#: IDF/Views/Admin.php:223
+#, php-format
+msgid "Delete %s Project"
+msgstr ""
+
+#: IDF/Views/Admin.php:230
+msgid "The project has been deleted."
+msgstr ""
+
+#: IDF/Views/Admin.php:260
+msgid "Not Validated User List"
+msgstr ""
+
+#: IDF/Views/Admin.php:268
+msgid "This table shows the users in the forge."
+msgstr ""
+
+#: IDF/Views/Admin.php:272
+msgid "login"
+msgstr ""
+
+#: IDF/Views/Admin.php:275
+msgid "Admin"
+msgstr ""
+
+#: IDF/Views/Admin.php:277
+msgid "Last Login"
+msgstr ""
+
+#: IDF/Views/Admin.php:284
+msgid "No users were found."
+msgstr ""
+
+#: IDF/Views/Admin.php:321
+msgid "You do not have the rights to update this user."
+msgstr ""
+
+#: IDF/Views/Admin.php:339
+msgid "The user has been updated."
+msgstr ""
+
+#: IDF/Views/Admin.php:372
+#, php-format
+msgid "The user %s has been created."
+msgstr ""
+
+#: IDF/Views/Admin.php:379
+msgid "Add User"
+msgstr ""
+
+#: IDF/Views/Admin.php:395
+msgid "Usher management"
+msgstr ""
+
+#: IDF/Views/Admin.php:432
+msgid "Usher configuration has been reloaded"
+msgstr ""
+
+#: IDF/Views/Admin.php:436
+msgid "Usher has been shut down"
+msgstr ""
+
+#: IDF/Views/Admin.php:441
+msgid "Usher has been started up"
+msgstr ""
+
+#: IDF/Views/Admin.php:479
+#, php-format
+msgid "The server \"%s\" has been started"
+msgstr ""
+
+#: IDF/Views/Admin.php:483
+#, php-format
+msgid "The server \"%s\" has been stopped"
+msgstr ""
+
+#: IDF/Views/Admin.php:488
+#, php-format
+msgid "The server \"%s\" has been killed"
+msgstr ""
+
+#: IDF/Views/Admin.php:508
+#, php-format
+msgid "Open connections for \"%s\""
+msgstr ""
+
+#: IDF/Views/Admin.php:513
+#, php-format
+msgid "no connections for server \"%s\""
+msgstr ""
+
+#: IDF/Views/Admin.php:534
+msgid "Yes"
+msgstr "Evet"
+
+#: IDF/Views/Admin.php:534
+msgid "No"
+msgstr ""
+
+#: IDF/Views/Download.php:45
+#, php-format
+msgid "%s Downloads"
+msgstr ""
+
+#: IDF/Views/Download.php:51
+msgid "This table shows the files to download."
+msgstr ""
+
+#: IDF/Views/Download.php:67 IDF/Views/Download.php:349
+msgid "Uploaded"
+msgstr ""
+
+#: IDF/Views/Download.php:71 IDF/Views/Download.php:353
+msgid "No downloads were found."
+msgstr ""
+
+#: IDF/Views/Download.php:94
+#, php-format
+msgid "Download %s"
+msgstr ""
+
+#: IDF/Views/Download.php:111
+#, php-format
+msgid "The file %2$s has been updated."
+msgstr ""
+
+#: IDF/Views/Download.php:144
+#, php-format
+msgid "Delete Download %s"
+msgstr ""
+
+#: IDF/Views/Download.php:177
+msgid "The file has been deleted."
+msgstr ""
+
+#: IDF/Views/Download.php:244
+#, php-format
+msgid "The file has been uploaded."
+msgstr ""
+
+#: IDF/Views/Download.php:271
+msgid "New Downloads from Archive"
+msgstr ""
+
+#: IDF/Views/Download.php:278
+msgid "The archive has been uploaded and processed."
+msgstr ""
+
+#: IDF/Views/Download.php:331
+#, php-format
+msgid "%1$s Downloads with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Download.php:341
+#, php-format
+msgid "This table shows the downloads with label %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:41
+#, php-format
+msgid "%s Open Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:382 IDF/Views/User.php:75
+msgid "This table shows the open issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:61 IDF/Views/Issue.php:220 IDF/Views/Issue.php:301
+#: IDF/Views/Issue.php:390 IDF/Views/Issue.php:542 IDF/Views/Issue.php:765
+#: IDF/Views/Issue.php:824 IDF/Views/Review.php:57 IDF/Views/User.php:81
+msgid "Id"
+msgstr ""
+
+#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:223 IDF/Views/Issue.php:305
+#: IDF/Views/Issue.php:393 IDF/Views/Issue.php:545 IDF/Views/Issue.php:768
+#: IDF/Views/Issue.php:827 IDF/Views/Review.php:60 IDF/Views/User.php:85
+msgid "Last Updated"
+msgstr ""
+
+#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:227 IDF/Views/Issue.php:309
+#: IDF/Views/Issue.php:397 IDF/Views/Issue.php:549 IDF/Views/Issue.php:772
+#: IDF/Views/Issue.php:831
+msgid "No issues were found."
+msgstr ""
+
+#: IDF/Views/Issue.php:113
+msgid "Not assigned"
+msgstr ""
+
+#: IDF/Views/Issue.php:149
+#, php-format
+msgid "Summary of tracked issues in %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:194
+#, php-format
+msgid "Watch List: Closed Issues for %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:195
+#, php-format
+msgid "This table shows the closed issues in your watch list for %s project."
+msgstr ""
+
+#: IDF/Views/Issue.php:200
+#, php-format
+msgid "Watch List: Open Issues for %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:201
+#, php-format
+msgid "This table shows the open issues in your watch list for %s project."
+msgstr ""
+
+#: IDF/Views/Issue.php:277
+msgid "Watch List: Closed Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:278
+msgid "This table shows the closed issues in your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:283
+msgid "Watch List: Open Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:284
+msgid "This table shows the open issues in your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:303 IDF/Views/User.php:82
+msgid "Project"
+msgstr ""
+
+#: IDF/Views/Issue.php:344
+#, php-format
+msgid "%1$s %2$s Submitted %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:348
+#, php-format
+msgid "%1$s %2$s Closed Submitted %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:352
+#, php-format
+msgid "%1$s %2$s Closed Working %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:356
+#, php-format
+msgid "%1$s %2$s Working %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:417
+msgid "Submit a new issue"
+msgstr ""
+
+#: IDF/Views/Issue.php:433
+#, php-format
+msgid "Issue %2$d has been created."
+msgstr ""
+
+#: IDF/Views/Issue.php:490
+#, php-format
+msgid "Search issues - %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:492
+#, php-format
+msgid "Search closed issues - %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:539
+msgid "This table shows the found issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:604
+#, php-format
+msgid "Issue %2$d: %3$s"
+msgstr ""
+
+#: IDF/Views/Issue.php:628
+#, php-format
+msgid "Issue %2$d has been updated."
+msgstr ""
+
+#: IDF/Views/Issue.php:718
+#, php-format
+msgid "View %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:745
+#, php-format
+msgid "%s Closed Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:755
+msgid "This table shows the closed issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:798
+#, php-format
+msgid "%1$s Issues with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Issue.php:801
+#, php-format
+msgid "%1$s Closed Issues with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Issue.php:814
+#, php-format
+msgid "This table shows the issues with label %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:937
+msgid "The issue has been removed from your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:940
+msgid "The issue has been added to your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:1037
+msgid "On your watch list."
+msgstr ""
+
+#: IDF/Views/Project.php:95
+msgid "Issues and Comments"
+msgstr ""
+
+#: IDF/Views/Project.php:99
+msgid "Documents"
+msgstr ""
+
+#: IDF/Views/Project.php:101
+msgid "Reviews and Patches"
+msgstr ""
+
+#: IDF/Views/Project.php:180
+msgid "This table shows the project updates."
+msgstr ""
+
+#: IDF/Views/Project.php:191
+msgid "Change"
+msgstr ""
+
+#: IDF/Views/Project.php:195
+msgid "No changes were found."
+msgstr ""
+
+#: IDF/Views/Project.php:296
+#, php-format
+msgid "%s Project Summary"
+msgstr ""
+
+#: IDF/Views/Project.php:335
+#, php-format
+msgid "%s Issue Tracking Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:344
+msgid "The issue tracking configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:381
+#, php-format
+msgid "%s Downloads Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:393
+msgid "The downloads configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:428
+#, php-format
+msgid "%s Documentation Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:437
+msgid "The documentation configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:471
+#, php-format
+msgid "%s Project Members"
+msgstr ""
+
+#: IDF/Views/Project.php:480
+msgid "The project membership has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:503
+#, php-format
+msgid "%s Tabs Access Rights"
+msgstr ""
+
+#: IDF/Views/Project.php:517
+msgid ""
+"The project tabs access rights and notification settings have been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:566
+#, php-format
+msgid "%s Source"
+msgstr ""
+
+#: IDF/Views/Project.php:580
+msgid "The project source configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Review.php:41
+#, php-format
+msgid "%s Code Reviews"
+msgstr ""
+
+#: IDF/Views/Review.php:48
+msgid "This table shows the latest reviews."
+msgstr ""
+
+#: IDF/Views/Review.php:64
+msgid "No reviews were found."
+msgstr ""
+
+#: IDF/Views/Review.php:94
+#, php-format
+msgid "The code review %2$d has been created."
+msgstr ""
+
+#: IDF/Views/Review.php:140
+#, php-format
+msgid "Review %2$d: %3$s"
+msgstr ""
+
+#: IDF/Views/Review.php:160
+#, php-format
+msgid "Your code review %2$d has been published."
+msgstr ""
+
+#: IDF/Views/Source.php:40
+#, php-format
+msgid "%s Source Help"
+msgstr ""
+
+#: IDF/Views/Source.php:58
+#, php-format
+msgid "%s Invalid Revision"
+msgstr ""
+
+#: IDF/Views/Source.php:82
+#, php-format
+msgid "%s Ambiguous Revision"
+msgstr ""
+
+#: IDF/Views/Source.php:107
+#, php-format
+msgid "%1$s %2$s Change Log"
+msgstr ""
+
+#: IDF/Views/Source.php:153 IDF/Views/Source.php:234 IDF/Views/Source.php:362
+#, php-format
+msgid "%1$s %2$s Source Tree"
+msgstr ""
+
+#: IDF/Views/Source.php:310
+#, php-format
+msgid "%s Commit Details"
+msgstr ""
+
+#: IDF/Views/Source.php:311
+#, php-format
+msgid "%1$s Commit Details - %2$s"
+msgstr ""
+
+#: IDF/Views/User.php:59
+msgid "Your Dashboard - Working Issues"
+msgstr ""
+
+#: IDF/Views/User.php:62
+msgid "Your Dashboard - Submitted Issues"
+msgstr ""
+
+#: IDF/Views/User.php:89
+msgid "No issues are assigned to you, yeah!"
+msgstr ""
+
+#: IDF/Views/User.php:89
+msgid "All the issues you submitted are fixed, yeah!"
+msgstr ""
+
+#: IDF/Views/User.php:121
+msgid "Your personal information has been updated."
+msgstr ""
+
+#: IDF/Views/User.php:133
+msgid "Your Account"
+msgstr ""
+
+#: IDF/Views/User.php:157
+msgid "The public key has been deleted."
+msgstr ""
+
+#: IDF/Views/User.php:177
+msgid "The address has been deleted."
+msgstr ""
+
+#: IDF/Views/User.php:200
+msgid "Confirm The Email Change"
+msgstr ""
+
+#: IDF/Views/User.php:232
+#, php-format
+msgid "Your new email address \"%s\" has been validated. Thank you!"
+msgstr ""
+
+#: IDF/Views/Wiki.php:41
+#, php-format
+msgid "%s Documentation"
+msgstr ""
+
+#: IDF/Views/Wiki.php:48
+msgid "This table shows the documentation pages."
+msgstr ""
+
+#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:144 IDF/Views/Wiki.php:185
+msgid "Page Title"
+msgstr ""
+
+#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:103 IDF/Views/Wiki.php:146
+#: IDF/Views/Wiki.php:187
+msgid "Updated"
+msgstr ""
+
+#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:191
+msgid "No documentation pages were found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:88
+#, php-format
+msgid "%s Documentation Resources"
+msgstr ""
+
+#: IDF/Views/Wiki.php:94
+msgid "This table shows the resources that can be used on documentation pages."
+msgstr ""
+
+#: IDF/Views/Wiki.php:100
+msgid "Resource Title"
+msgstr ""
+
+#: IDF/Views/Wiki.php:107
+msgid "No resources were found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:128
+#, php-format
+msgid "Documentation Search - %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:139
+msgid "This table shows the pages found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:150
+msgid "No pages were found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:169
+#, php-format
+msgid "%1$s Documentation Pages with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:179
+#, php-format
+msgid "This table shows the documentation pages with label %s."
+msgstr ""
+
+#: IDF/Views/Wiki.php:222
+#, php-format
+msgid "The page %2$s has been created."
+msgstr ""
+
+#: IDF/Views/Wiki.php:265
+#, php-format
+msgid "The resource %2$s has been created."
+msgstr ""
+
+#: IDF/Views/Wiki.php:409 IDF/Views/Wiki.php:448
+msgid "The old revision has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:415 IDF/Views/Wiki.php:454
+#, php-format
+msgid "Delete Old Revision of %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:496
+#, php-format
+msgid "The page %2$s has been updated."
+msgstr ""
+
+#: IDF/Views/Wiki.php:548
+#, php-format
+msgid "The resource %2$s has been updated."
+msgstr ""
+
+#: IDF/Views/Wiki.php:583
+msgid "The documentation page has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:591
+#, php-format
+msgid "Delete Page %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:623
+msgid "The documentation resource has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:631
+#, php-format
+msgid "Delete Resource %s"
+msgstr ""
+
+#: IDF/Views.php:173 IDF/Views.php:199
+msgid "Confirm Your Account Creation"
+msgstr "Hesabınızın Oluşturulmasını Onaylayın"
+
+#: IDF/Views.php:219
+msgid "Welcome! You can now participate in the life of your project of choice."
+msgstr ""
+
+#: IDF/Views.php:245 IDF/Views.php:269 IDF/Views.php:310
+msgid "Password Recovery"
+msgstr ""
+
+#: IDF/Views.php:289
+msgid ""
+"Welcome back! Next time, you can use your broswer options to remember the "
+"password."
+msgstr ""
+
+#: IDF/Views.php:331
+msgid "Here to Help You!"
+msgstr ""
+
+#: IDF/Views.php:347
+msgid "InDefero Upload Archive Format"
+msgstr ""
+
+#: IDF/Views.php:363
+msgid "InDefero API (Application Programming Interface)"
+msgstr ""
+
+#: IDF/Wiki/Page.php:62 IDF/Wiki/Resource.php:64
+msgid "title"
+msgstr "başlık"
+
+#: IDF/Wiki/Page.php:63
+msgid ""
+"The title of the page must only contain letters, digits or the dash "
+"character. For example: My-new-Wiki-Page."
+msgstr ""
+
+#: IDF/Wiki/Page.php:71
+msgid "A one line description of the page content."
+msgstr ""
+
+#: IDF/Wiki/Page.php:196 IDF/Wiki/PageRevision.php:196
+#, php-format
+msgid "%2$s, %3$s"
+msgstr ""
+
+#: IDF/Wiki/Page.php:198
+#, php-format
+msgid "Creation of page %2$s, by %3$s"
+msgstr ""
+
+#: IDF/Wiki/Page.php:208
+#, php-format
+msgid "%1$s: Documentation page %2$s added - %3$s"
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:48
+msgid "page"
+msgstr "sayfa"
+
+#: IDF/Wiki/PageRevision.php:66 IDF/Wiki/ResourceRevision.php:64
+msgid "A one line description of the changes."
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:72
+msgid "content"
+msgstr "içerik"
+
+#: IDF/Wiki/PageRevision.php:218 IDF/Wiki/ResourceRevision.php:311
+#, php-format
+msgid "Change of %2$s, by %3$s"
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:231
+#, php-format
+msgid "%1$s: Documentation page %2$s updated - %3$s"
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:293
+#, php-format
+msgid "New Documentation Page %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:297
+#, php-format
+msgid "Documentation Page Changed %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Wiki/Resource.php:65
+msgid ""
+"The title of the resource must only contain letters, digits, dots or the "
+"dash character. For example: my-resource.png."
+msgstr ""
+
+#: IDF/Wiki/Resource.php:72
+msgid "MIME media type"
+msgstr ""
+
+#: IDF/Wiki/Resource.php:73
+msgid "The MIME media type of the resource."
+msgstr ""
+
+#: IDF/Wiki/Resource.php:81
+#, fuzzy
+msgid "A one line description of the resource."
+msgstr "Projenin tek satırlık tanımı."
+
+#: IDF/Wiki/Resource.php:176 IDF/Wiki/ResourceRevision.php:308
+#, php-format
+msgid "%2$s, %3$s"
+msgstr ""
+
+#: IDF/Wiki/Resource.php:178
+#, php-format
+msgid "Creation of resource %2$s, by %3$s"
+msgstr ""
+
+#: IDF/Wiki/Resource.php:188
+#, php-format
+msgid "%1$s: Documentation resource %2$s added - %3$s"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:47
+msgid "resource"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:78
+msgid "File extension"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:79
+msgid "The file extension of the uploaded resource."
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:94
+msgid "page usage"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:116
+#, php-format
+msgid "id %d: %s"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:263
+#, fuzzy, php-format
+msgid "Download (%s)"
+msgstr "Bu dosyayı indir"
+
+#: IDF/Wiki/ResourceRevision.php:270
+msgid "View resource details"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:324
+#, php-format
+msgid "%1$s: Documentation resource %2$s updated - %3$s"
+msgstr ""
diff --git a/indefero/src/IDF/locale/zh_CN/idf.po b/indefero/src/IDF/locale/zh_CN/idf.po
new file mode 100644
index 0000000..0572584
--- /dev/null
+++ b/indefero/src/IDF/locale/zh_CN/idf.po
@@ -0,0 +1,5467 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+# William MARTIN , 2011.
+msgid ""
+msgstr ""
+"Project-Id-Version: Indefero\n"
+"Report-Msgid-Bugs-To: http://projects.ceondo.com/p/indefero/issues/\n"
+"POT-Creation-Date: 2012-03-22 01:16+0100\n"
+"PO-Revision-Date: 2011-10-31 00:19+0000\n"
+"Last-Translator: tommyd \n"
+"Language-Team: LANGUAGE \n"
+"Language: zh_CN\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0\n"
+
+#: IDF/Commit.php:55 IDF/Conf.php:54 IDF/Issue.php:52
+#: IDF/ProjectActivity.php:49 IDF/Review.php:65 IDF/Search/Occ.php:69
+#: IDF/Tag.php:52 IDF/Upload.php:49 IDF/Wiki/Page.php:54
+#: IDF/Wiki/Resource.php:56
+msgid "project"
+msgstr "项目"
+
+#: IDF/Commit.php:63 IDF/Issue.php:67 IDF/IssueComment.php:65
+#: IDF/IssueFile.php:57 IDF/IssueRelation.php:69 IDF/Review/Comment.php:69
+#: IDF/Review.php:80 IDF/Upload.php:91 IDF/Wiki/Page.php:78
+#: IDF/Wiki/PageRevision.php:79 IDF/Wiki/Resource.php:88
+#: IDF/Wiki/ResourceRevision.php:86
+msgid "submitter"
+msgstr "上传者"
+
+#: IDF/Commit.php:87 IDF/Issue.php:60 IDF/Review/Patch.php:60
+#: IDF/Review.php:73 IDF/Upload.php:57 IDF/Wiki/Page.php:70
+#: IDF/Wiki/PageRevision.php:65 IDF/Wiki/Resource.php:80
+#: IDF/Wiki/ResourceRevision.php:63
+msgid "summary"
+msgstr "摘要"
+
+#: IDF/Commit.php:93
+msgid "changelog"
+msgstr "修改日志"
+
+#: IDF/Commit.php:100 IDF/Issue.php:105 IDF/IssueComment.php:79
+#: IDF/IssueFile.php:96 IDF/IssueRelation.php:75 IDF/Review/Comment.php:90
+#: IDF/Review/FileComment.php:75 IDF/Review/Patch.php:87 IDF/Review.php:108
+#: IDF/Upload.php:112 IDF/Wiki/Page.php:100 IDF/Wiki/PageRevision.php:92
+#: IDF/Wiki/Resource.php:95 IDF/Wiki/ResourceRevision.php:101
+msgid "creation date"
+msgstr "创建日期"
+
+#: IDF/Commit.php:238
+#, php-format
+msgid "Commit %1$s, by %2$s"
+msgstr ""
+
+#: IDF/Commit.php:337
+#, php-format
+msgid "New Commit %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Conf.php:61 IDF/Gconf.php:73
+msgid "key"
+msgstr "键"
+
+#: IDF/Conf.php:67 IDF/Gconf.php:79 IDF/ProjectActivity.php:62
+msgid "value"
+msgstr "值"
+
+#: IDF/Diff.php:460
+msgid "Old"
+msgstr "旧"
+
+#: IDF/Diff.php:460
+msgid "New"
+msgstr "新"
+
+#: IDF/EmailAddress.php:49 IDF/Key.php:49
+msgid "user"
+msgstr "用户"
+
+#: IDF/EmailAddress.php:55
+msgid "email"
+msgstr ""
+
+#: IDF/Form/Admin/ForgeConf.php:34
+msgid "Custom forge page enabled"
+msgstr ""
+
+#: IDF/Form/Admin/ForgeConf.php:39 IDF/Form/WikiPageCreate.php:80
+#: IDF/Form/WikiPageUpdate.php:72
+msgid "Content"
+msgstr "内容"
+
+#: IDF/Form/Admin/LabelConf.php:40
+#, fuzzy
+msgid "Predefined project labels"
+msgstr "预定义问题标签"
+
+#: IDF/Form/Admin/LabelConf.php:55
+#, php-format
+msgid ""
+"The label \"%s\" is invalid: A label must only consist of alphanumeric "
+"characters and dashes, and can optionally contain a \":\" with a group "
+"prefix."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:600
+msgid "git"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:601
+msgid "Subversion"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:602
+msgid "mercurial"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:603
+msgid "monotone"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44
+#: IDF/Form/ProjectConf.php:39 IDF/Views/Admin.php:86 IDF/Views/Admin.php:273
+msgid "Name"
+msgstr "名字"
+
+#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:101
+#: IDF/gettexttemplates/idf/base-full.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html~.php:5
+#: IDF/gettexttemplates/idf/base.html.php:5
+#: IDF/gettexttemplates/idf/base.html~.php:5
+#: IDF/gettexttemplates/idf/main-menu.html.php:9
+#: IDF/gettexttemplates/idf/project-list.html.php:5
+#: IDF/gettexttemplates/idf/project-list.html.php:7
+msgid "Private project"
+msgstr "私有项目"
+
+#: IDF/Form/Admin/ProjectCreate.php:62
+msgid "Shortname"
+msgstr "短名称"
+
+#: IDF/Form/Admin/ProjectCreate.php:64
+msgid ""
+"It must be unique for each project and composed only of letters, digits and "
+"dash (-) like \"my-project\"."
+msgstr "必须唯一且只能包含字母、数字和连接符(-) 如 \"my-project\""
+
+#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50
+msgid "Short description"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:70 IDF/Form/Admin/ProjectUpdate.php:51
+#: IDF/Project.php:79
+msgid "A one line description of the project."
+msgstr "项目简单描述"
+
+#: IDF/Form/Admin/ProjectCreate.php:77 IDF/Form/Admin/ProjectUpdate.php:58
+#: IDF/Form/ProjectConf.php:56
+msgid "External URL"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:84
+msgid "Repository type"
+msgstr "仓库类型"
+
+#: IDF/Form/Admin/ProjectCreate.php:92
+msgid "Remote Subversion repository"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:99 IDF/Form/SourceConf.php:40
+msgid "Repository username"
+msgstr "仓库用户名称"
+
+#: IDF/Form/Admin/ProjectCreate.php:106 IDF/Form/SourceConf.php:47
+msgid "Repository password"
+msgstr "仓库用户密码"
+
+#: IDF/Form/Admin/ProjectCreate.php:113 IDF/Form/Admin/ProjectUpdate.php:66
+msgid "Master branch"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:116 IDF/Form/Admin/ProjectUpdate.php:69
+msgid ""
+"This should be a world-wide unique identifier for your project. A reverse "
+"DNS notation like \"com.my-domain.my-project\" is a good idea."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:121 IDF/Form/Admin/ProjectUpdate.php:95
+#: IDF/Form/MembersConf.php:46 IDF/Form/TabsConf.php:53
+#: IDF/Form/TabsConf.php:72
+msgid "Project owners"
+msgstr "项目所有者"
+
+#: IDF/Form/Admin/ProjectCreate.php:130 IDF/Form/Admin/ProjectUpdate.php:103
+#: IDF/Form/MembersConf.php:54 IDF/Form/TabsConf.php:52
+#: IDF/Form/TabsConf.php:78
+msgid "Project members"
+msgstr "项目成员"
+
+#: IDF/Form/Admin/ProjectCreate.php:140 IDF/Form/Admin/ProjectUpdate.php:85
+#: IDF/Form/IssueCreate.php:168 IDF/Form/IssueUpdate.php:164
+#: IDF/Form/ProjectConf.php:73 IDF/Form/UpdateUpload.php:71
+#: IDF/Form/Upload.php:70 IDF/Form/WikiPageCreate.php:93
+#: IDF/Form/WikiPageUpdate.php:104
+msgid "Labels"
+msgstr "标签"
+
+#: IDF/Form/Admin/ProjectCreate.php:155
+msgid "Project template"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:157
+msgid ""
+"Use the given project to initialize the new project. Access rights and "
+"general configuration will be taken from the template project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:204
+msgid ""
+"Only a remote repository available through HTTP or HTTPS is allowed. For "
+"example \"http://somewhere.com/svn/trunk\"."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:220 IDF/Form/Admin/ProjectUpdate.php:117
+msgid ""
+"The master branch is empty or contains illegal characters, please use only "
+"letters, digits, dashes and dots as separators."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:230 IDF/Form/Admin/ProjectUpdate.php:128
+msgid "This master branch is already used. Please select another one."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:241
+msgid ""
+"This shortname contains illegal characters, please use only letters, digits "
+"and dash (-)."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:244
+msgid "The shortname cannot start with the dash (-) character."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:247
+msgid "The shortname cannot end with the dash (-) character."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:252
+msgid "This shortname is already used. Please select another one."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:303 IDF/Form/Admin/ProjectDelete.php:78
+#: IDF/Form/Admin/ProjectUpdate.php:153 IDF/Form/Admin/UserCreate.php:106
+#: IDF/Form/Admin/UserUpdate.php:191 IDF/Form/IssueCreate.php:338
+#: IDF/Form/IssueUpdate.php:329 IDF/Form/MembersConf.php:64
+#: IDF/Form/Password.php:76 IDF/Form/Register.php:112
+#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:143
+#: IDF/Form/TabsConf.php:122 IDF/Form/UpdateUpload.php:126
+#: IDF/Form/Upload.php:149 IDF/Form/UploadArchive.php:137
+#: IDF/Form/UserAccount.php:216 IDF/Form/UserChangeEmail.php:80
+#: IDF/Form/WikiPageCreate.php:167 IDF/Form/WikiPageDelete.php:59
+#: IDF/Form/WikiPageUpdate.php:178 IDF/Form/WikiResourceCreate.php:123
+#: IDF/Form/WikiResourceDelete.php:59 IDF/Form/WikiResourceUpdate.php:124
+msgid "Cannot save the model from an invalid form."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:341
+msgid ""
+"Click on the Project Management tab to set the description of your project."
+msgstr "在项目管理里管理项目描述"
+
+#: IDF/Form/Admin/ProjectCreate.php:426
+msgid "This project is not available."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:41
+msgid "Confirmation code"
+msgstr "确认码"
+
+#: IDF/Form/Admin/ProjectDelete.php:46
+msgid "I have made a backup of all the important data of this project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:55
+msgid ""
+"The confirmation code does not match. Please provide a valid confirmation "
+"code to delete the project."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectDelete.php:63
+msgid "Sorry, you really need to backup your data before deletion."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38
+#: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40
+msgid "First name"
+msgstr "名"
+
+#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47
+#: IDF/Form/RegisterConfirmation.php:59 IDF/Form/UserAccount.php:49
+msgid "Last name"
+msgstr "姓"
+
+#: IDF/Form/Admin/UserCreate.php:56
+msgid "Login"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:60
+msgid ""
+"The login must be between 3 and 15 characters long and contains only letters "
+"and digits."
+msgstr "账号必须是3至15位的字母或数字组成的字符串"
+
+#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57
+msgid "Email"
+msgstr "Email"
+
+#: IDF/Form/Admin/UserCreate.php:71
+msgid ""
+"Double check the email address as the password is sent directly to the user."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67
+#: IDF/Form/UserAccount.php:66
+msgid "Language"
+msgstr "语言"
+
+#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161
+msgid "Add a public key"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:92
+msgid ""
+"Paste a SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:157
+msgid "Your details to access your forge."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:429
+#: IDF/Form/UserAccount.php:438
+#, php-format
+msgid "The email \"%s\" is already used."
+msgstr ""
+
+#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72
+#, php-format
+msgid "The login \"%s\" can only contain letters and digits."
+msgstr " 账号 \"%s\" 只能包含数字和字母"
+
+#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77
+#, php-format
+msgid "The login \"%s\" is already used, please find another one."
+msgstr "账号 \"%s\" 已存在,请换一个再试"
+
+#: IDF/Form/Admin/UserUpdate.php:78
+msgid "Password"
+msgstr "密码"
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid "Leave blank if you do not want to change the password."
+msgstr "不修改密码请留空"
+
+#: IDF/Form/Admin/UserUpdate.php:81
+msgid ""
+"The password must be hard for other people to guess, but easy for the user "
+"to remember."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:89
+msgid "Confirm password"
+msgstr "确认密码"
+
+#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/IssueCreate.php:66
+#: IDF/Form/ProjectConf.php:48 IDF/Form/ReviewCreate.php:54
+#: IDF/Form/UpdateUpload.php:51 IDF/Form/Upload.php:49
+#: IDF/Form/UserAccount.php:101 IDF/Form/WikiPageCreate.php:70
+#: IDF/Form/WikiPageUpdate.php:60 IDF/Form/WikiResourceCreate.php:54
+#: IDF/Form/WikiResourceUpdate.php:46 IDF/Views/Wiki.php:102
+msgid "Description"
+msgstr "描述"
+
+#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:110
+msgid "Twitter username"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:120
+msgid "Public email address"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:130
+msgid "Website URL"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:140
+msgid "Upload custom avatar"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:147
+msgid ""
+"An image file with a width and height not larger than 60 pixels (bigger "
+"images are scaled down)."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:151 IDF/Form/UserAccount.php:152
+msgid "Remove custom avatar"
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:156
+msgid "Tick this to delete the custom avatar."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:161 IDF/Views/Admin.php:274
+msgid "Staff"
+msgstr "工作人员"
+
+#: IDF/Form/Admin/UserUpdate.php:164
+msgid "If you give staff rights to a user, you really need to trust him."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:276
+msgid "Active"
+msgstr "激活"
+
+#: IDF/Form/Admin/UserUpdate.php:176
+msgid ""
+"If the user is not getting the confirmation email or is abusing the system, "
+"you can directly enable or disable their account here."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:274
+msgid "--- is not a valid first name."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:290
+msgid ""
+"A user with this email already exists, please provide another email address."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/UserAccount.php:398
+msgid "For security reason, you cannot upload a file with this extension."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:461
+msgid "The passwords do not match. Please give them again."
+msgstr ""
+
+#: IDF/Form/Field/EmailList.php:45
+msgid "Please enter one or more valid email addresses."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:57 IDF/Form/IssueUpdate.php:46
+#: IDF/Form/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:73
+#: IDF/Form/UpdateUpload.php:42 IDF/Form/Upload.php:40
+#: IDF/gettexttemplates/idf/issues/base.html.php:3 IDF/Views/Download.php:65
+#: IDF/Views/Download.php:347 IDF/Views/Issue.php:62 IDF/Views/Issue.php:221
+#: IDF/Views/Issue.php:302 IDF/Views/Issue.php:391 IDF/Views/Issue.php:543
+#: IDF/Views/Issue.php:766 IDF/Views/Issue.php:825 IDF/Views/Review.php:58
+#: IDF/Views/User.php:83 IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:145
+#: IDF/Views/Wiki.php:186
+msgid "Summary"
+msgstr "摘要"
+
+#: IDF/Form/IssueCreate.php:76 IDF/Form/IssueUpdate.php:66
+#: IDF/Form/ReviewCreate.php:83
+msgid "The \"upload_issue_path\" configuration variable was not set."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:86 IDF/Form/IssueUpdate.php:76
+msgid "Attach a file"
+msgstr "添加附件"
+
+#: IDF/Form/IssueCreate.php:99 IDF/Form/IssueUpdate.php:89
+#: IDF/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:83
+#: IDF/Views/Issue.php:63 IDF/Views/Issue.php:222 IDF/Views/Issue.php:304
+#: IDF/Views/Issue.php:392 IDF/Views/Issue.php:544 IDF/Views/Issue.php:767
+#: IDF/Views/Issue.php:826 IDF/Views/Review.php:59 IDF/Views/User.php:84
+msgid "Status"
+msgstr "状态"
+
+#: IDF/Form/IssueCreate.php:108 IDF/Form/IssueUpdate.php:99
+msgid "Owner"
+msgstr "所有者"
+
+#: IDF/Form/IssueCreate.php:118 IDF/Form/IssueUpdate.php:112
+#: IDF/Form/IssueUpdate.php:129
+msgid "This issue"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:210
+msgid "You cannot add a label with the \"Status\" prefix to an issue."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:211 IDF/Form/IssueCreate.php:218
+#: IDF/Form/UpdateUpload.php:110 IDF/Form/Upload.php:121
+#: IDF/Form/WikiPageCreate.php:151 IDF/Form/WikiPageUpdate.php:162
+msgid "You provided an invalid label."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:217 IDF/Form/UpdateUpload.php:109
+#, php-format
+msgid "You cannot provide more than one label from the %s class to an issue."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:228 IDF/Form/IssueUpdate.php:194
+msgid "You need to provide a description of the issue."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:251 IDF/Form/ReviewCreate.php:159
+msgid "You provided an invalid status."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:272
+msgid "You provided an invalid relation type."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:294
+#, php-format
+msgid "The value \"%s\" is not a valid issue id."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:300
+#, php-format
+msgid "The issue \"%s\" does not exist."
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:86
+msgid "is related to"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:87
+msgid "blocks"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:88
+msgid "is blocked by"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:89
+msgid "duplicates"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:90
+msgid "is duplicated by"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:97
+msgid ""
+"Define an issue template to hint the reporter to provide certain information"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:106
+msgid "Open issue status values"
+msgstr "打开问题状态值"
+
+#: IDF/Form/IssueTrackingConf.php:114
+msgid "Closed issue status values"
+msgstr "关闭问题状态值"
+
+#: IDF/Form/IssueTrackingConf.php:123
+msgid "Predefined issue labels"
+msgstr "预定义问题标签"
+
+#: IDF/Form/IssueTrackingConf.php:125
+msgid ""
+"The first \"Type:\" and \"Priority:\" entries found in this list are "
+"automatically chosen as defaults for new issues."
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:133
+#, fuzzy
+msgid "Each issue may have at most one label with each of these classes."
+msgstr "每个问题必须包含的标签"
+
+#: IDF/Form/IssueTrackingConf.php:140
+msgid "Issue relations"
+msgstr ""
+
+#: IDF/Form/IssueTrackingConf.php:142
+msgid ""
+"You can define bidirectional relations like \"is related to\" or \"blocks, "
+"is blocked by\". For standard relations pre-configured translations exist, "
+"new relations should however be defined in a language that is understood by "
+"all project members."
+msgstr ""
+
+#: IDF/Form/IssueUpdate.php:56 IDF/Form/ReviewFileComment.php:45
+#: IDF/Form/WikiPageUpdate.php:82 IDF/Form/WikiResourceUpdate.php:66
+msgid "Comment"
+msgstr "评论"
+
+#: IDF/Form/IssueUpdate.php:316
+msgid "No changes were entered."
+msgstr ""
+
+#: IDF/Form/MembersConf.php:104
+#, php-format
+msgid "The following login is invalid: %s."
+msgid_plural "The following logins are invalid: %s."
+msgstr[0] ""
+
+#: IDF/Form/Password.php:34
+msgid "Your login or email"
+msgstr "账号或Email"
+
+#: IDF/Form/Password.php:35
+msgid "Provide either your login or your email to recover your password."
+msgstr "使用账号或email来恢复密码"
+
+#: IDF/Form/Password.php:49 IDF/Form/Password.php:64
+msgid ""
+"Sorry, we cannot find a user with this email address or login. Feel free to "
+"try again."
+msgstr "对不起,没有找到使用这个账号或email的用户"
+
+#: IDF/Form/Password.php:100
+msgid "Password Recovery - InDefero"
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:36 IDF/Form/PasswordReset.php:39
+#: IDF/Form/UserChangeEmail.php:36
+msgid "Your verification key"
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:50 IDF/Form/PasswordReset.php:89
+msgid ""
+"We are sorry but this validation key is not valid. Maybe you should directly "
+"copy/paste it from your validation email."
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:61 IDF/Form/PasswordReset.php:100
+msgid ""
+"Sorry, but this verification key has expired, please restart the password "
+"recovery sequence. For security reasons, the verification key is only valid "
+"24h."
+msgstr ""
+
+#: IDF/Form/PasswordInputKey.php:76 IDF/Form/PasswordReset.php:108
+#: IDF/Form/RegisterConfirmation.php:137 IDF/Form/RegisterInputKey.php:72
+msgid "Cannot save an invalid form."
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:45 IDF/Form/RegisterConfirmation.php:69
+#: IDF/Form/UserAccount.php:77
+msgid "Your password"
+msgstr "密码"
+
+#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80
+msgid ""
+"Your password must be hard for other people to find it, but easy for you to "
+"remember."
+msgstr " "
+
+#: IDF/Form/PasswordReset.php:56 IDF/Form/RegisterConfirmation.php:80
+#: IDF/Form/UserAccount.php:89
+msgid "Confirm your password"
+msgstr "确认密码"
+
+#: IDF/Form/PasswordReset.php:74 IDF/Form/RegisterConfirmation.php:122
+msgid "The two passwords must be the same."
+msgstr ""
+
+#: IDF/Form/PasswordReset.php:77
+msgid ""
+"This account is not active. Please contact the forge administrator to "
+"activate it."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:43
+msgid "Short Description"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:85
+msgid "The \"upload_path\" configuration variable was not set."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:90
+msgid "Update the logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:92
+msgid "The logo must be a picture with a size of 32 by 32."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:103
+msgid "Remove the current logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:139
+msgid "Could not determine the size of the uploaded picture."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:143
+msgid "The picture must have a size of 32 by 32."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:164
+msgid "The entered URL is invalid. Only http and https URLs are allowed."
+msgstr ""
+
+#: IDF/Form/Register.php:41
+msgid "Your login"
+msgstr "账号"
+
+#: IDF/Form/Register.php:45
+msgid ""
+"The login must be between 3 and 15 characters long and contain only letters "
+"and digits."
+msgstr ""
+
+#: IDF/Form/Register.php:53 IDF/Form/UserAccount.php:59
+msgid "Your email"
+msgstr "你的Email"
+
+#: IDF/Form/Register.php:55
+msgid "We will never send you any unsolicited emails. We hate spam too!"
+msgstr ""
+
+#: IDF/Form/Register.php:60
+msgid "I agree to the terms and conditions."
+msgstr "同意注册协议"
+
+#: IDF/Form/Register.php:88
+msgid ""
+"We know, this is boring, but you need to agree with the terms and conditions."
+msgstr ""
+
+#: IDF/Form/Register.php:97
+#, php-format
+msgid ""
+"The email \"%1$s\" is already used. If you need to, you can recover your password."
+msgstr ""
+
+#: IDF/Form/Register.php:148
+msgid "Confirm the creation of your account."
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:40 IDF/Form/RegisterInputKey.php:36
+msgid "Your confirmation key"
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:72
+msgid ""
+"Your password must be hard for other people to guess, but easy for you to "
+"remember."
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:99 IDF/Form/RegisterInputKey.php:50
+msgid ""
+"We are sorry but this confirmation key is not valid. Maybe you should "
+"directly copy/paste it from your confirmation email."
+msgstr ""
+
+#: IDF/Form/RegisterConfirmation.php:110
+#, php-format
+msgid ""
+"This account has already been confirmed. Maybe should you try to recover your password."
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:74
+#: IDF/gettexttemplates/idf/source/base.html.php:5
+#: IDF/gettexttemplates/idf/source/changelog.html.php:7
+msgid "Commit"
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:92
+msgid "Patch"
+msgstr "补丁"
+
+#: IDF/Form/ReviewCreate.php:119
+msgid "We were not able to parse your patch. Please provide a valid patch."
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:128
+msgid "You provided an invalid commit."
+msgstr ""
+
+#: IDF/Form/ReviewCreate.php:202
+msgid "Initial patch to be reviewed."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:56
+msgid "General comment"
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:113
+msgid ""
+"You need to provide your general comment about the proposal, or comments on "
+"at least one file."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:124
+msgid "The status have been updated."
+msgstr ""
+
+#: IDF/Form/ReviewFileComment.php:130
+msgid "This field is required."
+msgstr ""
+
+#: IDF/Form/SourceConf.php:54 IDF/Form/UploadConf.php:70
+msgid "Webhook URL"
+msgstr ""
+
+#: IDF/Form/TabsConf.php:38 IDF/gettexttemplates/idf/admin/base.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html.php:8
+#: IDF/gettexttemplates/idf/base-full.html~.php:7
+#: IDF/gettexttemplates/idf/base.html.php:8
+#: IDF/gettexttemplates/idf/base.html~.php:7
+#: IDF/gettexttemplates/idf/downloads/base.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:14
+#: IDF/Views/Project.php:97
+msgid "Downloads"
+msgstr "下载列表"
+
+#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.php:12
+#: IDF/gettexttemplates/idf/base-full.html~.php:11
+#: IDF/gettexttemplates/idf/base.html.php:12
+#: IDF/gettexttemplates/idf/base.html~.php:11
+msgid "Code Review"
+msgstr "代码审核"
+
+#: IDF/Form/TabsConf.php:40 IDF/gettexttemplates/idf/admin/base.html.php:5
+#: IDF/gettexttemplates/idf/base-full.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html~.php:8
+#: IDF/gettexttemplates/idf/base.html.php:9
+#: IDF/gettexttemplates/idf/base.html~.php:8
+msgid "Documentation"
+msgstr "文档"
+
+#: IDF/Form/TabsConf.php:41 IDF/gettexttemplates/idf/admin/base.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html.php:11
+#: IDF/gettexttemplates/idf/base-full.html~.php:10
+#: IDF/gettexttemplates/idf/base.html.php:11
+#: IDF/gettexttemplates/idf/base.html~.php:10
+msgid "Source"
+msgstr "源代码"
+
+#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.php:10
+#: IDF/gettexttemplates/idf/base-full.html~.php:9
+#: IDF/gettexttemplates/idf/base.html.php:10
+#: IDF/gettexttemplates/idf/base.html~.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:17
+msgid "Issues"
+msgstr "问题跟踪"
+
+#: IDF/Form/TabsConf.php:50
+msgid "Open to all"
+msgstr "全部开放"
+
+#: IDF/Form/TabsConf.php:51
+msgid "Signed in users"
+msgstr "登录用户"
+
+#: IDF/Form/TabsConf.php:54
+msgid "Closed"
+msgstr "已关闭"
+
+#: IDF/Form/TabsConf.php:84
+#, fuzzy
+msgid "Others"
+msgstr "其它"
+
+#: IDF/Form/TabsConf.php:107
+msgid "Extra authorized users"
+msgstr "允许访问用户(客户列表)"
+
+#: IDF/Form/Upload.php:59 IDF/Form/WikiResourceCreate.php:65
+#: IDF/Form/WikiResourceUpdate.php:56
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:6
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7
+#: IDF/Views/Download.php:64 IDF/Views/Download.php:346
+msgid "File"
+msgstr "文件"
+
+#: IDF/Form/Upload.php:87 IDF/Form/WikiResourceCreate.php:96
+#: IDF/Form/WikiResourceUpdate.php:83
+msgid "For security reasons, you cannot upload a file with this extension."
+msgstr ""
+
+#: IDF/Form/Upload.php:120
+#, php-format
+msgid "You cannot provide more than one label from the %s class to a download."
+msgstr ""
+
+#: IDF/Form/UploadArchive.php:41
+#, fuzzy
+msgid "Archive file"
+msgstr "归档"
+
+#: IDF/Form/UploadArchive.php:67
+#, php-format
+msgid ""
+"For security reasons, you cannot upload a file (%s) with this extension."
+msgstr ""
+
+#: IDF/Form/UploadArchive.php:98
+#, php-format
+msgid ""
+"You cannot provide more than label from the %1$s class to a download (%2$s)."
+msgstr ""
+
+#: IDF/Form/UploadArchive.php:109
+#, php-format
+msgid ""
+"A file with the name \"%s\" has already been uploaded and is not marked to "
+"be replaced."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:41
+msgid "The archive does not exist."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:48
+#, php-format
+msgid "The archive could not be read (code %d)."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:53
+msgid "The archive does not contain a manifest.xml."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:61
+#, php-format
+msgid "The archive's manifest is invalid: %s"
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:77
+#, php-format
+msgid "The entry %d in the manifest is missing a file name."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:82
+#, php-format
+msgid "The entry %d in the manifest is missing a summary."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:86
+msgid "The manifest must not reference itself."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:91
+#, php-format
+msgid "The entry %s in the manifest does not exist in the archive."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:96
+#, php-format
+msgid "The entry %s in the manifest is referenced more than once."
+msgstr ""
+
+#: IDF/Form/UploadArchiveHelper.php:108
+#, php-format
+msgid "The entry %s in the manifest has more than the six allowed labels set."
+msgstr ""
+
+#: IDF/Form/UploadConf.php:53
+msgid "Predefined download labels"
+msgstr "预定义下载标签"
+
+#: IDF/Form/UploadConf.php:62
+msgid "Each download may have at most one label with each of these classes"
+msgstr "每个下载必须包含的标签"
+
+#: IDF/Form/UserAccount.php:61
+msgid ""
+"If you change your email address, an email will be sent to the new address "
+"to confirm it."
+msgstr "如果你改变你的电子邮件地址,系统将发送一份邮件到新地址账户确认。"
+
+#: IDF/Form/UserAccount.php:80
+msgid "Leave blank if you do not want to change your password."
+msgstr "如果不修改密码请留空"
+
+#: IDF/Form/UserAccount.php:166
+msgid ""
+"Paste an SSH or monotone public key. Be careful to not provide your private "
+"key here!"
+msgstr ""
+
+#: IDF/Form/UserAccount.php:171
+msgid "Add a secondary email address"
+msgstr ""
+
+#: IDF/Form/UserAccount.php:173
+msgid "You will get an email to confirm that you own the address you specify."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:200
+msgid "Confirm your new email address."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:203
+#, php-format
+msgid ""
+"A validation email has been sent to \"%s\" to validate the email address "
+"change."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:341
+msgid ""
+"Please check the key as it does not appear to be a valid SSH public key."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:363
+msgid ""
+"Please check the key as it does not appear to be a valid monotone public key."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:371
+msgid "Public key looks like neither an SSH nor monotone public key."
+msgstr ""
+
+#: IDF/Form/UserAccount.php:383
+msgid "You already have uploaded this key."
+msgstr ""
+
+#: IDF/Form/UserChangeEmail.php:63
+msgid ""
+"The validation key is not valid. Please copy/paste it from your confirmation "
+"email."
+msgstr ""
+
+#: IDF/Form/WikiConf.php:49
+msgid "Predefined documentation page labels"
+msgstr "预定义文档页面标签"
+
+#: IDF/Form/WikiConf.php:58
+msgid ""
+"Each documentation page may have at most one label with each of these classes"
+msgstr "每个文档必须包含的标签"
+
+#: IDF/Form/WikiPageCreate.php:38
+msgid ""
+"# Introduction\n"
+"\n"
+"Add your content here.\n"
+"\n"
+"\n"
+"# Details\n"
+"\n"
+"Add your content here. Format your content with:\n"
+"\n"
+"* Text in **bold** or *italic*.\n"
+"* Headings, paragraphs, and lists.\n"
+"* Links to other [[WikiPage]].\n"
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:57
+msgid "PageName"
+msgstr "页面名称"
+
+#: IDF/Form/WikiPageCreate.php:60 IDF/Form/WikiPageUpdate.php:50
+msgid "Page title"
+msgstr "标题"
+
+#: IDF/Form/WikiPageCreate.php:66 IDF/Form/WikiPageUpdate.php:56
+msgid ""
+"The page name must contains only letters, digits and the dash (-) character."
+msgstr "标题只能包含字母、数字和连接号(-)"
+
+#: IDF/Form/WikiPageCreate.php:71 IDF/Form/WikiPageUpdate.php:61
+msgid "This one line description is displayed in the list of pages."
+msgstr "描述显示在文档列表页面"
+
+#: IDF/Form/WikiPageCreate.php:108 IDF/Form/WikiPageUpdate.php:119
+#: IDF/Form/WikiResourceCreate.php:78
+msgid "The title contains invalid characters."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:114 IDF/Form/WikiPageUpdate.php:125
+msgid "A page with this title already exists."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:150 IDF/Form/WikiPageUpdate.php:161
+#, php-format
+msgid "You cannot provide more than one label from the %s class to a page."
+msgstr ""
+
+#: IDF/Form/WikiPageCreate.php:200
+msgid "Initial page creation"
+msgstr ""
+
+#: IDF/Form/WikiPageDelete.php:39
+msgid "Yes, I understand that the page and all its revisions will be deleted."
+msgstr ""
+
+#: IDF/Form/WikiPageDelete.php:50 IDF/Form/WikiResourceDelete.php:50
+msgid "You need to confirm the deletion."
+msgstr ""
+
+#: IDF/Form/WikiPageUpdate.php:83 IDF/Form/WikiResourceUpdate.php:67
+msgid "One line to describe the changes you made."
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:40
+msgid "ResourceName"
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:44
+msgid "Resource title"
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:50
+#, fuzzy
+msgid ""
+"The resource name must contains only letters, digits and the dash (-) "
+"character."
+msgstr "标题只能包含字母、数字和连接号(-)"
+
+#: IDF/Form/WikiResourceCreate.php:55 IDF/Form/WikiResourceUpdate.php:47
+#, fuzzy
+msgid "This one line description is displayed in the list of resources."
+msgstr "描述显示在文档列表页面"
+
+#: IDF/Form/WikiResourceCreate.php:84
+msgid "A resource with this title already exists."
+msgstr ""
+
+#: IDF/Form/WikiResourceCreate.php:142
+msgid "Initial resource creation"
+msgstr ""
+
+#: IDF/Form/WikiResourceDelete.php:39
+msgid ""
+"Yes, I understand that the resource and all its revisions will be deleted."
+msgstr ""
+
+#: IDF/Form/WikiResourceUpdate.php:89
+#, php-format
+msgid ""
+"The mime type of the uploaded file \"%1$s\" does not match the mime type of "
+"this resource \"%2$s\""
+msgstr ""
+
+#: IDF/Form/WikiResourceUpdate.php:97
+msgid "The current version of the resource and the uploaded file are equal."
+msgstr ""
+
+#: IDF/Gconf.php:60 IDF/Search/Occ.php:56
+msgid "model class"
+msgstr ""
+
+#: IDF/Gconf.php:66 IDF/Search/Occ.php:62
+msgid "model id"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:3
+msgid "Project Summary"
+msgstr "项目摘要"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:6
+msgid "Issue Tracking"
+msgstr "问题跟踪"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:8
+msgid "Project Members"
+msgstr "项目成员"
+
+#: IDF/gettexttemplates/idf/admin/base.html.php:9
+msgid "Tabs Access and Notifications"
+msgstr "访问权限与提醒"
+
+#: IDF/gettexttemplates/idf/admin/downloads.html.php:3
+#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3
+#: IDF/gettexttemplates/idf/admin/wiki.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/projects/labels.html.php:3
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
List one status value per line in desired sort-order.
\n"
+"
Optionally, use an equals-sign to document the meaning of each status "
+"value.
\n"
+msgstr ""
+"\n"
+"
提示:
\n"
+"
List one status value per line in desired sort-order.
\n"
+"
Optionally, use an equals-sign to document the meaning of each status "
+"value.
The webhook URL setting specifies an URL to which a HTTP PUT"
+"strong>\n"
+"request is sent after a new download has been added or to which a HTTP "
+"POST\n"
+"request is sent after an existing download has been updated.\n"
+"If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/upload
\n"
+"
http://domain.com/upload?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each download:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%d - download id
\n"
+"
\n"
+"\n"
+"
For example, updating download 123 of project 'my-project' with\n"
+"web hook URL http://mydomain.com/%p/%d would send a POST "
+"request to\n"
+"http://mydomain.com/my-project/123.
A project owner may make any change to this project, including removing "
+"other project owners. You need to be carefull when you give owner rights."
+"p>\n"
+"
A project member will not have access to the administration area but will "
+"have more options available in the use of the project.
\n"
+msgstr ""
+"\n"
+"
提示:
\n"
+"
A project owner may make any change to this project, including removing "
+"other project owners. You need to be carefull when you give owner rights."
+"p>\n"
+"
A project member will not have access to the administration area but will "
+"have more options available in the use of the project.
\n"
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:3
+msgid "You can find here the current repository configuration of your project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/source.html.php:4
+msgid ""
+"
The webhook URL setting specifies an URL to which a HTTP \n"
+"%%hook_request_method%% request is sent after each "
+"repository\n"
+"commit. If this field is empty, notifications are disabled.
\n"
+"\n"
+"
Only properly-escaped HTTP URLs are supported, for "
+"example:
\n"
+"\n"
+"
\n"
+"
http://domain.com/commit
\n"
+"
http://domain.com/commit?my%20param
\n"
+"
\n"
+"\n"
+"
In addition, the URL may contain the following \"%\" notation, which\n"
+"will be replaced with specific project values for each commit:
\n"
+"\n"
+"
\n"
+"
%p - project name
\n"
+"
%r - revision number
\n"
+"
\n"
+"\n"
+"
For example, committing revision 123 to project 'my-project' with\n"
+"post-commit URL http://mydomain.com/%p/%r would send a request "
+"to\n"
+"http://mydomain.com/my-project/123.
The description of the project can be improved using the Markdown syntax.
\n"
+msgstr ""
+"\n"
+"
提示:
\n"
+"
The description of the project can be improved using the Markdown syntax.
\n"
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:7
+msgid ""
+"The form contains some errors. Please correct them to update the summary."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:8
+msgid "Current logo"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:9
+#: IDF/gettexttemplates/idf/base-full.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html~.php:4
+#: IDF/gettexttemplates/idf/base.html.php:4
+#: IDF/gettexttemplates/idf/base.html~.php:4
+#: IDF/gettexttemplates/idf/main-menu.html.php:8
+#: IDF/gettexttemplates/idf/project-list.html.php:4
+msgid "Project logo"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/summary.html.php:10
+msgid "Your project does not have a logo configured yet."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:3
+msgid ""
+"This section allows you to configure project tabs access rights and "
+"notifications."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:4
+msgid ""
+"Tab access controls whether a single user can navigate into a particular "
+"section of your project via the main menu or automatically generated object "
+"links."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:5
+msgid ""
+"If you mark a project as private, only the project members and "
+"administrators, together with the extra authorized users you provide will "
+"have access to the project as a whole. You will still be able to define "
+"further access rights for the different tabs but the \"Open to all\" and "
+"\"Signed in users\" will default to authorized users only."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:6
+#, fuzzy
+msgid ""
+"For the extra authorized user list, specify each person by its login. Each "
+"person must have already registered with the given login. Separate the "
+"logins with commas and/or new lines."
+msgstr ""
+"\n"
+"
提示:
\n"
+"
Specify each person by its login. Each person must have already "
+"registered with the given login.
\n"
+"
Separate the logins with commas and/or new lines.
\n"
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:7
+msgid ""
+"Only project members and admins have write access to the source. If you "
+"restrict the access to the source, anonymous access is not provided and the "
+"users must authenticate themselves with their password or SSH key."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
+#, php-format
+msgid ""
+"Here you can configure who should be notified about changes in a particular "
+"section. You can also configure additional addresses, like the one of a "
+"mailing list, that should be notified. (Keep in mind that you might have to "
+"register the sender address %%from_email%% to let the "
+"mailing list actually accept notification emails.) Multiple email addresses "
+"must be separated through commas (',')."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:9
+msgid ""
+"The form contains some errors. Please correct them to update the access "
+"rights."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
+msgid "Access Rights"
+msgstr "访问权限"
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:11
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
+#, fuzzy
+msgid "Notifications"
+msgstr "提醒Email"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:3
+#: IDF/gettexttemplates/idf/base-full.html~.php:3
+#: IDF/gettexttemplates/idf/base.html.php:3
+#: IDF/gettexttemplates/idf/base.html~.php:3
+#, php-format
+msgid ""
+"Sign in or create your account to create issues or "
+"add comments"
+msgstr "登录 以便提交问题或评论"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:6
+#: IDF/gettexttemplates/idf/base.html.php:6
+#: IDF/gettexttemplates/idf/project-list.html.php:6
+msgid "External link to project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html~.php:6
+#: IDF/gettexttemplates/idf/base.html.php:7
+#: IDF/gettexttemplates/idf/base.html~.php:6
+msgid "Project Home"
+msgstr "项目首页"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:13
+#: IDF/gettexttemplates/idf/base-full.html~.php:12
+#: IDF/gettexttemplates/idf/base.html.php:13
+#: IDF/gettexttemplates/idf/base.html~.php:12
+msgid "Project Management"
+msgstr "管理"
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:4
+#: IDF/gettexttemplates/idf/downloads/index.html.php:4
+#: IDF/Views/Download.php:235
+msgid "New Download"
+msgstr "上传"
+
+#: IDF/gettexttemplates/idf/downloads/base.html.php:5
+#, fuzzy
+msgid "Upload Archive"
+msgstr "归档"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:3
+msgid ""
+"Each file must have a distinct name and file contents\n"
+"cannot be changed, so be sure to include release numbers in each file\n"
+"name."
+msgstr ""
+"每个文件名称都必须唯一用且内容不能修改 因此请确保文件版本号包含在文件名"
+"中"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:6
+#, php-format
+msgid ""
+"You can use the Markdown syntax for the description."
+msgstr "你可以在描述中使用 Markdown 语法"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:7
+msgid "The form contains some errors. Please correct them to submit the file."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:8
+msgid "Submit File"
+msgstr "提交文件"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:9
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:8
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:21
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:14
+#: IDF/gettexttemplates/idf/issues/create.html.php:14
+#: IDF/gettexttemplates/idf/issues/view.html.php:27
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:7
+#: IDF/gettexttemplates/idf/register/index.html.php:8
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:5
+#: IDF/gettexttemplates/idf/review/create.html.php:12
+#: IDF/gettexttemplates/idf/review/view.html.php:41
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:5
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:13
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createPage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/createResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:5
+msgid "Cancel"
+msgstr "取消"
+
+#: IDF/gettexttemplates/idf/downloads/create.html.php:10
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:9
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:6
+#: IDF/gettexttemplates/idf/user/changeemail.html.php:6
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:6
+msgid "Instructions"
+msgstr "提示"
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:3
+msgid ""
+"The archive must include a manifest.xml file with meta "
+"information about the\n"
+"files to process inside the archive. All processed files must be unique or "
+"replace existing files explicitely."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:5
+#, php-format
+msgid ""
+"You can learn more about the archive format here."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:6
+msgid ""
+"The form contains some errors. Please correct them to submit the archive."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/createFromArchive.html.php:7
+#, fuzzy
+msgid "Submit Archive"
+msgstr "提交文件"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:3
+msgid ""
+"Attention! If you want to delete a specific version of your "
+"software, maybe, someone is depending on this specific version to run his "
+"systems. Are you sure, you will not affect anybody when removing this file?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:4
+#, php-format
+msgid ""
+"Instead of deleting the file, you could mark it as "
+"deprecated."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:5
+#: IDF/gettexttemplates/idf/downloads/view.html.php:4
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:4
+#: IDF/gettexttemplates/idf/issues/view.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:5
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:6
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:7
+#, php-format
+msgid "by %%submitter%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:6
+msgid "Delete File"
+msgstr "删除文件"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:8
+#: IDF/gettexttemplates/idf/downloads/view.html.php:14
+msgid "Uploaded:"
+msgstr "上传时间:"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:9
+#: IDF/gettexttemplates/idf/downloads/view.html.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:29
+#: IDF/gettexttemplates/idf/review/view.html.php:27
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:14
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:15
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:17
+msgid "Updated:"
+msgstr "更新:"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6
+#: IDF/gettexttemplates/idf/listProjects.html.php:17
+msgid "Downloads:"
+msgstr "下载:"
+
+#: IDF/gettexttemplates/idf/downloads/delete.html.php:11
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:17
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/issues/feedfragment.xml~.php:6
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:10
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:21
+#: IDF/gettexttemplates/idf/issues/view.html.php:33
+#: IDF/gettexttemplates/idf/project-list.html.php:8
+#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:13
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:16
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:7
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:12
+#: IDF/IssueComment.php:157 IDF/Wiki/PageRevision.php:204
+msgid "Labels:"
+msgstr "标签"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3
+msgid "A new file is available for download:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:4
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:5
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:8
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:4
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:4
+msgid "Hello,"
+msgstr "你好,"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:6
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:5
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:5
+msgid "Project:"
+msgstr "项目:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:6
+msgid "Submitted by:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:8
+msgid "Download:"
+msgstr "下载:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:9
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:10
+#: IDF/gettexttemplates/idf/review/view.html.php:31
+#: IDF/gettexttemplates/idf/user/public.html.php:4
+msgid "Description:"
+msgstr "描述:"
+
+#: IDF/gettexttemplates/idf/downloads/download-updated-email.txt.php:3
+msgid "A file download was updated:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3
+msgid "Details"
+msgstr "详情"
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:3
+#, php-format
+msgid "See the deprecated files."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/index.html.php:5
+msgid "Number of files:"
+msgstr "文件数目:"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:3
+msgid ""
+"Attention! This file is marked as deprecated, download it "
+"only if you are sure you need this specific version."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:5
+msgid "md5:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:6
+msgid "Changes"
+msgstr "修改"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:7
+msgid "The form contains some errors. Please correct them to update the file."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:8
+msgid "Update File"
+msgstr "更新文件"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:12
+msgid "Remove this file"
+msgstr "删除此文件"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:18
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:7
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:12
+msgid "Trash"
+msgstr "回收"
+
+#: IDF/gettexttemplates/idf/downloads/view.html.php:13
+msgid "Delete this file"
+msgstr "删除此文件"
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:3
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:3
+#: IDF/gettexttemplates/idf/faq.html.php:65
+msgid "Here we are, just to help you."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:4
+#: IDF/gettexttemplates/idf/faq-archive-format.html.php:4
+#: IDF/gettexttemplates/idf/faq.html.php:66
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:4
+#: IDF/gettexttemplates/idf/index.html.php:4 IDF/Views/Admin.php:77
+#: IDF/Views.php:91
+msgid "Projects"
+msgstr "项目列表"
+
+#: IDF/gettexttemplates/idf/faq.html.php:3
+msgid ""
+"
This is simple:
\n"
+"\n"
+"
Write in the comments \"This is a duplicate of issue 123\" or - if you "
+"are a member of the crew -\n"
+"directly add the \"duplicates\" relation with the value \"123\" below the "
+"comment field. Change \"123\"\n"
+"with the corresponding issue number.
\n"
+"
Change the status of the current issue to Duplicate.
\n"
+"
Submit the changes.
\n"
+""
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:11
+msgid ""
+"You need to create an account on Gravatar, this takes about 5 minutes and is free."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:12
+msgid ""
+"\n"
+"
To embed any previously uploaded resource into your wiki page, you can "
+"use the [[!ResourceName]] syntax.
\n"
+"\n"
+"
The rendering of the resource can then be further fine-tuned:\n"
+"
\n"
+"
[[!ImageResource, align=right, width=200]] renders "
+"\"ImageResource\" right-aligned and scale its width to 200
\n"
+"
[[!TextResource, align=center, width=300, height=300]] "
+"renders \"TextResource\" in a centered, 300 by 300 px iframe
\n"
+"
[[!AnyResource, preview=no]] does not render a preview of "
+"the resource, but only provides a download link (default for binary "
+"resources)
\n"
+"
[[!BinaryResource, title=Download]] renders the download "
+"link of \"BinaryResource\" with an alternative title
\n"
+"
\n"
+"\n"
+"\n"
+"Resources are versioned, just like wiki pages. If you update a resource, old "
+"wiki pages still show the state of the resource\n"
+"at the time when the wiki page was edited. If you specifically want to "
+"update a resource on a page, you therefor need to update\n"
+"the resource at first and then also the page where it is referenced, "
+"otherwise the change won't be visible until the next regular edit. \n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:28
+msgid ""
+"
If you have to publish many files at once for a new release, it is a very "
+"tedious task\n"
+"to upload them one after another and enter meta information like a summary, "
+"a description or additional\n"
+"labels for each of them.
\n"
+"
InDefero therefore supports a special archive format that is basically a "
+"standard zip file which comes with\n"
+"some meta information. These meta information are kept in a special manifest "
+"file, which is distinctly kept from\n"
+"the rest of the files in the archive that should be published.
\n"
+"
Once this archive has been uploaded, InDefero reads in the meta "
+"information, unpacks the other files from\n"
+"the archive and creates new individual downloads for each of them.
"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:36
+#, fuzzy, php-format
+msgid "Learn more about the archive format."
+msgstr "更新你的账户"
+
+#: IDF/gettexttemplates/idf/faq.html.php:37
+msgid ""
+"The API (Application Programming Interface) is used to interact with "
+"InDefero with another program. For example, this can be used to create a "
+"desktop program to submit new tickets easily."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:38
+#, php-format
+msgid "Learn more about the API."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:39
+#: IDF/gettexttemplates/idf/faq.html.php:45
+msgid "What are the keyboard shortcuts?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:40
+#: IDF/gettexttemplates/idf/faq.html.php:60
+msgid "How to mark an issue as duplicate?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:41
+#: IDF/gettexttemplates/idf/faq.html.php:61
+msgid "How can I display my head next to my comments?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:42
+#: IDF/gettexttemplates/idf/faq.html.php:62
+msgid "How can I embed images and other resources in my documentation pages?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:43
+#: IDF/gettexttemplates/idf/faq.html.php:63
+msgid "What is this \"Upload Archive\" functionality about?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:44
+#: IDF/gettexttemplates/idf/faq.html.php:64
+msgid "What is the API and how is it used?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:46
+msgid "Shift+h: This help page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:47
+msgid "If you are in a project, you have the following shortcuts:"
+msgstr "如果你在一个项目中,你有以下快捷方式:"
+
+#: IDF/gettexttemplates/idf/faq.html.php:48
+msgid "Shift+u: Project updates."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:49
+msgid "Shift+d: Downloads."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:50
+msgid "Shift+o: Documentation."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:51
+msgid "Shift+a: Create a new issue."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:52
+msgid "Shift+i: List of open issues."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:53
+msgid "Shift+m: The issues you submitted."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:54
+msgid "Shift+w: The issues assigned to you."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:55
+msgid "Shift+s: Source."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:56
+msgid "You also have the standard access keys:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:57
+msgid "Alt+1: Home."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:58
+msgid "Alt+2: Skip the menus."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:59
+msgid "Alt+4: Search (when available)."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
+msgid "Forge"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:5
+msgid "People"
+msgstr "用户列表"
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:6
+msgid "Usher"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/forge/base.html.php:3
+msgid "Frontpage"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/forge/index.html.php:3
+#, php-format
+msgid ""
+"\n"
+"
Instructions:
\n"
+"
You can set up a custom forge page that is used as entry page for the "
+"forge instead of the plain project listing. This page is then also "
+"accessible via the 'Home' link in main menu bar.
Additionally, the following macros are available: \n"
+"
\n"
+"
{projectlist, label=..., order=(name|activity), limit=...}"
+"code> - Renders a project list that can optionally be filtered by label, "
+"ordered by 'name' or 'activity' and / or limited to a specific number of "
+"projects.
\n"
+"
\n"
+"\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:7
+msgid "Project List"
+msgstr "项目列表"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4
+#: IDF/Views/Admin.php:110
+#, fuzzy
+msgid "Project Labels"
+msgstr "项目列表"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:16
+#: IDF/gettexttemplates/idf/listProjects.html.php:6 IDF/Views/Admin.php:186
+msgid "Create Project"
+msgstr "创建项目"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:6
+msgid "Change Project Details"
+msgstr "修改项目摘要"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3
+msgid ""
+"You can select the type of repository you want. In the case of subversion, "
+"you can use optionally a remote repository instead of the local one."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:4
+msgid ""
+"Once you have defined the repository type, you cannot change it"
+"strong>."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:5
+msgid ""
+"\n"
+"
Specify each person by its login. Each person must have already "
+"registered with the given login.
\n"
+"
Separate the logins with commas and/or new lines.
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:14
+msgid ""
+"The form contains some errors. Please correct them to create the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:15
+msgid "Provide at least one owner for the project or use a template."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:15
+msgid "Instructions:"
+msgstr "提示:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:3
+#, php-format
+msgid ""
+"Confirmation code to confirm the deletion of the project: \n"
+"%%code%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:5
+msgid ""
+"\n"
+"Attention! Deleting a project is a one second operation\n"
+"with the consequences that all the data related to the \n"
+"project will be deleted.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:10
+msgid ""
+"The form contains some errors. Please correct them to delete the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:11
+msgid "Project Statistics"
+msgstr "项目统计"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:12
+msgid "Tab"
+msgstr "标签"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:13
+msgid "Number"
+msgstr "数字"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:15
+msgid "Code reviews"
+msgstr "代码审核"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:16
+#: IDF/Views/Project.php:93
+msgid "Commits"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:18
+msgid "Documentation pages"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:20
+msgid "Delete Project"
+msgstr "删除项目"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:22
+msgid ""
+"For large projects, the suppression can take a while, please be patient."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:3
+msgid "Space Usage Statistics"
+msgstr "空间使用率"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:4
+msgid "Repositories:"
+msgstr "仓库:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:18
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt~.php:16
+msgid "Attachments:"
+msgstr "附件:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7
+msgid "Database:"
+msgstr "数据库:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:8
+msgid "Total Forge:"
+msgstr "合计:"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:13
+msgid ""
+"The form contains some errors. Please correct them to update the project."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:14
+msgid "Provide at least one owner for the project."
+msgstr "项目至少要有一个所有者"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:15
+msgid "Update Project"
+msgstr "更新项目"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:19
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:20
+msgid "Delete this project"
+msgstr "删除此项目"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:21
+msgid "You will be asked to confirm."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3
+#: IDF/Views/Admin.php:264
+msgid "User List"
+msgstr "用户列表"
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:13
+msgid "Update User"
+msgstr "更新用户"
+
+#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4
+msgid "Create User"
+msgstr "添加用户"
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3
+msgid "The form contains some errors. Please correct them to create the user."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:6
+msgid "The user password will be sent by email to the user."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/createuser-email.txt.php:3
+#, php-format
+msgid ""
+"Hello %%user%%,\n"
+"\n"
+"An account on the forge has been created for you by\n"
+"the administrator %%admin%%.\n"
+"\n"
+"Please find here your details to access the forge:\n"
+"\n"
+" Address: %%url%%\n"
+" Login: %%user.login%%\n"
+" Password: %%password%%\n"
+"\n"
+"Yours faithfully,\n"
+"The development team.\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:3
+#, php-format
+msgid "See not validated users."
+msgstr "查看 未验证用户"
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:4
+msgid "
You have here an overview of the users registered in the forge.
"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:5
+msgid "Number of users:"
+msgstr "用户数量:"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:3
+msgid ""
+"If you are changing the email address of the user, you\n"
+"need to ensure that you are providing a valid email\n"
+"address"
+msgstr "如果要更改用户的电子邮件地址,你需要确保提供一个有效的电子邮件地址"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:6
+msgid ""
+"If you give the user staff rights, the user will be\n"
+"able to create new projects and update other non staff users.\n"
+msgstr ""
+"如果你给一个用户工作人员权限,他就可以\n"
+"创建项目和用户并且修改其它非工作人员信息\n"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:9
+msgid "The form contains some errors. Please correct them to update the user."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10
+#: IDF/gettexttemplates/idf/register/confirmation.html.php:4
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:4
+#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4
+msgid "Login:"
+msgstr "账号:"
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:11
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:5
+msgid "Public Profile"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:12
+msgid "Administrative"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3
+msgid "Configured servers"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:4
+#: IDF/Views/Admin.php:421
+msgid "Usher control"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:3
+msgid "address"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html~.php:4
+msgid "port"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:5
+msgid "No connections found."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3
+msgid "current server status:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:4
+msgid "startup"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:5
+msgid "shutdown"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:6
+msgid "reload server configuration:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:7
+msgid "reload"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:11
+msgid "Status explanation"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:9
+msgid "active with n total open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:10
+msgid "waiting for new connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:11
+msgid "usher is being shut down, not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:12
+msgid ""
+"usher is shut down, all local servers are stopped and not accepting "
+"connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:3
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:3
+msgid "server name"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:4 IDF/Issue.php:99
+#: IDF/Review.php:102
+msgid "status"
+msgstr "状态"
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:5
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:5
+msgid "action"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:6
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:6
+msgid "No monotone servers configured."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:7
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:7
+msgid "stop"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:8
+msgid "start"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:9
+msgid "kill"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:10
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:10
+msgid "active connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:12
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:12
+msgid "remote server without open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:13
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:13
+msgid "server with n open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:14
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:14
+msgid "local server running, without open connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:15
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:15
+msgid "local server not running, waiting for connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:16
+msgid "local server is about to stop, n connections still open"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:17
+msgid "local server not running, not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:18
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html~.php:18
+msgid "usher is shut down, not running and not accepting connections"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.atom.php:3
+#, php-format
+msgid "Personal project feed for %%user%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:6
+msgid "Home"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:3
+#, php-format
+msgid "Attachment to issue %%issue.id%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:5
+#: IDF/gettexttemplates/idf/review/view.html.php:35
+#: IDF/gettexttemplates/idf/source/commit.html.php:23
+#: IDF/gettexttemplates/idf/source/commit.html~.php:22
+#: IDF/gettexttemplates/idf/source/git/file.html.php:6
+#: IDF/gettexttemplates/idf/source/git/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6
+#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:12
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:7
+msgid "Archive"
+msgstr "归档"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:6
+#: IDF/gettexttemplates/idf/source/git/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:7
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:12
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:10
+msgid "Download this file"
+msgstr "下载此文件"
+
+#: IDF/gettexttemplates/idf/issues/attachment.html.php:7
+#: IDF/gettexttemplates/idf/issues/view.html.php:28
+#: IDF/gettexttemplates/idf/review/view.html.php:26
+#: IDF/gettexttemplates/idf/wiki/deletePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deletePageRev.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deleteResource.html.php:13
+#: IDF/gettexttemplates/idf/wiki/deleteResourceRev.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:14
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:16
+msgid "Created:"
+msgstr "创建:"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:4
+msgid "All Issues"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:5
+msgid "My Issues"
+msgstr "我的问题"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:6
+msgid "My watch list"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:7
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:6
+#: IDF/gettexttemplates/idf/issues/index.html.php:5
+#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:5
+#: IDF/gettexttemplates/idf/issues/search.html.php:8
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:5
+msgid "New Issue"
+msgstr "新问题"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:8
+#: IDF/gettexttemplates/idf/wiki/base.html.php:9
+msgid "Search"
+msgstr "搜索"
+
+#: IDF/gettexttemplates/idf/issues/base.html.php:9
+msgid "Back to the issue"
+msgstr "返回问题"
+
+#: IDF/gettexttemplates/idf/issues/by-label.html.php:3
+#, php-format
+msgid ""
+"
Website addresses are automatically linked and you can link to another "
+"page in the documentation using double square brackets like that "
+"[[AnotherPage]].
\n"
+"
If you want to embed uploaded resources, use the [[!ResourceName]]"
+"code> syntax for that. This is described more in detail in the FAQ.
\n"
+"
To directly include a file content from the repository, embrace its path "
+"with triple square brackets: [[[my/file.txt]]].
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/feedfragment-resource.xml.php:4
+msgid "Initial creation"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:3
+#, php-format
+msgid "See the deprecated pages."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/listPages.html.php:5
+msgid "Number of pages:"
+msgstr "文档数目:"
+
+#: IDF/gettexttemplates/idf/wiki/listResources.html.php:4
+#, fuzzy
+msgid "Number of resources:"
+msgstr "用户数量:"
+
+#: IDF/gettexttemplates/idf/wiki/search.html.php:4
+msgid "Pages found:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:3
+msgid "The form contains some errors. Please correct them to update the page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:6
+msgid "Update Page"
+msgstr "更新页面"
+
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/updatePage.html.php:11
+msgid "Delete this page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:4
+#, fuzzy
+msgid "Update Resource"
+msgstr "更新用户"
+
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:6
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:8
+#: IDF/gettexttemplates/idf/wiki/updateResource.html.php:9
+#, fuzzy
+msgid "Delete this resource"
+msgstr "删除此项目"
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:3
+msgid ""
+"Attention! This page is marked as deprecated, \n"
+"use it as reference only if you are sure you need these specific information."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:5
+#, php-format
+msgid ""
+"You are looking at an old revision of the page \n"
+"%%page.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:10
+msgid "Table of Content"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewPage.html.php:13
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:11
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:13
+msgid "Delete this revision"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:3
+#, php-format
+msgid ""
+"You are looking at an old revision of the resource \n"
+"%%resource.title%%. This revision was created\n"
+"by %%submitter%%."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:14
+#, fuzzy
+msgid "Page Usage"
+msgstr "页面名称"
+
+#: IDF/gettexttemplates/idf/wiki/viewResource.html.php:15
+msgid "This resource is not used on any pages yet."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:3
+msgid "A new documentation page has been created:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:9
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:14
+msgid "Documentation page:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3
+msgid "The following documentation page has been updated:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7
+msgid "Updated by:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13
+msgid "New content:"
+msgstr ""
+
+#: IDF/Issue.php:76
+msgid "owner"
+msgstr "所有者"
+
+#: IDF/Issue.php:84 IDF/Wiki/Page.php:86
+msgid "interested users"
+msgstr ""
+
+#: IDF/Issue.php:85
+msgid ""
+"Interested users will get an email notification when the issue is changed."
+msgstr ""
+
+#: IDF/Issue.php:92 IDF/Project.php:94 IDF/Review.php:95 IDF/Upload.php:99
+#: IDF/Wiki/Page.php:94
+msgid "labels"
+msgstr "标签"
+
+#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114
+#: IDF/Upload.php:118 IDF/Wiki/Page.php:106 IDF/Wiki/Resource.php:101
+msgid "modification date"
+msgstr "修改日期"
+
+#: IDF/Issue.php:212 IDF/IssueComment.php:143
+#, php-format
+msgid ""
+"Issue %3$d, %4$s"
+msgstr "问题 %3$d, %4$s"
+
+#: IDF/Issue.php:214
+#, fuzzy, php-format
+msgid "Creation of issue %3$d, by %4$s"
+msgstr "评论 issue %d, 由 %s"
+
+#: IDF/Issue.php:224
+#, fuzzy, php-format
+msgid "%1$s: Issue %2$d created - %3$s"
+msgstr "%s: Issue %d created - %s"
+
+#: IDF/Issue.php:307
+#, php-format
+msgid "Issue %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Issue.php:311
+#, php-format
+msgid "Updated Issue %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/IssueComment.php:51 IDF/IssueRelation.php:47
+msgid "issue"
+msgstr "问题"
+
+#: IDF/IssueComment.php:58 IDF/IssueFile.php:49 IDF/Review/Comment.php:62
+#: IDF/Review/FileComment.php:49 IDF/Review/FileComment.php:69
+msgid "comment"
+msgstr "评论"
+
+#: IDF/IssueComment.php:72 IDF/Review/Comment.php:75 IDF/Upload.php:63
+#: IDF/Wiki/PageRevision.php:85
+msgid "changes"
+msgstr "修改"
+
+#: IDF/IssueComment.php:73
+msgid "Serialized array of the changes in the issue."
+msgstr ""
+
+#: IDF/IssueComment.php:180
+#, fuzzy, php-format
+msgid "Comment on issue %3$d, by %4$s"
+msgstr "评论 issue %d, 由 %s"
+
+#: IDF/IssueComment.php:191
+#, php-format
+msgid "%1$s: Comment on issue %2$d - %3$s"
+msgstr ""
+
+#: IDF/IssueFile.php:64
+msgid "file name"
+msgstr "文件名"
+
+#: IDF/IssueFile.php:70
+msgid "the file"
+msgstr "文件"
+
+#: IDF/IssueFile.php:76
+msgid "file size"
+msgstr "文件大小"
+
+#: IDF/IssueFile.php:84
+msgid "type"
+msgstr "类型"
+
+#: IDF/IssueFile.php:86
+msgid "Image"
+msgstr "图片"
+
+#: IDF/IssueFile.php:87
+msgid "Other"
+msgstr "其它"
+
+#: IDF/IssueRelation.php:54
+msgid "verb"
+msgstr ""
+
+#: IDF/IssueRelation.php:61
+msgid "other issue"
+msgstr ""
+
+#: IDF/Key.php:55
+msgid "public key"
+msgstr ""
+
+#: IDF/Key.php:90
+msgid "Invalid or unknown key data detected."
+msgstr ""
+
+#: IDF/Plugin/SyncMercurial.php:78 IDF/Plugin/SyncSvn.php:81
+#, php-format
+msgid "The repository %s already exists."
+msgstr ""
+
+#: IDF/Plugin/SyncMercurial.php:142
+#, php-format
+msgid "%s does not exist or is not writable."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:107 IDF/Plugin/SyncMonotone.php:492
+msgid "\"mtn_repositories\" must be defined in your configuration file"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:114 IDF/Plugin/SyncMonotone.php:482
+msgid "\"mtn_usher_conf\" does not exist or is not writable"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:121
+#, php-format
+msgid "Could not find mtn-post-push script \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:155
+#, php-format
+msgid "The configuration file \"%s\" is missing"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:164
+#, php-format
+msgid "The project path \"%s\" already exists"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:170
+#, php-format
+msgid "The project path \"%s\" could not be created"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:208
+#, php-format
+msgid "The key directory \"%s\" could not be created"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:227
+#, php-format
+msgid "Could not parse key information: %s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:265
+#, php-format
+msgid "Could not create configuration directory \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:275
+#, php-format
+msgid "Could not create symlink for configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:293
+#, php-format
+msgid "Could not write configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:309 IDF/Plugin/SyncMonotone.php:525
+#, php-format
+msgid "Could not parse usher configuration in \"%1$s\": %2$s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:320
+#, php-format
+msgid "usher configuration already contains a server entry named \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:345 IDF/Plugin/SyncMonotone.php:546
+#, php-format
+msgid "Could not write usher configuration file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:395
+#, php-format
+msgid "Could not write write-permissions file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:420
+#, php-format
+msgid "Could not write read-permissions file \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:438
+#, php-format
+msgid "Could not remove symlink \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:446
+#, php-format
+msgid "Could not create symlink \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:500
+#, php-format
+msgid "One or more paths underneath %s could not be deleted"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:512
+#, php-format
+msgid "Could not delete client private key \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:599 IDF/Plugin/SyncMonotone.php:718
+#, php-format
+msgid "Could not parse read-permissions for project \"%1$s\": %2$s"
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:643 IDF/Plugin/SyncMonotone.php:741
+#, php-format
+msgid "Could not write read-permissions for project \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:657 IDF/Plugin/SyncMonotone.php:760
+#, php-format
+msgid "Could not write write-permissions file for project \"%s\""
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:813
+msgid "\"mtn_repositories\" must be defined in your configuration file."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:820
+#, php-format
+msgid "The project path %s does not exists."
+msgstr ""
+
+#: IDF/Plugin/SyncMonotone.php:838
+#, php-format
+msgid "The command \"%s\" could not be executed."
+msgstr ""
+
+#: IDF/Project.php:62 IDF/Tag.php:66
+msgid "name"
+msgstr "名称"
+
+#: IDF/Project.php:69
+msgid "short name"
+msgstr "短名称"
+
+#: IDF/Project.php:70
+msgid ""
+"Used in the URL to access the project, must be short with only letters and "
+"numbers."
+msgstr ""
+
+#: IDF/Project.php:78
+msgid "short description"
+msgstr "简要说明"
+
+#: IDF/Project.php:86 IDF/Review/Patch.php:74
+msgid "description"
+msgstr "说明"
+
+#: IDF/Project.php:87
+msgid "The description can be extended using the Markdown syntax."
+msgstr ""
+
+#: IDF/Project.php:100
+msgid "private"
+msgstr "私有"
+
+#: IDF/Project.php:108
+msgid "current project activity"
+msgstr ""
+
+#: IDF/Project.php:159
+#, php-format
+msgid "Project \"%s\" not found."
+msgstr ""
+
+#: IDF/ProjectActivity.php:56
+#, fuzzy
+msgid "date"
+msgstr "更新:"
+
+#: IDF/Review/Comment.php:55 IDF/Review/Patch.php:80
+msgid "patch"
+msgstr "补丁"
+
+#: IDF/Review/Comment.php:83
+msgid "vote"
+msgstr ""
+
+#: IDF/Review/Comment.php:139 IDF/Review/Patch.php:151
+#, php-format
+msgid ""
+"Review %3$d, %4$s"
+msgstr ""
+
+#: IDF/Review/Comment.php:141
+#, fuzzy, php-format
+msgid "Update of review %3$d, by %4$s"
+msgstr "问题 %3$d, %4$s"
+
+#: IDF/Review/Comment.php:151
+#, php-format
+msgid "%1$s: Updated review %2$d - %3$s"
+msgstr ""
+
+#: IDF/Review/Comment.php:222
+#, php-format
+msgid "Updated Code Review %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Review/Patch.php:52
+msgid "review"
+msgstr ""
+
+#: IDF/Review/Patch.php:67
+msgid "commit"
+msgstr ""
+
+#: IDF/Review/Patch.php:153
+#, fuzzy, php-format
+msgid "Creation of review %3$d, by %4$s"
+msgstr "评论 issue %d, 由 %s"
+
+#: IDF/Review/Patch.php:163
+#, php-format
+msgid "%1$s: Creation of Review %2$d - %3$s"
+msgstr ""
+
+#: IDF/Review/Patch.php:208
+#, php-format
+msgid "New Code Review %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Scm/Git.php:309 IDF/Scm/Mercurial.php:199
+#, php-format
+msgid "Folder %1$s not found in commit %2$s."
+msgstr ""
+
+#: IDF/Scm/Git.php:433 IDF/Scm/Mercurial.php:216
+#, php-format
+msgid "Not a valid tree: %s."
+msgstr ""
+
+#: IDF/Scm/Monotone/Stdio.php:81
+msgid "Monotone client key name or hash not in project conf."
+msgstr ""
+
+#: IDF/Scm/Monotone/Stdio.php:89
+#, php-format
+msgid "The key directory %s could not be created."
+msgstr ""
+
+#: IDF/Scm/Monotone/Stdio.php:100
+#, php-format
+msgid "Could not write client key \"%s\""
+msgstr ""
+
+#: IDF/Search/Occ.php:33
+msgid "occurrence"
+msgstr ""
+
+#: IDF/Search/Occ.php:49
+msgid "word"
+msgstr ""
+
+#: IDF/Search/Occ.php:75
+msgid "occurrences"
+msgstr ""
+
+#: IDF/Search/Occ.php:81
+msgid "ponderated occurrence"
+msgstr ""
+
+#: IDF/Tag.php:59
+msgid "tag class"
+msgstr ""
+
+#: IDF/Tag.php:60
+msgid "The class of the tag."
+msgstr ""
+
+#: IDF/Tag.php:73
+msgid "lcname"
+msgstr ""
+
+#: IDF/Tag.php:74
+msgid "Lower case version of the name for fast searching."
+msgstr ""
+
+#: IDF/Template/Markdown.php:84
+msgid "Create this documentation page"
+msgstr ""
+
+#: IDF/Template/Markdown.php:97
+msgid "You are not allowed to access the wiki."
+msgstr ""
+
+#: IDF/Template/Markdown.php:106
+#, fuzzy
+msgid "The wiki resource has not been found."
+msgstr "项目更新成功"
+
+#: IDF/Template/Markdown.php:113
+msgid "The wiki resource has not been found. Create it!"
+msgstr ""
+
+#: IDF/Template/Markdown.php:146
+msgid "This revision of the resource is no longer available."
+msgstr ""
+
+#: IDF/Template/ShowUser.php:51
+msgid "Anonymous"
+msgstr "匿名"
+
+#: IDF/Template/ShowUser.php:54
+msgid "Me"
+msgstr ""
+
+#: IDF/Timeline/Paginator.php:49
+msgid "Today"
+msgstr "今天"
+
+#: IDF/Upload.php:70
+msgid "file"
+msgstr "文件"
+
+#: IDF/Upload.php:71
+msgid "The path is relative to the upload path."
+msgstr ""
+
+#: IDF/Upload.php:78 IDF/Wiki/ResourceRevision.php:71
+msgid "file size in bytes"
+msgstr ""
+
+#: IDF/Upload.php:84
+msgid "MD5"
+msgstr ""
+
+#: IDF/Upload.php:106
+msgid "number of downloads"
+msgstr "下载数量"
+
+#: IDF/Upload.php:201
+#, php-format
+msgid "Download %2$d, %3$s"
+msgstr ""
+
+#: IDF/Upload.php:204
+#, php-format
+msgid "Addition of download %2$d, by %3$s"
+msgstr ""
+
+#: IDF/Upload.php:214
+#, php-format
+msgid "%1$s: Download %2$d added - %3$s"
+msgstr ""
+
+#: IDF/Upload.php:301
+#, fuzzy, php-format
+msgid "New download - %1$s (%2$s)"
+msgstr "上传 - %s (%s)"
+
+#: IDF/Upload.php:305
+#, fuzzy, php-format
+msgid "Updated download - %1$s (%2$s)"
+msgstr "上传 - %s (%s)"
+
+#: IDF/Views/Admin.php:47
+#, fuzzy
+msgid "The forge configuration has been saved."
+msgstr "下载配置保存成功"
+
+#: IDF/Views/Admin.php:80
+msgid "This table shows the projects in the forge."
+msgstr ""
+
+#: IDF/Views/Admin.php:85
+msgid "Short Name"
+msgstr "短名称"
+
+#: IDF/Views/Admin.php:87
+msgid "Repository Size"
+msgstr "仓库大小"
+
+#: IDF/Views/Admin.php:93
+msgid "No projects were found."
+msgstr "没有项目"
+
+#: IDF/Views/Admin.php:116
+#, fuzzy
+msgid "The label configuration has been saved."
+msgstr "下载配置保存成功"
+
+#: IDF/Views/Admin.php:147 IDF/Views/Admin.php:314 IDF/Views/Wiki.php:484
+#: IDF/Views/Wiki.php:536
+#, php-format
+msgid "Update %s"
+msgstr "更新 %s"
+
+#: IDF/Views/Admin.php:155 IDF/Views/Project.php:304
+msgid "The project has been updated."
+msgstr "项目更新成功"
+
+#: IDF/Views/Admin.php:192
+msgid "The project has been created."
+msgstr "项目创建成功"
+
+#: IDF/Views/Admin.php:223
+#, php-format
+msgid "Delete %s Project"
+msgstr "删除 %s 项目"
+
+#: IDF/Views/Admin.php:230
+msgid "The project has been deleted."
+msgstr "项目删除成功"
+
+#: IDF/Views/Admin.php:260
+msgid "Not Validated User List"
+msgstr "未验证的用户"
+
+#: IDF/Views/Admin.php:268
+msgid "This table shows the users in the forge."
+msgstr ""
+
+#: IDF/Views/Admin.php:272
+msgid "login"
+msgstr "登录"
+
+#: IDF/Views/Admin.php:275
+msgid "Admin"
+msgstr "管理员"
+
+#: IDF/Views/Admin.php:277
+msgid "Last Login"
+msgstr "最后登录"
+
+#: IDF/Views/Admin.php:284
+msgid "No users were found."
+msgstr "没有合适用户"
+
+#: IDF/Views/Admin.php:321
+msgid "You do not have the rights to update this user."
+msgstr ""
+
+#: IDF/Views/Admin.php:339
+msgid "The user has been updated."
+msgstr ""
+
+#: IDF/Views/Admin.php:372
+#, php-format
+msgid "The user %s has been created."
+msgstr ""
+
+#: IDF/Views/Admin.php:379
+msgid "Add User"
+msgstr "添加用户"
+
+#: IDF/Views/Admin.php:395
+msgid "Usher management"
+msgstr ""
+
+#: IDF/Views/Admin.php:432
+msgid "Usher configuration has been reloaded"
+msgstr ""
+
+#: IDF/Views/Admin.php:436
+msgid "Usher has been shut down"
+msgstr ""
+
+#: IDF/Views/Admin.php:441
+msgid "Usher has been started up"
+msgstr ""
+
+#: IDF/Views/Admin.php:479
+#, php-format
+msgid "The server \"%s\" has been started"
+msgstr ""
+
+#: IDF/Views/Admin.php:483
+#, php-format
+msgid "The server \"%s\" has been stopped"
+msgstr ""
+
+#: IDF/Views/Admin.php:488
+#, php-format
+msgid "The server \"%s\" has been killed"
+msgstr ""
+
+#: IDF/Views/Admin.php:508
+#, php-format
+msgid "Open connections for \"%s\""
+msgstr ""
+
+#: IDF/Views/Admin.php:513
+#, php-format
+msgid "no connections for server \"%s\""
+msgstr ""
+
+#: IDF/Views/Admin.php:534
+msgid "Yes"
+msgstr "是"
+
+#: IDF/Views/Admin.php:534
+msgid "No"
+msgstr "不"
+
+#: IDF/Views/Download.php:45
+#, php-format
+msgid "%s Downloads"
+msgstr "%s 下载"
+
+#: IDF/Views/Download.php:51
+msgid "This table shows the files to download."
+msgstr ""
+
+#: IDF/Views/Download.php:67 IDF/Views/Download.php:349
+msgid "Uploaded"
+msgstr "上传时间"
+
+#: IDF/Views/Download.php:71 IDF/Views/Download.php:353
+msgid "No downloads were found."
+msgstr "没有下载"
+
+#: IDF/Views/Download.php:94
+#, php-format
+msgid "Download %s"
+msgstr "下载 %s"
+
+#: IDF/Views/Download.php:111
+#, php-format
+msgid "The file %2$s has been updated."
+msgstr ""
+
+#: IDF/Views/Download.php:144
+#, php-format
+msgid "Delete Download %s"
+msgstr "删除下载 %s"
+
+#: IDF/Views/Download.php:177
+msgid "The file has been deleted."
+msgstr ""
+
+#: IDF/Views/Download.php:244
+#, php-format
+msgid "The file has been uploaded."
+msgstr ""
+
+#: IDF/Views/Download.php:271
+#, fuzzy
+msgid "New Downloads from Archive"
+msgstr "上传"
+
+#: IDF/Views/Download.php:278
+#, fuzzy
+msgid "The archive has been uploaded and processed."
+msgstr "项目更新成功"
+
+#: IDF/Views/Download.php:331
+#, php-format
+msgid "%1$s Downloads with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Download.php:341
+#, php-format
+msgid "This table shows the downloads with label %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:41
+#, php-format
+msgid "%s Open Issues"
+msgstr "%s 开放的问题"
+
+#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:382 IDF/Views/User.php:75
+msgid "This table shows the open issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:61 IDF/Views/Issue.php:220 IDF/Views/Issue.php:301
+#: IDF/Views/Issue.php:390 IDF/Views/Issue.php:542 IDF/Views/Issue.php:765
+#: IDF/Views/Issue.php:824 IDF/Views/Review.php:57 IDF/Views/User.php:81
+msgid "Id"
+msgstr "编号"
+
+#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:223 IDF/Views/Issue.php:305
+#: IDF/Views/Issue.php:393 IDF/Views/Issue.php:545 IDF/Views/Issue.php:768
+#: IDF/Views/Issue.php:827 IDF/Views/Review.php:60 IDF/Views/User.php:85
+msgid "Last Updated"
+msgstr "最后更新"
+
+#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:227 IDF/Views/Issue.php:309
+#: IDF/Views/Issue.php:397 IDF/Views/Issue.php:549 IDF/Views/Issue.php:772
+#: IDF/Views/Issue.php:831
+msgid "No issues were found."
+msgstr "没有问题"
+
+#: IDF/Views/Issue.php:113
+msgid "Not assigned"
+msgstr ""
+
+#: IDF/Views/Issue.php:149
+#, php-format
+msgid "Summary of tracked issues in %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:194
+#, php-format
+msgid "Watch List: Closed Issues for %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:195
+#, php-format
+msgid "This table shows the closed issues in your watch list for %s project."
+msgstr ""
+
+#: IDF/Views/Issue.php:200
+#, php-format
+msgid "Watch List: Open Issues for %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:201
+#, php-format
+msgid "This table shows the open issues in your watch list for %s project."
+msgstr ""
+
+#: IDF/Views/Issue.php:277
+msgid "Watch List: Closed Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:278
+msgid "This table shows the closed issues in your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:283
+msgid "Watch List: Open Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:284
+msgid "This table shows the open issues in your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:303 IDF/Views/User.php:82
+msgid "Project"
+msgstr "项目"
+
+#: IDF/Views/Issue.php:344
+#, fuzzy, php-format
+msgid "%1$s %2$s Submitted %3$s Issues"
+msgstr "发布的问题:"
+
+#: IDF/Views/Issue.php:348
+#, php-format
+msgid "%1$s %2$s Closed Submitted %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:352
+#, php-format
+msgid "%1$s %2$s Closed Working %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:356
+#, php-format
+msgid "%1$s %2$s Working %3$s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:417
+msgid "Submit a new issue"
+msgstr "提交新问题"
+
+#: IDF/Views/Issue.php:433
+#, php-format
+msgid "Issue %2$d has been created."
+msgstr ""
+
+#: IDF/Views/Issue.php:490
+#, php-format
+msgid "Search issues - %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:492
+#, php-format
+msgid "Search closed issues - %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:539
+msgid "This table shows the found issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:604
+#, fuzzy, php-format
+msgid "Issue %2$d: %3$s"
+msgstr "问题 %d: %s"
+
+#: IDF/Views/Issue.php:628
+#, php-format
+msgid "Issue %2$d has been updated."
+msgstr ""
+
+#: IDF/Views/Issue.php:718
+#, php-format
+msgid "View %s"
+msgstr "查看 %s"
+
+#: IDF/Views/Issue.php:745
+#, php-format
+msgid "%s Closed Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:755
+msgid "This table shows the closed issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:798
+#, php-format
+msgid "%1$s Issues with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Issue.php:801
+#, php-format
+msgid "%1$s Closed Issues with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Issue.php:814
+#, php-format
+msgid "This table shows the issues with label %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:937
+msgid "The issue has been removed from your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:940
+msgid "The issue has been added to your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:1037
+msgid "On your watch list."
+msgstr ""
+
+#: IDF/Views/Project.php:95
+msgid "Issues and Comments"
+msgstr ""
+
+#: IDF/Views/Project.php:99
+msgid "Documents"
+msgstr ""
+
+#: IDF/Views/Project.php:101
+msgid "Reviews and Patches"
+msgstr ""
+
+#: IDF/Views/Project.php:180
+msgid "This table shows the project updates."
+msgstr ""
+
+#: IDF/Views/Project.php:191
+msgid "Change"
+msgstr "更改"
+
+#: IDF/Views/Project.php:195
+msgid "No changes were found."
+msgstr "没有修改信息"
+
+#: IDF/Views/Project.php:296
+#, php-format
+msgid "%s Project Summary"
+msgstr "%s 项目摘要"
+
+#: IDF/Views/Project.php:335
+#, php-format
+msgid "%s Issue Tracking Configuration"
+msgstr "%s 问题跟踪配置"
+
+#: IDF/Views/Project.php:344
+msgid "The issue tracking configuration has been saved."
+msgstr "问题跟踪配置保存成功"
+
+#: IDF/Views/Project.php:381
+#, php-format
+msgid "%s Downloads Configuration"
+msgstr "%s 下载配置"
+
+#: IDF/Views/Project.php:393
+msgid "The downloads configuration has been saved."
+msgstr "下载配置保存成功"
+
+#: IDF/Views/Project.php:428
+#, php-format
+msgid "%s Documentation Configuration"
+msgstr "%s 文档配置"
+
+#: IDF/Views/Project.php:437
+msgid "The documentation configuration has been saved."
+msgstr "文档配置保存成功"
+
+#: IDF/Views/Project.php:471
+#, php-format
+msgid "%s Project Members"
+msgstr "%s 项目成员"
+
+#: IDF/Views/Project.php:480
+msgid "The project membership has been saved."
+msgstr "项目成员保存成功"
+
+#: IDF/Views/Project.php:503
+#, php-format
+msgid "%s Tabs Access Rights"
+msgstr "%s 访问权限"
+
+#: IDF/Views/Project.php:517
+#, fuzzy
+msgid ""
+"The project tabs access rights and notification settings have been saved."
+msgstr "项目访问权限保存成功"
+
+#: IDF/Views/Project.php:566
+#, php-format
+msgid "%s Source"
+msgstr "%s 源代码配置"
+
+#: IDF/Views/Project.php:580
+msgid "The project source configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Review.php:41
+#, php-format
+msgid "%s Code Reviews"
+msgstr "%s 代码审核"
+
+#: IDF/Views/Review.php:48
+msgid "This table shows the latest reviews."
+msgstr ""
+
+#: IDF/Views/Review.php:64
+msgid "No reviews were found."
+msgstr "没有审核"
+
+#: IDF/Views/Review.php:94
+#, php-format
+msgid "The code review %2$d has been created."
+msgstr ""
+
+#: IDF/Views/Review.php:140
+#, fuzzy, php-format
+msgid "Review %2$d: %3$s"
+msgstr "问题 %d: %s"
+
+#: IDF/Views/Review.php:160
+#, php-format
+msgid "Your code review %2$d has been published."
+msgstr ""
+
+#: IDF/Views/Source.php:40
+#, php-format
+msgid "%s Source Help"
+msgstr "%s 源代码帮助"
+
+#: IDF/Views/Source.php:58
+#, php-format
+msgid "%s Invalid Revision"
+msgstr ""
+
+#: IDF/Views/Source.php:82
+#, php-format
+msgid "%s Ambiguous Revision"
+msgstr ""
+
+#: IDF/Views/Source.php:107
+#, php-format
+msgid "%1$s %2$s Change Log"
+msgstr "%1$s %2$s 修改日志"
+
+#: IDF/Views/Source.php:153 IDF/Views/Source.php:234 IDF/Views/Source.php:362
+#, php-format
+msgid "%1$s %2$s Source Tree"
+msgstr "%1$s %2$s 源码树"
+
+#: IDF/Views/Source.php:310
+#, php-format
+msgid "%s Commit Details"
+msgstr ""
+
+#: IDF/Views/Source.php:311
+#, php-format
+msgid "%1$s Commit Details - %2$s"
+msgstr ""
+
+#: IDF/Views/User.php:59
+msgid "Your Dashboard - Working Issues"
+msgstr "你的任务"
+
+#: IDF/Views/User.php:62
+msgid "Your Dashboard - Submitted Issues"
+msgstr ""
+
+#: IDF/Views/User.php:89
+msgid "No issues are assigned to you, yeah!"
+msgstr "太棒了,没有签给你的问题!"
+
+#: IDF/Views/User.php:89
+msgid "All the issues you submitted are fixed, yeah!"
+msgstr ""
+
+#: IDF/Views/User.php:121
+msgid "Your personal information has been updated."
+msgstr "你的个人资料更新成功"
+
+#: IDF/Views/User.php:133
+msgid "Your Account"
+msgstr "账户"
+
+#: IDF/Views/User.php:157
+msgid "The public key has been deleted."
+msgstr ""
+
+#: IDF/Views/User.php:177
+msgid "The address has been deleted."
+msgstr ""
+
+#: IDF/Views/User.php:200
+msgid "Confirm The Email Change"
+msgstr ""
+
+#: IDF/Views/User.php:232
+#, php-format
+msgid "Your new email address \"%s\" has been validated. Thank you!"
+msgstr ""
+
+#: IDF/Views/Wiki.php:41
+#, php-format
+msgid "%s Documentation"
+msgstr "%s 文档"
+
+#: IDF/Views/Wiki.php:48
+msgid "This table shows the documentation pages."
+msgstr ""
+
+#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:144 IDF/Views/Wiki.php:185
+msgid "Page Title"
+msgstr "标题"
+
+#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:103 IDF/Views/Wiki.php:146
+#: IDF/Views/Wiki.php:187
+msgid "Updated"
+msgstr ""
+
+#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:191
+msgid "No documentation pages were found."
+msgstr "没有文档"
+
+#: IDF/Views/Wiki.php:88
+#, fuzzy, php-format
+msgid "%s Documentation Resources"
+msgstr "%s 文档"
+
+#: IDF/Views/Wiki.php:94
+msgid "This table shows the resources that can be used on documentation pages."
+msgstr ""
+
+#: IDF/Views/Wiki.php:100
+#, fuzzy
+msgid "Resource Title"
+msgstr "源码"
+
+#: IDF/Views/Wiki.php:107
+#, fuzzy
+msgid "No resources were found."
+msgstr "没有问题"
+
+#: IDF/Views/Wiki.php:128
+#, php-format
+msgid "Documentation Search - %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:139
+msgid "This table shows the pages found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:150
+msgid "No pages were found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:169
+#, php-format
+msgid "%1$s Documentation Pages with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:179
+#, php-format
+msgid "This table shows the documentation pages with label %s."
+msgstr ""
+
+#: IDF/Views/Wiki.php:222
+#, fuzzy, php-format
+msgid "The page %2$s has been created."
+msgstr "项目创建成功"
+
+#: IDF/Views/Wiki.php:265
+#, fuzzy, php-format
+msgid "The resource %2$s has been created."
+msgstr "项目创建成功"
+
+#: IDF/Views/Wiki.php:409 IDF/Views/Wiki.php:448
+msgid "The old revision has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:415 IDF/Views/Wiki.php:454
+#, php-format
+msgid "Delete Old Revision of %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:496
+#, fuzzy, php-format
+msgid "The page %2$s has been updated."
+msgstr "项目更新成功"
+
+#: IDF/Views/Wiki.php:548
+#, fuzzy, php-format
+msgid "The resource %2$s has been updated."
+msgstr "项目更新成功"
+
+#: IDF/Views/Wiki.php:583
+msgid "The documentation page has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:591
+#, php-format
+msgid "Delete Page %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:623
+#, fuzzy
+msgid "The documentation resource has been deleted."
+msgstr "文档配置保存成功"
+
+#: IDF/Views/Wiki.php:631
+#, fuzzy, php-format
+msgid "Delete Resource %s"
+msgstr "删除版本"
+
+#: IDF/Views.php:173 IDF/Views.php:199
+msgid "Confirm Your Account Creation"
+msgstr ""
+
+#: IDF/Views.php:219
+msgid "Welcome! You can now participate in the life of your project of choice."
+msgstr ""
+
+#: IDF/Views.php:245 IDF/Views.php:269 IDF/Views.php:310
+msgid "Password Recovery"
+msgstr "找回密码"
+
+#: IDF/Views.php:289
+msgid ""
+"Welcome back! Next time, you can use your broswer options to remember the "
+"password."
+msgstr "欢迎回来!接下来,你可以使用浏览器记住你的密码"
+
+#: IDF/Views.php:331
+msgid "Here to Help You!"
+msgstr "希望这些能帮到你"
+
+#: IDF/Views.php:347
+msgid "InDefero Upload Archive Format"
+msgstr ""
+
+#: IDF/Views.php:363
+msgid "InDefero API (Application Programming Interface)"
+msgstr ""
+
+#: IDF/Wiki/Page.php:62 IDF/Wiki/Resource.php:64
+msgid "title"
+msgstr "标题"
+
+#: IDF/Wiki/Page.php:63
+msgid ""
+"The title of the page must only contain letters, digits or the dash "
+"character. For example: My-new-Wiki-Page."
+msgstr ""
+
+#: IDF/Wiki/Page.php:71
+msgid "A one line description of the page content."
+msgstr ""
+
+#: IDF/Wiki/Page.php:196 IDF/Wiki/PageRevision.php:196
+#, php-format
+msgid "%2$s, %3$s"
+msgstr ""
+
+#: IDF/Wiki/Page.php:198
+#, php-format
+msgid "Creation of page %2$s, by %3$s"
+msgstr ""
+
+#: IDF/Wiki/Page.php:208
+#, php-format
+msgid "%1$s: Documentation page %2$s added - %3$s"
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:48
+msgid "page"
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:66 IDF/Wiki/ResourceRevision.php:64
+msgid "A one line description of the changes."
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:72
+msgid "content"
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:218 IDF/Wiki/ResourceRevision.php:311
+#, fuzzy, php-format
+msgid "Change of %2$s, by %3$s"
+msgstr "问题 %d: %s"
+
+#: IDF/Wiki/PageRevision.php:231
+#, php-format
+msgid "%1$s: Documentation page %2$s updated - %3$s"
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:293
+#, php-format
+msgid "New Documentation Page %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Wiki/PageRevision.php:297
+#, php-format
+msgid "Documentation Page Changed %1$s - %2$s (%3$s)"
+msgstr ""
+
+#: IDF/Wiki/Resource.php:65
+msgid ""
+"The title of the resource must only contain letters, digits, dots or the "
+"dash character. For example: my-resource.png."
+msgstr ""
+
+#: IDF/Wiki/Resource.php:72
+msgid "MIME media type"
+msgstr ""
+
+#: IDF/Wiki/Resource.php:73
+msgid "The MIME media type of the resource."
+msgstr ""
+
+#: IDF/Wiki/Resource.php:81
+#, fuzzy
+msgid "A one line description of the resource."
+msgstr "项目简单描述"
+
+#: IDF/Wiki/Resource.php:176 IDF/Wiki/ResourceRevision.php:308
+#, fuzzy, php-format
+msgid "%2$s, %3$s"
+msgstr "问题 %3$d, %4$s"
+
+#: IDF/Wiki/Resource.php:178
+#, fuzzy, php-format
+msgid "Creation of resource %2$s, by %3$s"
+msgstr "评论 issue %d, 由 %s"
+
+#: IDF/Wiki/Resource.php:188
+#, php-format
+msgid "%1$s: Documentation resource %2$s added - %3$s"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:47
+#, fuzzy
+msgid "resource"
+msgstr "源代码"
+
+#: IDF/Wiki/ResourceRevision.php:78
+msgid "File extension"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:79
+msgid "The file extension of the uploaded resource."
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:94
+msgid "page usage"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:116
+#, php-format
+msgid "id %d: %s"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:263
+#, fuzzy, php-format
+msgid "Download (%s)"
+msgstr "下载 %s"
+
+#: IDF/Wiki/ResourceRevision.php:270
+msgid "View resource details"
+msgstr ""
+
+#: IDF/Wiki/ResourceRevision.php:324
+#, php-format
+msgid "%1$s: Documentation resource %2$s updated - %3$s"
+msgstr ""
+
+#~ msgid "Your mail"
+#~ msgstr "你的Email"
diff --git a/indefero/src/IDF/relations.php b/indefero/src/IDF/relations.php
new file mode 100644
index 0000000..b8ae4e3
--- /dev/null
+++ b/indefero/src/IDF/relations.php
@@ -0,0 +1,123 @@
+ array('IDF_Project'));
+$m['IDF_Tag'] = array('relate_to' => array('IDF_Project'),
+ 'relate_to_many' => array('IDF_Project'));
+$m['IDF_Issue'] = array('relate_to' => array('IDF_Project', 'Pluf_User', 'IDF_Tag'),
+ 'relate_to_many' => array('IDF_Tag', 'Pluf_User'));
+$m['IDF_IssueComment'] = array('relate_to' => array('IDF_Issue', 'Pluf_User'));
+$m['IDF_IssueFile'] = array('relate_to' => array('IDF_IssueComment', 'Pluf_User'));
+$m['IDF_Upload'] = array('relate_to' => array('IDF_Project', 'Pluf_User'),
+ 'relate_to_many' => array('IDF_Tag'));
+$m['IDF_Search_Occ'] = array('relate_to' => array('IDF_Project'),);
+$m['IDF_Wiki_Page'] = array('relate_to' => array('IDF_Project', 'Pluf_User'),
+ 'relate_to_many' => array('IDF_Tag', 'Pluf_User'));
+$m['IDF_Wiki_PageRevision'] = array('relate_to' => array('IDF_Wiki_Page', 'Pluf_User'));
+$m['IDF_Wiki_Resource'] = array('relate_to' => array('IDF_Project', 'Pluf_User'));
+$m['IDF_Wiki_ResourceRevision'] = array('relate_to' => array('IDF_Wiki_Resource', 'Pluf_User'),
+ 'relate_to_many' => array('IDF_PageRevision', 'Pluf_User'));
+$m['IDF_Review'] = array('relate_to' => array('IDF_Project', 'Pluf_User', 'IDF_Tag'),
+ 'relate_to_many' => array('IDF_Tag', 'Pluf_User'));
+$m['IDF_Review_Patch'] = array('relate_to' => array('IDF_Review', 'Pluf_User'));
+$m['IDF_Review_Comment'] = array('relate_to' => array('IDF_Review_Patch', 'Pluf_User'));
+$m['IDF_Review_FileComment'] = array('relate_to' => array('IDF_Review_Comment', 'Pluf_User'));
+$m['IDF_Key'] = array('relate_to' => array('Pluf_User'));
+$m['IDF_Conf'] = array('relate_to' => array('IDF_Project'));
+$m['IDF_Commit'] = array('relate_to' => array('IDF_Project', 'Pluf_User'));
+$m['IDF_Scm_Cache_Git'] = array('relate_to' => array('IDF_Project'));
+
+$m['IDF_UserData'] = array('relate_to' => array('Pluf_User'));
+$m['IDF_EmailAddress'] = array('relate_to' => array('Pluf_User'));
+$m['IDF_IssueRelation'] = array('relate_to' => array('IDF_Issue', 'Pluf_User'));
+
+Pluf_Signal::connect('Pluf_Template_Compiler::construct_template_tags_modifiers',
+ array('IDF_Middleware', 'updateTemplateTagsModifiers'));
+
+# -- Standard plugins, they will run only if configured --
+#
+# Subversion synchronization
+Pluf_Signal::connect('IDF_Project::membershipsUpdated',
+ array('IDF_Plugin_SyncSvn', 'entry'));
+Pluf_Signal::connect('IDF_Project::created',
+ array('IDF_Plugin_SyncSvn', 'entry'));
+Pluf_Signal::connect('Pluf_User::passwordUpdated',
+ array('IDF_Plugin_SyncSvn', 'entry'));
+Pluf_Signal::connect('IDF_Project::preDelete',
+ array('IDF_Plugin_SyncSvn', 'entry'));
+Pluf_Signal::connect('svnpostcommit.php::run',
+ array('IDF_Plugin_SyncSvn', 'entry'));
+
+#
+# Mercurial synchronization
+Pluf_Signal::connect('IDF_Project::membershipsUpdated',
+ array('IDF_Plugin_SyncMercurial', 'entry'));
+Pluf_Signal::connect('IDF_Project::created',
+ array('IDF_Plugin_SyncMercurial', 'entry'));
+Pluf_Signal::connect('Pluf_User::passwordUpdated',
+ array('IDF_Plugin_SyncMercurial', 'entry'));
+Pluf_Signal::connect('hgchangegroup.php::run',
+ array('IDF_Plugin_SyncMercurial', 'entry'));
+
+#
+# Git synchronization
+Pluf_Signal::connect('IDF_Project::membershipsUpdated',
+ array('IDF_Plugin_SyncGit', 'entry'));
+Pluf_Signal::connect('IDF_Key::postSave',
+ array('IDF_Plugin_SyncGit', 'entry'));
+Pluf_Signal::connect('IDF_Project::created',
+ array('IDF_Plugin_SyncGit', 'entry'));
+Pluf_Signal::connect('IDF_Key::preDelete',
+ array('IDF_Plugin_SyncGit', 'entry'));
+Pluf_Signal::connect('gitpostupdate.php::run',
+ array('IDF_Plugin_SyncGit', 'entry'));
+
+#
+# monotone synchronization
+Pluf_Signal::connect('IDF_Project::created',
+ array('IDF_Plugin_SyncMonotone', 'entry'));
+Pluf_Signal::connect('IDF_Project::membershipsUpdated',
+ array('IDF_Plugin_SyncMonotone', 'entry'));
+Pluf_Signal::connect('IDF_Project::preDelete',
+ array('IDF_Plugin_SyncMonotone', 'entry'));
+Pluf_Signal::connect('IDF_Key::postSave',
+ array('IDF_Plugin_SyncMonotone', 'entry'));
+Pluf_Signal::connect('IDF_Key::preDelete',
+ array('IDF_Plugin_SyncMonotone', 'entry'));
+Pluf_Signal::connect('mtnpostpush.php::run',
+ array('IDF_Plugin_SyncMonotone', 'entry'));
+
+#
+# -- Processing of the webhook queue --
+Pluf_Signal::connect('queuecron.php::run',
+ array('IDF_Queue', 'process'));
+
+#
+# Processing of a given webhook, the hook can be configured
+# directly in the configuration file if a different solution
+# is required.
+Pluf_Signal::connect('IDF_Queue::processItem',
+ Pluf::f('idf_hook_process_item',
+ array('IDF_Webhook', 'process')));
+return $m;
diff --git a/indefero/src/IDF/templates/idf/admin/base.html b/indefero/src/IDF/templates/idf/admin/base.html
new file mode 100644
index 0000000..863df48
--- /dev/null
+++ b/indefero/src/IDF/templates/idf/admin/base.html
@@ -0,0 +1,13 @@
+{extends "idf/base.html"}
+{block tabadmin} class="active"{/block}
+{block subtabs}
+
List one status value per line in desired sort-order.
+
Optionally, use an equals-sign to document the meaning of each status value.
+{/blocktrans}
+
+
+
+{blocktrans}
The webhook URL setting specifies an URL to which a HTTP PUT
+request is sent after a new download has been added or to which a HTTP POST
+request is sent after an existing download has been updated.
+If this field is empty, notifications are disabled.
+
+
Only properly-escaped HTTP URLs are supported, for example:
+
+
+
http://domain.com/upload
+
http://domain.com/upload?my%20param
+
+
+
In addition, the URL may contain the following "%" notation, which
+will be replaced with specific project values for each download:
+
+
+
%p - project name
+
%d - download id
+
+
+
For example, updating download 123 of project 'my-project' with
+web hook URL http://mydomain.com/%p/%d would send a POST request to
+http://mydomain.com/my-project/123.
{blocktrans}You can find here the current repository configuration of your project.{/blocktrans}
+
+
+
+
+
+
+{blocktrans}
The webhook URL setting specifies an URL to which a HTTP
+{$hook_request_method} request is sent after each repository
+commit. If this field is empty, notifications are disabled.
+
+
Only properly-escaped HTTP URLs are supported, for example:
+
+
+
http://domain.com/commit
+
http://domain.com/commit?my%20param
+
+
+
In addition, the URL may contain the following "%" notation, which
+will be replaced with specific project values for each commit:
+
+
+
%p - project name
+
%r - revision number
+
+
+
For example, committing revision 123 to project 'my-project' with
+post-commit URL http://mydomain.com/%p/%r would send a request to
+http://mydomain.com/my-project/123.
{blocktrans}This section allows you to configure project tabs access rights and notifications.{/blocktrans}
+
{trans 'Access Rights'}
+
{blocktrans}Tab access controls whether a single user can navigate into a particular section of your project via the main menu or automatically generated object links.{/blocktrans}
+
{blocktrans}If you mark a project as private, only the project members and administrators, together with the extra authorized users you provide will have access to the project as a whole. You will still be able to define further access rights for the different tabs but the "Open to all" and "Signed in users" will default to authorized users only.{/blocktrans}
+
{blocktrans}For the extra authorized user list, specify each person by its login. Each person must have already registered with the given login. Separate the logins with commas and/or new lines.{/blocktrans}
+
{blocktrans}Only project members and admins have write access to the source. If you restrict the access to the source, anonymous access is not provided and the users must authenticate themselves with their password or SSH key.{/blocktrans}
+
{trans 'Notifications'}
+
{blocktrans}Here you can configure who should be notified about changes in a particular section. You can also configure additional addresses, like the one of a mailing list, that should be notified. (Keep in mind that you might have to register the sender address {$from_email} to let the mailing list actually accept notification emails.) Multiple email addresses must be separated through commas (',').{/blocktrans}
List one status value per line in desired sort-order.
+
Optionally, use an equals-sign to document the meaning of each status value.
+{/blocktrans}
+
+{/block}
diff --git a/indefero/src/IDF/templates/idf/base-full.html b/indefero/src/IDF/templates/idf/base-full.html
new file mode 100644
index 0000000..68a4f25
--- /dev/null
+++ b/indefero/src/IDF/templates/idf/base-full.html
@@ -0,0 +1,89 @@
+
+{*
+# ***** BEGIN LICENSE BLOCK *****
+# This file is part of InDefero, an open source project management application.
+# Copyright (C) 2008-2011 Céondo Ltd and contributors.
+#
+# InDefero 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.
+#
+# InDefero 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 this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
+# ***** END LICENSE BLOCK *****
+*}
+
+
+
+
+
+
+ {block extraheader}{/block}
+ {block pagetitle}{$page_title|strip_tags}{/block}{if $project} - {$project.shortdesc}{/if}
+
+ {appversion}
+
+
+
+{block subtabs}{if $user.isAnonymous()} | {aurl 'url', 'IDF_Views::login'}{blocktrans}Sign in or create your account to create issues or add comments{/blocktrans}{/if}{/block}
+
+{include 'idf/js-hotkeys.html'}
+{block javascript}{/block}
+{if $project}
+{/if}
+
+
diff --git a/indefero/src/IDF/templates/idf/base-simple.html b/indefero/src/IDF/templates/idf/base-simple.html
new file mode 100644
index 0000000..e1323ad
--- /dev/null
+++ b/indefero/src/IDF/templates/idf/base-simple.html
@@ -0,0 +1,60 @@
+
+{*
+# ***** BEGIN LICENSE BLOCK *****
+# This file is part of InDefero, an open source project management application.
+# Copyright (C) 2008-2011 Céondo Ltd and contributors.
+#
+# InDefero 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.
+#
+# InDefero 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 this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
+# ***** END LICENSE BLOCK *****
+*}
+
+
+
+
+
+
+ {block extraheader}{/block}
+ {block pagetitle}{$page_title|strip_tags}{/block}
+
+ {appversion}
+
+
+
+
+ {include 'idf/main-menu.html'}
+
{block title}{$page_title}{/block}
+
+
+
+
+
+ {if $user and $user.id}{getmsgs $user}{/if}
+
{block body}{/block}
+
+
+
+
{block context}{/block}
+
+
{block foot}{/block}
+
+{include 'idf/js-hotkeys.html'}
+{include 'idf/list-filter.html'}
+{block javascript}{/block}
+
+
diff --git a/indefero/src/IDF/templates/idf/base.html b/indefero/src/IDF/templates/idf/base.html
new file mode 100644
index 0000000..0da2c3f
--- /dev/null
+++ b/indefero/src/IDF/templates/idf/base.html
@@ -0,0 +1,114 @@
+
+{*
+# ***** BEGIN LICENSE BLOCK *****
+# This file is part of InDefero, an open source project management application.
+# Copyright (C) 2008-2011 Céondo Ltd and contributors.
+#
+# InDefero 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.
+#
+# InDefero 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 this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
+# ***** END LICENSE BLOCK *****
+*}
+
+
+
+
+
+
+
+ {block extraheader}{/block}
+ {block pagetitle}{$page_title|strip_tags}{/block}{if $project} - {$project.shortdesc}{/if}
+
+ {appversion}
+
+
+
+
+{block subtabs}{if $user.isAnonymous()} | {aurl 'url', 'IDF_Views::login'}{blocktrans}Sign in or create your account to create issues or add comments{/blocktrans}{/if}{/block}
+
{blocktrans}Each file must have a distinct name and file contents
+cannot be changed, so be sure to include release numbers in each file
+name.{/blocktrans}
{blocktrans}The archive must include a manifest.xml file with meta information about the
+files to process inside the archive. All processed files must be unique or replace existing files explicitely.{/blocktrans}
+{aurl 'url', 'IDF_Views::faqArchiveFormat'}
+
{blocktrans}You can learn more about the archive format here.{/blocktrans}
{blocktrans}Attention! If you want to delete a specific version of your software, maybe, someone is depending on this specific version to run his systems. Are you sure, you will not affect anybody when removing this file?{/blocktrans}
+The API is a REST API and you can access it by using the same URL you
+are using for the web interface but with the /api/
+prefix.
+
+
+For example, if you access a project with the
+URL http://www.example.com/p/myproject/, you have the
+following API URLs available:
+
+
+
http://www.example.com/api/p/myproject/issues/: list the open issues.
+
http://www.example.com/api/p/myproject/issues/create/: create a new issue.
+
+
+The answer you get is JSON and UTF-8 encoded.
+
+
+
+
How to authenticate the queries?
+
+
+Authentication is really simple and is optional. If you do not
+authenticate your queries, you will have the same rights as an
+anonymous user visiting the normal web interface.
+
+
+To authenticate your query, you need to provide 3 parameters to your
+requests, the parameters are the followings:
+
+
+
_login: your login.
+
_salt: a random salt string.
+
_hash: the sha1 hash created from the concatenation of the random salt string and the API key.
+
+
+Please note that the 3 parameters are all starting with the underscore
+"_" character.
+
+
+An example of PHP code to generate the _hash value is:
+
+Adding multiple, individual downloads to a project for a release can be a tedious task if
+one has to select each file manually, and then has to fill in the summary and correct labels
+for each of these downloads individually.
+
+
+
+InDefero therefore supports the upload of "archives" that contain multiple downloadable
+files. These archives are standard PKZIP files with only one special property - they
+contain an additional manifest file which describes the files that should be published.
+
+
+
+Once such an archive has been uploaded and validated by InDefero, its files are extracted
+and individual downloads are created for each of them. If the archive contains files
+that should replace existing downloads, then InDefero takes care of this as well -
+automatically. Files that exist in the archive but are not listed in the manifest are
+not extracted.
+
+
+
+An archive file and its manifest file can easily be compiled, either by hand with the help
+of a text editor, or through an automated build system with the help of your build tool of
+choice, such as Apache Ant.
+
+
+
The manifest format
+
+
+The manifest is an XML file that follows a simple syntax. As it is always easier to look
+at an example, here you have one:
+
+The format is more or less self-explaining, all fields map to properties of a single download. Note
+that there is a limit of six labels that you can attach to a download, similar to
+what the regular file upload functionality allows.
+
+
+
One special element has been introduced and this is named replaces. If this optional element
+is given, InDefero looks for a file with that name in the project and acts in one of the following
+two ways:
+
+
+
+
If the new file's name is distinct from the file's name that is given in replaces,
+then the replaced file is marked as deprecated with the Other:Deprecated label
+(or any other label that is configured as the very last label in the download project configuration).
+
If the new file's name is equal to the file's name that is given in replaces,
+then the replaced file is deleted before the new file is created. This happens because each file name
+has to be unique per project and a deprecated and a new file with the same name cannot coexist in InDefero.
+Note that while the filename-based URI of the download keeps intact, the download counter will be reset by
+this procedure.
+
+
+If no existing file is found for the replaces tag, then this is completely ignored.
+
+
+
Final notes
+
+
Any file in the archive that is not enlisted in the manifest is ignored during
+the upload process, so ensure that your manifest.xml contains all the file names (case
+sensitive) you want to be processed.
{trans 'If you are in a project, you have the following shortcuts:'}
+
+
+
{trans 'Shift+u: Project updates.'}
+
{trans 'Shift+d: Downloads.'}
+
{trans 'Shift+o: Documentation.'}
+
{trans 'Shift+a: Create a new issue.'}
+
{trans 'Shift+i: List of open issues.'}
+
{trans 'Shift+m: The issues you submitted.'}
+
{trans 'Shift+w: The issues assigned to you.'}
+
{trans 'Shift+s: Source.'}
+
+
+
{trans 'You also have the standard access keys:'}
+
+
+
{trans 'Alt+1: Home.'}
+
{trans 'Alt+2: Skip the menus.'}
+
{trans 'Alt+4: Search (when available).'}
+
+
+
{trans 'How to mark an issue as duplicate?'}
+
+{blocktrans}
This is simple:
+
+
Write in the comments "This is a duplicate of issue 123" or - if you are a member of the crew -
+directly add the "duplicates" relation with the value "123" below the comment field. Change "123"
+with the corresponding issue number.
+
Change the status of the current issue to Duplicate.
+
Submit the changes.
+{/blocktrans}
+
+
{trans 'How can I display my head next to my comments?'}
+
+
{blocktrans}You need to create an account on Gravatar, this takes about 5 minutes and is free.{/blocktrans}
+
+
{trans 'How can I embed images and other resources in my documentation pages?'}
+
+{blocktrans}
+
To embed any previously uploaded resource into your wiki page, you can use the [[!ResourceName]] syntax.
+
+
The rendering of the resource can then be further fine-tuned:
+
+
[[!ImageResource, align=right, width=200]] renders "ImageResource" right-aligned and scale its width to 200
+
[[!TextResource, align=center, width=300, height=300]] renders "TextResource" in a centered, 300 by 300 px iframe
+
[[!AnyResource, preview=no]] does not render a preview of the resource, but only provides a download link (default for binary resources)
+
[[!BinaryResource, title=Download]] renders the download link of "BinaryResource" with an alternative title
+
+
+
+Resources are versioned, just like wiki pages. If you update a resource, old wiki pages still show the state of the resource
+at the time when the wiki page was edited. If you specifically want to update a resource on a page, you therefor need to update
+the resource at first and then also the page where it is referenced, otherwise the change won't be visible until the next regular edit.
+{/blocktrans}
+
+
{trans 'What is this "Upload Archive" functionality about?'}
+
+{blocktrans}
If you have to publish many files at once for a new release, it is a very tedious task
+to upload them one after another and enter meta information like a summary, a description or additional
+labels for each of them.
+
InDefero therefore supports a special archive format that is basically a standard zip file which comes with
+some meta information. These meta information are kept in a special manifest file, which is distinctly kept from
+the rest of the files in the archive that should be published.
+
Once this archive has been uploaded, InDefero reads in the meta information, unpacks the other files from
+the archive and creates new individual downloads for each of them.
{blocktrans}The API (Application Programming Interface) is used to interact with InDefero with another program. For example, this can be used to create a desktop program to submit new tickets easily.{/blocktrans}
+{/block}
diff --git a/indefero/src/IDF/templates/idf/gadmin/base.html b/indefero/src/IDF/templates/idf/gadmin/base.html
new file mode 100644
index 0000000..641b34f
--- /dev/null
+++ b/indefero/src/IDF/templates/idf/gadmin/base.html
@@ -0,0 +1,69 @@
+
+{*
+# ***** BEGIN LICENSE BLOCK *****
+# This file is part of InDefero, an open source project management application.
+# Copyright (C) 2008-2011 Céondo Ltd and contributors.
+#
+# InDefero 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.
+#
+# InDefero 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 this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+#
+# ***** END LICENSE BLOCK *****
+*}
+
+
+
+
+
+ {block extraheader}{/block}
+ {block pagetitle}{$page_title|strip_tags}{/block}
+
+ {appversion}
+
+
+
You can set up a custom forge page that is used as entry page for the forge instead of the plain project listing. This page is then also accessible via the 'Home' link in main menu bar.
Additionally, the following macros are available:
+
+
{projectlist, label=..., order=(name|activity), limit=...} - Renders a project list that can optionally be filtered by label, ordered by 'name' or 'activity' and / or limited to a specific number of projects.
{blocktrans}You can select the type of repository you want. In the case of subversion, you can use optionally a remote repository instead of the local one.{/blocktrans}
+
{blocktrans}Once you have defined the repository type, you cannot change it.{/blocktrans}
+
+
+{blocktrans}
+
Specify each person by its login. Each person must have already registered with the given login.
+
Separate the logins with commas and/or new lines.
+{/blocktrans}
+
+
+{blocktrans}
+
Notes:
+
A project owner may make any change to this project, including removing other project owners. You need to be carefull when you give owner rights.
+
A project member will not have access to the administration area but will have more options available in the use of the project.
{blocktrans}
+Attention! Deleting a project is a one second operation
+with the consequences that all the data related to the
+project will be deleted.
+{/blocktrans}
+{/if}
+
+{if $closed and (!$isOwner and !$isMember)}
+
{blocktrans}This issue is marked as closed, add a comment only if you think this issue is still valid and more work is needed to fully fix it.{/blocktrans}
+ {foreach $labels as $idx => $label}
+ {* 0.75 - or 75% - is the minimum font size we'd like to see in this tag cloud *}
+ {assign $fontScale = round($label.rel_project_count * 100) + 75}
+
+{/block}
+
+
diff --git a/indefero/src/IDF/templates/idf/register/confirmation-email.txt b/indefero/src/IDF/templates/idf/register/confirmation-email.txt
new file mode 100644
index 0000000..7da9008
--- /dev/null
+++ b/indefero/src/IDF/templates/idf/register/confirmation-email.txt
@@ -0,0 +1,27 @@
+{blocktrans}Hello,
+
+You have requested the creation of an account to
+participate in the life of a software project.
+
+To confirm the account please follow this link:
+
+{$url|safe}
+
+Alternatively, go to this page:
+
+{$urlik|safe}
+
+and provide the following confirmation key:
+
+{$key}
+
+If you are not interested any longer in taking
+part in the life of the software project or if
+you can't remember having requested the creation
+of an account, please excuse us and simply ignore
+this email.
+
+Yours faithfully,
+The development team.
+{/blocktrans}
+
diff --git a/indefero/src/IDF/templates/idf/register/confirmation.html b/indefero/src/IDF/templates/idf/register/confirmation.html
new file mode 100644
index 0000000..cb4bf95
--- /dev/null
+++ b/indefero/src/IDF/templates/idf/register/confirmation.html
@@ -0,0 +1,65 @@
+{extends "idf/base-simple.html"}
+{block body}
+{if $form.errors}
+
{trans 'Be sure to provide a valid email address, as we are sending a validation link by email.'}
+{aurl 'url', 'IDF_Views::passwordRecoveryAsk'}
+
{blocktrans}If you have just forgotten your login information, then there is no need to create a new account. You can just recover your login name and password.{/blocktrans}
+
{trans 'Did you know?'}
+{aurl 'url', 'IDF_Views::faq'}
+{blocktrans}With your account, you will able to participate in the life of all the projects hosted here. Participating in a software project must be fun, so if you have troubles, you can let us know about your issues at anytime!{/blocktrans}
{trans 'Use your email software to read your emails and open your confirmation email. Either click directly on the confirmation link or copy/paste the confirmation key in the box and submit the form.'}
+
{trans 'Just after providing the confirmation key, you will be able to set your password and start using this website fully.'}
{blocktrans}Code review is a process in which
+after or before changes are commited into the code repository,
+different people discuss the code changes. The goal is
+to improve the quality of the code and the
+contributions, as such, you must be pragmatic when writing
+your review. Correctly mention the line numbers (in the old or in the
+new file) and try to keep a good balance between seriousness and fun.
+{/blocktrans}
+
{blocktrans}
+Proposing code for review is intimidating, you know
+you will receive critics, so please, as a reviewer, keep this
+process fun, use it to help your contributor learn your
+coding standards and the structure of the code and make them want
+to propose more contributions.
+{/blocktrans}
{blocktrans}Source at commit {$commit} created {$cobject.date|dateago}.{/blocktrans}
+{blocktrans}By {$cobject.author|strip_tags|trim}, {$cobject.title}{/blocktrans}
+
{blocktrans}The team behind {$project} is using
+the git software to manage the source
+code.{/blocktrans}
+
+
{trans 'Command-Line Access'}
+
+
git clone {$project.getSourceAccessUrl($user)}
+
+{aurl 'url', 'IDF_Views_User::myAccount'}
+
{blocktrans}You may need to provide your SSH key. The synchronization of your SSH key can take a couple of minutes. You can learn more about SSH key authentication.{/blocktrans}
+
+{if $isOwner or $isMember}
+
{trans 'First Commit'}
+
+
{blocktrans}To make a first commit in the repository, perform the following steps:{/blocktrans}
{blocktrans}Source at commit {$commit} created {$cobject.date|dateago}.{/blocktrans}
+{blocktrans}By {$cobject.author|strip_tags|trim}, {$cobject.title}{/blocktrans}
+
{blocktrans}If this is a new repository, the reason for this error
+could be that you have not committed and / or pushed any change so far.
+In this case please take a look at the Help page
+how to access your repository.{/blocktrans}
{blocktrans}Source at commit {$commit} created {$cobject.date|dateago}.{/blocktrans}
+{blocktrans}By {$cobject.author|strip_tags|trim}, {$cobject.title}{/blocktrans}
+
{blocktrans}Source at commit {$commit} created {$cobject.date|dateago}.{/blocktrans}
+{blocktrans}By {$cobject.author|strip_tags|trim}, {$cobject.title}{/blocktrans}
+
{blocktrans}If this is a new repository, the reason for this error
+could be that you have not committed and / or pushed any change so far.
+In this case please take a look at the Help page
+how to access your repository.{/blocktrans}
diff --git a/indefero/src/IDF/templates/idf/terms.html b/indefero/src/IDF/templates/idf/terms.html
new file mode 100644
index 0000000..7ba6ba7
--- /dev/null
+++ b/indefero/src/IDF/templates/idf/terms.html
@@ -0,0 +1,25 @@
+
Terms and Conditions
+
+
Legal stuff
+
+
+
Respect others.
+
You are legally responsible for what you write.
+
Do not write things you will be ashmed of in 5 years.
+
We may send you an email from time to time with respect to the use of this service.
+
We are not going to spam you in any way.
+
We reserve the right to disable accounts with a non functional email address.
+
+
+
Technical stuff
+
+
+
You will need to enable cookies in your browser.
+
The interface will look nicer with Javascript enabled.
+
We will send you an email to validate your account.
+
+
+
Very important stuff
+
+
You are welcome!
+
diff --git a/indefero/src/IDF/templates/idf/user/changeemail-email.txt b/indefero/src/IDF/templates/idf/user/changeemail-email.txt
new file mode 100644
index 0000000..8e9c5a9
--- /dev/null
+++ b/indefero/src/IDF/templates/idf/user/changeemail-email.txt
@@ -0,0 +1,22 @@
+{blocktrans}Hello {$user},
+
+To confirm that you want {$email}
+to be your new email address, just follow this link:
+
+{$url}
+
+Alternatively, go to this page:
+
+{$urlik}
+
+and provide the following verification key:
+
+{$key}
+
+If you do not want to change your email address,
+just ignore this message.
+
+Yours faithfully,
+The development team.
+{/blocktrans}
+
diff --git a/indefero/src/IDF/templates/idf/user/changeemail.html b/indefero/src/IDF/templates/idf/user/changeemail.html
new file mode 100644
index 0000000..3ddb4c7
--- /dev/null
+++ b/indefero/src/IDF/templates/idf/user/changeemail.html
@@ -0,0 +1,39 @@
+{extends "idf/base-simple.html"}
+{block body}
+{if $form.errors}
+
{trans 'Use your email software to read your emails and open your verification email. Either click directly on the verification link or copy/paste the verification key in the box and submit the form.'}
{trans 'Provide either your login or email address, if a corresponding user is found in the database, we will send you an email with the details on how to reset your password.'}
+
+
+{/block}
+{block javascript}
+{/block}
+
diff --git a/indefero/src/IDF/templates/idf/user/passrecovery-email.txt b/indefero/src/IDF/templates/idf/user/passrecovery-email.txt
new file mode 100644
index 0000000..503fdad
--- /dev/null
+++ b/indefero/src/IDF/templates/idf/user/passrecovery-email.txt
@@ -0,0 +1,25 @@
+{blocktrans}Hello {$user},
+
+You lost your password and wanted to recover it.
+To provide a new password for your account, you
+just have to follow the provided link. You will
+get a simple form to provide a new password.
+
+{$url}
+
+Alternatively, go to this page:
+
+{$urlik}
+
+and provide the following verification key:
+
+{$key}
+
+If you are not the one who requested to reset
+your password, simply ignore this email, your
+password will not be changed.
+
+Yours faithfully,
+The development team.
+{/blocktrans}
+
diff --git a/indefero/src/IDF/templates/idf/user/passrecovery-inputkey.html b/indefero/src/IDF/templates/idf/user/passrecovery-inputkey.html
new file mode 100644
index 0000000..a55c6a5
--- /dev/null
+++ b/indefero/src/IDF/templates/idf/user/passrecovery-inputkey.html
@@ -0,0 +1,40 @@
+{extends "idf/base-simple.html"}
+{block body}
+{if $form.errors}
+
{trans 'Use your email software to read your emails and open your verification email. Either click directly on the verification link or copy/paste the verification key in the box and submit the form.'}
+
{trans 'Just after providing the confirmation key, you will be able to reset your password and use this website fully.'}
+{blocktrans}
+Wiki resources are later addressed in wiki pages by their title, so ensure that you
+give your resource a unique and an easy to remember name.
+{/blocktrans}
+
{blocktrans}If you delete this documentation page, it will be removed from the database with all the associated revisions and you will not be able to recover it.{/blocktrans}
{blocktrans}You are looking at an old revision ({$oldrev.summary}) of the page
+{$page.title}. This revision was created
+by {$submitter}.{/blocktrans}
+
+
{blocktrans}If you delete this old revision, it will be removed from the database and you will not be able to recover it.{/blocktrans}
{blocktrans}If you delete this documentation resource, it will be removed from the database with all the associated revisions
+and you will not be able to recover it. Any documentation pages that reference this resource,
+will no longer be able to render it, but won't be deleted.{/blocktrans}
+
+
+
{$resource.summary}
+
+{assign $preview = $rev.renderRaw()}
+{if $preview == ''}
+ {assign $preview = __('Unable to render preview for this MIME type.')}
+{/if}
+
{blocktrans}You are looking at an old revision ({$oldrev.summary}) of the resource
+{$resource.title}. This revision was created by {$submitter}.{/blocktrans}
+
+
{blocktrans}If you delete this old revision, it will be removed from the database and you will not be able to recover it.{/blocktrans}
+
+
+
{$resource.summary}
+
+{assign $preview = $oldrev.renderRaw()}
+{if $preview == ''}
+ {assign $preview = __('Unable to render preview for this MIME type.')}
+{/if}
+
Website addresses are automatically linked and you can link to another page in the documentation using double square brackets like that [[AnotherPage]].
+
If you want to embed uploaded resources, use the [[!ResourceName]] syntax for that. This is described more in detail in the FAQ.
+
To directly include a file content from the repository, embrace its path with triple square brackets: [[[my/file.txt]]].
"&&!s?p.childNodes:[];for(i=t.length-1;i>=0;--i)f.nodeName(t[i],"tbody")&&!t[i].childNodes.length&&t[i].parentNode.removeChild(t[i])}!f.support.leadingWhitespace&&X.test(l)&&p.insertBefore(b.createTextNode(X.exec(l)[0]),p.firstChild),l=p.childNodes,p&&(p.parentNode.removeChild(p),q.length>0&&(r=q[q.length-1],r&&r.parentNode&&r.parentNode.removeChild(r)))}var u;if(!f.support.appendChecked)if(l[0]&&typeof (u=l.length)=="number")for(i=0;i1)},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=by(a,"opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bu.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(by)return by(a,c)},swap:function(a,b,c){var d={},e,f;for(f in b)d[f]=a.style[f],a.style[f]=b[f];e=c.call(a);for(f in b)a.style[f]=d[f];return e}}),f.curCSS=f.css,c.defaultView&&c.defaultView.getComputedStyle&&(bz=function(a,b){var c,d,e,g,h=a.style;b=b.replace(br,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b))),!f.support.pixelMargin&&e&&bv.test(b)&&bt.test(c)&&(g=h.width,h.width=c,c=e.width,h.width=g);return c}),c.documentElement.currentStyle&&(bA=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f==null&&g&&(e=g[b])&&(f=e),bt.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),by=bz||bA,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth!==0?bB(a,b,d):f.swap(a,bw,function(){return bB(a,b,d)})},set:function(a,b){return bs.test(b)?b+"px":b}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bq.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bp,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bp.test(g)?g.replace(bp,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){return f.swap(a,{display:"inline-block"},function(){return b?by(a,"margin-right"):a.style.marginRight})}})}),f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)}),f.each({margin:"",padding:"",border:"Width"},function(a,b){f.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bx[d]+b]=e[d]||e[d-2]||e[0];return f}}});var bC=/%20/g,bD=/\[\]$/,bE=/\r?\n/g,bF=/#.*$/,bG=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bH=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bI=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bJ=/^(?:GET|HEAD)$/,bK=/^\/\//,bL=/\?/,bM=/
+ ';
+ }
+
+ /**
+ * Get the form data from the reCaptcha fields.
+ *
+ * We need to get back two fields from the POST request
+ * 'recaptcha_challenge_field' and 'recaptcha_response_field'.
+ *
+ * They are hardcoded, so we do not even bother checking something
+ * else.
+ *
+ * @param string Name of the form
+ * @param array Submitted form data
+ * @return array Challenge and answer
+ */
+ public function valueFromFormData($name, $data)
+ {
+ $res = array('', '');
+ $res[0] = isset($data['recaptcha_challenge_field'])
+ ? $data['recaptcha_challenge_field'] : '';
+ $res[1] = isset($data['recaptcha_response_field'])
+ ? $data['recaptcha_response_field'] : '';
+ return $res;
+ }
+}
diff --git a/pluf/src/Pluf/Form/Widget/SelectInput.php b/pluf/src/Pluf/Form/Widget/SelectInput.php
new file mode 100644
index 0000000..ef4d55f
--- /dev/null
+++ b/pluf/src/Pluf/Form/Widget/SelectInput.php
@@ -0,0 +1,78 @@
+choices = $attrs['choices'];
+ unset($attrs['choices']);
+ parent::__construct($attrs);
+ }
+
+ /**
+ * Renders the HTML of the input.
+ *
+ * @param string Name of the field.
+ * @param mixed Value for the field, can be a non valid value.
+ * @param array Extra attributes to add to the input form (array())
+ * @param array Extra choices (array())
+ * @return string The HTML string of the input.
+ */
+ public function render($name, $value, $extra_attrs=array(),
+ $choices=array())
+ {
+ $output = array();
+ if ($value === null) {
+ $value = '';
+ }
+ $final_attrs = $this->buildAttrs(array('name' => $name), $extra_attrs);
+ $output[] = '';
+ return new Pluf_Template_SafeString(implode("\n", $output), true);
+ }
+}
diff --git a/pluf/src/Pluf/Form/Widget/SelectMultipleInput.php b/pluf/src/Pluf/Form/Widget/SelectMultipleInput.php
new file mode 100644
index 0000000..ae83801
--- /dev/null
+++ b/pluf/src/Pluf/Form/Widget/SelectMultipleInput.php
@@ -0,0 +1,79 @@
+choices = $attrs['choices'];
+ unset($attrs['choices']);
+ parent::__construct($attrs);
+ }
+
+ /**
+ * Renders the HTML of the input.
+ *
+ * @param string Name of the field.
+ * @param array Value for the field, can be a non valid value.
+ * @param array Extra attributes to add to the input form (array())
+ * @param array Extra choices (array())
+ * @return string The HTML string of the input.
+ */
+ public function render($name, $value, $extra_attrs=array(),
+ $choices=array())
+ {
+ $output = array();
+ if ($value === null) {
+ $value = array();
+ }
+ $final_attrs = $this->buildAttrs(array('name' => $name.'[]'),
+ $extra_attrs);
+ $output[] = '';
+ return new Pluf_Template_SafeString(implode("\n", $output), true);
+ }
+
+ public function valueFromFormData($name, $data)
+ {
+ if (isset($data[$name]) and is_array($data[$name])) {
+ return $data[$name];
+ }
+ return null;
+ }
+
+}
\ No newline at end of file
diff --git a/pluf/src/Pluf/Form/Widget/SelectMultipleInput/Checkbox.php b/pluf/src/Pluf/Form/Widget/SelectMultipleInput/Checkbox.php
new file mode 100644
index 0000000..db522cb
--- /dev/null
+++ b/pluf/src/Pluf/Form/Widget/SelectMultipleInput/Checkbox.php
@@ -0,0 +1,74 @@
+buildAttrs($extra_attrs);
+ $output[] = '
{blocktrans}Reported by {$who}, {$c.creation_dtime|date}{/blocktrans}
+{else} +{aurl 'url', 'IDF_Views_Issue::view', array($project.shortname, $issue.id)} +{assign $id = $c.id} +{assign $url = $url~'#ic'~$c.id} +{blocktrans}Comment {$i} by {$who}, {$c.creation_dtime|date}{/blocktrans}
+{/if} + +{if strlen($c.content) > 0}{issuetext $c.content, $request}{else}{trans '(No comments were given for this change.)'}{/if}+{assign $attachments = $c.get_attachment_list()} +{if $attachments.count() > 0} ++
+{foreach $attachments as $a}- {$a.filename} - {$a.filesize|size}
{/foreach}
+
{/if} +{if $i> 0 and $c.changedIssue()} ++{/foreach} +